test.cpp 489 B

1234567891011121314151617181920
  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. #include "tests/test-stringToUnsignedLongLong.cpp"
  13. int main() {
  14. disableFinalizeGuard();
  15. run_tests();
  16. }