File indexing completed on 2024-04-14 14:27:17

0001 /*
0002     SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef PLUGINTRADERTEST_H
0008 #define PLUGINTRADERTEST_H
0009 
0010 #include <QCoreApplication>
0011 
0012 class PluginTraderTest : public QObject
0013 {
0014     Q_OBJECT
0015 public:
0016     PluginTraderTest()
0017     {
0018     }
0019 
0020 private Q_SLOTS:
0021     void initTestCase();
0022     void findPlugin_data();
0023     void findPlugin();
0024     void findSomething();
0025     void loadPlugin();
0026 };
0027 
0028 #endif