File indexing completed on 2024-04-28 15:19:33

0001 /*  This file is part of the KDE libraries
0002     SPDX-FileCopyrightText: 2010 Canonical Ltd
0003     SPDX-FileContributor: Aurélien Gâteau <aurelien.gateau@canonical.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 #ifndef TEST_KCONFIGUTILS_H
0008 #define TEST_KCONFIGUTILS_H
0009 
0010 #include <QObject>
0011 
0012 class TestKConfigUtils : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void testParseGroupString_data();
0017     void testParseGroupString();
0018     void testUnescapeString_data();
0019     void testUnescapeString();
0020 };
0021 
0022 #endif /* TEST_KCONFIGUTILS_H */