1 /*
2     SPDX-FileCopyrightText: 2007-2009 Sergio Pistone <sergio_pistone@yahoo.com.ar>
3     SPDX-FileCopyrightText: 2010-2018 Mladen Milinkovic <max@smoothware.net>
4 
5     SPDX-License-Identifier: GPL-2.0-or-later
6 */
7 
8 #ifndef SSTRINGTEST_H
9 #define SSTRINGTEST_H
10 
11 #include <QObject>
12 
13 class SStringTest : public QObject
14 {
15 	Q_OBJECT
16 
17 private slots:
18 	void testStyleFlags();
19 	void testLeftMidRight();
20 	void testInsert();
21 	void testReplace();
22 };
23 
24 #endif
25