(t *testing.T, files string, f TestFunc)
| 50 | var runner *Runner |
| 51 | |
| 52 | func Run(t *testing.T, files string, f TestFunc) { |
| 53 | runner.Run(t, files, f) |
| 54 | } |
| 55 | |
| 56 | func WithOptions(opts ...RunOption) configuredRunner { |
| 57 | return configuredRunner{opts: opts} |