github.com/nozzle/golangci-lint@v1.49.0-nz3/test/testdata/tparallel_missing_subtest_test.go (about) 1 //golangcitest:args -Etparallel 2 package testdata 3 4 import ( 5 "testing" 6 ) 7 8 func TestSubtests(t *testing.T) { // want "TestSubtests's subtests should call t.Parallel" 9 t.Parallel() 10 11 t.Run("", func(t *testing.T) { 12 }) 13 }