catch2/projects/SelfTest/Baselines/console.sw.approved.txt

7440 lines
203 KiB
Plaintext
Raw Normal View History

2013-09-27 20:01:14 +02:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2017-01-09 15:33:03 +01:00
<exe-name> is a <version> host application.
2013-09-27 20:01:14 +02:00
Run with -? for options
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
# A test name that starts with a #
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
with message:
yay
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
#1005: Comparing pointer to int and long (NULL can be either on various
systems)
-------------------------------------------------------------------------------
DecompositionTests.cpp:<line number>
...............................................................................
DecompositionTests.cpp:<line number>:
PASSED:
REQUIRE( fptr == 0 )
with expansion:
0 == 0
DecompositionTests.cpp:<line number>:
PASSED:
REQUIRE( fptr == 0l )
with expansion:
0 == 0
-------------------------------------------------------------------------------
#748 - captures with unexpected exceptions
outside assertions
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
due to unexpected exception with messages:
answer := 42
expected exception
2017-02-10 12:53:29 +01:00
-------------------------------------------------------------------------------
#748 - captures with unexpected exceptions
inside REQUIRE_NOTHROW
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
REQUIRE_NOTHROW( thisThrows() )
due to unexpected exception with messages:
answer := 42
expected exception
-------------------------------------------------------------------------------
#748 - captures with unexpected exceptions
inside REQUIRE_THROWS
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>:
PASSED:
REQUIRE_THROWS( thisThrows() )
with message:
answer := 42
-------------------------------------------------------------------------------
#809
-------------------------------------------------------------------------------
CompilationTests.cpp:<line number>
...............................................................................
CompilationTests.cpp:<line number>:
PASSED:
REQUIRE( 42 == f )
with expansion:
42 == {?}
-------------------------------------------------------------------------------
#833
2017-02-10 12:53:29 +01:00
-------------------------------------------------------------------------------
CompilationTests.cpp:<line number>
...............................................................................
CompilationTests.cpp:<line number>:
PASSED:
REQUIRE( a == t )
with expansion:
3 == 3
2017-02-10 12:53:29 +01:00
CompilationTests.cpp:<line number>:
PASSED:
CHECK( a == t )
with expansion:
3 == 3
2017-02-10 12:53:29 +01:00
CompilationTests.cpp:<line number>:
PASSED:
REQUIRE_THROWS( throws_int(true) )
2017-02-10 12:53:29 +01:00
CompilationTests.cpp:<line number>:
PASSED:
2017-07-20 00:29:19 +02:00
CHECK_THROWS_AS( throws_int(true), int )
2017-02-10 12:53:29 +01:00
CompilationTests.cpp:<line number>:
PASSED:
REQUIRE_NOTHROW( throws_int(false) )
CompilationTests.cpp:<line number>:
PASSED:
REQUIRE_THAT( "aaa", Catch::EndsWith("aaa") )
with expansion:
"aaa" ends with: "aaa"
CompilationTests.cpp:<line number>:
PASSED:
REQUIRE( templated_tests<int>(3) )
with expansion:
true
-------------------------------------------------------------------------------
#835 -- errno should not be touched by Catch
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>: FAILED:
CHECK( f() == 0 )
with expansion:
1 == 0
MiscTests.cpp:<line number>:
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( errno == 1 )
with expansion:
1 == 1
2017-04-25 15:57:58 +02:00
-------------------------------------------------------------------------------
#872
-------------------------------------------------------------------------------
CompilationTests.cpp:<line number>
...............................................................................
CompilationTests.cpp:<line number>:
PASSED:
REQUIRE( x == 4 )
with expansion:
{?} == 4
with message:
dummy := 0
-------------------------------------------------------------------------------
#961 -- Dynamically created sections should all be reported
Looped section 0
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
with message:
Everything is OK
-------------------------------------------------------------------------------
#961 -- Dynamically created sections should all be reported
Looped section 1
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
with message:
Everything is OK
-------------------------------------------------------------------------------
#961 -- Dynamically created sections should all be reported
Looped section 2
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
with message:
Everything is OK
-------------------------------------------------------------------------------
#961 -- Dynamically created sections should all be reported
Looped section 3
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
with message:
Everything is OK
-------------------------------------------------------------------------------
#961 -- Dynamically created sections should all be reported
Looped section 4
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
with message:
Everything is OK
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
'Not' checks that should fail
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
ConditionTests.cpp:<line number>: FAILED:
CHECK( false != false )
ConditionTests.cpp:<line number>: FAILED:
CHECK( true != true )
ConditionTests.cpp:<line number>: FAILED:
CHECK( !true )
2014-09-03 20:22:47 +02:00
with expansion:
false
2014-09-03 20:22:47 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK_FALSE( true )
ConditionTests.cpp:<line number>: FAILED:
CHECK( !trueValue )
2014-09-03 20:22:47 +02:00
with expansion:
false
2014-09-03 20:22:47 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK_FALSE( trueValue )
with expansion:
!true
2014-09-03 20:22:47 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( !(1 == 1) )
2014-09-03 20:22:47 +02:00
with expansion:
false
2014-09-03 20:22:47 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK_FALSE( 1 == 1 )
2014-09-03 20:22:47 +02:00
with expansion:
!(1 == 1)
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
'Not' checks that should succeed
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
ConditionTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE( false == false )
2014-09-03 20:22:47 +02:00
ConditionTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE( true == true )
2014-09-03 20:22:47 +02:00
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( !false )
with expansion:
true
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE_FALSE( false )
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( !falseValue )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE_FALSE( falseValue )
2013-09-27 20:01:14 +02:00
with expansion:
!false
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( !(1 == 2) )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE_FALSE( 1 == 2 )
2013-09-27 20:01:14 +02:00
with expansion:
!(1 == 2)
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
(unimplemented) static bools can be evaluated
compare to true
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( is_true<true>::value == true )
2013-09-27 20:01:14 +02:00
with expansion:
true == true
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( true == is_true<true>::value )
2013-09-27 20:01:14 +02:00
with expansion:
true == true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
(unimplemented) static bools can be evaluated
compare to false
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( is_true<false>::value == false )
2013-09-27 20:01:14 +02:00
with expansion:
false == false
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( false == is_true<false>::value )
2013-09-27 20:01:14 +02:00
with expansion:
false == false
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
(unimplemented) static bools can be evaluated
negation
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( !is_true<false>::value )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
(unimplemented) static bools can be evaluated
double negation
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( !!is_true<true>::value )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
(unimplemented) static bools can be evaluated
direct
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( is_true<true>::value )
with expansion:
true
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE_FALSE( is_true<false>::value )
with expansion:
!false
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
A METHOD_AS_TEST_CASE based test run that fails
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ClassTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ClassTests.cpp:<line number>: FAILED:
REQUIRE( s == "world" )
2013-09-27 20:01:14 +02:00
with expansion:
"hello" == "world"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
A METHOD_AS_TEST_CASE based test run that succeeds
-------------------------------------------------------------------------------
ClassTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
ClassTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( s == "hello" )
2013-09-27 20:01:14 +02:00
with expansion:
"hello" == "hello"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
A TEST_CASE_METHOD based test run that fails
-------------------------------------------------------------------------------
ClassTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
ClassTests.cpp:<line number>: FAILED:
REQUIRE( m_a == 2 )
2013-09-27 20:01:14 +02:00
with expansion:
1 == 2
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
A TEST_CASE_METHOD based test run that succeeds
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ClassTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ClassTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( m_a == 1 )
2013-09-27 20:01:14 +02:00
with expansion:
1 == 1
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
A couple of nested sections followed by a failure
Outer
Inner
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
with message:
that's not flying - that's failing in style
-------------------------------------------------------------------------------
A couple of nested sections followed by a failure
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>: FAILED:
explicitly with message:
to infinity and beyond
-------------------------------------------------------------------------------
A failing expression with a non streamable type is still captured
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>: FAILED:
CHECK( &o1 == &o2 )
2013-09-27 20:01:14 +02:00
with expansion:
0x<hex digits> == 0x<hex digits>
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>: FAILED:
CHECK( o1 == o2 )
with expansion:
{?} == {?}
2017-02-27 16:27:43 +01:00
-------------------------------------------------------------------------------
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 )
-------------------------------------------------------------------------------
An expression with side-effects should only be evaluated once
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( i++ == 7 )
2013-09-27 20:01:14 +02:00
with expansion:
7 == 7
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( i++ == 8 )
2013-09-27 20:01:14 +02:00
with expansion:
8 == 8
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
An unchecked exception reports the line of the last assertion
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( 1 == 1 )
ExceptionTests.cpp:<line number>: FAILED:
{Unknown expression after the reported line}
due to unexpected exception with message:
unexpected exception
-------------------------------------------------------------------------------
Anonymous test case 1
-------------------------------------------------------------------------------
VariadicMacrosTests.cpp:<line number>
...............................................................................
VariadicMacrosTests.cpp:<line number>:
PASSED:
with message:
anonymous test case
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Approximate PI
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ApproxTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( divide( 22, 7 ) == Approx( 3.141 ).epsilon( 0.001 ) )
with expansion:
3.1428571429 == Approx( 3.141 )
ApproxTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( divide( 22, 7 ) != Approx( 3.141 ).epsilon( 0.0001 ) )
with expansion:
3.1428571429 != Approx( 3.141 )
-------------------------------------------------------------------------------
Approximate comparisons with different epsilons
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ApproxTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( d != Approx( 1.231 ) )
2013-09-27 20:01:14 +02:00
with expansion:
1.23 != Approx( 1.231 )
2013-09-27 20:01:14 +02:00
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d == Approx( 1.231 ).epsilon( 0.1 ) )
2013-09-27 20:01:14 +02:00
with expansion:
1.23 == Approx( 1.231 )
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Approximate comparisons with floats
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ApproxTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 1.23f == Approx( 1.23f ) )
2013-09-27 20:01:14 +02:00
with expansion:
1.23f == Approx( 1.2300000191 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( 0.0f == Approx( 0.0f ) )
with expansion:
0.0f == Approx( 0.0 )
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Approximate comparisons with ints
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( 1 == Approx( 1 ) )
2013-09-27 20:01:14 +02:00
with expansion:
1 == Approx( 1.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( 0 == Approx( 0 ) )
with expansion:
0 == Approx( 0.0 )
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Approximate comparisons with mixed numeric types
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ApproxTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 1.0f == Approx( 1 ) )
2013-09-27 20:01:14 +02:00
with expansion:
1.0f == Approx( 1.0 )
2013-09-27 20:01:14 +02:00
ApproxTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 0 == Approx( dZero) )
2013-09-27 20:01:14 +02:00
with expansion:
0 == Approx( 0.0 )
2013-09-27 20:01:14 +02:00
ApproxTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 0 == Approx( dSmall ).epsilon( 0.001 ) )
2013-09-27 20:01:14 +02:00
with expansion:
0 == Approx( 0.00001 )
2013-09-27 20:01:14 +02:00
ApproxTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 1.234f == Approx( dMedium ) )
2013-09-27 20:01:14 +02:00
with expansion:
1.234f == Approx( 1.234 )
2013-09-27 20:01:14 +02:00
ApproxTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( dMedium == Approx( 1.234f ) )
2013-09-27 20:01:14 +02:00
with expansion:
1.234 == Approx( 1.2339999676 )
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Assertions then sections
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( Catch::alwaysTrue() )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Assertions then sections
A section
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( Catch::alwaysTrue() )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Assertions then sections
A section
Another section
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( Catch::alwaysTrue() )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Assertions then sections
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( Catch::alwaysTrue() )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Assertions then sections
A section
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( Catch::alwaysTrue() )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Assertions then sections
A section
Another other section
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( Catch::alwaysTrue() )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Capture and info messages
Capture should stringify like assertions
-------------------------------------------------------------------------------
ToStringGeneralTests.cpp:<line number>
...............................................................................
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( true )
with message:
i := 2
-------------------------------------------------------------------------------
Capture and info messages
Info should NOT stringify the way assertions do
-------------------------------------------------------------------------------
ToStringGeneralTests.cpp:<line number>
...............................................................................
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( true )
with message:
3
-------------------------------------------------------------------------------
Character pretty printing
Specifically escaped
-------------------------------------------------------------------------------
ToStringGeneralTests.cpp:<line number>
...............................................................................
ToStringGeneralTests.cpp:<line number>:
PASSED:
CHECK( tab == '\t' )
with expansion:
'\t' == '\t'
ToStringGeneralTests.cpp:<line number>:
PASSED:
CHECK( newline == '\n' )
with expansion:
'\n' == '\n'
ToStringGeneralTests.cpp:<line number>:
PASSED:
CHECK( carr_return == '\r' )
with expansion:
'\r' == '\r'
ToStringGeneralTests.cpp:<line number>:
PASSED:
CHECK( form_feed == '\f' )
with expansion:
'\f' == '\f'
-------------------------------------------------------------------------------
Character pretty printing
General chars
-------------------------------------------------------------------------------
ToStringGeneralTests.cpp:<line number>
...............................................................................
ToStringGeneralTests.cpp:<line number>:
PASSED:
CHECK( space == ' ' )
with expansion:
' ' == ' '
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( c == chars[i] )
with expansion:
'a' == 'a'
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( c == chars[i] )
with expansion:
'z' == 'z'
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( c == chars[i] )
with expansion:
'A' == 'A'
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( c == chars[i] )
with expansion:
'Z' == 'Z'
-------------------------------------------------------------------------------
Character pretty printing
Low ASCII
-------------------------------------------------------------------------------
ToStringGeneralTests.cpp:<line number>
...............................................................................
ToStringGeneralTests.cpp:<line number>:
PASSED:
CHECK( null_terminator == '\0' )
with expansion:
0 == 0
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( c == i )
with expansion:
2 == 2
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( c == i )
with expansion:
3 == 3
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( c == i )
with expansion:
4 == 4
ToStringGeneralTests.cpp:<line number>:
PASSED:
REQUIRE( c == i )
with expansion:
5 == 5
-------------------------------------------------------------------------------
Commas in various macros are allowed
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE_THROWS( std::vector<constructor_throws>{constructor_throws{}, constructor_throws{}} )
TrickyTests.cpp:<line number>:
PASSED:
CHECK_THROWS( std::vector<constructor_throws>{constructor_throws{}, constructor_throws{}} )
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE_NOTHROW( std::vector<int>{1, 2, 3} == std::vector<int>{1, 2, 3} )
TrickyTests.cpp:<line number>:
PASSED:
CHECK_NOTHROW( std::vector<int>{1, 2, 3} == std::vector<int>{1, 2, 3} )
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( std::vector<int>{1, 2} == std::vector<int>{1, 2} )
with expansion:
{ 1, 2 } == { 1, 2 }
TrickyTests.cpp:<line number>:
PASSED:
CHECK( std::vector<int>{1, 2} == std::vector<int>{1, 2} )
with expansion:
{ 1, 2 } == { 1, 2 }
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE_FALSE( std::vector<int>{1, 2} == std::vector<int>{1, 2, 3} )
with expansion:
!({ 1, 2 } == { 1, 2, 3 })
TrickyTests.cpp:<line number>:
PASSED:
CHECK_FALSE( std::vector<int>{1, 2} == std::vector<int>{1, 2, 3} )
with expansion:
!({ 1, 2 } == { 1, 2, 3 })
TrickyTests.cpp:<line number>:
PASSED:
CHECK_NOFAIL( std::vector<int>{1, 2} == std::vector<int>{1, 2} )
with expansion:
{ 1, 2 } == { 1, 2 }
TrickyTests.cpp:<line number>:
PASSED:
CHECKED_IF( std::vector<int>{1, 2} == std::vector<int>{1, 2} )
with expansion:
{ 1, 2 } == { 1, 2 }
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( true )
TrickyTests.cpp:<line number>:
PASSED:
CHECKED_ELSE( std::vector<int>{1, 2} == std::vector<int>{1, 2} )
with expansion:
{ 1, 2 } == { 1, 2 }
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Comparing function pointers
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( a )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
0x<hex digits>
2013-09-27 20:01:14 +02:00
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( a == &foo )
2013-09-27 20:01:14 +02:00
with expansion:
0x<hex digits> == 0x<hex digits>
2013-09-27 20:01:14 +02:00
2017-07-13 09:52:51 +02:00
-------------------------------------------------------------------------------
Comparison with explicitly convertible types
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
...............................................................................
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( td == Approx(10.0) )
with expansion:
StrongDoubleTypedef(10) == Approx( 10.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( Approx(10.0) == td )
with expansion:
Approx( 10.0 ) == StrongDoubleTypedef(10)
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( td != Approx(11.0) )
with expansion:
StrongDoubleTypedef(10) != Approx( 11.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( Approx(11.0) != td )
with expansion:
Approx( 11.0 ) != StrongDoubleTypedef(10)
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( td <= Approx(10.0) )
with expansion:
StrongDoubleTypedef(10) <= Approx( 10.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( td <= Approx(11.0) )
with expansion:
StrongDoubleTypedef(10) <= Approx( 11.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( Approx(10.0) <= td )
with expansion:
Approx( 10.0 ) <= StrongDoubleTypedef(10)
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( Approx(9.0) <= td )
with expansion:
Approx( 9.0 ) <= StrongDoubleTypedef(10)
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( td >= Approx(9.0) )
with expansion:
StrongDoubleTypedef(10) >= Approx( 9.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( td >= Approx(10.0) )
with expansion:
StrongDoubleTypedef(10) >= Approx( 10.0 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( Approx(10.0) >= td )
with expansion:
Approx( 10.0 ) >= StrongDoubleTypedef(10)
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( Approx(11.0) >= td )
with expansion:
Approx( 11.0 ) >= StrongDoubleTypedef(10)
-------------------------------------------------------------------------------
Comparisons between ints where one side is computed
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( 54 == 6*9 )
2013-09-27 20:01:14 +02:00
with expansion:
54 == 54
-------------------------------------------------------------------------------
Comparisons between unsigned ints and negative signed ints match c++ standard
behaviour
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( ( -1 > 2u ) )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( -1 > 2u )
2013-09-27 20:01:14 +02:00
with expansion:
-1 > 2
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( ( 2u < -1 ) )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( 2u < -1 )
2013-09-27 20:01:14 +02:00
with expansion:
2 < -1
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( ( minInt > 2u ) )
2013-09-27 20:01:14 +02:00
with expansion:
true
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( minInt > 2u )
2013-09-27 20:01:14 +02:00
with expansion:
-2147483648 > 2
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Comparisons with int literals don't warn when mixing signed/ unsigned
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( i == 1 )
2013-09-27 20:01:14 +02:00
with expansion:
1 == 1
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( ui == 2 )
2013-09-27 20:01:14 +02:00
with expansion:
2 == 2
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( l == 3 )
2013-09-27 20:01:14 +02:00
with expansion:
3 == 3
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( ul == 4 )
2013-09-27 20:01:14 +02:00
with expansion:
4 == 4
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( c == 5 )
2013-09-27 20:01:14 +02:00
with expansion:
5 == 5
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( uc == 6 )
2013-09-27 20:01:14 +02:00
with expansion:
6 == 6
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 1 == i )
2013-09-27 20:01:14 +02:00
with expansion:
1 == 1
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 2 == ui )
2013-09-27 20:01:14 +02:00
with expansion:
2 == 2
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 3 == l )
2013-09-27 20:01:14 +02:00
with expansion:
3 == 3
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 4 == ul )
2013-09-27 20:01:14 +02:00
with expansion:
4 == 4
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 5 == c )
2013-09-27 20:01:14 +02:00
with expansion:
5 == 5
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( 6 == uc )
2013-09-27 20:01:14 +02:00
with expansion:
6 == 6
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-09-01 20:28:49 +02:00
REQUIRE( (std::numeric_limits<uint32_t>::max)() > ul )
2013-09-27 20:01:14 +02:00
with expansion:
2017-09-01 20:28:49 +02:00
4294967295 (0x<hex digits>) > 4
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Contains string matcher
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( testStringForMatching(), Contains( "not there" ) )
2013-09-27 20:01:14 +02:00
with expansion:
"this string contains 'abc' as a substring" contains: "not there"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Custom exceptions can be translated when testing for nothrow
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
REQUIRE_NOTHROW( throwCustom() )
due to unexpected exception with message:
custom exception - not std
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Custom exceptions can be translated when testing for throwing as something else
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
REQUIRE_THROWS_AS( throwCustom(), std::exception )
due to unexpected exception with message:
custom exception - not std
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Custom std-exceptions can be custom translated
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
due to unexpected exception with message:
custom std exception
-------------------------------------------------------------------------------
EndsWith string matcher
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( testStringForMatching(), EndsWith( "this" ) )
2013-09-27 20:01:14 +02:00
with expansion:
"this string contains 'abc' as a substring" ends with: "this"
-------------------------------------------------------------------------------
Equality checks that should fail
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven == 6 )
2013-09-27 20:01:14 +02:00
with expansion:
7 == 6
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven == 8 )
2013-09-27 20:01:14 +02:00
with expansion:
7 == 8
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven == 0 )
2013-09-27 20:01:14 +02:00
with expansion:
7 == 0
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.float_nine_point_one == Approx( 9.11f ) )
2013-09-27 20:01:14 +02:00
with expansion:
9.1f == Approx( 9.1099996567 )
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.float_nine_point_one == Approx( 9.0f ) )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
9.1f == Approx( 9.0 )
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.float_nine_point_one == Approx( 1 ) )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
9.1f == Approx( 1.0 )
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.float_nine_point_one == Approx( 0 ) )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
9.1f == Approx( 0.0 )
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.double_pi == Approx( 3.1415 ) )
with expansion:
3.1415926535 == Approx( 3.1415 )
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello == "goodbye" )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
"hello" == "goodbye"
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello == "hell" )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
"hello" == "hell"
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello == "hello1" )
with expansion:
"hello" == "hello1"
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello.size() == 6 )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
5 == 6
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( x == Approx( 1.301 ) )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
1.3 == Approx( 1.301 )
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Equality checks that should succeed
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( data.int_seven == 7 )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
7 == 7
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( data.float_nine_point_one == Approx( 9.1f ) )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
9.1f == Approx( 9.1000003815 )
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( data.double_pi == Approx( 3.1415926535 ) )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
3.1415926535 == Approx( 3.1415926535 )
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( data.str_hello == "hello" )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
"hello" == "hello"
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( "hello" == data.str_hello )
with expansion:
"hello" == "hello"
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( data.str_hello.size() == 5 )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
5 == 5
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( x == Approx( 1.3 ) )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
1.3 == Approx( 1.3 )
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Equals
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
CHECK_THAT( testStringForMatching(), Equals( "this string contains 'abc' as a substring" ) )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
"this string contains 'abc' as a substring" equals: "this string contains
'abc' as a substring"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Equals string matcher
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( testStringForMatching(), Equals( "something else" ) )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
"this string contains 'abc' as a substring" equals: "something else"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Exception matchers that fail
No exception
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>: FAILED:
2017-07-20 00:29:19 +02:00
CHECK_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{ 1 } )
2017-06-06 15:07:57 +02:00
because no exception was thrown where one was expected:
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>: FAILED:
2017-07-20 00:29:19 +02:00
REQUIRE_THROWS_MATCHES( doesNotThrow(), SpecialException, ExceptionMatcher{ 1 } )
2017-06-06 15:07:57 +02:00
because no exception was thrown where one was expected:
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Exception matchers that fail
Type mismatch
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>: FAILED:
2017-07-20 00:29:19 +02:00
CHECK_THROWS_MATCHES( throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 } )
2017-06-06 15:07:57 +02:00
due to unexpected exception with message:
Unknown exception
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>: FAILED:
2017-07-20 00:29:19 +02:00
REQUIRE_THROWS_MATCHES( throwsAsInt(1), SpecialException, ExceptionMatcher{ 1 } )
2017-06-06 15:07:57 +02:00
due to unexpected exception with message:
Unknown exception
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Exception matchers that fail
Contents are wrong
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>: FAILED:
2017-07-20 00:29:19 +02:00
CHECK_THROWS_MATCHES( throws(3), SpecialException, ExceptionMatcher{ 1 } )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
{?} special exception has value of 1
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>: FAILED:
2017-07-20 00:29:19 +02:00
REQUIRE_THROWS_MATCHES( throws(4), SpecialException, ExceptionMatcher{ 1 } )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
{?} special exception has value of 1
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Exception matchers that succeed
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-07-20 00:29:19 +02:00
CHECK_THROWS_MATCHES( throws(1), SpecialException, ExceptionMatcher{ 1 } )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
{?} special exception has value of 1
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
MatchersTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-07-20 00:29:19 +02:00
REQUIRE_THROWS_MATCHES( throws(2), SpecialException, ExceptionMatcher{ 2 } )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
{?} special exception has value of 2
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Exception messages can be tested for
exact match
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE_THROWS_WITH( thisThrows(), "expected exception" )
with expansion:
"expected exception" equals: "expected exception"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Exception messages can be tested for
different case
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE_THROWS_WITH( thisThrows(), Equals( "expecteD Exception", Catch::CaseSensitive::No ) )
with expansion:
"expected exception" equals: "expected exception" (case insensitive)
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Exception messages can be tested for
wildcarded
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE_THROWS_WITH( thisThrows(), StartsWith( "expected" ) )
with expansion:
"expected exception" starts with: "expected"
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE_THROWS_WITH( thisThrows(), EndsWith( "exception" ) )
with expansion:
"expected exception" ends with: "exception"
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE_THROWS_WITH( thisThrows(), Contains( "except" ) )
with expansion:
"expected exception" contains: "except"
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE_THROWS_WITH( thisThrows(), Contains( "exCept", Catch::CaseSensitive::No ) )
with expansion:
"expected exception" contains: "except" (case insensitive)
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Expected exceptions that don't throw or unexpected exceptions fail the test
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>: FAILED:
CHECK_THROWS_AS( thisThrows(), std::string )
due to unexpected exception with message:
expected exception
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
ExceptionTests.cpp:<line number>: FAILED:
CHECK_THROWS_AS( thisDoesntThrow(), std::domain_error )
because no exception was thrown where one was expected:
ExceptionTests.cpp:<line number>: FAILED:
CHECK_NOTHROW( thisThrows() )
due to unexpected exception with message:
expected exception
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
FAIL aborts the test
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MessageTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MessageTests.cpp:<line number>: FAILED:
explicitly with message:
This is a failure
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
FAIL does not require an argument
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MessageTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MessageTests.cpp:<line number>: FAILED:
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
FAIL_CHECK does not abort the test
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MessageTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MessageTests.cpp:<line number>: FAILED:
explicitly with message:
This is a failure
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
MessageTests.cpp:<line number>:
warning:
This message appears in the output
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
Factorials are computed
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
2017-06-06 15:07:57 +02:00
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
2017-06-06 15:07:57 +02:00
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( Factorial(0) == 1 )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
1 == 1
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( Factorial(1) == 1 )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
1 == 1
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( Factorial(2) == 2 )
with expansion:
2 == 2
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( Factorial(3) == 6 )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
6 == 6
2013-09-27 20:01:14 +02:00
2017-06-06 15:07:57 +02:00
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
2017-06-06 15:07:57 +02:00
REQUIRE( Factorial(10) == 3628800 )
2013-09-27 20:01:14 +02:00
with expansion:
2017-06-06 15:07:57 +02:00
3628800 (0x<hex digits>) == 3628800 (0x<hex digits>)
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Greater-than inequalities with different epsilons
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
...............................................................................
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d >= Approx( 1.22 ) )
with expansion:
1.23 >= Approx( 1.22 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d >= Approx( 1.23 ) )
with expansion:
1.23 >= Approx( 1.23 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE_FALSE( d >= Approx( 1.24 ) )
with expansion:
!(1.23 >= Approx( 1.24 ))
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d >= Approx( 1.24 ).epsilon(0.1) )
with expansion:
1.23 >= Approx( 1.24 )
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
INFO and WARN do not abort tests
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MessageTests.cpp:<line number>:
warning:
this is a message
this is a warning
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
INFO gets logged on failure
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MessageTests.cpp:<line number>: FAILED:
REQUIRE( a == 1 )
2013-09-27 20:01:14 +02:00
with expansion:
2 == 1
with messages:
this message should be logged
so should this
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
INFO gets logged on failure, even if captured before successful assertions
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MessageTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( a == 2 )
2013-09-27 20:01:14 +02:00
with expansion:
2 == 2
with message:
this message may be logged later
2013-09-27 20:01:14 +02:00
MessageTests.cpp:<line number>: FAILED:
CHECK( a == 1 )
2013-09-27 20:01:14 +02:00
with expansion:
2 == 1
2017-06-06 15:07:57 +02:00
with messages:
this message may be logged later
this message should be logged
2013-09-27 20:01:14 +02:00
MessageTests.cpp:<line number>: FAILED:
CHECK( a == 0 )
2013-09-27 20:01:14 +02:00
with expansion:
2 == 0
2017-06-06 15:07:57 +02:00
with messages:
this message may be logged later
this message should be logged
and this, but later
2013-09-27 20:01:14 +02:00
MessageTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( a == 2 )
2013-09-27 20:01:14 +02:00
with expansion:
2 == 2
2017-06-06 15:07:57 +02:00
with messages:
this message may be logged later
this message should be logged
and this, but later
but not this
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
INFO is reset for each loop
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
...............................................................................
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
0 < 10
with messages:
current counter 0
i := 0
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
1 < 10
with messages:
current counter 1
i := 1
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
2 < 10
with messages:
current counter 2
i := 2
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
3 < 10
with messages:
current counter 3
i := 3
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
4 < 10
with messages:
current counter 4
i := 4
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
5 < 10
with messages:
current counter 5
i := 5
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
6 < 10
with messages:
current counter 6
i := 6
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
7 < 10
with messages:
current counter 7
i := 7
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
8 < 10
with messages:
current counter 8
i := 8
MessageTests.cpp:<line number>:
PASSED:
REQUIRE( i < 10 )
with expansion:
9 < 10
with messages:
current counter 9
i := 9
MessageTests.cpp:<line number>: FAILED:
REQUIRE( i < 10 )
with expansion:
10 < 10
with messages:
current counter 10
i := 10
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Inequality checks that should fail
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven != 7 )
2013-09-27 20:01:14 +02:00
with expansion:
7 != 7
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.float_nine_point_one != Approx( 9.1f ) )
2013-09-27 20:01:14 +02:00
with expansion:
9.1f != Approx( 9.1000003815 )
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.double_pi != Approx( 3.1415926535 ) )
with expansion:
3.1415926535 != Approx( 3.1415926535 )
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello != "hello" )
2013-09-27 20:01:14 +02:00
with expansion:
"hello" != "hello"
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello.size() != 5 )
2013-09-27 20:01:14 +02:00
with expansion:
5 != 5
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Inequality checks that should succeed
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.int_seven != 6 )
2013-09-27 20:01:14 +02:00
with expansion:
7 != 6
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.int_seven != 8 )
2013-09-27 20:01:14 +02:00
with expansion:
7 != 8
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.float_nine_point_one != Approx( 9.11f ) )
2013-09-27 20:01:14 +02:00
with expansion:
9.1f != Approx( 9.1099996567 )
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.float_nine_point_one != Approx( 9.0f ) )
2013-09-27 20:01:14 +02:00
with expansion:
9.1f != Approx( 9.0 )
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.float_nine_point_one != Approx( 1 ) )
2013-09-27 20:01:14 +02:00
with expansion:
9.1f != Approx( 1.0 )
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.float_nine_point_one != Approx( 0 ) )
2013-09-27 20:01:14 +02:00
with expansion:
9.1f != Approx( 0.0 )
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.double_pi != Approx( 3.1415 ) )
2013-09-27 20:01:14 +02:00
with expansion:
3.1415926535 != Approx( 3.1415 )
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.str_hello != "goodbye" )
2013-09-27 20:01:14 +02:00
with expansion:
"hello" != "goodbye"
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.str_hello != "hell" )
with expansion:
"hello" != "hell"
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.str_hello != "hello1" )
2013-09-27 20:01:14 +02:00
with expansion:
"hello" != "hello1"
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( data.str_hello.size() != 6 )
2013-09-27 20:01:14 +02:00
with expansion:
5 != 6
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Less-than inequalities with different epsilons
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
...............................................................................
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d <= Approx( 1.24 ) )
with expansion:
1.23 <= Approx( 1.24 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d <= Approx( 1.23 ) )
with expansion:
1.23 <= Approx( 1.23 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE_FALSE( d <= Approx( 1.22 ) )
with expansion:
!(1.23 <= Approx( 1.22 ))
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d <= Approx( 1.22 ).epsilon(0.1) )
with expansion:
1.23 <= Approx( 1.22 )
-------------------------------------------------------------------------------
ManuallyRegistered
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
with message:
was called
-------------------------------------------------------------------------------
Matchers can be (AllOf) composed with the && operator
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), Contains( "string" ) && Contains( "abc" ) && Contains( "substring" ) && Contains( "contains" ) )
with expansion:
"this string contains 'abc' as a substring" ( contains: "string" and
contains: "abc" and contains: "substring" and contains: "contains" )
-------------------------------------------------------------------------------
Matchers can be (AnyOf) composed with the || operator
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), Contains( "string" ) || Contains( "different" ) || Contains( "random" ) )
with expansion:
"this string contains 'abc' as a substring" ( contains: "string" or contains:
"different" or contains: "random" )
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching2(), Contains( "string" ) || Contains( "different" ) || Contains( "random" ) )
with expansion:
"some completely different text that contains one common word" ( contains:
"string" or contains: "different" or contains: "random" )
-------------------------------------------------------------------------------
Matchers can be composed with both && and ||
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), ( Contains( "string" ) || Contains( "different" ) ) && Contains( "substring" ) )
with expansion:
"this string contains 'abc' as a substring" ( ( contains: "string" or
contains: "different" ) and contains: "substring" )
-------------------------------------------------------------------------------
Matchers can be composed with both && and || - failing
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( testStringForMatching(), ( Contains( "string" ) || Contains( "different" ) ) && Contains( "random" ) )
with expansion:
"this string contains 'abc' as a substring" ( ( contains: "string" or
contains: "different" ) and contains: "random" )
-------------------------------------------------------------------------------
Matchers can be negated (Not) with the ! operator
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), !Contains( "different" ) )
with expansion:
"this string contains 'abc' as a substring" not contains: "different"
-------------------------------------------------------------------------------
Matchers can be negated (Not) with the ! operator - failing
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( testStringForMatching(), !Contains( "substring" ) )
with expansion:
"this string contains 'abc' as a substring" not contains: "substring"
-------------------------------------------------------------------------------
Mismatching exception messages failing the test
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>:
PASSED:
REQUIRE_THROWS_WITH( thisThrows(), "expected exception" )
with expansion:
"expected exception" equals: "expected exception"
ExceptionTests.cpp:<line number>: FAILED:
REQUIRE_THROWS_WITH( thisThrows(), "should fail" )
with expansion:
"expected exception" equals: "should fail"
-------------------------------------------------------------------------------
Nice descriptive name
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
warning:
This one ran
-------------------------------------------------------------------------------
Non-std exceptions can be translated
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
due to unexpected exception with message:
custom exception
-------------------------------------------------------------------------------
Objects that evaluated in boolean contexts can be checked
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
CHECK( True )
with expansion:
2017-06-06 15:07:57 +02:00
{?}
TrickyTests.cpp:<line number>:
PASSED:
CHECK( !False )
with expansion:
true
TrickyTests.cpp:<line number>:
PASSED:
CHECK_FALSE( False )
with expansion:
2017-06-06 15:07:57 +02:00
!{?}
-------------------------------------------------------------------------------
Ordering comparison checks that should fail
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
...............................................................................
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven > 7 )
with expansion:
7 > 7
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven < 7 )
with expansion:
7 < 7
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven > 8 )
with expansion:
7 > 8
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven < 6 )
with expansion:
7 < 6
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven < 0 )
with expansion:
7 < 0
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven < -1 )
with expansion:
7 < -1
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven >= 8 )
with expansion:
7 >= 8
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.int_seven <= 6 )
with expansion:
7 <= 6
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.float_nine_point_one < 9 )
with expansion:
9.1f < 9
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.float_nine_point_one > 10 )
with expansion:
9.1f > 10
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.float_nine_point_one > 9.2 )
with expansion:
9.1f > 9.2
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello > "hello" )
with expansion:
"hello" > "hello"
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello < "hello" )
with expansion:
"hello" < "hello"
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello > "hellp" )
with expansion:
"hello" > "hellp"
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello > "z" )
with expansion:
"hello" > "z"
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello < "hellm" )
with expansion:
"hello" < "hellm"
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello < "a" )
with expansion:
"hello" < "a"
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello >= "z" )
with expansion:
"hello" >= "z"
ConditionTests.cpp:<line number>: FAILED:
CHECK( data.str_hello <= "a" )
with expansion:
"hello" <= "a"
-------------------------------------------------------------------------------
Ordering comparison checks that should succeed
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
...............................................................................
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.int_seven < 8 )
with expansion:
7 < 8
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.int_seven > 6 )
with expansion:
7 > 6
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.int_seven > 0 )
with expansion:
7 > 0
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.int_seven > -1 )
with expansion:
7 > -1
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.int_seven >= 7 )
with expansion:
7 >= 7
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.int_seven >= 6 )
with expansion:
7 >= 6
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.int_seven <= 7 )
with expansion:
7 <= 7
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.int_seven <= 8 )
with expansion:
7 <= 8
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.float_nine_point_one > 9 )
with expansion:
9.1f > 9
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.float_nine_point_one < 10 )
with expansion:
9.1f < 10
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.float_nine_point_one < 9.2 )
with expansion:
9.1f < 9.2
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.str_hello <= "hello" )
with expansion:
"hello" <= "hello"
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.str_hello >= "hello" )
with expansion:
"hello" >= "hello"
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.str_hello < "hellp" )
with expansion:
"hello" < "hellp"
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.str_hello < "zebra" )
with expansion:
"hello" < "zebra"
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.str_hello > "hellm" )
with expansion:
"hello" > "hellm"
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( data.str_hello > "a" )
with expansion:
"hello" > "a"
-------------------------------------------------------------------------------
Output from all sections is reported
one
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
...............................................................................
MessageTests.cpp:<line number>: FAILED:
explicitly with message:
Message from section one
-------------------------------------------------------------------------------
Output from all sections is reported
two
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
...............................................................................
MessageTests.cpp:<line number>: FAILED:
explicitly with message:
Message from section two
-------------------------------------------------------------------------------
Parse test names and tags
Empty test spec should have no filters
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
Test spec from empty string should have no filters
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches(tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
Test spec from just a comma should have no filters
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
Test spec from name should have one filter
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Test spec from quoted name should have one filter
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Test spec from name should have one filter
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
Wildcard at the start
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( parseTestSpec( "*a" ).matches( tcA ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Wildcard at the end
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( parseTestSpec( "a*" ).matches( tcA ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Wildcard at both ends
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( parseTestSpec( "*a*" ).matches( tcA ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Redundant wildcard at the start
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
Redundant wildcard at the end
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
Redundant wildcard at both ends
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
Wildcard at both ends, redundant at start
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Just wildcard
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Single tag
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
Single tag, two matches
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Two tags
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Two tags, spare separated
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
Wildcarded name and tag
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
Single tag exclusion
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
One tag exclusion and one tag inclusion
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
One tag exclusion and one wldcarded name inclusion
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
One tag exclusion, using exclude:, and one wldcarded name inclusion
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
name exclusion
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parse test names and tags
wildcarded name exclusion
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
wildcarded name exclusion with tag inclusion
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
wildcarded name exclusion, using exclude:, with tag inclusion
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
two wildcarded names
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
empty tag
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
empty quoted name
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Parse test names and tags
quoted string followed by tag exclusion
-------------------------------------------------------------------------------
CmdLineTests.cpp:<line number>
...............................................................................
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.hasFilters() == true )
with expansion:
true == true
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcA ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcB ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcC ) == false )
with expansion:
false == false
CmdLineTests.cpp:<line number>:
PASSED:
CHECK( spec.matches( tcD ) == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Parsing a std::pair
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( (std::pair<int, int>( 1, 2 )) == aNicePair )
with expansion:
{ 1, 2 } == { 1, 2 }
-------------------------------------------------------------------------------
Pointers can be compared to null
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
...............................................................................
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( p == 0 )
with expansion:
0 == 0
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( p == pNULL )
with expansion:
0 == 0
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( p != 0 )
with expansion:
0x<hex digits> != 0
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( cp != 0 )
with expansion:
0x<hex digits> != 0
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( cpc != 0 )
with expansion:
0x<hex digits> != 0
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( returnsNull() == 0 )
with expansion:
{null string} == 0
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( returnsConstNull() == 0 )
with expansion:
{null string} == 0
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( 0 != p )
with expansion:
0 != 0x<hex digits>
-------------------------------------------------------------------------------
Process can be configured on command line
empty args don't cause a crash
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( result )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
CHECK( config.processName == "" )
with expansion:
"" == ""
-------------------------------------------------------------------------------
Process can be configured on command line
default - no arguments
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( result )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
CHECK( config.processName == "test" )
with expansion:
"test" == "test"
TestMain.cpp:<line number>:
PASSED:
CHECK( config.shouldDebugBreak == false )
with expansion:
false == false
TestMain.cpp:<line number>:
PASSED:
CHECK( config.abortAfter == -1 )
with expansion:
-1 == -1
TestMain.cpp:<line number>:
PASSED:
CHECK( config.noThrow == false )
with expansion:
false == false
TestMain.cpp:<line number>:
PASSED:
CHECK( config.reporterNames.empty() )
with expansion:
true
-------------------------------------------------------------------------------
Process can be configured on command line
test lists
1 test
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( result )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
REQUIRE( cfg.testSpec().matches(fakeTestCase("notIncluded")) == false )
with expansion:
false == false
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
REQUIRE( cfg.testSpec().matches(fakeTestCase("test1")) )
with expansion:
true
-------------------------------------------------------------------------------
Process can be configured on command line
test lists
Specify one test case exclusion using exclude:
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( result )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
REQUIRE( cfg.testSpec().matches(fakeTestCase("test1")) == false )
with expansion:
false == false
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
REQUIRE( cfg.testSpec().matches(fakeTestCase("alwaysIncluded")) )
with expansion:
true
-------------------------------------------------------------------------------
Process can be configured on command line
test lists
Specify one test case exclusion using ~
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( result )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
REQUIRE( cfg.testSpec().matches(fakeTestCase("test1")) == false )
with expansion:
false == false
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
REQUIRE( cfg.testSpec().matches(fakeTestCase("alwaysIncluded")) )
with expansion:
true
-------------------------------------------------------------------------------
Process can be configured on command line
reporter
-r/console
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "-r", "console"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.reporterNames[0] == "console" )
with expansion:
"console" == "console"
-------------------------------------------------------------------------------
Process can be configured on command line
reporter
-r/xml
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "-r", "xml"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.reporterNames[0] == "xml" )
with expansion:
"xml" == "xml"
-------------------------------------------------------------------------------
Process can be configured on command line
reporter
-r xml and junit
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "-r", "xml", "-r", "junit"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.reporterNames.size() == 2 )
with expansion:
2 == 2
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.reporterNames[0] == "xml" )
with expansion:
"xml" == "xml"
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.reporterNames[1] == "junit" )
with expansion:
"junit" == "junit"
-------------------------------------------------------------------------------
Process can be configured on command line
reporter
--reporter/junit
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "--reporter", "junit"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.reporterNames[0] == "junit" )
with expansion:
"junit" == "junit"
-------------------------------------------------------------------------------
Process can be configured on command line
debugger
-b
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "-b"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.shouldDebugBreak == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Process can be configured on command line
debugger
--break
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "--break"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.shouldDebugBreak )
with expansion:
true
-------------------------------------------------------------------------------
Process can be configured on command line
abort
-a aborts after first failure
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "-a"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.abortAfter == 1 )
with expansion:
1 == 1
-------------------------------------------------------------------------------
Process can be configured on command line
abort
-x 2 aborts after two failures
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "-x", "2"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.abortAfter == 2 )
with expansion:
2 == 2
-------------------------------------------------------------------------------
Process can be configured on command line
abort
2017-06-13 00:13:27 +02:00
-x must be numeric
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( !result )
with expansion:
2017-06-13 00:13:27 +02:00
true
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
REQUIRE_THAT( result.errorMessage(), Contains("convert") && Contains("oops") )
with expansion:
2017-06-13 00:13:27 +02:00
"Unable to convert 'oops' to destination type" ( contains: "convert" and
contains: "oops" )
-------------------------------------------------------------------------------
Process can be configured on command line
nothrow
-e
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "-e"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
REQUIRE( config.noThrow )
with expansion:
2017-06-13 00:13:27 +02:00
true
-------------------------------------------------------------------------------
Process can be configured on command line
nothrow
--nothrow
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "--nothrow"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
REQUIRE( config.noThrow )
with expansion:
2017-06-13 00:13:27 +02:00
true
-------------------------------------------------------------------------------
Process can be configured on command line
output filename
-o filename
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "-o", "filename.ext"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.outputFilename == "filename.ext" )
with expansion:
"filename.ext" == "filename.ext"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
Process can be configured on command line
output filename
--out
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "--out", "filename.ext"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.outputFilename == "filename.ext" )
with expansion:
"filename.ext" == "filename.ext"
-------------------------------------------------------------------------------
Process can be configured on command line
combinations
Single character flags can be combined
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "-abe"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
CHECK( config.abortAfter == 1 )
with expansion:
1 == 1
TestMain.cpp:<line number>:
PASSED:
CHECK( config.shouldDebugBreak )
with expansion:
true
TestMain.cpp:<line number>:
PASSED:
CHECK( config.noThrow == true )
with expansion:
true == true
-------------------------------------------------------------------------------
Process can be configured on command line
use-colour
without option
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.useColour == UseColour::Auto )
with expansion:
0 == 0
-------------------------------------------------------------------------------
Process can be configured on command line
use-colour
auto
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "--use-colour", "auto"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.useColour == UseColour::Auto )
with expansion:
0 == 0
-------------------------------------------------------------------------------
Process can be configured on command line
use-colour
yes
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "--use-colour", "yes"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.useColour == UseColour::Yes )
with expansion:
1 == 1
-------------------------------------------------------------------------------
Process can be configured on command line
use-colour
no
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( cli.parse({"test", "--use-colour", "no"}) )
with expansion:
{?}
TestMain.cpp:<line number>:
PASSED:
REQUIRE( config.useColour == UseColour::No )
with expansion:
2 == 2
-------------------------------------------------------------------------------
Process can be configured on command line
use-colour
error
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
2017-06-13 00:13:27 +02:00
CHECK( !result )
with expansion:
true
TestMain.cpp:<line number>:
PASSED:
CHECK_THAT( result.errorMessage(), Contains( "colour mode must be one of" ) )
with expansion:
"colour mode must be one of: auto, yes or no. 'wrong' not recognised"
contains: "colour mode must be one of"
2017-06-06 15:07:57 +02:00
-------------------------------------------------------------------------------
Reconstruction should be based on stringification: #914
-------------------------------------------------------------------------------
DecompositionTests.cpp:<line number>
...............................................................................
DecompositionTests.cpp:<line number>: FAILED:
CHECK( truthy(false) )
with expansion:
Hey, its truthy!
-------------------------------------------------------------------------------
SUCCEED counts as a test pass
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
...............................................................................
MessageTests.cpp:<line number>:
PASSED:
with message:
this is a success
-------------------------------------------------------------------------------
SUCCESS does not require an argument
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
...............................................................................
MessageTests.cpp:<line number>:
PASSED:
-------------------------------------------------------------------------------
Scenario: BDD tests requiring Fixtures to provide commonly-accessed data or
methods
Given: No operations precede me
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( before == 0 )
with expansion:
0 == 0
-------------------------------------------------------------------------------
Scenario: BDD tests requiring Fixtures to provide commonly-accessed data or
methods
Given: No operations precede me
When: We get the count
Then: Subsequently values are higher
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( after > before )
with expansion:
1 > 0
-------------------------------------------------------------------------------
Scenario: Do that thing with the thing
Given: This stuff exists
When: I do this
Then: it should do this
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( itDoesThis() )
with expansion:
true
-------------------------------------------------------------------------------
Scenario: Do that thing with the thing
Given: This stuff exists
When: I do this
Then: it should do this
And: do that
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( itDoesThat() )
with expansion:
true
-------------------------------------------------------------------------------
Scenario: This is a really long scenario name to see how the list command deals
with wrapping
Given: A section name that is so long that it cannot fit in a single
console width
When: The test headers are printed as part of the normal running of the
scenario
Then: The, deliberately very long and overly verbose (you see what I did
there?) section names must wrap, along with an indent
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
with message:
boo!
-------------------------------------------------------------------------------
Scenario: Vector resizing affects size and capacity
Given: an empty vector
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( v.size() == 0 )
with expansion:
0 == 0
-------------------------------------------------------------------------------
Scenario: Vector resizing affects size and capacity
Given: an empty vector
When: it is made larger
Then: the size and capacity go up
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( v.size() == 10 )
with expansion:
10 == 10
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( v.capacity() >= 10 )
with expansion:
10 >= 10
-------------------------------------------------------------------------------
Scenario: Vector resizing affects size and capacity
Given: an empty vector
When: it is made larger
Then: the size and capacity go up
And when: it is made smaller again
Then: the size goes down but the capacity stays the same
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( v.size() == 5 )
with expansion:
5 == 5
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( v.capacity() >= 10 )
with expansion:
10 >= 10
-------------------------------------------------------------------------------
Scenario: Vector resizing affects size and capacity
Given: an empty vector
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( v.size() == 0 )
with expansion:
0 == 0
-------------------------------------------------------------------------------
Scenario: Vector resizing affects size and capacity
Given: an empty vector
When: we reserve more space
Then: The capacity is increased but the size remains the same
-------------------------------------------------------------------------------
BDDTests.cpp:<line number>
...............................................................................
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( v.capacity() >= 10 )
with expansion:
10 >= 10
BDDTests.cpp:<line number>:
PASSED:
REQUIRE( v.size() == 0 )
with expansion:
0 == 0
A string sent directly to stdout
A string sent directly to stderr
-------------------------------------------------------------------------------
Some simple comparisons between doubles
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
...............................................................................
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d == Approx( 1.23 ) )
with expansion:
1.23 == Approx( 1.23 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d != Approx( 1.22 ) )
with expansion:
1.23 != Approx( 1.22 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d != Approx( 1.24 ) )
with expansion:
1.23 != Approx( 1.24 )
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( Approx( d ) == 1.23 )
with expansion:
Approx( 1.23 ) == 1.23
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( Approx( d ) != 1.22 )
with expansion:
Approx( 1.23 ) != 1.22
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( Approx( d ) != 1.24 )
with expansion:
Approx( 1.23 ) != 1.24
Message from section one
-------------------------------------------------------------------------------
Standard output from all sections is reported
one
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
...............................................................................
No assertions in section 'one'
Message from section two
-------------------------------------------------------------------------------
Standard output from all sections is reported
two
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
...............................................................................
No assertions in section 'two'
-------------------------------------------------------------------------------
StartsWith string matcher
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( testStringForMatching(), StartsWith( "string" ) )
with expansion:
"this string contains 'abc' as a substring" starts with: "string"
-------------------------------------------------------------------------------
String matchers
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
REQUIRE_THAT( testStringForMatching(), Contains( "string" ) )
with expansion:
"this string contains 'abc' as a substring" contains: "string"
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), Contains( "abc" ) )
with expansion:
"this string contains 'abc' as a substring" contains: "abc"
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), StartsWith( "this" ) )
with expansion:
"this string contains 'abc' as a substring" starts with: "this"
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( testStringForMatching(), EndsWith( "substring" ) )
with expansion:
"this string contains 'abc' as a substring" ends with: "substring"
2017-06-29 12:19:08 +02:00
-------------------------------------------------------------------------------
StringRef
Empty string
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( empty.empty() )
with expansion:
true
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( empty.size() == 0 )
with expansion:
0 == 0
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( std::strcmp( empty.c_str(), "" ) == 0 )
with expansion:
0 == 0
-------------------------------------------------------------------------------
StringRef
From string literal
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( s.empty() == false )
with expansion:
false == false
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( s.size() == 5 )
with expansion:
5 == 5
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( isSubstring( s ) == false )
with expansion:
false == false
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( std::strcmp( rawChars, "hello" ) == 0 )
with expansion:
0 == 0
-------------------------------------------------------------------------------
StringRef
From string literal
c_str() does not cause copy
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( isOwned( s ) == false )
with expansion:
false == false
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( s.c_str() == rawChars )
with expansion:
"hello" == "hello"
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( isOwned( s ) == false )
with expansion:
false == false
-------------------------------------------------------------------------------
StringRef
From sub-string
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( original == "original" )
2017-08-14 09:50:44 +02:00
StringRef.tests.cpp:<line number>: FAILED:
2017-06-29 12:19:08 +02:00
REQUIRE( isSubstring( original ) )
with expansion:
2017-08-14 09:50:44 +02:00
false
2017-06-29 12:19:08 +02:00
-------------------------------------------------------------------------------
StringRef
Substrings
zero-based substring
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( ss.empty() == false )
with expansion:
false == false
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( ss.size() == 5 )
with expansion:
5 == 5
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( std::strcmp( ss.c_str(), "hello" ) == 0 )
with expansion:
0 == 0
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( ss == "hello" )
with expansion:
2017-08-14 09:50:44 +02:00
hello == "hello"
2017-06-29 12:19:08 +02:00
-------------------------------------------------------------------------------
StringRef
Substrings
c_str() causes copy
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( isSubstring( ss ) )
with expansion:
true
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( isOwned( ss ) == false )
with expansion:
false == false
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( rawChars == data( s ) )
with expansion:
"hello world!" == "hello world!"
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( ss.c_str() != rawChars )
with expansion:
"hello" != "hello world!"
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( isSubstring( ss ) == false )
with expansion:
false == false
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( isOwned( ss ) )
with expansion:
true
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( data( ss ) != data( s ) )
with expansion:
"hello" != "hello world!"
-------------------------------------------------------------------------------
StringRef
Substrings
non-zero-based substring
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( ss.size() == 6 )
with expansion:
6 == 6
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( std::strcmp( ss.c_str(), "world!" ) == 0 )
with expansion:
0 == 0
-------------------------------------------------------------------------------
StringRef
Substrings
Pointer values of full refs should match
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( s.c_str() == s2.c_str() )
with expansion:
"hello world!" == "hello world!"
-------------------------------------------------------------------------------
StringRef
Substrings
Pointer values of substring refs should not match
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( s.c_str() != ss.c_str() )
with expansion:
"hello world!" != "hello"
-------------------------------------------------------------------------------
StringRef
Comparisons
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( StringRef("hello") == StringRef("hello") )
with expansion:
2017-08-14 09:50:44 +02:00
hello == hello
2017-06-29 12:19:08 +02:00
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( StringRef("hello") != StringRef("cello") )
with expansion:
2017-08-14 09:50:44 +02:00
hello != cello
2017-06-29 12:19:08 +02:00
2017-08-14 09:43:33 +02:00
-------------------------------------------------------------------------------
StringRef
from std::string
implicitly constructed
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( sr == "a standard string" )
with expansion:
2017-08-14 09:50:44 +02:00
a standard string == "a standard string"
2017-08-14 09:43:33 +02:00
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( sr.size() == stdStr.size() )
with expansion:
17 == 17
-------------------------------------------------------------------------------
StringRef
from std::string
explicitly constructed
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( sr == "a standard string" )
with expansion:
2017-08-14 09:50:44 +02:00
a standard string == "a standard string"
2017-08-14 09:43:33 +02:00
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( sr.size() == stdStr.size() )
with expansion:
17 == 17
-------------------------------------------------------------------------------
StringRef
from std::string
assigned
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( sr == "a standard string" )
with expansion:
2017-08-14 09:50:44 +02:00
a standard string == "a standard string"
2017-08-14 09:43:33 +02:00
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( sr.size() == stdStr.size() )
with expansion:
17 == 17
-------------------------------------------------------------------------------
StringRef
to std::string
implicitly constructed
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( stdStr == "a stringref" )
with expansion:
"a stringref" == "a stringref"
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( stdStr.size() == sr.size() )
with expansion:
11 == 11
-------------------------------------------------------------------------------
StringRef
to std::string
explicitly constructed
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( stdStr == "a stringref" )
with expansion:
"a stringref" == "a stringref"
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( stdStr.size() == sr.size() )
with expansion:
11 == 11
-------------------------------------------------------------------------------
StringRef
to std::string
assigned
-------------------------------------------------------------------------------
StringRef.tests.cpp:<line number>
...............................................................................
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( stdStr == "a stringref" )
with expansion:
"a stringref" == "a stringref"
StringRef.tests.cpp:<line number>:
PASSED:
REQUIRE( stdStr.size() == sr.size() )
with expansion:
11 == 11
-------------------------------------------------------------------------------
Tabs and newlines show in output
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>: FAILED:
CHECK( s1 == s2 )
with expansion:
"if ($b == 10) {
$a = 20;
}"
==
"if ($b == 10) {
$a = 20;
}
"
-------------------------------------------------------------------------------
Tag alias can be registered against tag patterns
The same tag alias can only be registered once
-------------------------------------------------------------------------------
TagAliasTests.cpp:<line number>
...............................................................................
TagAliasTests.cpp:<line number>:
PASSED:
CHECK_THAT( what, Contains( "[@zzz]" ) )
with expansion:
2017-05-05 19:25:02 +02:00
"error: tag alias, '[@zzz]' already registered.
First seen at: file:2
Redefined at: file:10" contains: "[@zzz]"
TagAliasTests.cpp:<line number>:
PASSED:
CHECK_THAT( what, Contains( "file" ) )
with expansion:
2017-05-05 19:25:02 +02:00
"error: tag alias, '[@zzz]' already registered.
First seen at: file:2
Redefined at: file:10" contains: "file"
TagAliasTests.cpp:<line number>:
PASSED:
CHECK_THAT( what, Contains( "2" ) )
with expansion:
2017-05-05 19:25:02 +02:00
"error: tag alias, '[@zzz]' already registered.
First seen at: file:2
Redefined at: file:10" contains: "2"
TagAliasTests.cpp:<line number>:
PASSED:
CHECK_THAT( what, Contains( "10" ) )
with expansion:
2017-05-05 19:25:02 +02:00
"error: tag alias, '[@zzz]' already registered.
First seen at: file:2
Redefined at: file:10" contains: "10"
-------------------------------------------------------------------------------
Tag alias can be registered against tag patterns
Tag aliases must be of the form [@name]
-------------------------------------------------------------------------------
TagAliasTests.cpp:<line number>
...............................................................................
TagAliasTests.cpp:<line number>:
PASSED:
CHECK_THROWS( registry.add( "[no ampersat]", "", Catch::SourceLineInfo( "file", 3 ) ) )
TagAliasTests.cpp:<line number>:
PASSED:
CHECK_THROWS( registry.add( "[the @ is not at the start]", "", Catch::SourceLineInfo( "file", 3 ) ) )
TagAliasTests.cpp:<line number>:
PASSED:
CHECK_THROWS( registry.add( "@no square bracket at start]", "", Catch::SourceLineInfo( "file", 3 ) ) )
TagAliasTests.cpp:<line number>:
PASSED:
CHECK_THROWS( registry.add( "[@no square bracket at end", "", Catch::SourceLineInfo( "file", 3 ) ) )
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
Test case with one argument
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
VariadicMacrosTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
VariadicMacrosTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
with message:
no assertions
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
Test enum bit values
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
TrickyTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE( 0x<hex digits> == bit30and31 )
2014-09-03 20:22:47 +02:00
with expansion:
3221225472 (0x<hex digits>) == 3221225472
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
The NO_FAIL macro reports a failure but does not fail the test
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
MessageTests.cpp:<line number>:
FAILED - but was ok:
CHECK_NOFAIL( 1 == 2 )
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
This test 'should' fail but doesn't
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
with message:
oops!
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
Tracker
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isOpen() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
successfully close one section
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isSuccessfullyCompleted() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( ctx.completedCycle() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isSuccessfullyCompleted() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isOpen() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
fail one section
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isSuccessfullyCompleted() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( ctx.completedCycle() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isSuccessfullyCompleted() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
fail one section
re-enter after failed section
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isOpen() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( ctx.completedCycle() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isSuccessfullyCompleted() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isOpen() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
fail one section
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isSuccessfullyCompleted() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( ctx.completedCycle() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isSuccessfullyCompleted() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
fail one section
re-enter after failed section and find next section
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isOpen() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( ctx.completedCycle() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isSuccessfullyCompleted() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isOpen() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
successfully close one section, then find another
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isOpen() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
successfully close one section, then find another
Re-enter - skips S1 and enters S2
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isOpen() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2b.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( ctx.completedCycle() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
successfully close one section, then find another
Re-enter - skips S1 and enters S2
Successfully close S2
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( ctx.completedCycle() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2b.isSuccessfullyCompleted() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isSuccessfullyCompleted() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isOpen() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
successfully close one section, then find another
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isOpen() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
successfully close one section, then find another
Re-enter - skips S1 and enters S2
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isOpen() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2b.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( ctx.completedCycle() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
successfully close one section, then find another
Re-enter - skips S1 and enters S2
fail S2
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( ctx.completedCycle() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2b.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2b.isSuccessfullyCompleted() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isSuccessfullyCompleted() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase3.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1c.isOpen() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2c.isOpen() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase3.isSuccessfullyCompleted() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isOpen() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
open a nested section
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isOpen() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
start a generator
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1.index() == 0 )
with expansion:
0 == 0
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
start a generator
close outer section
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isSuccessfullyCompleted() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
start a generator
close outer section
Re-enter for second generation
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1b.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1b.index() == 1 )
with expansion:
1 == 1
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1b.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isComplete() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isOpen() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
start a generator
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1.index() == 0 )
with expansion:
0 == 0
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
start a generator
Start a new inner section
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
start a generator
Start a new inner section
Re-enter for second generation
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1b.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1b.index() == 1 )
with expansion:
1 == 1
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2b.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2b.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1b.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isComplete() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isOpen() )
with expansion:
true
-------------------------------------------------------------------------------
Tracker
start a generator
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1.index() == 0 )
with expansion:
0 == 0
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
start a generator
Fail an inner section
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2.isSuccessfullyCompleted() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase.isComplete() == false )
with expansion:
false == false
-------------------------------------------------------------------------------
Tracker
start a generator
Fail an inner section
Re-enter for second generation
-------------------------------------------------------------------------------
PartTrackerTests.cpp:<line number>
...............................................................................
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1b.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1b.index() == 0 )
with expansion:
0 == 0
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2b.isOpen() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1b.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1b.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase2.isComplete() == false )
with expansion:
false == false
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase3.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1c.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1c.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1c.index() == 1 )
with expansion:
1 == 1
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2c.isOpen() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s2c.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( g1c.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( s1c.isComplete() )
with expansion:
true
PartTrackerTests.cpp:<line number>:
PASSED:
REQUIRE( testCase3.isComplete() )
with expansion:
true
-------------------------------------------------------------------------------
Unexpected exceptions can be translated
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
due to unexpected exception with message:
3.14
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
Use a custom approx
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
ApproxTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
ApproxTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE( d == approx( 1.23 ) )
2014-09-03 20:22:47 +02:00
with expansion:
1.23 == Approx( 1.23 )
2014-09-03 20:22:47 +02:00
ApproxTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE( d == approx( 1.22 ) )
2014-09-03 20:22:47 +02:00
with expansion:
1.23 == Approx( 1.22 )
2014-09-03 20:22:47 +02:00
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( d == approx( 1.24 ) )
with expansion:
1.23 == Approx( 1.24 )
2014-09-03 20:22:47 +02:00
ApproxTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE( d != approx( 1.25 ) )
2014-09-03 20:22:47 +02:00
with expansion:
1.23 != Approx( 1.25 )
2014-09-03 20:22:47 +02:00
ApproxTests.cpp:<line number>:
PASSED:
REQUIRE( approx( d ) == 1.23 )
with expansion:
Approx( 1.23 ) == 1.23
2014-09-03 20:22:47 +02:00
ApproxTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE( approx( d ) == 1.22 )
2014-09-03 20:22:47 +02:00
with expansion:
Approx( 1.23 ) == 1.22
2014-09-03 20:22:47 +02:00
ApproxTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE( approx( d ) == 1.24 )
2014-09-03 20:22:47 +02:00
with expansion:
Approx( 1.23 ) == 1.24
2014-09-03 20:22:47 +02:00
ApproxTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE( approx( d ) != 1.25 )
2014-09-03 20:22:47 +02:00
with expansion:
Approx( 1.23 ) != 1.25
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
Variadic macros
Section with one argument
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
VariadicMacrosTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
VariadicMacrosTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
with message:
no assertions
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
Vector matchers
Contains (element)
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( v, VectorContains( 1 ) )
with expansion:
{ 1, 2, 3 } Contains: 1
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( v, VectorContains( 2 ) )
with expansion:
{ 1, 2, 3 } Contains: 2
-------------------------------------------------------------------------------
Vector matchers
Contains (vector)
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( v, Contains( v2 ) )
with expansion:
{ 1, 2, 3 } Contains: { 1, 2 }
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( v, Contains( v2 ) )
with expansion:
{ 1, 2, 3 } Contains: { 1, 2, 3 }
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( v, Contains( empty) )
with expansion:
{ 1, 2, 3 } Contains: { }
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( empty, Contains( empty) )
with expansion:
{ } Contains: { }
-------------------------------------------------------------------------------
Vector matchers
Equals
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( v, Equals( v ) )
with expansion:
{ 1, 2, 3 } Equals: { 1, 2, 3 }
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( empty, Equals( empty ) )
with expansion:
{ } Equals: { }
MatchersTests.cpp:<line number>:
PASSED:
CHECK_THAT( v, Equals( v2 ) )
with expansion:
{ 1, 2, 3 } Equals: { 1, 2, 3 }
-------------------------------------------------------------------------------
Vector matchers that fail
Contains (element)
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( v, VectorContains( -1 ) )
with expansion:
{ 1, 2, 3 } Contains: -1
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( empty, VectorContains( 1 ) )
with expansion:
{ } Contains: 1
-------------------------------------------------------------------------------
Vector matchers that fail
Contains (vector)
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( empty, Contains( v) )
with expansion:
{ } Contains: { 1, 2, 3 }
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( v, Contains( v2 ) )
with expansion:
{ 1, 2, 3 } Contains: { 1, 2, 4 }
-------------------------------------------------------------------------------
Vector matchers that fail
Equals
-------------------------------------------------------------------------------
MatchersTests.cpp:<line number>
...............................................................................
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( v, Equals( v2 ) )
with expansion:
{ 1, 2, 3 } Equals: { 1, 2 }
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( v2, Equals( v ) )
with expansion:
{ 1, 2 } Equals: { 1, 2, 3 }
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( empty, Equals( v ) )
with expansion:
{ } Equals: { 1, 2, 3 }
MatchersTests.cpp:<line number>: FAILED:
CHECK_THAT( v, Equals( empty ) )
with expansion:
{ 1, 2, 3 } Equals: { }
-------------------------------------------------------------------------------
When checked exceptions are thrown they can be expected or unexpected
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE_THROWS_AS( thisThrows(), std::domain_error )
2014-09-03 20:22:47 +02:00
ExceptionTests.cpp:<line number>:
2014-09-03 20:22:47 +02:00
PASSED:
REQUIRE_NOTHROW( thisDoesntThrow() )
ExceptionTests.cpp:<line number>:
PASSED:
REQUIRE_THROWS( thisThrows() )
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
When unchecked exceptions are thrown directly they are always failures
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
due to unexpected exception with message:
unexpected exception
-------------------------------------------------------------------------------
When unchecked exceptions are thrown during a CHECK the test should continue
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
2014-09-03 20:22:47 +02:00
ExceptionTests.cpp:<line number>: FAILED:
CHECK( thisThrows() == 0 )
due to unexpected exception with message:
expected exception
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
When unchecked exceptions are thrown during a REQUIRE the test should abort
fail
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
2014-09-03 20:22:47 +02:00
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
REQUIRE( thisThrows() == 0 )
due to unexpected exception with message:
expected exception
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
When unchecked exceptions are thrown from functions they are always failures
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
CHECK( thisThrows() == 0 )
due to unexpected exception with message:
expected exception
2014-09-03 20:22:47 +02:00
-------------------------------------------------------------------------------
When unchecked exceptions are thrown from sections they are always failures
section name
-------------------------------------------------------------------------------
ExceptionTests.cpp:<line number>
...............................................................................
ExceptionTests.cpp:<line number>: FAILED:
due to unexpected exception with message:
unexpected exception
-------------------------------------------------------------------------------
Where the LHS is not a simple value
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
warning:
Uncomment the code in this test to check that it gives a sensible compiler
error
-------------------------------------------------------------------------------
Where there is more to the expression after the RHS
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
warning:
Uncomment the code in this test to check that it gives a sensible compiler
error
-------------------------------------------------------------------------------
X/level/0/a
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
-------------------------------------------------------------------------------
X/level/0/b
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
-------------------------------------------------------------------------------
X/level/1/a
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
-------------------------------------------------------------------------------
X/level/1/b
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
-------------------------------------------------------------------------------
XmlEncode
normal string
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( "normal string" ) == "normal string" )
with expansion:
"normal string" == "normal string"
-------------------------------------------------------------------------------
XmlEncode
empty string
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( "" ) == "" )
with expansion:
"" == ""
-------------------------------------------------------------------------------
XmlEncode
string with ampersand
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( "smith & jones" ) == "smith &amp; jones" )
with expansion:
"smith &amp; jones" == "smith &amp; jones"
-------------------------------------------------------------------------------
XmlEncode
string with less-than
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( "smith < jones" ) == "smith &lt; jones" )
with expansion:
"smith &lt; jones" == "smith &lt; jones"
-------------------------------------------------------------------------------
XmlEncode
string with greater-than
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( "smith > jones" ) == "smith > jones" )
with expansion:
"smith > jones" == "smith > jones"
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( "smith ]]> jones" ) == "smith ]]&gt; jones" )
with expansion:
"smith ]]&gt; jones"
==
"smith ]]&gt; jones"
-------------------------------------------------------------------------------
XmlEncode
string with quotes
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( stringWithQuotes ) == stringWithQuotes )
with expansion:
"don't "quote" me on that"
==
"don't "quote" me on that"
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( stringWithQuotes, Catch::XmlEncode::ForAttributes ) == "don't &quot;quote&quot; me on that" )
with expansion:
"don't &quot;quote&quot; me on that"
==
"don't &quot;quote&quot; me on that"
-------------------------------------------------------------------------------
XmlEncode
string with control char (1)
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( "[\x01]" ) == "[\\x01]" )
with expansion:
"[\x01]" == "[\x01]"
-------------------------------------------------------------------------------
XmlEncode
string with control char (x7F)
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( encode( "[\x7F]" ) == "[\\x7F]" )
with expansion:
"[\x7F]" == "[\x7F]"
-------------------------------------------------------------------------------
atomic if
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( x == 0 )
with expansion:
0 == 0
-------------------------------------------------------------------------------
boolean member
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( obj.prop != 0 )
with expansion:
0x<hex digits> != 0
-------------------------------------------------------------------------------
checkedElse
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECKED_ELSE( flag )
2013-09-27 20:01:14 +02:00
with expansion:
true
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( testCheckedElse( true ) )
with expansion:
true
-------------------------------------------------------------------------------
checkedElse, failing
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>: FAILED:
CHECKED_ELSE( flag )
with expansion:
false
MiscTests.cpp:<line number>: FAILED:
REQUIRE( testCheckedElse( false ) )
with expansion:
false
-------------------------------------------------------------------------------
checkedIf
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
CHECKED_IF( flag )
with expansion:
true
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( testCheckedIf( true ) )
with expansion:
true
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
checkedIf, failing
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>: FAILED:
CHECKED_IF( flag )
with expansion:
false
MiscTests.cpp:<line number>: FAILED:
REQUIRE( testCheckedIf( false ) )
with expansion:
false
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
comparisons between const int variables
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( unsigned_char_var == 1 )
with expansion:
1 == 1
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( unsigned_short_var == 1 )
with expansion:
1 == 1
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( unsigned_int_var == 1 )
with expansion:
1 == 1
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( unsigned_long_var == 1 )
with expansion:
1 == 1
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
comparisons between int variables
-------------------------------------------------------------------------------
ConditionTests.cpp:<line number>
...............................................................................
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( long_var == unsigned_char_var )
with expansion:
1 == 1
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( long_var == unsigned_short_var )
with expansion:
1 == 1
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( long_var == unsigned_int_var )
with expansion:
1 == 1
ConditionTests.cpp:<line number>:
PASSED:
REQUIRE( long_var == unsigned_long_var )
with expansion:
1 == 1
-------------------------------------------------------------------------------
even more nested SECTION tests
c
d (leaf)
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
-------------------------------------------------------------------------------
even more nested SECTION tests
c
e (leaf)
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
-------------------------------------------------------------------------------
even more nested SECTION tests
f (leaf)
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
loose text artifact
-------------------------------------------------------------------------------
just failure
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
...............................................................................
MessageTests.cpp:<line number>: FAILED:
explicitly with message:
Previous info should not be seen
2017-07-13 09:52:51 +02:00
-------------------------------------------------------------------------------
long long
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( l == std::numeric_limits<long long>::max() )
with expansion:
9223372036854775807 (0x<hex digits>)
==
9223372036854775807 (0x<hex digits>)
-------------------------------------------------------------------------------
looped SECTION tests
s1
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>: FAILED:
CHECK( b > a )
with expansion:
0 > 1
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
looped tests
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>: FAILED:
CHECK( ( fib[i] % 2 ) == 0 )
with expansion:
1 == 0
with message:
Testing if fib[0] (1) is even
MiscTests.cpp:<line number>: FAILED:
CHECK( ( fib[i] % 2 ) == 0 )
with expansion:
1 == 0
with message:
Testing if fib[1] (1) is even
2013-09-27 20:01:14 +02:00
MiscTests.cpp:<line number>:
PASSED:
CHECK( ( fib[i] % 2 ) == 0 )
with expansion:
0 == 0
with message:
Testing if fib[2] (2) is even
2013-09-27 20:01:14 +02:00
MiscTests.cpp:<line number>: FAILED:
CHECK( ( fib[i] % 2 ) == 0 )
with expansion:
1 == 0
with message:
Testing if fib[3] (3) is even
MiscTests.cpp:<line number>: FAILED:
CHECK( ( fib[i] % 2 ) == 0 )
with expansion:
1 == 0
with message:
Testing if fib[4] (5) is even
2013-09-27 20:01:14 +02:00
MiscTests.cpp:<line number>:
PASSED:
CHECK( ( fib[i] % 2 ) == 0 )
2013-09-27 20:01:14 +02:00
with expansion:
0 == 0
with message:
Testing if fib[5] (8) is even
2013-09-27 20:01:14 +02:00
MiscTests.cpp:<line number>: FAILED:
CHECK( ( fib[i] % 2 ) == 0 )
2013-09-27 20:01:14 +02:00
with expansion:
1 == 0
with message:
Testing if fib[6] (13) is even
MiscTests.cpp:<line number>: FAILED:
CHECK( ( fib[i] % 2 ) == 0 )
with expansion:
1 == 0
with message:
Testing if fib[7] (21) is even
-------------------------------------------------------------------------------
more nested SECTION tests
s1
s2
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>: FAILED:
REQUIRE( a == b )
with expansion:
1 == 2
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
more nested SECTION tests
s1
s3
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( a != b )
with expansion:
1 != 2
-------------------------------------------------------------------------------
more nested SECTION tests
s1
s4
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( a < b )
with expansion:
1 < 2
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
nested SECTION tests
s1
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2014-05-20 19:28:48 +02:00
PASSED:
REQUIRE( a != b )
2014-05-20 19:28:48 +02:00
with expansion:
1 != 2
2014-05-20 19:28:48 +02:00
MiscTests.cpp:<line number>:
2014-05-20 19:28:48 +02:00
PASSED:
REQUIRE( b != a )
2014-05-20 19:28:48 +02:00
with expansion:
2 != 1
2014-05-20 19:28:48 +02:00
-------------------------------------------------------------------------------
nested SECTION tests
s1
s2
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
2014-05-20 19:28:48 +02:00
MiscTests.cpp:<line number>:
2014-05-20 19:28:48 +02:00
PASSED:
REQUIRE( a != b )
2014-05-20 19:28:48 +02:00
with expansion:
1 != 2
2014-05-20 19:28:48 +02:00
-------------------------------------------------------------------------------
non streamable - with conv. op
2014-05-20 19:28:48 +02:00
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
2014-05-20 19:28:48 +02:00
...............................................................................
TrickyTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( s == "7" )
2013-09-27 20:01:14 +02:00
with expansion:
"7" == "7"
-------------------------------------------------------------------------------
non-copyable objects
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
CHECK( ti == typeid(int) )
with expansion:
{?} == {?}
-------------------------------------------------------------------------------
not allowed
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
null strings
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( makeString( false ) != static_cast<char*>(0) )
with expansion:
"valid string" != {null string}
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( makeString( true ) == static_cast<char*>(0) )
with expansion:
{null string} == {null string}
2017-07-13 09:52:51 +02:00
-------------------------------------------------------------------------------
null_ptr
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( ptr.get() == 0 )
with expansion:
0 == 0
-------------------------------------------------------------------------------
pair<pair<int,const char *,pair<std::string,int> > -> toString
-------------------------------------------------------------------------------
ToStringPair.cpp:<line number>
...............................................................................
ToStringPair.cpp:<line number>:
PASSED:
REQUIRE( ::Catch::Detail::stringify( pair ) == "{ { 42, \"Arthur\" }, { \"Ford\", 24 } }" )
with expansion:
"{ { 42, "Arthur" }, { "Ford", 24 } }"
==
"{ { 42, "Arthur" }, { "Ford", 24 } }"
-------------------------------------------------------------------------------
pointer to class
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>:
PASSED:
REQUIRE( p == 0 )
with expansion:
0 == 0
-------------------------------------------------------------------------------
random SECTION tests
s1
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( a != b )
with expansion:
1 != 2
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( b != a )
with expansion:
2 != 1
-------------------------------------------------------------------------------
random SECTION tests
s2
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( a != b )
with expansion:
1 != 2
-------------------------------------------------------------------------------
replaceInPlace
replace single char
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
CHECK( Catch::replaceInPlace( letters, "b", "z" ) )
with expansion:
true
TestMain.cpp:<line number>:
PASSED:
CHECK( letters == "azcdefcg" )
with expansion:
"azcdefcg" == "azcdefcg"
-------------------------------------------------------------------------------
replaceInPlace
replace two chars
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
CHECK( Catch::replaceInPlace( letters, "c", "z" ) )
with expansion:
true
TestMain.cpp:<line number>:
PASSED:
CHECK( letters == "abzdefzg" )
with expansion:
"abzdefzg" == "abzdefzg"
-------------------------------------------------------------------------------
replaceInPlace
replace first char
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
CHECK( Catch::replaceInPlace( letters, "a", "z" ) )
with expansion:
true
TestMain.cpp:<line number>:
PASSED:
CHECK( letters == "zbcdefcg" )
with expansion:
"zbcdefcg" == "zbcdefcg"
-------------------------------------------------------------------------------
replaceInPlace
replace last char
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
CHECK( Catch::replaceInPlace( letters, "g", "z" ) )
with expansion:
true
TestMain.cpp:<line number>:
PASSED:
CHECK( letters == "abcdefcz" )
with expansion:
"abcdefcz" == "abcdefcz"
-------------------------------------------------------------------------------
replaceInPlace
replace all chars
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
TestMain.cpp:<line number>:
PASSED:
CHECK( Catch::replaceInPlace( letters, letters, "replaced" ) )
with expansion:
true
TestMain.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( letters == "replaced" )
2013-09-27 20:01:14 +02:00
with expansion:
"replaced" == "replaced"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
replaceInPlace
replace no chars
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
TestMain.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK_FALSE( Catch::replaceInPlace( letters, "x", "z" ) )
2013-09-27 20:01:14 +02:00
with expansion:
!false
2013-09-27 20:01:14 +02:00
TestMain.cpp:<line number>:
PASSED:
CHECK( letters == letters )
with expansion:
"abcdefcg" == "abcdefcg"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
replaceInPlace
escape '
-------------------------------------------------------------------------------
TestMain.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
TestMain.cpp:<line number>:
PASSED:
CHECK( Catch::replaceInPlace( s, "'", "|'" ) )
with expansion:
true
2013-09-27 20:01:14 +02:00
TestMain.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( s == "didn|'t" )
2013-09-27 20:01:14 +02:00
with expansion:
"didn|'t" == "didn|'t"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
send a single char to INFO
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>: FAILED:
REQUIRE( false )
with message:
3
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
sends information to INFO
-------------------------------------------------------------------------------
MessageTests.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
MessageTests.cpp:<line number>: FAILED:
REQUIRE( false )
with messages:
hi
i := 7
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
std::pair<int,const std::string> -> toString
-------------------------------------------------------------------------------
ToStringPair.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
ToStringPair.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify(value) == "{ 34, \"xyzzy\" }" )
2013-09-27 20:01:14 +02:00
with expansion:
"{ 34, "xyzzy" }" == "{ 34, "xyzzy" }"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
std::pair<int,std::string> -> toString
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ToStringPair.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ToStringPair.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify( value ) == "{ 34, \"xyzzy\" }" )
2013-09-27 20:01:14 +02:00
with expansion:
"{ 34, "xyzzy" }" == "{ 34, "xyzzy" }"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
std::vector<std::pair<std::string,int> > -> toString
-------------------------------------------------------------------------------
ToStringPair.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
ToStringPair.cpp:<line number>:
PASSED:
REQUIRE( ::Catch::Detail::stringify( pr ) == "{ { \"green\", 55 } }" )
with expansion:
"{ { "green", 55 } }"
==
"{ { "green", 55 } }"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
string literals of different sizes can be compared
-------------------------------------------------------------------------------
TrickyTests.cpp:<line number>
...............................................................................
TrickyTests.cpp:<line number>: FAILED:
REQUIRE( std::string( "first" ) == "second" )
2013-09-27 20:01:14 +02:00
with expansion:
"first" == "second"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
stringify( has_maker )
-------------------------------------------------------------------------------
ToStringWhich.cpp:<line number>
...............................................................................
ToStringWhich.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify( item ) == "StringMaker<has_maker>" )
2013-09-27 20:01:14 +02:00
with expansion:
"StringMaker<has_maker>"
==
"StringMaker<has_maker>"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
stringify( has_maker_and_toString )
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
ToStringWhich.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
ToStringWhich.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify( item ) == "StringMaker<has_maker_and_operator>" )
2013-09-27 20:01:14 +02:00
with expansion:
"StringMaker<has_maker_and_operator>"
==
"StringMaker<has_maker_and_operator>"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
stringify( has_operator )
-------------------------------------------------------------------------------
ToStringWhich.cpp:<line number>
...............................................................................
ToStringWhich.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify( item ) == "operator<<( has_operator )" )
2013-09-27 20:01:14 +02:00
with expansion:
"operator<<( has_operator )"
==
"operator<<( has_operator )"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
toString on const wchar_t const pointer returns the string contents
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( result == "\"wide load\"" )
2013-09-27 20:01:14 +02:00
with expansion:
""wide load"" == ""wide load""
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
toString on const wchar_t pointer returns the string contents
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( result == "\"wide load\"" )
2013-09-27 20:01:14 +02:00
with expansion:
""wide load"" == ""wide load""
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
toString on wchar_t const pointer returns the string contents
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( result == "\"wide load\"" )
2013-09-27 20:01:14 +02:00
with expansion:
""wide load"" == ""wide load""
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
toString on wchar_t returns the string contents
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( result == "\"wide load\"" )
2013-09-27 20:01:14 +02:00
with expansion:
""wide load"" == ""wide load""
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
toString( vectors<has_maker )
-------------------------------------------------------------------------------
ToStringWhich.cpp:<line number>
...............................................................................
2013-09-27 20:01:14 +02:00
ToStringWhich.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify( v ) == "{ StringMaker<has_maker> }" )
2013-09-27 20:01:14 +02:00
with expansion:
"{ StringMaker<has_maker> }"
==
"{ StringMaker<has_maker> }"
2013-09-27 20:01:14 +02:00
2017-07-13 09:52:51 +02:00
-------------------------------------------------------------------------------
toString(enum class w/operator<<)
-------------------------------------------------------------------------------
EnumToString.cpp:<line number>
...............................................................................
EnumToString.cpp:<line number>:
PASSED:
CHECK( ::Catch::Detail::stringify(e0) == "E2/V0" )
with expansion:
"E2/V0" == "E2/V0"
EnumToString.cpp:<line number>:
PASSED:
CHECK( ::Catch::Detail::stringify(e1) == "E2/V1" )
with expansion:
"E2/V1" == "E2/V1"
EnumToString.cpp:<line number>:
PASSED:
CHECK( ::Catch::Detail::stringify(e3) == "Unknown enum value 10" )
with expansion:
"Unknown enum value 10"
==
"Unknown enum value 10"
-------------------------------------------------------------------------------
toString(enum class)
-------------------------------------------------------------------------------
EnumToString.cpp:<line number>
...............................................................................
EnumToString.cpp:<line number>: FAILED:
CHECK( ::Catch::Detail::stringify(e0) == "0" )
with expansion:
"{?}" == "0"
EnumToString.cpp:<line number>: FAILED:
CHECK( ::Catch::Detail::stringify(e1) == "1" )
with expansion:
"{?}" == "1"
-------------------------------------------------------------------------------
toString(enum w/operator<<)
-------------------------------------------------------------------------------
EnumToString.cpp:<line number>
...............................................................................
EnumToString.cpp:<line number>:
PASSED:
CHECK( ::Catch::Detail::stringify(e0) == "E2{0}" )
with expansion:
"E2{0}" == "E2{0}"
2013-09-27 20:01:14 +02:00
EnumToString.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( ::Catch::Detail::stringify(e1) == "E2{1}" )
with expansion:
"E2{1}" == "E2{1}"
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
toString(enum)
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
EnumToString.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
EnumToString.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
CHECK( ::Catch::Detail::stringify(e0) == "0" )
with expansion:
"0" == "0"
2013-09-27 20:01:14 +02:00
EnumToString.cpp:<line number>:
PASSED:
CHECK( ::Catch::Detail::stringify(e1) == "1" )
with expansion:
"1" == "1"
2013-09-27 20:01:14 +02:00
2017-07-13 09:52:51 +02:00
-------------------------------------------------------------------------------
tuple<>
-------------------------------------------------------------------------------
ToStringTuple.cpp:<line number>
...............................................................................
ToStringTuple.cpp:<line number>:
PASSED:
CHECK( "{ }" == ::Catch::Detail::stringify(type{}) )
with expansion:
"{ }" == "{ }"
ToStringTuple.cpp:<line number>:
PASSED:
CHECK( "{ }" == ::Catch::Detail::stringify(value) )
with expansion:
"{ }" == "{ }"
-------------------------------------------------------------------------------
tuple<float,int>
-------------------------------------------------------------------------------
ToStringTuple.cpp:<line number>
...............................................................................
ToStringTuple.cpp:<line number>:
PASSED:
CHECK( "1.2f" == ::Catch::Detail::stringify(float(1.2)) )
with expansion:
"1.2f" == "1.2f"
ToStringTuple.cpp:<line number>:
PASSED:
CHECK( "{ 1.2f, 0 }" == ::Catch::Detail::stringify(type{1.2f,0}) )
with expansion:
"{ 1.2f, 0 }" == "{ 1.2f, 0 }"
-------------------------------------------------------------------------------
tuple<int>
-------------------------------------------------------------------------------
ToStringTuple.cpp:<line number>
...............................................................................
ToStringTuple.cpp:<line number>:
PASSED:
CHECK( "{ 0 }" == ::Catch::Detail::stringify(type{0}) )
with expansion:
"{ 0 }" == "{ 0 }"
-------------------------------------------------------------------------------
tuple<0,int,const char *>
-------------------------------------------------------------------------------
ToStringTuple.cpp:<line number>
...............................................................................
ToStringTuple.cpp:<line number>:
PASSED:
CHECK( "{ 0, 42, \"Catch me\" }" == ::Catch::Detail::stringify(value) )
with expansion:
"{ 0, 42, "Catch me" }"
==
"{ 0, 42, "Catch me" }"
-------------------------------------------------------------------------------
tuple<string,string>
-------------------------------------------------------------------------------
ToStringTuple.cpp:<line number>
...............................................................................
ToStringTuple.cpp:<line number>:
PASSED:
CHECK( "{ \"hello\", \"world\" }" == ::Catch::Detail::stringify(type{"hello","world"}) )
with expansion:
"{ "hello", "world" }"
==
"{ "hello", "world" }"
-------------------------------------------------------------------------------
tuple<tuple<int>,tuple<>,float>
-------------------------------------------------------------------------------
ToStringTuple.cpp:<line number>
...............................................................................
ToStringTuple.cpp:<line number>:
PASSED:
CHECK( "{ { 42 }, { }, 1.2f }" == ::Catch::Detail::stringify(value) )
with expansion:
"{ { 42 }, { }, 1.2f }"
==
"{ { 42 }, { }, 1.2f }"
-------------------------------------------------------------------------------
vec<vec<string,alloc>> -> toString
-------------------------------------------------------------------------------
ToStringVector.cpp:<line number>
...............................................................................
ToStringVector.cpp:<line number>:
PASSED:
REQUIRE( ::Catch::Detail::stringify(v) == "{ }" )
with expansion:
"{ }" == "{ }"
ToStringVector.cpp:<line number>:
PASSED:
REQUIRE( ::Catch::Detail::stringify(v) == "{ { \"hello\" }, { \"world\" } }" )
with expansion:
"{ { "hello" }, { "world" } }"
==
"{ { "hello" }, { "world" } }"
-------------------------------------------------------------------------------
vector<int,allocator> -> toString
-------------------------------------------------------------------------------
ToStringVector.cpp:<line number>
...............................................................................
ToStringVector.cpp:<line number>:
PASSED:
REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" )
with expansion:
"{ }" == "{ }"
ToStringVector.cpp:<line number>:
PASSED:
REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42 }" )
with expansion:
"{ 42 }" == "{ 42 }"
ToStringVector.cpp:<line number>:
PASSED:
REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42, 250 }" )
with expansion:
"{ 42, 250 }" == "{ 42, 250 }"
-------------------------------------------------------------------------------
vector<int> -> toString
-------------------------------------------------------------------------------
ToStringVector.cpp:<line number>
...............................................................................
ToStringVector.cpp:<line number>:
PASSED:
REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" )
with expansion:
"{ }" == "{ }"
2014-06-30 08:34:27 +02:00
ToStringVector.cpp:<line number>:
2014-06-30 08:34:27 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42 }" )
2014-06-30 08:34:27 +02:00
with expansion:
"{ 42 }" == "{ 42 }"
2014-06-30 08:34:27 +02:00
ToStringVector.cpp:<line number>:
2014-06-30 08:34:27 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42, 250 }" )
2014-06-30 08:34:27 +02:00
with expansion:
"{ 42, 250 }" == "{ 42, 250 }"
2014-06-30 08:34:27 +02:00
-------------------------------------------------------------------------------
vector<string> -> toString
2014-06-30 08:34:27 +02:00
-------------------------------------------------------------------------------
ToStringVector.cpp:<line number>
2014-06-30 08:34:27 +02:00
...............................................................................
ToStringVector.cpp:<line number>:
2014-06-30 08:34:27 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" )
with expansion:
"{ }" == "{ }"
2014-06-30 08:34:27 +02:00
ToStringVector.cpp:<line number>:
2014-06-30 08:34:27 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify(vv) == "{ \"hello\" }" )
with expansion:
"{ "hello" }" == "{ "hello" }"
2014-06-30 08:34:27 +02:00
ToStringVector.cpp:<line number>:
2014-06-30 08:34:27 +02:00
PASSED:
REQUIRE( ::Catch::Detail::stringify(vv) == "{ \"hello\", \"world\" }" )
with expansion:
"{ "hello", "world" }"
==
"{ "hello", "world" }"
2014-06-30 08:34:27 +02:00
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
vectors can be sized and resized
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.size() == 5 )
with expansion:
5 == 5
2013-09-27 20:01:14 +02:00
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.capacity() >= 5 )
with expansion:
5 >= 5
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
vectors can be sized and resized
resizing bigger changes size and capacity
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.size() == 10 )
with expansion:
10 == 10
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( v.capacity() >= 10 )
with expansion:
10 >= 10
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
vectors can be sized and resized
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.size() == 5 )
2013-09-27 20:01:14 +02:00
with expansion:
5 == 5
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( v.capacity() >= 5 )
with expansion:
5 >= 5
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
vectors can be sized and resized
resizing smaller changes size but not capacity
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.size() == 0 )
2013-09-27 20:01:14 +02:00
with expansion:
0 == 0
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( v.capacity() >= 5 )
with expansion:
5 >= 5
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
vectors can be sized and resized
resizing smaller changes size but not capacity
We can use the 'swap trick' to reset the capacity
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.capacity() == 0 )
2013-09-27 20:01:14 +02:00
with expansion:
0 == 0
-------------------------------------------------------------------------------
vectors can be sized and resized
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.size() == 5 )
2013-09-27 20:01:14 +02:00
with expansion:
5 == 5
2013-09-27 20:01:14 +02:00
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.capacity() >= 5 )
2013-09-27 20:01:14 +02:00
with expansion:
5 >= 5
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
vectors can be sized and resized
reserving bigger changes capacity but not size
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.size() == 5 )
with expansion:
5 == 5
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.capacity() >= 10 )
with expansion:
10 >= 10
-------------------------------------------------------------------------------
vectors can be sized and resized
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.size() == 5 )
2013-09-27 20:01:14 +02:00
with expansion:
5 == 5
MiscTests.cpp:<line number>:
PASSED:
REQUIRE( v.capacity() >= 5 )
with expansion:
5 >= 5
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
vectors can be sized and resized
reserving smaller does not change size or capacity
2013-09-27 20:01:14 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2013-09-27 20:01:14 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.size() == 5 )
2013-09-27 20:01:14 +02:00
with expansion:
5 == 5
2013-09-27 20:01:14 +02:00
MiscTests.cpp:<line number>:
2013-09-27 20:01:14 +02:00
PASSED:
REQUIRE( v.capacity() >= 5 )
2013-09-27 20:01:14 +02:00
with expansion:
5 >= 5
2013-09-27 20:01:14 +02:00
2014-08-20 09:08:13 +02:00
-------------------------------------------------------------------------------
xmlentitycheck
embedded xml
2014-08-20 09:08:13 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2014-08-20 09:08:13 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2014-08-20 09:08:13 +02:00
PASSED:
-------------------------------------------------------------------------------
xmlentitycheck
encoded chars
2014-08-20 09:08:13 +02:00
-------------------------------------------------------------------------------
MiscTests.cpp:<line number>
2014-08-20 09:08:13 +02:00
...............................................................................
MiscTests.cpp:<line number>:
2014-08-20 09:08:13 +02:00
PASSED:
2013-09-27 20:01:14 +02:00
===============================================================================
test cases: 176 | 123 passed | 49 failed | 4 failed as expected
assertions: 877 | 757 passed | 99 failed | 21 failed as expected
2013-09-27 20:01:14 +02:00