Added tests for true == true etc

This commit is contained in:
Phil Nash 2011-09-19 18:17:51 +01:00
parent 83224e637f
commit 0653f4880b
2 changed files with 6 additions and 2 deletions

View file

@ -241,6 +241,8 @@ TEST_CASE( "./succeeding/conditions/not",
{
bool falseValue = false;
REQUIRE( false == false );
REQUIRE( true == true );
REQUIRE( !false );
REQUIRE_FALSE( false );
@ -256,6 +258,8 @@ TEST_CASE( "./failing/conditions/not",
{
bool trueValue = true;
CHECK( false != false );
CHECK( true != true );
CHECK( !true );
CHECK_FALSE( true );