github.com/v2fly/tools@v0.100.0/internal/lsp/testdata/godef/a/a_x_test.go.golden (about)

     1  -- TestA2-definition --
     2  godef/a/a_x_test.go:7:6-12: defined here as ```go
     3  func TestA2(t *testing.T)
     4  ```
     5  -- TestA2-definition-json --
     6  {
     7  	"span": {
     8  		"uri": "file://godef/a/a_x_test.go",
     9  		"start": {
    10  			"line": 7,
    11  			"column": 6,
    12  			"offset": 44
    13  		},
    14  		"end": {
    15  			"line": 7,
    16  			"column": 12,
    17  			"offset": 50
    18  		}
    19  	},
    20  	"description": "```go\nfunc TestA2(t *testing.T)\n```"
    21  }
    22  
    23  -- TestA2-hover --
    24  ```go
    25  func TestA2(t *testing.T)
    26  ```