1 // Copyright 2006, Google Inc.
2 // All rights reserved.
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
14 // * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 // This file is AUTOMATICALLY GENERATED on 10/31/2011 by command
31 // 'gen_gtest_pred_impl.py 5'. DO NOT EDIT BY HAND!
33 // Implements a family of generic predicate assertion macros.
35 #ifndef GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
36 #define GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_
38 // Makes sure this header is not included before gtest.h.
39 #ifndef GTEST_INCLUDE_GTEST_GTEST_H_
40 # error Do not include gtest_pred_impl.h directly. Include gtest.h instead.
41 #endif // GTEST_INCLUDE_GTEST_GTEST_H_
43 // This header implements a family of generic predicate assertion
46 // ASSERT_PRED_FORMAT1(pred_format, v1)
47 // ASSERT_PRED_FORMAT2(pred_format, v1, v2)
50 // where pred_format is a function or functor that takes n (in the
51 // case of ASSERT_PRED_FORMATn) values and their source expression
52 // text, and returns a testing::AssertionResult. See the definition
53 // of ASSERT_EQ in gtest.h for an example.
55 // If you don't care about formatting, you can use the more
56 // restrictive version:
58 // ASSERT_PRED1(pred, v1)
59 // ASSERT_PRED2(pred, v1, v2)
62 // where pred is an n-ary function or functor that returns bool,
63 // and the values v1, v2, ..., must support the << operator for
64 // streaming to std::ostream.
66 // We also define the EXPECT_* variations.
68 // For now we only support predicates whose arity is at most 5.
69 // Please email googletestframework@googlegroups.com if you need
70 // support for higher arities.
72 // GTEST_ASSERT_ is the basic statement to which all of the assertions
73 // in this file reduce. Don't use this in your code.
75 #define GTEST_ASSERT_(expression, on_failure) \
76 GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
77 if (const ::testing::AssertionResult gtest_ar = (expression)) \
80 on_failure(gtest_ar.failure_message())
83 // Helper function for implementing {EXPECT|ASSERT}_PRED1. Don't use
85 template <typename Pred
,
87 AssertionResult
AssertPred1Helper(const char* pred_text
,
91 if (pred(v1
)) return AssertionSuccess();
93 return AssertionFailure() << pred_text
<< "("
94 << e1
<< ") evaluates to false, where"
95 << "\n" << e1
<< " evaluates to " << v1
;
98 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1.
99 // Don't use this in your code.
100 #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
101 GTEST_ASSERT_(pred_format(#v1, v1), \
104 // Internal macro for implementing {EXPECT|ASSERT}_PRED1. Don't use
105 // this in your code.
106 #define GTEST_PRED1_(pred, v1, on_failure)\
107 GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \
112 // Unary predicate assertion macros.
113 #define EXPECT_PRED_FORMAT1(pred_format, v1) \
114 GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_)
115 #define EXPECT_PRED1(pred, v1) \
116 GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_)
117 #define ASSERT_PRED_FORMAT1(pred_format, v1) \
118 GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_)
119 #define ASSERT_PRED1(pred, v1) \
120 GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_)
124 // Helper function for implementing {EXPECT|ASSERT}_PRED2. Don't use
125 // this in your code.
126 template <typename Pred
,
129 AssertionResult
AssertPred2Helper(const char* pred_text
,
135 if (pred(v1
, v2
)) return AssertionSuccess();
137 return AssertionFailure() << pred_text
<< "("
139 << e2
<< ") evaluates to false, where"
140 << "\n" << e1
<< " evaluates to " << v1
141 << "\n" << e2
<< " evaluates to " << v2
;
144 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2.
145 // Don't use this in your code.
146 #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\
147 GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2), \
150 // Internal macro for implementing {EXPECT|ASSERT}_PRED2. Don't use
151 // this in your code.
152 #define GTEST_PRED2_(pred, v1, v2, on_failure)\
153 GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \
160 // Binary predicate assertion macros.
161 #define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \
162 GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_)
163 #define EXPECT_PRED2(pred, v1, v2) \
164 GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_)
165 #define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \
166 GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_)
167 #define ASSERT_PRED2(pred, v1, v2) \
168 GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_)
172 // Helper function for implementing {EXPECT|ASSERT}_PRED3. Don't use
173 // this in your code.
174 template <typename Pred
,
178 AssertionResult
AssertPred3Helper(const char* pred_text
,
186 if (pred(v1
, v2
, v3
)) return AssertionSuccess();
188 return AssertionFailure() << pred_text
<< "("
191 << e3
<< ") evaluates to false, where"
192 << "\n" << e1
<< " evaluates to " << v1
193 << "\n" << e2
<< " evaluates to " << v2
194 << "\n" << e3
<< " evaluates to " << v3
;
197 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3.
198 // Don't use this in your code.
199 #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\
200 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3), \
203 // Internal macro for implementing {EXPECT|ASSERT}_PRED3. Don't use
204 // this in your code.
205 #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\
206 GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \
215 // Ternary predicate assertion macros.
216 #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \
217 GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_)
218 #define EXPECT_PRED3(pred, v1, v2, v3) \
219 GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_)
220 #define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \
221 GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_)
222 #define ASSERT_PRED3(pred, v1, v2, v3) \
223 GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_)
227 // Helper function for implementing {EXPECT|ASSERT}_PRED4. Don't use
228 // this in your code.
229 template <typename Pred
,
234 AssertionResult
AssertPred4Helper(const char* pred_text
,
244 if (pred(v1
, v2
, v3
, v4
)) return AssertionSuccess();
246 return AssertionFailure() << pred_text
<< "("
250 << e4
<< ") evaluates to false, where"
251 << "\n" << e1
<< " evaluates to " << v1
252 << "\n" << e2
<< " evaluates to " << v2
253 << "\n" << e3
<< " evaluates to " << v3
254 << "\n" << e4
<< " evaluates to " << v4
;
257 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4.
258 // Don't use this in your code.
259 #define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\
260 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4), \
263 // Internal macro for implementing {EXPECT|ASSERT}_PRED4. Don't use
264 // this in your code.
265 #define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\
266 GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \
277 // 4-ary predicate assertion macros.
278 #define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \
279 GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)
280 #define EXPECT_PRED4(pred, v1, v2, v3, v4) \
281 GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)
282 #define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \
283 GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)
284 #define ASSERT_PRED4(pred, v1, v2, v3, v4) \
285 GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)
289 // Helper function for implementing {EXPECT|ASSERT}_PRED5. Don't use
290 // this in your code.
291 template <typename Pred
,
297 AssertionResult
AssertPred5Helper(const char* pred_text
,
309 if (pred(v1
, v2
, v3
, v4
, v5
)) return AssertionSuccess();
311 return AssertionFailure() << pred_text
<< "("
316 << e5
<< ") evaluates to false, where"
317 << "\n" << e1
<< " evaluates to " << v1
318 << "\n" << e2
<< " evaluates to " << v2
319 << "\n" << e3
<< " evaluates to " << v3
320 << "\n" << e4
<< " evaluates to " << v4
321 << "\n" << e5
<< " evaluates to " << v5
;
324 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5.
325 // Don't use this in your code.
326 #define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\
327 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5), \
330 // Internal macro for implementing {EXPECT|ASSERT}_PRED5. Don't use
331 // this in your code.
332 #define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\
333 GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \
346 // 5-ary predicate assertion macros.
347 #define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \
348 GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)
349 #define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \
350 GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)
351 #define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \
352 GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)
353 #define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \
354 GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)
358 #endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_