blob: 5d419fe7657f16d370df6ec0dbf22cc0632aa313 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
/*  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_KCONF_UPDATE_H
#define TEST_KCONF_UPDATE_H
#include <QObject>
class TestKConfUpdate : public QObject
{
    Q_OBJECT
private Q_SLOTS:
    void initTestCase();
    void test_data();
    void test();
    void testScript_data();
    void testScript();
};
#endif /* TEST_KCONF_UPDATE_H */
  |