1 /*
2  *  SPDX-FileCopyrightText: 2021 Waqar Ahmed <waqar.17a@gmail.com>
3  *
4  *  SPDX-License-Identifier: LGPL-2.0-or-later
5  */
6 #ifndef KMULTITABBARTEST_H
7 #define KMULTITABBARTEST_H
8 
9 #include <QObject>
10 
11 class KMultiTabBarTest : public QObject
12 {
13     Q_OBJECT
14 
15 public:
16     KMultiTabBarTest(QObject *parent = nullptr);
17 
18 private Q_SLOTS:
19     void testTabsAppendAndRemove();
20     void testTabStyleChanged();
21     void testTabRaised();
22     void shouldEmitClicked();
23 };
24 
25 #endif
26