Tests.hpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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(bool outOfMemoryTest);
  9. void testBox();
  10. void testBuffer(bool light);
  11. void testBufferedValue();
  12. void testClock(bool light);
  13. void testColor();
  14. void testComponents(bool outOfMemoryTest);
  15. void testError();
  16. void testFileReader();
  17. void testFrustum();
  18. void testHashedString();
  19. void testHashMap(bool light, bool outOfMemoryTest);
  20. void testLinkedList(bool light, bool outOfMemoryTest);
  21. void testList(bool light);
  22. void testMath();
  23. void testMatrixStack(bool light);
  24. void testMatrix();
  25. void testNew();
  26. void testPlane();
  27. void testProbingHashMap(bool light, bool outOfMemoryTest);
  28. void testQuaternion();
  29. void testRandom(bool light);
  30. void testRingBuffer();
  31. void testStack(bool light);
  32. void testThread();
  33. void testUniquePointer();
  34. void testUtility();
  35. void testVector();
  36. void testView();
  37. }
  38. #endif