merged #111
This commit is contained in:
parent
6f2da1a39a
commit
b58a93b8dd
4 changed files with 13 additions and 0 deletions
|
|
@ -10194,4 +10194,12 @@ TEST_CASE("regression tests")
|
|||
// hexadecimal "a"
|
||||
CHECK(j.dump() == "{\"binary string\":\"\\u0000asdf\\n\",\"int64\":10}");
|
||||
}
|
||||
|
||||
SECTION("issue #111 - subsequent unicode chars")
|
||||
{
|
||||
std::string bytes{0x7, 0x7};
|
||||
json j;
|
||||
j["string"] = bytes;
|
||||
CHECK(j["string"] == "\u0007\u0007");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue