added Big List of Naughty Strings

This commit is contained in:
Niels Lohmann 2017-01-16 20:03:50 +01:00
parent a9b4cb8bf8
commit a7f3938391
3 changed files with 529 additions and 0 deletions

View file

@ -815,3 +815,14 @@ TEST_CASE("nst's JSONTestSuite")
}
}
}
TEST_CASE("Big List of Naughty Strings")
{
// test from https://github.com/minimaxir/big-list-of-naughty-strings
SECTION("blns.json")
{
std::ifstream f("test/data/big-list-of-naughty-strings/blns.json");
json j;
CHECK_NOTHROW(j << f);
}
}