Tests.h 708 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 testLinkedList(bool light);
  13. void testList(bool light);
  14. void testMatrix(void);
  15. void testPlane(void);
  16. void testPostCanary(void);
  17. void testPreCanary(void);
  18. void testQuaternion(void);
  19. void testRandom(bool light);
  20. void testReadLine(void);
  21. void testRingBuffer(void);
  22. void testSpinLock(void);
  23. void testTest(void);
  24. void testUtility(bool light);
  25. void testVector(void);
  26. void testView(void);
  27. #endif