File indexing completed on 2024-06-16 04:13:38

0001 /*
0002  *  SPDX-FileCopyrightText: 2007 Cyrille Berger <cberger@cberger.net>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef _TEST_KO_CHANNEL_INFO_H_
0008 #define _TEST_KO_CHANNEL_INFO_H_
0009 
0010 #include <QObject>
0011 
0012 class TestKoChannelInfo : public QObject
0013 {
0014     Q_OBJECT
0015     
0016 private Q_SLOTS:
0017     
0018     void testDisplayPositionToChannelIndex();
0019     void testdisplayOrderSorted();
0020 };
0021 
0022 #endif
0023