Tests.hpp 975 B

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