Tests.hpp 938 B

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