mirror of
https://github.com/QuasarApp/Patronum.git
synced 2025-04-28 00:24:31 +00:00
15 lines
187 B
C
15 lines
187 B
C
|
#ifndef TESTUTILS_H
|
||
|
#define TESTUTILS_H
|
||
|
|
||
|
#include <patronum.h>
|
||
|
|
||
|
class TestUtils
|
||
|
{
|
||
|
public:
|
||
|
TestUtils();
|
||
|
static bool wait(const bool &forWait, int msec);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // TESTUTILS_H
|