| 4 | |
| 5 | Y_UNIT_TEST_SUITE(TestArrayRef) { |
| 6 | Y_UNIT_TEST(TestDefaultConstructor) { |
| 7 | TArrayRef<int> defaulted; |
| 8 | UNIT_ASSERT_VALUES_EQUAL(defaulted.data(), nullptr); |
| 9 | UNIT_ASSERT_VALUES_EQUAL(defaulted.size(), 0u); |
| 10 | } |
| 11 | |
| 12 | Y_UNIT_TEST(TestConstructorFromArray) { |
| 13 | int x[] = {10, 20, 30}; |
nothing calls this directly
no test coverage detected