Main.cpp 619 B

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