mirror of
https://github.com/catchorg/Catch2
synced 2026-02-20 03:12:10 +00:00
changed macro names: EXPECT -> REQUIRE, *_NOT -> *_FALSE
This commit is contained in:
@@ -25,11 +25,11 @@ namespace
|
||||
|
||||
void succeedingCase()
|
||||
{
|
||||
EXPECT( s == "hello" );
|
||||
REQUIRE( s == "hello" );
|
||||
}
|
||||
void failingCase()
|
||||
{
|
||||
EXPECT( s == "world" );
|
||||
REQUIRE( s == "world" );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user