blob: 67757fb995fa7ae75484767864e0e2eb9caf2c17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* This file is part of the KDE libraries
SPDX-FileCopyrightText: 2010 Canonical Ltd
SPDX-FileContributor: Aurélien Gâteau <aurelien.gateau@canonical.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef TEST_KCONFIGUTILS_H
#define TEST_KCONFIGUTILS_H
#include <QObject>
class TestKConfigUtils : public QObject
{
Q_OBJECT
private Q_SLOTS:
void testParseGroupString_data();
void testParseGroupString();
void testUnescapeString_data();
void testUnescapeString();
};
#endif /* TEST_KCONFIGUTILS_H */
|