exited creates a new exited event; kept as a named func for use as a function value.
(id string)
| 99 | |
| 100 | // exited creates a new exited event; kept as a named func for use as a function value. |
| 101 | func exited(id string) api.Resource { |
| 102 | return newEvent(id, api.Done, api.StatusExited) |
| 103 | } |
| 104 | |
| 105 | // skippedEvent creates a new Skipped Resource; kept as a named func for use as a function value. |
| 106 | func skippedEvent(id string, reason string) api.Resource { |
nothing calls this directly
no test coverage detected