aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/samples
diff options
context:
space:
mode:
authormisterg <misterg@google.com>2019-02-04 11:40:09 -0500
committerGennadiy Civil <misterg@google.com>2019-02-04 14:19:50 -0500
commit52ea4f7beaa6e05a52ded6b04a73b7eadbc09996 (patch)
tree46b2dd53f81bb14c60509ed23bcd73a16b3a54a8 /googletest/samples
parent876bdfa565b7260394baecdb4a132a738b9ec508 (diff)
downloadgoogletest-52ea4f7beaa6e05a52ded6b04a73b7eadbc09996.tar.gz
googletest-52ea4f7beaa6e05a52ded6b04a73b7eadbc09996.tar.bz2
googletest-52ea4f7beaa6e05a52ded6b04a73b7eadbc09996.zip
Googletest export
Mark legacy _TEST_CASE_ macros as deprecated PiperOrigin-RevId: 232303251
Diffstat (limited to 'googletest/samples')
-rw-r--r--googletest/samples/sample6_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/samples/sample6_unittest.cc b/googletest/samples/sample6_unittest.cc
index 9a9d917f..0266e27e 100644
--- a/googletest/samples/sample6_unittest.cc
+++ b/googletest/samples/sample6_unittest.cc
@@ -84,7 +84,7 @@ using testing::Types;
// To write a typed test case, first use
//
-// TYPED_TEST_CASE(TestCaseName, TypeList);
+// TYPED_TEST_SUITE(TestCaseName, TypeList);
//
// to declare it and specify the type parameters. As with TEST_F,
// TestCaseName must match the test fixture name.
@@ -131,7 +131,7 @@ TYPED_TEST(PrimeTableTest, CanGetNextPrime) {
}
// That's it! Google Test will repeat each TYPED_TEST for each type
-// in the type list specified in TYPED_TEST_CASE. Sit back and be
+// in the type list specified in TYPED_TEST_SUITE. Sit back and be
// happy that you don't have to define them multiple times.
#endif // GTEST_HAS_TYPED_TEST