File indexing completed on 2024-05-12 05:51:43

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