| 203 | } |
| 204 | |
| 205 | void AssertColumnEq(const BlockParser& parser, int32_t col_index, |
| 206 | const std::vector<std::string>& expected) { |
| 207 | std::vector<std::string> values; |
| 208 | GetColumn(parser, col_index, &values); |
| 209 | ASSERT_EQ(parser.num_rows(), expected.size()); |
| 210 | ASSERT_EQ(values, expected); |
| 211 | } |
| 212 | |
| 213 | void AssertColumnEq(const BlockParser& parser, int32_t col_index, |
| 214 | const std::vector<std::string>& expected, |
no test coverage detected