| 267 | } |
| 268 | |
| 269 | void testString() |
| 270 | { |
| 271 | testParseInto<std::string>( "" ); |
| 272 | testParseInto<std::string>( "12345" ); |
| 273 | |
| 274 | testParseIntoErrors< string >( error::not_string, UINT64_MAX ); |
| 275 | |
| 276 | std::string s; |
| 277 | parse_into(s, R"( "foobar" )"); |
| 278 | BOOST_TEST( s.size() == 6 ); |
| 279 | |
| 280 | parse_into(s, R"( "qwertyuiop" )"); |
| 281 | BOOST_TEST( s.size() == 10 ); |
| 282 | } |
| 283 | |
| 284 | void testSequence() |
| 285 | { |
nothing calls this directly
no test coverage detected