File indexing completed on 2024-05-12 05:50:54

0001 /* This file is part of the KDE project
0002  *
0003  *  SPDX-FileCopyrightText: 2014 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 KateBtBrowserTest : public QObject
0013 {
0014     Q_OBJECT
0015 
0016 public Q_SLOTS:
0017     void initTestCase();
0018     void cleanupTestCase();
0019 
0020 private Q_SLOTS:
0021     void testParser();
0022 };
0023 
0024 // kate: space-indent on; indent-width 4; replace-tabs on;