Main.cpp 1.1 KB

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