File indexing completed on 2024-04-28 15:31:52

0001 /*
0002  *  SPDX-FileCopyrightText: 2021 Waqar Ahmed <waqar.17a@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 #ifndef KMULTITABBARTEST_H
0007 #define KMULTITABBARTEST_H
0008 
0009 #include <QObject>
0010 
0011 class KMultiTabBarTest : public QObject
0012 {
0013     Q_OBJECT
0014 
0015 public:
0016     KMultiTabBarTest(QObject *parent = nullptr);
0017 
0018 private Q_SLOTS:
0019     void testTabsAppendAndRemove();
0020     void testTabStyleChanged();
0021     void testTabRaised();
0022     void shouldEmitClicked();
0023 };
0024 
0025 #endif