Mir
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mock_renderer.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2012 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,
6  * as 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 General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
17  */
18 #ifndef MIR_TEST_DOUBLES_MOCK_RENDERER_H_
19 #define MIR_TEST_DOUBLES_MOCK_RENDERER_H_
20 
22 
23 #include <gmock/gmock.h>
24 
25 namespace mir
26 {
27 namespace test
28 {
29 namespace doubles
30 {
31 
33 {
35  MOCK_METHOD1(set_rotation, void(float));
36  MOCK_CONST_METHOD0(begin, void());
38  MOCK_CONST_METHOD0(end, void());
39  MOCK_METHOD0(suspend, void());
40 
41  ~MockRenderer() noexcept {}
42 };
43 
44 }
45 }
46 }
47 #endif /* MIR_TEST_DOUBLES_MOCK_RENDERER_H_ */
~MockRenderer() noexcept
Definition: mock_renderer.h:41
virtual void set_rotation(float degrees)=0
Definition: mock_renderer.h:32
Definition: renderer.h:34
virtual void render(graphics::Renderable const &renderable, graphics::Buffer &buffer) const =0
virtual void suspend()=0
MOCK_CONST_METHOD2(render, void(graphics::Renderable const &, graphics::Buffer &))
virtual void set_viewport(geometry::Rectangle const &rect)=0
virtual void end() const =0
Definition: renderable.h:33
MOCK_METHOD1(set_viewport, void(geometry::Rectangle const &))
virtual void begin() const =0
Definition: rectangle.h:33
Definition: buffer.h:34

Copyright © 2012,2013 Canonical Ltd.
Generated on Fri Apr 11 21:14:53 UTC 2014