TextReport report generator.
| 23 | |
| 24 | // TextReport report generator. |
| 25 | type TextReport struct { |
| 26 | w io.Writer |
| 27 | } |
| 28 | |
| 29 | // NewTextReport returns a TextReport report generator. |
| 30 | func NewTextReport(w io.Writer) *TextReport { |
nothing calls this directly
no outgoing calls
no test coverage detected