@@ -11,60 +11,152 @@ import (
11
11
"testing"
12
12
)
13
13
14
- func TestPosition (t * testing.T ) { testPosition (t , json .Marshal , json .Unmarshal ) }
14
+ func TestPosition (t * testing.T ) {
15
+ t .Parallel ()
15
16
16
- func TestRange (t * testing.T ) { testRange (t , json .Marshal , json .Unmarshal ) }
17
+ testPosition (t , json .Marshal , json .Unmarshal )
18
+ }
19
+
20
+ func TestRange (t * testing.T ) {
21
+ t .Parallel ()
22
+
23
+ testRange (t , json .Marshal , json .Unmarshal )
24
+ }
25
+
26
+ func TestLocation (t * testing.T ) {
27
+ t .Parallel ()
28
+
29
+ testLocation (t , json .Marshal , json .Unmarshal )
30
+ }
31
+
32
+ func TestLocationLink (t * testing.T ) {
33
+ t .Parallel ()
34
+
35
+ testLocationLink (t , json .Marshal , json .Unmarshal )
36
+ }
37
+
38
+ func TestCodeDescription (t * testing.T ) {
39
+ t .Parallel ()
40
+
41
+ testCodeDescription (t , json .Marshal , json .Unmarshal )
42
+ }
43
+
44
+ func TestCommand (t * testing.T ) {
45
+ t .Parallel ()
46
+
47
+ testCommand (t , json .Marshal , json .Unmarshal )
48
+ }
49
+
50
+ func TestChangeAnnotation (t * testing.T ) {
51
+ t .Parallel ()
52
+
53
+ testChangeAnnotation (t , json .Marshal , json .Unmarshal )
54
+ }
55
+
56
+ func TestAnnotatedTextEdit (t * testing.T ) {
57
+ t .Parallel ()
58
+
59
+ testAnnotatedTextEdit (t , json .Marshal , json .Unmarshal )
60
+ }
61
+
62
+ func TestTextEdit (t * testing.T ) {
63
+ t .Parallel ()
17
64
18
- func TestLocation (t * testing.T ) { testLocation (t , json .Marshal , json .Unmarshal ) }
65
+ testTextEdit (t , json .Marshal , json .Unmarshal )
66
+ }
67
+
68
+ func TestTextDocumentEdit (t * testing.T ) {
69
+ t .Parallel ()
70
+
71
+ testTextDocumentEdit (t , json .Marshal , json .Unmarshal )
72
+ }
19
73
20
- func TestLocationLink (t * testing.T ) { testLocationLink (t , json .Marshal , json .Unmarshal ) }
74
+ func TestCreateFileOptions (t * testing.T ) {
75
+ t .Parallel ()
21
76
22
- func TestCodeDescription (t * testing.T ) { testCodeDescription (t , json .Marshal , json .Unmarshal ) }
77
+ testCreateFileOptions (t , json .Marshal , json .Unmarshal )
78
+ }
23
79
24
- func TestCommand (t * testing.T ) { testCommand (t , json .Marshal , json .Unmarshal ) }
80
+ func TestCreateFile (t * testing.T ) {
81
+ t .Parallel ()
25
82
26
- func TestChangeAnnotation (t * testing.T ) { testChangeAnnotation (t , json .Marshal , json .Unmarshal ) }
83
+ testCreateFile (t , json .Marshal , json .Unmarshal )
84
+ }
27
85
28
- func TestAnnotatedTextEdit (t * testing.T ) { testAnnotatedTextEdit (t , json .Marshal , json .Unmarshal ) }
86
+ func TestRenameFileOptions (t * testing.T ) {
87
+ t .Parallel ()
29
88
30
- func TestTextEdit (t * testing.T ) { testTextEdit (t , json .Marshal , json .Unmarshal ) }
89
+ testRenameFileOptions (t , json .Marshal , json .Unmarshal )
90
+ }
31
91
32
- func TestTextDocumentEdit (t * testing.T ) { testTextDocumentEdit (t , json .Marshal , json .Unmarshal ) }
92
+ func TestRenameFile (t * testing.T ) {
93
+ t .Parallel ()
33
94
34
- func TestCreateFileOptions (t * testing.T ) { testCreateFileOptions (t , json .Marshal , json .Unmarshal ) }
95
+ testRenameFile (t , json .Marshal , json .Unmarshal )
96
+ }
35
97
36
- func TestCreateFile (t * testing.T ) { testCreateFile (t , json .Marshal , json .Unmarshal ) }
98
+ func TestDeleteFileOptions (t * testing.T ) {
99
+ t .Parallel ()
37
100
38
- func TestRenameFileOptions (t * testing.T ) { testRenameFileOptions (t , json .Marshal , json .Unmarshal ) }
101
+ testDeleteFileOptions (t , json .Marshal , json .Unmarshal )
102
+ }
39
103
40
- func TestRenameFile (t * testing.T ) { testRenameFile (t , json .Marshal , json .Unmarshal ) }
104
+ func TestDeleteFile (t * testing.T ) {
105
+ t .Parallel ()
41
106
42
- func TestDeleteFileOptions (t * testing.T ) { testDeleteFileOptions (t , json .Marshal , json .Unmarshal ) }
107
+ testDeleteFile (t , json .Marshal , json .Unmarshal )
108
+ }
43
109
44
- func TestDeleteFile (t * testing.T ) { testDeleteFile (t , json .Marshal , json .Unmarshal ) }
110
+ func TestWorkspaceEdit (t * testing.T ) {
111
+ t .Parallel ()
45
112
46
- func TestWorkspaceEdit (t * testing.T ) { testWorkspaceEdit (t , json .Marshal , json .Unmarshal ) }
113
+ testWorkspaceEdit (t , json .Marshal , json .Unmarshal )
114
+ }
47
115
48
116
func TestTextDocumentIdentifier (t * testing.T ) {
117
+ t .Parallel ()
118
+
49
119
testTextDocumentIdentifier (t , json .Marshal , json .Unmarshal )
50
120
}
51
121
52
- func TestTextDocumentItem (t * testing.T ) { testTextDocumentItem (t , json .Marshal , json .Unmarshal ) }
122
+ func TestTextDocumentItem (t * testing.T ) {
123
+ t .Parallel ()
124
+
125
+ testTextDocumentItem (t , json .Marshal , json .Unmarshal )
126
+ }
53
127
54
128
func TestVersionedTextDocumentIdentifier (t * testing.T ) {
129
+ t .Parallel ()
130
+
55
131
testVersionedTextDocumentIdentifier (t , json .Marshal , json .Unmarshal )
56
132
}
57
133
58
134
func TestOptionalVersionedTextDocumentIdentifier (t * testing.T ) {
135
+ t .Parallel ()
136
+
59
137
testOptionalVersionedTextDocumentIdentifier (t , json .Marshal , json .Unmarshal )
60
138
}
61
139
62
140
func TestTextDocumentPositionParams (t * testing.T ) {
141
+ t .Parallel ()
142
+
63
143
testTextDocumentPositionParams (t , json .Marshal , json .Unmarshal )
64
144
}
65
145
66
- func TestDocumentFilter (t * testing.T ) { testDocumentFilter (t , json .Marshal , json .Unmarshal ) }
146
+ func TestDocumentFilter (t * testing.T ) {
147
+ t .Parallel ()
67
148
68
- func TestDocumentSelector (t * testing.T ) { testDocumentSelector (t , json .Marshal , json .Unmarshal ) }
149
+ testDocumentFilter (t , json .Marshal , json .Unmarshal )
150
+ }
69
151
70
- func TestMarkupContent (t * testing.T ) { testMarkupContent (t , json .Marshal , json .Unmarshal ) }
152
+ func TestDocumentSelector (t * testing.T ) {
153
+ t .Parallel ()
154
+
155
+ testDocumentSelector (t , json .Marshal , json .Unmarshal )
156
+ }
157
+
158
+ func TestMarkupContent (t * testing.T ) {
159
+ t .Parallel ()
160
+
161
+ testMarkupContent (t , json .Marshal , json .Unmarshal )
162
+ }
0 commit comments