| 185 | } |
| 186 | |
| 187 | void AssertLastRowEq(const BlockParser& parser, |
| 188 | const std::vector<std::string>& expected) { |
| 189 | std::vector<std::string> values; |
| 190 | GetLastRow(parser, &values); |
| 191 | ASSERT_EQ(parser.num_rows(), expected.size()); |
| 192 | ASSERT_EQ(values, expected); |
| 193 | } |
| 194 | |
| 195 | void AssertLastRowEq(const BlockParser& parser, const std::vector<std::string>& expected, |
| 196 | const std::vector<bool>& expected_quoted) { |
no test coverage detected