mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-05-13 18:09:40 +00:00
27 lines
488 B
C++
27 lines
488 B
C++
/*
|
|
* Copyright (C) 2018-2022 QuasarApp.
|
|
* 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.
|
|
*/
|
|
|
|
|
|
#ifndef BASETESTUTILS_H
|
|
#define BASETESTUTILS_H
|
|
|
|
#include <testutils.h>
|
|
namespace QH {
|
|
class DataBaseNode;
|
|
class NodeId;
|
|
}
|
|
|
|
class BaseTestUtils: public TestUtils
|
|
{
|
|
public:
|
|
BaseTestUtils();
|
|
~BaseTestUtils();
|
|
|
|
};
|
|
|
|
#endif // BASETESTUTILS_H
|