"docs/pkgconfig.md" did not exist on "3d93f88081b1d16c96308f4a9a5e8859f3538bb9"
Commit c9e0aed9 authored by Abseil Team's avatar Abseil Team Committed by Gennadiy Civil
Browse files

Googletest export

Typos: "more then" -> "more than".
PiperOrigin-RevId: 241483698
parent b617b277
...@@ -100,7 +100,7 @@ INSTANTIATE_TEST_SUITE_P(InstantiationName, ...@@ -100,7 +100,7 @@ INSTANTIATE_TEST_SUITE_P(InstantiationName,
Values("meeny", "miny", "moe")); Values("meeny", "miny", "moe"));
// To distinguish different instances of the pattern, (yes, you // To distinguish different instances of the pattern, (yes, you
// can instantiate it more then once) the first argument to the // can instantiate it more than once) the first argument to the
// INSTANTIATE_TEST_SUITE_P macro is a prefix that will be added 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 // actual test suite name. Remember to pick unique prefixes for different
// instantiations. The tests from the instantiation above will have // instantiations. The tests from the instantiation above will have
......
...@@ -461,7 +461,7 @@ class ParameterizedTestSuiteInfoBase { ...@@ -461,7 +461,7 @@ class ParameterizedTestSuiteInfoBase {
virtual TypeId GetTestSuiteTypeId() const = 0; virtual TypeId GetTestSuiteTypeId() const = 0;
// UnitTest class invokes this method to register tests in this // UnitTest class invokes this method to register tests in this
// test suite right before running them in RUN_ALL_TESTS macro. // test suite right before running them in RUN_ALL_TESTS macro.
// This method should not be called more then once on any single // This method should not be called more than once on any single
// instance of a ParameterizedTestSuiteInfoBase derived class. // instance of a ParameterizedTestSuiteInfoBase derived class.
virtual void RegisterTests() = 0; virtual void RegisterTests() = 0;
...@@ -523,9 +523,9 @@ class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase { ...@@ -523,9 +523,9 @@ class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase {
} }
// UnitTest class invokes this method to register tests in this test suite // UnitTest class invokes this method to register tests in this test suite
// test suites right before running tests in RUN_ALL_TESTS macro. // test suites right before running tests in RUN_ALL_TESTS macro.
// This method should not be called more then once on any single // This method should not be called more than once on any single
// instance of a ParameterizedTestSuiteInfoBase derived class. // instance of a ParameterizedTestSuiteInfoBase derived class.
// UnitTest has a guard to prevent from calling this method more then once. // UnitTest has a guard to prevent from calling this method more than once.
void RegisterTests() override { void RegisterTests() override {
for (typename TestInfoContainer::iterator test_it = tests_.begin(); for (typename TestInfoContainer::iterator test_it = tests_.begin();
test_it != tests_.end(); ++test_it) { test_it != tests_.end(); ++test_it) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment