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

Function AssertParsePartial

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

Source from the content-addressed store, hash-verified

171}
172
173void AssertParsePartial(BlockParser& parser, const std::string& str,
174 uint32_t expected_size) {
175 uint32_t parsed_size = static_cast<uint32_t>(-1);
176 ASSERT_OK(Parse(parser, str, &parsed_size));
177 ASSERT_EQ(parsed_size, expected_size);
178}
179
180void AssertParsePartial(BlockParser& parser, const std::vector<std::string_view>& data,
181 uint32_t expected_size) {

Callers 1

TESTFunction · 0.85

Calls 2

ParseFunction · 0.70
ParseMethod · 0.45

Tested by

no test coverage detected