Unity Scopes API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MockPreviewReply.h
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 
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 
53 
54 } // namespace testing
55 
56 } // namespace scopes
57 
58 } // namespace unity
59 
60 #endif
std::list< ColumnLayout > ColumnLayoutList
List of column layouts (see unity::scopes::ColumnLayout)
Definition: ColumnLayout.h:112
Allows the results of a preview to be sent to the preview requester.
Definition: PreviewReply.h:37
std::list< PreviewWidget > PreviewWidgetList
List of preview widgets (see unity::scopes::PreviewWidget)
Definition: PreviewWidget.h:140