Main.cpp 563 B

12345678910111213141516171819202122
  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. #include "tests/VectorTests.h"
  10. int main() {
  11. ArrayTests::test();
  12. HashMapTests::test();
  13. ListTests::test();
  14. BitArrayTests::test();
  15. StringBufferTests::test();
  16. RandomTests::test();
  17. RingBufferTests::test();
  18. SplitStringTests::test();
  19. VectorTests::test();
  20. return 0;
  21. }