googletest-param-test2-test.cc (googletest-release-1.11.0) | : | googletest-param-test2-test.cc (googletest-release-1.12.0) | ||
---|---|---|---|---|
skipping to change at line 49 | skipping to change at line 49 | |||
// Tests that generators defined in a different translation unit | // Tests that generators defined in a different translation unit | |||
// are functional. The test using extern_gen is defined | // are functional. The test using extern_gen is defined | |||
// in googletest-param-test-test.cc. | // in googletest-param-test-test.cc. | |||
ParamGenerator<int> extern_gen = Values(33); | ParamGenerator<int> extern_gen = Values(33); | |||
// Tests that a parameterized test case can be defined in one translation unit | // Tests that a parameterized test case can be defined in one translation unit | |||
// and instantiated in another. The test is defined in | // and instantiated in another. The test is defined in | |||
// googletest-param-test-test.cc and ExternalInstantiationTest fixture class is | // googletest-param-test-test.cc and ExternalInstantiationTest fixture class is | |||
// defined in gtest-param-test_test.h. | // defined in gtest-param-test_test.h. | |||
INSTANTIATE_TEST_SUITE_P(MultiplesOf33, | INSTANTIATE_TEST_SUITE_P(MultiplesOf33, ExternalInstantiationTest, | |||
ExternalInstantiationTest, | ||||
Values(33, 66)); | Values(33, 66)); | |||
// Tests that a parameterized test case can be instantiated | // Tests that a parameterized test case can be instantiated | |||
// in multiple translation units. Another instantiation is defined | // in multiple translation units. Another instantiation is defined | |||
// in googletest-param-test-test.cc and | // in googletest-param-test-test.cc and | |||
// InstantiationInMultipleTranslationUnitsTest fixture is defined in | // InstantiationInMultipleTranslationUnitsTest fixture is defined in | |||
// gtest-param-test_test.h | // gtest-param-test_test.h | |||
INSTANTIATE_TEST_SUITE_P(Sequence2, | INSTANTIATE_TEST_SUITE_P(Sequence2, InstantiationInMultipleTranslationUnitsTest, | |||
InstantiationInMultipleTranslationUnitsTest, | Values(42 * 3, 42 * 4, 42 * 5)); | |||
Values(42*3, 42*4, 42*5)); | ||||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 1 lines changed or added |