#include <wxTest/preprocessor.h>
Go to the source code of this file.
Compounds | |
class | wxITest |
wxITest is the base interface for all tests. More... | |
class | wxTestAssertion |
A wxTestAssertion is thrown whenever a failure occurs in a test (e.g., WXTASSERT failure or some other kind of exception). More... | |
Defines | |
#define | WXTASSERT(BOOLEXPR) if ( !( BOOLEXPR ) ) throw wxTestAssertion( "", __FILE__, __LINE__ ); |
WXTASSERT evalueates a boolean expression. More... | |
#define | WXTASSERTMSG(MSG, BOOLEXPR) if ( !( BOOLEXPR ) ) throw wxTestAssertion( MSG, __FILE__, __LINE__ ); |
WXTASSERT evalueates a boolean expression. More... | |
Variables | |
WXTEST_BEGIN_NAMESPACE class | wxITestRunner |
|
WXTASSERT evalueates a boolean expression. A FALSE expression is considered a failure and a wxTestAssertion is thrown, which must be caught by the test-runner. |
|
WXTASSERT evalueates a boolean expression. A FALSE expression is considered a failure and a wxTestAssertion is thrown, which must be caught by the test-runner. |
|
|