github.com/be-b10g/golangci-lint@v1.17.2/test/testdata/used_only_in_tests/a_test.go (about)

     1  package p
     2  
     3  import "testing"
     4  
     5  func TestF(t *testing.T) {
     6  	if !f() {
     7  		t.Fail()
     8  	}
     9  }