Also test Approx template constructor

This commit is contained in:
Martin Hořeňovský 2017-11-28 21:29:34 +01:00
parent 20211a33e6
commit 28d1955ea8
3 changed files with 6 additions and 6 deletions

View file

@ -189,8 +189,8 @@ TEST_CASE( "Comparison with explicitly convertible types", "[Approx]" )
REQUIRE(Approx(9.0) <= td);
REQUIRE(td >= Approx(9.0));
REQUIRE(td >= Approx(10.0));
REQUIRE(Approx(10.0) >= td);
REQUIRE(td >= Approx(td));
REQUIRE(Approx(td) >= td);
REQUIRE(Approx(11.0) >= td);
}