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
c9e0aed9
Commit
c9e0aed9
authored
Apr 02, 2019
by
Abseil Team
Committed by
Gennadiy Civil
Apr 03, 2019
Browse files
Googletest export
Typos: "more then" -> "more than". PiperOrigin-RevId: 241483698
parent
b617b277
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
googletest/include/gtest/gtest-param-test.h
googletest/include/gtest/gtest-param-test.h
+1
-1
googletest/include/gtest/internal/gtest-param-util.h
googletest/include/gtest/internal/gtest-param-util.h
+3
-3
No files found.
googletest/include/gtest/gtest-param-test.h
View file @
c9e0aed9
...
...
@@ -100,7 +100,7 @@ INSTANTIATE_TEST_SUITE_P(InstantiationName,
Values("meeny", "miny", "moe"));
// To distinguish different instances of the pattern, (yes, you
// can instantiate it more th
e
n once) the first argument to the
// can instantiate it more th
a
n once) the first argument to the
// INSTANTIATE_TEST_SUITE_P macro is a prefix that will be added to the
// actual test suite name. Remember to pick unique prefixes for different
// instantiations. The tests from the instantiation above will have
...
...
googletest/include/gtest/internal/gtest-param-util.h
View file @
c9e0aed9
...
...
@@ -461,7 +461,7 @@ class ParameterizedTestSuiteInfoBase {
virtual
TypeId
GetTestSuiteTypeId
()
const
=
0
;
// UnitTest class invokes this method to register tests in this
// test suite right before running them in RUN_ALL_TESTS macro.
// This method should not be called more th
e
n once on any single
// This method should not be called more th
a
n once on any single
// instance of a ParameterizedTestSuiteInfoBase derived class.
virtual
void
RegisterTests
()
=
0
;
...
...
@@ -523,9 +523,9 @@ class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase {
}
// UnitTest class invokes this method to register tests in this test suite
// test suites right before running tests in RUN_ALL_TESTS macro.
// This method should not be called more th
e
n once on any single
// This method should not be called more th
a
n once on any single
// instance of a ParameterizedTestSuiteInfoBase derived class.
// UnitTest has a guard to prevent from calling this method more th
e
n once.
// UnitTest has a guard to prevent from calling this method more th
a
n once.
void
RegisterTests
()
override
{
for
(
typename
TestInfoContainer
::
iterator
test_it
=
tests_
.
begin
();
test_it
!=
tests_
.
end
();
++
test_it
)
{
...
...
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