(s string)
| 46 | // stringWriter is the interface that wraps the WriteString method. |
| 47 | type stringWriter interface { |
| 48 | WriteString(s string) (int, error) |
| 49 | } |
| 50 | |
| 51 | // HumanReport is a reporter with human readable output in mind |
no outgoing calls
no test coverage detected