github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/test/testdata/tparallel_happy_path_test.go (about) 1 //golangcitest:args -Etparallel 2 //golangcitest:expected_exitcode 0 3 package testdata 4 5 import ( 6 "testing" 7 ) 8 9 func TestValidHappyPath(t *testing.T) { 10 t.Parallel() 11 t.Run("", func(t *testing.T) { 12 t.Parallel() 13 }) 14 } 15 16 func TestValidNoSubTest(t *testing.T) { 17 t.Parallel() 18 }