(nameOfDoneStep string)
| 34 | } |
| 35 | |
| 36 | func (s *InvocationSummary) AddTiming(nameOfDoneStep string) { |
| 37 | s.timings = append(s.timings, invocationTimingItem{nameOfDoneStep, time.Now()}) |
| 38 | } |
| 39 | |
| 40 | // ToLogString outputs InvocationSummary in a human-readable and easily parseable string |
| 41 | // that is appended to a specified log file. |
no outgoing calls
no test coverage detected