WithExecutorOptions sets the [task.ExecutorOption]s to be used when creating a [task.Executor].
(executorOpts ...task.ExecutorOption)
| 183 | // WithExecutorOptions sets the [task.ExecutorOption]s to be used when creating |
| 184 | // a [task.Executor]. |
| 185 | func WithExecutorOptions(executorOpts ...task.ExecutorOption) TestOption { |
| 186 | return &executorOptionsTestOption{executorOpts: executorOpts} |
| 187 | } |
| 188 | |
| 189 | type executorOptionsTestOption struct { |
| 190 | executorOpts []task.ExecutorOption |
no outgoing calls
no test coverage detected
searching dependent graphs…