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
cc34e8fa
Commit
cc34e8fa
authored
Aug 02, 2019
by
Gennadiy Civil
Browse files
Merge pull request #2357 from kuzkry:obsolete-documentation
PiperOrigin-RevId: 261343928
parents
47092933
287b37f2
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
22 additions
and
30 deletions
+22
-30
googlemock/include/gmock/gmock-generated-actions.h
googlemock/include/gmock/gmock-generated-actions.h
+4
-5
googlemock/include/gmock/gmock-generated-actions.h.pump
googlemock/include/gmock/gmock-generated-actions.h.pump
+4
-5
googlemock/include/gmock/gmock-generated-matchers.h
googlemock/include/gmock/gmock-generated-matchers.h
+2
-5
googlemock/include/gmock/gmock-generated-matchers.h.pump
googlemock/include/gmock/gmock-generated-matchers.h.pump
+2
-5
googlemock/scripts/upload.py
googlemock/scripts/upload.py
+1
-1
googletest/scripts/gen_gtest_pred_impl.py
googletest/scripts/gen_gtest_pred_impl.py
+7
-7
googletest/scripts/pump.py
googletest/scripts/pump.py
+1
-1
googletest/scripts/upload.py
googletest/scripts/upload.py
+1
-1
No files found.
googlemock/include/gmock/gmock-generated-actions.h
View file @
cc34e8fa
...
@@ -259,11 +259,10 @@ class ActionHelper {
...
@@ -259,11 +259,10 @@ class ActionHelper {
//
//
// CAVEAT:
// CAVEAT:
//
//
// ACTION*() can only be used in a namespace scope. The reason is
// ACTION*() can only be used in a namespace scope as templates cannot be
// that C++ doesn't yet allow function-local types to be used to
// declared inside of a local class.
// instantiate templates. The up-coming C++0x standard will fix this.
// Users can, however, define any local functors (e.g. a lambda) that
// Once that's done, we'll consider supporting using ACTION*() inside
// can be used as actions.
// a function.
//
//
// MORE INFORMATION:
// MORE INFORMATION:
//
//
...
...
googlemock/include/gmock/gmock-generated-actions.h.pump
View file @
cc34e8fa
...
@@ -182,11 +182,10 @@ $template
...
@@ -182,11 +182,10 @@ $template
//
//
// CAVEAT:
// CAVEAT:
//
//
// ACTION*() can only be used in a namespace scope. The reason is
// ACTION*() can only be used in a namespace scope as templates cannot be
// that C++ doesn't yet allow function-local types to be used to
// declared inside of a local class.
// instantiate templates. The up-coming C++0x standard will fix this.
// Users can, however, define any local functors (e.g. a lambda) that
// Once that's done, we'll consider supporting using ACTION*() inside
// can be used as actions.
// a function.
//
//
// MORE INFORMATION:
// MORE INFORMATION:
//
//
...
...
googlemock/include/gmock/gmock-generated-matchers.h
View file @
cc34e8fa
...
@@ -250,11 +250,8 @@
...
@@ -250,11 +250,8 @@
// overloading matchers based on parameter types (as opposed to just
// overloading matchers based on parameter types (as opposed to just
// based on the number of parameters).
// based on the number of parameters).
//
//
// MATCHER*() can only be used in a namespace scope. The reason is
// MATCHER*() can only be used in a namespace scope as templates cannot be
// that C++ doesn't yet allow function-local types to be used to
// declared inside of a local class.
// instantiate templates. The up-coming C++0x standard will fix this.
// Once that's done, we'll consider supporting using MATCHER*() inside
// a function.
//
//
// More Information
// More Information
// ================
// ================
...
...
googlemock/include/gmock/gmock-generated-matchers.h.pump
View file @
cc34e8fa
...
@@ -252,11 +252,8 @@ $$ }} This line fixes auto-indentation of the following code in Emacs.
...
@@ -252,11 +252,8 @@ $$ }} This line fixes auto-indentation of the following code in Emacs.
// overloading matchers based on parameter types (as opposed to just
// overloading matchers based on parameter types (as opposed to just
// based on the number of parameters).
// based on the number of parameters).
//
//
// MATCHER*() can only be used in a namespace scope. The reason is
// MATCHER*() can only be used in a namespace scope as templates cannot be
// that C++ doesn't yet allow function-local types to be used to
// declared inside of a local class.
// instantiate templates. The up-coming C++0x standard will fix this.
// Once that's done, we'll consider supporting using MATCHER*() inside
// a function.
//
//
// More Information
// More Information
// ================
// ================
...
...
googlemock/scripts/upload.py
View file @
cc34e8fa
...
@@ -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 @
cc34e8fa
...
@@ -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 @
cc34e8fa
...
@@ -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 @
cc34e8fa
...
@@ -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