File: runnercontexttest.h

package info (click to toggle)
krunner 5.116.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 828 kB
  • sloc: cpp: 4,954; sh: 46; xml: 25; python: 23; makefile: 7
file content (26 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
    SPDX-FileCopyrightText: 2010 Aaron Seigo <aseigo@kde.org>

    SPDX-License-Identifier: LGPL-2.0-or-later
*/

#ifndef RUNNER_CONTEXT_TEST_H
#define RUNNER_CONTEXT_TEST_H

#include <QTest>

#include "runnercontext.h"

class RunnerContextTest : public QObject
{
    Q_OBJECT

private Q_SLOTS:
    void typeDetection_data();
    void typeDetection();

private:
    Plasma::RunnerContext m_context;
};

#endif