main.cpp 361 B

1234567891011121314
  1. #include "CppUTest/CommandLineTestRunner.h"
  2. IMPORT_TEST_GROUP(RandomClass);
  3. IMPORT_TEST_GROUP(MTRandomTests);
  4. IMPORT_TEST_GROUP(XorShiftRandom);
  5. int main(int argc, char** argv)
  6. {
  7. /* These checks are here to make sure assertions outside test runs don't crash */
  8. CHECK(true);
  9. LONGS_EQUAL(1, 1);
  10. return CommandLineTestRunner::RunAllTests(argc, argv);
  11. }