Main.cpp 915 B

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