~alan-griffiths/qtmir/mir-0.27-compat-artful

« back to all changes in this revision

Viewing changes to tests/framework/mock_session_manager.h

  • Committer: Albert Astals Cid
  • Date: 2017-03-20 16:21:09 UTC
  • mto: This revision was merged to the branch mainline in revision 622.
  • Revision ID: albert.astals@canonical.com-20170320162109-o7p0wnurlzlupyrd
Wrong merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2017 Canonical, Ltd.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify it under
5
 
 * the terms of the GNU Lesser General Public License version 3, as published by
6
 
 * the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful, but WITHOUT
9
 
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
10
 
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
 
 * 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
 
 
17
 
#ifndef MOCK_SESSION_MANAGER_H
18
 
#define MOCK_SESSION_MANAGER_H
19
 
 
20
 
#include <Unity/Application/sessionmanager.h>
21
 
 
22
 
#include <gmock/gmock.h>
23
 
 
24
 
namespace qtmir {
25
 
 
26
 
struct MockSessionManager : public qtmir::SessionManager
27
 
{
28
 
    MOCK_CONST_METHOD1(findSession, qtmir::SessionInterface*(const mir::scene::Session*));
29
 
};
30
 
 
31
 
} // namespace qtmir
32
 
 
33
 
#endif // MOCK_SESSION_MANAGER_H