File indexing completed on 2023-05-30 09:18:34
0001 /* 0002 SPDX-License-Identifier: GPL-2.0-or-later 0003 0004 SPDX-FileCopyrightText: 2021 Friedrich W. H. Kossebau <kossebau@kde.org> 0005 */ 0006 0007 #ifndef TESTCOMMON_H 0008 #define TESTCOMMON_H 0009 0010 #include <QObject> 0011 0012 class TestCommon : public QObject 0013 { 0014 Q_OBJECT 0015 0016 private Q_SLOTS: 0017 void testExtractColorCodes_data(); 0018 void testExtractColorCodes(); 0019 void testRemoveIrcMarkup_data(); 0020 void testRemoveIrcMarkup(); 0021 void testMatchLength_data(); 0022 void testMatchLength(); 0023 }; 0024 0025 #endif