~macslow/unity8/fix-1200569

« back to all changes in this revision

Viewing changes to tests/plugins/Unity/Indicators/rootactionstatetest.cpp

  • Committer: Mirco Müller
  • Date: 2013-10-31 13:03:20 UTC
  • mfrom: (423.1.58 trunk)
  • Revision ID: mirco.mueller@ubuntu.com-20131031130320-jv3naqh8mwhrtklw
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *      Nick Dedekind <nick.dedekind@canonical.com>
 
18
 */
 
19
 
 
20
#include "rootactionstate.h"
 
21
 
 
22
#include <unitymenumodel.h>
 
23
#include <QtTest>
 
24
 
 
25
class RootActionStateTest : public QObject
 
26
{
 
27
    Q_OBJECT
 
28
private Q_SLOTS:
 
29
 
 
30
    void testDeleteRootActionState()
 
31
    {
 
32
        UnityMenuModel* menuModel = new UnityMenuModel();
 
33
        ActionStateParser* originalParser = menuModel->actionStateParser();
 
34
        RootActionState* rootState = new RootActionState();
 
35
 
 
36
        rootState->setMenu(menuModel);
 
37
 
 
38
        delete rootState;
 
39
        QCOMPARE(menuModel->actionStateParser(), originalParser);
 
40
        delete menuModel;
 
41
    }
 
42
 
 
43
    void testDeleteUnityMenuModel()
 
44
    {
 
45
        UnityMenuModel* menuModel = new UnityMenuModel();
 
46
        RootActionState* rootState = new RootActionState();
 
47
 
 
48
        rootState->setMenu(menuModel);
 
49
 
 
50
        QCOMPARE(rootState->menu(), menuModel);
 
51
        delete menuModel;
 
52
        QVERIFY(rootState->menu() == NULL);
 
53
        delete rootState;
 
54
    }
 
55
};
 
56
 
 
57
QTEST_GUILESS_MAIN(RootActionStateTest)
 
58
#include "rootactionstatetest.moc"