Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
f73898f3
Commit
f73898f3
authored
Nov 13, 2019
by
Andy Getz
Browse files
Merge pull request #2554 from kuzkry:update-gen_gtest_pred_impl
PiperOrigin-RevId: 279734102
parents
11440f27
f9665846
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
googletest/scripts/gen_gtest_pred_impl.py
googletest/scripts/gen_gtest_pred_impl.py
+10
-10
No files found.
googletest/scripts/gen_gtest_pred_impl.py
View file @
f73898f3
...
...
@@ -78,7 +78,7 @@ def HeaderPreamble(n):
}
return
(
"""// Copyright 2006, Google Inc.
"""// Copyright 2006, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
...
...
@@ -337,7 +337,7 @@ def UnitTestPreamble():
}
return
(
"""// Copyright 2006, Google Inc.
"""// Copyright 2006, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
...
...
@@ -431,7 +431,7 @@ def TestsForArity(n):
}
tests
=
(
"""// Sample functions/functors for testing %(arity)s predicate assertions.
"""// Sample functions/functors for testing %(arity)s predicate assertions.
// A %(arity)s predicate function.
template <%(types)s>
...
...
@@ -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 i
f 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 i
f 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 i
f the assertion is a *_PRED_FORMAT*.
use_assert: true if
and only i
f the assertion is a ASSERT_*.
expect_failure: true if
and only i
f the assertion is expected to fail.
use_functor: true if
and only i
f 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 i
f the predicate functor/function takes
argument(s) of a user-defined type.
Example:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment