You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add option (default to disabled) to make C++ type parameterized tests (TYPED_TEST_P) fail when they're not instantiated.
When an un-instantiated TYPED_TEST_P is found, a new test will be inserted that emits a suitable message. For now, that is just a notice, but the hope it to flip the bit to make it fail by default.
PiperOrigin-RevId: 286408038
Copy file name to clipboardexpand all lines: googletest/test/googletest-output-test-golden-lin.txt
+9-4
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Expected equality of these values:
12
12
3
13
13
Stack trace: (omitted)
14
14
15
-
[0;32m[==========] [mRunning 86 tests from 41 test suites.
15
+
[0;32m[==========] [mRunning 87 tests from 41 test suites.
16
16
[0;32m[----------] [mGlobal test environment set-up.
17
17
FooEnvironment::SetUp() called.
18
18
BarEnvironment::SetUp() called.
@@ -982,12 +982,17 @@ Expected failure
982
982
Stack trace: (omitted)
983
983
984
984
[0;31m[ FAILED ] [mPrintingStrings/ParamTest.Failure/a, where GetParam() = "a"
985
-
[0;32m[----------] [m1 test from GoogleTestVerification
985
+
[0;32m[----------] [m2 tests from GoogleTestVerification
986
986
[0;32m[ RUN ] [mGoogleTestVerification.UninstantiatedParamaterizedTestSuite<DetectNotInstantiatedTest>
987
987
Paramaterized test suite DetectNotInstantiatedTest is defined via TEST_P, but never instantiated. None of the test cases will run. Either no INSTANTIATE_TEST_SUITE_P is provided or the only ones provided expand to nothing.
988
988
989
989
Ideally, TEST_P definitions should only ever be included as part of binaries that intend to use them. (As opposed to, for example, being placed in a library that may be linked in to get other utilities.)
990
990
[0;32m[ OK ] [mGoogleTestVerification.UninstantiatedParamaterizedTestSuite<DetectNotInstantiatedTest>
991
+
[0;32m[ RUN ] [mGoogleTestVerification.UninstantiatedTypeParamaterizedTestSuite<DetectNotInstantiatedTypesTest>
992
+
Type paramaterized test suite DetectNotInstantiatedTypesTest is defined via REGISTER_TYPED_TEST_SUITE_P, but never instantiated via INSTANTIATE_TYPED_TEST_SUITE_P. None of the test cases will run.
993
+
994
+
Ideally, TYPED_TEST_P definitions should only ever be included as part of binaries that intend to use them. (As opposed to, for example, being placed in a library that may be linked in to get other utilities.)
995
+
[0;32m[ OK ] [mGoogleTestVerification.UninstantiatedTypeParamaterizedTestSuite<DetectNotInstantiatedTypesTest>
991
996
[0;32m[----------] [mGlobal test environment tear-down
992
997
BarEnvironment::TearDown() called.
993
998
googletest-output-test_.cc:#: Failure
@@ -1001,8 +1006,8 @@ Failed
1001
1006
Expected fatal failure.
1002
1007
Stack trace: (omitted)
1003
1008
1004
-
[0;32m[==========] [m86 tests from 41 test suites ran.
1005
-
[0;32m[ PASSED ] [m32 tests.
1009
+
[0;32m[==========] [m87 tests from 41 test suites ran.
0 commit comments