| 23 | class PathProviderWrapper final : public PathProvider { |
| 24 | public: |
| 25 | explicit PathProviderWrapper(Path path) : _path(std::move(path)) { |
| 26 | } |
| 27 | |
| 28 | Path getPath() const override { |
| 29 | return _path; |
nothing calls this directly
no outgoing calls
no test coverage detected