(t *testing.T)
| 490 | } |
| 491 | |
| 492 | func TestConcurrency(t *testing.T) { |
| 493 | t.Parallel() |
| 494 | NewExecutorTest(t, |
| 495 | WithExecutorOptions( |
| 496 | task.WithDir("testdata/concurrency"), |
| 497 | task.WithConcurrency(1), |
| 498 | ), |
| 499 | WithPostProcessFn(PPSortedLines), |
| 500 | ) |
| 501 | } |
| 502 | |
| 503 | func TestParams(t *testing.T) { |
| 504 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…