Patronum/Tests/testutils.h

16 lines
251 B
C
Raw Normal View History

2020-05-06 23:23:46 +03:00
#ifndef TESTUTILS_H
#define TESTUTILS_H
#include <patronum.h>
class TestUtils
{
public:
TestUtils();
static bool wait(const bool &forWait, int msec);
2021-04-28 18:38:39 +03:00
static bool wait(std::function<bool ()> forWait, int msec);
2020-05-06 23:23:46 +03:00
};
#endif // TESTUTILS_H