summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2020-05-27 18:32:24 (GMT)
committerDerek Mauro <dmauro@google.com>2020-05-28 23:55:14 (GMT)
commit85a4631946939f86bf5014f8226c1ec5da79585f (patch)
tree8ac7331ba68ed4fea3fac4604c9cd2af6d12a398 /googletest
parent07beabd6141217abb4919971dc880a797cffe1bc (diff)
downloadgoogletest-85a4631946939f86bf5014f8226c1ec5da79585f.zip
googletest-85a4631946939f86bf5014f8226c1ec5da79585f.tar.gz
googletest-85a4631946939f86bf5014f8226c1ec5da79585f.tar.bz2
Googletest export
Change 'suite' to 'case' in comments. PiperOrigin-RevId: 313429487
Diffstat (limited to 'googletest')
-rw-r--r--googletest/include/gtest/gtest.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/googletest/include/gtest/gtest.h b/googletest/include/gtest/gtest.h
index f53c584..a0942b4 100644
--- a/googletest/include/gtest/gtest.h
+++ b/googletest/include/gtest/gtest.h
@@ -418,10 +418,10 @@ class GTEST_API_ Test {
// The d'tor is virtual as we intend to inherit from Test.
virtual ~Test();
- // Sets up the stuff shared by all tests in this test case.
+ // Sets up the stuff shared by all tests in this test suite.
//
// Google Test will call Foo::SetUpTestSuite() before running the first
- // test in test case Foo. Hence a sub-class can define its own
+ // test in test suite Foo. Hence a sub-class can define its own
// SetUpTestSuite() method to shadow the one defined in the super
// class.
static void SetUpTestSuite() {}
@@ -429,7 +429,7 @@ class GTEST_API_ Test {
// Tears down the stuff shared by all tests in this test suite.
//
// Google Test will call Foo::TearDownTestSuite() after running the last
- // test in test case Foo. Hence a sub-class can define its own
+ // test in test suite Foo. Hence a sub-class can define its own
// TearDownTestSuite() method to shadow the one defined in the super
// class.
static void TearDownTestSuite() {}