Tests.hpp 939 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef CORE_TESTS_HPP
  2. #define CORE_TESTS_HPP
  3. [[noreturn]] void testInvalidAllocate();
  4. [[noreturn]] void testInvalidReallocate();
  5. [[noreturn]] void testPostCanary();
  6. [[noreturn]] void testPreCanary();
  7. [[noreturn]] void testPreCanaryNew();
  8. [[noreturn]] void testPreCanaryNewArray();
  9. void testArray();
  10. void testArrayList(bool light);
  11. void testBitArray();
  12. void testBox();
  13. void testBuffer(bool light);
  14. void testClock(bool light);
  15. void testColor();
  16. void testComponents();
  17. void testFile();
  18. void testFrustum();
  19. void testHashMap(bool light);
  20. void testHashedString();
  21. void testInteractiveTerminal();
  22. void testList(bool light);
  23. void testMath();
  24. void testMatrix();
  25. void testPlane();
  26. void testQuaternion();
  27. void testQueue();
  28. void testRandom(bool light);
  29. void testReadLine();
  30. void testTerminal(bool tty);
  31. void testTest();
  32. void testThread();
  33. void testUnicode();
  34. void testUniquePointer();
  35. void testUtility();
  36. void testVector();
  37. void testView();
  38. #endif