2021-05-25 12:11:49 +03:00
|
|
|
//#
|
2021-06-16 20:41:50 +03:00
|
|
|
//# Copyright (C) 2020-2021 QuasarApp.
|
2021-06-15 22:12:41 +03:00
|
|
|
//# Distributed under the GPLv3 software license, see the accompanying
|
2021-05-25 12:11:49 +03:00
|
|
|
//# Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
//# of this license document, but changing it is not allowed.
|
|
|
|
//#
|
|
|
|
|
|
|
|
|
2021-06-15 22:12:41 +03:00
|
|
|
|
2021-05-25 12:11:49 +03:00
|
|
|
#ifndef EXAMPLE_TEST_H
|
|
|
|
#define EXAMPLE_TEST_H
|
|
|
|
#include "test.h"
|
|
|
|
#include "testutils.h"
|
|
|
|
|
|
|
|
#include <QtTest>
|
|
|
|
|
2021-06-10 18:07:04 +03:00
|
|
|
class PluginLoaderTest: public Test, protected TestUtils
|
2021-05-25 12:11:49 +03:00
|
|
|
{
|
|
|
|
public:
|
2021-06-10 18:07:04 +03:00
|
|
|
PluginLoaderTest();
|
|
|
|
~PluginLoaderTest();
|
2021-05-25 12:11:49 +03:00
|
|
|
|
|
|
|
void test();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EXAMPLE_TEST_H
|