improved test coverage

This commit is contained in:
Niels Lohmann 2017-06-20 21:09:26 +02:00
parent e191dd833f
commit 7c2a187258
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
2 changed files with 16 additions and 0 deletions

View file

@ -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)));
}
}
}
}