#ifndef CORE_TESTS_HPP #define CORE_TESTS_HPP #include "Test.hpp" namespace Core { void testArrayList(bool light); void testArrayString(); void testArray(); void testBitArray(bool outOfMemoryTest); void testBox(); void testBuffer(bool light); void testBufferedValue(); void testClock(bool light); void testColor(); void testComponents(bool outOfMemoryTest); void testError(); void testFileReader(); void testFrustum(); void testHashedString(); void testHashMap(bool light, bool outOfMemoryTest); void testLinkedList(bool light, bool outOfMemoryTest); void testList(bool light); void testMath(); void testMatrixStack(bool light); void testMatrix(); void testNew(); void testPlane(); void testProbingHashMap(bool light, bool outOfMemoryTest); void testQuaternion(); void testRandom(bool light); void testRingBuffer(); void testStack(bool light); void testThread(); void testUniquePointer(); void testUtility(); void testVector(); void testView(); } #endif