MCPcopy Create free account
hub / github.com/boostorg/parser / github_issue_90

Function github_issue_90

test/github_issues.cpp:189–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

187}}
188
189void github_issue_90()
190{
191 using namespace issue_90;
192 namespace bp = boost::parser;
193
194 std::string input = R"( "dd" : "2" )";
195 std::pair<std::string, std::string> result;
196
197 auto b = bp::parse(input, parser::specifier, bp::ws, result);
198 BOOST_TEST(b);
199 BOOST_TEST(result.first == "dd");
200 BOOST_TEST(result.second == "2");
201}
202
203namespace github_issue_125_ {
204 namespace bp = boost::parser;

Callers 1

mainFunction · 0.85

Calls 1

parseFunction · 0.50

Tested by

no test coverage detected