| 10374 | // separately from Test and WithParamInterface. For example: |
| 10375 | |
| 10376 | class BaseTest : public ::testing::Test { |
| 10377 | // You can inherit all the usual members for a non-parameterized test |
| 10378 | // fixture here. |
| 10379 | }; |
| 10380 | |
| 10381 | class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> { |
| 10382 | // The usual test fixture members go here too. |
nothing calls this directly
no outgoing calls
no test coverage detected