Main.cpp 673 B

1234567891011121314151617181920212223242526
  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. int main() {
  13. ArrayTests::test();
  14. HashMapTests::test();
  15. ListTests::test();
  16. BitArrayTests::test();
  17. StringBufferTests::test();
  18. RandomTests::test();
  19. RingBufferTests::test();
  20. SplitStringTests::test();
  21. VectorTests::test();
  22. MatrixTests::test();
  23. StackTests::test();
  24. return 0;
  25. }