You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
678 B
34 lines
678 B
/* |
|
Tests for KConfig Compiler |
|
|
|
SPDX-FileCopyrightText: 2005 Duncan Mac-Vicar <duncan@kde.org> |
|
SPDX-FileCopyrightText: 2009 Pino Toscano <pino@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef KCONFIGCOMPILER_TEST_H |
|
#define KCONFIGCOMPILER_TEST_H |
|
|
|
#include <QFile> |
|
#include <QObject> |
|
|
|
class QString; |
|
|
|
class KConfigCompiler_Test : public QObject |
|
{ |
|
Q_OBJECT |
|
private Q_SLOTS: |
|
void initTestCase(); |
|
void testBaselineComparison_data(); |
|
void testBaselineComparison(); |
|
void testRunning_data(); |
|
void testRunning(); |
|
private: |
|
void appendFileDiff(const QString &oldFile, const QString &newFile); |
|
|
|
QString m_diffExe; |
|
}; |
|
|
|
#endif |
|
|
|
|