File indexing completed on 2024-12-08 09:43:38
0001 /* 0002 SPDX-License-Identifier: LGPL-2.0-or-later 0003 */ 0004 0005 #ifndef SCRIPTINGTEST_H 0006 #define SCRIPTINGTEST_H 0007 0008 #include <QObject> 0009 0010 #include "script_test_base.h" 0011 0012 class ScriptingTest : public ScriptTestBase 0013 { 0014 Q_OBJECT 0015 private Q_SLOTS: 0016 void initTestCase(); 0017 0018 void bugs_data(); 0019 void bugs(); 0020 }; 0021 0022 #endif // SCRIPTINGTEST_H