File indexing completed on 2024-04-21 08:40:00

0001 /*
0002     SPDX-FileCopyrightText: 2016-2017 Leslie Zhai <lesliezhai@llvm.org.cn>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef K3B_EXTERNAL_BINMANAGER_TEST_H
0007 #define K3B_EXTERNAL_BINMANAGER_TEST_H
0008 
0009 #include <QObject>
0010 
0011 #include "k3bapplication.h"
0012 
0013 class ExternalBinManagerTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     ExternalBinManagerTest();
0019 
0020 private Q_SLOTS:
0021     void testBinObject();
0022     void testMyBurnJob();
0023 
0024 private:
0025     K3b::Application::Core *m_core;
0026 };
0027 
0028 #endif // K3B_EXTERNAL_BINMANAGER_TEST_H