mirror of
https://github.com/nlohmann/json
synced 2024-11-27 14:20:07 +00:00
+ improved test case coverage
This commit is contained in:
parent
a7a946bd18
commit
75ba6ae4ff
@ -1204,6 +1204,9 @@ TEST_CASE("number (float)")
|
||||
json j2 = 2.7182818;
|
||||
double v2 = j2;
|
||||
CHECK(j2.get<double>() == v2);
|
||||
|
||||
int64_t v3 = j2;
|
||||
CHECK(j2.get<int64_t>() == v3);
|
||||
}
|
||||
|
||||
SECTION("Operators")
|
||||
|
Loading…
Reference in New Issue
Block a user