OpENerTests.cpp 249 B

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