123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #ifndef GTEST_TEST_GTEST_PARAM_TEST_TEST_H_
- #define GTEST_TEST_GTEST_PARAM_TEST_TEST_H_
- #include "gtest/gtest.h"
- #if GTEST_HAS_PARAM_TEST
- class ExternalInstantiationTest : public ::testing::TestWithParam<int> {
- }
- class InstantiationInMultipleTranslaionUnitsTest
- : public ::testing::TestWithParam<int> {
- }
- #endif
- #endif
|