mirror of
https://github.com/nlohmann/json.git
synced 2025-07-22 15:21:52 +03:00
✅ improved test coverage
This commit is contained in:
@ -359,6 +359,13 @@ TEST_CASE("deserialization")
|
||||
CHECK_THROWS_AS(json::parse(std::begin(v), std::end(v)), json::parse_error);
|
||||
CHECK(not json::accept(std::begin(v), std::end(v)));
|
||||
}
|
||||
|
||||
SECTION("case 16")
|
||||
{
|
||||
uint8_t v[] = {'{', '1', ',', ','};
|
||||
CHECK_THROWS_AS(json::parse(std::begin(v), std::end(v)), json::parse_error);
|
||||
CHECK(not json::accept(std::begin(v), std::end(v)));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user