Warning, file /frameworks/kpackage/autotests/fallbackpackagetest.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2007 Aaron Seigo <aseigo@kde.org> 0003 SPDX-FileCopyrightText: 2014 Marco Martin <mart@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef FALLBACKPACKAGETEST_H 0009 0010 #include <QTest> 0011 0012 #include "kpackage/package.h" 0013 0014 class FallbackPackageTest : public QObject 0015 { 0016 Q_OBJECT 0017 0018 private Q_SLOTS: 0019 void initTestCase(); 0020 void beforeFallback(); 0021 void afterFallback(); 0022 void cycle(); 0023 0024 private: 0025 KPackage::Package m_pkg; 0026 KPackage::Package m_fallbackPkg; 0027 QString m_packagePath; 0028 QString m_fallPackagePath; 0029 }; 0030 0031 #endif