| 22 | std::string findPath(const std::string& filename) override { return filename; } |
| 23 | |
| 24 | void setFileContents(const std::string& filename, const std::string& contents) { |
| 25 | m_fileContents[filename] = contents; |
| 26 | } |
| 27 | |
| 28 | int getCallbackCounter() const { return m_callbackCounter; } |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected