Updated baselines

This commit is contained in:
Martin Hořeňovský
2017-02-27 16:27:43 +01:00
parent e4f4335b07
commit bbeb192ec9
4 changed files with 87 additions and 7 deletions

View File

@@ -304,6 +304,42 @@ TrickyTests.cpp:<line number>: FAILED:
with expansion:
{?} == {?}
-------------------------------------------------------------------------------
Absolute margin
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
...............................................................................
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( 104.0 != Approx(100.0) )
with expansion:
104.0 != Approx( 100.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( 104.0 == Approx(100.0).margin(5) )
with expansion:
104.0 == Approx( 100.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( 104.0 != Approx(100.0).margin(3) )
with expansion:
104.0 != Approx( 100.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( 100.3 != Approx(100.0) )
with expansion:
100.3 != Approx( 100.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( 100.3 == Approx(100.0).margin(0.5) )
with expansion:
100.3 == Approx( 100.0 )
-------------------------------------------------------------------------------
AllOf matcher
-------------------------------------------------------------------------------
@@ -9288,6 +9324,6 @@ MiscTests.cpp:<line number>:
PASSED:
===============================================================================
test cases: 162 | 116 passed | 44 failed | 2 failed as expected
assertions: 950 | 844 passed | 88 failed | 18 failed as expected
test cases: 163 | 117 passed | 44 failed | 2 failed as expected
assertions: 955 | 849 passed | 88 failed | 18 failed as expected