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

0001 /* This file is part of the KDE project
0002  *
0003  *  SPDX-FileCopyrightText: 2018 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 KateTabSwitcherTest : public QObject
0013 {
0014     Q_OBJECT
0015 
0016 public Q_SLOTS:
0017     void initTestCase();
0018     void cleanupTestCase();
0019 
0020 private Q_SLOTS:
0021     static void testLongestCommonPrefix();
0022     static void testLongestCommonPrefix_data();
0023 };