Main.cpp 739 B

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