aboutsummaryrefslogtreecommitdiff
path: root/tests/ut_mgconfdatastore/ut_mgconfdatastore.h
blob: 352e2bf6700f274572c8de0e655e6b67d40168c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/***************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (directui@nokia.com)
**
** This file is part of libmeegotouch.
**
** If you have questions regarding the use of this file, please contact
** Nokia at directui@nokia.com.
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation
** and appearing in the file LICENSE.LGPL included in the packaging
** of this file.
**
****************************************************************************/

#ifndef UT_MAPPLETGCONFDATASTORE_H
#define UT_MAPPLETGCONFDATASTORE_H

#include <QObject>
#include <QVariant>

class MGConfDataStore;

class Ut_MGConfDataStore : public QObject
{
    Q_OBJECT

private slots:
    // Called before the first testfunction is executed
    void initTestCase();
    // Called after the last testfunction was executed
    void cleanupTestCase();
    // Called before each testfunction is executed
    void init();
    // Called after every testfunction
    void cleanup();

    // Tests
    void testReading();
    void testWriting();
    void testReadingNonExistingKey();
    void testWritingNonExistingKey();

    void testSignalReceivedWhenValueChanges();

    void testAllKeys();
    void testRemove();
    void testClear();
    void testContains();
    void testSubPathsNotSupported();

signals:
    void valueChanged();

private slots:
    void stringVariantSlot(const QString &string, const QVariant &variant);

private:
    MGConfDataStore *m_subject;

    QList<QPair<QString, QVariant> > stringVariantSlotArguments;
};

#endif  // UT_MAPPLETGCONFDATASTORE_H