4
0
mirror of https://github.com/QuasarApp/Patronum.git synced 2025-05-02 18:19:34 +00:00

16 lines
251 B
C++

#ifndef TESTUTILS_H
#define TESTUTILS_H
#include <patronum.h>
class TestUtils
{
public:
TestUtils();
static bool wait(const bool &forWait, int msec);
static bool wait(std::function<bool ()> forWait, int msec);
};
#endif // TESTUTILS_H