mirror of
https://github.com/nlohmann/json
synced 2024-11-09 22:20:05 +00:00
another test case
This commit is contained in:
parent
6ddb115072
commit
4c55ada0f7
@ -7346,9 +7346,16 @@ TEST_CASE("parser class")
|
||||
|
||||
// exotic test cases for full coverage
|
||||
{
|
||||
std::stringstream ss;
|
||||
ss << "\"\\u000\n1\"";
|
||||
CHECK(json::parser(ss).parse().get<json::string_t>() == "\x01");
|
||||
{
|
||||
std::stringstream ss;
|
||||
ss << "\"\\u000\n1\"";
|
||||
CHECK(json::parser(ss).parse().get<json::string_t>() == "\x01");
|
||||
}
|
||||
{
|
||||
std::stringstream ss;
|
||||
ss << "\"\\u00\n01\"";
|
||||
CHECK(json::parser(ss).parse().get<json::string_t>() == "\x01");
|
||||
}
|
||||
}
|
||||
|
||||
CHECK(json::parser("\"\\u0001\"").parse().get<json::string_t>() == "\x01");
|
||||
|
Loading…
Reference in New Issue
Block a user