mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-13 13:14:16 -04:00
12 lines
247 B
Go
12 lines
247 B
Go
//golangcitest:args -Etparallel
|
|
package testdata
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestTopLevel(t *testing.T) { // want "TestTopLevel should call t.Parallel on the top level as well as its subtests"
|
|
t.Run("", func(t *testing.T) {
|
|
t.Parallel()
|
|
})
|
|
}
|