mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Added test for previous change
(Test Dragged Development?)
This commit is contained in:
parent
f52bd35e2f
commit
56a02eede5
@ -175,3 +175,13 @@ TEST_CASE( "./manual/onechar", "send a single char to INFO" )
|
|||||||
INFO(3);
|
INFO(3);
|
||||||
REQUIRE(false);
|
REQUIRE(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_CASE("./succeeding/atomic if", "")
|
||||||
|
{
|
||||||
|
size_t x = 0;
|
||||||
|
|
||||||
|
if( x )
|
||||||
|
REQUIRE(x > 0);
|
||||||
|
else
|
||||||
|
REQUIRE(x == 0);
|
||||||
|
}
|
||||||
|
@ -43,7 +43,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.getTotals().assertions.passed == 267 );
|
CHECK( runner.getTotals().assertions.passed == 268 );
|
||||||
CHECK( runner.getTotals().assertions.failed == 0 );
|
CHECK( runner.getTotals().assertions.failed == 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user