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
c8d338c6
Commit
c8d338c6
authored
Aug 02, 2019
by
Gennadiy Civil
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2353 from anttsov:patch-1
PiperOrigin-RevId: 261198930
parents
8756ef90
64b17693
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
10 deletions
+17
-10
README.md
googlemock/README.md
+7
-0
upload.py
googlemock/scripts/upload.py
+1
-1
gen_gtest_pred_impl.py
googletest/scripts/gen_gtest_pred_impl.py
+7
-7
pump.py
googletest/scripts/pump.py
+1
-1
upload.py
googletest/scripts/upload.py
+1
-1
No files found.
googlemock/README.md
View file @
c8d338c6
...
@@ -28,6 +28,13 @@ gMock:
...
@@ -28,6 +28,13 @@ gMock:
-
does not use exceptions, and
-
does not use exceptions, and
-
is easy to learn and use.
-
is easy to learn and use.
Details and examples can be found here:
*
[
gMock for Dummies
](
docs/for_dummies.md
)
*
[
Legacy gMock FAQ
](
docs/gmock_faq.md
)
*
[
gMock Cookbook
](
docs/cook_book.md
)
*
[
gMock Cheat Sheet
](
docs/cheat_sheet.md
)
Please note that code under scripts/generator/ is from the
[
cppclean
Please note that code under scripts/generator/ is from the
[
cppclean
project](http://code.google.com/p/cppclean/) and under the Apache
project](http://code.google.com/p/cppclean/) and under the Apache
License, which is different from Google Mock's license.
License, which is different from Google Mock's license.
...
...
googlemock/scripts/upload.py
View file @
c8d338c6
...
@@ -631,7 +631,7 @@ class VersionControlSystem(object):
...
@@ -631,7 +631,7 @@ class VersionControlSystem(object):
new_content: For text files, this is empty. For binary files, this is
new_content: For text files, this is empty. For binary files, this is
the contents of the new file, since the diff output won't contain
the contents of the new file, since the diff output won't contain
information to reconstruct the current file.
information to reconstruct the current file.
is_binary: True if the file is binary.
is_binary: True if
f
the file is binary.
status: The status of the file.
status: The status of the file.
"""
"""
...
...
googletest/scripts/gen_gtest_pred_impl.py
View file @
c8d338c6
...
@@ -540,10 +540,10 @@ class Predicate%(n)sTest : public testing::Test {
...
@@ -540,10 +540,10 @@ class Predicate%(n)sTest : public testing::Test {
}
}
}
}
// true if the test function is expected to run to finish.
// true if
f
the test function is expected to run to finish.
static bool expected_to_finish_;
static bool expected_to_finish_;
// true if the test function did run to finish.
// true if
f
the test function did run to finish.
static bool finished_;
static bool finished_;
"""
%
DEFS
"""
%
DEFS
...
@@ -572,12 +572,12 @@ typedef Predicate%(n)sTest ASSERT_PRED%(n)sTest;
...
@@ -572,12 +572,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 if the assertion is a *_PRED_FORMAT*.
use_format: true if
f
the assertion is a *_PRED_FORMAT*.
use_assert: true if the assertion is a ASSERT_*.
use_assert: true if
f
the assertion is a ASSERT_*.
expect_failure: true if the assertion is expected to fail.
expect_failure: true if
f
the assertion is expected to fail.
use_functor: true if the first argument of the assertion is
use_functor: true if
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 if the predicate functor/function takes
use_user_type: true if
f
the predicate functor/function takes
argument(s) of a user-defined type.
argument(s) of a user-defined type.
Example:
Example:
...
...
googletest/scripts/pump.py
View file @
c8d338c6
...
@@ -161,7 +161,7 @@ class Token:
...
@@ -161,7 +161,7 @@ class Token:
def
StartsWith
(
lines
,
pos
,
string
):
def
StartsWith
(
lines
,
pos
,
string
):
"""Returns True if the given position in lines starts with 'string'."""
"""Returns True if
f
the given position in lines starts with 'string'."""
return
lines
[
pos
.
line
][
pos
.
column
:]
.
startswith
(
string
)
return
lines
[
pos
.
line
][
pos
.
column
:]
.
startswith
(
string
)
...
...
googletest/scripts/upload.py
View file @
c8d338c6
...
@@ -631,7 +631,7 @@ class VersionControlSystem(object):
...
@@ -631,7 +631,7 @@ class VersionControlSystem(object):
new_content: For text files, this is empty. For binary files, this is
new_content: For text files, this is empty. For binary files, this is
the contents of the new file, since the diff output won't contain
the contents of the new file, since the diff output won't contain
information to reconstruct the current file.
information to reconstruct the current file.
is_binary: True if the file is binary.
is_binary: True if
f
the file is binary.
status: The status of the file.
status: The status of the file.
"""
"""
...
...
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