Main.cpp 851 B

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