(Revision: 12022)
Go to the source code of this file.
Namespaces |
namespace | Test |
| General test support.
|
namespace | Test::Array |
| Tests for arrays.
|
Macros |
#define | CHECK_TEST(T, M) |
| Check the test result and handle failed test.
|
#define | START_TEST(T) |
| Start new test.
|
Macro Definition Documentation
#define CHECK_TEST |
( |
|
T, |
|
|
|
M |
|
) |
| |
Value:
olog << ind(3) << "Check: " << (M) << std::endl; \
if (!(T)) { \
problem = (M); goto failed; \
}
Check the test result and handle failed test.
Definition at line 44 of file array.cpp.
Value:
olog.str(""); \
olog << ind(2) << "Testing: " << (T) << std::endl; \
} \
test = (T);
Start new test.
Definition at line 52 of file array.cpp.