Start runs the command in a goroutine and cleans it up when the test completed.
(t *testing.T, inv *serpent.Invocation)
| 170 | // Start runs the command in a goroutine and cleans it up when the test |
| 171 | // completed. |
| 172 | func Start(t *testing.T, inv *serpent.Invocation) { |
| 173 | StartWithAssert(t, inv, nil) |
| 174 | } |
| 175 | |
| 176 | // StartWithAssert starts the given invocation and calls assertCallback |
| 177 | // with the resulting error when the invocation completes. If assertCallback |