mirror of
https://github.com/nlohmann/json
synced 2024-12-26 18:41:03 +00:00
More tests to get line coverage backt o 100%
This commit is contained in:
parent
7f4fcc51f6
commit
13efc7a02a
@ -1652,6 +1652,11 @@ TEST_CASE("Parser")
|
||||
CHECK(json::parse("\"a\\nz\"") == json("a\nz"));
|
||||
CHECK(json::parse("\"\\n\"") == json("\n"));
|
||||
|
||||
// escaping senseless stuff
|
||||
CHECK_THROWS_AS(json::parse("\"\\z\""), std::invalid_argument);
|
||||
CHECK_THROWS_AS(json::parse("\"\\ \""), std::invalid_argument);
|
||||
CHECK_THROWS_AS(json::parse("\"\\9\""), std::invalid_argument);
|
||||
|
||||
// quotes must be closed
|
||||
CHECK_THROWS_AS(json::parse("\""), std::invalid_argument);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user