| 14883 | public: |
| 14884 | explicit FactoryImpl(Factory f) : factory_(std::move(f)) {} |
| 14885 | Test* CreateTest() override { return factory_(); } |
| 14886 | |
| 14887 | private: |
| 14888 | Factory factory_; |
nothing calls this directly
no outgoing calls
no test coverage detected