(n int, cbs ...func(int))
| 264 | } |
| 265 | |
| 266 | func perform(n int, cbs ...func(int)) { |
| 267 | wg := performAsync(n, cbs...) |
| 268 | wg.Wait() |
| 269 | } |
| 270 | |
| 271 | func eventually(fn func() error, timeout time.Duration) error { |
| 272 | errCh := make(chan error, 1) |
no test coverage detected