Fix location of GOOGLETEST_CM0011 marker

This commit is contained in:
Derek Mauro 2021-07-14 16:02:00 -04:00 committed by GitHub
parent 155de14cd8
commit a42111b49b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2379,10 +2379,10 @@ constexpr bool StaticAssertTypeEq() noexcept {
// EXPECT_EQ(b_.size(), 1);
// }
//
// GOOGLETEST_CM0011 DO NOT DELETE
#define GTEST_TEST_F(test_fixture, test_name)\
GTEST_TEST_(test_fixture, test_name, test_fixture, \
::testing::internal::GetTypeId<test_fixture>())
// GOOGLETEST_CM0011 DO NOT DELETE
#if !GTEST_DONT_DEFINE_TEST_F
#define TEST_F(test_fixture, test_name) GTEST_TEST_F(test_fixture, test_name)
#endif