File indexing completed on 2024-04-14 03:51:32

0001 /*
0002     SPDX-FileCopyrightText: 2007 Allen Winter <winter@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KTEXTTOHTMLTEST_H
0008 #define KTEXTTOHTMLTEST_H
0009 
0010 #include <QObject>
0011 
0012 class KTextToHTMLTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void testGetEmailAddress();
0017     void testGetUrl();
0018     void testHtmlConvert();
0019     void testHtmlConvert_data();
0020     void testEmoticons_data();
0021     void testEmoticons();
0022     void testEmoticonsNoReplace_data();
0023     void testEmoticonsNoReplace();
0024 
0025 private:
0026     void testGetUrl2(const QString &left, const QString &right);
0027 };
0028 
0029 #endif