Main.cpp 793 B

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