mirror of
https://github.com/QuasarApp/Patronum.git
synced 2025-04-26 07:34:32 +00:00
16 lines
251 B
C++
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
|