File indexing completed on 2024-04-28 07:46:08

0001 /*
0002     This file is part of the KDE project
0003     SPDX-FileCopyrightText: 2013 Gerald Senarclens de Grancy <oss@senarclens.eu>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 // BEGIN Includes
0009 #include "scripting_test.h"
0010 
0011 #include <QTest>
0012 
0013 QTEST_MAIN(ScriptingTest)
0014 
0015 #define FAILURE(test, comment) qMakePair<const char *, const char *>((test), (comment))
0016 
0017 void ScriptingTest::initTestCase()
0018 {
0019     ScriptTestBase::initTestCase();
0020     m_section = QStringLiteral("scripting");
0021     m_script_dir = QString();
0022 }
0023 
0024 void ScriptingTest::bugs_data()
0025 {
0026     getTestData(QStringLiteral("bugs"));
0027 }
0028 
0029 void ScriptingTest::bugs()
0030 {
0031     runTest(ExpectedFailures());
0032 }
0033 
0034 #include "moc_scripting_test.cpp"