Main.cpp 507 B

1234567891011121314151617181920
  1. #include "tests/ArrayTests.h"
  2. #include "tests/HashMapTests.h"
  3. #include "tests/ListTests.h"
  4. #include "tests/BitArrayTests.h"
  5. #include "tests/StringBufferTests.h"
  6. #include "tests/RandomTests.h"
  7. #include "tests/RingBufferTests.h"
  8. #include "tests/SplitStringTests.h"
  9. int main() {
  10. ArrayTests::test();
  11. HashMapTests::test();
  12. ListTests::test();
  13. BitArrayTests::test();
  14. StringBufferTests::test();
  15. RandomTests::test();
  16. RingBufferTests::test();
  17. SplitStringTests::test();
  18. return 0;
  19. }