Go to the source code of this file.
|
| manak |
| C++ Unit Benchmarking Library.
|
|
#define MANAK_ASSERT_FALSE |
( |
|
expr | ) |
|
Value:if(!(expr)); \
else \
{ \
}
#define MANAK_STRINGIZE(X)
Converts the parameter into string.
static TestMonitor & GetGlobalTestMonitor()
Definition at line 46 of file test_macros.hpp.
#define MANAK_ASSERT_FALSE_MSG |
( |
|
expr, |
|
|
|
msg |
|
) |
| |
Value:if(!(expr)); \
else \
{ \
}
#define MANAK_STRINGIZE(X)
Converts the parameter into string.
static TestMonitor & GetGlobalTestMonitor()
Definition at line 54 of file test_macros.hpp.
#define MANAK_ASSERT_TRUE |
( |
|
expr | ) |
|
Value:if(expr); \
else \
{ \
}
#define MANAK_STRINGIZE(X)
Converts the parameter into string.
static TestMonitor & GetGlobalTestMonitor()
Definition at line 30 of file test_macros.hpp.
#define MANAK_ASSERT_TRUE_MSG |
( |
|
expr, |
|
|
|
msg |
|
) |
| |
Value:if(expr); \
else \
{ \
}
#define MANAK_STRINGIZE(X)
Converts the parameter into string.
static TestMonitor & GetGlobalTestMonitor()
Definition at line 38 of file test_macros.hpp.
#define MANAK_CHECK_FALSE |
( |
|
expr | ) |
|
Value:if(!(expr)); \
else \
}
#define MANAK_STRINGIZE(X)
Converts the parameter into string.
static TestMonitor & GetGlobalTestMonitor()
MANAK_INLINE bool AddCheck(TestEntry *entry)
Definition at line 76 of file test_macros.hpp.
#define MANAK_CHECK_FALSE_MSG |
( |
|
expr, |
|
|
|
msg |
|
) |
| |
Value:if(!(expr)); \
else \
}
#define MANAK_STRINGIZE(X)
Converts the parameter into string.
static TestMonitor & GetGlobalTestMonitor()
MANAK_INLINE bool AddCheck(TestEntry *entry)
Definition at line 83 of file test_macros.hpp.
#define MANAK_CHECK_TRUE |
( |
|
expr | ) |
|
Value:if(expr); \
else \
}
#define MANAK_STRINGIZE(X)
Converts the parameter into string.
static TestMonitor & GetGlobalTestMonitor()
MANAK_INLINE bool AddCheck(TestEntry *entry)
Definition at line 62 of file test_macros.hpp.
#define MANAK_CHECK_TRUE_MSG |
( |
|
expr, |
|
|
|
msg |
|
) |
| |
Value:if(expr); \
else \
}
#define MANAK_STRINGIZE(X)
Converts the parameter into string.
static TestMonitor & GetGlobalTestMonitor()
MANAK_INLINE bool AddCheck(TestEntry *entry)
Definition at line 69 of file test_macros.hpp.
Value:
try \
{ \
Code; \
catch(std::exception& ex) \
}
MANAK_INLINE bool AddText(TestEntry *entry)
MANAK_INLINE void Enable()
#define MANAK_STRINGIZE(X)
Converts the parameter into string.
static TestMonitor & GetGlobalTestMonitor()
Definition at line 19 of file test_macros.hpp.