~mardy/unity-scopes-api/clientid-1554040

« back to all changes in this revision

Viewing changes to include/unity/scopes/testing/MockPreviewReply.h

  • Committer: CI bot
  • Author(s): Tarmac
  • Date: 2014-03-12 16:58:32 UTC
  • mfrom: (163.45.63 devel)
  • Revision ID: ps-jenkins@lists.canonical.com-20140312165832-ngmnoud825y533pk
Sync with devel branch - updated scopes API to 0.4.0. See RELEASE_NOTES for list of all changes. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 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 version 3 as
 
6
 * published by the Free Software Foundation.
 
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
 * Authored by: Thomas Voß <thomas.voss@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef UNITY_SCOPES_TESTING_MOCK_PREVIEW_REPLY_H
 
20
#define UNITY_SCOPES_TESTING_MOCK_PREVIEW_REPLY_H
 
21
 
 
22
#include <unity/scopes/PreviewReply.h>
 
23
 
 
24
#include <gmock/gmock.h>
 
25
 
 
26
namespace unity
 
27
{
 
28
 
 
29
namespace scopes
 
30
{
 
31
 
 
32
namespace testing
 
33
{
 
34
 
 
35
/// @cond
 
36
 
 
37
class MockPreviewReply : public unity::scopes::PreviewReply
 
38
{
 
39
public:
 
40
    MockPreviewReply() = default;
 
41
 
 
42
    // From Reply
 
43
    MOCK_METHOD0(finished, void());
 
44
    MOCK_METHOD1(error, void(std::exception_ptr));
 
45
 
 
46
    // From SearchReply
 
47
    MOCK_METHOD1(register_layout, bool(ColumnLayoutList const&));
 
48
    MOCK_METHOD1(push, bool(PreviewWidgetList const&));
 
49
    MOCK_METHOD2(push, bool(std::string const&, Variant const&));
 
50
};
 
51
 
 
52
/// @endcond
 
53
 
 
54
} // namespace testing
 
55
 
 
56
} // namespace scopes
 
57
 
 
58
} // namespace unity
 
59
 
 
60
#endif