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
Detect when C++ parametric tests (TEST_P) are not instantiated.
When an un-instantiated TEST_P is found, a new test will be inserted that will emit a warning message.
This can be made to error with minor code edits.
In the future, that is intended to be the default.
PiperOrigin-RevId: 284901666
Copy file name to clipboardexpand all lines: googletest/test/googletest-output-test-golden-lin.txt
+9-3
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 84 tests from 39 test suites.
15
+
[0;32m[==========] [mRunning 85 tests from 40 test suites.
16
16
[0;32m[----------] [mGlobal test environment set-up.
17
17
FooEnvironment::SetUp() called.
18
18
BarEnvironment::SetUp() called.
@@ -979,6 +979,12 @@ Expected failure
979
979
Stack trace: (omitted)
980
980
981
981
[0;31m[ FAILED ] [mPrintingStrings/ParamTest.Failure/a, where GetParam() = "a"
982
+
[0;32m[----------] [m1 test from GoogleTestVerification
983
+
[0;32m[ RUN ] [mGoogleTestVerification.UninstantiatedParamaterizedTestSuite<DetectNotInstantiatedTest>
984
+
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.
985
+
986
+
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.)
987
+
[0;32m[ OK ] [mGoogleTestVerification.UninstantiatedParamaterizedTestSuite<DetectNotInstantiatedTest>
982
988
[0;32m[----------] [mGlobal test environment tear-down
983
989
BarEnvironment::TearDown() called.
984
990
googletest-output-test_.cc:#: Failure
@@ -992,8 +998,8 @@ Failed
992
998
Expected fatal failure.
993
999
Stack trace: (omitted)
994
1000
995
-
[0;32m[==========] [m84 tests from 39 test suites ran.
996
-
[0;32m[ PASSED ] [m30 tests.
1001
+
[0;32m[==========] [m85 tests from 40 test suites ran.
0 commit comments