Commit 75ba6ae4 authored by Niels's avatar Niels

+ improved test case coverage

parent a7a946bd
......@@ -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")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment