File indexing completed on 2024-10-13 09:30:43
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 0021 private: 0022 void testGetUrl2(const QString &left, const QString &right); 0023 }; 0024 0025 #endif