Main.cpp 994 B

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