| 104 | } |
| 105 | |
| 106 | void TestArrayBasics() { |
| 107 | ASSERT_EQ(length_, strings_->length()); |
| 108 | ASSERT_EQ(1, strings_->null_count()); |
| 109 | ASSERT_OK(strings_->ValidateFull()); |
| 110 | TestInitialized(*strings_); |
| 111 | AssertZeroPadded(*strings_); |
| 112 | } |
| 113 | |
| 114 | void TestArrayIndexOperator() { |
| 115 | const auto& arr = *strings_; |
no test coverage detected