Add adds a new function to the runner.
(f func() error)
| 86 | |
| 87 | // Add adds a new function to the runner. |
| 88 | func (a *ActiveCommandChain) Add(f func() error) { |
| 89 | a.funcs = append(a.funcs, cFunc{f: f}) |
| 90 | } |
| 91 | |
| 92 | // Stage sets the current stage of the runner. |
| 93 | func (a *ActiveCommandChain) Stage(s string) { |
no outgoing calls
no test coverage detected