diff --git a/projects/SelfTest/Baselines/console.std.approved.txt b/projects/SelfTest/Baselines/console.std.approved.txt index 9ce615af..3d3df678 100644 --- a/projects/SelfTest/Baselines/console.std.approved.txt +++ b/projects/SelfTest/Baselines/console.std.approved.txt @@ -6,10 +6,10 @@ Run with -? for options ------------------------------------------------------------------------------- ./failing/TestClass/failingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: REQUIRE( s == "world" ) with expansion: "hello" == "world" @@ -17,10 +17,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/Fixture/failingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: REQUIRE( m_a == 2 ) with expansion: 1 == 2 @@ -28,70 +28,70 @@ with expansion: ------------------------------------------------------------------------------- ./failing/conditions/equality ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven == 6 ) with expansion: 7 == 6 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven == 8 ) with expansion: 7 == 8 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven == 0 ) with expansion: 7 == 0 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one == Approx( 9.11f ) ) with expansion: 9.1 == Approx( 9.11 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one == Approx( 9.0f ) ) with expansion: 9.1 == Approx( 9 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one == Approx( 1 ) ) with expansion: 9.1 == Approx( 1 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one == Approx( 0 ) ) with expansion: 9.1 == Approx( 0 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.double_pi == Approx( 3.1415 ) ) with expansion: 3.1415926535 == Approx( 3.1415 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello == "goodbye" ) with expansion: "hello" == "goodbye" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello == "hell" ) with expansion: "hello" == "hell" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello == "hello1" ) with expansion: "hello" == "hello1" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello.size() == 6 ) with expansion: 5 == 6 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( x == Approx( 1.301 ) ) with expansion: 1.3 == Approx( 1.301 ) @@ -99,30 +99,30 @@ with expansion: ------------------------------------------------------------------------------- ./failing/conditions/inequality ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven != 7 ) with expansion: 7 != 7 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one != Approx( 9.1f ) ) with expansion: 9.1 != Approx( 9.1 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.double_pi != Approx( 3.1415926535 ) ) with expansion: 3.1415926535 != Approx( 3.14159 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello != "hello" ) with expansion: "hello" != "hello" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello.size() != 5 ) with expansion: 5 != 5 @@ -130,100 +130,100 @@ with expansion: ------------------------------------------------------------------------------- ./failing/conditions/ordered ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven > 7 ) with expansion: 7 > 7 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven < 7 ) with expansion: 7 < 7 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven > 8 ) with expansion: 7 > 8 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven < 6 ) with expansion: 7 < 6 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven < 0 ) with expansion: 7 < 0 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven < -1 ) with expansion: 7 < -1 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven >= 8 ) with expansion: 7 >= 8 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven <= 6 ) with expansion: 7 <= 6 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one < 9 ) with expansion: 9.1 < 9 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one > 10 ) with expansion: 9.1 > 10 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one > 9.2 ) with expansion: 9.1 > 9.2 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello > "hello" ) with expansion: "hello" > "hello" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello < "hello" ) with expansion: "hello" < "hello" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello > "hellp" ) with expansion: "hello" > "hellp" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello > "z" ) with expansion: "hello" > "z" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello < "hellm" ) with expansion: "hello" < "hellm" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello < "a" ) with expansion: "hello" < "a" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello >= "z" ) with expansion: "hello" >= "z" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello <= "a" ) with expansion: "hello" <= "a" @@ -231,39 +231,39 @@ with expansion: ------------------------------------------------------------------------------- ./failing/conditions/not ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( false != false ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( true != true ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( !true ) with expansion: false -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK_FALSE( true ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( !trueValue ) with expansion: false -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK_FALSE( trueValue ) with expansion: !true -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( !(1 == 1) ) with expansion: false -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK_FALSE( 1 == 1 ) with expansion: !(1 == 1) @@ -271,19 +271,19 @@ with expansion: ------------------------------------------------------------------------------- ./failing/exceptions/explicit ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: CHECK_THROWS_AS( thisThrows() ) due to unexpected exception with message: expected exception -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: CHECK_THROWS_AS( thisDoesntThrow() ) because no exception was thrown where one was expected: -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: CHECK_NOTHROW( thisThrows() ) due to unexpected exception with message: expected exception @@ -291,20 +291,20 @@ due to unexpected exception with message: ------------------------------------------------------------------------------- ./failing/exceptions/implicit ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: due to unexpected exception with message: unexpected exception ------------------------------------------------------------------------------- ./failing/exceptions/implicit/2 ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: {Unknown expression after the reported line} due to unexpected exception with message: unexpected exception @@ -313,20 +313,20 @@ due to unexpected exception with message: ./failing/exceptions/implicit/3 section name ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: due to unexpected exception with message: unexpected exception ------------------------------------------------------------------------------- ./failing/exceptions/implicit/4 ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: CHECK( thisThrows() == 0 ) due to unexpected exception with message: expected exception @@ -334,20 +334,20 @@ due to unexpected exception with message: ------------------------------------------------------------------------------- ./failing/exceptions/custom ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: due to unexpected exception with message: custom exception ------------------------------------------------------------------------------- ./failing/exceptions/custom/nothrow ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: REQUIRE_NOTHROW( throwCustom() ) due to unexpected exception with message: custom exception - not std @@ -355,10 +355,10 @@ due to unexpected exception with message: ------------------------------------------------------------------------------- ./failing/exceptions/custom/throw ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: REQUIRE_THROWS_AS( throwCustom() ) due to unexpected exception with message: custom exception - not std @@ -366,20 +366,20 @@ due to unexpected exception with message: ------------------------------------------------------------------------------- ./failing/exceptions/custom/double ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: due to unexpected exception with message: 3.14 ------------------------------------------------------------------------------- ./failing/message/info/1 ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: REQUIRE( a == 1 ) with expansion: 2 == 1 @@ -390,10 +390,10 @@ with messages: ------------------------------------------------------------------------------- ./mixed/message/info/2 ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: CHECK( a == 1 ) with expansion: 2 == 1 @@ -401,7 +401,7 @@ with messages: this message may be logged later this message should be logged -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: CHECK( a == 0 ) with expansion: 2 == 0 @@ -411,10 +411,10 @@ with message: ------------------------------------------------------------------------------- ./failing/message/fail ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: explicitly with message: This is a failure @@ -422,10 +422,10 @@ explicitly with message: ./failing/message/sections one ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: explicitly with message: Message from section one @@ -433,10 +433,10 @@ explicitly with message: ./failing/message/sections two ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: explicitly with message: Message from section two @@ -445,10 +445,10 @@ Message from section two ------------------------------------------------------------------------------- ./mixed/message/scoped ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: REQUIRE( i < 10 ) with expansion: 10 < 10 @@ -459,10 +459,10 @@ with messages: ------------------------------------------------------------------------------- just failure ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: explicitly with message: Previous info should not be seen @@ -471,10 +471,10 @@ explicitly with message: s1 s2 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( a == b ) with expansion: 1 == 2 @@ -483,10 +483,10 @@ with expansion: ./mixed/Misc/Sections/loops s1 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( b > a ) with expansion: 0 > 1 @@ -494,45 +494,45 @@ with expansion: ------------------------------------------------------------------------------- ./mixed/Misc/loops ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[0] (1) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[1] (1) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[3] (3) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[4] (5) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[6] (13) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 @@ -544,10 +544,10 @@ An error ------------------------------------------------------------------------------- ./failing/info ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( false ) with messages: hi @@ -556,15 +556,15 @@ with messages: ------------------------------------------------------------------------------- ./failing/checkedif ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECKED_IF( flag ) with expansion: false -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( testCheckedIf( false ) ) with expansion: false @@ -572,15 +572,15 @@ with expansion: ------------------------------------------------------------------------------- ./failing/checkedelse ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECKED_ELSE( flag ) with expansion: false -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( testCheckedElse( false ) ) with expansion: false @@ -588,10 +588,10 @@ with expansion: ------------------------------------------------------------------------------- ./manual/onechar ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( false ) with message: 3 @@ -599,10 +599,10 @@ with message: ------------------------------------------------------------------------------- ./failing/matchers/Contains ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK_THAT( testStringForMatching() Contains( "not there" ) ) with expansion: "this string contains 'abc' as a substring" contains: "not there" @@ -610,10 +610,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/matchers/StartsWith ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK_THAT( testStringForMatching() StartsWith( "string" ) ) with expansion: "this string contains 'abc' as a substring" starts with: "string" @@ -621,10 +621,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/matchers/EndsWith ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK_THAT( testStringForMatching() EndsWith( "this" ) ) with expansion: "this string contains 'abc' as a substring" ends with: "this" @@ -632,10 +632,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/matchers/Equals ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK_THAT( testStringForMatching() Equals( "something else" ) ) with expansion: "this string contains 'abc' as a substring" equals: "something else" @@ -643,30 +643,30 @@ with expansion: ------------------------------------------------------------------------------- ./failing/CatchSectionInfiniteLoop ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: explicitly with message: to infinity and beyond ------------------------------------------------------------------------------- ./failing/CatchSectionInfiniteLoop ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: explicitly with message: to infinity and beyond ------------------------------------------------------------------------------- ./failing/CatchSectionInfiniteLoop ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: explicitly with message: to infinity and beyond @@ -683,15 +683,15 @@ hello ------------------------------------------------------------------------------- ./failing/Tricky/non streamable type ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: FAILED: CHECK( &o1 == &o2 ) with expansion: 0x == 0x -TrickyTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: FAILED: CHECK( o1 == o2 ) with expansion: {?} == {?} @@ -699,10 +699,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/string literals ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: FAILED: REQUIRE( std::string( "first" ) == "second" ) with expansion: "first" == "second" diff --git a/projects/SelfTest/Baselines/console.sw.approved.txt b/projects/SelfTest/Baselines/console.sw.approved.txt index dae2b8c1..cb20c837 100644 --- a/projects/SelfTest/Baselines/console.sw.approved.txt +++ b/projects/SelfTest/Baselines/console.sw.approved.txt @@ -6,40 +6,40 @@ Run with -? for options ------------------------------------------------------------------------------- ./succeeding/Approx/simple ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == Approx( 1.23 ) ) with expansion: 1.23 == Approx( 1.23 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d != Approx( 1.22 ) ) with expansion: 1.23 != Approx( 1.22 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d != Approx( 1.24 ) ) with expansion: 1.23 != Approx( 1.24 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( Approx( d ) == 1.23 ) with expansion: Approx( 1.23 ) == 1.23 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( Approx( d ) != 1.22 ) with expansion: Approx( 1.23 ) != 1.22 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( Approx( d ) != 1.24 ) with expansion: @@ -48,16 +48,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Approx/epsilon ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d != Approx( 1.231 ) ) with expansion: 1.23 != Approx( 1.231 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == Approx( 1.231 ).epsilon( 0.1 ) ) with expansion: @@ -66,16 +66,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Approx/float ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 1.23f == Approx( 1.23f ) ) with expansion: 1.23 == Approx( 1.23 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 0.0f == Approx( 0.0f ) ) with expansion: @@ -84,48 +84,48 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Approx/int ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 1 == Approx( 1 ) ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 0 == Approx( 0 ) ) ------------------------------------------------------------------------------- ./succeeding/Approx/mixed ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 1.0f == Approx( 1 ) ) with expansion: 1 == Approx( 1 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 0 == Approx( dZero) ) with expansion: 0 == Approx( 0 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 0 == Approx( dSmall ).epsilon( 0.001 ) ) with expansion: 0 == Approx( 1e-05 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 1.234f == Approx( dMedium ) ) with expansion: 1.234 == Approx( 1.234 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( dMedium == Approx( 1.234f ) ) with expansion: @@ -134,52 +134,52 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Approx/custom ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == approx( 1.23 ) ) with expansion: 1.23 == Approx( 1.23 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == approx( 1.22 ) ) with expansion: 1.23 == Approx( 1.22 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == approx( 1.24 ) ) with expansion: 1.23 == Approx( 1.24 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d != approx( 1.25 ) ) with expansion: 1.23 != Approx( 1.25 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( approx( d ) == 1.23 ) with expansion: Approx( 1.23 ) == 1.23 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( approx( d ) == 1.22 ) with expansion: Approx( 1.23 ) == 1.22 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( approx( d ) == 1.24 ) with expansion: Approx( 1.23 ) == 1.24 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( approx( d ) != 1.25 ) with expansion: @@ -188,16 +188,16 @@ with expansion: ------------------------------------------------------------------------------- Approximate PI ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( divide( 22, 7 ) == Approx( 3.141 ).epsilon( 0.001 ) ) with expansion: 3.1428571429 == Approx( 3.141 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( divide( 22, 7 ) != Approx( 3.141 ).epsilon( 0.0001 ) ) with expansion: @@ -206,10 +206,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/TestClass/succeedingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: PASSED: REQUIRE( s == "hello" ) with expansion: @@ -218,10 +218,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/TestClass/failingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: REQUIRE( s == "world" ) with expansion: "hello" == "world" @@ -229,10 +229,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Fixture/succeedingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: PASSED: REQUIRE( m_a == 1 ) with expansion: @@ -241,10 +241,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/Fixture/failingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: REQUIRE( m_a == 2 ) with expansion: 1 == 2 @@ -252,46 +252,46 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/equality ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven == 7 ) with expansion: 7 == 7 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.float_nine_point_one == Approx( 9.1f ) ) with expansion: 9.1 == Approx( 9.1 ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.double_pi == Approx( 3.1415926535 ) ) with expansion: 3.1415926535 == Approx( 3.14159 ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello == "hello" ) with expansion: "hello" == "hello" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( "hello" == data.str_hello ) with expansion: "hello" == "hello" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello.size() == 5 ) with expansion: 5 == 5 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( x == Approx( 1.3 ) ) with expansion: @@ -300,70 +300,70 @@ with expansion: ------------------------------------------------------------------------------- ./failing/conditions/equality ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven == 6 ) with expansion: 7 == 6 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven == 8 ) with expansion: 7 == 8 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven == 0 ) with expansion: 7 == 0 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one == Approx( 9.11f ) ) with expansion: 9.1 == Approx( 9.11 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one == Approx( 9.0f ) ) with expansion: 9.1 == Approx( 9 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one == Approx( 1 ) ) with expansion: 9.1 == Approx( 1 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one == Approx( 0 ) ) with expansion: 9.1 == Approx( 0 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.double_pi == Approx( 3.1415 ) ) with expansion: 3.1415926535 == Approx( 3.1415 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello == "goodbye" ) with expansion: "hello" == "goodbye" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello == "hell" ) with expansion: "hello" == "hell" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello == "hello1" ) with expansion: "hello" == "hello1" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello.size() == 6 ) with expansion: 5 == 6 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( x == Approx( 1.301 ) ) with expansion: 1.3 == Approx( 1.301 ) @@ -371,70 +371,70 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/inequality ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven != 6 ) with expansion: 7 != 6 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven != 8 ) with expansion: 7 != 8 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.float_nine_point_one != Approx( 9.11f ) ) with expansion: 9.1 != Approx( 9.11 ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.float_nine_point_one != Approx( 9.0f ) ) with expansion: 9.1 != Approx( 9 ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.float_nine_point_one != Approx( 1 ) ) with expansion: 9.1 != Approx( 1 ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.float_nine_point_one != Approx( 0 ) ) with expansion: 9.1 != Approx( 0 ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.double_pi != Approx( 3.1415 ) ) with expansion: 3.1415926535 != Approx( 3.1415 ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello != "goodbye" ) with expansion: "hello" != "goodbye" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello != "hell" ) with expansion: "hello" != "hell" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello != "hello1" ) with expansion: "hello" != "hello1" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello.size() != 6 ) with expansion: @@ -443,30 +443,30 @@ with expansion: ------------------------------------------------------------------------------- ./failing/conditions/inequality ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven != 7 ) with expansion: 7 != 7 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one != Approx( 9.1f ) ) with expansion: 9.1 != Approx( 9.1 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.double_pi != Approx( 3.1415926535 ) ) with expansion: 3.1415926535 != Approx( 3.14159 ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello != "hello" ) with expansion: "hello" != "hello" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello.size() != 5 ) with expansion: 5 != 5 @@ -474,106 +474,106 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/ordered ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven < 8 ) with expansion: 7 < 8 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven > 6 ) with expansion: 7 > 6 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven > 0 ) with expansion: 7 > 0 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven > -1 ) with expansion: 7 > -1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven >= 7 ) with expansion: 7 >= 7 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven >= 6 ) with expansion: 7 >= 6 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven <= 7 ) with expansion: 7 <= 7 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven <= 8 ) with expansion: 7 <= 8 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.float_nine_point_one > 9 ) with expansion: 9.1 > 9 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.float_nine_point_one < 10 ) with expansion: 9.1 < 10 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.float_nine_point_one < 9.2 ) with expansion: 9.1 < 9.2 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello <= "hello" ) with expansion: "hello" <= "hello" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello >= "hello" ) with expansion: "hello" >= "hello" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello < "hellp" ) with expansion: "hello" < "hellp" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello < "zebra" ) with expansion: "hello" < "zebra" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello > "hellm" ) with expansion: "hello" > "hellm" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello > "a" ) with expansion: @@ -582,100 +582,100 @@ with expansion: ------------------------------------------------------------------------------- ./failing/conditions/ordered ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven > 7 ) with expansion: 7 > 7 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven < 7 ) with expansion: 7 < 7 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven > 8 ) with expansion: 7 > 8 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven < 6 ) with expansion: 7 < 6 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven < 0 ) with expansion: 7 < 0 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven < -1 ) with expansion: 7 < -1 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven >= 8 ) with expansion: 7 >= 8 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven <= 6 ) with expansion: 7 <= 6 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one < 9 ) with expansion: 9.1 < 9 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one > 10 ) with expansion: 9.1 > 10 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.float_nine_point_one > 9.2 ) with expansion: 9.1 > 9.2 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello > "hello" ) with expansion: "hello" > "hello" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello < "hello" ) with expansion: "hello" < "hello" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello > "hellp" ) with expansion: "hello" > "hellp" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello > "z" ) with expansion: "hello" > "z" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello < "hellm" ) with expansion: "hello" < "hellm" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello < "a" ) with expansion: "hello" < "a" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello >= "z" ) with expansion: "hello" >= "z" -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.str_hello <= "a" ) with expansion: "hello" <= "a" @@ -683,82 +683,82 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/int literals ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( i == 1 ) with expansion: 1 == 1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( ui == 2 ) with expansion: 2 == 2 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( l == 3 ) with expansion: 3 == 3 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( ul == 4 ) with expansion: 4 == 4 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( c == 5 ) with expansion: 5 == 5 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( uc == 6 ) with expansion: 6 == 6 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( 1 == i ) with expansion: 1 == 1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( 2 == ui ) with expansion: 2 == 2 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( 3 == l ) with expansion: 3 == 3 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( 4 == ul ) with expansion: 4 == 4 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( 5 == c ) with expansion: 5 == 5 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( 6 == uc ) with expansion: 6 == 6 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( (std::numeric_limits::max)() > ul ) with expansion: @@ -767,28 +767,28 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions//long_to_unsigned_x ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( long_var == unsigned_char_var ) with expansion: 1 == 1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( long_var == unsigned_short_var ) with expansion: 1 == 1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( long_var == unsigned_int_var ) with expansion: 1 == 1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( long_var == unsigned_long_var ) with expansion: @@ -797,28 +797,28 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/const ints to int literal ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( unsigned_char_var == 1 ) with expansion: 1 == 1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( unsigned_short_var == 1 ) with expansion: 1 == 1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( unsigned_int_var == 1 ) with expansion: 1 == 1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( unsigned_long_var == 1 ) with expansion: @@ -827,40 +827,40 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/negative ints ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: CHECK( ( -1 > 2u ) ) with expansion: true -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: CHECK( -1 > 2u ) with expansion: -1 > 2 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: CHECK( ( 2u < -1 ) ) with expansion: true -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: CHECK( 2u < -1 ) with expansion: 2 < -1 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: CHECK( ( minInt > 2u ) ) with expansion: true -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: CHECK( minInt > 2u ) with expansion: @@ -869,10 +869,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/computed ints ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: CHECK( 54 == 6*9 ) with expansion: @@ -881,52 +881,52 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/ptr ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( p == __null ) with expansion: __null == 0 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( p == pNULL ) with expansion: __null == __null -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( p != __null ) with expansion: 0x != 0 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( cp != __null ) with expansion: 0x != 0 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( cpc != __null ) with expansion: 0x != 0 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( returnsNull() == __null ) with expansion: {null string} == 0 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( returnsConstNull() == __null ) with expansion: {null string} == 0 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( __null != p ) with expansion: @@ -935,46 +935,46 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/not ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( false == false ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( true == true ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( !false ) with expansion: true -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE_FALSE( false ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( !falseValue ) with expansion: true -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE_FALSE( falseValue ) with expansion: !false -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( !(1 == 2) ) with expansion: true -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE_FALSE( 1 == 2 ) with expansion: @@ -983,39 +983,39 @@ with expansion: ------------------------------------------------------------------------------- ./failing/conditions/not ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( false != false ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( true != true ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( !true ) with expansion: false -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK_FALSE( true ) -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( !trueValue ) with expansion: false -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK_FALSE( trueValue ) with expansion: !true -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( !(1 == 1) ) with expansion: false -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK_FALSE( 1 == 1 ) with expansion: !(1 == 1) @@ -1023,37 +1023,37 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/exceptions/explicit ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: PASSED: REQUIRE_THROWS_AS( thisThrows() ) -ExceptionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: PASSED: REQUIRE_NOTHROW( thisDoesntThrow() ) -ExceptionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: PASSED: REQUIRE_THROWS( thisThrows() ) ------------------------------------------------------------------------------- ./failing/exceptions/explicit ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: CHECK_THROWS_AS( thisThrows() ) due to unexpected exception with message: expected exception -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: CHECK_THROWS_AS( thisDoesntThrow() ) because no exception was thrown where one was expected: -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: CHECK_NOTHROW( thisThrows() ) due to unexpected exception with message: expected exception @@ -1061,24 +1061,24 @@ due to unexpected exception with message: ------------------------------------------------------------------------------- ./failing/exceptions/implicit ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: due to unexpected exception with message: unexpected exception ------------------------------------------------------------------------------- ./failing/exceptions/implicit/2 ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: PASSED: CHECK( 1 == 1 ) -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: {Unknown expression after the reported line} due to unexpected exception with message: unexpected exception @@ -1087,20 +1087,20 @@ due to unexpected exception with message: ./failing/exceptions/implicit/3 section name ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: due to unexpected exception with message: unexpected exception ------------------------------------------------------------------------------- ./failing/exceptions/implicit/4 ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: CHECK( thisThrows() == 0 ) due to unexpected exception with message: expected exception @@ -1108,7 +1108,7 @@ due to unexpected exception with message: ------------------------------------------------------------------------------- ./succeeding/exceptions/implicit ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... @@ -1117,20 +1117,20 @@ No assertions in test case './succeeding/exceptions/implicit' ------------------------------------------------------------------------------- ./failing/exceptions/custom ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: due to unexpected exception with message: custom exception ------------------------------------------------------------------------------- ./failing/exceptions/custom/nothrow ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: REQUIRE_NOTHROW( throwCustom() ) due to unexpected exception with message: custom exception - not std @@ -1138,10 +1138,10 @@ due to unexpected exception with message: ------------------------------------------------------------------------------- ./failing/exceptions/custom/throw ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: REQUIRE_THROWS_AS( throwCustom() ) due to unexpected exception with message: custom exception - not std @@ -1149,36 +1149,36 @@ due to unexpected exception with message: ------------------------------------------------------------------------------- ./failing/exceptions/custom/double ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: FAILED: due to unexpected exception with message: 3.14 ------------------------------------------------------------------------------- ./succeeding/exceptions/notimplemented ------------------------------------------------------------------------------- -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp ............................................................................... -ExceptionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp: PASSED: REQUIRE_THROWS( thisFunctionNotImplemented( 7 ) ) ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 2 == 2 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1187,16 +1187,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 4 == 4 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1205,16 +1205,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 6 == 6 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1223,16 +1223,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 8 == 8 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1241,16 +1241,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 10 == 10 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1259,16 +1259,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 30 == 30 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1277,16 +1277,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 40 == 40 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1295,16 +1295,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 42 == 42 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1313,16 +1313,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 72 == 72 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1331,16 +1331,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 2 == 2 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1349,16 +1349,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 4 == 4 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1367,16 +1367,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 6 == 6 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1385,16 +1385,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 8 == 8 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1403,16 +1403,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 10 == 10 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1421,16 +1421,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 30 == 30 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1439,16 +1439,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 40 == 40 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1457,16 +1457,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 42 == 42 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1475,16 +1475,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 72 == 72 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1493,16 +1493,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 2 == 2 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1511,16 +1511,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 4 == 4 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1529,16 +1529,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 6 == 6 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1547,16 +1547,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 8 == 8 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1565,16 +1565,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 10 == 10 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1583,16 +1583,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 30 == 30 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1601,16 +1601,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 40 == 40 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1619,16 +1619,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 42 == 42 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1637,16 +1637,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 72 == 72 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1655,16 +1655,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 2 == 2 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1673,16 +1673,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 4 == 4 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1691,16 +1691,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 6 == 6 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1709,16 +1709,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 8 == 8 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1727,16 +1727,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 10 == 10 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1745,16 +1745,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 30 == 30 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1763,16 +1763,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 40 == 40 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1781,16 +1781,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 42 == 42 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1799,16 +1799,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 72 == 72 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1817,16 +1817,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 2 == 2 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1835,16 +1835,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 4 == 4 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1853,16 +1853,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 6 == 6 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1871,16 +1871,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 8 == 8 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1889,16 +1889,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 10 == 10 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1907,16 +1907,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 30 == 30 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1925,16 +1925,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 40 == 40 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1943,16 +1943,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 42 == 42 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1961,16 +1961,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 72 == 72 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1979,16 +1979,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 2 == 2 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -1997,16 +1997,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 4 == 4 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2015,16 +2015,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 6 == 6 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2033,16 +2033,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 8 == 8 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2051,16 +2051,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 10 == 10 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2069,16 +2069,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 30 == 30 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2087,16 +2087,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 40 == 40 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2105,16 +2105,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 42 == 42 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2123,16 +2123,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 72 == 72 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2141,16 +2141,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 2 == 2 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2159,16 +2159,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 4 == 4 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2177,16 +2177,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 6 == 6 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2195,16 +2195,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 8 == 8 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2213,16 +2213,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 10 == 10 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2231,16 +2231,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 30 == 30 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2249,16 +2249,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 40 == 40 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2267,16 +2267,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 42 == 42 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2285,16 +2285,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 72 == 72 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2303,16 +2303,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 2 == 2 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2321,16 +2321,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 4 == 4 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2339,16 +2339,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 6 == 6 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2357,16 +2357,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 8 == 8 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2375,16 +2375,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 10 == 10 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2393,16 +2393,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 30 == 30 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2411,16 +2411,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 40 == 40 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2429,16 +2429,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 42 == 42 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2447,16 +2447,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/1 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( i, 2 ) == i*2 ) with expansion: 72 == 72 -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( multiply( j, 2 ) == j*2 ) with expansion: @@ -2465,10 +2465,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/2 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( i->first == i->second-1 ) with expansion: @@ -2477,10 +2477,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/generators/2 ------------------------------------------------------------------------------- -GeneratorTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp ............................................................................... -GeneratorTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/GeneratorTests.cpp: PASSED: CATCH_REQUIRE( i->first == i->second-1 ) with expansion: @@ -2489,10 +2489,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/message ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: warning: this is a message this is a warning @@ -2503,10 +2503,10 @@ No assertions in test case './succeeding/message' ------------------------------------------------------------------------------- ./succeeding/succeed ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: with message: this is a success @@ -2514,10 +2514,10 @@ with message: ------------------------------------------------------------------------------- ./failing/message/info/1 ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: REQUIRE( a == 1 ) with expansion: 2 == 1 @@ -2528,10 +2528,10 @@ with messages: ------------------------------------------------------------------------------- ./mixed/message/info/2 ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: CHECK( a == 2 ) with expansion: @@ -2539,21 +2539,21 @@ with expansion: with message: this message may be logged later -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: CHECK( a == 1 ) with expansion: 2 == 1 with message: this message should be logged -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: CHECK( a == 0 ) with expansion: 2 == 0 with message: and this, but later -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: CHECK( a == 2 ) with expansion: @@ -2564,10 +2564,10 @@ with message: ------------------------------------------------------------------------------- ./failing/message/fail ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: explicitly with message: This is a failure @@ -2575,10 +2575,10 @@ explicitly with message: ./failing/message/sections one ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: explicitly with message: Message from section one @@ -2586,10 +2586,10 @@ explicitly with message: ./failing/message/sections two ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: explicitly with message: Message from section two @@ -2598,7 +2598,7 @@ Message from section one ./succeeding/message/sections/stdout one ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... @@ -2609,7 +2609,7 @@ Message from section two ./succeeding/message/sections/stdout two ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... @@ -2618,10 +2618,10 @@ No assertions in section 'two' ------------------------------------------------------------------------------- ./mixed/message/scoped ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2630,7 +2630,7 @@ with messages: current counter 0 i := 0 -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2639,7 +2639,7 @@ with messages: current counter 1 i := 1 -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2648,7 +2648,7 @@ with messages: current counter 2 i := 2 -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2657,7 +2657,7 @@ with messages: current counter 3 i := 3 -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2666,7 +2666,7 @@ with messages: current counter 4 i := 4 -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2675,7 +2675,7 @@ with messages: current counter 5 i := 5 -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2684,7 +2684,7 @@ with messages: current counter 6 i := 6 -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2693,7 +2693,7 @@ with messages: current counter 7 i := 7 -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2702,7 +2702,7 @@ with messages: current counter 8 i := 8 -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: PASSED: REQUIRE( i < 10 ) with expansion: @@ -2711,7 +2711,7 @@ with messages: current counter 9 i := 9 -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: REQUIRE( i < 10 ) with expansion: 10 < 10 @@ -2722,10 +2722,10 @@ with messages: ------------------------------------------------------------------------------- ./succeeding/nofail ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED - but was ok: CHECK_NOFAIL( 1 == 2 ) @@ -2735,7 +2735,7 @@ No assertions in test case './succeeding/nofail' ------------------------------------------------------------------------------- just info ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... @@ -2744,10 +2744,10 @@ No assertions in test case 'just info' ------------------------------------------------------------------------------- just failure ------------------------------------------------------------------------------- -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp ............................................................................... -MessageTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp: FAILED: explicitly with message: Previous info should not be seen @@ -2755,16 +2755,16 @@ explicitly with message: ./succeeding/Misc/Sections s1 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( a != b ) with expansion: 1 != 2 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( b != a ) with expansion: @@ -2774,10 +2774,10 @@ with expansion: ./succeeding/Misc/Sections s2 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( a != b ) with expansion: @@ -2787,16 +2787,16 @@ with expansion: ./succeeding/Misc/Sections/nested s1 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( a != b ) with expansion: 1 != 2 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( b != a ) with expansion: @@ -2806,16 +2806,16 @@ with expansion: ./succeeding/Misc/Sections/nested s1 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( a != b ) with expansion: 1 != 2 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( b != a ) with expansion: @@ -2826,10 +2826,10 @@ with expansion: s1 s2 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( a != b ) with expansion: @@ -2840,10 +2840,10 @@ with expansion: s1 s2 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( a == b ) with expansion: 1 == 2 @@ -2853,10 +2853,10 @@ with expansion: s1 s3 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( a != b ) with expansion: @@ -2867,10 +2867,10 @@ with expansion: s1 s4 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( a < b ) with expansion: @@ -2881,7 +2881,7 @@ with expansion: c d (leaf) ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... @@ -2892,7 +2892,7 @@ No assertions in section 'd (leaf)' c e (leaf) ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... @@ -2902,7 +2902,7 @@ No assertions in section 'e (leaf)' ./Sections/nested/a/b f (leaf) ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... @@ -2912,10 +2912,10 @@ No assertions in section 'f (leaf)' ./mixed/Misc/Sections/loops s1 ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( b > a ) with expansion: 0 > 1 @@ -2923,24 +2923,24 @@ with expansion: ------------------------------------------------------------------------------- ./mixed/Misc/loops ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[0] (1) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[1] (1) is even -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: @@ -2948,21 +2948,21 @@ with expansion: with message: Testing if fib[2] (2) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[3] (3) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[4] (5) is even -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: @@ -2970,14 +2970,14 @@ with expansion: with message: Testing if fib[5] (8) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 with message: Testing if fib[6] (13) is even -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK( ( fib[i] % 2 ) == 0 ) with expansion: 1 == 0 @@ -2989,7 +2989,7 @@ An error ------------------------------------------------------------------------------- ./succeeding/Misc/stdout,stderr ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... @@ -2998,16 +2998,16 @@ No assertions in test case './succeeding/Misc/stdout,stderr' ------------------------------------------------------------------------------- ./succeeding/Misc/null strings ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( makeString( false ) != static_cast(__null) ) with expansion: "valid string" != {null string} -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( makeString( true ) == static_cast(__null) ) with expansion: @@ -3016,10 +3016,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/info ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( false ) with messages: hi @@ -3028,16 +3028,16 @@ with messages: ------------------------------------------------------------------------------- ./succeeding/checkedif ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECKED_IF( flag ) with expansion: true -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( testCheckedIf( true ) ) with expansion: @@ -3046,15 +3046,15 @@ with expansion: ------------------------------------------------------------------------------- ./failing/checkedif ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECKED_IF( flag ) with expansion: false -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( testCheckedIf( false ) ) with expansion: false @@ -3062,16 +3062,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/checkedelse ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECKED_ELSE( flag ) with expansion: true -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( testCheckedElse( true ) ) with expansion: @@ -3080,15 +3080,15 @@ with expansion: ------------------------------------------------------------------------------- ./failing/checkedelse ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECKED_ELSE( flag ) with expansion: false -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( testCheckedElse( false ) ) with expansion: false @@ -3097,7 +3097,7 @@ with expansion: ./misc/xmlentitycheck embedded xml ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... @@ -3107,7 +3107,7 @@ No assertions in section 'embedded xml' ./misc/xmlentitycheck encoded chars ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... @@ -3116,10 +3116,10 @@ No assertions in section 'encoded chars' ------------------------------------------------------------------------------- ./manual/onechar ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: REQUIRE( false ) with message: 3 @@ -3127,10 +3127,10 @@ with message: ------------------------------------------------------------------------------- ./succeeding/atomic if ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( x == 0 ) with expansion: @@ -3139,28 +3139,28 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/matchers ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE_THAT( testStringForMatching() Contains( "string" ) ) with expansion: "this string contains 'abc' as a substring" contains: "string" -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECK_THAT( testStringForMatching() Contains( "abc" ) ) with expansion: "this string contains 'abc' as a substring" contains: "abc" -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECK_THAT( testStringForMatching() StartsWith( "this" ) ) with expansion: "this string contains 'abc' as a substring" starts with: "this" -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECK_THAT( testStringForMatching() EndsWith( "substring" ) ) with expansion: @@ -3169,10 +3169,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/matchers/Contains ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK_THAT( testStringForMatching() Contains( "not there" ) ) with expansion: "this string contains 'abc' as a substring" contains: "not there" @@ -3180,10 +3180,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/matchers/StartsWith ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK_THAT( testStringForMatching() StartsWith( "string" ) ) with expansion: "this string contains 'abc' as a substring" starts with: "string" @@ -3191,10 +3191,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/matchers/EndsWith ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK_THAT( testStringForMatching() EndsWith( "this" ) ) with expansion: "this string contains 'abc' as a substring" ends with: "this" @@ -3202,10 +3202,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/matchers/Equals ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: CHECK_THAT( testStringForMatching() Equals( "something else" ) ) with expansion: "this string contains 'abc' as a substring" equals: "something else" @@ -3213,10 +3213,10 @@ with expansion: ------------------------------------------------------------------------------- string ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE_THAT( "" Equals(__null) ) with expansion: @@ -3225,10 +3225,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/matchers/AllOf ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECK_THAT( testStringForMatching() AllOf( Catch::Contains( "string" ), Catch::Contains( "abc" ) ) ) with expansion: @@ -3238,17 +3238,17 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/matchers/AnyOf ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECK_THAT( testStringForMatching() AnyOf( Catch::Contains( "string" ), Catch::Contains( "not there" ) ) ) with expansion: "this string contains 'abc' as a substring" ( contains: "string" or contains: "not there" ) -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECK_THAT( testStringForMatching() AnyOf( Catch::Contains( "not there" ), Catch::Contains( "string" ) ) ) with expansion: @@ -3258,10 +3258,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/matchers/Equals ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: CHECK_THAT( testStringForMatching() Equals( "this string contains 'abc' as a substring" ) ) with expansion: @@ -3271,34 +3271,34 @@ with expansion: ------------------------------------------------------------------------------- Factorials are computed ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( Factorial(0) == 1 ) with expansion: 1 == 1 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( Factorial(1) == 1 ) with expansion: 1 == 1 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( Factorial(2) == 2 ) with expansion: 2 == 2 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( Factorial(3) == 6 ) with expansion: 6 == 6 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( Factorial(10) == 3628800 ) with expansion: @@ -3307,7 +3307,7 @@ with expansion: ------------------------------------------------------------------------------- empty ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... @@ -3316,10 +3316,10 @@ No assertions in test case 'empty' ------------------------------------------------------------------------------- Nice descriptive name ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: warning: This one ran @@ -3329,7 +3329,7 @@ No assertions in test case 'Nice descriptive name' ------------------------------------------------------------------------------- first tag ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... @@ -3338,7 +3338,7 @@ No assertions in test case 'first tag' ------------------------------------------------------------------------------- second tag ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... @@ -3347,16 +3347,16 @@ No assertions in test case 'second tag' ------------------------------------------------------------------------------- vectors can be sized and resized ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 5 ) with expansion: 5 == 5 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 5 ) with expansion: @@ -3365,16 +3365,16 @@ with expansion: ------------------------------------------------------------------------------- vectors can be sized and resized ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 5 ) with expansion: 5 == 5 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 5 ) with expansion: @@ -3384,16 +3384,16 @@ with expansion: vectors can be sized and resized resizing bigger changes size and capacity ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 10 ) with expansion: 10 == 10 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 10 ) with expansion: @@ -3402,16 +3402,16 @@ with expansion: ------------------------------------------------------------------------------- vectors can be sized and resized ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 5 ) with expansion: 5 == 5 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 5 ) with expansion: @@ -3421,16 +3421,16 @@ with expansion: vectors can be sized and resized resizing smaller changes size but not capacity ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: 0 == 0 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 5 ) with expansion: @@ -3439,16 +3439,16 @@ with expansion: ------------------------------------------------------------------------------- vectors can be sized and resized ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 5 ) with expansion: 5 == 5 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 5 ) with expansion: @@ -3458,16 +3458,16 @@ with expansion: vectors can be sized and resized resizing smaller changes size but not capacity ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: 0 == 0 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 5 ) with expansion: @@ -3478,10 +3478,10 @@ vectors can be sized and resized resizing smaller changes size but not capacity We can use the 'swap trick' to reset the capacity ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() == 0 ) with expansion: @@ -3490,16 +3490,16 @@ with expansion: ------------------------------------------------------------------------------- vectors can be sized and resized ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 5 ) with expansion: 5 == 5 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 5 ) with expansion: @@ -3509,16 +3509,16 @@ with expansion: vectors can be sized and resized reserving bigger changes capacity but not size ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 5 ) with expansion: 5 == 5 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 10 ) with expansion: @@ -3527,16 +3527,16 @@ with expansion: ------------------------------------------------------------------------------- vectors can be sized and resized ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 5 ) with expansion: 5 == 5 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 5 ) with expansion: @@ -3546,16 +3546,16 @@ with expansion: vectors can be sized and resized reserving smaller does not change size or capacity ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.size() == 5 ) with expansion: 5 == 5 -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: REQUIRE( v.capacity() >= 5 ) with expansion: @@ -3564,20 +3564,20 @@ with expansion: ------------------------------------------------------------------------------- ./failing/CatchSectionInfiniteLoop ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: explicitly with message: to infinity and beyond ------------------------------------------------------------------------------- ./failing/CatchSectionInfiniteLoop ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: explicitly with message: to infinity and beyond @@ -3586,10 +3586,10 @@ explicitly with message: Outer Inner ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: PASSED: with message: that's not flying - that's failing in style @@ -3597,10 +3597,10 @@ with message: ------------------------------------------------------------------------------- ./failing/CatchSectionInfiniteLoop ------------------------------------------------------------------------------- -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp ............................................................................... -MiscTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp: FAILED: explicitly with message: to infinity and beyond @@ -3609,145 +3609,145 @@ selftest/main selftest/expected result selftest/expected result/failing tests ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests failed, as expected @@ -3757,239 +3757,239 @@ selftest/main selftest/expected result selftest/expected result/succeeding tests ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected Message from section one Message from section two -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected Some information An error -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected -catch_self_test.hpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/catch_self_test.hpp: PASSED: with message: Tests passed, as expected @@ -4003,16 +4003,16 @@ selftest/main selftest/test counts selftest/test counts/succeeding tests ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( totals.assertions.passed == 298 ) with expansion: 298 == 298 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( totals.assertions.failed == 0 ) with expansion: @@ -4023,16 +4023,16 @@ selftest/main selftest/test counts selftest/test counts/failing tests ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( totals.assertions.passed == 2 ) with expansion: 2 == 2 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( totals.assertions.failed == 77 ) with expansion: @@ -4041,16 +4041,16 @@ with expansion: ------------------------------------------------------------------------------- meta/Misc/Sections ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( totals.assertions.passed == 2 ) with expansion: 2 == 2 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( totals.assertions.failed == 1 ) with expansion: @@ -4060,32 +4060,32 @@ with expansion: Process can be configured on command line default - no arguments ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( config.shouldDebugBreak == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( config.abortAfter == -1 ) with expansion: -1 == -1 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( config.noThrow == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( config.reporterName.empty() ) with expansion: @@ -4096,26 +4096,26 @@ Process can be configured on command line test lists 1 test ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters().size() == 1 ) with expansion: 1 == 1 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters()[0].shouldInclude( fakeTestCase( "notIncluded" ) ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters()[0].shouldInclude( fakeTestCase( "test1" ) ) ) with expansion: @@ -4126,26 +4126,26 @@ Process can be configured on command line test lists Specify one test case exclusion using exclude: ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters().size() == 1 ) with expansion: 1 == 1 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters()[0].shouldInclude( fakeTestCase( "test1" ) ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters()[0].shouldInclude( fakeTestCase( "alwaysIncluded" ) ) ) with expansion: @@ -4156,26 +4156,26 @@ Process can be configured on command line test lists Specify one test case exclusion using ~ ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters().size() == 1 ) with expansion: 1 == 1 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters()[0].shouldInclude( fakeTestCase( "test1" ) ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters()[0].shouldInclude( fakeTestCase( "alwaysIncluded" ) ) ) with expansion: @@ -4186,32 +4186,32 @@ Process can be configured on command line test lists Specify two test cases using -t ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters().size() == 1 ) with expansion: 1 == 1 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters()[0].shouldInclude( fakeTestCase( "notIncluded" ) ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters()[0].shouldInclude( fakeTestCase( "test1" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( cfg.filters()[0].shouldInclude( fakeTestCase( "test2" ) ) ) with expansion: @@ -4222,14 +4222,14 @@ Process can be configured on command line reporter -r/console ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.reporterName == "console" ) with expansion: @@ -4240,14 +4240,14 @@ Process can be configured on command line reporter -r/xml ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.reporterName == "xml" ) with expansion: @@ -4258,14 +4258,14 @@ Process can be configured on command line reporter --reporter/junit ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.reporterName == "junit" ) with expansion: @@ -4276,14 +4276,14 @@ Process can be configured on command line debugger -b ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.shouldDebugBreak == true ) with expansion: @@ -4294,14 +4294,14 @@ Process can be configured on command line debugger --break ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.shouldDebugBreak ) with expansion: @@ -4312,14 +4312,14 @@ Process can be configured on command line abort -a aborts after first failure ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.abortAfter == 1 ) with expansion: @@ -4330,14 +4330,14 @@ Process can be configured on command line abort -x 2 aborts after two failures ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.abortAfter == 2 ) with expansion: @@ -4348,10 +4348,10 @@ Process can be configured on command line abort -x must be greater than zero ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE_THAT( parseIntoConfigAndReturnError( argv, config ) Contains( "greater than zero" ) ) with expansion: @@ -4364,10 +4364,10 @@ Process can be configured on command line abort -x must be numeric ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE_THAT( parseIntoConfigAndReturnError( argv, config ) Contains( "-x" ) ) with expansion: @@ -4379,14 +4379,14 @@ Process can be configured on command line nothrow -e ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.noThrow == true ) with expansion: @@ -4397,14 +4397,14 @@ Process can be configured on command line nothrow --nothrow ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.noThrow == true ) with expansion: @@ -4415,14 +4415,14 @@ Process can be configured on command line output filename -o filename ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.outputFilename == "filename.ext" ) with expansion: @@ -4433,14 +4433,14 @@ Process can be configured on command line output filename --out ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( config.outputFilename == "filename.ext" ) with expansion: @@ -4451,26 +4451,26 @@ Process can be configured on command line combinations Single character flags can be combined ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_NOTHROW( parseIntoConfig( argv, config ) ) -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( config.abortAfter == 1 ) with expansion: 1 == 1 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( config.shouldDebugBreak ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( config.noThrow == true ) with expansion: @@ -4479,40 +4479,40 @@ with expansion: ------------------------------------------------------------------------------- selftest/test filter ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchAny.shouldInclude( fakeTestCase( "any" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchNone.shouldInclude( fakeTestCase( "any" ) ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchHidden.shouldInclude( fakeTestCase( "any" ) ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchNonHidden.shouldInclude( fakeTestCase( "any" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchHidden.shouldInclude( fakeTestCase( "./any" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchNonHidden.shouldInclude( fakeTestCase( "./any" ) ) == false ) with expansion: @@ -4521,28 +4521,28 @@ with expansion: ------------------------------------------------------------------------------- selftest/test filters ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchHidden.shouldInclude( fakeTestCase( "./something" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( filters.shouldInclude( fakeTestCase( "any" ) ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( filters.shouldInclude( fakeTestCase( "./something" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( filters.shouldInclude( fakeTestCase( "./anything" ) ) == false ) with expansion: @@ -4551,16 +4551,16 @@ with expansion: ------------------------------------------------------------------------------- selftest/filter/prefix wildcard ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchBadgers.shouldInclude( fakeTestCase( "big badger" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchBadgers.shouldInclude( fakeTestCase( "little badgers" ) ) == false ) with expansion: @@ -4569,28 +4569,28 @@ with expansion: ------------------------------------------------------------------------------- selftest/filter/wildcard at both ends ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchBadgers.shouldInclude( fakeTestCase( "big badger" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchBadgers.shouldInclude( fakeTestCase( "little badgers" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchBadgers.shouldInclude( fakeTestCase( "badgers are big" ) ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( matchBadgers.shouldInclude( fakeTestCase( "hedgehogs" ) ) == false ) with expansion: @@ -4600,52 +4600,52 @@ with expansion: selftest/tags one tag ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.getTestCaseInfo().description == "" ) with expansion: "" == "" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.hasTag( "one" ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.getTags().size() == 1 ) with expansion: 1 == 1 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.matchesTags( p1 ) == true ) with expansion: true == true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.matchesTags( p2 ) == true ) with expansion: true == true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.matchesTags( p3 ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.matchesTags( p4 ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.matchesTags( p5 ) == false ) with expansion: @@ -4655,70 +4655,70 @@ with expansion: selftest/tags two tags ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.getTestCaseInfo().description == "" ) with expansion: "" == "" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.hasTag( "one" ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.hasTag( "two" ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.hasTag( "Two" ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.hasTag( "three" ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.getTags().size() == 2 ) with expansion: 2 == 2 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.matchesTags( p1 ) == true ) with expansion: true == true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.matchesTags( p2 ) == true ) with expansion: true == true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.matchesTags( p3 ) == true ) with expansion: true == true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.matchesTags( p4 ) == true ) with expansion: true == true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( twoTags.matchesTags( p5 ) == true ) with expansion: @@ -4728,46 +4728,46 @@ with expansion: selftest/tags complex ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( fakeTestCase( "test", "[one][.]" ).matchesTags( p1 ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_FALSE( fakeTestCase( "test", "[one][.]" ).matchesTags( p5 ) ) with expansion: !false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( fakeTestCase( "test", "[three]" ).matchesTags( p4 ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( fakeTestCase( "test", "[three]" ).matchesTags( p5 ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( fakeTestCase( "test", "[three]" ).matchesTags( "[three]~[one]" ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( fakeTestCase( "test", "[unit][not_apple]" ).matchesTags( "[unit]" ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK_FALSE( fakeTestCase( "test", "[unit][not_apple]" ).matchesTags( "[unit]~[not_apple]" ) ) with expansion: @@ -4777,28 +4777,28 @@ with expansion: selftest/tags one tag with characters either side ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTagWithExtras.getTestCaseInfo().description == "1234" ) with expansion: "1234" == "1234" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTagWithExtras.hasTag( "one" ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTagWithExtras.hasTag( "two" ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTagWithExtras.getTags().size() == 1 ) with expansion: @@ -4808,22 +4808,22 @@ with expansion: selftest/tags start of a tag, but not closed ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTagOpen.getTestCaseInfo().description == "[one" ) with expansion: "[one" == "[one" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTagOpen.hasTag( "one" ) == false ) with expansion: false == false -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTagOpen.getTags().size() == 0 ) with expansion: @@ -4833,28 +4833,28 @@ with expansion: selftest/tags hidden ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.getTestCaseInfo().description == "" ) with expansion: "" == "" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.hasTag( "." ) ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.isHidden() ) with expansion: true -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( oneTag.matchesTags( "~[.]" ) == false ) with expansion: @@ -4865,10 +4865,10 @@ Long strings can be wrapped plain string No wrapping ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 80 ) ).toString() == testString ) with expansion: @@ -4876,7 +4876,7 @@ with expansion: == "one two three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 18 ) ).toString() == testString ) with expansion: @@ -4889,10 +4889,10 @@ Long strings can be wrapped plain string Wrapped once ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 17 ) ).toString() == "one two three\nfour" ) with expansion: @@ -4902,7 +4902,7 @@ with expansion: "one two three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 16 ) ).toString() == "one two three\nfour" ) with expansion: @@ -4912,7 +4912,7 @@ with expansion: "one two three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 14 ) ).toString() == "one two three\nfour" ) with expansion: @@ -4922,7 +4922,7 @@ with expansion: "one two three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 13 ) ).toString() == "one two three\nfour" ) with expansion: @@ -4932,7 +4932,7 @@ with expansion: "one two three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 12 ) ).toString() == "one two\nthree four" ) with expansion: @@ -4947,10 +4947,10 @@ Long strings can be wrapped plain string Wrapped twice ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 9 ) ).toString() == "one two\nthree\nfour" ) with expansion: @@ -4962,7 +4962,7 @@ with expansion: three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 8 ) ).toString() == "one two\nthree\nfour" ) with expansion: @@ -4974,7 +4974,7 @@ with expansion: three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 7 ) ).toString() == "one two\nthree\nfour" ) with expansion: @@ -4991,10 +4991,10 @@ Long strings can be wrapped plain string Wrapped three times ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 6 ) ).toString() == "one\ntwo\nthree\nfour" ) with expansion: @@ -5008,7 +5008,7 @@ with expansion: three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 5 ) ).toString() == "one\ntwo\nthree\nfour" ) with expansion: @@ -5027,10 +5027,10 @@ Long strings can be wrapped plain string Short wrap ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( "abcdef", TextAttributes().setWidth( 4 ) ).toString() == "abc-\ndef" ) with expansion: @@ -5040,7 +5040,7 @@ with expansion: "abc- def" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( "abcdefg", TextAttributes().setWidth( 4 ) ).toString() == "abc-\ndefg" ) with expansion: @@ -5050,7 +5050,7 @@ with expansion: "abc- defg" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( "abcdefgh", TextAttributes().setWidth( 4 ) ).toString() == "abc-\ndef-\ngh" ) with expansion: @@ -5062,7 +5062,7 @@ with expansion: def- gh" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 4 ) ).toString() == "one\ntwo\nthr-\nee\nfour" ) with expansion: @@ -5078,7 +5078,7 @@ with expansion: ee four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 3 ) ).toString() == "one\ntwo\nth-\nree\nfo-\nur" ) with expansion: @@ -5101,34 +5101,34 @@ Long strings can be wrapped plain string As container ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: REQUIRE( text.size() == 4 ) with expansion: 4 == 4 -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( text[0] == "one" ) with expansion: "one" == "one" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( text[1] == "two" ) with expansion: "two" == "two" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( text[2] == "three" ) with expansion: "three" == "three" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( text[3] == "four" ) with expansion: @@ -5139,10 +5139,10 @@ Long strings can be wrapped plain string Indent first line differently ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( text.toString() == " one two\n three\n four" ) with expansion: @@ -5159,10 +5159,10 @@ Long strings can be wrapped With newlines No wrapping ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 80 ) ).toString() == testString ) with expansion: @@ -5172,7 +5172,7 @@ with expansion: "one two three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 18 ) ).toString() == testString ) with expansion: @@ -5182,7 +5182,7 @@ with expansion: "one two three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 10 ) ).toString() == testString ) with expansion: @@ -5197,10 +5197,10 @@ Long strings can be wrapped With newlines Trailing newline ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( "abcdef\n", TextAttributes().setWidth( 10 ) ).toString() == "abcdef\n" ) with expansion: @@ -5210,13 +5210,13 @@ with expansion: "abcdef " -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( "abcdef", TextAttributes().setWidth( 6 ) ).toString() == "abcdef" ) with expansion: "abcdef" == "abcdef" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( "abcdef\n", TextAttributes().setWidth( 6 ) ).toString() == "abcdef\n" ) with expansion: @@ -5231,10 +5231,10 @@ Long strings can be wrapped With newlines Wrapped once ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 9 ) ).toString() == "one two\nthree\nfour" ) with expansion: @@ -5246,7 +5246,7 @@ with expansion: three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 8 ) ).toString() == "one two\nthree\nfour" ) with expansion: @@ -5258,7 +5258,7 @@ with expansion: three four" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 7 ) ).toString() == "one two\nthree\nfour" ) with expansion: @@ -5275,10 +5275,10 @@ Long strings can be wrapped With newlines Wrapped twice ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 6 ) ).toString() == "one\ntwo\nthree\nfour" ) with expansion: @@ -5296,10 +5296,10 @@ with expansion: Long strings can be wrapped With tabs ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( testString, TextAttributes().setWidth( 15 ) ).toString() == "one two three\n four\n five\n six" ) with expansion: @@ -5318,7 +5318,7 @@ hello ------------------------------------------------------------------------------- Strings can be rendered with colour ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... @@ -5327,16 +5327,16 @@ No assertions in test case 'Strings can be rendered with colour' ------------------------------------------------------------------------------- Text can be formatted using the Text class ------------------------------------------------------------------------------- -TestMain.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp ............................................................................... -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( "hi there" ).toString() == "hi there" ) with expansion: "hi there" == "hi there" -TestMain.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TestMain.cpp: PASSED: CHECK( Text( "hi there", narrow ).toString() == "hi\nthere" ) with expansion: @@ -5349,10 +5349,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Tricky/std::pair ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( (std::pair( 1, 2 )) == aNicePair ) with expansion: @@ -5361,10 +5361,10 @@ with expansion: ------------------------------------------------------------------------------- ./inprogress/failing/Tricky/trailing expression ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: warning: Uncomment the code in this test to check that it gives a sensible compiler error @@ -5375,10 +5375,10 @@ No assertions in test case './inprogress/failing/Tricky/trailing expression' ------------------------------------------------------------------------------- ./inprogress/failing/Tricky/compound lhs ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: warning: Uncomment the code in this test to check that it gives a sensible compiler error @@ -5389,15 +5389,15 @@ No assertions in test case './inprogress/failing/Tricky/compound lhs' ------------------------------------------------------------------------------- ./failing/Tricky/non streamable type ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: FAILED: CHECK( &o1 == &o2 ) with expansion: 0x == 0x -TrickyTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: FAILED: CHECK( o1 == o2 ) with expansion: {?} == {?} @@ -5405,10 +5405,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/string literals ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: FAILED: REQUIRE( std::string( "first" ) == "second" ) with expansion: "first" == "second" @@ -5416,16 +5416,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/side-effects ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( i++ == 7 ) with expansion: 7 == 7 -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( i++ == 8 ) with expansion: @@ -5434,10 +5434,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/koenig ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( 0x == o ) with expansion: @@ -5446,10 +5446,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/non-const== ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( t == 1u ) with expansion: @@ -5458,10 +5458,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/enum/bits ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( 0x == bit30and31 ) with expansion: @@ -5470,10 +5470,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/boolean member ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( obj.prop != __null ) with expansion: @@ -5483,16 +5483,16 @@ with expansion: ./succeeding/unimplemented static bool compare to true ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( is_true::value == true ) with expansion: true == true -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( true == is_true::value ) with expansion: @@ -5502,16 +5502,16 @@ with expansion: ./succeeding/unimplemented static bool compare to false ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( is_true::value == false ) with expansion: false == false -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( false == is_true::value ) with expansion: @@ -5521,10 +5521,10 @@ with expansion: ./succeeding/unimplemented static bool negation ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( !is_true::value ) with expansion: @@ -5534,10 +5534,10 @@ with expansion: ./succeeding/unimplemented static bool double negation ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( !!is_true::value ) with expansion: @@ -5547,16 +5547,16 @@ with expansion: ./succeeding/unimplemented static bool direct ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( is_true::value ) with expansion: true -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE_FALSE( is_true::value ) with expansion: @@ -5565,22 +5565,22 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/SafeBool ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: CHECK( True ) with expansion: true -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: CHECK( !False ) with expansion: true -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: CHECK_FALSE( False ) with expansion: @@ -5589,10 +5589,10 @@ with expansion: ------------------------------------------------------------------------------- Assertions then sections ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( Catch::isTrue( true ) ) with expansion: @@ -5601,10 +5601,10 @@ with expansion: ------------------------------------------------------------------------------- Assertions then sections ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( Catch::isTrue( true ) ) with expansion: @@ -5614,10 +5614,10 @@ with expansion: Assertions then sections A section ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( Catch::isTrue( true ) ) with expansion: @@ -5626,10 +5626,10 @@ with expansion: ------------------------------------------------------------------------------- Assertions then sections ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( Catch::isTrue( true ) ) with expansion: @@ -5639,10 +5639,10 @@ with expansion: Assertions then sections A section ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( Catch::isTrue( true ) ) with expansion: @@ -5653,10 +5653,10 @@ Assertions then sections A section Another section ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( Catch::isTrue( true ) ) with expansion: @@ -5665,10 +5665,10 @@ with expansion: ------------------------------------------------------------------------------- Assertions then sections ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( Catch::isTrue( true ) ) with expansion: @@ -5678,10 +5678,10 @@ with expansion: Assertions then sections A section ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( Catch::isTrue( true ) ) with expansion: @@ -5692,10 +5692,10 @@ Assertions then sections A section Another other section ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( Catch::isTrue( true ) ) with expansion: @@ -5704,10 +5704,10 @@ with expansion: ------------------------------------------------------------------------------- non streamable - with conv. op ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( s == "7" ) with expansion: @@ -5716,16 +5716,16 @@ with expansion: ------------------------------------------------------------------------------- Comparing function pointers ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( a ) with expansion: true -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( a == &foo ) with expansion: @@ -5734,10 +5734,10 @@ with expansion: ------------------------------------------------------------------------------- pointer to class ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: REQUIRE( p == 0 ) with expansion: @@ -5746,46 +5746,46 @@ with expansion: ------------------------------------------------------------------------------- X/level/0/a ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: ------------------------------------------------------------------------------- X/level/0/b ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: ------------------------------------------------------------------------------- X/level/1/a ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: ------------------------------------------------------------------------------- X/level/1/b ------------------------------------------------------------------------------- -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp ............................................................................... -TrickyTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp: PASSED: ------------------------------------------------------------------------------- Anonymous test case 1 ------------------------------------------------------------------------------- -VariadicMacrosTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/VariadicMacrosTests.cpp ............................................................................... -VariadicMacrosTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/VariadicMacrosTests.cpp: PASSED: with message: anonymous test case @@ -5793,10 +5793,10 @@ with message: ------------------------------------------------------------------------------- Test case with one argument ------------------------------------------------------------------------------- -VariadicMacrosTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/VariadicMacrosTests.cpp ............................................................................... -VariadicMacrosTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/VariadicMacrosTests.cpp: PASSED: with message: no assertions @@ -5805,10 +5805,10 @@ with message: Variadic macros Section with one argument ------------------------------------------------------------------------------- -VariadicMacrosTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/VariadicMacrosTests.cpp ............................................................................... -VariadicMacrosTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/VariadicMacrosTests.cpp: PASSED: with message: no assertions @@ -5819,10 +5819,10 @@ Scenario: Do that thing with the thing When: I do this Then: it should do this ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( itDoesThis() ) with expansion: @@ -5834,10 +5834,10 @@ Scenario: Do that thing with the thing When: I do this Then: it should do this ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( itDoesThis() ) with expansion: @@ -5850,10 +5850,10 @@ Scenario: Do that thing with the thing Then: it should do this And: do that ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( itDoesThat() ) with expansion: @@ -5863,10 +5863,10 @@ with expansion: Scenario: Vector resizing affects size and capacity Given: an empty vector ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: @@ -5876,10 +5876,10 @@ with expansion: Scenario: Vector resizing affects size and capacity Given: an empty vector ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: @@ -5889,10 +5889,10 @@ with expansion: Scenario: Vector resizing affects size and capacity Given: an empty vector ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: @@ -5904,16 +5904,16 @@ Scenario: Vector resizing affects size and capacity When: it is made larger Then: the size and capacity go up ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 10 ) with expansion: 10 == 10 -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.capacity() >= 10 ) with expansion: @@ -5923,10 +5923,10 @@ with expansion: Scenario: Vector resizing affects size and capacity Given: an empty vector ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: @@ -5938,16 +5938,16 @@ Scenario: Vector resizing affects size and capacity When: it is made larger Then: the size and capacity go up ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 10 ) with expansion: 10 == 10 -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.capacity() >= 10 ) with expansion: @@ -5957,10 +5957,10 @@ with expansion: Scenario: Vector resizing affects size and capacity Given: an empty vector ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: @@ -5972,16 +5972,16 @@ Scenario: Vector resizing affects size and capacity When: it is made larger Then: the size and capacity go up ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 10 ) with expansion: 10 == 10 -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.capacity() >= 10 ) with expansion: @@ -5995,16 +5995,16 @@ Scenario: Vector resizing affects size and capacity And when: it is made smaller again Then: the size goes down but the capacity stays the same ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 5 ) with expansion: 5 == 5 -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.capacity() >= 10 ) with expansion: @@ -6014,10 +6014,10 @@ with expansion: Scenario: Vector resizing affects size and capacity Given: an empty vector ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: @@ -6027,10 +6027,10 @@ with expansion: Scenario: Vector resizing affects size and capacity Given: an empty vector ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: @@ -6042,16 +6042,16 @@ Scenario: Vector resizing affects size and capacity When: we reserve more space Then: The capacity is increased but the size remains the same ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.capacity() >= 10 ) with expansion: 10 >= 10 -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: REQUIRE( v.size() == 0 ) with expansion: @@ -6067,10 +6067,10 @@ Scenario: This is a really long scenario name to see how the list command deals Then: The, deliberately very long and overly verbose (you see what I did there?) section names must wrap, along with an indent ------------------------------------------------------------------------------- -BDDTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp ............................................................................... -BDDTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/BDDTests.cpp: PASSED: with message: boo! @@ -6079,10 +6079,10 @@ with message: cmdline process name ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK( config.processName == "test" ) with expansion: @@ -6092,10 +6092,10 @@ with expansion: cmdline arg separated by spaces ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK( config.fileName == "filename.ext" ) with expansion: @@ -6105,10 +6105,10 @@ with expansion: cmdline arg separated by colon ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK( config.fileName == "filename.ext" ) with expansion: @@ -6118,10 +6118,10 @@ with expansion: cmdline arg separated by = ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK( config.fileName == "filename.ext" ) with expansion: @@ -6131,10 +6131,10 @@ with expansion: cmdline long opt ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK( config.fileName == "%stdout" ) with expansion: @@ -6144,10 +6144,10 @@ with expansion: cmdline a number ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK( config.number == 42 ) with expansion: @@ -6157,14 +6157,14 @@ with expansion: cmdline not a number ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK_THROWS( parseInto( cli, argv, config ) ) -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK( config.number == 0 ) with expansion: @@ -6174,22 +6174,22 @@ with expansion: cmdline two parsers ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK( config1.number == 42 ) with expansion: 42 == 42 -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: REQUIRE_FALSE( unusedTokens.empty() ) with expansion: !false -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: CHECK( config2.description == "some text" ) with expansion: @@ -6200,10 +6200,10 @@ cmdline methods in range ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: REQUIRE( config.index == 3 ) with expansion: @@ -6214,10 +6214,10 @@ cmdline methods out of range ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: REQUIRE_THROWS( parseInto( cli, argv, config ) ) @@ -6226,10 +6226,10 @@ cmdline flags set ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: REQUIRE( config.flag ) with expansion: @@ -6240,10 +6240,10 @@ cmdline flags not set ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: REQUIRE( config.flag == false ) with expansion: @@ -6253,22 +6253,22 @@ with expansion: cmdline positional ------------------------------------------------------------------------------- -CmdLineTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp ............................................................................... -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: REQUIRE( config.firstPos == "1st" ) with expansion: "1st" == "1st" -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: REQUIRE( config.secondPos == "2nd" ) with expansion: "2nd" == "2nd" -CmdLineTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/CmdLineTests.cpp: PASSED: REQUIRE( config.unpositional == "3rd" ) with expansion: @@ -6277,10 +6277,10 @@ with expansion: ------------------------------------------------------------------------------- section tracking ------------------------------------------------------------------------------- -SectionTrackerTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp ............................................................................... -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: @@ -6289,10 +6289,10 @@ with expansion: ------------------------------------------------------------------------------- section tracking ------------------------------------------------------------------------------- -SectionTrackerTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp ............................................................................... -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: @@ -6302,16 +6302,16 @@ with expansion: section tracking test case with no sections ------------------------------------------------------------------------------- -SectionTrackerTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp ............................................................................... -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.isCompleted() ) with expansion: @@ -6320,10 +6320,10 @@ with expansion: ------------------------------------------------------------------------------- section tracking ------------------------------------------------------------------------------- -SectionTrackerTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp ............................................................................... -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: @@ -6333,34 +6333,34 @@ with expansion: section tracking test case with one section ------------------------------------------------------------------------------- -SectionTrackerTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp ............................................................................... -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.enterSection( section1Name ) ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.enterSection( section1Name ) ) with expansion: true -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.isCompleted() ) with expansion: @@ -6369,10 +6369,10 @@ with expansion: ------------------------------------------------------------------------------- section tracking ------------------------------------------------------------------------------- -SectionTrackerTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp ............................................................................... -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: @@ -6382,58 +6382,58 @@ with expansion: section tracking test case with two consecutive sections ------------------------------------------------------------------------------- -SectionTrackerTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp ............................................................................... -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.enterSection( section1Name ) ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.enterSection( section2Name ) ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.enterSection( section1Name ) ) with expansion: true -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.enterSection( section2Name ) ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.enterSection( section1Name ) ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.enterSection( section2Name ) ) with expansion: true -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.isCompleted() ) with expansion: @@ -6442,10 +6442,10 @@ with expansion: ------------------------------------------------------------------------------- section tracking ------------------------------------------------------------------------------- -SectionTrackerTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp ............................................................................... -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: @@ -6455,52 +6455,52 @@ with expansion: section tracking test case with one section within another ------------------------------------------------------------------------------- -SectionTrackerTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp ............................................................................... -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.enterSection( section1Name ) ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.enterSection( section1Name ) ) with expansion: true -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.enterSection( section2Name ) ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK_FALSE( testCaseTracker.isCompleted() ) with expansion: !false -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.enterSection( section1Name ) ) with expansion: true -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.enterSection( section2Name ) ) with expansion: true -SectionTrackerTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/SectionTrackerTests.cpp: PASSED: CHECK( testCaseTracker.isCompleted() ) with expansion: diff --git a/projects/SelfTest/Baselines/console.swa4.approved.txt b/projects/SelfTest/Baselines/console.swa4.approved.txt index d8a9d5cc..b6eeced0 100644 --- a/projects/SelfTest/Baselines/console.swa4.approved.txt +++ b/projects/SelfTest/Baselines/console.swa4.approved.txt @@ -6,40 +6,40 @@ Run with -? for options ------------------------------------------------------------------------------- ./succeeding/Approx/simple ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == Approx( 1.23 ) ) with expansion: 1.23 == Approx( 1.23 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d != Approx( 1.22 ) ) with expansion: 1.23 != Approx( 1.22 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d != Approx( 1.24 ) ) with expansion: 1.23 != Approx( 1.24 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( Approx( d ) == 1.23 ) with expansion: Approx( 1.23 ) == 1.23 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( Approx( d ) != 1.22 ) with expansion: Approx( 1.23 ) != 1.22 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( Approx( d ) != 1.24 ) with expansion: @@ -48,16 +48,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Approx/epsilon ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d != Approx( 1.231 ) ) with expansion: 1.23 != Approx( 1.231 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == Approx( 1.231 ).epsilon( 0.1 ) ) with expansion: @@ -66,16 +66,16 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Approx/float ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 1.23f == Approx( 1.23f ) ) with expansion: 1.23 == Approx( 1.23 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 0.0f == Approx( 0.0f ) ) with expansion: @@ -84,48 +84,48 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Approx/int ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 1 == Approx( 1 ) ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 0 == Approx( 0 ) ) ------------------------------------------------------------------------------- ./succeeding/Approx/mixed ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 1.0f == Approx( 1 ) ) with expansion: 1 == Approx( 1 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 0 == Approx( dZero) ) with expansion: 0 == Approx( 0 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 0 == Approx( dSmall ).epsilon( 0.001 ) ) with expansion: 0 == Approx( 1e-05 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( 1.234f == Approx( dMedium ) ) with expansion: 1.234 == Approx( 1.234 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( dMedium == Approx( 1.234f ) ) with expansion: @@ -134,52 +134,52 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Approx/custom ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == approx( 1.23 ) ) with expansion: 1.23 == Approx( 1.23 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == approx( 1.22 ) ) with expansion: 1.23 == Approx( 1.22 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d == approx( 1.24 ) ) with expansion: 1.23 == Approx( 1.24 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( d != approx( 1.25 ) ) with expansion: 1.23 != Approx( 1.25 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( approx( d ) == 1.23 ) with expansion: Approx( 1.23 ) == 1.23 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( approx( d ) == 1.22 ) with expansion: Approx( 1.23 ) == 1.22 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( approx( d ) == 1.24 ) with expansion: Approx( 1.23 ) == 1.24 -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( approx( d ) != 1.25 ) with expansion: @@ -188,16 +188,16 @@ with expansion: ------------------------------------------------------------------------------- Approximate PI ------------------------------------------------------------------------------- -ApproxTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp ............................................................................... -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( divide( 22, 7 ) == Approx( 3.141 ).epsilon( 0.001 ) ) with expansion: 3.1428571429 == Approx( 3.141 ) -ApproxTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ApproxTests.cpp: PASSED: REQUIRE( divide( 22, 7 ) != Approx( 3.141 ).epsilon( 0.0001 ) ) with expansion: @@ -206,10 +206,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/TestClass/succeedingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: PASSED: REQUIRE( s == "hello" ) with expansion: @@ -218,10 +218,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/TestClass/failingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: REQUIRE( s == "world" ) with expansion: "hello" == "world" @@ -229,10 +229,10 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/Fixture/succeedingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: PASSED: REQUIRE( m_a == 1 ) with expansion: @@ -241,10 +241,10 @@ with expansion: ------------------------------------------------------------------------------- ./failing/Fixture/failingCase ------------------------------------------------------------------------------- -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp ............................................................................... -ClassTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp: FAILED: REQUIRE( m_a == 2 ) with expansion: 1 == 2 @@ -252,46 +252,46 @@ with expansion: ------------------------------------------------------------------------------- ./succeeding/conditions/equality ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.int_seven == 7 ) with expansion: 7 == 7 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.float_nine_point_one == Approx( 9.1f ) ) with expansion: 9.1 == Approx( 9.1 ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.double_pi == Approx( 3.1415926535 ) ) with expansion: 3.1415926535 == Approx( 3.14159 ) -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello == "hello" ) with expansion: "hello" == "hello" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( "hello" == data.str_hello ) with expansion: "hello" == "hello" -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( data.str_hello.size() == 5 ) with expansion: 5 == 5 -ConditionTests.cpp: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: PASSED: REQUIRE( x == Approx( 1.3 ) ) with expansion: @@ -300,15 +300,15 @@ with expansion: ------------------------------------------------------------------------------- ./failing/conditions/equality ------------------------------------------------------------------------------- -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp ............................................................................... -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven == 6 ) with expansion: 7 == 6 -ConditionTests.cpp: FAILED: +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp: FAILED: CHECK( data.int_seven == 8 ) with expansion: 7 == 8 diff --git a/projects/SelfTest/Baselines/junit.sw.approved.txt b/projects/SelfTest/Baselines/junit.sw.approved.txt index ba61ac74..08cf399d 100644 --- a/projects/SelfTest/Baselines/junit.sw.approved.txt +++ b/projects/SelfTest/Baselines/junit.sw.approved.txt @@ -10,133 +10,133 @@ -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp -ClassTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ClassTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp @@ -148,90 +148,90 @@ ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp -ConditionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ConditionTests.cpp expected exception -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp expected exception -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp unexpected exception -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp unexpected exception -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp unexpected exception -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp expected exception -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp custom exception -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp custom exception - not std -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp custom exception - not std -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp 3.14 -ExceptionTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/ExceptionTests.cpp @@ -243,35 +243,35 @@ ExceptionTests.cpp this message should be logged so should this -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp this message should be logged -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp and this, but later -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp This is a failure -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp Message from section one -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp Message from section two -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp @@ -284,14 +284,14 @@ Message from section two current counter 10 i := 10 -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp Previous info should not be seen -MessageTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MessageTests.cpp @@ -300,40 +300,40 @@ MessageTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp Testing if fib[0] (1) is even -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp Testing if fib[1] (1) is even -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp Testing if fib[3] (3) is even -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp Testing if fib[4] (5) is even -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp Testing if fib[6] (13) is even -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp Testing if fib[7] (21) is even -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp @@ -349,53 +349,53 @@ An error hi i := 7 -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp 3 -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp @@ -413,15 +413,15 @@ MiscTests.cpp to infinity and beyond -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp to infinity and beyond -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp to infinity and beyond -MiscTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/MiscTests.cpp @@ -496,15 +496,15 @@ hello -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp -TrickyTests.cpp +Users/philnash/Dev/OSS/Catch/projects/SelfTest/TrickyTests.cpp diff --git a/scripts/approvalTests.py b/scripts/approvalTests.py index 12ea5a73..ad28cf95 100644 --- a/scripts/approvalTests.py +++ b/scripts/approvalTests.py @@ -5,7 +5,9 @@ import re from scriptCommon import catchPath -filenameParser = re.compile( r'\s*.*/(.*\..pp):([0-9]*)(.*)' ) +rootPath = os.path.join( catchPath, 'projects/SelfTest/Baselines' ) + +filenameParser = re.compile( r'.*?/(.*\..pp):([0-9]*)(.*)' ) lineNumberParser = re.compile( r'(.*)line="[0-9]*"(.*)' ) hexParser = re.compile( r'(.*)\b(0[xX][0-9a-fA-F]+)\b(.*)' ) durationsParser = re.compile( r'(.*)time="[0-9]*\.[0-9]*"(.*)' ) @@ -40,9 +42,9 @@ def filterLine( line ): def approve( baseName, args ): global overallResult args[0:0] = [cmdPath] - baselinesPath = os.path.join( catchPath, 'projects/SelfTest/Baselines/{0}.approved.txt'.format( baseName ) ) - rawResultsPath = os.path.join( catchPath, 'projects/SelfTest/Baselines/_{0}.tmp'.format( baseName ) ) - filteredResultsPath = os.path.join( catchPath, 'projects/SelfTest/Baselines/{0}.unapproved.txt'.format( baseName ) ) + baselinesPath = os.path.join( rootPath, '{0}.approved.txt'.format( baseName ) ) + rawResultsPath = os.path.join( rootPath, '_{0}.tmp'.format( baseName ) ) + filteredResultsPath = os.path.join( rootPath, '{0}.unapproved.txt'.format( baseName ) ) f = open( rawResultsPath, 'w' ) subprocess.call( args, stdout=f, stderr=f )