diff options
| author | Enji Cooper <ngie@FreeBSD.org> | 2020-04-09 01:55:35 +0000 |
|---|---|---|
| committer | Enji Cooper <ngie@FreeBSD.org> | 2020-04-09 01:55:35 +0000 |
| commit | cd024ff37bc5950173e4c7f34f7259d85825e810 (patch) | |
| tree | 24e26b52391d78c7c7b65168aca8f803fde926b1 /googletest/test/googletest-test2_test.cc | |
| parent | 83481c8c5c0cd0b3fc86f39b2985efd4e300200a (diff) | |
Notes
Diffstat (limited to 'googletest/test/googletest-test2_test.cc')
| -rw-r--r-- | googletest/test/googletest-test2_test.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/googletest/test/googletest-test2_test.cc b/googletest/test/googletest-test2_test.cc index c2f98dc7d1c3..2e425daebab6 100644 --- a/googletest/test/googletest-test2_test.cc +++ b/googletest/test/googletest-test2_test.cc @@ -46,16 +46,16 @@ ParamGenerator<int> extern_gen_2 = Values(33); // and instantiated in another. The test is defined in // googletest-param-test-test.cc and ExternalInstantiationTest fixture class is // defined in gtest-param-test_test.h. -INSTANTIATE_TEST_CASE_P(MultiplesOf33, - ExternalInstantiationTest, - Values(33, 66)); +INSTANTIATE_TEST_SUITE_P(MultiplesOf33, + ExternalInstantiationTest, + Values(33, 66)); // Tests that a parameterized test case can be instantiated // in multiple translation units. Another instantiation is defined // in googletest-param-test-test.cc and -// InstantiationInMultipleTranslaionUnitsTest fixture is defined in +// InstantiationInMultipleTranslationUnitsTest fixture is defined in // gtest-param-test_test.h -INSTANTIATE_TEST_CASE_P(Sequence2, - InstantiationInMultipleTranslaionUnitsTest, - Values(42*3, 42*4, 42*5)); +INSTANTIATE_TEST_SUITE_P(Sequence2, + InstantiationInMultipleTranslationUnitsTest, + Values(42*3, 42*4, 42*5)); |
