| 10789 | explicit ParameterizedTestFactory(ParamType parameter) : |
| 10790 | parameter_(parameter) {} |
| 10791 | Test* CreateTest() override { |
| 10792 | TestClass::SetParam(¶meter_); |
| 10793 | return new TestClass(); |
| 10794 | } |
| 10795 | |
| 10796 | private: |
| 10797 | const ParamType parameter_; |
nothing calls this directly
no outgoing calls
no test coverage detected