Tests.hpp 907 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 testFileReader();
  16. void testFrustum();
  17. void testHashMap(bool light);
  18. void testLinkedList(bool light);
  19. void testList(bool light);
  20. void testMath();
  21. void testMatrixStack(bool light);
  22. void testMatrix();
  23. void testPlane();
  24. void testProbingHashMap(bool light);
  25. void testQuaternion();
  26. void testRandom(bool light);
  27. void testRingBuffer();
  28. void testStack(bool light);
  29. void testThread();
  30. void testUniquePointer();
  31. void testUtility();
  32. void testVector();
  33. void testView();
  34. }
  35. #endif