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/02/2008 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();
94 msg
<< pred_text
<< "("
95 << e1
<< ") evaluates to false, where"
96 << "\n" << e1
<< " evaluates to " << v1
;
97 return AssertionFailure(msg
);
100 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT1.
101 // Don't use this in your code.
102 #define GTEST_PRED_FORMAT1_(pred_format, v1, on_failure)\
103 GTEST_ASSERT_(pred_format(#v1, v1),\
106 // Internal macro for implementing {EXPECT|ASSERT}_PRED1. Don't use
107 // this in your code.
108 #define GTEST_PRED1_(pred, v1, on_failure)\
109 GTEST_ASSERT_(::testing::AssertPred1Helper(#pred, \
114 // Unary predicate assertion macros.
115 #define EXPECT_PRED_FORMAT1(pred_format, v1) \
116 GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_)
117 #define EXPECT_PRED1(pred, v1) \
118 GTEST_PRED1_(pred, v1, GTEST_NONFATAL_FAILURE_)
119 #define ASSERT_PRED_FORMAT1(pred_format, v1) \
120 GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_FATAL_FAILURE_)
121 #define ASSERT_PRED1(pred, v1) \
122 GTEST_PRED1_(pred, v1, GTEST_FATAL_FAILURE_)
126 // Helper function for implementing {EXPECT|ASSERT}_PRED2. Don't use
127 // this in your code.
128 template <typename Pred
,
131 AssertionResult
AssertPred2Helper(const char* pred_text
,
137 if (pred(v1
, v2
)) return AssertionSuccess();
140 msg
<< pred_text
<< "("
142 << e2
<< ") evaluates to false, where"
143 << "\n" << e1
<< " evaluates to " << v1
144 << "\n" << e2
<< " evaluates to " << v2
;
145 return AssertionFailure(msg
);
148 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT2.
149 // Don't use this in your code.
150 #define GTEST_PRED_FORMAT2_(pred_format, v1, v2, on_failure)\
151 GTEST_ASSERT_(pred_format(#v1, #v2, v1, v2),\
154 // Internal macro for implementing {EXPECT|ASSERT}_PRED2. Don't use
155 // this in your code.
156 #define GTEST_PRED2_(pred, v1, v2, on_failure)\
157 GTEST_ASSERT_(::testing::AssertPred2Helper(#pred, \
164 // Binary predicate assertion macros.
165 #define EXPECT_PRED_FORMAT2(pred_format, v1, v2) \
166 GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_NONFATAL_FAILURE_)
167 #define EXPECT_PRED2(pred, v1, v2) \
168 GTEST_PRED2_(pred, v1, v2, GTEST_NONFATAL_FAILURE_)
169 #define ASSERT_PRED_FORMAT2(pred_format, v1, v2) \
170 GTEST_PRED_FORMAT2_(pred_format, v1, v2, GTEST_FATAL_FAILURE_)
171 #define ASSERT_PRED2(pred, v1, v2) \
172 GTEST_PRED2_(pred, v1, v2, GTEST_FATAL_FAILURE_)
176 // Helper function for implementing {EXPECT|ASSERT}_PRED3. Don't use
177 // this in your code.
178 template <typename Pred
,
182 AssertionResult
AssertPred3Helper(const char* pred_text
,
190 if (pred(v1
, v2
, v3
)) return AssertionSuccess();
193 msg
<< pred_text
<< "("
196 << e3
<< ") evaluates to false, where"
197 << "\n" << e1
<< " evaluates to " << v1
198 << "\n" << e2
<< " evaluates to " << v2
199 << "\n" << e3
<< " evaluates to " << v3
;
200 return AssertionFailure(msg
);
203 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT3.
204 // Don't use this in your code.
205 #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\
206 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3),\
209 // Internal macro for implementing {EXPECT|ASSERT}_PRED3. Don't use
210 // this in your code.
211 #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\
212 GTEST_ASSERT_(::testing::AssertPred3Helper(#pred, \
221 // Ternary predicate assertion macros.
222 #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \
223 GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_NONFATAL_FAILURE_)
224 #define EXPECT_PRED3(pred, v1, v2, v3) \
225 GTEST_PRED3_(pred, v1, v2, v3, GTEST_NONFATAL_FAILURE_)
226 #define ASSERT_PRED_FORMAT3(pred_format, v1, v2, v3) \
227 GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, GTEST_FATAL_FAILURE_)
228 #define ASSERT_PRED3(pred, v1, v2, v3) \
229 GTEST_PRED3_(pred, v1, v2, v3, GTEST_FATAL_FAILURE_)
233 // Helper function for implementing {EXPECT|ASSERT}_PRED4. Don't use
234 // this in your code.
235 template <typename Pred
,
240 AssertionResult
AssertPred4Helper(const char* pred_text
,
250 if (pred(v1
, v2
, v3
, v4
)) return AssertionSuccess();
253 msg
<< pred_text
<< "("
257 << e4
<< ") evaluates to false, where"
258 << "\n" << e1
<< " evaluates to " << v1
259 << "\n" << e2
<< " evaluates to " << v2
260 << "\n" << e3
<< " evaluates to " << v3
261 << "\n" << e4
<< " evaluates to " << v4
;
262 return AssertionFailure(msg
);
265 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT4.
266 // Don't use this in your code.
267 #define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\
268 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, v1, v2, v3, v4),\
271 // Internal macro for implementing {EXPECT|ASSERT}_PRED4. Don't use
272 // this in your code.
273 #define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\
274 GTEST_ASSERT_(::testing::AssertPred4Helper(#pred, \
285 // 4-ary predicate assertion macros.
286 #define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \
287 GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)
288 #define EXPECT_PRED4(pred, v1, v2, v3, v4) \
289 GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_NONFATAL_FAILURE_)
290 #define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \
291 GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)
292 #define ASSERT_PRED4(pred, v1, v2, v3, v4) \
293 GTEST_PRED4_(pred, v1, v2, v3, v4, GTEST_FATAL_FAILURE_)
297 // Helper function for implementing {EXPECT|ASSERT}_PRED5. Don't use
298 // this in your code.
299 template <typename Pred
,
305 AssertionResult
AssertPred5Helper(const char* pred_text
,
317 if (pred(v1
, v2
, v3
, v4
, v5
)) return AssertionSuccess();
320 msg
<< pred_text
<< "("
325 << e5
<< ") evaluates to false, where"
326 << "\n" << e1
<< " evaluates to " << v1
327 << "\n" << e2
<< " evaluates to " << v2
328 << "\n" << e3
<< " evaluates to " << v3
329 << "\n" << e4
<< " evaluates to " << v4
330 << "\n" << e5
<< " evaluates to " << v5
;
331 return AssertionFailure(msg
);
334 // Internal macro for implementing {EXPECT|ASSERT}_PRED_FORMAT5.
335 // Don't use this in your code.
336 #define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\
337 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, #v4, #v5, v1, v2, v3, v4, v5),\
340 // Internal macro for implementing {EXPECT|ASSERT}_PRED5. Don't use
341 // this in your code.
342 #define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\
343 GTEST_ASSERT_(::testing::AssertPred5Helper(#pred, \
356 // 5-ary predicate assertion macros.
357 #define EXPECT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \
358 GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)
359 #define EXPECT_PRED5(pred, v1, v2, v3, v4, v5) \
360 GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_NONFATAL_FAILURE_)
361 #define ASSERT_PRED_FORMAT5(pred_format, v1, v2, v3, v4, v5) \
362 GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)
363 #define ASSERT_PRED5(pred, v1, v2, v3, v4, v5) \
364 GTEST_PRED5_(pred, v1, v2, v3, v4, v5, GTEST_FATAL_FAILURE_)
368 #endif // GTEST_INCLUDE_GTEST_GTEST_PRED_IMPL_H_