mirror of
https://github.com/nlohmann/json.git
synced 2025-07-31 10:24:23 +03:00
added test case
This commit is contained in:
@ -6735,7 +6735,11 @@ TEST_CASE("modifiers")
|
|||||||
|
|
||||||
SECTION("invalid iterators")
|
SECTION("invalid iterators")
|
||||||
{
|
{
|
||||||
|
json j_other_array2 = {"first", "second"};
|
||||||
|
|
||||||
CHECK_THROWS_AS(j_array.insert(j_array.end(), j_array.begin(), j_array.end()), std::domain_error);
|
CHECK_THROWS_AS(j_array.insert(j_array.end(), j_array.begin(), j_array.end()), std::domain_error);
|
||||||
|
CHECK_THROWS_AS(j_array.insert(j_array.end(), j_other_array.begin(), j_other_array2.end()),
|
||||||
|
std::domain_error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user