Unity Scopes API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
MockObject.h
1 /*
2  * Copyright (C) 2014 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: Michi Henning <michi.henning@canonical.com>
17  */
18 
19 #ifndef UNITY_SCOPES_TESTING_MOCK_OBJECT_H
20 #define UNITY_SCOPES_TESTING_MOCK_OBJECT_H
21 
22 #include <unity/scopes/Object.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 MockObject : public virtual Object
38 {
39 public:
40  MockObject() = default;
41 
42  MOCK_METHOD0(endpoint, std::string());
43  MOCK_METHOD0(identity, std::string());
44  MOCK_METHOD0(category, std::string());
45  MOCK_METHOD0(timeout, int64_t());
46  MOCK_METHOD0(to_string, std::string());
47 };
48 
50 
51 } // namespace testing
52 
53 } // namespace scopes
54 
55 } // namespace unity
56 
57 #endif
char const * to_string(ListenerBase::Reason reason)
Convenience function to convert a ListenerBase::Reason enumerator to a string.