4
0
mirror of https://github.com/QuasarApp/Patronum.git synced 2025-04-28 08:34:32 +00:00

16 lines
251 B
C
Raw Permalink 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