cleanComponents cleans up each component part of the test engine.
()
| 180 | |
| 181 | // cleanComponents cleans up each component part of the test engine. |
| 182 | func (e *Engine) cleanComponents() { |
| 183 | for _, f := range e.cleanupRoutines { |
| 184 | if f != nil { |
| 185 | f() |
| 186 | } |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | // Init initializes the Engine and performs a consistency check. |
| 191 | func (e *Engine) Init(ctx context.Context) error { |
no outgoing calls