summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/internal/gtest-param-util.h
diff options
context:
space:
mode:
authorHyuk Myeong <hyuk.myeong@lge.com>2020-11-08 07:36:57 (GMT)
committerHyuk Myeong <hyuk.myeong@lge.com>2020-11-08 07:36:57 (GMT)
commit87347d5455214c1b31f565aee92ab4db4ffe63fc (patch)
treee97b02f7cd678378938cfa7e8c5e9c46c54a0742 /googletest/include/gtest/internal/gtest-param-util.h
parentd89b36302116233b8c6377e6e891083f41ee51c5 (diff)
downloadgoogletest-87347d5455214c1b31f565aee92ab4db4ffe63fc.zip
googletest-87347d5455214c1b31f565aee92ab4db4ffe63fc.tar.gz
googletest-87347d5455214c1b31f565aee92ab4db4ffe63fc.tar.bz2
Diffstat (limited to 'googletest/include/gtest/internal/gtest-param-util.h')
-rw-r--r--googletest/include/gtest/internal/gtest-param-util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/googletest/include/gtest/internal/gtest-param-util.h b/googletest/include/gtest/internal/gtest-param-util.h
index 138d372..05696a5 100644
--- a/googletest/include/gtest/internal/gtest-param-util.h
+++ b/googletest/include/gtest/internal/gtest-param-util.h
@@ -459,7 +459,7 @@ class ParameterizedTestSuiteInfoBase {
// Base part of test suite name for display purposes.
virtual const std::string& GetTestSuiteName() const = 0;
- // Test case id to verify identity.
+ // Test suite id to verify identity.
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.
@@ -507,11 +507,11 @@ class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase {
CodeLocation code_location)
: test_suite_name_(name), code_location_(code_location) {}
- // Test case base name for display purposes.
+ // Test suite base name for display purposes.
const std::string& GetTestSuiteName() const override {
return test_suite_name_;
}
- // Test case id to verify identity.
+ // Test suite id to verify identity.
TypeId GetTestSuiteTypeId() const override { return GetTypeId<TestSuite>(); }
// TEST_P macro uses AddTestPattern() to record information
// about a single test in a LocalTestInfo structure.