mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-05-14 18:39:41 +00:00
19 lines
246 B
C
19 lines
246 B
C
|
#ifndef BASETESTUTILS_H
|
||
|
#define BASETESTUTILS_H
|
||
|
|
||
|
#include <testutils.h>
|
||
|
namespace NP {
|
||
|
class DataBaseNode;
|
||
|
class BaseId;
|
||
|
}
|
||
|
|
||
|
class BaseTestUtils: public TestUtils
|
||
|
{
|
||
|
public:
|
||
|
BaseTestUtils();
|
||
|
~BaseTestUtils();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // BASETESTUTILS_H
|