github.com/chenfeining/golangci-lint@v1.0.2-0.20230730162517-14c6c67868df/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  }