Tests.h 695 B

123456789101112131415161718192021222324252627282930
  1. #ifndef CORE_TESTS_H
  2. #define CORE_TESTS_H
  3. #include "core/Test.h"
  4. [[noreturn]] void testInvalidAllocate(void);
  5. [[noreturn]] void testInvalidReallocate(void);
  6. void testBitArray(void);
  7. void testBox(void);
  8. void testBuffer(bool light);
  9. void testComponents(void);
  10. void testFrustum(void);
  11. void testHashMap(bool light);
  12. void testList(bool light);
  13. void testMatrix(void);
  14. void testPlane(void);
  15. void testPostCanary(void);
  16. void testPreCanary(void);
  17. void testQuaternion(void);
  18. void testQueue(void);
  19. void testRandom(bool light);
  20. void testReadLine(void);
  21. void testSpinLock(void);
  22. void testTerminal(void);
  23. void testTest(void);
  24. void testUtility(bool light);
  25. void testVector(void);
  26. void testView(void);
  27. #endif