File indexing completed on 2025-02-02 04:56:53

0001 /***************************************************************************
0002  * SPDX-FileCopyrightText: 2022 S. MANKOWSKI stephane@mankowski.fr
0003  * SPDX-FileCopyrightText: 2022 G. DE BURE support@mankowski.fr
0004  * SPDX-License-Identifier: GPL-3.0-or-later
0005  ***************************************************************************/
0006 #ifndef SKGTESTDEBUGPLUGIN_H
0007 #define SKGTESTDEBUGPLUGIN_H
0008 /** @file
0009  * This file is a test for SKGDebugPlugin component.
0010  *
0011  * @author Stephane MANKOWSKI / Guillaume DE BURE
0012  */
0013 #include <qtest.h>
0014 
0015 /**
0016  * A unit test
0017  */
0018 class SKGTESTDebugPlugin: public QObject
0019 {
0020     Q_OBJECT
0021 private Q_SLOTS:
0022     void TestPlugin();
0023 };
0024 #endif