Main.cpp 1023 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. 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. ColorTests::test();
  36. return 0;
  37. }