2021-03-19 11:28:14 +03:00
|
|
|
//#
|
2022-01-19 11:05:03 +03:00
|
|
|
//# Copyright (C) 2020-2022 QuasarApp.
|
|
|
|
//# Distributed under the GPLv3 software license, see the accompanying
|
2021-03-19 11:28:14 +03:00
|
|
|
//# Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
//# of this license document, but changing it is not allowed.
|
|
|
|
//#
|
|
|
|
|
|
|
|
|
2020-09-04 13:25:03 +03:00
|
|
|
#ifndef EXAMPLE_TEST_H
|
|
|
|
#define EXAMPLE_TEST_H
|
|
|
|
#include "test.h"
|
|
|
|
#include "testutils.h"
|
|
|
|
|
|
|
|
#include <QtTest>
|
|
|
|
|
|
|
|
class ExampleTest: public Test, protected TestUtils
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ExampleTest();
|
|
|
|
~ExampleTest();
|
|
|
|
|
|
|
|
void test();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EXAMPLE_TEST_H
|