Lines Matching defs:s4
1102 auto s4 = s + std::string(1, static_cast<char>(c)) + "000\"";
1112 CAPTURE(s4)
1113 CHECK_NOTHROW(parser_helper(s4));
1144 CAPTURE(s4)
1145 CHECK_THROWS_AS(parser_helper(s4), json::parse_error&);
1149 CHECK_THROWS_WITH_STD_STR(parser_helper(s4),
1150 "[json.exception.parse_error.101] parse error at line 1, column 4: syntax error while parsing value - invalid string: '\\u' must be followed by 4 hex digits; last read: '" + s4.substr(0, 4) + "'");
1317 const auto s4 = s + std::string(1, static_cast<char>(c)) + "000\"";
1327 CAPTURE(s4)
1328 CHECK(json::parser(nlohmann::detail::input_adapter(s4)).accept());
1341 CAPTURE(s4)
1342 CHECK(json::parser(nlohmann::detail::input_adapter(s4)).accept() == false);