File indexing completed on 2024-04-21 03:58:26

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2009 Thomas McGuire <mcguire@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006 */
0007 
0008 #ifndef KRICHTEXTEDITTEST_H
0009 #define KRICHTEXTEDITTEST_H
0010 
0011 #include <QObject>
0012 
0013 class KRichTextEditTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 private Q_SLOTS:
0018     void testLinebreaks();
0019     void testUpdateLinkAdd();
0020     void testUpdateLinkRemove();
0021     void testHTMLLineBreaks();
0022     void testHTMLOrderedLists();
0023     void testHTMLUnorderedLists();
0024     void testHeading();
0025     void testRulerScroll();
0026     void testNestedLists();
0027 };
0028 
0029 #endif