diff options
author | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-11-05 06:46:43 +0100 |
---|---|---|
committer | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-11-05 06:53:20 +0100 |
commit | f9665846e405664bec650d77f9dd236c61a293b0 (patch) | |
tree | 3e4f8c35e28bd2fb62c88a159ac3a362235c5959 | |
parent | 8697709e0308af4cd5b09dc108480804e5447cf0 (diff) | |
download | googletest-f9665846e405664bec650d77f9dd236c61a293b0.tar.gz googletest-f9665846e405664bec650d77f9dd236c61a293b0.tar.bz2 googletest-f9665846e405664bec650d77f9dd236c61a293b0.zip |
update gen_gtest_pred_impl.py
After 7bd4a7f3 gtest_pred_impl_unittest.cc used to be newer than
its template.
-rwxr-xr-x | googletest/scripts/gen_gtest_pred_impl.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/googletest/scripts/gen_gtest_pred_impl.py b/googletest/scripts/gen_gtest_pred_impl.py index 72942779..20206e39 100755 --- a/googletest/scripts/gen_gtest_pred_impl.py +++ b/googletest/scripts/gen_gtest_pred_impl.py @@ -544,10 +544,10 @@ class Predicate%(n)sTest : public testing::Test { } } - // true iff the test function is expected to run to finish. + // true if and only if the test function is expected to run to finish. static bool expected_to_finish_; - // true iff the test function did run to finish. + // true if and only if the test function did run to finish. static bool finished_; """ % DEFS @@ -576,12 +576,12 @@ typedef Predicate%(n)sTest ASSERT_PRED%(n)sTest; """Returns the test for a predicate assertion macro. Args: - use_format: true iff the assertion is a *_PRED_FORMAT*. - use_assert: true iff the assertion is a ASSERT_*. - expect_failure: true iff the assertion is expected to fail. - use_functor: true iff the first argument of the assertion is + use_format: true if and only if the assertion is a *_PRED_FORMAT*. + use_assert: true if and only if the assertion is a ASSERT_*. + expect_failure: true if and only if the assertion is expected to fail. + use_functor: true if and only if the first argument of the assertion is a functor (as opposed to a function) - use_user_type: true iff the predicate functor/function takes + use_user_type: true if and only if the predicate functor/function takes argument(s) of a user-defined type. Example: |