github.com/v2fly/tools@v0.100.0/internal/lsp/testdata/godef/a/a_test.go.golden (about) 1 -- TestA-definition -- 2 godef/a/a_test.go:7:6-11: defined here as ```go 3 func TestA(t *testing.T) 4 ``` 5 -- TestA-definition-json -- 6 { 7 "span": { 8 "uri": "file://godef/a/a_test.go", 9 "start": { 10 "line": 7, 11 "column": 6, 12 "offset": 39 13 }, 14 "end": { 15 "line": 7, 16 "column": 11, 17 "offset": 44 18 } 19 }, 20 "description": "```go\nfunc TestA(t *testing.T)\n```" 21 } 22 23 -- TestA-hover -- 24 ```go 25 func TestA(t *testing.T) 26 ```