2020-09-27 12:40:11 +03:00
|
|
|
/*
|
2022-03-03 19:01:19 +03:00
|
|
|
* Copyright (C) 2018-2022 QuasarApp.
|
2020-09-27 12:40:11 +03:00
|
|
|
* Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
* of this license document, but changing it is not allowed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2020-09-15 21:16:35 +03:00
|
|
|
#ifndef BASETESTUTILS_H
|
|
|
|
#define BASETESTUTILS_H
|
|
|
|
|
|
|
|
#include <testutils.h>
|
2020-09-15 22:07:49 +03:00
|
|
|
namespace QH {
|
2020-09-15 21:16:35 +03:00
|
|
|
class DataBaseNode;
|
2020-11-11 23:03:18 +03:00
|
|
|
class NodeId;
|
2020-09-15 21:16:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
class BaseTestUtils: public TestUtils
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BaseTestUtils();
|
|
|
|
~BaseTestUtils();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BASETESTUTILS_H
|