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" );
}
};
}