aboutsummaryrefslogtreecommitdiff
path: root/googletest/include/gtest/gtest-typed-test.h
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-01-26 13:24:04 -0800
committerDino Radaković <dinor@google.com>2021-02-05 10:39:30 -0800
commitd1143988003cad7be2f22cd2d9cc73ed2f256da4 (patch)
treee447bd236240278ce1b364bf35a6a8c69fb7e07b /googletest/include/gtest/gtest-typed-test.h
parent273f8cb059a4e7b089731036392422b5ef489791 (diff)
downloadgoogletest-d1143988003cad7be2f22cd2d9cc73ed2f256da4.tar.gz
Googletest export
Remove uses of GTEST_HAS_TYPED_TEST_P and GTEST_HAS_TYPED_TEST. PiperOrigin-RevId: 353935996
Diffstat (limited to 'googletest/include/gtest/gtest-typed-test.h')
-rw-r--r--googletest/include/gtest/gtest-typed-test.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/googletest/include/gtest/gtest-typed-test.h b/googletest/include/gtest/gtest-typed-test.h
index 3ffa50b7..49fa4e32 100644
--- a/googletest/include/gtest/gtest-typed-test.h
+++ b/googletest/include/gtest/gtest-typed-test.h
@@ -175,8 +175,6 @@ INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes);
// Implements typed tests.
-#if GTEST_HAS_TYPED_TEST
-
// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
//
// Expands to the name of the typedef for the type parameters of the
@@ -230,12 +228,8 @@ INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes);
TYPED_TEST_SUITE
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
-#endif // GTEST_HAS_TYPED_TEST
-
// Implements type-parameterized tests.
-#if GTEST_HAS_TYPED_TEST_P
-
// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
//
// Expands to the namespace name that the type-parameterized tests for
@@ -332,6 +326,4 @@ INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes);
INSTANTIATE_TYPED_TEST_SUITE_P
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
-#endif // GTEST_HAS_TYPED_TEST_P
-
#endif // GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_