OLD | NEW |
1 library googleapis.genomics.v1.test; | 1 library googleapis.genomics.v1.test; |
2 | 2 |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
5 import "dart:async" as async; | 5 import "dart:async" as async; |
6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
7 | 7 |
8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 } | 44 } |
45 } | 45 } |
46 } | 46 } |
47 | 47 |
48 http.StreamedResponse stringResponse( | 48 http.StreamedResponse stringResponse( |
49 core.int status, core.Map headers, core.String body) { | 49 core.int status, core.Map headers, core.String body) { |
50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); | 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); |
51 return new http.StreamedResponse(stream, status, headers: headers); | 51 return new http.StreamedResponse(stream, status, headers: headers); |
52 } | 52 } |
53 | 53 |
54 buildUnnamed2951() { | 54 buildUnnamed3025() { |
55 var o = new core.List<core.Object>(); | 55 var o = new core.List<core.Object>(); |
56 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 56 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
57 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 57 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
58 return o; | 58 return o; |
59 } | 59 } |
60 | 60 |
61 checkUnnamed2951(core.List<core.Object> o) { | 61 checkUnnamed3025(core.List<core.Object> o) { |
62 unittest.expect(o, unittest.hasLength(2)); | 62 unittest.expect(o, unittest.hasLength(2)); |
63 var casted1 = (o[0]) as core.Map; unittest.expect(casted1, unittest.hasLength(
3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"], u
nittest.equals('foo')); | 63 var casted1 = (o[0]) as core.Map; unittest.expect(casted1, unittest.hasLength(
3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"], u
nittest.equals('foo')); |
64 var casted2 = (o[1]) as core.Map; unittest.expect(casted2, unittest.hasLength(
3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"], u
nittest.equals('foo')); | 64 var casted2 = (o[1]) as core.Map; unittest.expect(casted2, unittest.hasLength(
3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"], u
nittest.equals('foo')); |
65 } | 65 } |
66 | 66 |
67 buildUnnamed2952() { | 67 buildUnnamed3026() { |
68 var o = new core.Map<core.String, core.List<core.Object>>(); | 68 var o = new core.Map<core.String, core.List<core.Object>>(); |
69 o["x"] = buildUnnamed2951(); | 69 o["x"] = buildUnnamed3025(); |
70 o["y"] = buildUnnamed2951(); | 70 o["y"] = buildUnnamed3025(); |
71 return o; | 71 return o; |
72 } | 72 } |
73 | 73 |
74 checkUnnamed2952(core.Map<core.String, core.List<core.Object>> o) { | 74 checkUnnamed3026(core.Map<core.String, core.List<core.Object>> o) { |
75 unittest.expect(o, unittest.hasLength(2)); | 75 unittest.expect(o, unittest.hasLength(2)); |
76 checkUnnamed2951(o["x"]); | 76 checkUnnamed3025(o["x"]); |
77 checkUnnamed2951(o["y"]); | 77 checkUnnamed3025(o["y"]); |
78 } | 78 } |
79 | 79 |
80 core.int buildCounterAnnotation = 0; | 80 core.int buildCounterAnnotation = 0; |
81 buildAnnotation() { | 81 buildAnnotation() { |
82 var o = new api.Annotation(); | 82 var o = new api.Annotation(); |
83 buildCounterAnnotation++; | 83 buildCounterAnnotation++; |
84 if (buildCounterAnnotation < 3) { | 84 if (buildCounterAnnotation < 3) { |
85 o.annotationSetId = "foo"; | 85 o.annotationSetId = "foo"; |
86 o.end = "foo"; | 86 o.end = "foo"; |
87 o.id = "foo"; | 87 o.id = "foo"; |
88 o.info = buildUnnamed2952(); | 88 o.info = buildUnnamed3026(); |
89 o.name = "foo"; | 89 o.name = "foo"; |
90 o.referenceId = "foo"; | 90 o.referenceId = "foo"; |
91 o.referenceName = "foo"; | 91 o.referenceName = "foo"; |
92 o.reverseStrand = true; | 92 o.reverseStrand = true; |
93 o.start = "foo"; | 93 o.start = "foo"; |
94 o.transcript = buildTranscript(); | 94 o.transcript = buildTranscript(); |
95 o.type = "foo"; | 95 o.type = "foo"; |
96 o.variant = buildVariantAnnotation(); | 96 o.variant = buildVariantAnnotation(); |
97 } | 97 } |
98 buildCounterAnnotation--; | 98 buildCounterAnnotation--; |
99 return o; | 99 return o; |
100 } | 100 } |
101 | 101 |
102 checkAnnotation(api.Annotation o) { | 102 checkAnnotation(api.Annotation o) { |
103 buildCounterAnnotation++; | 103 buildCounterAnnotation++; |
104 if (buildCounterAnnotation < 3) { | 104 if (buildCounterAnnotation < 3) { |
105 unittest.expect(o.annotationSetId, unittest.equals('foo')); | 105 unittest.expect(o.annotationSetId, unittest.equals('foo')); |
106 unittest.expect(o.end, unittest.equals('foo')); | 106 unittest.expect(o.end, unittest.equals('foo')); |
107 unittest.expect(o.id, unittest.equals('foo')); | 107 unittest.expect(o.id, unittest.equals('foo')); |
108 checkUnnamed2952(o.info); | 108 checkUnnamed3026(o.info); |
109 unittest.expect(o.name, unittest.equals('foo')); | 109 unittest.expect(o.name, unittest.equals('foo')); |
110 unittest.expect(o.referenceId, unittest.equals('foo')); | 110 unittest.expect(o.referenceId, unittest.equals('foo')); |
111 unittest.expect(o.referenceName, unittest.equals('foo')); | 111 unittest.expect(o.referenceName, unittest.equals('foo')); |
112 unittest.expect(o.reverseStrand, unittest.isTrue); | 112 unittest.expect(o.reverseStrand, unittest.isTrue); |
113 unittest.expect(o.start, unittest.equals('foo')); | 113 unittest.expect(o.start, unittest.equals('foo')); |
114 checkTranscript(o.transcript); | 114 checkTranscript(o.transcript); |
115 unittest.expect(o.type, unittest.equals('foo')); | 115 unittest.expect(o.type, unittest.equals('foo')); |
116 checkVariantAnnotation(o.variant); | 116 checkVariantAnnotation(o.variant); |
117 } | 117 } |
118 buildCounterAnnotation--; | 118 buildCounterAnnotation--; |
119 } | 119 } |
120 | 120 |
121 buildUnnamed2953() { | 121 buildUnnamed3027() { |
122 var o = new core.List<core.Object>(); | 122 var o = new core.List<core.Object>(); |
123 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 123 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
124 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 124 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
125 return o; | 125 return o; |
126 } | 126 } |
127 | 127 |
128 checkUnnamed2953(core.List<core.Object> o) { | 128 checkUnnamed3027(core.List<core.Object> o) { |
129 unittest.expect(o, unittest.hasLength(2)); | 129 unittest.expect(o, unittest.hasLength(2)); |
130 var casted3 = (o[0]) as core.Map; unittest.expect(casted3, unittest.hasLength(
3)); unittest.expect(casted3["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted3["bool"], unittest.equals(true)); unittest.expect(casted3["string"], u
nittest.equals('foo')); | 130 var casted3 = (o[0]) as core.Map; unittest.expect(casted3, unittest.hasLength(
3)); unittest.expect(casted3["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted3["bool"], unittest.equals(true)); unittest.expect(casted3["string"], u
nittest.equals('foo')); |
131 var casted4 = (o[1]) as core.Map; unittest.expect(casted4, unittest.hasLength(
3)); unittest.expect(casted4["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted4["bool"], unittest.equals(true)); unittest.expect(casted4["string"], u
nittest.equals('foo')); | 131 var casted4 = (o[1]) as core.Map; unittest.expect(casted4, unittest.hasLength(
3)); unittest.expect(casted4["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted4["bool"], unittest.equals(true)); unittest.expect(casted4["string"], u
nittest.equals('foo')); |
132 } | 132 } |
133 | 133 |
134 buildUnnamed2954() { | 134 buildUnnamed3028() { |
135 var o = new core.Map<core.String, core.List<core.Object>>(); | 135 var o = new core.Map<core.String, core.List<core.Object>>(); |
136 o["x"] = buildUnnamed2953(); | 136 o["x"] = buildUnnamed3027(); |
137 o["y"] = buildUnnamed2953(); | 137 o["y"] = buildUnnamed3027(); |
138 return o; | 138 return o; |
139 } | 139 } |
140 | 140 |
141 checkUnnamed2954(core.Map<core.String, core.List<core.Object>> o) { | 141 checkUnnamed3028(core.Map<core.String, core.List<core.Object>> o) { |
142 unittest.expect(o, unittest.hasLength(2)); | 142 unittest.expect(o, unittest.hasLength(2)); |
143 checkUnnamed2953(o["x"]); | 143 checkUnnamed3027(o["x"]); |
144 checkUnnamed2953(o["y"]); | 144 checkUnnamed3027(o["y"]); |
145 } | 145 } |
146 | 146 |
147 core.int buildCounterAnnotationSet = 0; | 147 core.int buildCounterAnnotationSet = 0; |
148 buildAnnotationSet() { | 148 buildAnnotationSet() { |
149 var o = new api.AnnotationSet(); | 149 var o = new api.AnnotationSet(); |
150 buildCounterAnnotationSet++; | 150 buildCounterAnnotationSet++; |
151 if (buildCounterAnnotationSet < 3) { | 151 if (buildCounterAnnotationSet < 3) { |
152 o.datasetId = "foo"; | 152 o.datasetId = "foo"; |
153 o.id = "foo"; | 153 o.id = "foo"; |
154 o.info = buildUnnamed2954(); | 154 o.info = buildUnnamed3028(); |
155 o.name = "foo"; | 155 o.name = "foo"; |
156 o.referenceSetId = "foo"; | 156 o.referenceSetId = "foo"; |
157 o.sourceUri = "foo"; | 157 o.sourceUri = "foo"; |
158 o.type = "foo"; | 158 o.type = "foo"; |
159 } | 159 } |
160 buildCounterAnnotationSet--; | 160 buildCounterAnnotationSet--; |
161 return o; | 161 return o; |
162 } | 162 } |
163 | 163 |
164 checkAnnotationSet(api.AnnotationSet o) { | 164 checkAnnotationSet(api.AnnotationSet o) { |
165 buildCounterAnnotationSet++; | 165 buildCounterAnnotationSet++; |
166 if (buildCounterAnnotationSet < 3) { | 166 if (buildCounterAnnotationSet < 3) { |
167 unittest.expect(o.datasetId, unittest.equals('foo')); | 167 unittest.expect(o.datasetId, unittest.equals('foo')); |
168 unittest.expect(o.id, unittest.equals('foo')); | 168 unittest.expect(o.id, unittest.equals('foo')); |
169 checkUnnamed2954(o.info); | 169 checkUnnamed3028(o.info); |
170 unittest.expect(o.name, unittest.equals('foo')); | 170 unittest.expect(o.name, unittest.equals('foo')); |
171 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 171 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
172 unittest.expect(o.sourceUri, unittest.equals('foo')); | 172 unittest.expect(o.sourceUri, unittest.equals('foo')); |
173 unittest.expect(o.type, unittest.equals('foo')); | 173 unittest.expect(o.type, unittest.equals('foo')); |
174 } | 174 } |
175 buildCounterAnnotationSet--; | 175 buildCounterAnnotationSet--; |
176 } | 176 } |
177 | 177 |
178 buildUnnamed2955() { | 178 buildUnnamed3029() { |
179 var o = new core.List<api.Annotation>(); | 179 var o = new core.List<api.Annotation>(); |
180 o.add(buildAnnotation()); | 180 o.add(buildAnnotation()); |
181 o.add(buildAnnotation()); | 181 o.add(buildAnnotation()); |
182 return o; | 182 return o; |
183 } | 183 } |
184 | 184 |
185 checkUnnamed2955(core.List<api.Annotation> o) { | 185 checkUnnamed3029(core.List<api.Annotation> o) { |
186 unittest.expect(o, unittest.hasLength(2)); | 186 unittest.expect(o, unittest.hasLength(2)); |
187 checkAnnotation(o[0]); | 187 checkAnnotation(o[0]); |
188 checkAnnotation(o[1]); | 188 checkAnnotation(o[1]); |
189 } | 189 } |
190 | 190 |
191 core.int buildCounterBatchCreateAnnotationsRequest = 0; | 191 core.int buildCounterBatchCreateAnnotationsRequest = 0; |
192 buildBatchCreateAnnotationsRequest() { | 192 buildBatchCreateAnnotationsRequest() { |
193 var o = new api.BatchCreateAnnotationsRequest(); | 193 var o = new api.BatchCreateAnnotationsRequest(); |
194 buildCounterBatchCreateAnnotationsRequest++; | 194 buildCounterBatchCreateAnnotationsRequest++; |
195 if (buildCounterBatchCreateAnnotationsRequest < 3) { | 195 if (buildCounterBatchCreateAnnotationsRequest < 3) { |
196 o.annotations = buildUnnamed2955(); | 196 o.annotations = buildUnnamed3029(); |
197 o.requestId = "foo"; | 197 o.requestId = "foo"; |
198 } | 198 } |
199 buildCounterBatchCreateAnnotationsRequest--; | 199 buildCounterBatchCreateAnnotationsRequest--; |
200 return o; | 200 return o; |
201 } | 201 } |
202 | 202 |
203 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) { | 203 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) { |
204 buildCounterBatchCreateAnnotationsRequest++; | 204 buildCounterBatchCreateAnnotationsRequest++; |
205 if (buildCounterBatchCreateAnnotationsRequest < 3) { | 205 if (buildCounterBatchCreateAnnotationsRequest < 3) { |
206 checkUnnamed2955(o.annotations); | 206 checkUnnamed3029(o.annotations); |
207 unittest.expect(o.requestId, unittest.equals('foo')); | 207 unittest.expect(o.requestId, unittest.equals('foo')); |
208 } | 208 } |
209 buildCounterBatchCreateAnnotationsRequest--; | 209 buildCounterBatchCreateAnnotationsRequest--; |
210 } | 210 } |
211 | 211 |
212 buildUnnamed2956() { | 212 buildUnnamed3030() { |
213 var o = new core.List<api.Entry>(); | 213 var o = new core.List<api.Entry>(); |
214 o.add(buildEntry()); | 214 o.add(buildEntry()); |
215 o.add(buildEntry()); | 215 o.add(buildEntry()); |
216 return o; | 216 return o; |
217 } | 217 } |
218 | 218 |
219 checkUnnamed2956(core.List<api.Entry> o) { | 219 checkUnnamed3030(core.List<api.Entry> o) { |
220 unittest.expect(o, unittest.hasLength(2)); | 220 unittest.expect(o, unittest.hasLength(2)); |
221 checkEntry(o[0]); | 221 checkEntry(o[0]); |
222 checkEntry(o[1]); | 222 checkEntry(o[1]); |
223 } | 223 } |
224 | 224 |
225 core.int buildCounterBatchCreateAnnotationsResponse = 0; | 225 core.int buildCounterBatchCreateAnnotationsResponse = 0; |
226 buildBatchCreateAnnotationsResponse() { | 226 buildBatchCreateAnnotationsResponse() { |
227 var o = new api.BatchCreateAnnotationsResponse(); | 227 var o = new api.BatchCreateAnnotationsResponse(); |
228 buildCounterBatchCreateAnnotationsResponse++; | 228 buildCounterBatchCreateAnnotationsResponse++; |
229 if (buildCounterBatchCreateAnnotationsResponse < 3) { | 229 if (buildCounterBatchCreateAnnotationsResponse < 3) { |
230 o.entries = buildUnnamed2956(); | 230 o.entries = buildUnnamed3030(); |
231 } | 231 } |
232 buildCounterBatchCreateAnnotationsResponse--; | 232 buildCounterBatchCreateAnnotationsResponse--; |
233 return o; | 233 return o; |
234 } | 234 } |
235 | 235 |
236 checkBatchCreateAnnotationsResponse(api.BatchCreateAnnotationsResponse o) { | 236 checkBatchCreateAnnotationsResponse(api.BatchCreateAnnotationsResponse o) { |
237 buildCounterBatchCreateAnnotationsResponse++; | 237 buildCounterBatchCreateAnnotationsResponse++; |
238 if (buildCounterBatchCreateAnnotationsResponse < 3) { | 238 if (buildCounterBatchCreateAnnotationsResponse < 3) { |
239 checkUnnamed2956(o.entries); | 239 checkUnnamed3030(o.entries); |
240 } | 240 } |
241 buildCounterBatchCreateAnnotationsResponse--; | 241 buildCounterBatchCreateAnnotationsResponse--; |
242 } | 242 } |
243 | 243 |
244 buildUnnamed2957() { | 244 buildUnnamed3031() { |
245 var o = new core.List<core.String>(); | 245 var o = new core.List<core.String>(); |
246 o.add("foo"); | 246 o.add("foo"); |
247 o.add("foo"); | 247 o.add("foo"); |
248 return o; | 248 return o; |
249 } | 249 } |
250 | 250 |
251 checkUnnamed2957(core.List<core.String> o) { | 251 checkUnnamed3031(core.List<core.String> o) { |
252 unittest.expect(o, unittest.hasLength(2)); | 252 unittest.expect(o, unittest.hasLength(2)); |
253 unittest.expect(o[0], unittest.equals('foo')); | 253 unittest.expect(o[0], unittest.equals('foo')); |
254 unittest.expect(o[1], unittest.equals('foo')); | 254 unittest.expect(o[1], unittest.equals('foo')); |
255 } | 255 } |
256 | 256 |
257 core.int buildCounterBinding = 0; | 257 core.int buildCounterBinding = 0; |
258 buildBinding() { | 258 buildBinding() { |
259 var o = new api.Binding(); | 259 var o = new api.Binding(); |
260 buildCounterBinding++; | 260 buildCounterBinding++; |
261 if (buildCounterBinding < 3) { | 261 if (buildCounterBinding < 3) { |
262 o.members = buildUnnamed2957(); | 262 o.members = buildUnnamed3031(); |
263 o.role = "foo"; | 263 o.role = "foo"; |
264 } | 264 } |
265 buildCounterBinding--; | 265 buildCounterBinding--; |
266 return o; | 266 return o; |
267 } | 267 } |
268 | 268 |
269 checkBinding(api.Binding o) { | 269 checkBinding(api.Binding o) { |
270 buildCounterBinding++; | 270 buildCounterBinding++; |
271 if (buildCounterBinding < 3) { | 271 if (buildCounterBinding < 3) { |
272 checkUnnamed2957(o.members); | 272 checkUnnamed3031(o.members); |
273 unittest.expect(o.role, unittest.equals('foo')); | 273 unittest.expect(o.role, unittest.equals('foo')); |
274 } | 274 } |
275 buildCounterBinding--; | 275 buildCounterBinding--; |
276 } | 276 } |
277 | 277 |
278 buildUnnamed2958() { | 278 buildUnnamed3032() { |
279 var o = new core.List<core.Object>(); | 279 var o = new core.List<core.Object>(); |
280 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 280 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
281 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 281 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
282 return o; | 282 return o; |
283 } | 283 } |
284 | 284 |
285 checkUnnamed2958(core.List<core.Object> o) { | 285 checkUnnamed3032(core.List<core.Object> o) { |
286 unittest.expect(o, unittest.hasLength(2)); | 286 unittest.expect(o, unittest.hasLength(2)); |
287 var casted5 = (o[0]) as core.Map; unittest.expect(casted5, unittest.hasLength(
3)); unittest.expect(casted5["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted5["bool"], unittest.equals(true)); unittest.expect(casted5["string"], u
nittest.equals('foo')); | 287 var casted5 = (o[0]) as core.Map; unittest.expect(casted5, unittest.hasLength(
3)); unittest.expect(casted5["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted5["bool"], unittest.equals(true)); unittest.expect(casted5["string"], u
nittest.equals('foo')); |
288 var casted6 = (o[1]) as core.Map; unittest.expect(casted6, unittest.hasLength(
3)); unittest.expect(casted6["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted6["bool"], unittest.equals(true)); unittest.expect(casted6["string"], u
nittest.equals('foo')); | 288 var casted6 = (o[1]) as core.Map; unittest.expect(casted6, unittest.hasLength(
3)); unittest.expect(casted6["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted6["bool"], unittest.equals(true)); unittest.expect(casted6["string"], u
nittest.equals('foo')); |
289 } | 289 } |
290 | 290 |
291 buildUnnamed2959() { | 291 buildUnnamed3033() { |
292 var o = new core.Map<core.String, core.List<core.Object>>(); | 292 var o = new core.Map<core.String, core.List<core.Object>>(); |
293 o["x"] = buildUnnamed2958(); | 293 o["x"] = buildUnnamed3032(); |
294 o["y"] = buildUnnamed2958(); | 294 o["y"] = buildUnnamed3032(); |
295 return o; | 295 return o; |
296 } | 296 } |
297 | 297 |
298 checkUnnamed2959(core.Map<core.String, core.List<core.Object>> o) { | 298 checkUnnamed3033(core.Map<core.String, core.List<core.Object>> o) { |
299 unittest.expect(o, unittest.hasLength(2)); | 299 unittest.expect(o, unittest.hasLength(2)); |
300 checkUnnamed2958(o["x"]); | 300 checkUnnamed3032(o["x"]); |
301 checkUnnamed2958(o["y"]); | 301 checkUnnamed3032(o["y"]); |
302 } | 302 } |
303 | 303 |
304 buildUnnamed2960() { | 304 buildUnnamed3034() { |
305 var o = new core.List<core.String>(); | 305 var o = new core.List<core.String>(); |
306 o.add("foo"); | 306 o.add("foo"); |
307 o.add("foo"); | 307 o.add("foo"); |
308 return o; | 308 return o; |
309 } | 309 } |
310 | 310 |
311 checkUnnamed2960(core.List<core.String> o) { | 311 checkUnnamed3034(core.List<core.String> o) { |
312 unittest.expect(o, unittest.hasLength(2)); | 312 unittest.expect(o, unittest.hasLength(2)); |
313 unittest.expect(o[0], unittest.equals('foo')); | 313 unittest.expect(o[0], unittest.equals('foo')); |
314 unittest.expect(o[1], unittest.equals('foo')); | 314 unittest.expect(o[1], unittest.equals('foo')); |
315 } | 315 } |
316 | 316 |
317 core.int buildCounterCallSet = 0; | 317 core.int buildCounterCallSet = 0; |
318 buildCallSet() { | 318 buildCallSet() { |
319 var o = new api.CallSet(); | 319 var o = new api.CallSet(); |
320 buildCounterCallSet++; | 320 buildCounterCallSet++; |
321 if (buildCounterCallSet < 3) { | 321 if (buildCounterCallSet < 3) { |
322 o.created = "foo"; | 322 o.created = "foo"; |
323 o.id = "foo"; | 323 o.id = "foo"; |
324 o.info = buildUnnamed2959(); | 324 o.info = buildUnnamed3033(); |
325 o.name = "foo"; | 325 o.name = "foo"; |
326 o.sampleId = "foo"; | 326 o.sampleId = "foo"; |
327 o.variantSetIds = buildUnnamed2960(); | 327 o.variantSetIds = buildUnnamed3034(); |
328 } | 328 } |
329 buildCounterCallSet--; | 329 buildCounterCallSet--; |
330 return o; | 330 return o; |
331 } | 331 } |
332 | 332 |
333 checkCallSet(api.CallSet o) { | 333 checkCallSet(api.CallSet o) { |
334 buildCounterCallSet++; | 334 buildCounterCallSet++; |
335 if (buildCounterCallSet < 3) { | 335 if (buildCounterCallSet < 3) { |
336 unittest.expect(o.created, unittest.equals('foo')); | 336 unittest.expect(o.created, unittest.equals('foo')); |
337 unittest.expect(o.id, unittest.equals('foo')); | 337 unittest.expect(o.id, unittest.equals('foo')); |
338 checkUnnamed2959(o.info); | 338 checkUnnamed3033(o.info); |
339 unittest.expect(o.name, unittest.equals('foo')); | 339 unittest.expect(o.name, unittest.equals('foo')); |
340 unittest.expect(o.sampleId, unittest.equals('foo')); | 340 unittest.expect(o.sampleId, unittest.equals('foo')); |
341 checkUnnamed2960(o.variantSetIds); | 341 checkUnnamed3034(o.variantSetIds); |
342 } | 342 } |
343 buildCounterCallSet--; | 343 buildCounterCallSet--; |
344 } | 344 } |
345 | 345 |
346 core.int buildCounterCancelOperationRequest = 0; | 346 core.int buildCounterCancelOperationRequest = 0; |
347 buildCancelOperationRequest() { | 347 buildCancelOperationRequest() { |
348 var o = new api.CancelOperationRequest(); | 348 var o = new api.CancelOperationRequest(); |
349 buildCounterCancelOperationRequest++; | 349 buildCounterCancelOperationRequest++; |
350 if (buildCounterCancelOperationRequest < 3) { | 350 if (buildCounterCancelOperationRequest < 3) { |
351 } | 351 } |
(...skipping 24 matching lines...) Expand all Loading... |
376 checkCigarUnit(api.CigarUnit o) { | 376 checkCigarUnit(api.CigarUnit o) { |
377 buildCounterCigarUnit++; | 377 buildCounterCigarUnit++; |
378 if (buildCounterCigarUnit < 3) { | 378 if (buildCounterCigarUnit < 3) { |
379 unittest.expect(o.operation, unittest.equals('foo')); | 379 unittest.expect(o.operation, unittest.equals('foo')); |
380 unittest.expect(o.operationLength, unittest.equals('foo')); | 380 unittest.expect(o.operationLength, unittest.equals('foo')); |
381 unittest.expect(o.referenceSequence, unittest.equals('foo')); | 381 unittest.expect(o.referenceSequence, unittest.equals('foo')); |
382 } | 382 } |
383 buildCounterCigarUnit--; | 383 buildCounterCigarUnit--; |
384 } | 384 } |
385 | 385 |
386 buildUnnamed2961() { | 386 buildUnnamed3035() { |
387 var o = new core.List<api.ExternalId>(); | 387 var o = new core.List<api.ExternalId>(); |
388 o.add(buildExternalId()); | 388 o.add(buildExternalId()); |
389 o.add(buildExternalId()); | 389 o.add(buildExternalId()); |
390 return o; | 390 return o; |
391 } | 391 } |
392 | 392 |
393 checkUnnamed2961(core.List<api.ExternalId> o) { | 393 checkUnnamed3035(core.List<api.ExternalId> o) { |
394 unittest.expect(o, unittest.hasLength(2)); | 394 unittest.expect(o, unittest.hasLength(2)); |
395 checkExternalId(o[0]); | 395 checkExternalId(o[0]); |
396 checkExternalId(o[1]); | 396 checkExternalId(o[1]); |
397 } | 397 } |
398 | 398 |
399 buildUnnamed2962() { | 399 buildUnnamed3036() { |
400 var o = new core.List<core.String>(); | 400 var o = new core.List<core.String>(); |
401 o.add("foo"); | 401 o.add("foo"); |
402 o.add("foo"); | 402 o.add("foo"); |
403 return o; | 403 return o; |
404 } | 404 } |
405 | 405 |
406 checkUnnamed2962(core.List<core.String> o) { | 406 checkUnnamed3036(core.List<core.String> o) { |
407 unittest.expect(o, unittest.hasLength(2)); | 407 unittest.expect(o, unittest.hasLength(2)); |
408 unittest.expect(o[0], unittest.equals('foo')); | 408 unittest.expect(o[0], unittest.equals('foo')); |
409 unittest.expect(o[1], unittest.equals('foo')); | 409 unittest.expect(o[1], unittest.equals('foo')); |
410 } | 410 } |
411 | 411 |
412 core.int buildCounterClinicalCondition = 0; | 412 core.int buildCounterClinicalCondition = 0; |
413 buildClinicalCondition() { | 413 buildClinicalCondition() { |
414 var o = new api.ClinicalCondition(); | 414 var o = new api.ClinicalCondition(); |
415 buildCounterClinicalCondition++; | 415 buildCounterClinicalCondition++; |
416 if (buildCounterClinicalCondition < 3) { | 416 if (buildCounterClinicalCondition < 3) { |
417 o.conceptId = "foo"; | 417 o.conceptId = "foo"; |
418 o.externalIds = buildUnnamed2961(); | 418 o.externalIds = buildUnnamed3035(); |
419 o.names = buildUnnamed2962(); | 419 o.names = buildUnnamed3036(); |
420 o.omimId = "foo"; | 420 o.omimId = "foo"; |
421 } | 421 } |
422 buildCounterClinicalCondition--; | 422 buildCounterClinicalCondition--; |
423 return o; | 423 return o; |
424 } | 424 } |
425 | 425 |
426 checkClinicalCondition(api.ClinicalCondition o) { | 426 checkClinicalCondition(api.ClinicalCondition o) { |
427 buildCounterClinicalCondition++; | 427 buildCounterClinicalCondition++; |
428 if (buildCounterClinicalCondition < 3) { | 428 if (buildCounterClinicalCondition < 3) { |
429 unittest.expect(o.conceptId, unittest.equals('foo')); | 429 unittest.expect(o.conceptId, unittest.equals('foo')); |
430 checkUnnamed2961(o.externalIds); | 430 checkUnnamed3035(o.externalIds); |
431 checkUnnamed2962(o.names); | 431 checkUnnamed3036(o.names); |
432 unittest.expect(o.omimId, unittest.equals('foo')); | 432 unittest.expect(o.omimId, unittest.equals('foo')); |
433 } | 433 } |
434 buildCounterClinicalCondition--; | 434 buildCounterClinicalCondition--; |
435 } | 435 } |
436 | 436 |
437 core.int buildCounterCodingSequence = 0; | 437 core.int buildCounterCodingSequence = 0; |
438 buildCodingSequence() { | 438 buildCodingSequence() { |
439 var o = new api.CodingSequence(); | 439 var o = new api.CodingSequence(); |
440 buildCounterCodingSequence++; | 440 buildCounterCodingSequence++; |
441 if (buildCounterCodingSequence < 3) { | 441 if (buildCounterCodingSequence < 3) { |
442 o.end = "foo"; | 442 o.end = "foo"; |
443 o.start = "foo"; | 443 o.start = "foo"; |
444 } | 444 } |
445 buildCounterCodingSequence--; | 445 buildCounterCodingSequence--; |
446 return o; | 446 return o; |
447 } | 447 } |
448 | 448 |
449 checkCodingSequence(api.CodingSequence o) { | 449 checkCodingSequence(api.CodingSequence o) { |
450 buildCounterCodingSequence++; | 450 buildCounterCodingSequence++; |
451 if (buildCounterCodingSequence < 3) { | 451 if (buildCounterCodingSequence < 3) { |
452 unittest.expect(o.end, unittest.equals('foo')); | 452 unittest.expect(o.end, unittest.equals('foo')); |
453 unittest.expect(o.start, unittest.equals('foo')); | 453 unittest.expect(o.start, unittest.equals('foo')); |
454 } | 454 } |
455 buildCounterCodingSequence--; | 455 buildCounterCodingSequence--; |
456 } | 456 } |
457 | 457 |
458 buildUnnamed2963() { | 458 buildUnnamed3037() { |
459 var o = new core.List<core.String>(); | 459 var o = new core.List<core.String>(); |
460 o.add("foo"); | 460 o.add("foo"); |
461 o.add("foo"); | 461 o.add("foo"); |
462 return o; | 462 return o; |
463 } | 463 } |
464 | 464 |
465 checkUnnamed2963(core.List<core.String> o) { | 465 checkUnnamed3037(core.List<core.String> o) { |
466 unittest.expect(o, unittest.hasLength(2)); | 466 unittest.expect(o, unittest.hasLength(2)); |
467 unittest.expect(o[0], unittest.equals('foo')); | 467 unittest.expect(o[0], unittest.equals('foo')); |
468 unittest.expect(o[1], unittest.equals('foo')); | 468 unittest.expect(o[1], unittest.equals('foo')); |
469 } | 469 } |
470 | 470 |
471 core.int buildCounterComputeEngine = 0; | 471 core.int buildCounterComputeEngine = 0; |
472 buildComputeEngine() { | 472 buildComputeEngine() { |
473 var o = new api.ComputeEngine(); | 473 var o = new api.ComputeEngine(); |
474 buildCounterComputeEngine++; | 474 buildCounterComputeEngine++; |
475 if (buildCounterComputeEngine < 3) { | 475 if (buildCounterComputeEngine < 3) { |
476 o.diskNames = buildUnnamed2963(); | 476 o.diskNames = buildUnnamed3037(); |
477 o.instanceName = "foo"; | 477 o.instanceName = "foo"; |
478 o.machineType = "foo"; | 478 o.machineType = "foo"; |
479 o.zone = "foo"; | 479 o.zone = "foo"; |
480 } | 480 } |
481 buildCounterComputeEngine--; | 481 buildCounterComputeEngine--; |
482 return o; | 482 return o; |
483 } | 483 } |
484 | 484 |
485 checkComputeEngine(api.ComputeEngine o) { | 485 checkComputeEngine(api.ComputeEngine o) { |
486 buildCounterComputeEngine++; | 486 buildCounterComputeEngine++; |
487 if (buildCounterComputeEngine < 3) { | 487 if (buildCounterComputeEngine < 3) { |
488 checkUnnamed2963(o.diskNames); | 488 checkUnnamed3037(o.diskNames); |
489 unittest.expect(o.instanceName, unittest.equals('foo')); | 489 unittest.expect(o.instanceName, unittest.equals('foo')); |
490 unittest.expect(o.machineType, unittest.equals('foo')); | 490 unittest.expect(o.machineType, unittest.equals('foo')); |
491 unittest.expect(o.zone, unittest.equals('foo')); | 491 unittest.expect(o.zone, unittest.equals('foo')); |
492 } | 492 } |
493 buildCounterComputeEngine--; | 493 buildCounterComputeEngine--; |
494 } | 494 } |
495 | 495 |
496 core.int buildCounterCoverageBucket = 0; | 496 core.int buildCounterCoverageBucket = 0; |
497 buildCoverageBucket() { | 497 buildCoverageBucket() { |
498 var o = new api.CoverageBucket(); | 498 var o = new api.CoverageBucket(); |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 buildCounterExperiment++; | 618 buildCounterExperiment++; |
619 if (buildCounterExperiment < 3) { | 619 if (buildCounterExperiment < 3) { |
620 unittest.expect(o.instrumentModel, unittest.equals('foo')); | 620 unittest.expect(o.instrumentModel, unittest.equals('foo')); |
621 unittest.expect(o.libraryId, unittest.equals('foo')); | 621 unittest.expect(o.libraryId, unittest.equals('foo')); |
622 unittest.expect(o.platformUnit, unittest.equals('foo')); | 622 unittest.expect(o.platformUnit, unittest.equals('foo')); |
623 unittest.expect(o.sequencingCenter, unittest.equals('foo')); | 623 unittest.expect(o.sequencingCenter, unittest.equals('foo')); |
624 } | 624 } |
625 buildCounterExperiment--; | 625 buildCounterExperiment--; |
626 } | 626 } |
627 | 627 |
628 buildUnnamed2964() { | 628 buildUnnamed3038() { |
629 var o = new core.List<core.String>(); | 629 var o = new core.List<core.String>(); |
630 o.add("foo"); | 630 o.add("foo"); |
631 o.add("foo"); | 631 o.add("foo"); |
632 return o; | 632 return o; |
633 } | 633 } |
634 | 634 |
635 checkUnnamed2964(core.List<core.String> o) { | 635 checkUnnamed3038(core.List<core.String> o) { |
636 unittest.expect(o, unittest.hasLength(2)); | 636 unittest.expect(o, unittest.hasLength(2)); |
637 unittest.expect(o[0], unittest.equals('foo')); | 637 unittest.expect(o[0], unittest.equals('foo')); |
638 unittest.expect(o[1], unittest.equals('foo')); | 638 unittest.expect(o[1], unittest.equals('foo')); |
639 } | 639 } |
640 | 640 |
641 core.int buildCounterExportReadGroupSetRequest = 0; | 641 core.int buildCounterExportReadGroupSetRequest = 0; |
642 buildExportReadGroupSetRequest() { | 642 buildExportReadGroupSetRequest() { |
643 var o = new api.ExportReadGroupSetRequest(); | 643 var o = new api.ExportReadGroupSetRequest(); |
644 buildCounterExportReadGroupSetRequest++; | 644 buildCounterExportReadGroupSetRequest++; |
645 if (buildCounterExportReadGroupSetRequest < 3) { | 645 if (buildCounterExportReadGroupSetRequest < 3) { |
646 o.exportUri = "foo"; | 646 o.exportUri = "foo"; |
647 o.projectId = "foo"; | 647 o.projectId = "foo"; |
648 o.referenceNames = buildUnnamed2964(); | 648 o.referenceNames = buildUnnamed3038(); |
649 } | 649 } |
650 buildCounterExportReadGroupSetRequest--; | 650 buildCounterExportReadGroupSetRequest--; |
651 return o; | 651 return o; |
652 } | 652 } |
653 | 653 |
654 checkExportReadGroupSetRequest(api.ExportReadGroupSetRequest o) { | 654 checkExportReadGroupSetRequest(api.ExportReadGroupSetRequest o) { |
655 buildCounterExportReadGroupSetRequest++; | 655 buildCounterExportReadGroupSetRequest++; |
656 if (buildCounterExportReadGroupSetRequest < 3) { | 656 if (buildCounterExportReadGroupSetRequest < 3) { |
657 unittest.expect(o.exportUri, unittest.equals('foo')); | 657 unittest.expect(o.exportUri, unittest.equals('foo')); |
658 unittest.expect(o.projectId, unittest.equals('foo')); | 658 unittest.expect(o.projectId, unittest.equals('foo')); |
659 checkUnnamed2964(o.referenceNames); | 659 checkUnnamed3038(o.referenceNames); |
660 } | 660 } |
661 buildCounterExportReadGroupSetRequest--; | 661 buildCounterExportReadGroupSetRequest--; |
662 } | 662 } |
663 | 663 |
664 buildUnnamed2965() { | 664 buildUnnamed3039() { |
665 var o = new core.List<core.String>(); | 665 var o = new core.List<core.String>(); |
666 o.add("foo"); | 666 o.add("foo"); |
667 o.add("foo"); | 667 o.add("foo"); |
668 return o; | 668 return o; |
669 } | 669 } |
670 | 670 |
671 checkUnnamed2965(core.List<core.String> o) { | 671 checkUnnamed3039(core.List<core.String> o) { |
672 unittest.expect(o, unittest.hasLength(2)); | 672 unittest.expect(o, unittest.hasLength(2)); |
673 unittest.expect(o[0], unittest.equals('foo')); | 673 unittest.expect(o[0], unittest.equals('foo')); |
674 unittest.expect(o[1], unittest.equals('foo')); | 674 unittest.expect(o[1], unittest.equals('foo')); |
675 } | 675 } |
676 | 676 |
677 core.int buildCounterExportVariantSetRequest = 0; | 677 core.int buildCounterExportVariantSetRequest = 0; |
678 buildExportVariantSetRequest() { | 678 buildExportVariantSetRequest() { |
679 var o = new api.ExportVariantSetRequest(); | 679 var o = new api.ExportVariantSetRequest(); |
680 buildCounterExportVariantSetRequest++; | 680 buildCounterExportVariantSetRequest++; |
681 if (buildCounterExportVariantSetRequest < 3) { | 681 if (buildCounterExportVariantSetRequest < 3) { |
682 o.bigqueryDataset = "foo"; | 682 o.bigqueryDataset = "foo"; |
683 o.bigqueryTable = "foo"; | 683 o.bigqueryTable = "foo"; |
684 o.callSetIds = buildUnnamed2965(); | 684 o.callSetIds = buildUnnamed3039(); |
685 o.format = "foo"; | 685 o.format = "foo"; |
686 o.projectId = "foo"; | 686 o.projectId = "foo"; |
687 } | 687 } |
688 buildCounterExportVariantSetRequest--; | 688 buildCounterExportVariantSetRequest--; |
689 return o; | 689 return o; |
690 } | 690 } |
691 | 691 |
692 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { | 692 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { |
693 buildCounterExportVariantSetRequest++; | 693 buildCounterExportVariantSetRequest++; |
694 if (buildCounterExportVariantSetRequest < 3) { | 694 if (buildCounterExportVariantSetRequest < 3) { |
695 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); | 695 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); |
696 unittest.expect(o.bigqueryTable, unittest.equals('foo')); | 696 unittest.expect(o.bigqueryTable, unittest.equals('foo')); |
697 checkUnnamed2965(o.callSetIds); | 697 checkUnnamed3039(o.callSetIds); |
698 unittest.expect(o.format, unittest.equals('foo')); | 698 unittest.expect(o.format, unittest.equals('foo')); |
699 unittest.expect(o.projectId, unittest.equals('foo')); | 699 unittest.expect(o.projectId, unittest.equals('foo')); |
700 } | 700 } |
701 buildCounterExportVariantSetRequest--; | 701 buildCounterExportVariantSetRequest--; |
702 } | 702 } |
703 | 703 |
704 core.int buildCounterExternalId = 0; | 704 core.int buildCounterExternalId = 0; |
705 buildExternalId() { | 705 buildExternalId() { |
706 var o = new api.ExternalId(); | 706 var o = new api.ExternalId(); |
707 buildCounterExternalId++; | 707 buildCounterExternalId++; |
(...skipping 24 matching lines...) Expand all Loading... |
732 return o; | 732 return o; |
733 } | 733 } |
734 | 734 |
735 checkGetIamPolicyRequest(api.GetIamPolicyRequest o) { | 735 checkGetIamPolicyRequest(api.GetIamPolicyRequest o) { |
736 buildCounterGetIamPolicyRequest++; | 736 buildCounterGetIamPolicyRequest++; |
737 if (buildCounterGetIamPolicyRequest < 3) { | 737 if (buildCounterGetIamPolicyRequest < 3) { |
738 } | 738 } |
739 buildCounterGetIamPolicyRequest--; | 739 buildCounterGetIamPolicyRequest--; |
740 } | 740 } |
741 | 741 |
742 buildUnnamed2966() { | 742 buildUnnamed3040() { |
743 var o = new core.List<core.String>(); | 743 var o = new core.List<core.String>(); |
744 o.add("foo"); | 744 o.add("foo"); |
745 o.add("foo"); | 745 o.add("foo"); |
746 return o; | 746 return o; |
747 } | 747 } |
748 | 748 |
749 checkUnnamed2966(core.List<core.String> o) { | 749 checkUnnamed3040(core.List<core.String> o) { |
750 unittest.expect(o, unittest.hasLength(2)); | 750 unittest.expect(o, unittest.hasLength(2)); |
751 unittest.expect(o[0], unittest.equals('foo')); | 751 unittest.expect(o[0], unittest.equals('foo')); |
752 unittest.expect(o[1], unittest.equals('foo')); | 752 unittest.expect(o[1], unittest.equals('foo')); |
753 } | 753 } |
754 | 754 |
755 core.int buildCounterImportReadGroupSetsRequest = 0; | 755 core.int buildCounterImportReadGroupSetsRequest = 0; |
756 buildImportReadGroupSetsRequest() { | 756 buildImportReadGroupSetsRequest() { |
757 var o = new api.ImportReadGroupSetsRequest(); | 757 var o = new api.ImportReadGroupSetsRequest(); |
758 buildCounterImportReadGroupSetsRequest++; | 758 buildCounterImportReadGroupSetsRequest++; |
759 if (buildCounterImportReadGroupSetsRequest < 3) { | 759 if (buildCounterImportReadGroupSetsRequest < 3) { |
760 o.datasetId = "foo"; | 760 o.datasetId = "foo"; |
761 o.partitionStrategy = "foo"; | 761 o.partitionStrategy = "foo"; |
762 o.referenceSetId = "foo"; | 762 o.referenceSetId = "foo"; |
763 o.sourceUris = buildUnnamed2966(); | 763 o.sourceUris = buildUnnamed3040(); |
764 } | 764 } |
765 buildCounterImportReadGroupSetsRequest--; | 765 buildCounterImportReadGroupSetsRequest--; |
766 return o; | 766 return o; |
767 } | 767 } |
768 | 768 |
769 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { | 769 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { |
770 buildCounterImportReadGroupSetsRequest++; | 770 buildCounterImportReadGroupSetsRequest++; |
771 if (buildCounterImportReadGroupSetsRequest < 3) { | 771 if (buildCounterImportReadGroupSetsRequest < 3) { |
772 unittest.expect(o.datasetId, unittest.equals('foo')); | 772 unittest.expect(o.datasetId, unittest.equals('foo')); |
773 unittest.expect(o.partitionStrategy, unittest.equals('foo')); | 773 unittest.expect(o.partitionStrategy, unittest.equals('foo')); |
774 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 774 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
775 checkUnnamed2966(o.sourceUris); | 775 checkUnnamed3040(o.sourceUris); |
776 } | 776 } |
777 buildCounterImportReadGroupSetsRequest--; | 777 buildCounterImportReadGroupSetsRequest--; |
778 } | 778 } |
779 | 779 |
780 buildUnnamed2967() { | 780 buildUnnamed3041() { |
781 var o = new core.List<core.String>(); | 781 var o = new core.List<core.String>(); |
782 o.add("foo"); | 782 o.add("foo"); |
783 o.add("foo"); | 783 o.add("foo"); |
784 return o; | 784 return o; |
785 } | 785 } |
786 | 786 |
787 checkUnnamed2967(core.List<core.String> o) { | 787 checkUnnamed3041(core.List<core.String> o) { |
788 unittest.expect(o, unittest.hasLength(2)); | 788 unittest.expect(o, unittest.hasLength(2)); |
789 unittest.expect(o[0], unittest.equals('foo')); | 789 unittest.expect(o[0], unittest.equals('foo')); |
790 unittest.expect(o[1], unittest.equals('foo')); | 790 unittest.expect(o[1], unittest.equals('foo')); |
791 } | 791 } |
792 | 792 |
793 core.int buildCounterImportReadGroupSetsResponse = 0; | 793 core.int buildCounterImportReadGroupSetsResponse = 0; |
794 buildImportReadGroupSetsResponse() { | 794 buildImportReadGroupSetsResponse() { |
795 var o = new api.ImportReadGroupSetsResponse(); | 795 var o = new api.ImportReadGroupSetsResponse(); |
796 buildCounterImportReadGroupSetsResponse++; | 796 buildCounterImportReadGroupSetsResponse++; |
797 if (buildCounterImportReadGroupSetsResponse < 3) { | 797 if (buildCounterImportReadGroupSetsResponse < 3) { |
798 o.readGroupSetIds = buildUnnamed2967(); | 798 o.readGroupSetIds = buildUnnamed3041(); |
799 } | 799 } |
800 buildCounterImportReadGroupSetsResponse--; | 800 buildCounterImportReadGroupSetsResponse--; |
801 return o; | 801 return o; |
802 } | 802 } |
803 | 803 |
804 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { | 804 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { |
805 buildCounterImportReadGroupSetsResponse++; | 805 buildCounterImportReadGroupSetsResponse++; |
806 if (buildCounterImportReadGroupSetsResponse < 3) { | 806 if (buildCounterImportReadGroupSetsResponse < 3) { |
807 checkUnnamed2967(o.readGroupSetIds); | 807 checkUnnamed3041(o.readGroupSetIds); |
808 } | 808 } |
809 buildCounterImportReadGroupSetsResponse--; | 809 buildCounterImportReadGroupSetsResponse--; |
810 } | 810 } |
811 | 811 |
812 buildUnnamed2968() { | 812 buildUnnamed3042() { |
813 var o = new core.Map<core.String, core.String>(); | 813 var o = new core.Map<core.String, core.String>(); |
814 o["x"] = "foo"; | 814 o["x"] = "foo"; |
815 o["y"] = "foo"; | 815 o["y"] = "foo"; |
816 return o; | 816 return o; |
817 } | 817 } |
818 | 818 |
819 checkUnnamed2968(core.Map<core.String, core.String> o) { | 819 checkUnnamed3042(core.Map<core.String, core.String> o) { |
820 unittest.expect(o, unittest.hasLength(2)); | 820 unittest.expect(o, unittest.hasLength(2)); |
821 unittest.expect(o["x"], unittest.equals('foo')); | 821 unittest.expect(o["x"], unittest.equals('foo')); |
822 unittest.expect(o["y"], unittest.equals('foo')); | 822 unittest.expect(o["y"], unittest.equals('foo')); |
823 } | 823 } |
824 | 824 |
825 buildUnnamed2969() { | 825 buildUnnamed3043() { |
826 var o = new core.List<core.String>(); | 826 var o = new core.List<core.String>(); |
827 o.add("foo"); | 827 o.add("foo"); |
828 o.add("foo"); | 828 o.add("foo"); |
829 return o; | 829 return o; |
830 } | 830 } |
831 | 831 |
832 checkUnnamed2969(core.List<core.String> o) { | 832 checkUnnamed3043(core.List<core.String> o) { |
833 unittest.expect(o, unittest.hasLength(2)); | 833 unittest.expect(o, unittest.hasLength(2)); |
834 unittest.expect(o[0], unittest.equals('foo')); | 834 unittest.expect(o[0], unittest.equals('foo')); |
835 unittest.expect(o[1], unittest.equals('foo')); | 835 unittest.expect(o[1], unittest.equals('foo')); |
836 } | 836 } |
837 | 837 |
838 core.int buildCounterImportVariantsRequest = 0; | 838 core.int buildCounterImportVariantsRequest = 0; |
839 buildImportVariantsRequest() { | 839 buildImportVariantsRequest() { |
840 var o = new api.ImportVariantsRequest(); | 840 var o = new api.ImportVariantsRequest(); |
841 buildCounterImportVariantsRequest++; | 841 buildCounterImportVariantsRequest++; |
842 if (buildCounterImportVariantsRequest < 3) { | 842 if (buildCounterImportVariantsRequest < 3) { |
843 o.format = "foo"; | 843 o.format = "foo"; |
844 o.infoMergeConfig = buildUnnamed2968(); | 844 o.infoMergeConfig = buildUnnamed3042(); |
845 o.normalizeReferenceNames = true; | 845 o.normalizeReferenceNames = true; |
846 o.sourceUris = buildUnnamed2969(); | 846 o.sourceUris = buildUnnamed3043(); |
847 o.variantSetId = "foo"; | 847 o.variantSetId = "foo"; |
848 } | 848 } |
849 buildCounterImportVariantsRequest--; | 849 buildCounterImportVariantsRequest--; |
850 return o; | 850 return o; |
851 } | 851 } |
852 | 852 |
853 checkImportVariantsRequest(api.ImportVariantsRequest o) { | 853 checkImportVariantsRequest(api.ImportVariantsRequest o) { |
854 buildCounterImportVariantsRequest++; | 854 buildCounterImportVariantsRequest++; |
855 if (buildCounterImportVariantsRequest < 3) { | 855 if (buildCounterImportVariantsRequest < 3) { |
856 unittest.expect(o.format, unittest.equals('foo')); | 856 unittest.expect(o.format, unittest.equals('foo')); |
857 checkUnnamed2968(o.infoMergeConfig); | 857 checkUnnamed3042(o.infoMergeConfig); |
858 unittest.expect(o.normalizeReferenceNames, unittest.isTrue); | 858 unittest.expect(o.normalizeReferenceNames, unittest.isTrue); |
859 checkUnnamed2969(o.sourceUris); | 859 checkUnnamed3043(o.sourceUris); |
860 unittest.expect(o.variantSetId, unittest.equals('foo')); | 860 unittest.expect(o.variantSetId, unittest.equals('foo')); |
861 } | 861 } |
862 buildCounterImportVariantsRequest--; | 862 buildCounterImportVariantsRequest--; |
863 } | 863 } |
864 | 864 |
865 buildUnnamed2970() { | 865 buildUnnamed3044() { |
866 var o = new core.List<core.String>(); | 866 var o = new core.List<core.String>(); |
867 o.add("foo"); | 867 o.add("foo"); |
868 o.add("foo"); | 868 o.add("foo"); |
869 return o; | 869 return o; |
870 } | 870 } |
871 | 871 |
872 checkUnnamed2970(core.List<core.String> o) { | 872 checkUnnamed3044(core.List<core.String> o) { |
873 unittest.expect(o, unittest.hasLength(2)); | 873 unittest.expect(o, unittest.hasLength(2)); |
874 unittest.expect(o[0], unittest.equals('foo')); | 874 unittest.expect(o[0], unittest.equals('foo')); |
875 unittest.expect(o[1], unittest.equals('foo')); | 875 unittest.expect(o[1], unittest.equals('foo')); |
876 } | 876 } |
877 | 877 |
878 core.int buildCounterImportVariantsResponse = 0; | 878 core.int buildCounterImportVariantsResponse = 0; |
879 buildImportVariantsResponse() { | 879 buildImportVariantsResponse() { |
880 var o = new api.ImportVariantsResponse(); | 880 var o = new api.ImportVariantsResponse(); |
881 buildCounterImportVariantsResponse++; | 881 buildCounterImportVariantsResponse++; |
882 if (buildCounterImportVariantsResponse < 3) { | 882 if (buildCounterImportVariantsResponse < 3) { |
883 o.callSetIds = buildUnnamed2970(); | 883 o.callSetIds = buildUnnamed3044(); |
884 } | 884 } |
885 buildCounterImportVariantsResponse--; | 885 buildCounterImportVariantsResponse--; |
886 return o; | 886 return o; |
887 } | 887 } |
888 | 888 |
889 checkImportVariantsResponse(api.ImportVariantsResponse o) { | 889 checkImportVariantsResponse(api.ImportVariantsResponse o) { |
890 buildCounterImportVariantsResponse++; | 890 buildCounterImportVariantsResponse++; |
891 if (buildCounterImportVariantsResponse < 3) { | 891 if (buildCounterImportVariantsResponse < 3) { |
892 checkUnnamed2970(o.callSetIds); | 892 checkUnnamed3044(o.callSetIds); |
893 } | 893 } |
894 buildCounterImportVariantsResponse--; | 894 buildCounterImportVariantsResponse--; |
895 } | 895 } |
896 | 896 |
897 buildUnnamed2971() { | 897 buildUnnamed3045() { |
898 var o = new core.List<api.CigarUnit>(); | 898 var o = new core.List<api.CigarUnit>(); |
899 o.add(buildCigarUnit()); | 899 o.add(buildCigarUnit()); |
900 o.add(buildCigarUnit()); | 900 o.add(buildCigarUnit()); |
901 return o; | 901 return o; |
902 } | 902 } |
903 | 903 |
904 checkUnnamed2971(core.List<api.CigarUnit> o) { | 904 checkUnnamed3045(core.List<api.CigarUnit> o) { |
905 unittest.expect(o, unittest.hasLength(2)); | 905 unittest.expect(o, unittest.hasLength(2)); |
906 checkCigarUnit(o[0]); | 906 checkCigarUnit(o[0]); |
907 checkCigarUnit(o[1]); | 907 checkCigarUnit(o[1]); |
908 } | 908 } |
909 | 909 |
910 core.int buildCounterLinearAlignment = 0; | 910 core.int buildCounterLinearAlignment = 0; |
911 buildLinearAlignment() { | 911 buildLinearAlignment() { |
912 var o = new api.LinearAlignment(); | 912 var o = new api.LinearAlignment(); |
913 buildCounterLinearAlignment++; | 913 buildCounterLinearAlignment++; |
914 if (buildCounterLinearAlignment < 3) { | 914 if (buildCounterLinearAlignment < 3) { |
915 o.cigar = buildUnnamed2971(); | 915 o.cigar = buildUnnamed3045(); |
916 o.mappingQuality = 42; | 916 o.mappingQuality = 42; |
917 o.position = buildPosition(); | 917 o.position = buildPosition(); |
918 } | 918 } |
919 buildCounterLinearAlignment--; | 919 buildCounterLinearAlignment--; |
920 return o; | 920 return o; |
921 } | 921 } |
922 | 922 |
923 checkLinearAlignment(api.LinearAlignment o) { | 923 checkLinearAlignment(api.LinearAlignment o) { |
924 buildCounterLinearAlignment++; | 924 buildCounterLinearAlignment++; |
925 if (buildCounterLinearAlignment < 3) { | 925 if (buildCounterLinearAlignment < 3) { |
926 checkUnnamed2971(o.cigar); | 926 checkUnnamed3045(o.cigar); |
927 unittest.expect(o.mappingQuality, unittest.equals(42)); | 927 unittest.expect(o.mappingQuality, unittest.equals(42)); |
928 checkPosition(o.position); | 928 checkPosition(o.position); |
929 } | 929 } |
930 buildCounterLinearAlignment--; | 930 buildCounterLinearAlignment--; |
931 } | 931 } |
932 | 932 |
933 core.int buildCounterListBasesResponse = 0; | 933 core.int buildCounterListBasesResponse = 0; |
934 buildListBasesResponse() { | 934 buildListBasesResponse() { |
935 var o = new api.ListBasesResponse(); | 935 var o = new api.ListBasesResponse(); |
936 buildCounterListBasesResponse++; | 936 buildCounterListBasesResponse++; |
937 if (buildCounterListBasesResponse < 3) { | 937 if (buildCounterListBasesResponse < 3) { |
938 o.nextPageToken = "foo"; | 938 o.nextPageToken = "foo"; |
939 o.offset = "foo"; | 939 o.offset = "foo"; |
940 o.sequence = "foo"; | 940 o.sequence = "foo"; |
941 } | 941 } |
942 buildCounterListBasesResponse--; | 942 buildCounterListBasesResponse--; |
943 return o; | 943 return o; |
944 } | 944 } |
945 | 945 |
946 checkListBasesResponse(api.ListBasesResponse o) { | 946 checkListBasesResponse(api.ListBasesResponse o) { |
947 buildCounterListBasesResponse++; | 947 buildCounterListBasesResponse++; |
948 if (buildCounterListBasesResponse < 3) { | 948 if (buildCounterListBasesResponse < 3) { |
949 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 949 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
950 unittest.expect(o.offset, unittest.equals('foo')); | 950 unittest.expect(o.offset, unittest.equals('foo')); |
951 unittest.expect(o.sequence, unittest.equals('foo')); | 951 unittest.expect(o.sequence, unittest.equals('foo')); |
952 } | 952 } |
953 buildCounterListBasesResponse--; | 953 buildCounterListBasesResponse--; |
954 } | 954 } |
955 | 955 |
956 buildUnnamed2972() { | 956 buildUnnamed3046() { |
957 var o = new core.List<api.CoverageBucket>(); | 957 var o = new core.List<api.CoverageBucket>(); |
958 o.add(buildCoverageBucket()); | 958 o.add(buildCoverageBucket()); |
959 o.add(buildCoverageBucket()); | 959 o.add(buildCoverageBucket()); |
960 return o; | 960 return o; |
961 } | 961 } |
962 | 962 |
963 checkUnnamed2972(core.List<api.CoverageBucket> o) { | 963 checkUnnamed3046(core.List<api.CoverageBucket> o) { |
964 unittest.expect(o, unittest.hasLength(2)); | 964 unittest.expect(o, unittest.hasLength(2)); |
965 checkCoverageBucket(o[0]); | 965 checkCoverageBucket(o[0]); |
966 checkCoverageBucket(o[1]); | 966 checkCoverageBucket(o[1]); |
967 } | 967 } |
968 | 968 |
969 core.int buildCounterListCoverageBucketsResponse = 0; | 969 core.int buildCounterListCoverageBucketsResponse = 0; |
970 buildListCoverageBucketsResponse() { | 970 buildListCoverageBucketsResponse() { |
971 var o = new api.ListCoverageBucketsResponse(); | 971 var o = new api.ListCoverageBucketsResponse(); |
972 buildCounterListCoverageBucketsResponse++; | 972 buildCounterListCoverageBucketsResponse++; |
973 if (buildCounterListCoverageBucketsResponse < 3) { | 973 if (buildCounterListCoverageBucketsResponse < 3) { |
974 o.bucketWidth = "foo"; | 974 o.bucketWidth = "foo"; |
975 o.coverageBuckets = buildUnnamed2972(); | 975 o.coverageBuckets = buildUnnamed3046(); |
976 o.nextPageToken = "foo"; | 976 o.nextPageToken = "foo"; |
977 } | 977 } |
978 buildCounterListCoverageBucketsResponse--; | 978 buildCounterListCoverageBucketsResponse--; |
979 return o; | 979 return o; |
980 } | 980 } |
981 | 981 |
982 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { | 982 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { |
983 buildCounterListCoverageBucketsResponse++; | 983 buildCounterListCoverageBucketsResponse++; |
984 if (buildCounterListCoverageBucketsResponse < 3) { | 984 if (buildCounterListCoverageBucketsResponse < 3) { |
985 unittest.expect(o.bucketWidth, unittest.equals('foo')); | 985 unittest.expect(o.bucketWidth, unittest.equals('foo')); |
986 checkUnnamed2972(o.coverageBuckets); | 986 checkUnnamed3046(o.coverageBuckets); |
987 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 987 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
988 } | 988 } |
989 buildCounterListCoverageBucketsResponse--; | 989 buildCounterListCoverageBucketsResponse--; |
990 } | 990 } |
991 | 991 |
992 buildUnnamed2973() { | 992 buildUnnamed3047() { |
993 var o = new core.List<api.Dataset>(); | 993 var o = new core.List<api.Dataset>(); |
994 o.add(buildDataset()); | 994 o.add(buildDataset()); |
995 o.add(buildDataset()); | 995 o.add(buildDataset()); |
996 return o; | 996 return o; |
997 } | 997 } |
998 | 998 |
999 checkUnnamed2973(core.List<api.Dataset> o) { | 999 checkUnnamed3047(core.List<api.Dataset> o) { |
1000 unittest.expect(o, unittest.hasLength(2)); | 1000 unittest.expect(o, unittest.hasLength(2)); |
1001 checkDataset(o[0]); | 1001 checkDataset(o[0]); |
1002 checkDataset(o[1]); | 1002 checkDataset(o[1]); |
1003 } | 1003 } |
1004 | 1004 |
1005 core.int buildCounterListDatasetsResponse = 0; | 1005 core.int buildCounterListDatasetsResponse = 0; |
1006 buildListDatasetsResponse() { | 1006 buildListDatasetsResponse() { |
1007 var o = new api.ListDatasetsResponse(); | 1007 var o = new api.ListDatasetsResponse(); |
1008 buildCounterListDatasetsResponse++; | 1008 buildCounterListDatasetsResponse++; |
1009 if (buildCounterListDatasetsResponse < 3) { | 1009 if (buildCounterListDatasetsResponse < 3) { |
1010 o.datasets = buildUnnamed2973(); | 1010 o.datasets = buildUnnamed3047(); |
1011 o.nextPageToken = "foo"; | 1011 o.nextPageToken = "foo"; |
1012 } | 1012 } |
1013 buildCounterListDatasetsResponse--; | 1013 buildCounterListDatasetsResponse--; |
1014 return o; | 1014 return o; |
1015 } | 1015 } |
1016 | 1016 |
1017 checkListDatasetsResponse(api.ListDatasetsResponse o) { | 1017 checkListDatasetsResponse(api.ListDatasetsResponse o) { |
1018 buildCounterListDatasetsResponse++; | 1018 buildCounterListDatasetsResponse++; |
1019 if (buildCounterListDatasetsResponse < 3) { | 1019 if (buildCounterListDatasetsResponse < 3) { |
1020 checkUnnamed2973(o.datasets); | 1020 checkUnnamed3047(o.datasets); |
1021 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1021 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1022 } | 1022 } |
1023 buildCounterListDatasetsResponse--; | 1023 buildCounterListDatasetsResponse--; |
1024 } | 1024 } |
1025 | 1025 |
1026 buildUnnamed2974() { | 1026 buildUnnamed3048() { |
1027 var o = new core.List<api.Operation>(); | 1027 var o = new core.List<api.Operation>(); |
1028 o.add(buildOperation()); | 1028 o.add(buildOperation()); |
1029 o.add(buildOperation()); | 1029 o.add(buildOperation()); |
1030 return o; | 1030 return o; |
1031 } | 1031 } |
1032 | 1032 |
1033 checkUnnamed2974(core.List<api.Operation> o) { | 1033 checkUnnamed3048(core.List<api.Operation> o) { |
1034 unittest.expect(o, unittest.hasLength(2)); | 1034 unittest.expect(o, unittest.hasLength(2)); |
1035 checkOperation(o[0]); | 1035 checkOperation(o[0]); |
1036 checkOperation(o[1]); | 1036 checkOperation(o[1]); |
1037 } | 1037 } |
1038 | 1038 |
1039 core.int buildCounterListOperationsResponse = 0; | 1039 core.int buildCounterListOperationsResponse = 0; |
1040 buildListOperationsResponse() { | 1040 buildListOperationsResponse() { |
1041 var o = new api.ListOperationsResponse(); | 1041 var o = new api.ListOperationsResponse(); |
1042 buildCounterListOperationsResponse++; | 1042 buildCounterListOperationsResponse++; |
1043 if (buildCounterListOperationsResponse < 3) { | 1043 if (buildCounterListOperationsResponse < 3) { |
1044 o.nextPageToken = "foo"; | 1044 o.nextPageToken = "foo"; |
1045 o.operations = buildUnnamed2974(); | 1045 o.operations = buildUnnamed3048(); |
1046 } | 1046 } |
1047 buildCounterListOperationsResponse--; | 1047 buildCounterListOperationsResponse--; |
1048 return o; | 1048 return o; |
1049 } | 1049 } |
1050 | 1050 |
1051 checkListOperationsResponse(api.ListOperationsResponse o) { | 1051 checkListOperationsResponse(api.ListOperationsResponse o) { |
1052 buildCounterListOperationsResponse++; | 1052 buildCounterListOperationsResponse++; |
1053 if (buildCounterListOperationsResponse < 3) { | 1053 if (buildCounterListOperationsResponse < 3) { |
1054 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1054 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1055 checkUnnamed2974(o.operations); | 1055 checkUnnamed3048(o.operations); |
1056 } | 1056 } |
1057 buildCounterListOperationsResponse--; | 1057 buildCounterListOperationsResponse--; |
1058 } | 1058 } |
1059 | 1059 |
1060 buildUnnamed2975() { | 1060 buildUnnamed3049() { |
1061 var o = new core.Map<core.String, core.String>(); | 1061 var o = new core.Map<core.String, core.String>(); |
1062 o["x"] = "foo"; | 1062 o["x"] = "foo"; |
1063 o["y"] = "foo"; | 1063 o["y"] = "foo"; |
1064 return o; | 1064 return o; |
1065 } | 1065 } |
1066 | 1066 |
1067 checkUnnamed2975(core.Map<core.String, core.String> o) { | 1067 checkUnnamed3049(core.Map<core.String, core.String> o) { |
1068 unittest.expect(o, unittest.hasLength(2)); | 1068 unittest.expect(o, unittest.hasLength(2)); |
1069 unittest.expect(o["x"], unittest.equals('foo')); | 1069 unittest.expect(o["x"], unittest.equals('foo')); |
1070 unittest.expect(o["y"], unittest.equals('foo')); | 1070 unittest.expect(o["y"], unittest.equals('foo')); |
1071 } | 1071 } |
1072 | 1072 |
1073 buildUnnamed2976() { | 1073 buildUnnamed3050() { |
1074 var o = new core.List<api.Variant>(); | 1074 var o = new core.List<api.Variant>(); |
1075 o.add(buildVariant()); | 1075 o.add(buildVariant()); |
1076 o.add(buildVariant()); | 1076 o.add(buildVariant()); |
1077 return o; | 1077 return o; |
1078 } | 1078 } |
1079 | 1079 |
1080 checkUnnamed2976(core.List<api.Variant> o) { | 1080 checkUnnamed3050(core.List<api.Variant> o) { |
1081 unittest.expect(o, unittest.hasLength(2)); | 1081 unittest.expect(o, unittest.hasLength(2)); |
1082 checkVariant(o[0]); | 1082 checkVariant(o[0]); |
1083 checkVariant(o[1]); | 1083 checkVariant(o[1]); |
1084 } | 1084 } |
1085 | 1085 |
1086 core.int buildCounterMergeVariantsRequest = 0; | 1086 core.int buildCounterMergeVariantsRequest = 0; |
1087 buildMergeVariantsRequest() { | 1087 buildMergeVariantsRequest() { |
1088 var o = new api.MergeVariantsRequest(); | 1088 var o = new api.MergeVariantsRequest(); |
1089 buildCounterMergeVariantsRequest++; | 1089 buildCounterMergeVariantsRequest++; |
1090 if (buildCounterMergeVariantsRequest < 3) { | 1090 if (buildCounterMergeVariantsRequest < 3) { |
1091 o.infoMergeConfig = buildUnnamed2975(); | 1091 o.infoMergeConfig = buildUnnamed3049(); |
1092 o.variantSetId = "foo"; | 1092 o.variantSetId = "foo"; |
1093 o.variants = buildUnnamed2976(); | 1093 o.variants = buildUnnamed3050(); |
1094 } | 1094 } |
1095 buildCounterMergeVariantsRequest--; | 1095 buildCounterMergeVariantsRequest--; |
1096 return o; | 1096 return o; |
1097 } | 1097 } |
1098 | 1098 |
1099 checkMergeVariantsRequest(api.MergeVariantsRequest o) { | 1099 checkMergeVariantsRequest(api.MergeVariantsRequest o) { |
1100 buildCounterMergeVariantsRequest++; | 1100 buildCounterMergeVariantsRequest++; |
1101 if (buildCounterMergeVariantsRequest < 3) { | 1101 if (buildCounterMergeVariantsRequest < 3) { |
1102 checkUnnamed2975(o.infoMergeConfig); | 1102 checkUnnamed3049(o.infoMergeConfig); |
1103 unittest.expect(o.variantSetId, unittest.equals('foo')); | 1103 unittest.expect(o.variantSetId, unittest.equals('foo')); |
1104 checkUnnamed2976(o.variants); | 1104 checkUnnamed3050(o.variants); |
1105 } | 1105 } |
1106 buildCounterMergeVariantsRequest--; | 1106 buildCounterMergeVariantsRequest--; |
1107 } | 1107 } |
1108 | 1108 |
1109 buildUnnamed2977() { | 1109 buildUnnamed3051() { |
1110 var o = new core.Map<core.String, core.Object>(); | 1110 var o = new core.Map<core.String, core.Object>(); |
1111 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1111 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
1112 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1112 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
1113 return o; | 1113 return o; |
1114 } | 1114 } |
1115 | 1115 |
1116 checkUnnamed2977(core.Map<core.String, core.Object> o) { | 1116 checkUnnamed3051(core.Map<core.String, core.Object> o) { |
1117 unittest.expect(o, unittest.hasLength(2)); | 1117 unittest.expect(o, unittest.hasLength(2)); |
1118 var casted7 = (o["x"]) as core.Map; unittest.expect(casted7, unittest.hasLengt
h(3)); unittest.expect(casted7["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted7["bool"], unittest.equals(true)); unittest.expect(casted7["string"],
unittest.equals('foo')); | 1118 var casted7 = (o["x"]) as core.Map; unittest.expect(casted7, unittest.hasLengt
h(3)); unittest.expect(casted7["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted7["bool"], unittest.equals(true)); unittest.expect(casted7["string"],
unittest.equals('foo')); |
1119 var casted8 = (o["y"]) as core.Map; unittest.expect(casted8, unittest.hasLengt
h(3)); unittest.expect(casted8["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted8["bool"], unittest.equals(true)); unittest.expect(casted8["string"],
unittest.equals('foo')); | 1119 var casted8 = (o["y"]) as core.Map; unittest.expect(casted8, unittest.hasLengt
h(3)); unittest.expect(casted8["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted8["bool"], unittest.equals(true)); unittest.expect(casted8["string"],
unittest.equals('foo')); |
1120 } | 1120 } |
1121 | 1121 |
1122 buildUnnamed2978() { | 1122 buildUnnamed3052() { |
1123 var o = new core.Map<core.String, core.Object>(); | 1123 var o = new core.Map<core.String, core.Object>(); |
1124 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1124 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
1125 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1125 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
1126 return o; | 1126 return o; |
1127 } | 1127 } |
1128 | 1128 |
1129 checkUnnamed2978(core.Map<core.String, core.Object> o) { | 1129 checkUnnamed3052(core.Map<core.String, core.Object> o) { |
1130 unittest.expect(o, unittest.hasLength(2)); | 1130 unittest.expect(o, unittest.hasLength(2)); |
1131 var casted9 = (o["x"]) as core.Map; unittest.expect(casted9, unittest.hasLengt
h(3)); unittest.expect(casted9["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted9["bool"], unittest.equals(true)); unittest.expect(casted9["string"],
unittest.equals('foo')); | 1131 var casted9 = (o["x"]) as core.Map; unittest.expect(casted9, unittest.hasLengt
h(3)); unittest.expect(casted9["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted9["bool"], unittest.equals(true)); unittest.expect(casted9["string"],
unittest.equals('foo')); |
1132 var casted10 = (o["y"]) as core.Map; unittest.expect(casted10, unittest.hasLen
gth(3)); unittest.expect(casted10["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted10["bool"], unittest.equals(true)); unittest.expect(casted10["stri
ng"], unittest.equals('foo')); | 1132 var casted10 = (o["y"]) as core.Map; unittest.expect(casted10, unittest.hasLen
gth(3)); unittest.expect(casted10["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted10["bool"], unittest.equals(true)); unittest.expect(casted10["stri
ng"], unittest.equals('foo')); |
1133 } | 1133 } |
1134 | 1134 |
1135 core.int buildCounterOperation = 0; | 1135 core.int buildCounterOperation = 0; |
1136 buildOperation() { | 1136 buildOperation() { |
1137 var o = new api.Operation(); | 1137 var o = new api.Operation(); |
1138 buildCounterOperation++; | 1138 buildCounterOperation++; |
1139 if (buildCounterOperation < 3) { | 1139 if (buildCounterOperation < 3) { |
1140 o.done = true; | 1140 o.done = true; |
1141 o.error = buildStatus(); | 1141 o.error = buildStatus(); |
1142 o.metadata = buildUnnamed2977(); | 1142 o.metadata = buildUnnamed3051(); |
1143 o.name = "foo"; | 1143 o.name = "foo"; |
1144 o.response = buildUnnamed2978(); | 1144 o.response = buildUnnamed3052(); |
1145 } | 1145 } |
1146 buildCounterOperation--; | 1146 buildCounterOperation--; |
1147 return o; | 1147 return o; |
1148 } | 1148 } |
1149 | 1149 |
1150 checkOperation(api.Operation o) { | 1150 checkOperation(api.Operation o) { |
1151 buildCounterOperation++; | 1151 buildCounterOperation++; |
1152 if (buildCounterOperation < 3) { | 1152 if (buildCounterOperation < 3) { |
1153 unittest.expect(o.done, unittest.isTrue); | 1153 unittest.expect(o.done, unittest.isTrue); |
1154 checkStatus(o.error); | 1154 checkStatus(o.error); |
1155 checkUnnamed2977(o.metadata); | 1155 checkUnnamed3051(o.metadata); |
1156 unittest.expect(o.name, unittest.equals('foo')); | 1156 unittest.expect(o.name, unittest.equals('foo')); |
1157 checkUnnamed2978(o.response); | 1157 checkUnnamed3052(o.response); |
1158 } | 1158 } |
1159 buildCounterOperation--; | 1159 buildCounterOperation--; |
1160 } | 1160 } |
1161 | 1161 |
1162 core.int buildCounterOperationEvent = 0; | 1162 core.int buildCounterOperationEvent = 0; |
1163 buildOperationEvent() { | 1163 buildOperationEvent() { |
1164 var o = new api.OperationEvent(); | 1164 var o = new api.OperationEvent(); |
1165 buildCounterOperationEvent++; | 1165 buildCounterOperationEvent++; |
1166 if (buildCounterOperationEvent < 3) { | 1166 if (buildCounterOperationEvent < 3) { |
1167 o.description = "foo"; | 1167 o.description = "foo"; |
1168 o.endTime = "foo"; | 1168 o.endTime = "foo"; |
1169 o.startTime = "foo"; | 1169 o.startTime = "foo"; |
1170 } | 1170 } |
1171 buildCounterOperationEvent--; | 1171 buildCounterOperationEvent--; |
1172 return o; | 1172 return o; |
1173 } | 1173 } |
1174 | 1174 |
1175 checkOperationEvent(api.OperationEvent o) { | 1175 checkOperationEvent(api.OperationEvent o) { |
1176 buildCounterOperationEvent++; | 1176 buildCounterOperationEvent++; |
1177 if (buildCounterOperationEvent < 3) { | 1177 if (buildCounterOperationEvent < 3) { |
1178 unittest.expect(o.description, unittest.equals('foo')); | 1178 unittest.expect(o.description, unittest.equals('foo')); |
1179 unittest.expect(o.endTime, unittest.equals('foo')); | 1179 unittest.expect(o.endTime, unittest.equals('foo')); |
1180 unittest.expect(o.startTime, unittest.equals('foo')); | 1180 unittest.expect(o.startTime, unittest.equals('foo')); |
1181 } | 1181 } |
1182 buildCounterOperationEvent--; | 1182 buildCounterOperationEvent--; |
1183 } | 1183 } |
1184 | 1184 |
1185 buildUnnamed2979() { | 1185 buildUnnamed3053() { |
1186 var o = new core.List<api.OperationEvent>(); | 1186 var o = new core.List<api.OperationEvent>(); |
1187 o.add(buildOperationEvent()); | 1187 o.add(buildOperationEvent()); |
1188 o.add(buildOperationEvent()); | 1188 o.add(buildOperationEvent()); |
1189 return o; | 1189 return o; |
1190 } | 1190 } |
1191 | 1191 |
1192 checkUnnamed2979(core.List<api.OperationEvent> o) { | 1192 checkUnnamed3053(core.List<api.OperationEvent> o) { |
1193 unittest.expect(o, unittest.hasLength(2)); | 1193 unittest.expect(o, unittest.hasLength(2)); |
1194 checkOperationEvent(o[0]); | 1194 checkOperationEvent(o[0]); |
1195 checkOperationEvent(o[1]); | 1195 checkOperationEvent(o[1]); |
1196 } | 1196 } |
1197 | 1197 |
1198 buildUnnamed2980() { | 1198 buildUnnamed3054() { |
| 1199 var o = new core.Map<core.String, core.String>(); |
| 1200 o["x"] = "foo"; |
| 1201 o["y"] = "foo"; |
| 1202 return o; |
| 1203 } |
| 1204 |
| 1205 checkUnnamed3054(core.Map<core.String, core.String> o) { |
| 1206 unittest.expect(o, unittest.hasLength(2)); |
| 1207 unittest.expect(o["x"], unittest.equals('foo')); |
| 1208 unittest.expect(o["y"], unittest.equals('foo')); |
| 1209 } |
| 1210 |
| 1211 buildUnnamed3055() { |
1199 var o = new core.Map<core.String, core.Object>(); | 1212 var o = new core.Map<core.String, core.Object>(); |
1200 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1213 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
1201 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1214 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
1202 return o; | 1215 return o; |
1203 } | 1216 } |
1204 | 1217 |
1205 checkUnnamed2980(core.Map<core.String, core.Object> o) { | 1218 checkUnnamed3055(core.Map<core.String, core.Object> o) { |
1206 unittest.expect(o, unittest.hasLength(2)); | 1219 unittest.expect(o, unittest.hasLength(2)); |
1207 var casted11 = (o["x"]) as core.Map; unittest.expect(casted11, unittest.hasLen
gth(3)); unittest.expect(casted11["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted11["bool"], unittest.equals(true)); unittest.expect(casted11["stri
ng"], unittest.equals('foo')); | 1220 var casted11 = (o["x"]) as core.Map; unittest.expect(casted11, unittest.hasLen
gth(3)); unittest.expect(casted11["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted11["bool"], unittest.equals(true)); unittest.expect(casted11["stri
ng"], unittest.equals('foo')); |
1208 var casted12 = (o["y"]) as core.Map; unittest.expect(casted12, unittest.hasLen
gth(3)); unittest.expect(casted12["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted12["bool"], unittest.equals(true)); unittest.expect(casted12["stri
ng"], unittest.equals('foo')); | 1221 var casted12 = (o["y"]) as core.Map; unittest.expect(casted12, unittest.hasLen
gth(3)); unittest.expect(casted12["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted12["bool"], unittest.equals(true)); unittest.expect(casted12["stri
ng"], unittest.equals('foo')); |
1209 } | 1222 } |
1210 | 1223 |
1211 buildUnnamed2981() { | 1224 buildUnnamed3056() { |
1212 var o = new core.Map<core.String, core.Object>(); | 1225 var o = new core.Map<core.String, core.Object>(); |
1213 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1226 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
1214 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1227 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
1215 return o; | 1228 return o; |
1216 } | 1229 } |
1217 | 1230 |
1218 checkUnnamed2981(core.Map<core.String, core.Object> o) { | 1231 checkUnnamed3056(core.Map<core.String, core.Object> o) { |
1219 unittest.expect(o, unittest.hasLength(2)); | 1232 unittest.expect(o, unittest.hasLength(2)); |
1220 var casted13 = (o["x"]) as core.Map; unittest.expect(casted13, unittest.hasLen
gth(3)); unittest.expect(casted13["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted13["bool"], unittest.equals(true)); unittest.expect(casted13["stri
ng"], unittest.equals('foo')); | 1233 var casted13 = (o["x"]) as core.Map; unittest.expect(casted13, unittest.hasLen
gth(3)); unittest.expect(casted13["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted13["bool"], unittest.equals(true)); unittest.expect(casted13["stri
ng"], unittest.equals('foo')); |
1221 var casted14 = (o["y"]) as core.Map; unittest.expect(casted14, unittest.hasLen
gth(3)); unittest.expect(casted14["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted14["bool"], unittest.equals(true)); unittest.expect(casted14["stri
ng"], unittest.equals('foo')); | 1234 var casted14 = (o["y"]) as core.Map; unittest.expect(casted14, unittest.hasLen
gth(3)); unittest.expect(casted14["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted14["bool"], unittest.equals(true)); unittest.expect(casted14["stri
ng"], unittest.equals('foo')); |
1222 } | 1235 } |
1223 | 1236 |
1224 core.int buildCounterOperationMetadata = 0; | 1237 core.int buildCounterOperationMetadata = 0; |
1225 buildOperationMetadata() { | 1238 buildOperationMetadata() { |
1226 var o = new api.OperationMetadata(); | 1239 var o = new api.OperationMetadata(); |
1227 buildCounterOperationMetadata++; | 1240 buildCounterOperationMetadata++; |
1228 if (buildCounterOperationMetadata < 3) { | 1241 if (buildCounterOperationMetadata < 3) { |
1229 o.clientId = "foo"; | 1242 o.clientId = "foo"; |
1230 o.createTime = "foo"; | 1243 o.createTime = "foo"; |
1231 o.endTime = "foo"; | 1244 o.endTime = "foo"; |
1232 o.events = buildUnnamed2979(); | 1245 o.events = buildUnnamed3053(); |
| 1246 o.labels = buildUnnamed3054(); |
1233 o.projectId = "foo"; | 1247 o.projectId = "foo"; |
1234 o.request = buildUnnamed2980(); | 1248 o.request = buildUnnamed3055(); |
1235 o.runtimeMetadata = buildUnnamed2981(); | 1249 o.runtimeMetadata = buildUnnamed3056(); |
1236 o.startTime = "foo"; | 1250 o.startTime = "foo"; |
1237 } | 1251 } |
1238 buildCounterOperationMetadata--; | 1252 buildCounterOperationMetadata--; |
1239 return o; | 1253 return o; |
1240 } | 1254 } |
1241 | 1255 |
1242 checkOperationMetadata(api.OperationMetadata o) { | 1256 checkOperationMetadata(api.OperationMetadata o) { |
1243 buildCounterOperationMetadata++; | 1257 buildCounterOperationMetadata++; |
1244 if (buildCounterOperationMetadata < 3) { | 1258 if (buildCounterOperationMetadata < 3) { |
1245 unittest.expect(o.clientId, unittest.equals('foo')); | 1259 unittest.expect(o.clientId, unittest.equals('foo')); |
1246 unittest.expect(o.createTime, unittest.equals('foo')); | 1260 unittest.expect(o.createTime, unittest.equals('foo')); |
1247 unittest.expect(o.endTime, unittest.equals('foo')); | 1261 unittest.expect(o.endTime, unittest.equals('foo')); |
1248 checkUnnamed2979(o.events); | 1262 checkUnnamed3053(o.events); |
| 1263 checkUnnamed3054(o.labels); |
1249 unittest.expect(o.projectId, unittest.equals('foo')); | 1264 unittest.expect(o.projectId, unittest.equals('foo')); |
1250 checkUnnamed2980(o.request); | 1265 checkUnnamed3055(o.request); |
1251 checkUnnamed2981(o.runtimeMetadata); | 1266 checkUnnamed3056(o.runtimeMetadata); |
1252 unittest.expect(o.startTime, unittest.equals('foo')); | 1267 unittest.expect(o.startTime, unittest.equals('foo')); |
1253 } | 1268 } |
1254 buildCounterOperationMetadata--; | 1269 buildCounterOperationMetadata--; |
1255 } | 1270 } |
1256 | 1271 |
1257 buildUnnamed2982() { | 1272 buildUnnamed3057() { |
1258 var o = new core.List<api.Binding>(); | 1273 var o = new core.List<api.Binding>(); |
1259 o.add(buildBinding()); | 1274 o.add(buildBinding()); |
1260 o.add(buildBinding()); | 1275 o.add(buildBinding()); |
1261 return o; | 1276 return o; |
1262 } | 1277 } |
1263 | 1278 |
1264 checkUnnamed2982(core.List<api.Binding> o) { | 1279 checkUnnamed3057(core.List<api.Binding> o) { |
1265 unittest.expect(o, unittest.hasLength(2)); | 1280 unittest.expect(o, unittest.hasLength(2)); |
1266 checkBinding(o[0]); | 1281 checkBinding(o[0]); |
1267 checkBinding(o[1]); | 1282 checkBinding(o[1]); |
1268 } | 1283 } |
1269 | 1284 |
1270 core.int buildCounterPolicy = 0; | 1285 core.int buildCounterPolicy = 0; |
1271 buildPolicy() { | 1286 buildPolicy() { |
1272 var o = new api.Policy(); | 1287 var o = new api.Policy(); |
1273 buildCounterPolicy++; | 1288 buildCounterPolicy++; |
1274 if (buildCounterPolicy < 3) { | 1289 if (buildCounterPolicy < 3) { |
1275 o.bindings = buildUnnamed2982(); | 1290 o.bindings = buildUnnamed3057(); |
1276 o.etag = "foo"; | 1291 o.etag = "foo"; |
1277 o.version = 42; | 1292 o.version = 42; |
1278 } | 1293 } |
1279 buildCounterPolicy--; | 1294 buildCounterPolicy--; |
1280 return o; | 1295 return o; |
1281 } | 1296 } |
1282 | 1297 |
1283 checkPolicy(api.Policy o) { | 1298 checkPolicy(api.Policy o) { |
1284 buildCounterPolicy++; | 1299 buildCounterPolicy++; |
1285 if (buildCounterPolicy < 3) { | 1300 if (buildCounterPolicy < 3) { |
1286 checkUnnamed2982(o.bindings); | 1301 checkUnnamed3057(o.bindings); |
1287 unittest.expect(o.etag, unittest.equals('foo')); | 1302 unittest.expect(o.etag, unittest.equals('foo')); |
1288 unittest.expect(o.version, unittest.equals(42)); | 1303 unittest.expect(o.version, unittest.equals(42)); |
1289 } | 1304 } |
1290 buildCounterPolicy--; | 1305 buildCounterPolicy--; |
1291 } | 1306 } |
1292 | 1307 |
1293 core.int buildCounterPosition = 0; | 1308 core.int buildCounterPosition = 0; |
1294 buildPosition() { | 1309 buildPosition() { |
1295 var o = new api.Position(); | 1310 var o = new api.Position(); |
1296 buildCounterPosition++; | 1311 buildCounterPosition++; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1356 checkRange(api.Range o) { | 1371 checkRange(api.Range o) { |
1357 buildCounterRange++; | 1372 buildCounterRange++; |
1358 if (buildCounterRange < 3) { | 1373 if (buildCounterRange < 3) { |
1359 unittest.expect(o.end, unittest.equals('foo')); | 1374 unittest.expect(o.end, unittest.equals('foo')); |
1360 unittest.expect(o.referenceName, unittest.equals('foo')); | 1375 unittest.expect(o.referenceName, unittest.equals('foo')); |
1361 unittest.expect(o.start, unittest.equals('foo')); | 1376 unittest.expect(o.start, unittest.equals('foo')); |
1362 } | 1377 } |
1363 buildCounterRange--; | 1378 buildCounterRange--; |
1364 } | 1379 } |
1365 | 1380 |
1366 buildUnnamed2983() { | 1381 buildUnnamed3058() { |
1367 var o = new core.List<core.int>(); | 1382 var o = new core.List<core.int>(); |
1368 o.add(42); | 1383 o.add(42); |
1369 o.add(42); | 1384 o.add(42); |
1370 return o; | 1385 return o; |
1371 } | 1386 } |
1372 | 1387 |
1373 checkUnnamed2983(core.List<core.int> o) { | 1388 checkUnnamed3058(core.List<core.int> o) { |
1374 unittest.expect(o, unittest.hasLength(2)); | 1389 unittest.expect(o, unittest.hasLength(2)); |
1375 unittest.expect(o[0], unittest.equals(42)); | 1390 unittest.expect(o[0], unittest.equals(42)); |
1376 unittest.expect(o[1], unittest.equals(42)); | 1391 unittest.expect(o[1], unittest.equals(42)); |
1377 } | 1392 } |
1378 | 1393 |
1379 buildUnnamed2984() { | 1394 buildUnnamed3059() { |
1380 var o = new core.List<core.Object>(); | 1395 var o = new core.List<core.Object>(); |
1381 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1396 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
1382 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1397 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
1383 return o; | 1398 return o; |
1384 } | 1399 } |
1385 | 1400 |
1386 checkUnnamed2984(core.List<core.Object> o) { | 1401 checkUnnamed3059(core.List<core.Object> o) { |
1387 unittest.expect(o, unittest.hasLength(2)); | 1402 unittest.expect(o, unittest.hasLength(2)); |
1388 var casted15 = (o[0]) as core.Map; unittest.expect(casted15, unittest.hasLengt
h(3)); unittest.expect(casted15["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted15["bool"], unittest.equals(true)); unittest.expect(casted15["string
"], unittest.equals('foo')); | 1403 var casted15 = (o[0]) as core.Map; unittest.expect(casted15, unittest.hasLengt
h(3)); unittest.expect(casted15["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted15["bool"], unittest.equals(true)); unittest.expect(casted15["string
"], unittest.equals('foo')); |
1389 var casted16 = (o[1]) as core.Map; unittest.expect(casted16, unittest.hasLengt
h(3)); unittest.expect(casted16["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted16["bool"], unittest.equals(true)); unittest.expect(casted16["string
"], unittest.equals('foo')); | 1404 var casted16 = (o[1]) as core.Map; unittest.expect(casted16, unittest.hasLengt
h(3)); unittest.expect(casted16["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted16["bool"], unittest.equals(true)); unittest.expect(casted16["string
"], unittest.equals('foo')); |
1390 } | 1405 } |
1391 | 1406 |
1392 buildUnnamed2985() { | 1407 buildUnnamed3060() { |
1393 var o = new core.Map<core.String, core.List<core.Object>>(); | 1408 var o = new core.Map<core.String, core.List<core.Object>>(); |
1394 o["x"] = buildUnnamed2984(); | 1409 o["x"] = buildUnnamed3059(); |
1395 o["y"] = buildUnnamed2984(); | 1410 o["y"] = buildUnnamed3059(); |
1396 return o; | 1411 return o; |
1397 } | 1412 } |
1398 | 1413 |
1399 checkUnnamed2985(core.Map<core.String, core.List<core.Object>> o) { | 1414 checkUnnamed3060(core.Map<core.String, core.List<core.Object>> o) { |
1400 unittest.expect(o, unittest.hasLength(2)); | 1415 unittest.expect(o, unittest.hasLength(2)); |
1401 checkUnnamed2984(o["x"]); | 1416 checkUnnamed3059(o["x"]); |
1402 checkUnnamed2984(o["y"]); | 1417 checkUnnamed3059(o["y"]); |
1403 } | 1418 } |
1404 | 1419 |
1405 core.int buildCounterRead = 0; | 1420 core.int buildCounterRead = 0; |
1406 buildRead() { | 1421 buildRead() { |
1407 var o = new api.Read(); | 1422 var o = new api.Read(); |
1408 buildCounterRead++; | 1423 buildCounterRead++; |
1409 if (buildCounterRead < 3) { | 1424 if (buildCounterRead < 3) { |
1410 o.alignedQuality = buildUnnamed2983(); | 1425 o.alignedQuality = buildUnnamed3058(); |
1411 o.alignedSequence = "foo"; | 1426 o.alignedSequence = "foo"; |
1412 o.alignment = buildLinearAlignment(); | 1427 o.alignment = buildLinearAlignment(); |
1413 o.duplicateFragment = true; | 1428 o.duplicateFragment = true; |
1414 o.failedVendorQualityChecks = true; | 1429 o.failedVendorQualityChecks = true; |
1415 o.fragmentLength = 42; | 1430 o.fragmentLength = 42; |
1416 o.fragmentName = "foo"; | 1431 o.fragmentName = "foo"; |
1417 o.id = "foo"; | 1432 o.id = "foo"; |
1418 o.info = buildUnnamed2985(); | 1433 o.info = buildUnnamed3060(); |
1419 o.nextMatePosition = buildPosition(); | 1434 o.nextMatePosition = buildPosition(); |
1420 o.numberReads = 42; | 1435 o.numberReads = 42; |
1421 o.properPlacement = true; | 1436 o.properPlacement = true; |
1422 o.readGroupId = "foo"; | 1437 o.readGroupId = "foo"; |
1423 o.readGroupSetId = "foo"; | 1438 o.readGroupSetId = "foo"; |
1424 o.readNumber = 42; | 1439 o.readNumber = 42; |
1425 o.secondaryAlignment = true; | 1440 o.secondaryAlignment = true; |
1426 o.supplementaryAlignment = true; | 1441 o.supplementaryAlignment = true; |
1427 } | 1442 } |
1428 buildCounterRead--; | 1443 buildCounterRead--; |
1429 return o; | 1444 return o; |
1430 } | 1445 } |
1431 | 1446 |
1432 checkRead(api.Read o) { | 1447 checkRead(api.Read o) { |
1433 buildCounterRead++; | 1448 buildCounterRead++; |
1434 if (buildCounterRead < 3) { | 1449 if (buildCounterRead < 3) { |
1435 checkUnnamed2983(o.alignedQuality); | 1450 checkUnnamed3058(o.alignedQuality); |
1436 unittest.expect(o.alignedSequence, unittest.equals('foo')); | 1451 unittest.expect(o.alignedSequence, unittest.equals('foo')); |
1437 checkLinearAlignment(o.alignment); | 1452 checkLinearAlignment(o.alignment); |
1438 unittest.expect(o.duplicateFragment, unittest.isTrue); | 1453 unittest.expect(o.duplicateFragment, unittest.isTrue); |
1439 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); | 1454 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); |
1440 unittest.expect(o.fragmentLength, unittest.equals(42)); | 1455 unittest.expect(o.fragmentLength, unittest.equals(42)); |
1441 unittest.expect(o.fragmentName, unittest.equals('foo')); | 1456 unittest.expect(o.fragmentName, unittest.equals('foo')); |
1442 unittest.expect(o.id, unittest.equals('foo')); | 1457 unittest.expect(o.id, unittest.equals('foo')); |
1443 checkUnnamed2985(o.info); | 1458 checkUnnamed3060(o.info); |
1444 checkPosition(o.nextMatePosition); | 1459 checkPosition(o.nextMatePosition); |
1445 unittest.expect(o.numberReads, unittest.equals(42)); | 1460 unittest.expect(o.numberReads, unittest.equals(42)); |
1446 unittest.expect(o.properPlacement, unittest.isTrue); | 1461 unittest.expect(o.properPlacement, unittest.isTrue); |
1447 unittest.expect(o.readGroupId, unittest.equals('foo')); | 1462 unittest.expect(o.readGroupId, unittest.equals('foo')); |
1448 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 1463 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
1449 unittest.expect(o.readNumber, unittest.equals(42)); | 1464 unittest.expect(o.readNumber, unittest.equals(42)); |
1450 unittest.expect(o.secondaryAlignment, unittest.isTrue); | 1465 unittest.expect(o.secondaryAlignment, unittest.isTrue); |
1451 unittest.expect(o.supplementaryAlignment, unittest.isTrue); | 1466 unittest.expect(o.supplementaryAlignment, unittest.isTrue); |
1452 } | 1467 } |
1453 buildCounterRead--; | 1468 buildCounterRead--; |
1454 } | 1469 } |
1455 | 1470 |
1456 buildUnnamed2986() { | 1471 buildUnnamed3061() { |
1457 var o = new core.List<core.Object>(); | 1472 var o = new core.List<core.Object>(); |
1458 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1473 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
1459 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1474 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
1460 return o; | 1475 return o; |
1461 } | 1476 } |
1462 | 1477 |
1463 checkUnnamed2986(core.List<core.Object> o) { | 1478 checkUnnamed3061(core.List<core.Object> o) { |
1464 unittest.expect(o, unittest.hasLength(2)); | 1479 unittest.expect(o, unittest.hasLength(2)); |
1465 var casted17 = (o[0]) as core.Map; unittest.expect(casted17, unittest.hasLengt
h(3)); unittest.expect(casted17["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted17["bool"], unittest.equals(true)); unittest.expect(casted17["string
"], unittest.equals('foo')); | 1480 var casted17 = (o[0]) as core.Map; unittest.expect(casted17, unittest.hasLengt
h(3)); unittest.expect(casted17["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted17["bool"], unittest.equals(true)); unittest.expect(casted17["string
"], unittest.equals('foo')); |
1466 var casted18 = (o[1]) as core.Map; unittest.expect(casted18, unittest.hasLengt
h(3)); unittest.expect(casted18["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted18["bool"], unittest.equals(true)); unittest.expect(casted18["string
"], unittest.equals('foo')); | 1481 var casted18 = (o[1]) as core.Map; unittest.expect(casted18, unittest.hasLengt
h(3)); unittest.expect(casted18["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted18["bool"], unittest.equals(true)); unittest.expect(casted18["string
"], unittest.equals('foo')); |
1467 } | 1482 } |
1468 | 1483 |
1469 buildUnnamed2987() { | 1484 buildUnnamed3062() { |
1470 var o = new core.Map<core.String, core.List<core.Object>>(); | 1485 var o = new core.Map<core.String, core.List<core.Object>>(); |
1471 o["x"] = buildUnnamed2986(); | 1486 o["x"] = buildUnnamed3061(); |
1472 o["y"] = buildUnnamed2986(); | 1487 o["y"] = buildUnnamed3061(); |
1473 return o; | 1488 return o; |
1474 } | 1489 } |
1475 | 1490 |
1476 checkUnnamed2987(core.Map<core.String, core.List<core.Object>> o) { | 1491 checkUnnamed3062(core.Map<core.String, core.List<core.Object>> o) { |
1477 unittest.expect(o, unittest.hasLength(2)); | 1492 unittest.expect(o, unittest.hasLength(2)); |
1478 checkUnnamed2986(o["x"]); | 1493 checkUnnamed3061(o["x"]); |
1479 checkUnnamed2986(o["y"]); | 1494 checkUnnamed3061(o["y"]); |
1480 } | 1495 } |
1481 | 1496 |
1482 buildUnnamed2988() { | 1497 buildUnnamed3063() { |
1483 var o = new core.List<api.Program>(); | 1498 var o = new core.List<api.Program>(); |
1484 o.add(buildProgram()); | 1499 o.add(buildProgram()); |
1485 o.add(buildProgram()); | 1500 o.add(buildProgram()); |
1486 return o; | 1501 return o; |
1487 } | 1502 } |
1488 | 1503 |
1489 checkUnnamed2988(core.List<api.Program> o) { | 1504 checkUnnamed3063(core.List<api.Program> o) { |
1490 unittest.expect(o, unittest.hasLength(2)); | 1505 unittest.expect(o, unittest.hasLength(2)); |
1491 checkProgram(o[0]); | 1506 checkProgram(o[0]); |
1492 checkProgram(o[1]); | 1507 checkProgram(o[1]); |
1493 } | 1508 } |
1494 | 1509 |
1495 core.int buildCounterReadGroup = 0; | 1510 core.int buildCounterReadGroup = 0; |
1496 buildReadGroup() { | 1511 buildReadGroup() { |
1497 var o = new api.ReadGroup(); | 1512 var o = new api.ReadGroup(); |
1498 buildCounterReadGroup++; | 1513 buildCounterReadGroup++; |
1499 if (buildCounterReadGroup < 3) { | 1514 if (buildCounterReadGroup < 3) { |
1500 o.datasetId = "foo"; | 1515 o.datasetId = "foo"; |
1501 o.description = "foo"; | 1516 o.description = "foo"; |
1502 o.experiment = buildExperiment(); | 1517 o.experiment = buildExperiment(); |
1503 o.id = "foo"; | 1518 o.id = "foo"; |
1504 o.info = buildUnnamed2987(); | 1519 o.info = buildUnnamed3062(); |
1505 o.name = "foo"; | 1520 o.name = "foo"; |
1506 o.predictedInsertSize = 42; | 1521 o.predictedInsertSize = 42; |
1507 o.programs = buildUnnamed2988(); | 1522 o.programs = buildUnnamed3063(); |
1508 o.referenceSetId = "foo"; | 1523 o.referenceSetId = "foo"; |
1509 o.sampleId = "foo"; | 1524 o.sampleId = "foo"; |
1510 } | 1525 } |
1511 buildCounterReadGroup--; | 1526 buildCounterReadGroup--; |
1512 return o; | 1527 return o; |
1513 } | 1528 } |
1514 | 1529 |
1515 checkReadGroup(api.ReadGroup o) { | 1530 checkReadGroup(api.ReadGroup o) { |
1516 buildCounterReadGroup++; | 1531 buildCounterReadGroup++; |
1517 if (buildCounterReadGroup < 3) { | 1532 if (buildCounterReadGroup < 3) { |
1518 unittest.expect(o.datasetId, unittest.equals('foo')); | 1533 unittest.expect(o.datasetId, unittest.equals('foo')); |
1519 unittest.expect(o.description, unittest.equals('foo')); | 1534 unittest.expect(o.description, unittest.equals('foo')); |
1520 checkExperiment(o.experiment); | 1535 checkExperiment(o.experiment); |
1521 unittest.expect(o.id, unittest.equals('foo')); | 1536 unittest.expect(o.id, unittest.equals('foo')); |
1522 checkUnnamed2987(o.info); | 1537 checkUnnamed3062(o.info); |
1523 unittest.expect(o.name, unittest.equals('foo')); | 1538 unittest.expect(o.name, unittest.equals('foo')); |
1524 unittest.expect(o.predictedInsertSize, unittest.equals(42)); | 1539 unittest.expect(o.predictedInsertSize, unittest.equals(42)); |
1525 checkUnnamed2988(o.programs); | 1540 checkUnnamed3063(o.programs); |
1526 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1541 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
1527 unittest.expect(o.sampleId, unittest.equals('foo')); | 1542 unittest.expect(o.sampleId, unittest.equals('foo')); |
1528 } | 1543 } |
1529 buildCounterReadGroup--; | 1544 buildCounterReadGroup--; |
1530 } | 1545 } |
1531 | 1546 |
1532 buildUnnamed2989() { | 1547 buildUnnamed3064() { |
1533 var o = new core.List<core.Object>(); | 1548 var o = new core.List<core.Object>(); |
1534 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1549 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
1535 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1550 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
1536 return o; | 1551 return o; |
1537 } | 1552 } |
1538 | 1553 |
1539 checkUnnamed2989(core.List<core.Object> o) { | 1554 checkUnnamed3064(core.List<core.Object> o) { |
1540 unittest.expect(o, unittest.hasLength(2)); | 1555 unittest.expect(o, unittest.hasLength(2)); |
1541 var casted19 = (o[0]) as core.Map; unittest.expect(casted19, unittest.hasLengt
h(3)); unittest.expect(casted19["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted19["bool"], unittest.equals(true)); unittest.expect(casted19["string
"], unittest.equals('foo')); | 1556 var casted19 = (o[0]) as core.Map; unittest.expect(casted19, unittest.hasLengt
h(3)); unittest.expect(casted19["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted19["bool"], unittest.equals(true)); unittest.expect(casted19["string
"], unittest.equals('foo')); |
1542 var casted20 = (o[1]) as core.Map; unittest.expect(casted20, unittest.hasLengt
h(3)); unittest.expect(casted20["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted20["bool"], unittest.equals(true)); unittest.expect(casted20["string
"], unittest.equals('foo')); | 1557 var casted20 = (o[1]) as core.Map; unittest.expect(casted20, unittest.hasLengt
h(3)); unittest.expect(casted20["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted20["bool"], unittest.equals(true)); unittest.expect(casted20["string
"], unittest.equals('foo')); |
1543 } | 1558 } |
1544 | 1559 |
1545 buildUnnamed2990() { | 1560 buildUnnamed3065() { |
1546 var o = new core.Map<core.String, core.List<core.Object>>(); | 1561 var o = new core.Map<core.String, core.List<core.Object>>(); |
1547 o["x"] = buildUnnamed2989(); | 1562 o["x"] = buildUnnamed3064(); |
1548 o["y"] = buildUnnamed2989(); | 1563 o["y"] = buildUnnamed3064(); |
1549 return o; | 1564 return o; |
1550 } | 1565 } |
1551 | 1566 |
1552 checkUnnamed2990(core.Map<core.String, core.List<core.Object>> o) { | 1567 checkUnnamed3065(core.Map<core.String, core.List<core.Object>> o) { |
1553 unittest.expect(o, unittest.hasLength(2)); | 1568 unittest.expect(o, unittest.hasLength(2)); |
1554 checkUnnamed2989(o["x"]); | 1569 checkUnnamed3064(o["x"]); |
1555 checkUnnamed2989(o["y"]); | 1570 checkUnnamed3064(o["y"]); |
1556 } | 1571 } |
1557 | 1572 |
1558 buildUnnamed2991() { | 1573 buildUnnamed3066() { |
1559 var o = new core.List<api.ReadGroup>(); | 1574 var o = new core.List<api.ReadGroup>(); |
1560 o.add(buildReadGroup()); | 1575 o.add(buildReadGroup()); |
1561 o.add(buildReadGroup()); | 1576 o.add(buildReadGroup()); |
1562 return o; | 1577 return o; |
1563 } | 1578 } |
1564 | 1579 |
1565 checkUnnamed2991(core.List<api.ReadGroup> o) { | 1580 checkUnnamed3066(core.List<api.ReadGroup> o) { |
1566 unittest.expect(o, unittest.hasLength(2)); | 1581 unittest.expect(o, unittest.hasLength(2)); |
1567 checkReadGroup(o[0]); | 1582 checkReadGroup(o[0]); |
1568 checkReadGroup(o[1]); | 1583 checkReadGroup(o[1]); |
1569 } | 1584 } |
1570 | 1585 |
1571 core.int buildCounterReadGroupSet = 0; | 1586 core.int buildCounterReadGroupSet = 0; |
1572 buildReadGroupSet() { | 1587 buildReadGroupSet() { |
1573 var o = new api.ReadGroupSet(); | 1588 var o = new api.ReadGroupSet(); |
1574 buildCounterReadGroupSet++; | 1589 buildCounterReadGroupSet++; |
1575 if (buildCounterReadGroupSet < 3) { | 1590 if (buildCounterReadGroupSet < 3) { |
1576 o.datasetId = "foo"; | 1591 o.datasetId = "foo"; |
1577 o.filename = "foo"; | 1592 o.filename = "foo"; |
1578 o.id = "foo"; | 1593 o.id = "foo"; |
1579 o.info = buildUnnamed2990(); | 1594 o.info = buildUnnamed3065(); |
1580 o.name = "foo"; | 1595 o.name = "foo"; |
1581 o.readGroups = buildUnnamed2991(); | 1596 o.readGroups = buildUnnamed3066(); |
1582 o.referenceSetId = "foo"; | 1597 o.referenceSetId = "foo"; |
1583 } | 1598 } |
1584 buildCounterReadGroupSet--; | 1599 buildCounterReadGroupSet--; |
1585 return o; | 1600 return o; |
1586 } | 1601 } |
1587 | 1602 |
1588 checkReadGroupSet(api.ReadGroupSet o) { | 1603 checkReadGroupSet(api.ReadGroupSet o) { |
1589 buildCounterReadGroupSet++; | 1604 buildCounterReadGroupSet++; |
1590 if (buildCounterReadGroupSet < 3) { | 1605 if (buildCounterReadGroupSet < 3) { |
1591 unittest.expect(o.datasetId, unittest.equals('foo')); | 1606 unittest.expect(o.datasetId, unittest.equals('foo')); |
1592 unittest.expect(o.filename, unittest.equals('foo')); | 1607 unittest.expect(o.filename, unittest.equals('foo')); |
1593 unittest.expect(o.id, unittest.equals('foo')); | 1608 unittest.expect(o.id, unittest.equals('foo')); |
1594 checkUnnamed2990(o.info); | 1609 checkUnnamed3065(o.info); |
1595 unittest.expect(o.name, unittest.equals('foo')); | 1610 unittest.expect(o.name, unittest.equals('foo')); |
1596 checkUnnamed2991(o.readGroups); | 1611 checkUnnamed3066(o.readGroups); |
1597 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1612 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
1598 } | 1613 } |
1599 buildCounterReadGroupSet--; | 1614 buildCounterReadGroupSet--; |
1600 } | 1615 } |
1601 | 1616 |
1602 buildUnnamed2992() { | 1617 buildUnnamed3067() { |
1603 var o = new core.List<core.String>(); | 1618 var o = new core.List<core.String>(); |
1604 o.add("foo"); | 1619 o.add("foo"); |
1605 o.add("foo"); | 1620 o.add("foo"); |
1606 return o; | 1621 return o; |
1607 } | 1622 } |
1608 | 1623 |
1609 checkUnnamed2992(core.List<core.String> o) { | 1624 checkUnnamed3067(core.List<core.String> o) { |
1610 unittest.expect(o, unittest.hasLength(2)); | 1625 unittest.expect(o, unittest.hasLength(2)); |
1611 unittest.expect(o[0], unittest.equals('foo')); | 1626 unittest.expect(o[0], unittest.equals('foo')); |
1612 unittest.expect(o[1], unittest.equals('foo')); | 1627 unittest.expect(o[1], unittest.equals('foo')); |
1613 } | 1628 } |
1614 | 1629 |
1615 core.int buildCounterReference = 0; | 1630 core.int buildCounterReference = 0; |
1616 buildReference() { | 1631 buildReference() { |
1617 var o = new api.Reference(); | 1632 var o = new api.Reference(); |
1618 buildCounterReference++; | 1633 buildCounterReference++; |
1619 if (buildCounterReference < 3) { | 1634 if (buildCounterReference < 3) { |
1620 o.id = "foo"; | 1635 o.id = "foo"; |
1621 o.length = "foo"; | 1636 o.length = "foo"; |
1622 o.md5checksum = "foo"; | 1637 o.md5checksum = "foo"; |
1623 o.name = "foo"; | 1638 o.name = "foo"; |
1624 o.ncbiTaxonId = 42; | 1639 o.ncbiTaxonId = 42; |
1625 o.sourceAccessions = buildUnnamed2992(); | 1640 o.sourceAccessions = buildUnnamed3067(); |
1626 o.sourceUri = "foo"; | 1641 o.sourceUri = "foo"; |
1627 } | 1642 } |
1628 buildCounterReference--; | 1643 buildCounterReference--; |
1629 return o; | 1644 return o; |
1630 } | 1645 } |
1631 | 1646 |
1632 checkReference(api.Reference o) { | 1647 checkReference(api.Reference o) { |
1633 buildCounterReference++; | 1648 buildCounterReference++; |
1634 if (buildCounterReference < 3) { | 1649 if (buildCounterReference < 3) { |
1635 unittest.expect(o.id, unittest.equals('foo')); | 1650 unittest.expect(o.id, unittest.equals('foo')); |
1636 unittest.expect(o.length, unittest.equals('foo')); | 1651 unittest.expect(o.length, unittest.equals('foo')); |
1637 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1652 unittest.expect(o.md5checksum, unittest.equals('foo')); |
1638 unittest.expect(o.name, unittest.equals('foo')); | 1653 unittest.expect(o.name, unittest.equals('foo')); |
1639 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1654 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
1640 checkUnnamed2992(o.sourceAccessions); | 1655 checkUnnamed3067(o.sourceAccessions); |
1641 unittest.expect(o.sourceUri, unittest.equals('foo')); | 1656 unittest.expect(o.sourceUri, unittest.equals('foo')); |
1642 } | 1657 } |
1643 buildCounterReference--; | 1658 buildCounterReference--; |
1644 } | 1659 } |
1645 | 1660 |
1646 core.int buildCounterReferenceBound = 0; | 1661 core.int buildCounterReferenceBound = 0; |
1647 buildReferenceBound() { | 1662 buildReferenceBound() { |
1648 var o = new api.ReferenceBound(); | 1663 var o = new api.ReferenceBound(); |
1649 buildCounterReferenceBound++; | 1664 buildCounterReferenceBound++; |
1650 if (buildCounterReferenceBound < 3) { | 1665 if (buildCounterReferenceBound < 3) { |
1651 o.referenceName = "foo"; | 1666 o.referenceName = "foo"; |
1652 o.upperBound = "foo"; | 1667 o.upperBound = "foo"; |
1653 } | 1668 } |
1654 buildCounterReferenceBound--; | 1669 buildCounterReferenceBound--; |
1655 return o; | 1670 return o; |
1656 } | 1671 } |
1657 | 1672 |
1658 checkReferenceBound(api.ReferenceBound o) { | 1673 checkReferenceBound(api.ReferenceBound o) { |
1659 buildCounterReferenceBound++; | 1674 buildCounterReferenceBound++; |
1660 if (buildCounterReferenceBound < 3) { | 1675 if (buildCounterReferenceBound < 3) { |
1661 unittest.expect(o.referenceName, unittest.equals('foo')); | 1676 unittest.expect(o.referenceName, unittest.equals('foo')); |
1662 unittest.expect(o.upperBound, unittest.equals('foo')); | 1677 unittest.expect(o.upperBound, unittest.equals('foo')); |
1663 } | 1678 } |
1664 buildCounterReferenceBound--; | 1679 buildCounterReferenceBound--; |
1665 } | 1680 } |
1666 | 1681 |
1667 buildUnnamed2993() { | 1682 buildUnnamed3068() { |
1668 var o = new core.List<core.String>(); | 1683 var o = new core.List<core.String>(); |
1669 o.add("foo"); | 1684 o.add("foo"); |
1670 o.add("foo"); | 1685 o.add("foo"); |
1671 return o; | 1686 return o; |
1672 } | 1687 } |
1673 | 1688 |
1674 checkUnnamed2993(core.List<core.String> o) { | 1689 checkUnnamed3068(core.List<core.String> o) { |
1675 unittest.expect(o, unittest.hasLength(2)); | 1690 unittest.expect(o, unittest.hasLength(2)); |
1676 unittest.expect(o[0], unittest.equals('foo')); | 1691 unittest.expect(o[0], unittest.equals('foo')); |
1677 unittest.expect(o[1], unittest.equals('foo')); | 1692 unittest.expect(o[1], unittest.equals('foo')); |
1678 } | 1693 } |
1679 | 1694 |
1680 buildUnnamed2994() { | 1695 buildUnnamed3069() { |
1681 var o = new core.List<core.String>(); | 1696 var o = new core.List<core.String>(); |
1682 o.add("foo"); | 1697 o.add("foo"); |
1683 o.add("foo"); | 1698 o.add("foo"); |
1684 return o; | 1699 return o; |
1685 } | 1700 } |
1686 | 1701 |
1687 checkUnnamed2994(core.List<core.String> o) { | 1702 checkUnnamed3069(core.List<core.String> o) { |
1688 unittest.expect(o, unittest.hasLength(2)); | 1703 unittest.expect(o, unittest.hasLength(2)); |
1689 unittest.expect(o[0], unittest.equals('foo')); | 1704 unittest.expect(o[0], unittest.equals('foo')); |
1690 unittest.expect(o[1], unittest.equals('foo')); | 1705 unittest.expect(o[1], unittest.equals('foo')); |
1691 } | 1706 } |
1692 | 1707 |
1693 core.int buildCounterReferenceSet = 0; | 1708 core.int buildCounterReferenceSet = 0; |
1694 buildReferenceSet() { | 1709 buildReferenceSet() { |
1695 var o = new api.ReferenceSet(); | 1710 var o = new api.ReferenceSet(); |
1696 buildCounterReferenceSet++; | 1711 buildCounterReferenceSet++; |
1697 if (buildCounterReferenceSet < 3) { | 1712 if (buildCounterReferenceSet < 3) { |
1698 o.assemblyId = "foo"; | 1713 o.assemblyId = "foo"; |
1699 o.description = "foo"; | 1714 o.description = "foo"; |
1700 o.id = "foo"; | 1715 o.id = "foo"; |
1701 o.md5checksum = "foo"; | 1716 o.md5checksum = "foo"; |
1702 o.ncbiTaxonId = 42; | 1717 o.ncbiTaxonId = 42; |
1703 o.referenceIds = buildUnnamed2993(); | 1718 o.referenceIds = buildUnnamed3068(); |
1704 o.sourceAccessions = buildUnnamed2994(); | 1719 o.sourceAccessions = buildUnnamed3069(); |
1705 o.sourceUri = "foo"; | 1720 o.sourceUri = "foo"; |
1706 } | 1721 } |
1707 buildCounterReferenceSet--; | 1722 buildCounterReferenceSet--; |
1708 return o; | 1723 return o; |
1709 } | 1724 } |
1710 | 1725 |
1711 checkReferenceSet(api.ReferenceSet o) { | 1726 checkReferenceSet(api.ReferenceSet o) { |
1712 buildCounterReferenceSet++; | 1727 buildCounterReferenceSet++; |
1713 if (buildCounterReferenceSet < 3) { | 1728 if (buildCounterReferenceSet < 3) { |
1714 unittest.expect(o.assemblyId, unittest.equals('foo')); | 1729 unittest.expect(o.assemblyId, unittest.equals('foo')); |
1715 unittest.expect(o.description, unittest.equals('foo')); | 1730 unittest.expect(o.description, unittest.equals('foo')); |
1716 unittest.expect(o.id, unittest.equals('foo')); | 1731 unittest.expect(o.id, unittest.equals('foo')); |
1717 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1732 unittest.expect(o.md5checksum, unittest.equals('foo')); |
1718 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1733 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
1719 checkUnnamed2993(o.referenceIds); | 1734 checkUnnamed3068(o.referenceIds); |
1720 checkUnnamed2994(o.sourceAccessions); | 1735 checkUnnamed3069(o.sourceAccessions); |
1721 unittest.expect(o.sourceUri, unittest.equals('foo')); | 1736 unittest.expect(o.sourceUri, unittest.equals('foo')); |
1722 } | 1737 } |
1723 buildCounterReferenceSet--; | 1738 buildCounterReferenceSet--; |
1724 } | 1739 } |
1725 | 1740 |
1726 core.int buildCounterRuntimeMetadata = 0; | 1741 core.int buildCounterRuntimeMetadata = 0; |
1727 buildRuntimeMetadata() { | 1742 buildRuntimeMetadata() { |
1728 var o = new api.RuntimeMetadata(); | 1743 var o = new api.RuntimeMetadata(); |
1729 buildCounterRuntimeMetadata++; | 1744 buildCounterRuntimeMetadata++; |
1730 if (buildCounterRuntimeMetadata < 3) { | 1745 if (buildCounterRuntimeMetadata < 3) { |
1731 o.computeEngine = buildComputeEngine(); | 1746 o.computeEngine = buildComputeEngine(); |
1732 } | 1747 } |
1733 buildCounterRuntimeMetadata--; | 1748 buildCounterRuntimeMetadata--; |
1734 return o; | 1749 return o; |
1735 } | 1750 } |
1736 | 1751 |
1737 checkRuntimeMetadata(api.RuntimeMetadata o) { | 1752 checkRuntimeMetadata(api.RuntimeMetadata o) { |
1738 buildCounterRuntimeMetadata++; | 1753 buildCounterRuntimeMetadata++; |
1739 if (buildCounterRuntimeMetadata < 3) { | 1754 if (buildCounterRuntimeMetadata < 3) { |
1740 checkComputeEngine(o.computeEngine); | 1755 checkComputeEngine(o.computeEngine); |
1741 } | 1756 } |
1742 buildCounterRuntimeMetadata--; | 1757 buildCounterRuntimeMetadata--; |
1743 } | 1758 } |
1744 | 1759 |
1745 buildUnnamed2995() { | 1760 buildUnnamed3070() { |
1746 var o = new core.List<core.String>(); | 1761 var o = new core.List<core.String>(); |
1747 o.add("foo"); | 1762 o.add("foo"); |
1748 o.add("foo"); | 1763 o.add("foo"); |
1749 return o; | 1764 return o; |
1750 } | 1765 } |
1751 | 1766 |
1752 checkUnnamed2995(core.List<core.String> o) { | 1767 checkUnnamed3070(core.List<core.String> o) { |
1753 unittest.expect(o, unittest.hasLength(2)); | 1768 unittest.expect(o, unittest.hasLength(2)); |
1754 unittest.expect(o[0], unittest.equals('foo')); | 1769 unittest.expect(o[0], unittest.equals('foo')); |
1755 unittest.expect(o[1], unittest.equals('foo')); | 1770 unittest.expect(o[1], unittest.equals('foo')); |
1756 } | 1771 } |
1757 | 1772 |
1758 buildUnnamed2996() { | 1773 buildUnnamed3071() { |
1759 var o = new core.List<core.String>(); | 1774 var o = new core.List<core.String>(); |
1760 o.add("foo"); | 1775 o.add("foo"); |
1761 o.add("foo"); | 1776 o.add("foo"); |
1762 return o; | 1777 return o; |
1763 } | 1778 } |
1764 | 1779 |
1765 checkUnnamed2996(core.List<core.String> o) { | 1780 checkUnnamed3071(core.List<core.String> o) { |
1766 unittest.expect(o, unittest.hasLength(2)); | 1781 unittest.expect(o, unittest.hasLength(2)); |
1767 unittest.expect(o[0], unittest.equals('foo')); | 1782 unittest.expect(o[0], unittest.equals('foo')); |
1768 unittest.expect(o[1], unittest.equals('foo')); | 1783 unittest.expect(o[1], unittest.equals('foo')); |
1769 } | 1784 } |
1770 | 1785 |
1771 core.int buildCounterSearchAnnotationSetsRequest = 0; | 1786 core.int buildCounterSearchAnnotationSetsRequest = 0; |
1772 buildSearchAnnotationSetsRequest() { | 1787 buildSearchAnnotationSetsRequest() { |
1773 var o = new api.SearchAnnotationSetsRequest(); | 1788 var o = new api.SearchAnnotationSetsRequest(); |
1774 buildCounterSearchAnnotationSetsRequest++; | 1789 buildCounterSearchAnnotationSetsRequest++; |
1775 if (buildCounterSearchAnnotationSetsRequest < 3) { | 1790 if (buildCounterSearchAnnotationSetsRequest < 3) { |
1776 o.datasetIds = buildUnnamed2995(); | 1791 o.datasetIds = buildUnnamed3070(); |
1777 o.name = "foo"; | 1792 o.name = "foo"; |
1778 o.pageSize = 42; | 1793 o.pageSize = 42; |
1779 o.pageToken = "foo"; | 1794 o.pageToken = "foo"; |
1780 o.referenceSetId = "foo"; | 1795 o.referenceSetId = "foo"; |
1781 o.types = buildUnnamed2996(); | 1796 o.types = buildUnnamed3071(); |
1782 } | 1797 } |
1783 buildCounterSearchAnnotationSetsRequest--; | 1798 buildCounterSearchAnnotationSetsRequest--; |
1784 return o; | 1799 return o; |
1785 } | 1800 } |
1786 | 1801 |
1787 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { | 1802 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { |
1788 buildCounterSearchAnnotationSetsRequest++; | 1803 buildCounterSearchAnnotationSetsRequest++; |
1789 if (buildCounterSearchAnnotationSetsRequest < 3) { | 1804 if (buildCounterSearchAnnotationSetsRequest < 3) { |
1790 checkUnnamed2995(o.datasetIds); | 1805 checkUnnamed3070(o.datasetIds); |
1791 unittest.expect(o.name, unittest.equals('foo')); | 1806 unittest.expect(o.name, unittest.equals('foo')); |
1792 unittest.expect(o.pageSize, unittest.equals(42)); | 1807 unittest.expect(o.pageSize, unittest.equals(42)); |
1793 unittest.expect(o.pageToken, unittest.equals('foo')); | 1808 unittest.expect(o.pageToken, unittest.equals('foo')); |
1794 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1809 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
1795 checkUnnamed2996(o.types); | 1810 checkUnnamed3071(o.types); |
1796 } | 1811 } |
1797 buildCounterSearchAnnotationSetsRequest--; | 1812 buildCounterSearchAnnotationSetsRequest--; |
1798 } | 1813 } |
1799 | 1814 |
1800 buildUnnamed2997() { | 1815 buildUnnamed3072() { |
1801 var o = new core.List<api.AnnotationSet>(); | 1816 var o = new core.List<api.AnnotationSet>(); |
1802 o.add(buildAnnotationSet()); | 1817 o.add(buildAnnotationSet()); |
1803 o.add(buildAnnotationSet()); | 1818 o.add(buildAnnotationSet()); |
1804 return o; | 1819 return o; |
1805 } | 1820 } |
1806 | 1821 |
1807 checkUnnamed2997(core.List<api.AnnotationSet> o) { | 1822 checkUnnamed3072(core.List<api.AnnotationSet> o) { |
1808 unittest.expect(o, unittest.hasLength(2)); | 1823 unittest.expect(o, unittest.hasLength(2)); |
1809 checkAnnotationSet(o[0]); | 1824 checkAnnotationSet(o[0]); |
1810 checkAnnotationSet(o[1]); | 1825 checkAnnotationSet(o[1]); |
1811 } | 1826 } |
1812 | 1827 |
1813 core.int buildCounterSearchAnnotationSetsResponse = 0; | 1828 core.int buildCounterSearchAnnotationSetsResponse = 0; |
1814 buildSearchAnnotationSetsResponse() { | 1829 buildSearchAnnotationSetsResponse() { |
1815 var o = new api.SearchAnnotationSetsResponse(); | 1830 var o = new api.SearchAnnotationSetsResponse(); |
1816 buildCounterSearchAnnotationSetsResponse++; | 1831 buildCounterSearchAnnotationSetsResponse++; |
1817 if (buildCounterSearchAnnotationSetsResponse < 3) { | 1832 if (buildCounterSearchAnnotationSetsResponse < 3) { |
1818 o.annotationSets = buildUnnamed2997(); | 1833 o.annotationSets = buildUnnamed3072(); |
1819 o.nextPageToken = "foo"; | 1834 o.nextPageToken = "foo"; |
1820 } | 1835 } |
1821 buildCounterSearchAnnotationSetsResponse--; | 1836 buildCounterSearchAnnotationSetsResponse--; |
1822 return o; | 1837 return o; |
1823 } | 1838 } |
1824 | 1839 |
1825 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { | 1840 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { |
1826 buildCounterSearchAnnotationSetsResponse++; | 1841 buildCounterSearchAnnotationSetsResponse++; |
1827 if (buildCounterSearchAnnotationSetsResponse < 3) { | 1842 if (buildCounterSearchAnnotationSetsResponse < 3) { |
1828 checkUnnamed2997(o.annotationSets); | 1843 checkUnnamed3072(o.annotationSets); |
1829 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1844 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1830 } | 1845 } |
1831 buildCounterSearchAnnotationSetsResponse--; | 1846 buildCounterSearchAnnotationSetsResponse--; |
1832 } | 1847 } |
1833 | 1848 |
1834 buildUnnamed2998() { | 1849 buildUnnamed3073() { |
1835 var o = new core.List<core.String>(); | 1850 var o = new core.List<core.String>(); |
1836 o.add("foo"); | 1851 o.add("foo"); |
1837 o.add("foo"); | 1852 o.add("foo"); |
1838 return o; | 1853 return o; |
1839 } | 1854 } |
1840 | 1855 |
1841 checkUnnamed2998(core.List<core.String> o) { | 1856 checkUnnamed3073(core.List<core.String> o) { |
1842 unittest.expect(o, unittest.hasLength(2)); | 1857 unittest.expect(o, unittest.hasLength(2)); |
1843 unittest.expect(o[0], unittest.equals('foo')); | 1858 unittest.expect(o[0], unittest.equals('foo')); |
1844 unittest.expect(o[1], unittest.equals('foo')); | 1859 unittest.expect(o[1], unittest.equals('foo')); |
1845 } | 1860 } |
1846 | 1861 |
1847 core.int buildCounterSearchAnnotationsRequest = 0; | 1862 core.int buildCounterSearchAnnotationsRequest = 0; |
1848 buildSearchAnnotationsRequest() { | 1863 buildSearchAnnotationsRequest() { |
1849 var o = new api.SearchAnnotationsRequest(); | 1864 var o = new api.SearchAnnotationsRequest(); |
1850 buildCounterSearchAnnotationsRequest++; | 1865 buildCounterSearchAnnotationsRequest++; |
1851 if (buildCounterSearchAnnotationsRequest < 3) { | 1866 if (buildCounterSearchAnnotationsRequest < 3) { |
1852 o.annotationSetIds = buildUnnamed2998(); | 1867 o.annotationSetIds = buildUnnamed3073(); |
1853 o.end = "foo"; | 1868 o.end = "foo"; |
1854 o.pageSize = 42; | 1869 o.pageSize = 42; |
1855 o.pageToken = "foo"; | 1870 o.pageToken = "foo"; |
1856 o.referenceId = "foo"; | 1871 o.referenceId = "foo"; |
1857 o.referenceName = "foo"; | 1872 o.referenceName = "foo"; |
1858 o.start = "foo"; | 1873 o.start = "foo"; |
1859 } | 1874 } |
1860 buildCounterSearchAnnotationsRequest--; | 1875 buildCounterSearchAnnotationsRequest--; |
1861 return o; | 1876 return o; |
1862 } | 1877 } |
1863 | 1878 |
1864 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { | 1879 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { |
1865 buildCounterSearchAnnotationsRequest++; | 1880 buildCounterSearchAnnotationsRequest++; |
1866 if (buildCounterSearchAnnotationsRequest < 3) { | 1881 if (buildCounterSearchAnnotationsRequest < 3) { |
1867 checkUnnamed2998(o.annotationSetIds); | 1882 checkUnnamed3073(o.annotationSetIds); |
1868 unittest.expect(o.end, unittest.equals('foo')); | 1883 unittest.expect(o.end, unittest.equals('foo')); |
1869 unittest.expect(o.pageSize, unittest.equals(42)); | 1884 unittest.expect(o.pageSize, unittest.equals(42)); |
1870 unittest.expect(o.pageToken, unittest.equals('foo')); | 1885 unittest.expect(o.pageToken, unittest.equals('foo')); |
1871 unittest.expect(o.referenceId, unittest.equals('foo')); | 1886 unittest.expect(o.referenceId, unittest.equals('foo')); |
1872 unittest.expect(o.referenceName, unittest.equals('foo')); | 1887 unittest.expect(o.referenceName, unittest.equals('foo')); |
1873 unittest.expect(o.start, unittest.equals('foo')); | 1888 unittest.expect(o.start, unittest.equals('foo')); |
1874 } | 1889 } |
1875 buildCounterSearchAnnotationsRequest--; | 1890 buildCounterSearchAnnotationsRequest--; |
1876 } | 1891 } |
1877 | 1892 |
1878 buildUnnamed2999() { | 1893 buildUnnamed3074() { |
1879 var o = new core.List<api.Annotation>(); | 1894 var o = new core.List<api.Annotation>(); |
1880 o.add(buildAnnotation()); | 1895 o.add(buildAnnotation()); |
1881 o.add(buildAnnotation()); | 1896 o.add(buildAnnotation()); |
1882 return o; | 1897 return o; |
1883 } | 1898 } |
1884 | 1899 |
1885 checkUnnamed2999(core.List<api.Annotation> o) { | 1900 checkUnnamed3074(core.List<api.Annotation> o) { |
1886 unittest.expect(o, unittest.hasLength(2)); | 1901 unittest.expect(o, unittest.hasLength(2)); |
1887 checkAnnotation(o[0]); | 1902 checkAnnotation(o[0]); |
1888 checkAnnotation(o[1]); | 1903 checkAnnotation(o[1]); |
1889 } | 1904 } |
1890 | 1905 |
1891 core.int buildCounterSearchAnnotationsResponse = 0; | 1906 core.int buildCounterSearchAnnotationsResponse = 0; |
1892 buildSearchAnnotationsResponse() { | 1907 buildSearchAnnotationsResponse() { |
1893 var o = new api.SearchAnnotationsResponse(); | 1908 var o = new api.SearchAnnotationsResponse(); |
1894 buildCounterSearchAnnotationsResponse++; | 1909 buildCounterSearchAnnotationsResponse++; |
1895 if (buildCounterSearchAnnotationsResponse < 3) { | 1910 if (buildCounterSearchAnnotationsResponse < 3) { |
1896 o.annotations = buildUnnamed2999(); | 1911 o.annotations = buildUnnamed3074(); |
1897 o.nextPageToken = "foo"; | 1912 o.nextPageToken = "foo"; |
1898 } | 1913 } |
1899 buildCounterSearchAnnotationsResponse--; | 1914 buildCounterSearchAnnotationsResponse--; |
1900 return o; | 1915 return o; |
1901 } | 1916 } |
1902 | 1917 |
1903 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { | 1918 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { |
1904 buildCounterSearchAnnotationsResponse++; | 1919 buildCounterSearchAnnotationsResponse++; |
1905 if (buildCounterSearchAnnotationsResponse < 3) { | 1920 if (buildCounterSearchAnnotationsResponse < 3) { |
1906 checkUnnamed2999(o.annotations); | 1921 checkUnnamed3074(o.annotations); |
1907 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1922 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1908 } | 1923 } |
1909 buildCounterSearchAnnotationsResponse--; | 1924 buildCounterSearchAnnotationsResponse--; |
1910 } | 1925 } |
1911 | 1926 |
1912 buildUnnamed3000() { | 1927 buildUnnamed3075() { |
1913 var o = new core.List<core.String>(); | 1928 var o = new core.List<core.String>(); |
1914 o.add("foo"); | 1929 o.add("foo"); |
1915 o.add("foo"); | 1930 o.add("foo"); |
1916 return o; | 1931 return o; |
1917 } | 1932 } |
1918 | 1933 |
1919 checkUnnamed3000(core.List<core.String> o) { | 1934 checkUnnamed3075(core.List<core.String> o) { |
1920 unittest.expect(o, unittest.hasLength(2)); | 1935 unittest.expect(o, unittest.hasLength(2)); |
1921 unittest.expect(o[0], unittest.equals('foo')); | 1936 unittest.expect(o[0], unittest.equals('foo')); |
1922 unittest.expect(o[1], unittest.equals('foo')); | 1937 unittest.expect(o[1], unittest.equals('foo')); |
1923 } | 1938 } |
1924 | 1939 |
1925 core.int buildCounterSearchCallSetsRequest = 0; | 1940 core.int buildCounterSearchCallSetsRequest = 0; |
1926 buildSearchCallSetsRequest() { | 1941 buildSearchCallSetsRequest() { |
1927 var o = new api.SearchCallSetsRequest(); | 1942 var o = new api.SearchCallSetsRequest(); |
1928 buildCounterSearchCallSetsRequest++; | 1943 buildCounterSearchCallSetsRequest++; |
1929 if (buildCounterSearchCallSetsRequest < 3) { | 1944 if (buildCounterSearchCallSetsRequest < 3) { |
1930 o.name = "foo"; | 1945 o.name = "foo"; |
1931 o.pageSize = 42; | 1946 o.pageSize = 42; |
1932 o.pageToken = "foo"; | 1947 o.pageToken = "foo"; |
1933 o.variantSetIds = buildUnnamed3000(); | 1948 o.variantSetIds = buildUnnamed3075(); |
1934 } | 1949 } |
1935 buildCounterSearchCallSetsRequest--; | 1950 buildCounterSearchCallSetsRequest--; |
1936 return o; | 1951 return o; |
1937 } | 1952 } |
1938 | 1953 |
1939 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { | 1954 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { |
1940 buildCounterSearchCallSetsRequest++; | 1955 buildCounterSearchCallSetsRequest++; |
1941 if (buildCounterSearchCallSetsRequest < 3) { | 1956 if (buildCounterSearchCallSetsRequest < 3) { |
1942 unittest.expect(o.name, unittest.equals('foo')); | 1957 unittest.expect(o.name, unittest.equals('foo')); |
1943 unittest.expect(o.pageSize, unittest.equals(42)); | 1958 unittest.expect(o.pageSize, unittest.equals(42)); |
1944 unittest.expect(o.pageToken, unittest.equals('foo')); | 1959 unittest.expect(o.pageToken, unittest.equals('foo')); |
1945 checkUnnamed3000(o.variantSetIds); | 1960 checkUnnamed3075(o.variantSetIds); |
1946 } | 1961 } |
1947 buildCounterSearchCallSetsRequest--; | 1962 buildCounterSearchCallSetsRequest--; |
1948 } | 1963 } |
1949 | 1964 |
1950 buildUnnamed3001() { | 1965 buildUnnamed3076() { |
1951 var o = new core.List<api.CallSet>(); | 1966 var o = new core.List<api.CallSet>(); |
1952 o.add(buildCallSet()); | 1967 o.add(buildCallSet()); |
1953 o.add(buildCallSet()); | 1968 o.add(buildCallSet()); |
1954 return o; | 1969 return o; |
1955 } | 1970 } |
1956 | 1971 |
1957 checkUnnamed3001(core.List<api.CallSet> o) { | 1972 checkUnnamed3076(core.List<api.CallSet> o) { |
1958 unittest.expect(o, unittest.hasLength(2)); | 1973 unittest.expect(o, unittest.hasLength(2)); |
1959 checkCallSet(o[0]); | 1974 checkCallSet(o[0]); |
1960 checkCallSet(o[1]); | 1975 checkCallSet(o[1]); |
1961 } | 1976 } |
1962 | 1977 |
1963 core.int buildCounterSearchCallSetsResponse = 0; | 1978 core.int buildCounterSearchCallSetsResponse = 0; |
1964 buildSearchCallSetsResponse() { | 1979 buildSearchCallSetsResponse() { |
1965 var o = new api.SearchCallSetsResponse(); | 1980 var o = new api.SearchCallSetsResponse(); |
1966 buildCounterSearchCallSetsResponse++; | 1981 buildCounterSearchCallSetsResponse++; |
1967 if (buildCounterSearchCallSetsResponse < 3) { | 1982 if (buildCounterSearchCallSetsResponse < 3) { |
1968 o.callSets = buildUnnamed3001(); | 1983 o.callSets = buildUnnamed3076(); |
1969 o.nextPageToken = "foo"; | 1984 o.nextPageToken = "foo"; |
1970 } | 1985 } |
1971 buildCounterSearchCallSetsResponse--; | 1986 buildCounterSearchCallSetsResponse--; |
1972 return o; | 1987 return o; |
1973 } | 1988 } |
1974 | 1989 |
1975 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { | 1990 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { |
1976 buildCounterSearchCallSetsResponse++; | 1991 buildCounterSearchCallSetsResponse++; |
1977 if (buildCounterSearchCallSetsResponse < 3) { | 1992 if (buildCounterSearchCallSetsResponse < 3) { |
1978 checkUnnamed3001(o.callSets); | 1993 checkUnnamed3076(o.callSets); |
1979 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1994 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1980 } | 1995 } |
1981 buildCounterSearchCallSetsResponse--; | 1996 buildCounterSearchCallSetsResponse--; |
1982 } | 1997 } |
1983 | 1998 |
1984 buildUnnamed3002() { | 1999 buildUnnamed3077() { |
1985 var o = new core.List<core.String>(); | 2000 var o = new core.List<core.String>(); |
1986 o.add("foo"); | 2001 o.add("foo"); |
1987 o.add("foo"); | 2002 o.add("foo"); |
1988 return o; | 2003 return o; |
1989 } | 2004 } |
1990 | 2005 |
1991 checkUnnamed3002(core.List<core.String> o) { | 2006 checkUnnamed3077(core.List<core.String> o) { |
1992 unittest.expect(o, unittest.hasLength(2)); | 2007 unittest.expect(o, unittest.hasLength(2)); |
1993 unittest.expect(o[0], unittest.equals('foo')); | 2008 unittest.expect(o[0], unittest.equals('foo')); |
1994 unittest.expect(o[1], unittest.equals('foo')); | 2009 unittest.expect(o[1], unittest.equals('foo')); |
1995 } | 2010 } |
1996 | 2011 |
1997 core.int buildCounterSearchReadGroupSetsRequest = 0; | 2012 core.int buildCounterSearchReadGroupSetsRequest = 0; |
1998 buildSearchReadGroupSetsRequest() { | 2013 buildSearchReadGroupSetsRequest() { |
1999 var o = new api.SearchReadGroupSetsRequest(); | 2014 var o = new api.SearchReadGroupSetsRequest(); |
2000 buildCounterSearchReadGroupSetsRequest++; | 2015 buildCounterSearchReadGroupSetsRequest++; |
2001 if (buildCounterSearchReadGroupSetsRequest < 3) { | 2016 if (buildCounterSearchReadGroupSetsRequest < 3) { |
2002 o.datasetIds = buildUnnamed3002(); | 2017 o.datasetIds = buildUnnamed3077(); |
2003 o.name = "foo"; | 2018 o.name = "foo"; |
2004 o.pageSize = 42; | 2019 o.pageSize = 42; |
2005 o.pageToken = "foo"; | 2020 o.pageToken = "foo"; |
2006 } | 2021 } |
2007 buildCounterSearchReadGroupSetsRequest--; | 2022 buildCounterSearchReadGroupSetsRequest--; |
2008 return o; | 2023 return o; |
2009 } | 2024 } |
2010 | 2025 |
2011 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { | 2026 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { |
2012 buildCounterSearchReadGroupSetsRequest++; | 2027 buildCounterSearchReadGroupSetsRequest++; |
2013 if (buildCounterSearchReadGroupSetsRequest < 3) { | 2028 if (buildCounterSearchReadGroupSetsRequest < 3) { |
2014 checkUnnamed3002(o.datasetIds); | 2029 checkUnnamed3077(o.datasetIds); |
2015 unittest.expect(o.name, unittest.equals('foo')); | 2030 unittest.expect(o.name, unittest.equals('foo')); |
2016 unittest.expect(o.pageSize, unittest.equals(42)); | 2031 unittest.expect(o.pageSize, unittest.equals(42)); |
2017 unittest.expect(o.pageToken, unittest.equals('foo')); | 2032 unittest.expect(o.pageToken, unittest.equals('foo')); |
2018 } | 2033 } |
2019 buildCounterSearchReadGroupSetsRequest--; | 2034 buildCounterSearchReadGroupSetsRequest--; |
2020 } | 2035 } |
2021 | 2036 |
2022 buildUnnamed3003() { | 2037 buildUnnamed3078() { |
2023 var o = new core.List<api.ReadGroupSet>(); | 2038 var o = new core.List<api.ReadGroupSet>(); |
2024 o.add(buildReadGroupSet()); | 2039 o.add(buildReadGroupSet()); |
2025 o.add(buildReadGroupSet()); | 2040 o.add(buildReadGroupSet()); |
2026 return o; | 2041 return o; |
2027 } | 2042 } |
2028 | 2043 |
2029 checkUnnamed3003(core.List<api.ReadGroupSet> o) { | 2044 checkUnnamed3078(core.List<api.ReadGroupSet> o) { |
2030 unittest.expect(o, unittest.hasLength(2)); | 2045 unittest.expect(o, unittest.hasLength(2)); |
2031 checkReadGroupSet(o[0]); | 2046 checkReadGroupSet(o[0]); |
2032 checkReadGroupSet(o[1]); | 2047 checkReadGroupSet(o[1]); |
2033 } | 2048 } |
2034 | 2049 |
2035 core.int buildCounterSearchReadGroupSetsResponse = 0; | 2050 core.int buildCounterSearchReadGroupSetsResponse = 0; |
2036 buildSearchReadGroupSetsResponse() { | 2051 buildSearchReadGroupSetsResponse() { |
2037 var o = new api.SearchReadGroupSetsResponse(); | 2052 var o = new api.SearchReadGroupSetsResponse(); |
2038 buildCounterSearchReadGroupSetsResponse++; | 2053 buildCounterSearchReadGroupSetsResponse++; |
2039 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2054 if (buildCounterSearchReadGroupSetsResponse < 3) { |
2040 o.nextPageToken = "foo"; | 2055 o.nextPageToken = "foo"; |
2041 o.readGroupSets = buildUnnamed3003(); | 2056 o.readGroupSets = buildUnnamed3078(); |
2042 } | 2057 } |
2043 buildCounterSearchReadGroupSetsResponse--; | 2058 buildCounterSearchReadGroupSetsResponse--; |
2044 return o; | 2059 return o; |
2045 } | 2060 } |
2046 | 2061 |
2047 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { | 2062 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { |
2048 buildCounterSearchReadGroupSetsResponse++; | 2063 buildCounterSearchReadGroupSetsResponse++; |
2049 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2064 if (buildCounterSearchReadGroupSetsResponse < 3) { |
2050 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2065 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2051 checkUnnamed3003(o.readGroupSets); | 2066 checkUnnamed3078(o.readGroupSets); |
2052 } | 2067 } |
2053 buildCounterSearchReadGroupSetsResponse--; | 2068 buildCounterSearchReadGroupSetsResponse--; |
2054 } | 2069 } |
2055 | 2070 |
2056 buildUnnamed3004() { | 2071 buildUnnamed3079() { |
2057 var o = new core.List<core.String>(); | 2072 var o = new core.List<core.String>(); |
2058 o.add("foo"); | 2073 o.add("foo"); |
2059 o.add("foo"); | 2074 o.add("foo"); |
2060 return o; | 2075 return o; |
2061 } | 2076 } |
2062 | 2077 |
2063 checkUnnamed3004(core.List<core.String> o) { | 2078 checkUnnamed3079(core.List<core.String> o) { |
2064 unittest.expect(o, unittest.hasLength(2)); | 2079 unittest.expect(o, unittest.hasLength(2)); |
2065 unittest.expect(o[0], unittest.equals('foo')); | 2080 unittest.expect(o[0], unittest.equals('foo')); |
2066 unittest.expect(o[1], unittest.equals('foo')); | 2081 unittest.expect(o[1], unittest.equals('foo')); |
2067 } | 2082 } |
2068 | 2083 |
2069 buildUnnamed3005() { | 2084 buildUnnamed3080() { |
2070 var o = new core.List<core.String>(); | 2085 var o = new core.List<core.String>(); |
2071 o.add("foo"); | 2086 o.add("foo"); |
2072 o.add("foo"); | 2087 o.add("foo"); |
2073 return o; | 2088 return o; |
2074 } | 2089 } |
2075 | 2090 |
2076 checkUnnamed3005(core.List<core.String> o) { | 2091 checkUnnamed3080(core.List<core.String> o) { |
2077 unittest.expect(o, unittest.hasLength(2)); | 2092 unittest.expect(o, unittest.hasLength(2)); |
2078 unittest.expect(o[0], unittest.equals('foo')); | 2093 unittest.expect(o[0], unittest.equals('foo')); |
2079 unittest.expect(o[1], unittest.equals('foo')); | 2094 unittest.expect(o[1], unittest.equals('foo')); |
2080 } | 2095 } |
2081 | 2096 |
2082 core.int buildCounterSearchReadsRequest = 0; | 2097 core.int buildCounterSearchReadsRequest = 0; |
2083 buildSearchReadsRequest() { | 2098 buildSearchReadsRequest() { |
2084 var o = new api.SearchReadsRequest(); | 2099 var o = new api.SearchReadsRequest(); |
2085 buildCounterSearchReadsRequest++; | 2100 buildCounterSearchReadsRequest++; |
2086 if (buildCounterSearchReadsRequest < 3) { | 2101 if (buildCounterSearchReadsRequest < 3) { |
2087 o.end = "foo"; | 2102 o.end = "foo"; |
2088 o.pageSize = 42; | 2103 o.pageSize = 42; |
2089 o.pageToken = "foo"; | 2104 o.pageToken = "foo"; |
2090 o.readGroupIds = buildUnnamed3004(); | 2105 o.readGroupIds = buildUnnamed3079(); |
2091 o.readGroupSetIds = buildUnnamed3005(); | 2106 o.readGroupSetIds = buildUnnamed3080(); |
2092 o.referenceName = "foo"; | 2107 o.referenceName = "foo"; |
2093 o.start = "foo"; | 2108 o.start = "foo"; |
2094 } | 2109 } |
2095 buildCounterSearchReadsRequest--; | 2110 buildCounterSearchReadsRequest--; |
2096 return o; | 2111 return o; |
2097 } | 2112 } |
2098 | 2113 |
2099 checkSearchReadsRequest(api.SearchReadsRequest o) { | 2114 checkSearchReadsRequest(api.SearchReadsRequest o) { |
2100 buildCounterSearchReadsRequest++; | 2115 buildCounterSearchReadsRequest++; |
2101 if (buildCounterSearchReadsRequest < 3) { | 2116 if (buildCounterSearchReadsRequest < 3) { |
2102 unittest.expect(o.end, unittest.equals('foo')); | 2117 unittest.expect(o.end, unittest.equals('foo')); |
2103 unittest.expect(o.pageSize, unittest.equals(42)); | 2118 unittest.expect(o.pageSize, unittest.equals(42)); |
2104 unittest.expect(o.pageToken, unittest.equals('foo')); | 2119 unittest.expect(o.pageToken, unittest.equals('foo')); |
2105 checkUnnamed3004(o.readGroupIds); | 2120 checkUnnamed3079(o.readGroupIds); |
2106 checkUnnamed3005(o.readGroupSetIds); | 2121 checkUnnamed3080(o.readGroupSetIds); |
2107 unittest.expect(o.referenceName, unittest.equals('foo')); | 2122 unittest.expect(o.referenceName, unittest.equals('foo')); |
2108 unittest.expect(o.start, unittest.equals('foo')); | 2123 unittest.expect(o.start, unittest.equals('foo')); |
2109 } | 2124 } |
2110 buildCounterSearchReadsRequest--; | 2125 buildCounterSearchReadsRequest--; |
2111 } | 2126 } |
2112 | 2127 |
2113 buildUnnamed3006() { | 2128 buildUnnamed3081() { |
2114 var o = new core.List<api.Read>(); | 2129 var o = new core.List<api.Read>(); |
2115 o.add(buildRead()); | 2130 o.add(buildRead()); |
2116 o.add(buildRead()); | 2131 o.add(buildRead()); |
2117 return o; | 2132 return o; |
2118 } | 2133 } |
2119 | 2134 |
2120 checkUnnamed3006(core.List<api.Read> o) { | 2135 checkUnnamed3081(core.List<api.Read> o) { |
2121 unittest.expect(o, unittest.hasLength(2)); | 2136 unittest.expect(o, unittest.hasLength(2)); |
2122 checkRead(o[0]); | 2137 checkRead(o[0]); |
2123 checkRead(o[1]); | 2138 checkRead(o[1]); |
2124 } | 2139 } |
2125 | 2140 |
2126 core.int buildCounterSearchReadsResponse = 0; | 2141 core.int buildCounterSearchReadsResponse = 0; |
2127 buildSearchReadsResponse() { | 2142 buildSearchReadsResponse() { |
2128 var o = new api.SearchReadsResponse(); | 2143 var o = new api.SearchReadsResponse(); |
2129 buildCounterSearchReadsResponse++; | 2144 buildCounterSearchReadsResponse++; |
2130 if (buildCounterSearchReadsResponse < 3) { | 2145 if (buildCounterSearchReadsResponse < 3) { |
2131 o.alignments = buildUnnamed3006(); | 2146 o.alignments = buildUnnamed3081(); |
2132 o.nextPageToken = "foo"; | 2147 o.nextPageToken = "foo"; |
2133 } | 2148 } |
2134 buildCounterSearchReadsResponse--; | 2149 buildCounterSearchReadsResponse--; |
2135 return o; | 2150 return o; |
2136 } | 2151 } |
2137 | 2152 |
2138 checkSearchReadsResponse(api.SearchReadsResponse o) { | 2153 checkSearchReadsResponse(api.SearchReadsResponse o) { |
2139 buildCounterSearchReadsResponse++; | 2154 buildCounterSearchReadsResponse++; |
2140 if (buildCounterSearchReadsResponse < 3) { | 2155 if (buildCounterSearchReadsResponse < 3) { |
2141 checkUnnamed3006(o.alignments); | 2156 checkUnnamed3081(o.alignments); |
2142 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2157 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2143 } | 2158 } |
2144 buildCounterSearchReadsResponse--; | 2159 buildCounterSearchReadsResponse--; |
2145 } | 2160 } |
2146 | 2161 |
2147 buildUnnamed3007() { | 2162 buildUnnamed3082() { |
2148 var o = new core.List<core.String>(); | 2163 var o = new core.List<core.String>(); |
2149 o.add("foo"); | 2164 o.add("foo"); |
2150 o.add("foo"); | 2165 o.add("foo"); |
2151 return o; | 2166 return o; |
2152 } | 2167 } |
2153 | 2168 |
2154 checkUnnamed3007(core.List<core.String> o) { | 2169 checkUnnamed3082(core.List<core.String> o) { |
2155 unittest.expect(o, unittest.hasLength(2)); | 2170 unittest.expect(o, unittest.hasLength(2)); |
2156 unittest.expect(o[0], unittest.equals('foo')); | 2171 unittest.expect(o[0], unittest.equals('foo')); |
2157 unittest.expect(o[1], unittest.equals('foo')); | 2172 unittest.expect(o[1], unittest.equals('foo')); |
2158 } | 2173 } |
2159 | 2174 |
2160 buildUnnamed3008() { | 2175 buildUnnamed3083() { |
2161 var o = new core.List<core.String>(); | 2176 var o = new core.List<core.String>(); |
2162 o.add("foo"); | 2177 o.add("foo"); |
2163 o.add("foo"); | 2178 o.add("foo"); |
2164 return o; | 2179 return o; |
2165 } | 2180 } |
2166 | 2181 |
2167 checkUnnamed3008(core.List<core.String> o) { | 2182 checkUnnamed3083(core.List<core.String> o) { |
2168 unittest.expect(o, unittest.hasLength(2)); | 2183 unittest.expect(o, unittest.hasLength(2)); |
2169 unittest.expect(o[0], unittest.equals('foo')); | 2184 unittest.expect(o[0], unittest.equals('foo')); |
2170 unittest.expect(o[1], unittest.equals('foo')); | 2185 unittest.expect(o[1], unittest.equals('foo')); |
2171 } | 2186 } |
2172 | 2187 |
2173 core.int buildCounterSearchReferenceSetsRequest = 0; | 2188 core.int buildCounterSearchReferenceSetsRequest = 0; |
2174 buildSearchReferenceSetsRequest() { | 2189 buildSearchReferenceSetsRequest() { |
2175 var o = new api.SearchReferenceSetsRequest(); | 2190 var o = new api.SearchReferenceSetsRequest(); |
2176 buildCounterSearchReferenceSetsRequest++; | 2191 buildCounterSearchReferenceSetsRequest++; |
2177 if (buildCounterSearchReferenceSetsRequest < 3) { | 2192 if (buildCounterSearchReferenceSetsRequest < 3) { |
2178 o.accessions = buildUnnamed3007(); | 2193 o.accessions = buildUnnamed3082(); |
2179 o.assemblyId = "foo"; | 2194 o.assemblyId = "foo"; |
2180 o.md5checksums = buildUnnamed3008(); | 2195 o.md5checksums = buildUnnamed3083(); |
2181 o.pageSize = 42; | 2196 o.pageSize = 42; |
2182 o.pageToken = "foo"; | 2197 o.pageToken = "foo"; |
2183 } | 2198 } |
2184 buildCounterSearchReferenceSetsRequest--; | 2199 buildCounterSearchReferenceSetsRequest--; |
2185 return o; | 2200 return o; |
2186 } | 2201 } |
2187 | 2202 |
2188 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { | 2203 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { |
2189 buildCounterSearchReferenceSetsRequest++; | 2204 buildCounterSearchReferenceSetsRequest++; |
2190 if (buildCounterSearchReferenceSetsRequest < 3) { | 2205 if (buildCounterSearchReferenceSetsRequest < 3) { |
2191 checkUnnamed3007(o.accessions); | 2206 checkUnnamed3082(o.accessions); |
2192 unittest.expect(o.assemblyId, unittest.equals('foo')); | 2207 unittest.expect(o.assemblyId, unittest.equals('foo')); |
2193 checkUnnamed3008(o.md5checksums); | 2208 checkUnnamed3083(o.md5checksums); |
2194 unittest.expect(o.pageSize, unittest.equals(42)); | 2209 unittest.expect(o.pageSize, unittest.equals(42)); |
2195 unittest.expect(o.pageToken, unittest.equals('foo')); | 2210 unittest.expect(o.pageToken, unittest.equals('foo')); |
2196 } | 2211 } |
2197 buildCounterSearchReferenceSetsRequest--; | 2212 buildCounterSearchReferenceSetsRequest--; |
2198 } | 2213 } |
2199 | 2214 |
2200 buildUnnamed3009() { | 2215 buildUnnamed3084() { |
2201 var o = new core.List<api.ReferenceSet>(); | 2216 var o = new core.List<api.ReferenceSet>(); |
2202 o.add(buildReferenceSet()); | 2217 o.add(buildReferenceSet()); |
2203 o.add(buildReferenceSet()); | 2218 o.add(buildReferenceSet()); |
2204 return o; | 2219 return o; |
2205 } | 2220 } |
2206 | 2221 |
2207 checkUnnamed3009(core.List<api.ReferenceSet> o) { | 2222 checkUnnamed3084(core.List<api.ReferenceSet> o) { |
2208 unittest.expect(o, unittest.hasLength(2)); | 2223 unittest.expect(o, unittest.hasLength(2)); |
2209 checkReferenceSet(o[0]); | 2224 checkReferenceSet(o[0]); |
2210 checkReferenceSet(o[1]); | 2225 checkReferenceSet(o[1]); |
2211 } | 2226 } |
2212 | 2227 |
2213 core.int buildCounterSearchReferenceSetsResponse = 0; | 2228 core.int buildCounterSearchReferenceSetsResponse = 0; |
2214 buildSearchReferenceSetsResponse() { | 2229 buildSearchReferenceSetsResponse() { |
2215 var o = new api.SearchReferenceSetsResponse(); | 2230 var o = new api.SearchReferenceSetsResponse(); |
2216 buildCounterSearchReferenceSetsResponse++; | 2231 buildCounterSearchReferenceSetsResponse++; |
2217 if (buildCounterSearchReferenceSetsResponse < 3) { | 2232 if (buildCounterSearchReferenceSetsResponse < 3) { |
2218 o.nextPageToken = "foo"; | 2233 o.nextPageToken = "foo"; |
2219 o.referenceSets = buildUnnamed3009(); | 2234 o.referenceSets = buildUnnamed3084(); |
2220 } | 2235 } |
2221 buildCounterSearchReferenceSetsResponse--; | 2236 buildCounterSearchReferenceSetsResponse--; |
2222 return o; | 2237 return o; |
2223 } | 2238 } |
2224 | 2239 |
2225 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { | 2240 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { |
2226 buildCounterSearchReferenceSetsResponse++; | 2241 buildCounterSearchReferenceSetsResponse++; |
2227 if (buildCounterSearchReferenceSetsResponse < 3) { | 2242 if (buildCounterSearchReferenceSetsResponse < 3) { |
2228 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2243 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2229 checkUnnamed3009(o.referenceSets); | 2244 checkUnnamed3084(o.referenceSets); |
2230 } | 2245 } |
2231 buildCounterSearchReferenceSetsResponse--; | 2246 buildCounterSearchReferenceSetsResponse--; |
2232 } | 2247 } |
2233 | 2248 |
2234 buildUnnamed3010() { | 2249 buildUnnamed3085() { |
2235 var o = new core.List<core.String>(); | 2250 var o = new core.List<core.String>(); |
2236 o.add("foo"); | 2251 o.add("foo"); |
2237 o.add("foo"); | 2252 o.add("foo"); |
2238 return o; | 2253 return o; |
2239 } | 2254 } |
2240 | 2255 |
2241 checkUnnamed3010(core.List<core.String> o) { | 2256 checkUnnamed3085(core.List<core.String> o) { |
2242 unittest.expect(o, unittest.hasLength(2)); | 2257 unittest.expect(o, unittest.hasLength(2)); |
2243 unittest.expect(o[0], unittest.equals('foo')); | 2258 unittest.expect(o[0], unittest.equals('foo')); |
2244 unittest.expect(o[1], unittest.equals('foo')); | 2259 unittest.expect(o[1], unittest.equals('foo')); |
2245 } | 2260 } |
2246 | 2261 |
2247 buildUnnamed3011() { | 2262 buildUnnamed3086() { |
2248 var o = new core.List<core.String>(); | 2263 var o = new core.List<core.String>(); |
2249 o.add("foo"); | 2264 o.add("foo"); |
2250 o.add("foo"); | 2265 o.add("foo"); |
2251 return o; | 2266 return o; |
2252 } | 2267 } |
2253 | 2268 |
2254 checkUnnamed3011(core.List<core.String> o) { | 2269 checkUnnamed3086(core.List<core.String> o) { |
2255 unittest.expect(o, unittest.hasLength(2)); | 2270 unittest.expect(o, unittest.hasLength(2)); |
2256 unittest.expect(o[0], unittest.equals('foo')); | 2271 unittest.expect(o[0], unittest.equals('foo')); |
2257 unittest.expect(o[1], unittest.equals('foo')); | 2272 unittest.expect(o[1], unittest.equals('foo')); |
2258 } | 2273 } |
2259 | 2274 |
2260 core.int buildCounterSearchReferencesRequest = 0; | 2275 core.int buildCounterSearchReferencesRequest = 0; |
2261 buildSearchReferencesRequest() { | 2276 buildSearchReferencesRequest() { |
2262 var o = new api.SearchReferencesRequest(); | 2277 var o = new api.SearchReferencesRequest(); |
2263 buildCounterSearchReferencesRequest++; | 2278 buildCounterSearchReferencesRequest++; |
2264 if (buildCounterSearchReferencesRequest < 3) { | 2279 if (buildCounterSearchReferencesRequest < 3) { |
2265 o.accessions = buildUnnamed3010(); | 2280 o.accessions = buildUnnamed3085(); |
2266 o.md5checksums = buildUnnamed3011(); | 2281 o.md5checksums = buildUnnamed3086(); |
2267 o.pageSize = 42; | 2282 o.pageSize = 42; |
2268 o.pageToken = "foo"; | 2283 o.pageToken = "foo"; |
2269 o.referenceSetId = "foo"; | 2284 o.referenceSetId = "foo"; |
2270 } | 2285 } |
2271 buildCounterSearchReferencesRequest--; | 2286 buildCounterSearchReferencesRequest--; |
2272 return o; | 2287 return o; |
2273 } | 2288 } |
2274 | 2289 |
2275 checkSearchReferencesRequest(api.SearchReferencesRequest o) { | 2290 checkSearchReferencesRequest(api.SearchReferencesRequest o) { |
2276 buildCounterSearchReferencesRequest++; | 2291 buildCounterSearchReferencesRequest++; |
2277 if (buildCounterSearchReferencesRequest < 3) { | 2292 if (buildCounterSearchReferencesRequest < 3) { |
2278 checkUnnamed3010(o.accessions); | 2293 checkUnnamed3085(o.accessions); |
2279 checkUnnamed3011(o.md5checksums); | 2294 checkUnnamed3086(o.md5checksums); |
2280 unittest.expect(o.pageSize, unittest.equals(42)); | 2295 unittest.expect(o.pageSize, unittest.equals(42)); |
2281 unittest.expect(o.pageToken, unittest.equals('foo')); | 2296 unittest.expect(o.pageToken, unittest.equals('foo')); |
2282 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 2297 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
2283 } | 2298 } |
2284 buildCounterSearchReferencesRequest--; | 2299 buildCounterSearchReferencesRequest--; |
2285 } | 2300 } |
2286 | 2301 |
2287 buildUnnamed3012() { | 2302 buildUnnamed3087() { |
2288 var o = new core.List<api.Reference>(); | 2303 var o = new core.List<api.Reference>(); |
2289 o.add(buildReference()); | 2304 o.add(buildReference()); |
2290 o.add(buildReference()); | 2305 o.add(buildReference()); |
2291 return o; | 2306 return o; |
2292 } | 2307 } |
2293 | 2308 |
2294 checkUnnamed3012(core.List<api.Reference> o) { | 2309 checkUnnamed3087(core.List<api.Reference> o) { |
2295 unittest.expect(o, unittest.hasLength(2)); | 2310 unittest.expect(o, unittest.hasLength(2)); |
2296 checkReference(o[0]); | 2311 checkReference(o[0]); |
2297 checkReference(o[1]); | 2312 checkReference(o[1]); |
2298 } | 2313 } |
2299 | 2314 |
2300 core.int buildCounterSearchReferencesResponse = 0; | 2315 core.int buildCounterSearchReferencesResponse = 0; |
2301 buildSearchReferencesResponse() { | 2316 buildSearchReferencesResponse() { |
2302 var o = new api.SearchReferencesResponse(); | 2317 var o = new api.SearchReferencesResponse(); |
2303 buildCounterSearchReferencesResponse++; | 2318 buildCounterSearchReferencesResponse++; |
2304 if (buildCounterSearchReferencesResponse < 3) { | 2319 if (buildCounterSearchReferencesResponse < 3) { |
2305 o.nextPageToken = "foo"; | 2320 o.nextPageToken = "foo"; |
2306 o.references = buildUnnamed3012(); | 2321 o.references = buildUnnamed3087(); |
2307 } | 2322 } |
2308 buildCounterSearchReferencesResponse--; | 2323 buildCounterSearchReferencesResponse--; |
2309 return o; | 2324 return o; |
2310 } | 2325 } |
2311 | 2326 |
2312 checkSearchReferencesResponse(api.SearchReferencesResponse o) { | 2327 checkSearchReferencesResponse(api.SearchReferencesResponse o) { |
2313 buildCounterSearchReferencesResponse++; | 2328 buildCounterSearchReferencesResponse++; |
2314 if (buildCounterSearchReferencesResponse < 3) { | 2329 if (buildCounterSearchReferencesResponse < 3) { |
2315 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2330 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2316 checkUnnamed3012(o.references); | 2331 checkUnnamed3087(o.references); |
2317 } | 2332 } |
2318 buildCounterSearchReferencesResponse--; | 2333 buildCounterSearchReferencesResponse--; |
2319 } | 2334 } |
2320 | 2335 |
2321 buildUnnamed3013() { | 2336 buildUnnamed3088() { |
2322 var o = new core.List<core.String>(); | 2337 var o = new core.List<core.String>(); |
2323 o.add("foo"); | 2338 o.add("foo"); |
2324 o.add("foo"); | 2339 o.add("foo"); |
2325 return o; | 2340 return o; |
2326 } | 2341 } |
2327 | 2342 |
2328 checkUnnamed3013(core.List<core.String> o) { | 2343 checkUnnamed3088(core.List<core.String> o) { |
2329 unittest.expect(o, unittest.hasLength(2)); | 2344 unittest.expect(o, unittest.hasLength(2)); |
2330 unittest.expect(o[0], unittest.equals('foo')); | 2345 unittest.expect(o[0], unittest.equals('foo')); |
2331 unittest.expect(o[1], unittest.equals('foo')); | 2346 unittest.expect(o[1], unittest.equals('foo')); |
2332 } | 2347 } |
2333 | 2348 |
2334 core.int buildCounterSearchVariantSetsRequest = 0; | 2349 core.int buildCounterSearchVariantSetsRequest = 0; |
2335 buildSearchVariantSetsRequest() { | 2350 buildSearchVariantSetsRequest() { |
2336 var o = new api.SearchVariantSetsRequest(); | 2351 var o = new api.SearchVariantSetsRequest(); |
2337 buildCounterSearchVariantSetsRequest++; | 2352 buildCounterSearchVariantSetsRequest++; |
2338 if (buildCounterSearchVariantSetsRequest < 3) { | 2353 if (buildCounterSearchVariantSetsRequest < 3) { |
2339 o.datasetIds = buildUnnamed3013(); | 2354 o.datasetIds = buildUnnamed3088(); |
2340 o.pageSize = 42; | 2355 o.pageSize = 42; |
2341 o.pageToken = "foo"; | 2356 o.pageToken = "foo"; |
2342 } | 2357 } |
2343 buildCounterSearchVariantSetsRequest--; | 2358 buildCounterSearchVariantSetsRequest--; |
2344 return o; | 2359 return o; |
2345 } | 2360 } |
2346 | 2361 |
2347 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { | 2362 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { |
2348 buildCounterSearchVariantSetsRequest++; | 2363 buildCounterSearchVariantSetsRequest++; |
2349 if (buildCounterSearchVariantSetsRequest < 3) { | 2364 if (buildCounterSearchVariantSetsRequest < 3) { |
2350 checkUnnamed3013(o.datasetIds); | 2365 checkUnnamed3088(o.datasetIds); |
2351 unittest.expect(o.pageSize, unittest.equals(42)); | 2366 unittest.expect(o.pageSize, unittest.equals(42)); |
2352 unittest.expect(o.pageToken, unittest.equals('foo')); | 2367 unittest.expect(o.pageToken, unittest.equals('foo')); |
2353 } | 2368 } |
2354 buildCounterSearchVariantSetsRequest--; | 2369 buildCounterSearchVariantSetsRequest--; |
2355 } | 2370 } |
2356 | 2371 |
2357 buildUnnamed3014() { | 2372 buildUnnamed3089() { |
2358 var o = new core.List<api.VariantSet>(); | 2373 var o = new core.List<api.VariantSet>(); |
2359 o.add(buildVariantSet()); | 2374 o.add(buildVariantSet()); |
2360 o.add(buildVariantSet()); | 2375 o.add(buildVariantSet()); |
2361 return o; | 2376 return o; |
2362 } | 2377 } |
2363 | 2378 |
2364 checkUnnamed3014(core.List<api.VariantSet> o) { | 2379 checkUnnamed3089(core.List<api.VariantSet> o) { |
2365 unittest.expect(o, unittest.hasLength(2)); | 2380 unittest.expect(o, unittest.hasLength(2)); |
2366 checkVariantSet(o[0]); | 2381 checkVariantSet(o[0]); |
2367 checkVariantSet(o[1]); | 2382 checkVariantSet(o[1]); |
2368 } | 2383 } |
2369 | 2384 |
2370 core.int buildCounterSearchVariantSetsResponse = 0; | 2385 core.int buildCounterSearchVariantSetsResponse = 0; |
2371 buildSearchVariantSetsResponse() { | 2386 buildSearchVariantSetsResponse() { |
2372 var o = new api.SearchVariantSetsResponse(); | 2387 var o = new api.SearchVariantSetsResponse(); |
2373 buildCounterSearchVariantSetsResponse++; | 2388 buildCounterSearchVariantSetsResponse++; |
2374 if (buildCounterSearchVariantSetsResponse < 3) { | 2389 if (buildCounterSearchVariantSetsResponse < 3) { |
2375 o.nextPageToken = "foo"; | 2390 o.nextPageToken = "foo"; |
2376 o.variantSets = buildUnnamed3014(); | 2391 o.variantSets = buildUnnamed3089(); |
2377 } | 2392 } |
2378 buildCounterSearchVariantSetsResponse--; | 2393 buildCounterSearchVariantSetsResponse--; |
2379 return o; | 2394 return o; |
2380 } | 2395 } |
2381 | 2396 |
2382 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { | 2397 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { |
2383 buildCounterSearchVariantSetsResponse++; | 2398 buildCounterSearchVariantSetsResponse++; |
2384 if (buildCounterSearchVariantSetsResponse < 3) { | 2399 if (buildCounterSearchVariantSetsResponse < 3) { |
2385 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2400 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2386 checkUnnamed3014(o.variantSets); | 2401 checkUnnamed3089(o.variantSets); |
2387 } | 2402 } |
2388 buildCounterSearchVariantSetsResponse--; | 2403 buildCounterSearchVariantSetsResponse--; |
2389 } | 2404 } |
2390 | 2405 |
2391 buildUnnamed3015() { | 2406 buildUnnamed3090() { |
2392 var o = new core.List<core.String>(); | 2407 var o = new core.List<core.String>(); |
2393 o.add("foo"); | 2408 o.add("foo"); |
2394 o.add("foo"); | 2409 o.add("foo"); |
2395 return o; | 2410 return o; |
2396 } | 2411 } |
2397 | 2412 |
2398 checkUnnamed3015(core.List<core.String> o) { | 2413 checkUnnamed3090(core.List<core.String> o) { |
2399 unittest.expect(o, unittest.hasLength(2)); | 2414 unittest.expect(o, unittest.hasLength(2)); |
2400 unittest.expect(o[0], unittest.equals('foo')); | 2415 unittest.expect(o[0], unittest.equals('foo')); |
2401 unittest.expect(o[1], unittest.equals('foo')); | 2416 unittest.expect(o[1], unittest.equals('foo')); |
2402 } | 2417 } |
2403 | 2418 |
2404 buildUnnamed3016() { | 2419 buildUnnamed3091() { |
2405 var o = new core.List<core.String>(); | 2420 var o = new core.List<core.String>(); |
2406 o.add("foo"); | 2421 o.add("foo"); |
2407 o.add("foo"); | 2422 o.add("foo"); |
2408 return o; | 2423 return o; |
2409 } | 2424 } |
2410 | 2425 |
2411 checkUnnamed3016(core.List<core.String> o) { | 2426 checkUnnamed3091(core.List<core.String> o) { |
2412 unittest.expect(o, unittest.hasLength(2)); | 2427 unittest.expect(o, unittest.hasLength(2)); |
2413 unittest.expect(o[0], unittest.equals('foo')); | 2428 unittest.expect(o[0], unittest.equals('foo')); |
2414 unittest.expect(o[1], unittest.equals('foo')); | 2429 unittest.expect(o[1], unittest.equals('foo')); |
2415 } | 2430 } |
2416 | 2431 |
2417 core.int buildCounterSearchVariantsRequest = 0; | 2432 core.int buildCounterSearchVariantsRequest = 0; |
2418 buildSearchVariantsRequest() { | 2433 buildSearchVariantsRequest() { |
2419 var o = new api.SearchVariantsRequest(); | 2434 var o = new api.SearchVariantsRequest(); |
2420 buildCounterSearchVariantsRequest++; | 2435 buildCounterSearchVariantsRequest++; |
2421 if (buildCounterSearchVariantsRequest < 3) { | 2436 if (buildCounterSearchVariantsRequest < 3) { |
2422 o.callSetIds = buildUnnamed3015(); | 2437 o.callSetIds = buildUnnamed3090(); |
2423 o.end = "foo"; | 2438 o.end = "foo"; |
2424 o.maxCalls = 42; | 2439 o.maxCalls = 42; |
2425 o.pageSize = 42; | 2440 o.pageSize = 42; |
2426 o.pageToken = "foo"; | 2441 o.pageToken = "foo"; |
2427 o.referenceName = "foo"; | 2442 o.referenceName = "foo"; |
2428 o.start = "foo"; | 2443 o.start = "foo"; |
2429 o.variantName = "foo"; | 2444 o.variantName = "foo"; |
2430 o.variantSetIds = buildUnnamed3016(); | 2445 o.variantSetIds = buildUnnamed3091(); |
2431 } | 2446 } |
2432 buildCounterSearchVariantsRequest--; | 2447 buildCounterSearchVariantsRequest--; |
2433 return o; | 2448 return o; |
2434 } | 2449 } |
2435 | 2450 |
2436 checkSearchVariantsRequest(api.SearchVariantsRequest o) { | 2451 checkSearchVariantsRequest(api.SearchVariantsRequest o) { |
2437 buildCounterSearchVariantsRequest++; | 2452 buildCounterSearchVariantsRequest++; |
2438 if (buildCounterSearchVariantsRequest < 3) { | 2453 if (buildCounterSearchVariantsRequest < 3) { |
2439 checkUnnamed3015(o.callSetIds); | 2454 checkUnnamed3090(o.callSetIds); |
2440 unittest.expect(o.end, unittest.equals('foo')); | 2455 unittest.expect(o.end, unittest.equals('foo')); |
2441 unittest.expect(o.maxCalls, unittest.equals(42)); | 2456 unittest.expect(o.maxCalls, unittest.equals(42)); |
2442 unittest.expect(o.pageSize, unittest.equals(42)); | 2457 unittest.expect(o.pageSize, unittest.equals(42)); |
2443 unittest.expect(o.pageToken, unittest.equals('foo')); | 2458 unittest.expect(o.pageToken, unittest.equals('foo')); |
2444 unittest.expect(o.referenceName, unittest.equals('foo')); | 2459 unittest.expect(o.referenceName, unittest.equals('foo')); |
2445 unittest.expect(o.start, unittest.equals('foo')); | 2460 unittest.expect(o.start, unittest.equals('foo')); |
2446 unittest.expect(o.variantName, unittest.equals('foo')); | 2461 unittest.expect(o.variantName, unittest.equals('foo')); |
2447 checkUnnamed3016(o.variantSetIds); | 2462 checkUnnamed3091(o.variantSetIds); |
2448 } | 2463 } |
2449 buildCounterSearchVariantsRequest--; | 2464 buildCounterSearchVariantsRequest--; |
2450 } | 2465 } |
2451 | 2466 |
2452 buildUnnamed3017() { | 2467 buildUnnamed3092() { |
2453 var o = new core.List<api.Variant>(); | 2468 var o = new core.List<api.Variant>(); |
2454 o.add(buildVariant()); | 2469 o.add(buildVariant()); |
2455 o.add(buildVariant()); | 2470 o.add(buildVariant()); |
2456 return o; | 2471 return o; |
2457 } | 2472 } |
2458 | 2473 |
2459 checkUnnamed3017(core.List<api.Variant> o) { | 2474 checkUnnamed3092(core.List<api.Variant> o) { |
2460 unittest.expect(o, unittest.hasLength(2)); | 2475 unittest.expect(o, unittest.hasLength(2)); |
2461 checkVariant(o[0]); | 2476 checkVariant(o[0]); |
2462 checkVariant(o[1]); | 2477 checkVariant(o[1]); |
2463 } | 2478 } |
2464 | 2479 |
2465 core.int buildCounterSearchVariantsResponse = 0; | 2480 core.int buildCounterSearchVariantsResponse = 0; |
2466 buildSearchVariantsResponse() { | 2481 buildSearchVariantsResponse() { |
2467 var o = new api.SearchVariantsResponse(); | 2482 var o = new api.SearchVariantsResponse(); |
2468 buildCounterSearchVariantsResponse++; | 2483 buildCounterSearchVariantsResponse++; |
2469 if (buildCounterSearchVariantsResponse < 3) { | 2484 if (buildCounterSearchVariantsResponse < 3) { |
2470 o.nextPageToken = "foo"; | 2485 o.nextPageToken = "foo"; |
2471 o.variants = buildUnnamed3017(); | 2486 o.variants = buildUnnamed3092(); |
2472 } | 2487 } |
2473 buildCounterSearchVariantsResponse--; | 2488 buildCounterSearchVariantsResponse--; |
2474 return o; | 2489 return o; |
2475 } | 2490 } |
2476 | 2491 |
2477 checkSearchVariantsResponse(api.SearchVariantsResponse o) { | 2492 checkSearchVariantsResponse(api.SearchVariantsResponse o) { |
2478 buildCounterSearchVariantsResponse++; | 2493 buildCounterSearchVariantsResponse++; |
2479 if (buildCounterSearchVariantsResponse < 3) { | 2494 if (buildCounterSearchVariantsResponse < 3) { |
2480 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2495 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2481 checkUnnamed3017(o.variants); | 2496 checkUnnamed3092(o.variants); |
2482 } | 2497 } |
2483 buildCounterSearchVariantsResponse--; | 2498 buildCounterSearchVariantsResponse--; |
2484 } | 2499 } |
2485 | 2500 |
2486 core.int buildCounterSetIamPolicyRequest = 0; | 2501 core.int buildCounterSetIamPolicyRequest = 0; |
2487 buildSetIamPolicyRequest() { | 2502 buildSetIamPolicyRequest() { |
2488 var o = new api.SetIamPolicyRequest(); | 2503 var o = new api.SetIamPolicyRequest(); |
2489 buildCounterSetIamPolicyRequest++; | 2504 buildCounterSetIamPolicyRequest++; |
2490 if (buildCounterSetIamPolicyRequest < 3) { | 2505 if (buildCounterSetIamPolicyRequest < 3) { |
2491 o.policy = buildPolicy(); | 2506 o.policy = buildPolicy(); |
2492 } | 2507 } |
2493 buildCounterSetIamPolicyRequest--; | 2508 buildCounterSetIamPolicyRequest--; |
2494 return o; | 2509 return o; |
2495 } | 2510 } |
2496 | 2511 |
2497 checkSetIamPolicyRequest(api.SetIamPolicyRequest o) { | 2512 checkSetIamPolicyRequest(api.SetIamPolicyRequest o) { |
2498 buildCounterSetIamPolicyRequest++; | 2513 buildCounterSetIamPolicyRequest++; |
2499 if (buildCounterSetIamPolicyRequest < 3) { | 2514 if (buildCounterSetIamPolicyRequest < 3) { |
2500 checkPolicy(o.policy); | 2515 checkPolicy(o.policy); |
2501 } | 2516 } |
2502 buildCounterSetIamPolicyRequest--; | 2517 buildCounterSetIamPolicyRequest--; |
2503 } | 2518 } |
2504 | 2519 |
2505 buildUnnamed3018() { | 2520 buildUnnamed3093() { |
2506 var o = new core.Map<core.String, core.Object>(); | 2521 var o = new core.Map<core.String, core.Object>(); |
2507 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 2522 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
2508 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 2523 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
2509 return o; | 2524 return o; |
2510 } | 2525 } |
2511 | 2526 |
2512 checkUnnamed3018(core.Map<core.String, core.Object> o) { | 2527 checkUnnamed3093(core.Map<core.String, core.Object> o) { |
2513 unittest.expect(o, unittest.hasLength(2)); | 2528 unittest.expect(o, unittest.hasLength(2)); |
2514 var casted21 = (o["x"]) as core.Map; unittest.expect(casted21, unittest.hasLen
gth(3)); unittest.expect(casted21["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted21["bool"], unittest.equals(true)); unittest.expect(casted21["stri
ng"], unittest.equals('foo')); | 2529 var casted21 = (o["x"]) as core.Map; unittest.expect(casted21, unittest.hasLen
gth(3)); unittest.expect(casted21["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted21["bool"], unittest.equals(true)); unittest.expect(casted21["stri
ng"], unittest.equals('foo')); |
2515 var casted22 = (o["y"]) as core.Map; unittest.expect(casted22, unittest.hasLen
gth(3)); unittest.expect(casted22["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted22["bool"], unittest.equals(true)); unittest.expect(casted22["stri
ng"], unittest.equals('foo')); | 2530 var casted22 = (o["y"]) as core.Map; unittest.expect(casted22, unittest.hasLen
gth(3)); unittest.expect(casted22["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted22["bool"], unittest.equals(true)); unittest.expect(casted22["stri
ng"], unittest.equals('foo')); |
2516 } | 2531 } |
2517 | 2532 |
2518 buildUnnamed3019() { | 2533 buildUnnamed3094() { |
2519 var o = new core.List<core.Map<core.String, core.Object>>(); | 2534 var o = new core.List<core.Map<core.String, core.Object>>(); |
2520 o.add(buildUnnamed3018()); | 2535 o.add(buildUnnamed3093()); |
2521 o.add(buildUnnamed3018()); | 2536 o.add(buildUnnamed3093()); |
2522 return o; | 2537 return o; |
2523 } | 2538 } |
2524 | 2539 |
2525 checkUnnamed3019(core.List<core.Map<core.String, core.Object>> o) { | 2540 checkUnnamed3094(core.List<core.Map<core.String, core.Object>> o) { |
2526 unittest.expect(o, unittest.hasLength(2)); | 2541 unittest.expect(o, unittest.hasLength(2)); |
2527 checkUnnamed3018(o[0]); | 2542 checkUnnamed3093(o[0]); |
2528 checkUnnamed3018(o[1]); | 2543 checkUnnamed3093(o[1]); |
2529 } | 2544 } |
2530 | 2545 |
2531 core.int buildCounterStatus = 0; | 2546 core.int buildCounterStatus = 0; |
2532 buildStatus() { | 2547 buildStatus() { |
2533 var o = new api.Status(); | 2548 var o = new api.Status(); |
2534 buildCounterStatus++; | 2549 buildCounterStatus++; |
2535 if (buildCounterStatus < 3) { | 2550 if (buildCounterStatus < 3) { |
2536 o.code = 42; | 2551 o.code = 42; |
2537 o.details = buildUnnamed3019(); | 2552 o.details = buildUnnamed3094(); |
2538 o.message = "foo"; | 2553 o.message = "foo"; |
2539 } | 2554 } |
2540 buildCounterStatus--; | 2555 buildCounterStatus--; |
2541 return o; | 2556 return o; |
2542 } | 2557 } |
2543 | 2558 |
2544 checkStatus(api.Status o) { | 2559 checkStatus(api.Status o) { |
2545 buildCounterStatus++; | 2560 buildCounterStatus++; |
2546 if (buildCounterStatus < 3) { | 2561 if (buildCounterStatus < 3) { |
2547 unittest.expect(o.code, unittest.equals(42)); | 2562 unittest.expect(o.code, unittest.equals(42)); |
2548 checkUnnamed3019(o.details); | 2563 checkUnnamed3094(o.details); |
2549 unittest.expect(o.message, unittest.equals('foo')); | 2564 unittest.expect(o.message, unittest.equals('foo')); |
2550 } | 2565 } |
2551 buildCounterStatus--; | 2566 buildCounterStatus--; |
2552 } | 2567 } |
2553 | 2568 |
2554 core.int buildCounterStreamReadsRequest = 0; | 2569 core.int buildCounterStreamReadsRequest = 0; |
2555 buildStreamReadsRequest() { | 2570 buildStreamReadsRequest() { |
2556 var o = new api.StreamReadsRequest(); | 2571 var o = new api.StreamReadsRequest(); |
2557 buildCounterStreamReadsRequest++; | 2572 buildCounterStreamReadsRequest++; |
2558 if (buildCounterStreamReadsRequest < 3) { | 2573 if (buildCounterStreamReadsRequest < 3) { |
(...skipping 16 matching lines...) Expand all Loading... |
2575 unittest.expect(o.projectId, unittest.equals('foo')); | 2590 unittest.expect(o.projectId, unittest.equals('foo')); |
2576 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 2591 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
2577 unittest.expect(o.referenceName, unittest.equals('foo')); | 2592 unittest.expect(o.referenceName, unittest.equals('foo')); |
2578 unittest.expect(o.shard, unittest.equals(42)); | 2593 unittest.expect(o.shard, unittest.equals(42)); |
2579 unittest.expect(o.start, unittest.equals('foo')); | 2594 unittest.expect(o.start, unittest.equals('foo')); |
2580 unittest.expect(o.totalShards, unittest.equals(42)); | 2595 unittest.expect(o.totalShards, unittest.equals(42)); |
2581 } | 2596 } |
2582 buildCounterStreamReadsRequest--; | 2597 buildCounterStreamReadsRequest--; |
2583 } | 2598 } |
2584 | 2599 |
2585 buildUnnamed3020() { | 2600 buildUnnamed3095() { |
2586 var o = new core.List<api.Read>(); | 2601 var o = new core.List<api.Read>(); |
2587 o.add(buildRead()); | 2602 o.add(buildRead()); |
2588 o.add(buildRead()); | 2603 o.add(buildRead()); |
2589 return o; | 2604 return o; |
2590 } | 2605 } |
2591 | 2606 |
2592 checkUnnamed3020(core.List<api.Read> o) { | 2607 checkUnnamed3095(core.List<api.Read> o) { |
2593 unittest.expect(o, unittest.hasLength(2)); | 2608 unittest.expect(o, unittest.hasLength(2)); |
2594 checkRead(o[0]); | 2609 checkRead(o[0]); |
2595 checkRead(o[1]); | 2610 checkRead(o[1]); |
2596 } | 2611 } |
2597 | 2612 |
2598 core.int buildCounterStreamReadsResponse = 0; | 2613 core.int buildCounterStreamReadsResponse = 0; |
2599 buildStreamReadsResponse() { | 2614 buildStreamReadsResponse() { |
2600 var o = new api.StreamReadsResponse(); | 2615 var o = new api.StreamReadsResponse(); |
2601 buildCounterStreamReadsResponse++; | 2616 buildCounterStreamReadsResponse++; |
2602 if (buildCounterStreamReadsResponse < 3) { | 2617 if (buildCounterStreamReadsResponse < 3) { |
2603 o.alignments = buildUnnamed3020(); | 2618 o.alignments = buildUnnamed3095(); |
2604 } | 2619 } |
2605 buildCounterStreamReadsResponse--; | 2620 buildCounterStreamReadsResponse--; |
2606 return o; | 2621 return o; |
2607 } | 2622 } |
2608 | 2623 |
2609 checkStreamReadsResponse(api.StreamReadsResponse o) { | 2624 checkStreamReadsResponse(api.StreamReadsResponse o) { |
2610 buildCounterStreamReadsResponse++; | 2625 buildCounterStreamReadsResponse++; |
2611 if (buildCounterStreamReadsResponse < 3) { | 2626 if (buildCounterStreamReadsResponse < 3) { |
2612 checkUnnamed3020(o.alignments); | 2627 checkUnnamed3095(o.alignments); |
2613 } | 2628 } |
2614 buildCounterStreamReadsResponse--; | 2629 buildCounterStreamReadsResponse--; |
2615 } | 2630 } |
2616 | 2631 |
2617 buildUnnamed3021() { | 2632 buildUnnamed3096() { |
2618 var o = new core.List<core.String>(); | 2633 var o = new core.List<core.String>(); |
2619 o.add("foo"); | 2634 o.add("foo"); |
2620 o.add("foo"); | 2635 o.add("foo"); |
2621 return o; | 2636 return o; |
2622 } | 2637 } |
2623 | 2638 |
2624 checkUnnamed3021(core.List<core.String> o) { | 2639 checkUnnamed3096(core.List<core.String> o) { |
2625 unittest.expect(o, unittest.hasLength(2)); | 2640 unittest.expect(o, unittest.hasLength(2)); |
2626 unittest.expect(o[0], unittest.equals('foo')); | 2641 unittest.expect(o[0], unittest.equals('foo')); |
2627 unittest.expect(o[1], unittest.equals('foo')); | 2642 unittest.expect(o[1], unittest.equals('foo')); |
2628 } | 2643 } |
2629 | 2644 |
2630 core.int buildCounterStreamVariantsRequest = 0; | 2645 core.int buildCounterStreamVariantsRequest = 0; |
2631 buildStreamVariantsRequest() { | 2646 buildStreamVariantsRequest() { |
2632 var o = new api.StreamVariantsRequest(); | 2647 var o = new api.StreamVariantsRequest(); |
2633 buildCounterStreamVariantsRequest++; | 2648 buildCounterStreamVariantsRequest++; |
2634 if (buildCounterStreamVariantsRequest < 3) { | 2649 if (buildCounterStreamVariantsRequest < 3) { |
2635 o.callSetIds = buildUnnamed3021(); | 2650 o.callSetIds = buildUnnamed3096(); |
2636 o.end = "foo"; | 2651 o.end = "foo"; |
2637 o.projectId = "foo"; | 2652 o.projectId = "foo"; |
2638 o.referenceName = "foo"; | 2653 o.referenceName = "foo"; |
2639 o.start = "foo"; | 2654 o.start = "foo"; |
2640 o.variantSetId = "foo"; | 2655 o.variantSetId = "foo"; |
2641 } | 2656 } |
2642 buildCounterStreamVariantsRequest--; | 2657 buildCounterStreamVariantsRequest--; |
2643 return o; | 2658 return o; |
2644 } | 2659 } |
2645 | 2660 |
2646 checkStreamVariantsRequest(api.StreamVariantsRequest o) { | 2661 checkStreamVariantsRequest(api.StreamVariantsRequest o) { |
2647 buildCounterStreamVariantsRequest++; | 2662 buildCounterStreamVariantsRequest++; |
2648 if (buildCounterStreamVariantsRequest < 3) { | 2663 if (buildCounterStreamVariantsRequest < 3) { |
2649 checkUnnamed3021(o.callSetIds); | 2664 checkUnnamed3096(o.callSetIds); |
2650 unittest.expect(o.end, unittest.equals('foo')); | 2665 unittest.expect(o.end, unittest.equals('foo')); |
2651 unittest.expect(o.projectId, unittest.equals('foo')); | 2666 unittest.expect(o.projectId, unittest.equals('foo')); |
2652 unittest.expect(o.referenceName, unittest.equals('foo')); | 2667 unittest.expect(o.referenceName, unittest.equals('foo')); |
2653 unittest.expect(o.start, unittest.equals('foo')); | 2668 unittest.expect(o.start, unittest.equals('foo')); |
2654 unittest.expect(o.variantSetId, unittest.equals('foo')); | 2669 unittest.expect(o.variantSetId, unittest.equals('foo')); |
2655 } | 2670 } |
2656 buildCounterStreamVariantsRequest--; | 2671 buildCounterStreamVariantsRequest--; |
2657 } | 2672 } |
2658 | 2673 |
2659 buildUnnamed3022() { | 2674 buildUnnamed3097() { |
2660 var o = new core.List<api.Variant>(); | 2675 var o = new core.List<api.Variant>(); |
2661 o.add(buildVariant()); | 2676 o.add(buildVariant()); |
2662 o.add(buildVariant()); | 2677 o.add(buildVariant()); |
2663 return o; | 2678 return o; |
2664 } | 2679 } |
2665 | 2680 |
2666 checkUnnamed3022(core.List<api.Variant> o) { | 2681 checkUnnamed3097(core.List<api.Variant> o) { |
2667 unittest.expect(o, unittest.hasLength(2)); | 2682 unittest.expect(o, unittest.hasLength(2)); |
2668 checkVariant(o[0]); | 2683 checkVariant(o[0]); |
2669 checkVariant(o[1]); | 2684 checkVariant(o[1]); |
2670 } | 2685 } |
2671 | 2686 |
2672 core.int buildCounterStreamVariantsResponse = 0; | 2687 core.int buildCounterStreamVariantsResponse = 0; |
2673 buildStreamVariantsResponse() { | 2688 buildStreamVariantsResponse() { |
2674 var o = new api.StreamVariantsResponse(); | 2689 var o = new api.StreamVariantsResponse(); |
2675 buildCounterStreamVariantsResponse++; | 2690 buildCounterStreamVariantsResponse++; |
2676 if (buildCounterStreamVariantsResponse < 3) { | 2691 if (buildCounterStreamVariantsResponse < 3) { |
2677 o.variants = buildUnnamed3022(); | 2692 o.variants = buildUnnamed3097(); |
2678 } | 2693 } |
2679 buildCounterStreamVariantsResponse--; | 2694 buildCounterStreamVariantsResponse--; |
2680 return o; | 2695 return o; |
2681 } | 2696 } |
2682 | 2697 |
2683 checkStreamVariantsResponse(api.StreamVariantsResponse o) { | 2698 checkStreamVariantsResponse(api.StreamVariantsResponse o) { |
2684 buildCounterStreamVariantsResponse++; | 2699 buildCounterStreamVariantsResponse++; |
2685 if (buildCounterStreamVariantsResponse < 3) { | 2700 if (buildCounterStreamVariantsResponse < 3) { |
2686 checkUnnamed3022(o.variants); | 2701 checkUnnamed3097(o.variants); |
2687 } | 2702 } |
2688 buildCounterStreamVariantsResponse--; | 2703 buildCounterStreamVariantsResponse--; |
2689 } | 2704 } |
2690 | 2705 |
2691 buildUnnamed3023() { | 2706 buildUnnamed3098() { |
2692 var o = new core.List<core.String>(); | 2707 var o = new core.List<core.String>(); |
2693 o.add("foo"); | 2708 o.add("foo"); |
2694 o.add("foo"); | 2709 o.add("foo"); |
2695 return o; | 2710 return o; |
2696 } | 2711 } |
2697 | 2712 |
2698 checkUnnamed3023(core.List<core.String> o) { | 2713 checkUnnamed3098(core.List<core.String> o) { |
2699 unittest.expect(o, unittest.hasLength(2)); | 2714 unittest.expect(o, unittest.hasLength(2)); |
2700 unittest.expect(o[0], unittest.equals('foo')); | 2715 unittest.expect(o[0], unittest.equals('foo')); |
2701 unittest.expect(o[1], unittest.equals('foo')); | 2716 unittest.expect(o[1], unittest.equals('foo')); |
2702 } | 2717 } |
2703 | 2718 |
2704 core.int buildCounterTestIamPermissionsRequest = 0; | 2719 core.int buildCounterTestIamPermissionsRequest = 0; |
2705 buildTestIamPermissionsRequest() { | 2720 buildTestIamPermissionsRequest() { |
2706 var o = new api.TestIamPermissionsRequest(); | 2721 var o = new api.TestIamPermissionsRequest(); |
2707 buildCounterTestIamPermissionsRequest++; | 2722 buildCounterTestIamPermissionsRequest++; |
2708 if (buildCounterTestIamPermissionsRequest < 3) { | 2723 if (buildCounterTestIamPermissionsRequest < 3) { |
2709 o.permissions = buildUnnamed3023(); | 2724 o.permissions = buildUnnamed3098(); |
2710 } | 2725 } |
2711 buildCounterTestIamPermissionsRequest--; | 2726 buildCounterTestIamPermissionsRequest--; |
2712 return o; | 2727 return o; |
2713 } | 2728 } |
2714 | 2729 |
2715 checkTestIamPermissionsRequest(api.TestIamPermissionsRequest o) { | 2730 checkTestIamPermissionsRequest(api.TestIamPermissionsRequest o) { |
2716 buildCounterTestIamPermissionsRequest++; | 2731 buildCounterTestIamPermissionsRequest++; |
2717 if (buildCounterTestIamPermissionsRequest < 3) { | 2732 if (buildCounterTestIamPermissionsRequest < 3) { |
2718 checkUnnamed3023(o.permissions); | 2733 checkUnnamed3098(o.permissions); |
2719 } | 2734 } |
2720 buildCounterTestIamPermissionsRequest--; | 2735 buildCounterTestIamPermissionsRequest--; |
2721 } | 2736 } |
2722 | 2737 |
2723 buildUnnamed3024() { | 2738 buildUnnamed3099() { |
2724 var o = new core.List<core.String>(); | 2739 var o = new core.List<core.String>(); |
2725 o.add("foo"); | 2740 o.add("foo"); |
2726 o.add("foo"); | 2741 o.add("foo"); |
2727 return o; | 2742 return o; |
2728 } | 2743 } |
2729 | 2744 |
2730 checkUnnamed3024(core.List<core.String> o) { | 2745 checkUnnamed3099(core.List<core.String> o) { |
2731 unittest.expect(o, unittest.hasLength(2)); | 2746 unittest.expect(o, unittest.hasLength(2)); |
2732 unittest.expect(o[0], unittest.equals('foo')); | 2747 unittest.expect(o[0], unittest.equals('foo')); |
2733 unittest.expect(o[1], unittest.equals('foo')); | 2748 unittest.expect(o[1], unittest.equals('foo')); |
2734 } | 2749 } |
2735 | 2750 |
2736 core.int buildCounterTestIamPermissionsResponse = 0; | 2751 core.int buildCounterTestIamPermissionsResponse = 0; |
2737 buildTestIamPermissionsResponse() { | 2752 buildTestIamPermissionsResponse() { |
2738 var o = new api.TestIamPermissionsResponse(); | 2753 var o = new api.TestIamPermissionsResponse(); |
2739 buildCounterTestIamPermissionsResponse++; | 2754 buildCounterTestIamPermissionsResponse++; |
2740 if (buildCounterTestIamPermissionsResponse < 3) { | 2755 if (buildCounterTestIamPermissionsResponse < 3) { |
2741 o.permissions = buildUnnamed3024(); | 2756 o.permissions = buildUnnamed3099(); |
2742 } | 2757 } |
2743 buildCounterTestIamPermissionsResponse--; | 2758 buildCounterTestIamPermissionsResponse--; |
2744 return o; | 2759 return o; |
2745 } | 2760 } |
2746 | 2761 |
2747 checkTestIamPermissionsResponse(api.TestIamPermissionsResponse o) { | 2762 checkTestIamPermissionsResponse(api.TestIamPermissionsResponse o) { |
2748 buildCounterTestIamPermissionsResponse++; | 2763 buildCounterTestIamPermissionsResponse++; |
2749 if (buildCounterTestIamPermissionsResponse < 3) { | 2764 if (buildCounterTestIamPermissionsResponse < 3) { |
2750 checkUnnamed3024(o.permissions); | 2765 checkUnnamed3099(o.permissions); |
2751 } | 2766 } |
2752 buildCounterTestIamPermissionsResponse--; | 2767 buildCounterTestIamPermissionsResponse--; |
2753 } | 2768 } |
2754 | 2769 |
2755 buildUnnamed3025() { | 2770 buildUnnamed3100() { |
2756 var o = new core.List<api.Exon>(); | 2771 var o = new core.List<api.Exon>(); |
2757 o.add(buildExon()); | 2772 o.add(buildExon()); |
2758 o.add(buildExon()); | 2773 o.add(buildExon()); |
2759 return o; | 2774 return o; |
2760 } | 2775 } |
2761 | 2776 |
2762 checkUnnamed3025(core.List<api.Exon> o) { | 2777 checkUnnamed3100(core.List<api.Exon> o) { |
2763 unittest.expect(o, unittest.hasLength(2)); | 2778 unittest.expect(o, unittest.hasLength(2)); |
2764 checkExon(o[0]); | 2779 checkExon(o[0]); |
2765 checkExon(o[1]); | 2780 checkExon(o[1]); |
2766 } | 2781 } |
2767 | 2782 |
2768 core.int buildCounterTranscript = 0; | 2783 core.int buildCounterTranscript = 0; |
2769 buildTranscript() { | 2784 buildTranscript() { |
2770 var o = new api.Transcript(); | 2785 var o = new api.Transcript(); |
2771 buildCounterTranscript++; | 2786 buildCounterTranscript++; |
2772 if (buildCounterTranscript < 3) { | 2787 if (buildCounterTranscript < 3) { |
2773 o.codingSequence = buildCodingSequence(); | 2788 o.codingSequence = buildCodingSequence(); |
2774 o.exons = buildUnnamed3025(); | 2789 o.exons = buildUnnamed3100(); |
2775 o.geneId = "foo"; | 2790 o.geneId = "foo"; |
2776 } | 2791 } |
2777 buildCounterTranscript--; | 2792 buildCounterTranscript--; |
2778 return o; | 2793 return o; |
2779 } | 2794 } |
2780 | 2795 |
2781 checkTranscript(api.Transcript o) { | 2796 checkTranscript(api.Transcript o) { |
2782 buildCounterTranscript++; | 2797 buildCounterTranscript++; |
2783 if (buildCounterTranscript < 3) { | 2798 if (buildCounterTranscript < 3) { |
2784 checkCodingSequence(o.codingSequence); | 2799 checkCodingSequence(o.codingSequence); |
2785 checkUnnamed3025(o.exons); | 2800 checkUnnamed3100(o.exons); |
2786 unittest.expect(o.geneId, unittest.equals('foo')); | 2801 unittest.expect(o.geneId, unittest.equals('foo')); |
2787 } | 2802 } |
2788 buildCounterTranscript--; | 2803 buildCounterTranscript--; |
2789 } | 2804 } |
2790 | 2805 |
2791 core.int buildCounterUndeleteDatasetRequest = 0; | 2806 core.int buildCounterUndeleteDatasetRequest = 0; |
2792 buildUndeleteDatasetRequest() { | 2807 buildUndeleteDatasetRequest() { |
2793 var o = new api.UndeleteDatasetRequest(); | 2808 var o = new api.UndeleteDatasetRequest(); |
2794 buildCounterUndeleteDatasetRequest++; | 2809 buildCounterUndeleteDatasetRequest++; |
2795 if (buildCounterUndeleteDatasetRequest < 3) { | 2810 if (buildCounterUndeleteDatasetRequest < 3) { |
2796 } | 2811 } |
2797 buildCounterUndeleteDatasetRequest--; | 2812 buildCounterUndeleteDatasetRequest--; |
2798 return o; | 2813 return o; |
2799 } | 2814 } |
2800 | 2815 |
2801 checkUndeleteDatasetRequest(api.UndeleteDatasetRequest o) { | 2816 checkUndeleteDatasetRequest(api.UndeleteDatasetRequest o) { |
2802 buildCounterUndeleteDatasetRequest++; | 2817 buildCounterUndeleteDatasetRequest++; |
2803 if (buildCounterUndeleteDatasetRequest < 3) { | 2818 if (buildCounterUndeleteDatasetRequest < 3) { |
2804 } | 2819 } |
2805 buildCounterUndeleteDatasetRequest--; | 2820 buildCounterUndeleteDatasetRequest--; |
2806 } | 2821 } |
2807 | 2822 |
2808 buildUnnamed3026() { | 2823 buildUnnamed3101() { |
2809 var o = new core.List<core.String>(); | 2824 var o = new core.List<core.String>(); |
2810 o.add("foo"); | 2825 o.add("foo"); |
2811 o.add("foo"); | 2826 o.add("foo"); |
2812 return o; | 2827 return o; |
2813 } | 2828 } |
2814 | 2829 |
2815 checkUnnamed3026(core.List<core.String> o) { | 2830 checkUnnamed3101(core.List<core.String> o) { |
2816 unittest.expect(o, unittest.hasLength(2)); | 2831 unittest.expect(o, unittest.hasLength(2)); |
2817 unittest.expect(o[0], unittest.equals('foo')); | 2832 unittest.expect(o[0], unittest.equals('foo')); |
2818 unittest.expect(o[1], unittest.equals('foo')); | 2833 unittest.expect(o[1], unittest.equals('foo')); |
2819 } | 2834 } |
2820 | 2835 |
2821 buildUnnamed3027() { | 2836 buildUnnamed3102() { |
2822 var o = new core.List<api.VariantCall>(); | 2837 var o = new core.List<api.VariantCall>(); |
2823 o.add(buildVariantCall()); | 2838 o.add(buildVariantCall()); |
2824 o.add(buildVariantCall()); | 2839 o.add(buildVariantCall()); |
2825 return o; | 2840 return o; |
2826 } | 2841 } |
2827 | 2842 |
2828 checkUnnamed3027(core.List<api.VariantCall> o) { | 2843 checkUnnamed3102(core.List<api.VariantCall> o) { |
2829 unittest.expect(o, unittest.hasLength(2)); | 2844 unittest.expect(o, unittest.hasLength(2)); |
2830 checkVariantCall(o[0]); | 2845 checkVariantCall(o[0]); |
2831 checkVariantCall(o[1]); | 2846 checkVariantCall(o[1]); |
2832 } | 2847 } |
2833 | 2848 |
2834 buildUnnamed3028() { | 2849 buildUnnamed3103() { |
2835 var o = new core.List<core.String>(); | 2850 var o = new core.List<core.String>(); |
2836 o.add("foo"); | 2851 o.add("foo"); |
2837 o.add("foo"); | 2852 o.add("foo"); |
2838 return o; | 2853 return o; |
2839 } | 2854 } |
2840 | 2855 |
2841 checkUnnamed3028(core.List<core.String> o) { | 2856 checkUnnamed3103(core.List<core.String> o) { |
2842 unittest.expect(o, unittest.hasLength(2)); | 2857 unittest.expect(o, unittest.hasLength(2)); |
2843 unittest.expect(o[0], unittest.equals('foo')); | 2858 unittest.expect(o[0], unittest.equals('foo')); |
2844 unittest.expect(o[1], unittest.equals('foo')); | 2859 unittest.expect(o[1], unittest.equals('foo')); |
2845 } | 2860 } |
2846 | 2861 |
2847 buildUnnamed3029() { | 2862 buildUnnamed3104() { |
2848 var o = new core.List<core.Object>(); | 2863 var o = new core.List<core.Object>(); |
2849 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 2864 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
2850 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 2865 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
2851 return o; | 2866 return o; |
2852 } | 2867 } |
2853 | 2868 |
2854 checkUnnamed3029(core.List<core.Object> o) { | 2869 checkUnnamed3104(core.List<core.Object> o) { |
2855 unittest.expect(o, unittest.hasLength(2)); | 2870 unittest.expect(o, unittest.hasLength(2)); |
2856 var casted23 = (o[0]) as core.Map; unittest.expect(casted23, unittest.hasLengt
h(3)); unittest.expect(casted23["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted23["bool"], unittest.equals(true)); unittest.expect(casted23["string
"], unittest.equals('foo')); | 2871 var casted23 = (o[0]) as core.Map; unittest.expect(casted23, unittest.hasLengt
h(3)); unittest.expect(casted23["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted23["bool"], unittest.equals(true)); unittest.expect(casted23["string
"], unittest.equals('foo')); |
2857 var casted24 = (o[1]) as core.Map; unittest.expect(casted24, unittest.hasLengt
h(3)); unittest.expect(casted24["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted24["bool"], unittest.equals(true)); unittest.expect(casted24["string
"], unittest.equals('foo')); | 2872 var casted24 = (o[1]) as core.Map; unittest.expect(casted24, unittest.hasLengt
h(3)); unittest.expect(casted24["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted24["bool"], unittest.equals(true)); unittest.expect(casted24["string
"], unittest.equals('foo')); |
2858 } | 2873 } |
2859 | 2874 |
2860 buildUnnamed3030() { | 2875 buildUnnamed3105() { |
2861 var o = new core.Map<core.String, core.List<core.Object>>(); | 2876 var o = new core.Map<core.String, core.List<core.Object>>(); |
2862 o["x"] = buildUnnamed3029(); | 2877 o["x"] = buildUnnamed3104(); |
2863 o["y"] = buildUnnamed3029(); | 2878 o["y"] = buildUnnamed3104(); |
2864 return o; | 2879 return o; |
2865 } | 2880 } |
2866 | 2881 |
2867 checkUnnamed3030(core.Map<core.String, core.List<core.Object>> o) { | 2882 checkUnnamed3105(core.Map<core.String, core.List<core.Object>> o) { |
2868 unittest.expect(o, unittest.hasLength(2)); | 2883 unittest.expect(o, unittest.hasLength(2)); |
2869 checkUnnamed3029(o["x"]); | 2884 checkUnnamed3104(o["x"]); |
2870 checkUnnamed3029(o["y"]); | 2885 checkUnnamed3104(o["y"]); |
2871 } | 2886 } |
2872 | 2887 |
2873 buildUnnamed3031() { | 2888 buildUnnamed3106() { |
2874 var o = new core.List<core.String>(); | 2889 var o = new core.List<core.String>(); |
2875 o.add("foo"); | 2890 o.add("foo"); |
2876 o.add("foo"); | 2891 o.add("foo"); |
2877 return o; | 2892 return o; |
2878 } | 2893 } |
2879 | 2894 |
2880 checkUnnamed3031(core.List<core.String> o) { | 2895 checkUnnamed3106(core.List<core.String> o) { |
2881 unittest.expect(o, unittest.hasLength(2)); | 2896 unittest.expect(o, unittest.hasLength(2)); |
2882 unittest.expect(o[0], unittest.equals('foo')); | 2897 unittest.expect(o[0], unittest.equals('foo')); |
2883 unittest.expect(o[1], unittest.equals('foo')); | 2898 unittest.expect(o[1], unittest.equals('foo')); |
2884 } | 2899 } |
2885 | 2900 |
2886 core.int buildCounterVariant = 0; | 2901 core.int buildCounterVariant = 0; |
2887 buildVariant() { | 2902 buildVariant() { |
2888 var o = new api.Variant(); | 2903 var o = new api.Variant(); |
2889 buildCounterVariant++; | 2904 buildCounterVariant++; |
2890 if (buildCounterVariant < 3) { | 2905 if (buildCounterVariant < 3) { |
2891 o.alternateBases = buildUnnamed3026(); | 2906 o.alternateBases = buildUnnamed3101(); |
2892 o.calls = buildUnnamed3027(); | 2907 o.calls = buildUnnamed3102(); |
2893 o.created = "foo"; | 2908 o.created = "foo"; |
2894 o.end = "foo"; | 2909 o.end = "foo"; |
2895 o.filter = buildUnnamed3028(); | 2910 o.filter = buildUnnamed3103(); |
2896 o.id = "foo"; | 2911 o.id = "foo"; |
2897 o.info = buildUnnamed3030(); | 2912 o.info = buildUnnamed3105(); |
2898 o.names = buildUnnamed3031(); | 2913 o.names = buildUnnamed3106(); |
2899 o.quality = 42.0; | 2914 o.quality = 42.0; |
2900 o.referenceBases = "foo"; | 2915 o.referenceBases = "foo"; |
2901 o.referenceName = "foo"; | 2916 o.referenceName = "foo"; |
2902 o.start = "foo"; | 2917 o.start = "foo"; |
2903 o.variantSetId = "foo"; | 2918 o.variantSetId = "foo"; |
2904 } | 2919 } |
2905 buildCounterVariant--; | 2920 buildCounterVariant--; |
2906 return o; | 2921 return o; |
2907 } | 2922 } |
2908 | 2923 |
2909 checkVariant(api.Variant o) { | 2924 checkVariant(api.Variant o) { |
2910 buildCounterVariant++; | 2925 buildCounterVariant++; |
2911 if (buildCounterVariant < 3) { | 2926 if (buildCounterVariant < 3) { |
2912 checkUnnamed3026(o.alternateBases); | 2927 checkUnnamed3101(o.alternateBases); |
2913 checkUnnamed3027(o.calls); | 2928 checkUnnamed3102(o.calls); |
2914 unittest.expect(o.created, unittest.equals('foo')); | 2929 unittest.expect(o.created, unittest.equals('foo')); |
2915 unittest.expect(o.end, unittest.equals('foo')); | 2930 unittest.expect(o.end, unittest.equals('foo')); |
2916 checkUnnamed3028(o.filter); | 2931 checkUnnamed3103(o.filter); |
2917 unittest.expect(o.id, unittest.equals('foo')); | 2932 unittest.expect(o.id, unittest.equals('foo')); |
2918 checkUnnamed3030(o.info); | 2933 checkUnnamed3105(o.info); |
2919 checkUnnamed3031(o.names); | 2934 checkUnnamed3106(o.names); |
2920 unittest.expect(o.quality, unittest.equals(42.0)); | 2935 unittest.expect(o.quality, unittest.equals(42.0)); |
2921 unittest.expect(o.referenceBases, unittest.equals('foo')); | 2936 unittest.expect(o.referenceBases, unittest.equals('foo')); |
2922 unittest.expect(o.referenceName, unittest.equals('foo')); | 2937 unittest.expect(o.referenceName, unittest.equals('foo')); |
2923 unittest.expect(o.start, unittest.equals('foo')); | 2938 unittest.expect(o.start, unittest.equals('foo')); |
2924 unittest.expect(o.variantSetId, unittest.equals('foo')); | 2939 unittest.expect(o.variantSetId, unittest.equals('foo')); |
2925 } | 2940 } |
2926 buildCounterVariant--; | 2941 buildCounterVariant--; |
2927 } | 2942 } |
2928 | 2943 |
2929 buildUnnamed3032() { | 2944 buildUnnamed3107() { |
2930 var o = new core.List<api.ClinicalCondition>(); | 2945 var o = new core.List<api.ClinicalCondition>(); |
2931 o.add(buildClinicalCondition()); | 2946 o.add(buildClinicalCondition()); |
2932 o.add(buildClinicalCondition()); | 2947 o.add(buildClinicalCondition()); |
2933 return o; | 2948 return o; |
2934 } | 2949 } |
2935 | 2950 |
2936 checkUnnamed3032(core.List<api.ClinicalCondition> o) { | 2951 checkUnnamed3107(core.List<api.ClinicalCondition> o) { |
2937 unittest.expect(o, unittest.hasLength(2)); | 2952 unittest.expect(o, unittest.hasLength(2)); |
2938 checkClinicalCondition(o[0]); | 2953 checkClinicalCondition(o[0]); |
2939 checkClinicalCondition(o[1]); | 2954 checkClinicalCondition(o[1]); |
2940 } | 2955 } |
2941 | 2956 |
2942 buildUnnamed3033() { | 2957 buildUnnamed3108() { |
2943 var o = new core.List<core.String>(); | 2958 var o = new core.List<core.String>(); |
2944 o.add("foo"); | 2959 o.add("foo"); |
2945 o.add("foo"); | 2960 o.add("foo"); |
2946 return o; | 2961 return o; |
2947 } | 2962 } |
2948 | 2963 |
2949 checkUnnamed3033(core.List<core.String> o) { | 2964 checkUnnamed3108(core.List<core.String> o) { |
2950 unittest.expect(o, unittest.hasLength(2)); | 2965 unittest.expect(o, unittest.hasLength(2)); |
2951 unittest.expect(o[0], unittest.equals('foo')); | 2966 unittest.expect(o[0], unittest.equals('foo')); |
2952 unittest.expect(o[1], unittest.equals('foo')); | 2967 unittest.expect(o[1], unittest.equals('foo')); |
2953 } | 2968 } |
2954 | 2969 |
2955 core.int buildCounterVariantAnnotation = 0; | 2970 core.int buildCounterVariantAnnotation = 0; |
2956 buildVariantAnnotation() { | 2971 buildVariantAnnotation() { |
2957 var o = new api.VariantAnnotation(); | 2972 var o = new api.VariantAnnotation(); |
2958 buildCounterVariantAnnotation++; | 2973 buildCounterVariantAnnotation++; |
2959 if (buildCounterVariantAnnotation < 3) { | 2974 if (buildCounterVariantAnnotation < 3) { |
2960 o.alternateBases = "foo"; | 2975 o.alternateBases = "foo"; |
2961 o.clinicalSignificance = "foo"; | 2976 o.clinicalSignificance = "foo"; |
2962 o.conditions = buildUnnamed3032(); | 2977 o.conditions = buildUnnamed3107(); |
2963 o.effect = "foo"; | 2978 o.effect = "foo"; |
2964 o.geneId = "foo"; | 2979 o.geneId = "foo"; |
2965 o.transcriptIds = buildUnnamed3033(); | 2980 o.transcriptIds = buildUnnamed3108(); |
2966 o.type = "foo"; | 2981 o.type = "foo"; |
2967 } | 2982 } |
2968 buildCounterVariantAnnotation--; | 2983 buildCounterVariantAnnotation--; |
2969 return o; | 2984 return o; |
2970 } | 2985 } |
2971 | 2986 |
2972 checkVariantAnnotation(api.VariantAnnotation o) { | 2987 checkVariantAnnotation(api.VariantAnnotation o) { |
2973 buildCounterVariantAnnotation++; | 2988 buildCounterVariantAnnotation++; |
2974 if (buildCounterVariantAnnotation < 3) { | 2989 if (buildCounterVariantAnnotation < 3) { |
2975 unittest.expect(o.alternateBases, unittest.equals('foo')); | 2990 unittest.expect(o.alternateBases, unittest.equals('foo')); |
2976 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); | 2991 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); |
2977 checkUnnamed3032(o.conditions); | 2992 checkUnnamed3107(o.conditions); |
2978 unittest.expect(o.effect, unittest.equals('foo')); | 2993 unittest.expect(o.effect, unittest.equals('foo')); |
2979 unittest.expect(o.geneId, unittest.equals('foo')); | 2994 unittest.expect(o.geneId, unittest.equals('foo')); |
2980 checkUnnamed3033(o.transcriptIds); | 2995 checkUnnamed3108(o.transcriptIds); |
2981 unittest.expect(o.type, unittest.equals('foo')); | 2996 unittest.expect(o.type, unittest.equals('foo')); |
2982 } | 2997 } |
2983 buildCounterVariantAnnotation--; | 2998 buildCounterVariantAnnotation--; |
2984 } | 2999 } |
2985 | 3000 |
2986 buildUnnamed3034() { | 3001 buildUnnamed3109() { |
2987 var o = new core.List<core.int>(); | 3002 var o = new core.List<core.int>(); |
2988 o.add(42); | 3003 o.add(42); |
2989 o.add(42); | 3004 o.add(42); |
2990 return o; | 3005 return o; |
2991 } | 3006 } |
2992 | 3007 |
2993 checkUnnamed3034(core.List<core.int> o) { | 3008 checkUnnamed3109(core.List<core.int> o) { |
2994 unittest.expect(o, unittest.hasLength(2)); | 3009 unittest.expect(o, unittest.hasLength(2)); |
2995 unittest.expect(o[0], unittest.equals(42)); | 3010 unittest.expect(o[0], unittest.equals(42)); |
2996 unittest.expect(o[1], unittest.equals(42)); | 3011 unittest.expect(o[1], unittest.equals(42)); |
2997 } | 3012 } |
2998 | 3013 |
2999 buildUnnamed3035() { | 3014 buildUnnamed3110() { |
3000 var o = new core.List<core.double>(); | 3015 var o = new core.List<core.double>(); |
3001 o.add(42.0); | 3016 o.add(42.0); |
3002 o.add(42.0); | 3017 o.add(42.0); |
3003 return o; | 3018 return o; |
3004 } | 3019 } |
3005 | 3020 |
3006 checkUnnamed3035(core.List<core.double> o) { | 3021 checkUnnamed3110(core.List<core.double> o) { |
3007 unittest.expect(o, unittest.hasLength(2)); | 3022 unittest.expect(o, unittest.hasLength(2)); |
3008 unittest.expect(o[0], unittest.equals(42.0)); | 3023 unittest.expect(o[0], unittest.equals(42.0)); |
3009 unittest.expect(o[1], unittest.equals(42.0)); | 3024 unittest.expect(o[1], unittest.equals(42.0)); |
3010 } | 3025 } |
3011 | 3026 |
3012 buildUnnamed3036() { | 3027 buildUnnamed3111() { |
3013 var o = new core.List<core.Object>(); | 3028 var o = new core.List<core.Object>(); |
3014 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 3029 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
3015 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 3030 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
3016 return o; | 3031 return o; |
3017 } | 3032 } |
3018 | 3033 |
3019 checkUnnamed3036(core.List<core.Object> o) { | 3034 checkUnnamed3111(core.List<core.Object> o) { |
3020 unittest.expect(o, unittest.hasLength(2)); | 3035 unittest.expect(o, unittest.hasLength(2)); |
3021 var casted25 = (o[0]) as core.Map; unittest.expect(casted25, unittest.hasLengt
h(3)); unittest.expect(casted25["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted25["bool"], unittest.equals(true)); unittest.expect(casted25["string
"], unittest.equals('foo')); | 3036 var casted25 = (o[0]) as core.Map; unittest.expect(casted25, unittest.hasLengt
h(3)); unittest.expect(casted25["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted25["bool"], unittest.equals(true)); unittest.expect(casted25["string
"], unittest.equals('foo')); |
3022 var casted26 = (o[1]) as core.Map; unittest.expect(casted26, unittest.hasLengt
h(3)); unittest.expect(casted26["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted26["bool"], unittest.equals(true)); unittest.expect(casted26["string
"], unittest.equals('foo')); | 3037 var casted26 = (o[1]) as core.Map; unittest.expect(casted26, unittest.hasLengt
h(3)); unittest.expect(casted26["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted26["bool"], unittest.equals(true)); unittest.expect(casted26["string
"], unittest.equals('foo')); |
3023 } | 3038 } |
3024 | 3039 |
3025 buildUnnamed3037() { | 3040 buildUnnamed3112() { |
3026 var o = new core.Map<core.String, core.List<core.Object>>(); | 3041 var o = new core.Map<core.String, core.List<core.Object>>(); |
3027 o["x"] = buildUnnamed3036(); | 3042 o["x"] = buildUnnamed3111(); |
3028 o["y"] = buildUnnamed3036(); | 3043 o["y"] = buildUnnamed3111(); |
3029 return o; | 3044 return o; |
3030 } | 3045 } |
3031 | 3046 |
3032 checkUnnamed3037(core.Map<core.String, core.List<core.Object>> o) { | 3047 checkUnnamed3112(core.Map<core.String, core.List<core.Object>> o) { |
3033 unittest.expect(o, unittest.hasLength(2)); | 3048 unittest.expect(o, unittest.hasLength(2)); |
3034 checkUnnamed3036(o["x"]); | 3049 checkUnnamed3111(o["x"]); |
3035 checkUnnamed3036(o["y"]); | 3050 checkUnnamed3111(o["y"]); |
3036 } | 3051 } |
3037 | 3052 |
3038 core.int buildCounterVariantCall = 0; | 3053 core.int buildCounterVariantCall = 0; |
3039 buildVariantCall() { | 3054 buildVariantCall() { |
3040 var o = new api.VariantCall(); | 3055 var o = new api.VariantCall(); |
3041 buildCounterVariantCall++; | 3056 buildCounterVariantCall++; |
3042 if (buildCounterVariantCall < 3) { | 3057 if (buildCounterVariantCall < 3) { |
3043 o.callSetId = "foo"; | 3058 o.callSetId = "foo"; |
3044 o.callSetName = "foo"; | 3059 o.callSetName = "foo"; |
3045 o.genotype = buildUnnamed3034(); | 3060 o.genotype = buildUnnamed3109(); |
3046 o.genotypeLikelihood = buildUnnamed3035(); | 3061 o.genotypeLikelihood = buildUnnamed3110(); |
3047 o.info = buildUnnamed3037(); | 3062 o.info = buildUnnamed3112(); |
3048 o.phaseset = "foo"; | 3063 o.phaseset = "foo"; |
3049 } | 3064 } |
3050 buildCounterVariantCall--; | 3065 buildCounterVariantCall--; |
3051 return o; | 3066 return o; |
3052 } | 3067 } |
3053 | 3068 |
3054 checkVariantCall(api.VariantCall o) { | 3069 checkVariantCall(api.VariantCall o) { |
3055 buildCounterVariantCall++; | 3070 buildCounterVariantCall++; |
3056 if (buildCounterVariantCall < 3) { | 3071 if (buildCounterVariantCall < 3) { |
3057 unittest.expect(o.callSetId, unittest.equals('foo')); | 3072 unittest.expect(o.callSetId, unittest.equals('foo')); |
3058 unittest.expect(o.callSetName, unittest.equals('foo')); | 3073 unittest.expect(o.callSetName, unittest.equals('foo')); |
3059 checkUnnamed3034(o.genotype); | 3074 checkUnnamed3109(o.genotype); |
3060 checkUnnamed3035(o.genotypeLikelihood); | 3075 checkUnnamed3110(o.genotypeLikelihood); |
3061 checkUnnamed3037(o.info); | 3076 checkUnnamed3112(o.info); |
3062 unittest.expect(o.phaseset, unittest.equals('foo')); | 3077 unittest.expect(o.phaseset, unittest.equals('foo')); |
3063 } | 3078 } |
3064 buildCounterVariantCall--; | 3079 buildCounterVariantCall--; |
3065 } | 3080 } |
3066 | 3081 |
3067 buildUnnamed3038() { | 3082 buildUnnamed3113() { |
3068 var o = new core.List<api.VariantSetMetadata>(); | 3083 var o = new core.List<api.VariantSetMetadata>(); |
3069 o.add(buildVariantSetMetadata()); | 3084 o.add(buildVariantSetMetadata()); |
3070 o.add(buildVariantSetMetadata()); | 3085 o.add(buildVariantSetMetadata()); |
3071 return o; | 3086 return o; |
3072 } | 3087 } |
3073 | 3088 |
3074 checkUnnamed3038(core.List<api.VariantSetMetadata> o) { | 3089 checkUnnamed3113(core.List<api.VariantSetMetadata> o) { |
3075 unittest.expect(o, unittest.hasLength(2)); | 3090 unittest.expect(o, unittest.hasLength(2)); |
3076 checkVariantSetMetadata(o[0]); | 3091 checkVariantSetMetadata(o[0]); |
3077 checkVariantSetMetadata(o[1]); | 3092 checkVariantSetMetadata(o[1]); |
3078 } | 3093 } |
3079 | 3094 |
3080 buildUnnamed3039() { | 3095 buildUnnamed3114() { |
3081 var o = new core.List<api.ReferenceBound>(); | 3096 var o = new core.List<api.ReferenceBound>(); |
3082 o.add(buildReferenceBound()); | 3097 o.add(buildReferenceBound()); |
3083 o.add(buildReferenceBound()); | 3098 o.add(buildReferenceBound()); |
3084 return o; | 3099 return o; |
3085 } | 3100 } |
3086 | 3101 |
3087 checkUnnamed3039(core.List<api.ReferenceBound> o) { | 3102 checkUnnamed3114(core.List<api.ReferenceBound> o) { |
3088 unittest.expect(o, unittest.hasLength(2)); | 3103 unittest.expect(o, unittest.hasLength(2)); |
3089 checkReferenceBound(o[0]); | 3104 checkReferenceBound(o[0]); |
3090 checkReferenceBound(o[1]); | 3105 checkReferenceBound(o[1]); |
3091 } | 3106 } |
3092 | 3107 |
3093 core.int buildCounterVariantSet = 0; | 3108 core.int buildCounterVariantSet = 0; |
3094 buildVariantSet() { | 3109 buildVariantSet() { |
3095 var o = new api.VariantSet(); | 3110 var o = new api.VariantSet(); |
3096 buildCounterVariantSet++; | 3111 buildCounterVariantSet++; |
3097 if (buildCounterVariantSet < 3) { | 3112 if (buildCounterVariantSet < 3) { |
3098 o.datasetId = "foo"; | 3113 o.datasetId = "foo"; |
3099 o.description = "foo"; | 3114 o.description = "foo"; |
3100 o.id = "foo"; | 3115 o.id = "foo"; |
3101 o.metadata = buildUnnamed3038(); | 3116 o.metadata = buildUnnamed3113(); |
3102 o.name = "foo"; | 3117 o.name = "foo"; |
3103 o.referenceBounds = buildUnnamed3039(); | 3118 o.referenceBounds = buildUnnamed3114(); |
3104 o.referenceSetId = "foo"; | 3119 o.referenceSetId = "foo"; |
3105 } | 3120 } |
3106 buildCounterVariantSet--; | 3121 buildCounterVariantSet--; |
3107 return o; | 3122 return o; |
3108 } | 3123 } |
3109 | 3124 |
3110 checkVariantSet(api.VariantSet o) { | 3125 checkVariantSet(api.VariantSet o) { |
3111 buildCounterVariantSet++; | 3126 buildCounterVariantSet++; |
3112 if (buildCounterVariantSet < 3) { | 3127 if (buildCounterVariantSet < 3) { |
3113 unittest.expect(o.datasetId, unittest.equals('foo')); | 3128 unittest.expect(o.datasetId, unittest.equals('foo')); |
3114 unittest.expect(o.description, unittest.equals('foo')); | 3129 unittest.expect(o.description, unittest.equals('foo')); |
3115 unittest.expect(o.id, unittest.equals('foo')); | 3130 unittest.expect(o.id, unittest.equals('foo')); |
3116 checkUnnamed3038(o.metadata); | 3131 checkUnnamed3113(o.metadata); |
3117 unittest.expect(o.name, unittest.equals('foo')); | 3132 unittest.expect(o.name, unittest.equals('foo')); |
3118 checkUnnamed3039(o.referenceBounds); | 3133 checkUnnamed3114(o.referenceBounds); |
3119 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 3134 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
3120 } | 3135 } |
3121 buildCounterVariantSet--; | 3136 buildCounterVariantSet--; |
3122 } | 3137 } |
3123 | 3138 |
3124 buildUnnamed3040() { | 3139 buildUnnamed3115() { |
3125 var o = new core.List<core.Object>(); | 3140 var o = new core.List<core.Object>(); |
3126 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 3141 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
3127 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 3142 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
3128 return o; | 3143 return o; |
3129 } | 3144 } |
3130 | 3145 |
3131 checkUnnamed3040(core.List<core.Object> o) { | 3146 checkUnnamed3115(core.List<core.Object> o) { |
3132 unittest.expect(o, unittest.hasLength(2)); | 3147 unittest.expect(o, unittest.hasLength(2)); |
3133 var casted27 = (o[0]) as core.Map; unittest.expect(casted27, unittest.hasLengt
h(3)); unittest.expect(casted27["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted27["bool"], unittest.equals(true)); unittest.expect(casted27["string
"], unittest.equals('foo')); | 3148 var casted27 = (o[0]) as core.Map; unittest.expect(casted27, unittest.hasLengt
h(3)); unittest.expect(casted27["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted27["bool"], unittest.equals(true)); unittest.expect(casted27["string
"], unittest.equals('foo')); |
3134 var casted28 = (o[1]) as core.Map; unittest.expect(casted28, unittest.hasLengt
h(3)); unittest.expect(casted28["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted28["bool"], unittest.equals(true)); unittest.expect(casted28["string
"], unittest.equals('foo')); | 3149 var casted28 = (o[1]) as core.Map; unittest.expect(casted28, unittest.hasLengt
h(3)); unittest.expect(casted28["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted28["bool"], unittest.equals(true)); unittest.expect(casted28["string
"], unittest.equals('foo')); |
3135 } | 3150 } |
3136 | 3151 |
3137 buildUnnamed3041() { | 3152 buildUnnamed3116() { |
3138 var o = new core.Map<core.String, core.List<core.Object>>(); | 3153 var o = new core.Map<core.String, core.List<core.Object>>(); |
3139 o["x"] = buildUnnamed3040(); | 3154 o["x"] = buildUnnamed3115(); |
3140 o["y"] = buildUnnamed3040(); | 3155 o["y"] = buildUnnamed3115(); |
3141 return o; | 3156 return o; |
3142 } | 3157 } |
3143 | 3158 |
3144 checkUnnamed3041(core.Map<core.String, core.List<core.Object>> o) { | 3159 checkUnnamed3116(core.Map<core.String, core.List<core.Object>> o) { |
3145 unittest.expect(o, unittest.hasLength(2)); | 3160 unittest.expect(o, unittest.hasLength(2)); |
3146 checkUnnamed3040(o["x"]); | 3161 checkUnnamed3115(o["x"]); |
3147 checkUnnamed3040(o["y"]); | 3162 checkUnnamed3115(o["y"]); |
3148 } | 3163 } |
3149 | 3164 |
3150 core.int buildCounterVariantSetMetadata = 0; | 3165 core.int buildCounterVariantSetMetadata = 0; |
3151 buildVariantSetMetadata() { | 3166 buildVariantSetMetadata() { |
3152 var o = new api.VariantSetMetadata(); | 3167 var o = new api.VariantSetMetadata(); |
3153 buildCounterVariantSetMetadata++; | 3168 buildCounterVariantSetMetadata++; |
3154 if (buildCounterVariantSetMetadata < 3) { | 3169 if (buildCounterVariantSetMetadata < 3) { |
3155 o.description = "foo"; | 3170 o.description = "foo"; |
3156 o.id = "foo"; | 3171 o.id = "foo"; |
3157 o.info = buildUnnamed3041(); | 3172 o.info = buildUnnamed3116(); |
3158 o.key = "foo"; | 3173 o.key = "foo"; |
3159 o.number = "foo"; | 3174 o.number = "foo"; |
3160 o.type = "foo"; | 3175 o.type = "foo"; |
3161 o.value = "foo"; | 3176 o.value = "foo"; |
3162 } | 3177 } |
3163 buildCounterVariantSetMetadata--; | 3178 buildCounterVariantSetMetadata--; |
3164 return o; | 3179 return o; |
3165 } | 3180 } |
3166 | 3181 |
3167 checkVariantSetMetadata(api.VariantSetMetadata o) { | 3182 checkVariantSetMetadata(api.VariantSetMetadata o) { |
3168 buildCounterVariantSetMetadata++; | 3183 buildCounterVariantSetMetadata++; |
3169 if (buildCounterVariantSetMetadata < 3) { | 3184 if (buildCounterVariantSetMetadata < 3) { |
3170 unittest.expect(o.description, unittest.equals('foo')); | 3185 unittest.expect(o.description, unittest.equals('foo')); |
3171 unittest.expect(o.id, unittest.equals('foo')); | 3186 unittest.expect(o.id, unittest.equals('foo')); |
3172 checkUnnamed3041(o.info); | 3187 checkUnnamed3116(o.info); |
3173 unittest.expect(o.key, unittest.equals('foo')); | 3188 unittest.expect(o.key, unittest.equals('foo')); |
3174 unittest.expect(o.number, unittest.equals('foo')); | 3189 unittest.expect(o.number, unittest.equals('foo')); |
3175 unittest.expect(o.type, unittest.equals('foo')); | 3190 unittest.expect(o.type, unittest.equals('foo')); |
3176 unittest.expect(o.value, unittest.equals('foo')); | 3191 unittest.expect(o.value, unittest.equals('foo')); |
3177 } | 3192 } |
3178 buildCounterVariantSetMetadata--; | 3193 buildCounterVariantSetMetadata--; |
3179 } | 3194 } |
3180 | 3195 |
3181 | 3196 |
3182 main() { | 3197 main() { |
(...skipping 3484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6667 res.search(arg_request).then(unittest.expectAsync(((api.SearchVariantSetsR
esponse response) { | 6682 res.search(arg_request).then(unittest.expectAsync(((api.SearchVariantSetsR
esponse response) { |
6668 checkSearchVariantSetsResponse(response); | 6683 checkSearchVariantSetsResponse(response); |
6669 }))); | 6684 }))); |
6670 }); | 6685 }); |
6671 | 6686 |
6672 }); | 6687 }); |
6673 | 6688 |
6674 | 6689 |
6675 } | 6690 } |
6676 | 6691 |
OLD | NEW |