diff --git a/test/CppUnit/framework/TestCase.h b/test/CppUnit/framework/TestCase.h index 34b78e11..a2779afe 100644 --- a/test/CppUnit/framework/TestCase.h +++ b/test/CppUnit/framework/TestCase.h @@ -196,6 +196,9 @@ inline std::string TestCase::toString () #define assertTrue(condition)\ (this->assertImplementation ((condition),(#condition),\ __LINE__, __FILE__)) + #define assertFalse(condition)\ + (this->assertImplementation (!(condition),(#condition),\ + __LINE__, __FILE__)) #else