| 17 | |
| 18 | template<typename AllocationType = HeapAllocation> |
| 19 | void CheckBitArray(const BitArray<AllocationType>& array) |
| 20 | { |
| 21 | CHECK(array.Count() == ARRAY_COUNT(TestBits)); |
| 22 | for (int32 i = 0; i < ARRAY_COUNT(TestBits); i++) |
| 23 | { |
| 24 | CHECK(array[i] == TestBits[i]); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | TEST_CASE("Array") |
| 29 | { |
no test coverage detected