File indexing completed on 2024-05-26 04:59:41

0001 /*
0002     SPDX-FileCopyrightText: 2007-2009 Sergio Pistone <sergio_pistone@yahoo.com.ar>
0003     SPDX-FileCopyrightText: 2010-2022 Mladen Milinkovic <max@smoothware.net>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef RICHSTRINGTEST_H
0009 #define RICHSTRINGTEST_H
0010 
0011 #include <QObject>
0012 
0013 class RichStringTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 private slots:
0018     void testStyleFlags();
0019     void testLeftMidRight();
0020     void testInsert();
0021     void testReplace();
0022     void testStyleMerge();
0023 };
0024 
0025 #endif