mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-13 14:58:45 -04:00
13 lines
247 B
Go
13 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()
|
||
|
})
|
||
|
}
|