Tests.hpp 929 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef CORE_TESTS_HPP
  2. #define CORE_TESTS_HPP
  3. #include "Test.hpp"
  4. namespace Core {
  5. void testArrayList(bool light);
  6. void testArrayString();
  7. void testArray();
  8. void testBitArray();
  9. void testBox();
  10. void testBuffer(bool light);
  11. void testBufferedValue();
  12. void testClock(bool light);
  13. void testColor();
  14. void testComponents();
  15. void testError();
  16. void testFileReader();
  17. void testFrustum();
  18. void testHashMap(bool light);
  19. void testLinkedList(bool light);
  20. void testList(bool light);
  21. void testMath();
  22. void testMatrixStack(bool light);
  23. void testMatrix();
  24. void testPlane();
  25. void testProbingHashMap(bool light);
  26. void testQuaternion();
  27. void testRandom(bool light);
  28. void testRingBuffer();
  29. void testStack(bool light);
  30. void testThread();
  31. void testUniquePointer();
  32. void testUtility();
  33. void testVector();
  34. void testView();
  35. }
  36. #endif