blob: fc9a81b5602281e005f88cd00a615a48e3003d94 [file] [log] [blame]
shiqiane35fdd92008-12-10 05:08:54 +00001// This file was GENERATED by a script. DO NOT EDIT BY HAND!!!
2
3// Copyright 2008, Google Inc.
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met:
9//
10// * Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12// * Redistributions in binary form must reproduce the above
13// copyright notice, this list of conditions and the following disclaimer
14// in the documentation and/or other materials provided with the
15// distribution.
16// * Neither the name of Google Inc. nor the names of its
17// contributors may be used to endorse or promote products derived from
18// this software without specific prior written permission.
19//
20// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31//
32// Author: wan@google.com (Zhanyong Wan)
33
34// Implements class templates NiceMock and StrictMock.
35//
36// Given a mock class MockFoo that is created using Google Mock,
37// NiceMock<MockFoo> is a subclass of MockFoo that allows
38// uninteresting calls (i.e. calls to mock methods that have no
39// EXPECT_CALL specs), and StrictMock<MockFoo> is a subclass of
40// MockFoo that treats all uninteresting calls as errors.
41//
42// NiceMock and StrictMock "inherits" the constructors of their
43// respective base class, with up-to 10 arguments. Therefore you can
44// write NiceMock<MockFoo>(5, "a") to construct a nice mock where
45// MockFoo has a constructor that accepts (int, const char*), for
46// example.
47//
48// A known limitation is that NiceMock<MockFoo> and
49// StrictMock<MockFoo> only works for mock methods defined using the
50// MOCK_METHOD* family of macros DIRECTLY in the MockFoo class. If a
51// mock method is defined in a base class of MockFoo, the "nice" or
52// "strict" modifier may not affect it, depending on the compiler. In
53// particular, nesting NiceMock and StrictMock is NOT supported.
54//
55// Another known limitation is that the constructors of the base mock
56// cannot have arguments passed by non-const reference, which are
57// banned by the Google C++ style guide anyway.
58
59#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
60#define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_
61
62#include <gmock/gmock-spec-builders.h>
63#include <gmock/internal/gmock-port.h>
64
65namespace testing {
66
67template <class MockClass>
68class NiceMock : public MockClass {
69 public:
70 // We don't factor out the constructor body to a common method, as
71 // we have to avoid a possible clash with members of MockClass.
72 NiceMock() {
zhanyong.wan4bd79e42009-09-16 17:38:08 +000073 ::testing::Mock::AllowUninterestingCalls(
74 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +000075 }
76
77 // C++ doesn't (yet) allow inheritance of constructors, so we have
78 // to define it for each arity.
79 template <typename A1>
80 explicit NiceMock(const A1& a1) : MockClass(a1) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +000081 ::testing::Mock::AllowUninterestingCalls(
82 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +000083 }
84 template <typename A1, typename A2>
85 NiceMock(const A1& a1, const A2& a2) : MockClass(a1, a2) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +000086 ::testing::Mock::AllowUninterestingCalls(
87 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +000088 }
89
90 template <typename A1, typename A2, typename A3>
91 NiceMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +000092 ::testing::Mock::AllowUninterestingCalls(
93 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +000094 }
95
96 template <typename A1, typename A2, typename A3, typename A4>
97 NiceMock(const A1& a1, const A2& a2, const A3& a3,
98 const A4& a4) : MockClass(a1, a2, a3, a4) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +000099 ::testing::Mock::AllowUninterestingCalls(
100 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000101 }
102
103 template <typename A1, typename A2, typename A3, typename A4, typename A5>
104 NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
105 const A5& a5) : MockClass(a1, a2, a3, a4, a5) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000106 ::testing::Mock::AllowUninterestingCalls(
107 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000108 }
109
110 template <typename A1, typename A2, typename A3, typename A4, typename A5,
111 typename A6>
112 NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
113 const A5& a5, const A6& a6) : MockClass(a1, a2, a3, a4, a5, a6) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000114 ::testing::Mock::AllowUninterestingCalls(
115 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000116 }
117
118 template <typename A1, typename A2, typename A3, typename A4, typename A5,
119 typename A6, typename A7>
120 NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
121 const A5& a5, const A6& a6, const A7& a7) : MockClass(a1, a2, a3, a4, a5,
122 a6, a7) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000123 ::testing::Mock::AllowUninterestingCalls(
124 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000125 }
126
127 template <typename A1, typename A2, typename A3, typename A4, typename A5,
128 typename A6, typename A7, typename A8>
129 NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
130 const A5& a5, const A6& a6, const A7& a7, const A8& a8) : MockClass(a1,
131 a2, a3, a4, a5, a6, a7, a8) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000132 ::testing::Mock::AllowUninterestingCalls(
133 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000134 }
135
136 template <typename A1, typename A2, typename A3, typename A4, typename A5,
137 typename A6, typename A7, typename A8, typename A9>
138 NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
139 const A5& a5, const A6& a6, const A7& a7, const A8& a8,
140 const A9& a9) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000141 ::testing::Mock::AllowUninterestingCalls(
142 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000143 }
144
145 template <typename A1, typename A2, typename A3, typename A4, typename A5,
146 typename A6, typename A7, typename A8, typename A9, typename A10>
147 NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
148 const A5& a5, const A6& a6, const A7& a7, const A8& a8, const A9& a9,
149 const A10& a10) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000150 ::testing::Mock::AllowUninterestingCalls(
151 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000152 }
153
154 virtual ~NiceMock() {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000155 ::testing::Mock::UnregisterCallReaction(
156 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000157 }
158};
159
160template <class MockClass>
161class StrictMock : public MockClass {
162 public:
163 // We don't factor out the constructor body to a common method, as
164 // we have to avoid a possible clash with members of MockClass.
165 StrictMock() {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000166 ::testing::Mock::FailUninterestingCalls(
167 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000168 }
169
170 template <typename A1>
171 explicit StrictMock(const A1& a1) : MockClass(a1) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000172 ::testing::Mock::FailUninterestingCalls(
173 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000174 }
175 template <typename A1, typename A2>
176 StrictMock(const A1& a1, const A2& a2) : MockClass(a1, a2) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000177 ::testing::Mock::FailUninterestingCalls(
178 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000179 }
180
181 template <typename A1, typename A2, typename A3>
182 StrictMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000183 ::testing::Mock::FailUninterestingCalls(
184 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000185 }
186
187 template <typename A1, typename A2, typename A3, typename A4>
188 StrictMock(const A1& a1, const A2& a2, const A3& a3,
189 const A4& a4) : MockClass(a1, a2, a3, a4) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000190 ::testing::Mock::FailUninterestingCalls(
191 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000192 }
193
194 template <typename A1, typename A2, typename A3, typename A4, typename A5>
195 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
196 const A5& a5) : MockClass(a1, a2, a3, a4, a5) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000197 ::testing::Mock::FailUninterestingCalls(
198 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000199 }
200
201 template <typename A1, typename A2, typename A3, typename A4, typename A5,
202 typename A6>
203 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
204 const A5& a5, const A6& a6) : MockClass(a1, a2, a3, a4, a5, a6) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000205 ::testing::Mock::FailUninterestingCalls(
206 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000207 }
208
209 template <typename A1, typename A2, typename A3, typename A4, typename A5,
210 typename A6, typename A7>
211 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
212 const A5& a5, const A6& a6, const A7& a7) : MockClass(a1, a2, a3, a4, a5,
213 a6, a7) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000214 ::testing::Mock::FailUninterestingCalls(
215 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000216 }
217
218 template <typename A1, typename A2, typename A3, typename A4, typename A5,
219 typename A6, typename A7, typename A8>
220 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
221 const A5& a5, const A6& a6, const A7& a7, const A8& a8) : MockClass(a1,
222 a2, a3, a4, a5, a6, a7, a8) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000223 ::testing::Mock::FailUninterestingCalls(
224 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000225 }
226
227 template <typename A1, typename A2, typename A3, typename A4, typename A5,
228 typename A6, typename A7, typename A8, typename A9>
229 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
230 const A5& a5, const A6& a6, const A7& a7, const A8& a8,
231 const A9& a9) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000232 ::testing::Mock::FailUninterestingCalls(
233 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000234 }
235
236 template <typename A1, typename A2, typename A3, typename A4, typename A5,
237 typename A6, typename A7, typename A8, typename A9, typename A10>
238 StrictMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4,
239 const A5& a5, const A6& a6, const A7& a7, const A8& a8, const A9& a9,
240 const A10& a10) : MockClass(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000241 ::testing::Mock::FailUninterestingCalls(
242 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000243 }
244
245 virtual ~StrictMock() {
zhanyong.wan4bd79e42009-09-16 17:38:08 +0000246 ::testing::Mock::UnregisterCallReaction(
247 internal::implicit_cast<MockClass*>(this));
shiqiane35fdd92008-12-10 05:08:54 +0000248 }
249};
250
251// The following specializations catch some (relatively more common)
252// user errors of nesting nice and strict mocks. They do NOT catch
253// all possible errors.
254
255// These specializations are declared but not defined, as NiceMock and
256// StrictMock cannot be nested.
257template <typename MockClass>
258class NiceMock<NiceMock<MockClass> >;
259template <typename MockClass>
260class NiceMock<StrictMock<MockClass> >;
261template <typename MockClass>
262class StrictMock<NiceMock<MockClass> >;
263template <typename MockClass>
264class StrictMock<StrictMock<MockClass> >;
265
266} // namespace testing
267
268#endif // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_NICE_STRICT_H_