~charlesk/indicator-datetime/lp-1001595

« back to all changes in this revision

Viewing changes to tests/state-fixture.h

  • Committer: CI bot
  • Author(s): Charles Kerr
  • Date: 2014-01-31 11:46:08 UTC
  • mfrom: (290.2.86 cpp)
  • Revision ID: ps-jenkins@lists.canonical.com-20140131114608-8sfzhimcfdywmk46
Finally land this. Other, still open bugs will be fixed in subsequent commits. Fixes: 793450, 1271484, 1274046

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 it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *   Charles Kerr <charles.kerr@canonical.com>
 
18
 */
 
19
 
 
20
#include "glib-fixture.h"
 
21
 
 
22
#include "actions-mock.h"
 
23
#include "state-mock.h"
 
24
 
 
25
using namespace unity::indicator::datetime;
 
26
 
 
27
class StateFixture: public GlibFixture
 
28
{
 
29
private:
 
30
    typedef GlibFixture super;
 
31
 
 
32
protected:
 
33
    std::shared_ptr<MockState> m_mock_state;
 
34
    std::shared_ptr<State> m_state;
 
35
    std::shared_ptr<MockActions> m_mock_actions;
 
36
    std::shared_ptr<Actions> m_actions;
 
37
 
 
38
    virtual void SetUp()
 
39
    {
 
40
        super::SetUp();
 
41
 
 
42
        m_mock_state.reset(new MockState);
 
43
        m_state = std::dynamic_pointer_cast<State>(m_mock_state);
 
44
 
 
45
        m_mock_actions.reset(new MockActions(m_state));
 
46
        m_actions = std::dynamic_pointer_cast<Actions>(m_mock_actions);
 
47
    }
 
48
 
 
49
    virtual void TearDown()
 
50
    {
 
51
        m_actions.reset();
 
52
        m_mock_actions.reset();
 
53
 
 
54
        m_state.reset();
 
55
        m_mock_state.reset();
 
56
 
 
57
        super::TearDown();
 
58
    }
 
59
};
 
60