Main.cpp 969 B

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