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

Function AssertParseOk

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

Source from the content-addressed store, hash-verified

147}
148
149void AssertParseOk(BlockParser& parser, const std::string& str) {
150 uint32_t parsed_size = static_cast<uint32_t>(-1);
151 ASSERT_OK(Parse(parser, str, &parsed_size));
152 ASSERT_EQ(parsed_size, str.size());
153}
154
155void AssertParseOk(BlockParser& parser, const std::vector<std::string_view>& data) {
156 uint32_t parsed_size = static_cast<uint32_t>(-1);

Callers 1

TESTFunction · 0.85

Calls 4

TotalViewLengthFunction · 0.85
ParseFunction · 0.70
sizeMethod · 0.45
ParseMethod · 0.45

Tested by

no test coverage detected