| 6 | namespace ApprovalTests |
| 7 | { |
| 8 | StringWriter::StringWriter(std::string contents, std::string fileExtensionWithDot) |
| 9 | : s(std::move(contents)), ext(std::move(fileExtensionWithDot)) |
| 10 | { |
| 11 | } |
| 12 | |
| 13 | std::string StringWriter::getFileExtensionWithDot() const |
| 14 | { |
nothing calls this directly
no outgoing calls
no test coverage detected