|
ZeroErr
|
CombinationalTest is a class that is used to cross test a few lists of arguments. One example. More...
#include <unittest.h>
Public Member Functions | |
| CombinationalTest (std::function< void()> func) | |
| template<typename T > | |
| void | operator() (T &arg) |
| template<typename T , typename... Args> | |
| void | operator() (T &arg, Args &... args) |
Public Attributes | |
| std::function< void()> | func |
CombinationalTest is a class that is used to cross test a few lists of arguments. One example.
This will test the targetFunc with all the combinations of a and b, e.g. (1,4), (1,5), (1,6), (2,4), (2,5) ... etc.
|
inline |
|
inline |
|
inline |
| std::function<void()> zeroerr::CombinationalTest::func |