1 | //************************************ bs::framework - Copyright 2018 Marko Pintera **************************************// |
2 | //*********** Licensed under the MIT license. See LICENSE.md for full terms. This notice is not to be removed. ***********// |
3 | #pragma once |
4 | |
5 | #include "Testing/BsTestSuite.h" |
6 | |
7 | namespace bs |
8 | { |
9 | class UtilityTestSuite : public TestSuite |
10 | { |
11 | public: |
12 | UtilityTestSuite(); |
13 | void startUp() override; |
14 | void shutDown() override; |
15 | |
16 | private: |
17 | void testBitfield(); |
18 | void testOctree(); |
19 | void testSmallVector(); |
20 | void testDynArray(); |
21 | void testComplex(); |
22 | void testMinHeap(); |
23 | void testQuadtree(); |
24 | void testVarInt(); |
25 | void testBitStream(); |
26 | }; |
27 | } |
28 | |