2021-03-19 11:28:14 +03:00
|
|
|
//#
|
2023-12-31 09:47:56 +01:00
|
|
|
//# Copyright (C) 2020-2024 QuasarApp.
|
2022-01-19 11:05:03 +03:00
|
|
|
//# 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
|
2023-10-14 12:05:14 +02:00
|
|
|
|
|
|
|
#include <testcore/itest.h>
|
|
|
|
#include "testcore/testutils.h"
|
2020-09-04 13:25:03 +03:00
|
|
|
|
|
|
|
#include <QtTest>
|
|
|
|
|
2023-10-14 12:05:14 +02:00
|
|
|
class ExampleTest: public testcore::ITest, protected testcore::TestUtils
|
2020-09-04 13:25:03 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ExampleTest();
|
|
|
|
~ExampleTest();
|
|
|
|
|
|
|
|
void test();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EXAMPLE_TEST_H
|