test.cpp 437 B

12345678910111213141516171819
  1. #define TESTLIB_THROW_EXIT_EXCEPTION_INSTEAD_OF_EXIT
  2. #include "testlib.h"
  3. #include "test.h"
  4. using namespace std;
  5. #include "tests/test-join.cpp"
  6. #include "tests/test-split.cpp"
  7. #include "tests/test-tokenize.cpp"
  8. #include "tests/test-opts.cpp"
  9. #include "tests/test-instream.cpp"
  10. #include "tests/test-pattern.cpp"
  11. #include "tests/test-stringToLongLong.cpp"
  12. int main() {
  13. disableFinalizeGuard();
  14. run_tests();
  15. }