mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-29 16:53:30 +01:00
Added tests for true == true etc
This commit is contained in:
parent
83224e637f
commit
0653f4880b
@ -241,6 +241,8 @@ TEST_CASE( "./succeeding/conditions/not",
|
|||||||
{
|
{
|
||||||
bool falseValue = false;
|
bool falseValue = false;
|
||||||
|
|
||||||
|
REQUIRE( false == false );
|
||||||
|
REQUIRE( true == true );
|
||||||
REQUIRE( !false );
|
REQUIRE( !false );
|
||||||
REQUIRE_FALSE( false );
|
REQUIRE_FALSE( false );
|
||||||
|
|
||||||
@ -256,6 +258,8 @@ TEST_CASE( "./failing/conditions/not",
|
|||||||
{
|
{
|
||||||
bool trueValue = true;
|
bool trueValue = true;
|
||||||
|
|
||||||
|
CHECK( false != false );
|
||||||
|
CHECK( true != true );
|
||||||
CHECK( !true );
|
CHECK( !true );
|
||||||
CHECK_FALSE( true );
|
CHECK_FALSE( true );
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ TEST_CASE( "selftest/main", "Runs all Catch self tests and checks their results"
|
|||||||
"Number of 'succeeding' tests is fixed" )
|
"Number of 'succeeding' tests is fixed" )
|
||||||
{
|
{
|
||||||
runner.runMatching( "./succeeding/*" );
|
runner.runMatching( "./succeeding/*" );
|
||||||
CHECK( runner.getSuccessCount() == 257 );
|
CHECK( runner.getSuccessCount() == 259 );
|
||||||
CHECK( runner.getFailureCount() == 0 );
|
CHECK( runner.getFailureCount() == 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,7 +56,7 @@ TEST_CASE( "selftest/main", "Runs all Catch self tests and checks their results"
|
|||||||
{
|
{
|
||||||
runner.runMatching( "./failing/*" );
|
runner.runMatching( "./failing/*" );
|
||||||
CHECK( runner.getSuccessCount() == 0 );
|
CHECK( runner.getSuccessCount() == 0 );
|
||||||
CHECK( runner.getFailureCount() == 60 );
|
CHECK( runner.getFailureCount() == 62 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user