
namespace CUTE { void runUnitTests(int a_verbosity); }


int main(int argc, char* argv[])
{
  CUTE::runUnitTests(1);
  return 1;
}

