improved code coverage
This commit is contained in:
parent
d869b0a387
commit
f965c4c35b
1 changed files with 6 additions and 0 deletions
|
@ -12020,6 +12020,12 @@ TEST_CASE("Unicode", "[hide]")
|
||||||
json j;
|
json j;
|
||||||
CHECK_NOTHROW(j << f);
|
CHECK_NOTHROW(j << f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SECTION("error for incomplete/wrong BOM")
|
||||||
|
{
|
||||||
|
CHECK_THROWS_AS(json::parse("\xef\xbb"), std::invalid_argument);
|
||||||
|
CHECK_THROWS_AS(json::parse("\xef\xbb\xbb"), std::invalid_argument);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE("regression tests")
|
TEST_CASE("regression tests")
|
||||||
|
|
Loading…
Reference in a new issue