|
FUnknown * | createTestFactoryInstance (void *) |
| create a Test Factory instance More...
|
|
const FUID & | getTestFactoryUID () |
| get the test factory class ID More...
|
|
void | registerTest (FIDString name, const char *desc, const TestFunc &func) |
| register a simple test function More...
|
|
void | registerTest (FIDString name, const char *desc, TestFunc &&func) |
| register a simple test function More...
|
|
void | registerTest (FIDString name, const char *desc, const TestFuncWithContext &func) |
| register a test function with context pointer More...
|
|
void | registerTest (FIDString name, const char *desc, TestFuncWithContext &&func) |
| register a test function with context pointer More...
|
|
void | registerTest (FIDString name, ITest *test) |
| register a custom test, the test object will be owned by the implementation More...
|
|
template<typename T , typename std::enable_if< std::is_floating_point< T >::value >::type * = nullptr> |
constexpr bool | equal (const T &lhs, const T &rhs) noexcept |
|
template<typename T > |
constexpr bool | notEqual (const T &lhs, const T &rhs) noexcept |
|
template<typename T > |
constexpr bool | maxDiff (const T &lhs, const T &rhs, const T &maxDiff) noexcept |
|