File indexing completed on 2024-12-08 03:41:55
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 "commands_test.h" 0010 0011 #include <QTest> 0012 0013 #include "testutils.h" 0014 0015 QTEST_MAIN(CommandsTest) 0016 0017 #define FAILURE(test, comment) qMakePair<const char *, const char *>((test), (comment)) 0018 0019 void CommandsTest::initTestCase() 0020 { 0021 ScriptTestBase::initTestCase(); 0022 m_section = QStringLiteral("commands"); 0023 m_script_dir = QStringLiteral("commands"); 0024 } 0025 0026 void CommandsTest::utils_data() 0027 { 0028 getTestData(QStringLiteral("utils")); 0029 } 0030 0031 void CommandsTest::utils() 0032 { 0033 runTest(ExpectedFailures()); 0034 } 0035 0036 #include "moc_commands_test.cpp"