MCPcopy Create free account
hub / github.com/apache/arrow / AssertLastRowEq

Function AssertLastRowEq

cpp/src/arrow/csv/parser_test.cc:187–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187void 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
195void AssertLastRowEq(const BlockParser& parser, const std::vector<std::string>& expected,
196 const std::vector<bool>& expected_quoted) {

Callers 1

TESTFunction · 0.85

Calls 4

GetLastRowFunction · 0.85
num_colsMethod · 0.80
num_rowsMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected