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

Function AssertColumnsEq

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

Source from the content-addressed store, hash-verified

222}
223
224void AssertColumnsEq(const BlockParser& parser,
225 const std::vector<std::vector<std::string>>& expected) {
226 ASSERT_EQ(parser.num_cols(), expected.size());
227 for (int32_t col_index = 0; col_index < parser.num_cols(); ++col_index) {
228 AssertColumnEq(parser, col_index, expected[col_index]);
229 }
230}
231
232void AssertColumnsEq(const BlockParser& parser,
233 const std::vector<std::vector<std::string>>& expected,

Callers 1

TESTFunction · 0.85

Calls 3

AssertColumnEqFunction · 0.85
num_colsMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected