googletest-param-test-test.h (googletest-release-1.11.0) | : | googletest-param-test-test.h (googletest-release-1.12.0) | ||
---|---|---|---|---|
skipping to change at line 42 | skipping to change at line 42 | |||
// This header file provides classes and functions used internally | // This header file provides classes and functions used internally | |||
// for testing Google Test itself. | // for testing Google Test itself. | |||
#ifndef GOOGLETEST_TEST_GOOGLETEST_PARAM_TEST_TEST_H_ | #ifndef GOOGLETEST_TEST_GOOGLETEST_PARAM_TEST_TEST_H_ | |||
#define GOOGLETEST_TEST_GOOGLETEST_PARAM_TEST_TEST_H_ | #define GOOGLETEST_TEST_GOOGLETEST_PARAM_TEST_TEST_H_ | |||
#include "gtest/gtest.h" | #include "gtest/gtest.h" | |||
// Test fixture for testing definition and instantiation of a test | // Test fixture for testing definition and instantiation of a test | |||
// in separate translation units. | // in separate translation units. | |||
class ExternalInstantiationTest : public ::testing::TestWithParam<int> { | class ExternalInstantiationTest : public ::testing::TestWithParam<int> {}; | |||
}; | ||||
// Test fixture for testing instantiation of a test in multiple | // Test fixture for testing instantiation of a test in multiple | |||
// translation units. | // translation units. | |||
class InstantiationInMultipleTranslationUnitsTest | class InstantiationInMultipleTranslationUnitsTest | |||
: public ::testing::TestWithParam<int> { | : public ::testing::TestWithParam<int> {}; | |||
}; | ||||
#endif // GOOGLETEST_TEST_GOOGLETEST_PARAM_TEST_TEST_H_ | #endif // GOOGLETEST_TEST_GOOGLETEST_PARAM_TEST_TEST_H_ | |||
End of changes. 2 change blocks. | ||||
4 lines changed or deleted | 2 lines changed or added |