| 616 | } |
| 617 | |
| 618 | static void test_get_string( const std::string &str, const std::string &json ) |
| 619 | { |
| 620 | CAPTURE( json ); |
| 621 | std::istringstream iss( json ); |
| 622 | JsonIn jsin( iss ); |
| 623 | CHECK( jsin.get_string() == str ); |
| 624 | } |
| 625 | |
| 626 | template<typename Matcher> |
| 627 | static void test_get_string_throws_matches( Matcher &&matcher, const std::string &json ) |