summaryrefslogtreecommitdiffstats
path: root/googletest/test/googletest-test2_test.cc
diff options
context:
space:
mode:
authormisterg <misterg@google.com>2019-01-11 18:57:36 (GMT)
committerGennadiy Civil <misterg@google.com>2019-01-11 18:59:22 (GMT)
commit0599a7b8410dc5cfdb477900b280475ae775d7f9 (patch)
tree4ec1e2f02276fdee489d60e6420561b801d6aa4f /googletest/test/googletest-test2_test.cc
parent2edadcedf350b175211642704d1ef5f739a31ca9 (diff)
downloadgoogletest-0599a7b8410dc5cfdb477900b280475ae775d7f9.zip
googletest-0599a7b8410dc5cfdb477900b280475ae775d7f9.tar.gz
googletest-0599a7b8410dc5cfdb477900b280475ae775d7f9.tar.bz2
Googletest export
Change tests to use new Test Suite API PiperOrigin-RevId: 228908894
Diffstat (limited to 'googletest/test/googletest-test2_test.cc')
-rw-r--r--googletest/test/googletest-test2_test.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/googletest/test/googletest-test2_test.cc b/googletest/test/googletest-test2_test.cc
index c2f98dc..2e425da 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));