Lines Matching refs:CHECK
31 CHECK(tracking_allocator::allocated_size == 10 * sizeof(T)); in tests()
32 CHECK(array.data() != nullptr); in tests()
33 CHECK(array.size() == 10); in tests()
34 CHECK(array.begin() == array.data()); in tests()
35 CHECK(array.end() == array.data() + 10); in tests()
37 CHECK(tracking_allocator::deallocated_size == 10 * sizeof(T)); in tests()
47 CHECK(array.data() == nullptr); in tests()
48 CHECK(array.size() == 0); in tests()
49 CHECK(array.begin() == array.end()); in tests()
50 CHECK(!tracking_allocator::did_allocate); in tests()
52 CHECK(!tracking_allocator::did_deallocate); in tests()
64 CHECK(array[i].initialized == true);