mirror of
https://github.com/nlohmann/json.git
synced 2026-02-20 18:36:24 +00:00
Adds (failing) test for small float serialisation
This commit is contained in:
@@ -1160,6 +1160,12 @@ TEST_CASE("object inspection")
|
||||
CHECK(s.find("42.23") != std::string::npos);
|
||||
}
|
||||
|
||||
SECTION("dump and small floating-point numbers")
|
||||
{
|
||||
auto s = json(1.23456e-78).dump();
|
||||
CHECK(s.find("1.23456e-78") != std::string::npos);
|
||||
}
|
||||
|
||||
SECTION("dump and non-ASCII characters")
|
||||
{
|
||||
CHECK(json("ä").dump() == "\"ä\"");
|
||||
|
||||
Reference in New Issue
Block a user