| 10280 | // or "pattern", whichever you prefer to think. |
| 10281 | |
| 10282 | TEST_P(FooTest, DoesBlah) { |
| 10283 | // Inside a test, access the test parameter with the GetParam() method |
| 10284 | // of the TestWithParam<T> class: |
| 10285 | EXPECT_TRUE(foo.Blah(GetParam())); |
| 10286 | ... |
| 10287 | } |
| 10288 | |
| 10289 | TEST_P(FooTest, HasBlahBlah) { |
| 10290 | ... |
nothing calls this directly
no outgoing calls
no test coverage detected