summaryrefslogtreecommitdiffstats
path: root/googletest/test/googletest-test2_test.cc
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-08-07 15:49:47 (GMT)
committerGennadiy Civil <misterg@google.com>2018-08-07 15:49:47 (GMT)
commitb345bf9090961139971775105fa120cc87d63e44 (patch)
tree2156f28dcd7ae71c5327f977e1aaf3b1fd832d20 /googletest/test/googletest-test2_test.cc
parentdd06b16e76b8f520dc506f8c273fb47b4cf4bedd (diff)
downloadgoogletest-b345bf9090961139971775105fa120cc87d63e44.zip
googletest-b345bf9090961139971775105fa120cc87d63e44.tar.gz
googletest-b345bf9090961139971775105fa120cc87d63e44.tar.bz2
Formatting changes,small cleanup, no functionality changesrefs/pull/1705/head
Diffstat (limited to 'googletest/test/googletest-test2_test.cc')
-rw-r--r--googletest/test/googletest-test2_test.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/googletest/test/googletest-test2_test.cc b/googletest/test/googletest-test2_test.cc
index e50c259..0a758c7 100644
--- a/googletest/test/googletest-test2_test.cc
+++ b/googletest/test/googletest-test2_test.cc
@@ -44,17 +44,18 @@ using ::testing::internal::ParamGenerator;
ParamGenerator<int> extern_gen_2 = Values(33);
// Tests that a parameterized test case can be defined in one translation unit
-// 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.
+// 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));
// 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 gtest-param-test_test.h
+// in googletest-param-test-test.cc and
+// InstantiationInMultipleTranslaionUnitsTest fixture is defined in
+// gtest-param-test_test.h
INSTANTIATE_TEST_CASE_P(Sequence2,
InstantiationInMultipleTranslaionUnitsTest,
Values(42*3, 42*4, 42*5));