(a ...interface{})
| 119 | } |
| 120 | |
| 121 | func (w *OutputWriter) fprintf(a ...interface{}) { |
| 122 | if _, err := fmt.Fprintln(w.out, a...); err != nil { |
| 123 | log.Fatal(err) |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | // convert runtime.TestResult to output.TestResult |
| 128 | func convertTestResult(tr runtime.TestResult) TestResult { |
no outgoing calls
no test coverage detected