1-- TestA-definition --
2godef/a/a_test.go:7:6-11: defined here as ```go
3func 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
25func TestA(t *testing.T)
26```
27