2
0
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:
Phil Nash
2010-12-14 09:00:09 +00:00
parent de77ff3b29
commit a2d20951a2
7 changed files with 67 additions and 67 deletions

View File

@@ -25,11 +25,11 @@ namespace
void succeedingCase()
{
EXPECT( s == "hello" );
REQUIRE( s == "hello" );
}
void failingCase()
{
EXPECT( s == "world" );
REQUIRE( s == "world" );
}
};
}