improved test coverage

pull/706/head
Niels Lohmann 2017-08-03 17:47:42 +02:00
parent d2c3592908
commit e523312fa2
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
1 changed files with 17 additions and 0 deletions

View File

@ -752,6 +752,19 @@ TEST_CASE("modifiers")
{
j_object1.update(j_object2);
CHECK(j_object1 == json({{"one", "eins"}, {"two", "zwo"}, {"three", "drei"}}));
json j_null;
j_null.update(j_object2);
CHECK(j_null == j_object2);
}
SECTION("wrong types")
{
CHECK_THROWS_AS(j_array.update(j_object1), json::type_error&);
CHECK_THROWS_WITH(j_array.update(j_object1), "[json.exception.type_error.305] cannot use merge() with array");
CHECK_THROWS_AS(j_object1.update(j_array), json::type_error&);
CHECK_THROWS_WITH(j_object1.update(j_array), "[json.exception.type_error.305] cannot use merge() with array");
}
}
@ -761,6 +774,10 @@ TEST_CASE("modifiers")
{
j_object1.update(j_object2.begin(), j_object2.end());
CHECK(j_object1 == json({{"one", "eins"}, {"two", "zwo"}, {"three", "drei"}}));
json j_null;
j_null.update(j_object2.begin(), j_object2.end());
CHECK(j_null == j_object2);
}
SECTION("empty range")