Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
f73898f3
Commit
f73898f3
authored
Nov 13, 2019
by
Andy Getz
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2554 from kuzkry:update-gen_gtest_pred_impl
PiperOrigin-RevId: 279734102
parents
11440f27
f9665846
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
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):
...
@@ -78,7 +78,7 @@ def HeaderPreamble(n):
}
}
return
(
return
(
"""// Copyright 2006, Google Inc.
"""// Copyright 2006, Google Inc.
// All rights reserved.
// All rights reserved.
//
//
// Redistribution and use in source and binary forms, with or without
// Redistribution and use in source and binary forms, with or without
...
@@ -337,7 +337,7 @@ def UnitTestPreamble():
...
@@ -337,7 +337,7 @@ def UnitTestPreamble():
}
}
return
(
return
(
"""// Copyright 2006, Google Inc.
"""// Copyright 2006, Google Inc.
// All rights reserved.
// All rights reserved.
//
//
// Redistribution and use in source and binary forms, with or without
// Redistribution and use in source and binary forms, with or without
...
@@ -431,7 +431,7 @@ def TestsForArity(n):
...
@@ -431,7 +431,7 @@ def TestsForArity(n):
}
}
tests
=
(
tests
=
(
"""// Sample functions/functors for testing
%(arity)
s predicate assertions.
"""// Sample functions/functors for testing
%(arity)
s predicate assertions.
// A
%(arity)
s predicate function.
// A
%(arity)
s predicate function.
template <
%(types)
s>
template <
%(types)
s>
...
@@ -544,10 +544,10 @@ class Predicate%(n)sTest : public testing::Test {
...
@@ -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_;
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_;
static bool finished_;
"""
%
DEFS
"""
%
DEFS
...
@@ -576,12 +576,12 @@ typedef Predicate%(n)sTest ASSERT_PRED%(n)sTest;
...
@@ -576,12 +576,12 @@ typedef Predicate%(n)sTest ASSERT_PRED%(n)sTest;
"""Returns the test for a predicate assertion macro.
"""Returns the test for a predicate assertion macro.
Args:
Args:
use_format: true iff the assertion is a *_PRED_FORMAT*.
use_format: true if
and only i
f the assertion is a *_PRED_FORMAT*.
use_assert: true iff the assertion is a ASSERT_*.
use_assert: true if
and only i
f the assertion is a ASSERT_*.
expect_failure: true iff the assertion is expected to fail.
expect_failure: true if
and only i
f the assertion is expected to fail.
use_functor: true iff the first argument of the assertion is
use_functor: true if
and only i
f the first argument of the assertion is
a functor (as opposed to a function)
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.
argument(s) of a user-defined type.
Example:
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