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
|
|
|
-------------------------------------------------------------------------------
|
2016-11-29 12:32:16 +01:00
|
|
|
# A test name that starts with a #
|
2014-09-03 20:22:47 +02:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-29 12:32:16 +01:00
|
|
|
MiscTests.cpp:<line number>
|
2014-09-03 20:22:47 +02:00
|
|
|
...............................................................................
|
|
|
|
|
2016-11-29 12:32:16 +01:00
|
|
|
MiscTests.cpp:<line number>:
|
2014-09-03 20:22:47 +02:00
|
|
|
PASSED:
|
2016-11-29 12:32:16 +01:00
|
|
|
with message:
|
|
|
|
yay
|
2013-09-27 20:01:14 +02:00
|
|
|
|
2017-04-09 21:40:01 +02:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
#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
|
|
|
-------------------------------------------------------------------------------
|
2017-04-07 10:33:19 +02: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
|
2017-02-10 12:53:29 +01:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
CompilationTests.cpp:<line number>
|
|
|
|
...............................................................................
|
|
|
|
|
|
|
|
CompilationTests.cpp:<line number>:
|
|
|
|
PASSED:
|
2017-04-07 10:33:19 +02:00
|
|
|
REQUIRE( 42 == f )
|
|
|
|
with expansion:
|
|
|
|
42 == {?}
|
|
|
|
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
#833
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
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:
|
2017-04-07 10:33:19 +02:00
|
|
|
CHECK( a == t )
|
|
|
|
with expansion:
|
|
|
|
3 == 3
|
2017-02-10 12:53:29 +01:00
|
|
|
|
|
|
|
CompilationTests.cpp:<line number>:
|
|
|
|
PASSED:
|
2017-04-07 10:33:19 +02:00
|
|
|
REQUIRE_THROWS( throws_int(true) )
|
2017-02-10 12:53:29 +01:00
|
|
|
|
|
|
|
CompilationTests.cpp:<line number>:
|
|
|
|
PASSED:
|
|
|
|
CHECK_THROWS_AS( throws_int(true), const int& )
|
|
|
|
|
2017-04-07 10:33:19 +02:00
|
|
|
CompilationTests.cpp:<line number>:
|
|
|
|
PASSED:
|
|
|
|
REQUIRE_NOTHROW( throws_int(false) )
|
2017-02-07 13:32:48 +01:00
|
|
|
|
|
|
|
CompilationTests.cpp:<line number>:
|
|
|
|
PASSED:
|
2017-04-07 10:33:19 +02:00
|
|
|
REQUIRE_THAT( "aaa", Catch::EndsWith("aaa") )
|
2017-02-07 13:32:48 +01:00
|
|
|
with expansion:
|
2017-04-07 10:33:19 +02:00
|
|
|
"aaa" ends with: "aaa"
|
|
|
|
|
|
|
|
CompilationTests.cpp:<line number>:
|
|
|
|
PASSED:
|
|
|
|
REQUIRE( templated_tests<int>(3) )
|
|
|
|
with expansion:
|
|
|
|
true
|
2017-02-07 13:32:48 +01:00
|
|
|
|
2017-03-06 22:07:33 +01:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
#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-05-05 19:25:02 +02:00
|
|
|
REQUIRE( (*__error()) == 1 )
|
2017-03-06 22:07:33 +01:00
|
|
|
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
|
|
|
|
|
2013-09-27 20:01:14 +02:00
|
|
|
-------------------------------------------------------------------------------
|
2016-11-29 12:32:16 +01:00
|
|
|
'Not' checks that should fail
|
2013-09-27 20:01:14 +02:00
|
|
|
-------------------------------------------------------------------------------
|
2013-09-30 09:01:10 +02:00
|
|
|
ConditionTests.cpp:<line number>
|
2013-09-27 20:01:14 +02:00
|
|
|
...............................................................................
|
|
|
|
|
2013-09-30 09:01:10 +02:00
|
|
|
ConditionTests.cpp:<line number>: FAILED:
|
2016-11-29 12:32:16 +01:00
|
|
|
CHECK( false != false )
|
2013-09-27 20:01:14 +02:00
|
|
|
|
2013-09-30 09:01:10 +02:00
|
|
|
ConditionTests.cpp:<line number>: FAILED:
|
2016-11-29 12:32:16 +01:00
|
|
|
CHECK( true != true )
|
2014-07-03 09:09:57 +02:00
|
|
|
|
|
|
|
ConditionTests.cpp:<line number>: FAILED:
|
2016-11-29 12:32:16 +01:00
|
|
|
CHECK( !true )
|
2014-07-03 09:09:57 +02:00
|
|
|
with expansion:
|
2016-11-29 12:32:16 +01:00
|
|
|
false
|
2014-07-03 09:09:57 +02:00
|
|
|
|
2017-03-08 16:40:20 +01:00
|
|
|
ConditionTests.cpp:<line number>: FAILED:
|
|
|
|
CHECK_FALSE( true )
|
|
|
|
|
2014-07-03 09:09:57 +02:00
|
|
|
===============================================================================
|
2017-04-25 15:57:58 +02:00
|
|
|
test cases: 7 | 4 passed | 1 failed | 2 failed as expected
|
|
|
|
assertions: 19 | 12 passed | 4 failed | 3 failed as expected
|
2013-09-27 20:01:14 +02:00
|
|
|
|