Warning, file /utilities/kate/addons/externaltools/autotests/externaltooltest.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /* This file is part of the KDE project
0002  *
0003  *  SPDX-FileCopyrightText: 2019 Dominik Haumann <dhaumann@kde.org>
0004  *
0005  *  SPDX-License-Identifier: LGPL-2.0-or-later
0006  */
0007 
0008 #pragma once
0009 
0010 #include <QObject>
0011 
0012 class ExternalToolTest : public QObject
0013 {
0014     Q_OBJECT
0015 
0016 public Q_SLOTS:
0017     void initTestCase();
0018     void cleanupTestCase();
0019 
0020 private Q_SLOTS:
0021     void testLoadSave();
0022     void testRunListDirectory();
0023     void testRunTac();
0024 };
0025 
0026 // kate: space-indent on; indent-width 4; replace-tabs on;