| 10353 | public: |
| 10354 | typedef typename TestClass::ParamType ParamType; |
| 10355 | explicit ParameterizedTestFactory(ParamType parameter) : |
| 10356 | parameter_(parameter) {} |
| 10357 | virtual Test* CreateTest() { |
| 10358 | TestClass::SetParam(¶meter_); |
| 10359 | return new TestClass(); |
nothing calls this directly
no outgoing calls
no test coverage detected