This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Classes | |
class | WvTest |
Defines | |
#define | WVPASS(cond) |
#define | WVFAIL(cond) |
#define | WVTEST_MAIN3(ff, ll) |
#define | WVTEST_MAIN2(ff, ll) WVTEST_MAIN3(ff, ll) |
#define | WVTEST_MAIN WVTEST_MAIN2(__FILE__, __LINE__) |
|
Value: do { \ WvTest::start(__FILE__, __LINE__, "NOT(" #cond ")"); \ WvTest::check(!(cond)); \ } while (0) Definition at line 37 of file wvtest.h. Referenced by WVTEST_MAIN(). |
|
Value: do { \ WvTest::start(__FILE__, __LINE__, #cond); \ WvTest::check((cond)); \ } while (0) Definition at line 32 of file wvtest.h. Referenced by WVTEST_MAIN(). |
|
|
|
|
|
Value: static void _wvtest_main_##ll(); \ static WvTest _wvtest_##ll(ff, _wvtest_main_##ll); \ static void _wvtest_main_##ll |