Warning, file /frameworks/krunner/autotests/runnercontexttest.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: 2010 Aaron Seigo <aseigo@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef RUNNER_CONTEXT_TEST_H 0008 #define RUNNER_CONTEXT_TEST_H 0009 0010 #include <QTest> 0011 0012 #include "runnercontext.h" 0013 0014 class RunnerContextTest : public QObject 0015 { 0016 Q_OBJECT 0017 0018 private Q_SLOTS: 0019 void typeDetection_data(); 0020 void typeDetection(); 0021 0022 private: 0023 Plasma::RunnerContext m_context; 0024 }; 0025 0026 #endif