14 lines
217 B
Go
14 lines
217 B
Go
//golangcitest:args -Etparallel
|
|
package testdata
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSubtests(t *testing.T) { // want "TestSubtests's subtests should call t.Parallel"
|
|
t.Parallel()
|
|
|
|
t.Run("", func(t *testing.T) {
|
|
})
|
|
}
|