mirror of
https://github.com/QuasarApp/Patronum.git
synced 2025-04-27 08:04:32 +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
|