OLD | NEW |
1 library googleapis_beta.genomics.v1beta2.test; | 1 library googleapis_beta.genomics.v1beta2.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 buildUnnamed1500() { | 54 buildUnnamed2373() { |
55 var o = new core.List<core.String>(); | 55 var o = new core.List<core.String>(); |
56 o.add("foo"); | 56 o.add("foo"); |
57 o.add("foo"); | 57 o.add("foo"); |
58 return o; | 58 return o; |
59 } | 59 } |
60 | 60 |
61 checkUnnamed1500(core.List<core.String> o) { | 61 checkUnnamed2373(core.List<core.String> o) { |
62 unittest.expect(o, unittest.hasLength(2)); | 62 unittest.expect(o, unittest.hasLength(2)); |
63 unittest.expect(o[0], unittest.equals('foo')); | 63 unittest.expect(o[0], unittest.equals('foo')); |
64 unittest.expect(o[1], unittest.equals('foo')); | 64 unittest.expect(o[1], unittest.equals('foo')); |
65 } | 65 } |
66 | 66 |
67 core.int buildCounterAlignReadGroupSetsRequest = 0; | 67 core.int buildCounterAlignReadGroupSetsRequest = 0; |
68 buildAlignReadGroupSetsRequest() { | 68 buildAlignReadGroupSetsRequest() { |
69 var o = new api.AlignReadGroupSetsRequest(); | 69 var o = new api.AlignReadGroupSetsRequest(); |
70 buildCounterAlignReadGroupSetsRequest++; | 70 buildCounterAlignReadGroupSetsRequest++; |
71 if (buildCounterAlignReadGroupSetsRequest < 3) { | 71 if (buildCounterAlignReadGroupSetsRequest < 3) { |
72 o.bamSourceUris = buildUnnamed1500(); | 72 o.bamSourceUris = buildUnnamed2373(); |
73 o.datasetId = "foo"; | 73 o.datasetId = "foo"; |
74 o.interleavedFastqSource = buildInterleavedFastqSource(); | 74 o.interleavedFastqSource = buildInterleavedFastqSource(); |
75 o.pairedFastqSource = buildPairedFastqSource(); | 75 o.pairedFastqSource = buildPairedFastqSource(); |
76 o.readGroupSetId = "foo"; | 76 o.readGroupSetId = "foo"; |
77 } | 77 } |
78 buildCounterAlignReadGroupSetsRequest--; | 78 buildCounterAlignReadGroupSetsRequest--; |
79 return o; | 79 return o; |
80 } | 80 } |
81 | 81 |
82 checkAlignReadGroupSetsRequest(api.AlignReadGroupSetsRequest o) { | 82 checkAlignReadGroupSetsRequest(api.AlignReadGroupSetsRequest o) { |
83 buildCounterAlignReadGroupSetsRequest++; | 83 buildCounterAlignReadGroupSetsRequest++; |
84 if (buildCounterAlignReadGroupSetsRequest < 3) { | 84 if (buildCounterAlignReadGroupSetsRequest < 3) { |
85 checkUnnamed1500(o.bamSourceUris); | 85 checkUnnamed2373(o.bamSourceUris); |
86 unittest.expect(o.datasetId, unittest.equals('foo')); | 86 unittest.expect(o.datasetId, unittest.equals('foo')); |
87 checkInterleavedFastqSource(o.interleavedFastqSource); | 87 checkInterleavedFastqSource(o.interleavedFastqSource); |
88 checkPairedFastqSource(o.pairedFastqSource); | 88 checkPairedFastqSource(o.pairedFastqSource); |
89 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 89 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
90 } | 90 } |
91 buildCounterAlignReadGroupSetsRequest--; | 91 buildCounterAlignReadGroupSetsRequest--; |
92 } | 92 } |
93 | 93 |
94 core.int buildCounterAlignReadGroupSetsResponse = 0; | 94 core.int buildCounterAlignReadGroupSetsResponse = 0; |
95 buildAlignReadGroupSetsResponse() { | 95 buildAlignReadGroupSetsResponse() { |
96 var o = new api.AlignReadGroupSetsResponse(); | 96 var o = new api.AlignReadGroupSetsResponse(); |
97 buildCounterAlignReadGroupSetsResponse++; | 97 buildCounterAlignReadGroupSetsResponse++; |
98 if (buildCounterAlignReadGroupSetsResponse < 3) { | 98 if (buildCounterAlignReadGroupSetsResponse < 3) { |
99 o.jobId = "foo"; | 99 o.jobId = "foo"; |
100 } | 100 } |
101 buildCounterAlignReadGroupSetsResponse--; | 101 buildCounterAlignReadGroupSetsResponse--; |
102 return o; | 102 return o; |
103 } | 103 } |
104 | 104 |
105 checkAlignReadGroupSetsResponse(api.AlignReadGroupSetsResponse o) { | 105 checkAlignReadGroupSetsResponse(api.AlignReadGroupSetsResponse o) { |
106 buildCounterAlignReadGroupSetsResponse++; | 106 buildCounterAlignReadGroupSetsResponse++; |
107 if (buildCounterAlignReadGroupSetsResponse < 3) { | 107 if (buildCounterAlignReadGroupSetsResponse < 3) { |
108 unittest.expect(o.jobId, unittest.equals('foo')); | 108 unittest.expect(o.jobId, unittest.equals('foo')); |
109 } | 109 } |
110 buildCounterAlignReadGroupSetsResponse--; | 110 buildCounterAlignReadGroupSetsResponse--; |
111 } | 111 } |
112 | 112 |
113 buildUnnamed1501() { | 113 buildUnnamed2374() { |
114 var o = new core.List<core.String>(); | 114 var o = new core.List<core.String>(); |
115 o.add("foo"); | 115 o.add("foo"); |
116 o.add("foo"); | 116 o.add("foo"); |
117 return o; | 117 return o; |
118 } | 118 } |
119 | 119 |
120 checkUnnamed1501(core.List<core.String> o) { | 120 checkUnnamed2374(core.List<core.String> o) { |
121 unittest.expect(o, unittest.hasLength(2)); | 121 unittest.expect(o, unittest.hasLength(2)); |
122 unittest.expect(o[0], unittest.equals('foo')); | 122 unittest.expect(o[0], unittest.equals('foo')); |
123 unittest.expect(o[1], unittest.equals('foo')); | 123 unittest.expect(o[1], unittest.equals('foo')); |
124 } | 124 } |
125 | 125 |
126 buildUnnamed1502() { | 126 buildUnnamed2375() { |
127 var o = new core.Map<core.String, core.List<core.String>>(); | 127 var o = new core.Map<core.String, core.List<core.String>>(); |
128 o["x"] = buildUnnamed1501(); | 128 o["x"] = buildUnnamed2374(); |
129 o["y"] = buildUnnamed1501(); | 129 o["y"] = buildUnnamed2374(); |
130 return o; | 130 return o; |
131 } | 131 } |
132 | 132 |
133 checkUnnamed1502(core.Map<core.String, core.List<core.String>> o) { | 133 checkUnnamed2375(core.Map<core.String, core.List<core.String>> o) { |
134 unittest.expect(o, unittest.hasLength(2)); | 134 unittest.expect(o, unittest.hasLength(2)); |
135 checkUnnamed1501(o["x"]); | 135 checkUnnamed2374(o["x"]); |
136 checkUnnamed1501(o["y"]); | 136 checkUnnamed2374(o["y"]); |
137 } | 137 } |
138 | 138 |
139 core.int buildCounterAnnotation = 0; | 139 core.int buildCounterAnnotation = 0; |
140 buildAnnotation() { | 140 buildAnnotation() { |
141 var o = new api.Annotation(); | 141 var o = new api.Annotation(); |
142 buildCounterAnnotation++; | 142 buildCounterAnnotation++; |
143 if (buildCounterAnnotation < 3) { | 143 if (buildCounterAnnotation < 3) { |
144 o.annotationSetId = "foo"; | 144 o.annotationSetId = "foo"; |
145 o.id = "foo"; | 145 o.id = "foo"; |
146 o.info = buildUnnamed1502(); | 146 o.info = buildUnnamed2375(); |
147 o.name = "foo"; | 147 o.name = "foo"; |
148 o.position = buildRangePosition(); | 148 o.position = buildRangePosition(); |
149 o.transcript = buildTranscript(); | 149 o.transcript = buildTranscript(); |
150 o.type = "foo"; | 150 o.type = "foo"; |
151 o.variant = buildVariantAnnotation(); | 151 o.variant = buildVariantAnnotation(); |
152 } | 152 } |
153 buildCounterAnnotation--; | 153 buildCounterAnnotation--; |
154 return o; | 154 return o; |
155 } | 155 } |
156 | 156 |
157 checkAnnotation(api.Annotation o) { | 157 checkAnnotation(api.Annotation o) { |
158 buildCounterAnnotation++; | 158 buildCounterAnnotation++; |
159 if (buildCounterAnnotation < 3) { | 159 if (buildCounterAnnotation < 3) { |
160 unittest.expect(o.annotationSetId, unittest.equals('foo')); | 160 unittest.expect(o.annotationSetId, unittest.equals('foo')); |
161 unittest.expect(o.id, unittest.equals('foo')); | 161 unittest.expect(o.id, unittest.equals('foo')); |
162 checkUnnamed1502(o.info); | 162 checkUnnamed2375(o.info); |
163 unittest.expect(o.name, unittest.equals('foo')); | 163 unittest.expect(o.name, unittest.equals('foo')); |
164 checkRangePosition(o.position); | 164 checkRangePosition(o.position); |
165 checkTranscript(o.transcript); | 165 checkTranscript(o.transcript); |
166 unittest.expect(o.type, unittest.equals('foo')); | 166 unittest.expect(o.type, unittest.equals('foo')); |
167 checkVariantAnnotation(o.variant); | 167 checkVariantAnnotation(o.variant); |
168 } | 168 } |
169 buildCounterAnnotation--; | 169 buildCounterAnnotation--; |
170 } | 170 } |
171 | 171 |
172 buildUnnamed1503() { | 172 buildUnnamed2376() { |
173 var o = new core.List<core.String>(); | 173 var o = new core.List<core.String>(); |
174 o.add("foo"); | 174 o.add("foo"); |
175 o.add("foo"); | 175 o.add("foo"); |
176 return o; | 176 return o; |
177 } | 177 } |
178 | 178 |
179 checkUnnamed1503(core.List<core.String> o) { | 179 checkUnnamed2376(core.List<core.String> o) { |
180 unittest.expect(o, unittest.hasLength(2)); | 180 unittest.expect(o, unittest.hasLength(2)); |
181 unittest.expect(o[0], unittest.equals('foo')); | 181 unittest.expect(o[0], unittest.equals('foo')); |
182 unittest.expect(o[1], unittest.equals('foo')); | 182 unittest.expect(o[1], unittest.equals('foo')); |
183 } | 183 } |
184 | 184 |
185 buildUnnamed1504() { | 185 buildUnnamed2377() { |
186 var o = new core.Map<core.String, core.List<core.String>>(); | 186 var o = new core.Map<core.String, core.List<core.String>>(); |
187 o["x"] = buildUnnamed1503(); | 187 o["x"] = buildUnnamed2376(); |
188 o["y"] = buildUnnamed1503(); | 188 o["y"] = buildUnnamed2376(); |
189 return o; | 189 return o; |
190 } | 190 } |
191 | 191 |
192 checkUnnamed1504(core.Map<core.String, core.List<core.String>> o) { | 192 checkUnnamed2377(core.Map<core.String, core.List<core.String>> o) { |
193 unittest.expect(o, unittest.hasLength(2)); | 193 unittest.expect(o, unittest.hasLength(2)); |
194 checkUnnamed1503(o["x"]); | 194 checkUnnamed2376(o["x"]); |
195 checkUnnamed1503(o["y"]); | 195 checkUnnamed2376(o["y"]); |
196 } | 196 } |
197 | 197 |
198 core.int buildCounterAnnotationSet = 0; | 198 core.int buildCounterAnnotationSet = 0; |
199 buildAnnotationSet() { | 199 buildAnnotationSet() { |
200 var o = new api.AnnotationSet(); | 200 var o = new api.AnnotationSet(); |
201 buildCounterAnnotationSet++; | 201 buildCounterAnnotationSet++; |
202 if (buildCounterAnnotationSet < 3) { | 202 if (buildCounterAnnotationSet < 3) { |
203 o.datasetId = "foo"; | 203 o.datasetId = "foo"; |
204 o.id = "foo"; | 204 o.id = "foo"; |
205 o.info = buildUnnamed1504(); | 205 o.info = buildUnnamed2377(); |
206 o.name = "foo"; | 206 o.name = "foo"; |
207 o.referenceSetId = "foo"; | 207 o.referenceSetId = "foo"; |
208 o.sourceUri = "foo"; | 208 o.sourceUri = "foo"; |
209 o.type = "foo"; | 209 o.type = "foo"; |
210 } | 210 } |
211 buildCounterAnnotationSet--; | 211 buildCounterAnnotationSet--; |
212 return o; | 212 return o; |
213 } | 213 } |
214 | 214 |
215 checkAnnotationSet(api.AnnotationSet o) { | 215 checkAnnotationSet(api.AnnotationSet o) { |
216 buildCounterAnnotationSet++; | 216 buildCounterAnnotationSet++; |
217 if (buildCounterAnnotationSet < 3) { | 217 if (buildCounterAnnotationSet < 3) { |
218 unittest.expect(o.datasetId, unittest.equals('foo')); | 218 unittest.expect(o.datasetId, unittest.equals('foo')); |
219 unittest.expect(o.id, unittest.equals('foo')); | 219 unittest.expect(o.id, unittest.equals('foo')); |
220 checkUnnamed1504(o.info); | 220 checkUnnamed2377(o.info); |
221 unittest.expect(o.name, unittest.equals('foo')); | 221 unittest.expect(o.name, unittest.equals('foo')); |
222 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 222 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
223 unittest.expect(o.sourceUri, unittest.equals('foo')); | 223 unittest.expect(o.sourceUri, unittest.equals('foo')); |
224 unittest.expect(o.type, unittest.equals('foo')); | 224 unittest.expect(o.type, unittest.equals('foo')); |
225 } | 225 } |
226 buildCounterAnnotationSet--; | 226 buildCounterAnnotationSet--; |
227 } | 227 } |
228 | 228 |
229 buildUnnamed1505() { | 229 buildUnnamed2378() { |
230 var o = new core.List<api.BatchAnnotationsResponseEntry>(); | 230 var o = new core.List<api.BatchAnnotationsResponseEntry>(); |
231 o.add(buildBatchAnnotationsResponseEntry()); | 231 o.add(buildBatchAnnotationsResponseEntry()); |
232 o.add(buildBatchAnnotationsResponseEntry()); | 232 o.add(buildBatchAnnotationsResponseEntry()); |
233 return o; | 233 return o; |
234 } | 234 } |
235 | 235 |
236 checkUnnamed1505(core.List<api.BatchAnnotationsResponseEntry> o) { | 236 checkUnnamed2378(core.List<api.BatchAnnotationsResponseEntry> o) { |
237 unittest.expect(o, unittest.hasLength(2)); | 237 unittest.expect(o, unittest.hasLength(2)); |
238 checkBatchAnnotationsResponseEntry(o[0]); | 238 checkBatchAnnotationsResponseEntry(o[0]); |
239 checkBatchAnnotationsResponseEntry(o[1]); | 239 checkBatchAnnotationsResponseEntry(o[1]); |
240 } | 240 } |
241 | 241 |
242 core.int buildCounterBatchAnnotationsResponse = 0; | 242 core.int buildCounterBatchAnnotationsResponse = 0; |
243 buildBatchAnnotationsResponse() { | 243 buildBatchAnnotationsResponse() { |
244 var o = new api.BatchAnnotationsResponse(); | 244 var o = new api.BatchAnnotationsResponse(); |
245 buildCounterBatchAnnotationsResponse++; | 245 buildCounterBatchAnnotationsResponse++; |
246 if (buildCounterBatchAnnotationsResponse < 3) { | 246 if (buildCounterBatchAnnotationsResponse < 3) { |
247 o.entries = buildUnnamed1505(); | 247 o.entries = buildUnnamed2378(); |
248 } | 248 } |
249 buildCounterBatchAnnotationsResponse--; | 249 buildCounterBatchAnnotationsResponse--; |
250 return o; | 250 return o; |
251 } | 251 } |
252 | 252 |
253 checkBatchAnnotationsResponse(api.BatchAnnotationsResponse o) { | 253 checkBatchAnnotationsResponse(api.BatchAnnotationsResponse o) { |
254 buildCounterBatchAnnotationsResponse++; | 254 buildCounterBatchAnnotationsResponse++; |
255 if (buildCounterBatchAnnotationsResponse < 3) { | 255 if (buildCounterBatchAnnotationsResponse < 3) { |
256 checkUnnamed1505(o.entries); | 256 checkUnnamed2378(o.entries); |
257 } | 257 } |
258 buildCounterBatchAnnotationsResponse--; | 258 buildCounterBatchAnnotationsResponse--; |
259 } | 259 } |
260 | 260 |
261 core.int buildCounterBatchAnnotationsResponseEntry = 0; | 261 core.int buildCounterBatchAnnotationsResponseEntry = 0; |
262 buildBatchAnnotationsResponseEntry() { | 262 buildBatchAnnotationsResponseEntry() { |
263 var o = new api.BatchAnnotationsResponseEntry(); | 263 var o = new api.BatchAnnotationsResponseEntry(); |
264 buildCounterBatchAnnotationsResponseEntry++; | 264 buildCounterBatchAnnotationsResponseEntry++; |
265 if (buildCounterBatchAnnotationsResponseEntry < 3) { | 265 if (buildCounterBatchAnnotationsResponseEntry < 3) { |
266 o.annotation = buildAnnotation(); | 266 o.annotation = buildAnnotation(); |
(...skipping 26 matching lines...) Expand all Loading... |
293 | 293 |
294 checkBatchAnnotationsResponseEntryStatus(api.BatchAnnotationsResponseEntryStatus
o) { | 294 checkBatchAnnotationsResponseEntryStatus(api.BatchAnnotationsResponseEntryStatus
o) { |
295 buildCounterBatchAnnotationsResponseEntryStatus++; | 295 buildCounterBatchAnnotationsResponseEntryStatus++; |
296 if (buildCounterBatchAnnotationsResponseEntryStatus < 3) { | 296 if (buildCounterBatchAnnotationsResponseEntryStatus < 3) { |
297 unittest.expect(o.code, unittest.equals(42)); | 297 unittest.expect(o.code, unittest.equals(42)); |
298 unittest.expect(o.message, unittest.equals('foo')); | 298 unittest.expect(o.message, unittest.equals('foo')); |
299 } | 299 } |
300 buildCounterBatchAnnotationsResponseEntryStatus--; | 300 buildCounterBatchAnnotationsResponseEntryStatus--; |
301 } | 301 } |
302 | 302 |
303 buildUnnamed1506() { | 303 buildUnnamed2379() { |
304 var o = new core.List<api.Annotation>(); | 304 var o = new core.List<api.Annotation>(); |
305 o.add(buildAnnotation()); | 305 o.add(buildAnnotation()); |
306 o.add(buildAnnotation()); | 306 o.add(buildAnnotation()); |
307 return o; | 307 return o; |
308 } | 308 } |
309 | 309 |
310 checkUnnamed1506(core.List<api.Annotation> o) { | 310 checkUnnamed2379(core.List<api.Annotation> o) { |
311 unittest.expect(o, unittest.hasLength(2)); | 311 unittest.expect(o, unittest.hasLength(2)); |
312 checkAnnotation(o[0]); | 312 checkAnnotation(o[0]); |
313 checkAnnotation(o[1]); | 313 checkAnnotation(o[1]); |
314 } | 314 } |
315 | 315 |
316 core.int buildCounterBatchCreateAnnotationsRequest = 0; | 316 core.int buildCounterBatchCreateAnnotationsRequest = 0; |
317 buildBatchCreateAnnotationsRequest() { | 317 buildBatchCreateAnnotationsRequest() { |
318 var o = new api.BatchCreateAnnotationsRequest(); | 318 var o = new api.BatchCreateAnnotationsRequest(); |
319 buildCounterBatchCreateAnnotationsRequest++; | 319 buildCounterBatchCreateAnnotationsRequest++; |
320 if (buildCounterBatchCreateAnnotationsRequest < 3) { | 320 if (buildCounterBatchCreateAnnotationsRequest < 3) { |
321 o.annotations = buildUnnamed1506(); | 321 o.annotations = buildUnnamed2379(); |
322 } | 322 } |
323 buildCounterBatchCreateAnnotationsRequest--; | 323 buildCounterBatchCreateAnnotationsRequest--; |
324 return o; | 324 return o; |
325 } | 325 } |
326 | 326 |
327 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) { | 327 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) { |
328 buildCounterBatchCreateAnnotationsRequest++; | 328 buildCounterBatchCreateAnnotationsRequest++; |
329 if (buildCounterBatchCreateAnnotationsRequest < 3) { | 329 if (buildCounterBatchCreateAnnotationsRequest < 3) { |
330 checkUnnamed1506(o.annotations); | 330 checkUnnamed2379(o.annotations); |
331 } | 331 } |
332 buildCounterBatchCreateAnnotationsRequest--; | 332 buildCounterBatchCreateAnnotationsRequest--; |
333 } | 333 } |
334 | 334 |
335 buildUnnamed1507() { | 335 buildUnnamed2380() { |
336 var o = new core.List<core.int>(); | 336 var o = new core.List<core.int>(); |
337 o.add(42); | 337 o.add(42); |
338 o.add(42); | 338 o.add(42); |
339 return o; | 339 return o; |
340 } | 340 } |
341 | 341 |
342 checkUnnamed1507(core.List<core.int> o) { | 342 checkUnnamed2380(core.List<core.int> o) { |
343 unittest.expect(o, unittest.hasLength(2)); | 343 unittest.expect(o, unittest.hasLength(2)); |
344 unittest.expect(o[0], unittest.equals(42)); | 344 unittest.expect(o[0], unittest.equals(42)); |
345 unittest.expect(o[1], unittest.equals(42)); | 345 unittest.expect(o[1], unittest.equals(42)); |
346 } | 346 } |
347 | 347 |
348 buildUnnamed1508() { | 348 buildUnnamed2381() { |
349 var o = new core.List<core.double>(); | 349 var o = new core.List<core.double>(); |
350 o.add(42.0); | 350 o.add(42.0); |
351 o.add(42.0); | 351 o.add(42.0); |
352 return o; | 352 return o; |
353 } | 353 } |
354 | 354 |
355 checkUnnamed1508(core.List<core.double> o) { | 355 checkUnnamed2381(core.List<core.double> o) { |
356 unittest.expect(o, unittest.hasLength(2)); | 356 unittest.expect(o, unittest.hasLength(2)); |
357 unittest.expect(o[0], unittest.equals(42.0)); | 357 unittest.expect(o[0], unittest.equals(42.0)); |
358 unittest.expect(o[1], unittest.equals(42.0)); | 358 unittest.expect(o[1], unittest.equals(42.0)); |
359 } | 359 } |
360 | 360 |
361 buildUnnamed1509() { | 361 buildUnnamed2382() { |
362 var o = new core.List<core.String>(); | 362 var o = new core.List<core.String>(); |
363 o.add("foo"); | 363 o.add("foo"); |
364 o.add("foo"); | 364 o.add("foo"); |
365 return o; | 365 return o; |
366 } | 366 } |
367 | 367 |
368 checkUnnamed1509(core.List<core.String> o) { | 368 checkUnnamed2382(core.List<core.String> o) { |
369 unittest.expect(o, unittest.hasLength(2)); | 369 unittest.expect(o, unittest.hasLength(2)); |
370 unittest.expect(o[0], unittest.equals('foo')); | 370 unittest.expect(o[0], unittest.equals('foo')); |
371 unittest.expect(o[1], unittest.equals('foo')); | 371 unittest.expect(o[1], unittest.equals('foo')); |
372 } | 372 } |
373 | 373 |
374 buildUnnamed1510() { | 374 buildUnnamed2383() { |
375 var o = new core.Map<core.String, core.List<core.String>>(); | 375 var o = new core.Map<core.String, core.List<core.String>>(); |
376 o["x"] = buildUnnamed1509(); | 376 o["x"] = buildUnnamed2382(); |
377 o["y"] = buildUnnamed1509(); | 377 o["y"] = buildUnnamed2382(); |
378 return o; | 378 return o; |
379 } | 379 } |
380 | 380 |
381 checkUnnamed1510(core.Map<core.String, core.List<core.String>> o) { | 381 checkUnnamed2383(core.Map<core.String, core.List<core.String>> o) { |
382 unittest.expect(o, unittest.hasLength(2)); | 382 unittest.expect(o, unittest.hasLength(2)); |
383 checkUnnamed1509(o["x"]); | 383 checkUnnamed2382(o["x"]); |
384 checkUnnamed1509(o["y"]); | 384 checkUnnamed2382(o["y"]); |
385 } | 385 } |
386 | 386 |
387 core.int buildCounterCall = 0; | 387 core.int buildCounterCall = 0; |
388 buildCall() { | 388 buildCall() { |
389 var o = new api.Call(); | 389 var o = new api.Call(); |
390 buildCounterCall++; | 390 buildCounterCall++; |
391 if (buildCounterCall < 3) { | 391 if (buildCounterCall < 3) { |
392 o.callSetId = "foo"; | 392 o.callSetId = "foo"; |
393 o.callSetName = "foo"; | 393 o.callSetName = "foo"; |
394 o.genotype = buildUnnamed1507(); | 394 o.genotype = buildUnnamed2380(); |
395 o.genotypeLikelihood = buildUnnamed1508(); | 395 o.genotypeLikelihood = buildUnnamed2381(); |
396 o.info = buildUnnamed1510(); | 396 o.info = buildUnnamed2383(); |
397 o.phaseset = "foo"; | 397 o.phaseset = "foo"; |
398 } | 398 } |
399 buildCounterCall--; | 399 buildCounterCall--; |
400 return o; | 400 return o; |
401 } | 401 } |
402 | 402 |
403 checkCall(api.Call o) { | 403 checkCall(api.Call o) { |
404 buildCounterCall++; | 404 buildCounterCall++; |
405 if (buildCounterCall < 3) { | 405 if (buildCounterCall < 3) { |
406 unittest.expect(o.callSetId, unittest.equals('foo')); | 406 unittest.expect(o.callSetId, unittest.equals('foo')); |
407 unittest.expect(o.callSetName, unittest.equals('foo')); | 407 unittest.expect(o.callSetName, unittest.equals('foo')); |
408 checkUnnamed1507(o.genotype); | 408 checkUnnamed2380(o.genotype); |
409 checkUnnamed1508(o.genotypeLikelihood); | 409 checkUnnamed2381(o.genotypeLikelihood); |
410 checkUnnamed1510(o.info); | 410 checkUnnamed2383(o.info); |
411 unittest.expect(o.phaseset, unittest.equals('foo')); | 411 unittest.expect(o.phaseset, unittest.equals('foo')); |
412 } | 412 } |
413 buildCounterCall--; | 413 buildCounterCall--; |
414 } | 414 } |
415 | 415 |
416 buildUnnamed1511() { | 416 buildUnnamed2384() { |
417 var o = new core.List<core.String>(); | 417 var o = new core.List<core.String>(); |
418 o.add("foo"); | 418 o.add("foo"); |
419 o.add("foo"); | 419 o.add("foo"); |
420 return o; | 420 return o; |
421 } | 421 } |
422 | 422 |
423 checkUnnamed1511(core.List<core.String> o) { | 423 checkUnnamed2384(core.List<core.String> o) { |
424 unittest.expect(o, unittest.hasLength(2)); | 424 unittest.expect(o, unittest.hasLength(2)); |
425 unittest.expect(o[0], unittest.equals('foo')); | 425 unittest.expect(o[0], unittest.equals('foo')); |
426 unittest.expect(o[1], unittest.equals('foo')); | 426 unittest.expect(o[1], unittest.equals('foo')); |
427 } | 427 } |
428 | 428 |
429 core.int buildCounterCallReadGroupSetsRequest = 0; | 429 core.int buildCounterCallReadGroupSetsRequest = 0; |
430 buildCallReadGroupSetsRequest() { | 430 buildCallReadGroupSetsRequest() { |
431 var o = new api.CallReadGroupSetsRequest(); | 431 var o = new api.CallReadGroupSetsRequest(); |
432 buildCounterCallReadGroupSetsRequest++; | 432 buildCounterCallReadGroupSetsRequest++; |
433 if (buildCounterCallReadGroupSetsRequest < 3) { | 433 if (buildCounterCallReadGroupSetsRequest < 3) { |
434 o.datasetId = "foo"; | 434 o.datasetId = "foo"; |
435 o.readGroupSetId = "foo"; | 435 o.readGroupSetId = "foo"; |
436 o.sourceUris = buildUnnamed1511(); | 436 o.sourceUris = buildUnnamed2384(); |
437 } | 437 } |
438 buildCounterCallReadGroupSetsRequest--; | 438 buildCounterCallReadGroupSetsRequest--; |
439 return o; | 439 return o; |
440 } | 440 } |
441 | 441 |
442 checkCallReadGroupSetsRequest(api.CallReadGroupSetsRequest o) { | 442 checkCallReadGroupSetsRequest(api.CallReadGroupSetsRequest o) { |
443 buildCounterCallReadGroupSetsRequest++; | 443 buildCounterCallReadGroupSetsRequest++; |
444 if (buildCounterCallReadGroupSetsRequest < 3) { | 444 if (buildCounterCallReadGroupSetsRequest < 3) { |
445 unittest.expect(o.datasetId, unittest.equals('foo')); | 445 unittest.expect(o.datasetId, unittest.equals('foo')); |
446 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 446 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
447 checkUnnamed1511(o.sourceUris); | 447 checkUnnamed2384(o.sourceUris); |
448 } | 448 } |
449 buildCounterCallReadGroupSetsRequest--; | 449 buildCounterCallReadGroupSetsRequest--; |
450 } | 450 } |
451 | 451 |
452 core.int buildCounterCallReadGroupSetsResponse = 0; | 452 core.int buildCounterCallReadGroupSetsResponse = 0; |
453 buildCallReadGroupSetsResponse() { | 453 buildCallReadGroupSetsResponse() { |
454 var o = new api.CallReadGroupSetsResponse(); | 454 var o = new api.CallReadGroupSetsResponse(); |
455 buildCounterCallReadGroupSetsResponse++; | 455 buildCounterCallReadGroupSetsResponse++; |
456 if (buildCounterCallReadGroupSetsResponse < 3) { | 456 if (buildCounterCallReadGroupSetsResponse < 3) { |
457 o.jobId = "foo"; | 457 o.jobId = "foo"; |
458 } | 458 } |
459 buildCounterCallReadGroupSetsResponse--; | 459 buildCounterCallReadGroupSetsResponse--; |
460 return o; | 460 return o; |
461 } | 461 } |
462 | 462 |
463 checkCallReadGroupSetsResponse(api.CallReadGroupSetsResponse o) { | 463 checkCallReadGroupSetsResponse(api.CallReadGroupSetsResponse o) { |
464 buildCounterCallReadGroupSetsResponse++; | 464 buildCounterCallReadGroupSetsResponse++; |
465 if (buildCounterCallReadGroupSetsResponse < 3) { | 465 if (buildCounterCallReadGroupSetsResponse < 3) { |
466 unittest.expect(o.jobId, unittest.equals('foo')); | 466 unittest.expect(o.jobId, unittest.equals('foo')); |
467 } | 467 } |
468 buildCounterCallReadGroupSetsResponse--; | 468 buildCounterCallReadGroupSetsResponse--; |
469 } | 469 } |
470 | 470 |
471 buildUnnamed1512() { | 471 buildUnnamed2385() { |
472 var o = new core.List<core.String>(); | 472 var o = new core.List<core.String>(); |
473 o.add("foo"); | 473 o.add("foo"); |
474 o.add("foo"); | 474 o.add("foo"); |
475 return o; | 475 return o; |
476 } | 476 } |
477 | 477 |
478 checkUnnamed1512(core.List<core.String> o) { | 478 checkUnnamed2385(core.List<core.String> o) { |
479 unittest.expect(o, unittest.hasLength(2)); | 479 unittest.expect(o, unittest.hasLength(2)); |
480 unittest.expect(o[0], unittest.equals('foo')); | 480 unittest.expect(o[0], unittest.equals('foo')); |
481 unittest.expect(o[1], unittest.equals('foo')); | 481 unittest.expect(o[1], unittest.equals('foo')); |
482 } | 482 } |
483 | 483 |
484 buildUnnamed1513() { | 484 buildUnnamed2386() { |
485 var o = new core.Map<core.String, core.List<core.String>>(); | 485 var o = new core.Map<core.String, core.List<core.String>>(); |
486 o["x"] = buildUnnamed1512(); | 486 o["x"] = buildUnnamed2385(); |
487 o["y"] = buildUnnamed1512(); | 487 o["y"] = buildUnnamed2385(); |
488 return o; | 488 return o; |
489 } | 489 } |
490 | 490 |
491 checkUnnamed1513(core.Map<core.String, core.List<core.String>> o) { | 491 checkUnnamed2386(core.Map<core.String, core.List<core.String>> o) { |
492 unittest.expect(o, unittest.hasLength(2)); | 492 unittest.expect(o, unittest.hasLength(2)); |
493 checkUnnamed1512(o["x"]); | 493 checkUnnamed2385(o["x"]); |
494 checkUnnamed1512(o["y"]); | 494 checkUnnamed2385(o["y"]); |
495 } | 495 } |
496 | 496 |
497 buildUnnamed1514() { | 497 buildUnnamed2387() { |
498 var o = new core.List<core.String>(); | 498 var o = new core.List<core.String>(); |
499 o.add("foo"); | 499 o.add("foo"); |
500 o.add("foo"); | 500 o.add("foo"); |
501 return o; | 501 return o; |
502 } | 502 } |
503 | 503 |
504 checkUnnamed1514(core.List<core.String> o) { | 504 checkUnnamed2387(core.List<core.String> o) { |
505 unittest.expect(o, unittest.hasLength(2)); | 505 unittest.expect(o, unittest.hasLength(2)); |
506 unittest.expect(o[0], unittest.equals('foo')); | 506 unittest.expect(o[0], unittest.equals('foo')); |
507 unittest.expect(o[1], unittest.equals('foo')); | 507 unittest.expect(o[1], unittest.equals('foo')); |
508 } | 508 } |
509 | 509 |
510 core.int buildCounterCallSet = 0; | 510 core.int buildCounterCallSet = 0; |
511 buildCallSet() { | 511 buildCallSet() { |
512 var o = new api.CallSet(); | 512 var o = new api.CallSet(); |
513 buildCounterCallSet++; | 513 buildCounterCallSet++; |
514 if (buildCounterCallSet < 3) { | 514 if (buildCounterCallSet < 3) { |
515 o.created = "foo"; | 515 o.created = "foo"; |
516 o.id = "foo"; | 516 o.id = "foo"; |
517 o.info = buildUnnamed1513(); | 517 o.info = buildUnnamed2386(); |
518 o.name = "foo"; | 518 o.name = "foo"; |
519 o.sampleId = "foo"; | 519 o.sampleId = "foo"; |
520 o.variantSetIds = buildUnnamed1514(); | 520 o.variantSetIds = buildUnnamed2387(); |
521 } | 521 } |
522 buildCounterCallSet--; | 522 buildCounterCallSet--; |
523 return o; | 523 return o; |
524 } | 524 } |
525 | 525 |
526 checkCallSet(api.CallSet o) { | 526 checkCallSet(api.CallSet o) { |
527 buildCounterCallSet++; | 527 buildCounterCallSet++; |
528 if (buildCounterCallSet < 3) { | 528 if (buildCounterCallSet < 3) { |
529 unittest.expect(o.created, unittest.equals('foo')); | 529 unittest.expect(o.created, unittest.equals('foo')); |
530 unittest.expect(o.id, unittest.equals('foo')); | 530 unittest.expect(o.id, unittest.equals('foo')); |
531 checkUnnamed1513(o.info); | 531 checkUnnamed2386(o.info); |
532 unittest.expect(o.name, unittest.equals('foo')); | 532 unittest.expect(o.name, unittest.equals('foo')); |
533 unittest.expect(o.sampleId, unittest.equals('foo')); | 533 unittest.expect(o.sampleId, unittest.equals('foo')); |
534 checkUnnamed1514(o.variantSetIds); | 534 checkUnnamed2387(o.variantSetIds); |
535 } | 535 } |
536 buildCounterCallSet--; | 536 buildCounterCallSet--; |
537 } | 537 } |
538 | 538 |
539 core.int buildCounterCigarUnit = 0; | 539 core.int buildCounterCigarUnit = 0; |
540 buildCigarUnit() { | 540 buildCigarUnit() { |
541 var o = new api.CigarUnit(); | 541 var o = new api.CigarUnit(); |
542 buildCounterCigarUnit++; | 542 buildCounterCigarUnit++; |
543 if (buildCounterCigarUnit < 3) { | 543 if (buildCounterCigarUnit < 3) { |
544 o.operation = "foo"; | 544 o.operation = "foo"; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
600 if (buildCounterDataset < 3) { | 600 if (buildCounterDataset < 3) { |
601 unittest.expect(o.createTime, unittest.equals('foo')); | 601 unittest.expect(o.createTime, unittest.equals('foo')); |
602 unittest.expect(o.id, unittest.equals('foo')); | 602 unittest.expect(o.id, unittest.equals('foo')); |
603 unittest.expect(o.isPublic, unittest.isTrue); | 603 unittest.expect(o.isPublic, unittest.isTrue); |
604 unittest.expect(o.name, unittest.equals('foo')); | 604 unittest.expect(o.name, unittest.equals('foo')); |
605 unittest.expect(o.projectNumber, unittest.equals('foo')); | 605 unittest.expect(o.projectNumber, unittest.equals('foo')); |
606 } | 606 } |
607 buildCounterDataset--; | 607 buildCounterDataset--; |
608 } | 608 } |
609 | 609 |
610 buildUnnamed1515() { | 610 buildUnnamed2388() { |
611 var o = new core.List<core.String>(); | 611 var o = new core.List<core.String>(); |
612 o.add("foo"); | 612 o.add("foo"); |
613 o.add("foo"); | 613 o.add("foo"); |
614 return o; | 614 return o; |
615 } | 615 } |
616 | 616 |
617 checkUnnamed1515(core.List<core.String> o) { | 617 checkUnnamed2388(core.List<core.String> o) { |
618 unittest.expect(o, unittest.hasLength(2)); | 618 unittest.expect(o, unittest.hasLength(2)); |
619 unittest.expect(o[0], unittest.equals('foo')); | 619 unittest.expect(o[0], unittest.equals('foo')); |
620 unittest.expect(o[1], unittest.equals('foo')); | 620 unittest.expect(o[1], unittest.equals('foo')); |
621 } | 621 } |
622 | 622 |
623 buildUnnamed1516() { | 623 buildUnnamed2389() { |
624 var o = new core.List<core.String>(); | 624 var o = new core.List<core.String>(); |
625 o.add("foo"); | 625 o.add("foo"); |
626 o.add("foo"); | 626 o.add("foo"); |
627 return o; | 627 return o; |
628 } | 628 } |
629 | 629 |
630 checkUnnamed1516(core.List<core.String> o) { | 630 checkUnnamed2389(core.List<core.String> o) { |
631 unittest.expect(o, unittest.hasLength(2)); | 631 unittest.expect(o, unittest.hasLength(2)); |
632 unittest.expect(o[0], unittest.equals('foo')); | 632 unittest.expect(o[0], unittest.equals('foo')); |
633 unittest.expect(o[1], unittest.equals('foo')); | 633 unittest.expect(o[1], unittest.equals('foo')); |
634 } | 634 } |
635 | 635 |
636 core.int buildCounterExperimentalCreateJobRequest = 0; | 636 core.int buildCounterExperimentalCreateJobRequest = 0; |
637 buildExperimentalCreateJobRequest() { | 637 buildExperimentalCreateJobRequest() { |
638 var o = new api.ExperimentalCreateJobRequest(); | 638 var o = new api.ExperimentalCreateJobRequest(); |
639 buildCounterExperimentalCreateJobRequest++; | 639 buildCounterExperimentalCreateJobRequest++; |
640 if (buildCounterExperimentalCreateJobRequest < 3) { | 640 if (buildCounterExperimentalCreateJobRequest < 3) { |
641 o.align = true; | 641 o.align = true; |
642 o.callVariants = true; | 642 o.callVariants = true; |
643 o.gcsOutputPath = "foo"; | 643 o.gcsOutputPath = "foo"; |
644 o.pairedSourceUris = buildUnnamed1515(); | 644 o.pairedSourceUris = buildUnnamed2388(); |
645 o.projectNumber = "foo"; | 645 o.projectNumber = "foo"; |
646 o.sourceUris = buildUnnamed1516(); | 646 o.sourceUris = buildUnnamed2389(); |
647 } | 647 } |
648 buildCounterExperimentalCreateJobRequest--; | 648 buildCounterExperimentalCreateJobRequest--; |
649 return o; | 649 return o; |
650 } | 650 } |
651 | 651 |
652 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { | 652 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { |
653 buildCounterExperimentalCreateJobRequest++; | 653 buildCounterExperimentalCreateJobRequest++; |
654 if (buildCounterExperimentalCreateJobRequest < 3) { | 654 if (buildCounterExperimentalCreateJobRequest < 3) { |
655 unittest.expect(o.align, unittest.isTrue); | 655 unittest.expect(o.align, unittest.isTrue); |
656 unittest.expect(o.callVariants, unittest.isTrue); | 656 unittest.expect(o.callVariants, unittest.isTrue); |
657 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); | 657 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); |
658 checkUnnamed1515(o.pairedSourceUris); | 658 checkUnnamed2388(o.pairedSourceUris); |
659 unittest.expect(o.projectNumber, unittest.equals('foo')); | 659 unittest.expect(o.projectNumber, unittest.equals('foo')); |
660 checkUnnamed1516(o.sourceUris); | 660 checkUnnamed2389(o.sourceUris); |
661 } | 661 } |
662 buildCounterExperimentalCreateJobRequest--; | 662 buildCounterExperimentalCreateJobRequest--; |
663 } | 663 } |
664 | 664 |
665 core.int buildCounterExperimentalCreateJobResponse = 0; | 665 core.int buildCounterExperimentalCreateJobResponse = 0; |
666 buildExperimentalCreateJobResponse() { | 666 buildExperimentalCreateJobResponse() { |
667 var o = new api.ExperimentalCreateJobResponse(); | 667 var o = new api.ExperimentalCreateJobResponse(); |
668 buildCounterExperimentalCreateJobResponse++; | 668 buildCounterExperimentalCreateJobResponse++; |
669 if (buildCounterExperimentalCreateJobResponse < 3) { | 669 if (buildCounterExperimentalCreateJobResponse < 3) { |
670 o.jobId = "foo"; | 670 o.jobId = "foo"; |
671 } | 671 } |
672 buildCounterExperimentalCreateJobResponse--; | 672 buildCounterExperimentalCreateJobResponse--; |
673 return o; | 673 return o; |
674 } | 674 } |
675 | 675 |
676 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { | 676 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { |
677 buildCounterExperimentalCreateJobResponse++; | 677 buildCounterExperimentalCreateJobResponse++; |
678 if (buildCounterExperimentalCreateJobResponse < 3) { | 678 if (buildCounterExperimentalCreateJobResponse < 3) { |
679 unittest.expect(o.jobId, unittest.equals('foo')); | 679 unittest.expect(o.jobId, unittest.equals('foo')); |
680 } | 680 } |
681 buildCounterExperimentalCreateJobResponse--; | 681 buildCounterExperimentalCreateJobResponse--; |
682 } | 682 } |
683 | 683 |
684 buildUnnamed1517() { | 684 buildUnnamed2390() { |
685 var o = new core.List<core.String>(); | 685 var o = new core.List<core.String>(); |
686 o.add("foo"); | 686 o.add("foo"); |
687 o.add("foo"); | 687 o.add("foo"); |
688 return o; | 688 return o; |
689 } | 689 } |
690 | 690 |
691 checkUnnamed1517(core.List<core.String> o) { | 691 checkUnnamed2390(core.List<core.String> o) { |
692 unittest.expect(o, unittest.hasLength(2)); | 692 unittest.expect(o, unittest.hasLength(2)); |
693 unittest.expect(o[0], unittest.equals('foo')); | 693 unittest.expect(o[0], unittest.equals('foo')); |
694 unittest.expect(o[1], unittest.equals('foo')); | 694 unittest.expect(o[1], unittest.equals('foo')); |
695 } | 695 } |
696 | 696 |
697 buildUnnamed1518() { | 697 buildUnnamed2391() { |
698 var o = new core.List<core.String>(); | 698 var o = new core.List<core.String>(); |
699 o.add("foo"); | 699 o.add("foo"); |
700 o.add("foo"); | 700 o.add("foo"); |
701 return o; | 701 return o; |
702 } | 702 } |
703 | 703 |
704 checkUnnamed1518(core.List<core.String> o) { | 704 checkUnnamed2391(core.List<core.String> o) { |
705 unittest.expect(o, unittest.hasLength(2)); | 705 unittest.expect(o, unittest.hasLength(2)); |
706 unittest.expect(o[0], unittest.equals('foo')); | 706 unittest.expect(o[0], unittest.equals('foo')); |
707 unittest.expect(o[1], unittest.equals('foo')); | 707 unittest.expect(o[1], unittest.equals('foo')); |
708 } | 708 } |
709 | 709 |
710 core.int buildCounterExportReadGroupSetsRequest = 0; | 710 core.int buildCounterExportReadGroupSetsRequest = 0; |
711 buildExportReadGroupSetsRequest() { | 711 buildExportReadGroupSetsRequest() { |
712 var o = new api.ExportReadGroupSetsRequest(); | 712 var o = new api.ExportReadGroupSetsRequest(); |
713 buildCounterExportReadGroupSetsRequest++; | 713 buildCounterExportReadGroupSetsRequest++; |
714 if (buildCounterExportReadGroupSetsRequest < 3) { | 714 if (buildCounterExportReadGroupSetsRequest < 3) { |
715 o.exportUri = "foo"; | 715 o.exportUri = "foo"; |
716 o.projectNumber = "foo"; | 716 o.projectNumber = "foo"; |
717 o.readGroupSetIds = buildUnnamed1517(); | 717 o.readGroupSetIds = buildUnnamed2390(); |
718 o.referenceNames = buildUnnamed1518(); | 718 o.referenceNames = buildUnnamed2391(); |
719 } | 719 } |
720 buildCounterExportReadGroupSetsRequest--; | 720 buildCounterExportReadGroupSetsRequest--; |
721 return o; | 721 return o; |
722 } | 722 } |
723 | 723 |
724 checkExportReadGroupSetsRequest(api.ExportReadGroupSetsRequest o) { | 724 checkExportReadGroupSetsRequest(api.ExportReadGroupSetsRequest o) { |
725 buildCounterExportReadGroupSetsRequest++; | 725 buildCounterExportReadGroupSetsRequest++; |
726 if (buildCounterExportReadGroupSetsRequest < 3) { | 726 if (buildCounterExportReadGroupSetsRequest < 3) { |
727 unittest.expect(o.exportUri, unittest.equals('foo')); | 727 unittest.expect(o.exportUri, unittest.equals('foo')); |
728 unittest.expect(o.projectNumber, unittest.equals('foo')); | 728 unittest.expect(o.projectNumber, unittest.equals('foo')); |
729 checkUnnamed1517(o.readGroupSetIds); | 729 checkUnnamed2390(o.readGroupSetIds); |
730 checkUnnamed1518(o.referenceNames); | 730 checkUnnamed2391(o.referenceNames); |
731 } | 731 } |
732 buildCounterExportReadGroupSetsRequest--; | 732 buildCounterExportReadGroupSetsRequest--; |
733 } | 733 } |
734 | 734 |
735 core.int buildCounterExportReadGroupSetsResponse = 0; | 735 core.int buildCounterExportReadGroupSetsResponse = 0; |
736 buildExportReadGroupSetsResponse() { | 736 buildExportReadGroupSetsResponse() { |
737 var o = new api.ExportReadGroupSetsResponse(); | 737 var o = new api.ExportReadGroupSetsResponse(); |
738 buildCounterExportReadGroupSetsResponse++; | 738 buildCounterExportReadGroupSetsResponse++; |
739 if (buildCounterExportReadGroupSetsResponse < 3) { | 739 if (buildCounterExportReadGroupSetsResponse < 3) { |
740 o.jobId = "foo"; | 740 o.jobId = "foo"; |
741 } | 741 } |
742 buildCounterExportReadGroupSetsResponse--; | 742 buildCounterExportReadGroupSetsResponse--; |
743 return o; | 743 return o; |
744 } | 744 } |
745 | 745 |
746 checkExportReadGroupSetsResponse(api.ExportReadGroupSetsResponse o) { | 746 checkExportReadGroupSetsResponse(api.ExportReadGroupSetsResponse o) { |
747 buildCounterExportReadGroupSetsResponse++; | 747 buildCounterExportReadGroupSetsResponse++; |
748 if (buildCounterExportReadGroupSetsResponse < 3) { | 748 if (buildCounterExportReadGroupSetsResponse < 3) { |
749 unittest.expect(o.jobId, unittest.equals('foo')); | 749 unittest.expect(o.jobId, unittest.equals('foo')); |
750 } | 750 } |
751 buildCounterExportReadGroupSetsResponse--; | 751 buildCounterExportReadGroupSetsResponse--; |
752 } | 752 } |
753 | 753 |
754 buildUnnamed1519() { | 754 buildUnnamed2392() { |
755 var o = new core.List<core.String>(); | 755 var o = new core.List<core.String>(); |
756 o.add("foo"); | 756 o.add("foo"); |
757 o.add("foo"); | 757 o.add("foo"); |
758 return o; | 758 return o; |
759 } | 759 } |
760 | 760 |
761 checkUnnamed1519(core.List<core.String> o) { | 761 checkUnnamed2392(core.List<core.String> o) { |
762 unittest.expect(o, unittest.hasLength(2)); | 762 unittest.expect(o, unittest.hasLength(2)); |
763 unittest.expect(o[0], unittest.equals('foo')); | 763 unittest.expect(o[0], unittest.equals('foo')); |
764 unittest.expect(o[1], unittest.equals('foo')); | 764 unittest.expect(o[1], unittest.equals('foo')); |
765 } | 765 } |
766 | 766 |
767 core.int buildCounterExportVariantSetRequest = 0; | 767 core.int buildCounterExportVariantSetRequest = 0; |
768 buildExportVariantSetRequest() { | 768 buildExportVariantSetRequest() { |
769 var o = new api.ExportVariantSetRequest(); | 769 var o = new api.ExportVariantSetRequest(); |
770 buildCounterExportVariantSetRequest++; | 770 buildCounterExportVariantSetRequest++; |
771 if (buildCounterExportVariantSetRequest < 3) { | 771 if (buildCounterExportVariantSetRequest < 3) { |
772 o.bigqueryDataset = "foo"; | 772 o.bigqueryDataset = "foo"; |
773 o.bigqueryTable = "foo"; | 773 o.bigqueryTable = "foo"; |
774 o.callSetIds = buildUnnamed1519(); | 774 o.callSetIds = buildUnnamed2392(); |
775 o.format = "foo"; | 775 o.format = "foo"; |
776 o.projectNumber = "foo"; | 776 o.projectNumber = "foo"; |
777 } | 777 } |
778 buildCounterExportVariantSetRequest--; | 778 buildCounterExportVariantSetRequest--; |
779 return o; | 779 return o; |
780 } | 780 } |
781 | 781 |
782 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { | 782 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { |
783 buildCounterExportVariantSetRequest++; | 783 buildCounterExportVariantSetRequest++; |
784 if (buildCounterExportVariantSetRequest < 3) { | 784 if (buildCounterExportVariantSetRequest < 3) { |
785 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); | 785 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); |
786 unittest.expect(o.bigqueryTable, unittest.equals('foo')); | 786 unittest.expect(o.bigqueryTable, unittest.equals('foo')); |
787 checkUnnamed1519(o.callSetIds); | 787 checkUnnamed2392(o.callSetIds); |
788 unittest.expect(o.format, unittest.equals('foo')); | 788 unittest.expect(o.format, unittest.equals('foo')); |
789 unittest.expect(o.projectNumber, unittest.equals('foo')); | 789 unittest.expect(o.projectNumber, unittest.equals('foo')); |
790 } | 790 } |
791 buildCounterExportVariantSetRequest--; | 791 buildCounterExportVariantSetRequest--; |
792 } | 792 } |
793 | 793 |
794 core.int buildCounterExportVariantSetResponse = 0; | 794 core.int buildCounterExportVariantSetResponse = 0; |
795 buildExportVariantSetResponse() { | 795 buildExportVariantSetResponse() { |
796 var o = new api.ExportVariantSetResponse(); | 796 var o = new api.ExportVariantSetResponse(); |
797 buildCounterExportVariantSetResponse++; | 797 buildCounterExportVariantSetResponse++; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
851 if (buildCounterFastqMetadata < 3) { | 851 if (buildCounterFastqMetadata < 3) { |
852 unittest.expect(o.libraryName, unittest.equals('foo')); | 852 unittest.expect(o.libraryName, unittest.equals('foo')); |
853 unittest.expect(o.platformName, unittest.equals('foo')); | 853 unittest.expect(o.platformName, unittest.equals('foo')); |
854 unittest.expect(o.platformUnit, unittest.equals('foo')); | 854 unittest.expect(o.platformUnit, unittest.equals('foo')); |
855 unittest.expect(o.readGroupName, unittest.equals('foo')); | 855 unittest.expect(o.readGroupName, unittest.equals('foo')); |
856 unittest.expect(o.sampleName, unittest.equals('foo')); | 856 unittest.expect(o.sampleName, unittest.equals('foo')); |
857 } | 857 } |
858 buildCounterFastqMetadata--; | 858 buildCounterFastqMetadata--; |
859 } | 859 } |
860 | 860 |
861 buildUnnamed1520() { | 861 buildUnnamed2393() { |
862 var o = new core.List<core.String>(); | 862 var o = new core.List<core.String>(); |
863 o.add("foo"); | 863 o.add("foo"); |
864 o.add("foo"); | 864 o.add("foo"); |
865 return o; | 865 return o; |
866 } | 866 } |
867 | 867 |
868 checkUnnamed1520(core.List<core.String> o) { | 868 checkUnnamed2393(core.List<core.String> o) { |
869 unittest.expect(o, unittest.hasLength(2)); | 869 unittest.expect(o, unittest.hasLength(2)); |
870 unittest.expect(o[0], unittest.equals('foo')); | 870 unittest.expect(o[0], unittest.equals('foo')); |
871 unittest.expect(o[1], unittest.equals('foo')); | 871 unittest.expect(o[1], unittest.equals('foo')); |
872 } | 872 } |
873 | 873 |
874 core.int buildCounterImportReadGroupSetsRequest = 0; | 874 core.int buildCounterImportReadGroupSetsRequest = 0; |
875 buildImportReadGroupSetsRequest() { | 875 buildImportReadGroupSetsRequest() { |
876 var o = new api.ImportReadGroupSetsRequest(); | 876 var o = new api.ImportReadGroupSetsRequest(); |
877 buildCounterImportReadGroupSetsRequest++; | 877 buildCounterImportReadGroupSetsRequest++; |
878 if (buildCounterImportReadGroupSetsRequest < 3) { | 878 if (buildCounterImportReadGroupSetsRequest < 3) { |
879 o.datasetId = "foo"; | 879 o.datasetId = "foo"; |
880 o.partitionStrategy = "foo"; | 880 o.partitionStrategy = "foo"; |
881 o.referenceSetId = "foo"; | 881 o.referenceSetId = "foo"; |
882 o.sourceUris = buildUnnamed1520(); | 882 o.sourceUris = buildUnnamed2393(); |
883 } | 883 } |
884 buildCounterImportReadGroupSetsRequest--; | 884 buildCounterImportReadGroupSetsRequest--; |
885 return o; | 885 return o; |
886 } | 886 } |
887 | 887 |
888 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { | 888 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { |
889 buildCounterImportReadGroupSetsRequest++; | 889 buildCounterImportReadGroupSetsRequest++; |
890 if (buildCounterImportReadGroupSetsRequest < 3) { | 890 if (buildCounterImportReadGroupSetsRequest < 3) { |
891 unittest.expect(o.datasetId, unittest.equals('foo')); | 891 unittest.expect(o.datasetId, unittest.equals('foo')); |
892 unittest.expect(o.partitionStrategy, unittest.equals('foo')); | 892 unittest.expect(o.partitionStrategy, unittest.equals('foo')); |
893 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 893 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
894 checkUnnamed1520(o.sourceUris); | 894 checkUnnamed2393(o.sourceUris); |
895 } | 895 } |
896 buildCounterImportReadGroupSetsRequest--; | 896 buildCounterImportReadGroupSetsRequest--; |
897 } | 897 } |
898 | 898 |
899 core.int buildCounterImportReadGroupSetsResponse = 0; | 899 core.int buildCounterImportReadGroupSetsResponse = 0; |
900 buildImportReadGroupSetsResponse() { | 900 buildImportReadGroupSetsResponse() { |
901 var o = new api.ImportReadGroupSetsResponse(); | 901 var o = new api.ImportReadGroupSetsResponse(); |
902 buildCounterImportReadGroupSetsResponse++; | 902 buildCounterImportReadGroupSetsResponse++; |
903 if (buildCounterImportReadGroupSetsResponse < 3) { | 903 if (buildCounterImportReadGroupSetsResponse < 3) { |
904 o.jobId = "foo"; | 904 o.jobId = "foo"; |
905 } | 905 } |
906 buildCounterImportReadGroupSetsResponse--; | 906 buildCounterImportReadGroupSetsResponse--; |
907 return o; | 907 return o; |
908 } | 908 } |
909 | 909 |
910 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { | 910 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { |
911 buildCounterImportReadGroupSetsResponse++; | 911 buildCounterImportReadGroupSetsResponse++; |
912 if (buildCounterImportReadGroupSetsResponse < 3) { | 912 if (buildCounterImportReadGroupSetsResponse < 3) { |
913 unittest.expect(o.jobId, unittest.equals('foo')); | 913 unittest.expect(o.jobId, unittest.equals('foo')); |
914 } | 914 } |
915 buildCounterImportReadGroupSetsResponse--; | 915 buildCounterImportReadGroupSetsResponse--; |
916 } | 916 } |
917 | 917 |
918 buildUnnamed1521() { | 918 buildUnnamed2394() { |
919 var o = new core.List<core.String>(); | 919 var o = new core.List<core.String>(); |
920 o.add("foo"); | 920 o.add("foo"); |
921 o.add("foo"); | 921 o.add("foo"); |
922 return o; | 922 return o; |
923 } | 923 } |
924 | 924 |
925 checkUnnamed1521(core.List<core.String> o) { | 925 checkUnnamed2394(core.List<core.String> o) { |
926 unittest.expect(o, unittest.hasLength(2)); | 926 unittest.expect(o, unittest.hasLength(2)); |
927 unittest.expect(o[0], unittest.equals('foo')); | 927 unittest.expect(o[0], unittest.equals('foo')); |
928 unittest.expect(o[1], unittest.equals('foo')); | 928 unittest.expect(o[1], unittest.equals('foo')); |
929 } | 929 } |
930 | 930 |
931 core.int buildCounterImportVariantsRequest = 0; | 931 core.int buildCounterImportVariantsRequest = 0; |
932 buildImportVariantsRequest() { | 932 buildImportVariantsRequest() { |
933 var o = new api.ImportVariantsRequest(); | 933 var o = new api.ImportVariantsRequest(); |
934 buildCounterImportVariantsRequest++; | 934 buildCounterImportVariantsRequest++; |
935 if (buildCounterImportVariantsRequest < 3) { | 935 if (buildCounterImportVariantsRequest < 3) { |
936 o.format = "foo"; | 936 o.format = "foo"; |
937 o.normalizeReferenceNames = true; | 937 o.normalizeReferenceNames = true; |
938 o.sourceUris = buildUnnamed1521(); | 938 o.sourceUris = buildUnnamed2394(); |
939 } | 939 } |
940 buildCounterImportVariantsRequest--; | 940 buildCounterImportVariantsRequest--; |
941 return o; | 941 return o; |
942 } | 942 } |
943 | 943 |
944 checkImportVariantsRequest(api.ImportVariantsRequest o) { | 944 checkImportVariantsRequest(api.ImportVariantsRequest o) { |
945 buildCounterImportVariantsRequest++; | 945 buildCounterImportVariantsRequest++; |
946 if (buildCounterImportVariantsRequest < 3) { | 946 if (buildCounterImportVariantsRequest < 3) { |
947 unittest.expect(o.format, unittest.equals('foo')); | 947 unittest.expect(o.format, unittest.equals('foo')); |
948 unittest.expect(o.normalizeReferenceNames, unittest.isTrue); | 948 unittest.expect(o.normalizeReferenceNames, unittest.isTrue); |
949 checkUnnamed1521(o.sourceUris); | 949 checkUnnamed2394(o.sourceUris); |
950 } | 950 } |
951 buildCounterImportVariantsRequest--; | 951 buildCounterImportVariantsRequest--; |
952 } | 952 } |
953 | 953 |
954 core.int buildCounterImportVariantsResponse = 0; | 954 core.int buildCounterImportVariantsResponse = 0; |
955 buildImportVariantsResponse() { | 955 buildImportVariantsResponse() { |
956 var o = new api.ImportVariantsResponse(); | 956 var o = new api.ImportVariantsResponse(); |
957 buildCounterImportVariantsResponse++; | 957 buildCounterImportVariantsResponse++; |
958 if (buildCounterImportVariantsResponse < 3) { | 958 if (buildCounterImportVariantsResponse < 3) { |
959 o.jobId = "foo"; | 959 o.jobId = "foo"; |
(...skipping 22 matching lines...) Expand all Loading... |
982 } | 982 } |
983 | 983 |
984 checkInt32Value(api.Int32Value o) { | 984 checkInt32Value(api.Int32Value o) { |
985 buildCounterInt32Value++; | 985 buildCounterInt32Value++; |
986 if (buildCounterInt32Value < 3) { | 986 if (buildCounterInt32Value < 3) { |
987 unittest.expect(o.value, unittest.equals(42)); | 987 unittest.expect(o.value, unittest.equals(42)); |
988 } | 988 } |
989 buildCounterInt32Value--; | 989 buildCounterInt32Value--; |
990 } | 990 } |
991 | 991 |
992 buildUnnamed1522() { | 992 buildUnnamed2395() { |
993 var o = new core.List<core.String>(); | 993 var o = new core.List<core.String>(); |
994 o.add("foo"); | 994 o.add("foo"); |
995 o.add("foo"); | 995 o.add("foo"); |
996 return o; | 996 return o; |
997 } | 997 } |
998 | 998 |
999 checkUnnamed1522(core.List<core.String> o) { | 999 checkUnnamed2395(core.List<core.String> o) { |
1000 unittest.expect(o, unittest.hasLength(2)); | 1000 unittest.expect(o, unittest.hasLength(2)); |
1001 unittest.expect(o[0], unittest.equals('foo')); | 1001 unittest.expect(o[0], unittest.equals('foo')); |
1002 unittest.expect(o[1], unittest.equals('foo')); | 1002 unittest.expect(o[1], unittest.equals('foo')); |
1003 } | 1003 } |
1004 | 1004 |
1005 core.int buildCounterInterleavedFastqSource = 0; | 1005 core.int buildCounterInterleavedFastqSource = 0; |
1006 buildInterleavedFastqSource() { | 1006 buildInterleavedFastqSource() { |
1007 var o = new api.InterleavedFastqSource(); | 1007 var o = new api.InterleavedFastqSource(); |
1008 buildCounterInterleavedFastqSource++; | 1008 buildCounterInterleavedFastqSource++; |
1009 if (buildCounterInterleavedFastqSource < 3) { | 1009 if (buildCounterInterleavedFastqSource < 3) { |
1010 o.metadata = buildFastqMetadata(); | 1010 o.metadata = buildFastqMetadata(); |
1011 o.sourceUris = buildUnnamed1522(); | 1011 o.sourceUris = buildUnnamed2395(); |
1012 } | 1012 } |
1013 buildCounterInterleavedFastqSource--; | 1013 buildCounterInterleavedFastqSource--; |
1014 return o; | 1014 return o; |
1015 } | 1015 } |
1016 | 1016 |
1017 checkInterleavedFastqSource(api.InterleavedFastqSource o) { | 1017 checkInterleavedFastqSource(api.InterleavedFastqSource o) { |
1018 buildCounterInterleavedFastqSource++; | 1018 buildCounterInterleavedFastqSource++; |
1019 if (buildCounterInterleavedFastqSource < 3) { | 1019 if (buildCounterInterleavedFastqSource < 3) { |
1020 checkFastqMetadata(o.metadata); | 1020 checkFastqMetadata(o.metadata); |
1021 checkUnnamed1522(o.sourceUris); | 1021 checkUnnamed2395(o.sourceUris); |
1022 } | 1022 } |
1023 buildCounterInterleavedFastqSource--; | 1023 buildCounterInterleavedFastqSource--; |
1024 } | 1024 } |
1025 | 1025 |
1026 buildUnnamed1523() { | 1026 buildUnnamed2396() { |
1027 var o = new core.List<core.String>(); | 1027 var o = new core.List<core.String>(); |
1028 o.add("foo"); | 1028 o.add("foo"); |
1029 o.add("foo"); | 1029 o.add("foo"); |
1030 return o; | 1030 return o; |
1031 } | 1031 } |
1032 | 1032 |
1033 checkUnnamed1523(core.List<core.String> o) { | 1033 checkUnnamed2396(core.List<core.String> o) { |
1034 unittest.expect(o, unittest.hasLength(2)); | 1034 unittest.expect(o, unittest.hasLength(2)); |
1035 unittest.expect(o[0], unittest.equals('foo')); | 1035 unittest.expect(o[0], unittest.equals('foo')); |
1036 unittest.expect(o[1], unittest.equals('foo')); | 1036 unittest.expect(o[1], unittest.equals('foo')); |
1037 } | 1037 } |
1038 | 1038 |
1039 buildUnnamed1524() { | 1039 buildUnnamed2397() { |
1040 var o = new core.List<core.String>(); | 1040 var o = new core.List<core.String>(); |
1041 o.add("foo"); | 1041 o.add("foo"); |
1042 o.add("foo"); | 1042 o.add("foo"); |
1043 return o; | 1043 return o; |
1044 } | 1044 } |
1045 | 1045 |
1046 checkUnnamed1524(core.List<core.String> o) { | 1046 checkUnnamed2397(core.List<core.String> o) { |
1047 unittest.expect(o, unittest.hasLength(2)); | 1047 unittest.expect(o, unittest.hasLength(2)); |
1048 unittest.expect(o[0], unittest.equals('foo')); | 1048 unittest.expect(o[0], unittest.equals('foo')); |
1049 unittest.expect(o[1], unittest.equals('foo')); | 1049 unittest.expect(o[1], unittest.equals('foo')); |
1050 } | 1050 } |
1051 | 1051 |
1052 buildUnnamed1525() { | 1052 buildUnnamed2398() { |
1053 var o = new core.List<core.String>(); | 1053 var o = new core.List<core.String>(); |
1054 o.add("foo"); | 1054 o.add("foo"); |
1055 o.add("foo"); | 1055 o.add("foo"); |
1056 return o; | 1056 return o; |
1057 } | 1057 } |
1058 | 1058 |
1059 checkUnnamed1525(core.List<core.String> o) { | 1059 checkUnnamed2398(core.List<core.String> o) { |
1060 unittest.expect(o, unittest.hasLength(2)); | 1060 unittest.expect(o, unittest.hasLength(2)); |
1061 unittest.expect(o[0], unittest.equals('foo')); | 1061 unittest.expect(o[0], unittest.equals('foo')); |
1062 unittest.expect(o[1], unittest.equals('foo')); | 1062 unittest.expect(o[1], unittest.equals('foo')); |
1063 } | 1063 } |
1064 | 1064 |
1065 core.int buildCounterJob = 0; | 1065 core.int buildCounterJob = 0; |
1066 buildJob() { | 1066 buildJob() { |
1067 var o = new api.Job(); | 1067 var o = new api.Job(); |
1068 buildCounterJob++; | 1068 buildCounterJob++; |
1069 if (buildCounterJob < 3) { | 1069 if (buildCounterJob < 3) { |
1070 o.created = "foo"; | 1070 o.created = "foo"; |
1071 o.detailedStatus = "foo"; | 1071 o.detailedStatus = "foo"; |
1072 o.errors = buildUnnamed1523(); | 1072 o.errors = buildUnnamed2396(); |
1073 o.id = "foo"; | 1073 o.id = "foo"; |
1074 o.importedIds = buildUnnamed1524(); | 1074 o.importedIds = buildUnnamed2397(); |
1075 o.projectNumber = "foo"; | 1075 o.projectNumber = "foo"; |
1076 o.request = buildJobRequest(); | 1076 o.request = buildJobRequest(); |
1077 o.status = "foo"; | 1077 o.status = "foo"; |
1078 o.warnings = buildUnnamed1525(); | 1078 o.warnings = buildUnnamed2398(); |
1079 } | 1079 } |
1080 buildCounterJob--; | 1080 buildCounterJob--; |
1081 return o; | 1081 return o; |
1082 } | 1082 } |
1083 | 1083 |
1084 checkJob(api.Job o) { | 1084 checkJob(api.Job o) { |
1085 buildCounterJob++; | 1085 buildCounterJob++; |
1086 if (buildCounterJob < 3) { | 1086 if (buildCounterJob < 3) { |
1087 unittest.expect(o.created, unittest.equals('foo')); | 1087 unittest.expect(o.created, unittest.equals('foo')); |
1088 unittest.expect(o.detailedStatus, unittest.equals('foo')); | 1088 unittest.expect(o.detailedStatus, unittest.equals('foo')); |
1089 checkUnnamed1523(o.errors); | 1089 checkUnnamed2396(o.errors); |
1090 unittest.expect(o.id, unittest.equals('foo')); | 1090 unittest.expect(o.id, unittest.equals('foo')); |
1091 checkUnnamed1524(o.importedIds); | 1091 checkUnnamed2397(o.importedIds); |
1092 unittest.expect(o.projectNumber, unittest.equals('foo')); | 1092 unittest.expect(o.projectNumber, unittest.equals('foo')); |
1093 checkJobRequest(o.request); | 1093 checkJobRequest(o.request); |
1094 unittest.expect(o.status, unittest.equals('foo')); | 1094 unittest.expect(o.status, unittest.equals('foo')); |
1095 checkUnnamed1525(o.warnings); | 1095 checkUnnamed2398(o.warnings); |
1096 } | 1096 } |
1097 buildCounterJob--; | 1097 buildCounterJob--; |
1098 } | 1098 } |
1099 | 1099 |
1100 buildUnnamed1526() { | 1100 buildUnnamed2399() { |
1101 var o = new core.List<core.String>(); | 1101 var o = new core.List<core.String>(); |
1102 o.add("foo"); | 1102 o.add("foo"); |
1103 o.add("foo"); | 1103 o.add("foo"); |
1104 return o; | 1104 return o; |
1105 } | 1105 } |
1106 | 1106 |
1107 checkUnnamed1526(core.List<core.String> o) { | 1107 checkUnnamed2399(core.List<core.String> o) { |
1108 unittest.expect(o, unittest.hasLength(2)); | 1108 unittest.expect(o, unittest.hasLength(2)); |
1109 unittest.expect(o[0], unittest.equals('foo')); | 1109 unittest.expect(o[0], unittest.equals('foo')); |
1110 unittest.expect(o[1], unittest.equals('foo')); | 1110 unittest.expect(o[1], unittest.equals('foo')); |
1111 } | 1111 } |
1112 | 1112 |
1113 buildUnnamed1527() { | 1113 buildUnnamed2400() { |
1114 var o = new core.List<core.String>(); | 1114 var o = new core.List<core.String>(); |
1115 o.add("foo"); | 1115 o.add("foo"); |
1116 o.add("foo"); | 1116 o.add("foo"); |
1117 return o; | 1117 return o; |
1118 } | 1118 } |
1119 | 1119 |
1120 checkUnnamed1527(core.List<core.String> o) { | 1120 checkUnnamed2400(core.List<core.String> o) { |
1121 unittest.expect(o, unittest.hasLength(2)); | 1121 unittest.expect(o, unittest.hasLength(2)); |
1122 unittest.expect(o[0], unittest.equals('foo')); | 1122 unittest.expect(o[0], unittest.equals('foo')); |
1123 unittest.expect(o[1], unittest.equals('foo')); | 1123 unittest.expect(o[1], unittest.equals('foo')); |
1124 } | 1124 } |
1125 | 1125 |
1126 core.int buildCounterJobRequest = 0; | 1126 core.int buildCounterJobRequest = 0; |
1127 buildJobRequest() { | 1127 buildJobRequest() { |
1128 var o = new api.JobRequest(); | 1128 var o = new api.JobRequest(); |
1129 buildCounterJobRequest++; | 1129 buildCounterJobRequest++; |
1130 if (buildCounterJobRequest < 3) { | 1130 if (buildCounterJobRequest < 3) { |
1131 o.destination = buildUnnamed1526(); | 1131 o.destination = buildUnnamed2399(); |
1132 o.source = buildUnnamed1527(); | 1132 o.source = buildUnnamed2400(); |
1133 o.type = "foo"; | 1133 o.type = "foo"; |
1134 } | 1134 } |
1135 buildCounterJobRequest--; | 1135 buildCounterJobRequest--; |
1136 return o; | 1136 return o; |
1137 } | 1137 } |
1138 | 1138 |
1139 checkJobRequest(api.JobRequest o) { | 1139 checkJobRequest(api.JobRequest o) { |
1140 buildCounterJobRequest++; | 1140 buildCounterJobRequest++; |
1141 if (buildCounterJobRequest < 3) { | 1141 if (buildCounterJobRequest < 3) { |
1142 checkUnnamed1526(o.destination); | 1142 checkUnnamed2399(o.destination); |
1143 checkUnnamed1527(o.source); | 1143 checkUnnamed2400(o.source); |
1144 unittest.expect(o.type, unittest.equals('foo')); | 1144 unittest.expect(o.type, unittest.equals('foo')); |
1145 } | 1145 } |
1146 buildCounterJobRequest--; | 1146 buildCounterJobRequest--; |
1147 } | 1147 } |
1148 | 1148 |
1149 buildUnnamed1528() { | 1149 buildUnnamed2401() { |
1150 var o = new core.List<core.String>(); | 1150 var o = new core.List<core.String>(); |
1151 o.add("foo"); | 1151 o.add("foo"); |
1152 o.add("foo"); | 1152 o.add("foo"); |
1153 return o; | 1153 return o; |
1154 } | 1154 } |
1155 | 1155 |
1156 checkUnnamed1528(core.List<core.String> o) { | 1156 checkUnnamed2401(core.List<core.String> o) { |
1157 unittest.expect(o, unittest.hasLength(2)); | 1157 unittest.expect(o, unittest.hasLength(2)); |
1158 unittest.expect(o[0], unittest.equals('foo')); | 1158 unittest.expect(o[0], unittest.equals('foo')); |
1159 unittest.expect(o[1], unittest.equals('foo')); | 1159 unittest.expect(o[1], unittest.equals('foo')); |
1160 } | 1160 } |
1161 | 1161 |
1162 core.int buildCounterKeyValue = 0; | 1162 core.int buildCounterKeyValue = 0; |
1163 buildKeyValue() { | 1163 buildKeyValue() { |
1164 var o = new api.KeyValue(); | 1164 var o = new api.KeyValue(); |
1165 buildCounterKeyValue++; | 1165 buildCounterKeyValue++; |
1166 if (buildCounterKeyValue < 3) { | 1166 if (buildCounterKeyValue < 3) { |
1167 o.key = "foo"; | 1167 o.key = "foo"; |
1168 o.value = buildUnnamed1528(); | 1168 o.value = buildUnnamed2401(); |
1169 } | 1169 } |
1170 buildCounterKeyValue--; | 1170 buildCounterKeyValue--; |
1171 return o; | 1171 return o; |
1172 } | 1172 } |
1173 | 1173 |
1174 checkKeyValue(api.KeyValue o) { | 1174 checkKeyValue(api.KeyValue o) { |
1175 buildCounterKeyValue++; | 1175 buildCounterKeyValue++; |
1176 if (buildCounterKeyValue < 3) { | 1176 if (buildCounterKeyValue < 3) { |
1177 unittest.expect(o.key, unittest.equals('foo')); | 1177 unittest.expect(o.key, unittest.equals('foo')); |
1178 checkUnnamed1528(o.value); | 1178 checkUnnamed2401(o.value); |
1179 } | 1179 } |
1180 buildCounterKeyValue--; | 1180 buildCounterKeyValue--; |
1181 } | 1181 } |
1182 | 1182 |
1183 buildUnnamed1529() { | 1183 buildUnnamed2402() { |
1184 var o = new core.List<api.CigarUnit>(); | 1184 var o = new core.List<api.CigarUnit>(); |
1185 o.add(buildCigarUnit()); | 1185 o.add(buildCigarUnit()); |
1186 o.add(buildCigarUnit()); | 1186 o.add(buildCigarUnit()); |
1187 return o; | 1187 return o; |
1188 } | 1188 } |
1189 | 1189 |
1190 checkUnnamed1529(core.List<api.CigarUnit> o) { | 1190 checkUnnamed2402(core.List<api.CigarUnit> o) { |
1191 unittest.expect(o, unittest.hasLength(2)); | 1191 unittest.expect(o, unittest.hasLength(2)); |
1192 checkCigarUnit(o[0]); | 1192 checkCigarUnit(o[0]); |
1193 checkCigarUnit(o[1]); | 1193 checkCigarUnit(o[1]); |
1194 } | 1194 } |
1195 | 1195 |
1196 core.int buildCounterLinearAlignment = 0; | 1196 core.int buildCounterLinearAlignment = 0; |
1197 buildLinearAlignment() { | 1197 buildLinearAlignment() { |
1198 var o = new api.LinearAlignment(); | 1198 var o = new api.LinearAlignment(); |
1199 buildCounterLinearAlignment++; | 1199 buildCounterLinearAlignment++; |
1200 if (buildCounterLinearAlignment < 3) { | 1200 if (buildCounterLinearAlignment < 3) { |
1201 o.cigar = buildUnnamed1529(); | 1201 o.cigar = buildUnnamed2402(); |
1202 o.mappingQuality = 42; | 1202 o.mappingQuality = 42; |
1203 o.position = buildPosition(); | 1203 o.position = buildPosition(); |
1204 } | 1204 } |
1205 buildCounterLinearAlignment--; | 1205 buildCounterLinearAlignment--; |
1206 return o; | 1206 return o; |
1207 } | 1207 } |
1208 | 1208 |
1209 checkLinearAlignment(api.LinearAlignment o) { | 1209 checkLinearAlignment(api.LinearAlignment o) { |
1210 buildCounterLinearAlignment++; | 1210 buildCounterLinearAlignment++; |
1211 if (buildCounterLinearAlignment < 3) { | 1211 if (buildCounterLinearAlignment < 3) { |
1212 checkUnnamed1529(o.cigar); | 1212 checkUnnamed2402(o.cigar); |
1213 unittest.expect(o.mappingQuality, unittest.equals(42)); | 1213 unittest.expect(o.mappingQuality, unittest.equals(42)); |
1214 checkPosition(o.position); | 1214 checkPosition(o.position); |
1215 } | 1215 } |
1216 buildCounterLinearAlignment--; | 1216 buildCounterLinearAlignment--; |
1217 } | 1217 } |
1218 | 1218 |
1219 core.int buildCounterListBasesResponse = 0; | 1219 core.int buildCounterListBasesResponse = 0; |
1220 buildListBasesResponse() { | 1220 buildListBasesResponse() { |
1221 var o = new api.ListBasesResponse(); | 1221 var o = new api.ListBasesResponse(); |
1222 buildCounterListBasesResponse++; | 1222 buildCounterListBasesResponse++; |
1223 if (buildCounterListBasesResponse < 3) { | 1223 if (buildCounterListBasesResponse < 3) { |
1224 o.nextPageToken = "foo"; | 1224 o.nextPageToken = "foo"; |
1225 o.offset = "foo"; | 1225 o.offset = "foo"; |
1226 o.sequence = "foo"; | 1226 o.sequence = "foo"; |
1227 } | 1227 } |
1228 buildCounterListBasesResponse--; | 1228 buildCounterListBasesResponse--; |
1229 return o; | 1229 return o; |
1230 } | 1230 } |
1231 | 1231 |
1232 checkListBasesResponse(api.ListBasesResponse o) { | 1232 checkListBasesResponse(api.ListBasesResponse o) { |
1233 buildCounterListBasesResponse++; | 1233 buildCounterListBasesResponse++; |
1234 if (buildCounterListBasesResponse < 3) { | 1234 if (buildCounterListBasesResponse < 3) { |
1235 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1235 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1236 unittest.expect(o.offset, unittest.equals('foo')); | 1236 unittest.expect(o.offset, unittest.equals('foo')); |
1237 unittest.expect(o.sequence, unittest.equals('foo')); | 1237 unittest.expect(o.sequence, unittest.equals('foo')); |
1238 } | 1238 } |
1239 buildCounterListBasesResponse--; | 1239 buildCounterListBasesResponse--; |
1240 } | 1240 } |
1241 | 1241 |
1242 buildUnnamed1530() { | 1242 buildUnnamed2403() { |
1243 var o = new core.List<api.CoverageBucket>(); | 1243 var o = new core.List<api.CoverageBucket>(); |
1244 o.add(buildCoverageBucket()); | 1244 o.add(buildCoverageBucket()); |
1245 o.add(buildCoverageBucket()); | 1245 o.add(buildCoverageBucket()); |
1246 return o; | 1246 return o; |
1247 } | 1247 } |
1248 | 1248 |
1249 checkUnnamed1530(core.List<api.CoverageBucket> o) { | 1249 checkUnnamed2403(core.List<api.CoverageBucket> o) { |
1250 unittest.expect(o, unittest.hasLength(2)); | 1250 unittest.expect(o, unittest.hasLength(2)); |
1251 checkCoverageBucket(o[0]); | 1251 checkCoverageBucket(o[0]); |
1252 checkCoverageBucket(o[1]); | 1252 checkCoverageBucket(o[1]); |
1253 } | 1253 } |
1254 | 1254 |
1255 core.int buildCounterListCoverageBucketsResponse = 0; | 1255 core.int buildCounterListCoverageBucketsResponse = 0; |
1256 buildListCoverageBucketsResponse() { | 1256 buildListCoverageBucketsResponse() { |
1257 var o = new api.ListCoverageBucketsResponse(); | 1257 var o = new api.ListCoverageBucketsResponse(); |
1258 buildCounterListCoverageBucketsResponse++; | 1258 buildCounterListCoverageBucketsResponse++; |
1259 if (buildCounterListCoverageBucketsResponse < 3) { | 1259 if (buildCounterListCoverageBucketsResponse < 3) { |
1260 o.bucketWidth = "foo"; | 1260 o.bucketWidth = "foo"; |
1261 o.coverageBuckets = buildUnnamed1530(); | 1261 o.coverageBuckets = buildUnnamed2403(); |
1262 o.nextPageToken = "foo"; | 1262 o.nextPageToken = "foo"; |
1263 } | 1263 } |
1264 buildCounterListCoverageBucketsResponse--; | 1264 buildCounterListCoverageBucketsResponse--; |
1265 return o; | 1265 return o; |
1266 } | 1266 } |
1267 | 1267 |
1268 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { | 1268 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { |
1269 buildCounterListCoverageBucketsResponse++; | 1269 buildCounterListCoverageBucketsResponse++; |
1270 if (buildCounterListCoverageBucketsResponse < 3) { | 1270 if (buildCounterListCoverageBucketsResponse < 3) { |
1271 unittest.expect(o.bucketWidth, unittest.equals('foo')); | 1271 unittest.expect(o.bucketWidth, unittest.equals('foo')); |
1272 checkUnnamed1530(o.coverageBuckets); | 1272 checkUnnamed2403(o.coverageBuckets); |
1273 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1273 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1274 } | 1274 } |
1275 buildCounterListCoverageBucketsResponse--; | 1275 buildCounterListCoverageBucketsResponse--; |
1276 } | 1276 } |
1277 | 1277 |
1278 buildUnnamed1531() { | 1278 buildUnnamed2404() { |
1279 var o = new core.List<api.Dataset>(); | 1279 var o = new core.List<api.Dataset>(); |
1280 o.add(buildDataset()); | 1280 o.add(buildDataset()); |
1281 o.add(buildDataset()); | 1281 o.add(buildDataset()); |
1282 return o; | 1282 return o; |
1283 } | 1283 } |
1284 | 1284 |
1285 checkUnnamed1531(core.List<api.Dataset> o) { | 1285 checkUnnamed2404(core.List<api.Dataset> o) { |
1286 unittest.expect(o, unittest.hasLength(2)); | 1286 unittest.expect(o, unittest.hasLength(2)); |
1287 checkDataset(o[0]); | 1287 checkDataset(o[0]); |
1288 checkDataset(o[1]); | 1288 checkDataset(o[1]); |
1289 } | 1289 } |
1290 | 1290 |
1291 core.int buildCounterListDatasetsResponse = 0; | 1291 core.int buildCounterListDatasetsResponse = 0; |
1292 buildListDatasetsResponse() { | 1292 buildListDatasetsResponse() { |
1293 var o = new api.ListDatasetsResponse(); | 1293 var o = new api.ListDatasetsResponse(); |
1294 buildCounterListDatasetsResponse++; | 1294 buildCounterListDatasetsResponse++; |
1295 if (buildCounterListDatasetsResponse < 3) { | 1295 if (buildCounterListDatasetsResponse < 3) { |
1296 o.datasets = buildUnnamed1531(); | 1296 o.datasets = buildUnnamed2404(); |
1297 o.nextPageToken = "foo"; | 1297 o.nextPageToken = "foo"; |
1298 } | 1298 } |
1299 buildCounterListDatasetsResponse--; | 1299 buildCounterListDatasetsResponse--; |
1300 return o; | 1300 return o; |
1301 } | 1301 } |
1302 | 1302 |
1303 checkListDatasetsResponse(api.ListDatasetsResponse o) { | 1303 checkListDatasetsResponse(api.ListDatasetsResponse o) { |
1304 buildCounterListDatasetsResponse++; | 1304 buildCounterListDatasetsResponse++; |
1305 if (buildCounterListDatasetsResponse < 3) { | 1305 if (buildCounterListDatasetsResponse < 3) { |
1306 checkUnnamed1531(o.datasets); | 1306 checkUnnamed2404(o.datasets); |
1307 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1307 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1308 } | 1308 } |
1309 buildCounterListDatasetsResponse--; | 1309 buildCounterListDatasetsResponse--; |
1310 } | 1310 } |
1311 | 1311 |
1312 buildUnnamed1532() { | 1312 buildUnnamed2405() { |
1313 var o = new core.List<api.Variant>(); | 1313 var o = new core.List<api.Variant>(); |
1314 o.add(buildVariant()); | 1314 o.add(buildVariant()); |
1315 o.add(buildVariant()); | 1315 o.add(buildVariant()); |
1316 return o; | 1316 return o; |
1317 } | 1317 } |
1318 | 1318 |
1319 checkUnnamed1532(core.List<api.Variant> o) { | 1319 checkUnnamed2405(core.List<api.Variant> o) { |
1320 unittest.expect(o, unittest.hasLength(2)); | 1320 unittest.expect(o, unittest.hasLength(2)); |
1321 checkVariant(o[0]); | 1321 checkVariant(o[0]); |
1322 checkVariant(o[1]); | 1322 checkVariant(o[1]); |
1323 } | 1323 } |
1324 | 1324 |
1325 core.int buildCounterMergeVariantsRequest = 0; | 1325 core.int buildCounterMergeVariantsRequest = 0; |
1326 buildMergeVariantsRequest() { | 1326 buildMergeVariantsRequest() { |
1327 var o = new api.MergeVariantsRequest(); | 1327 var o = new api.MergeVariantsRequest(); |
1328 buildCounterMergeVariantsRequest++; | 1328 buildCounterMergeVariantsRequest++; |
1329 if (buildCounterMergeVariantsRequest < 3) { | 1329 if (buildCounterMergeVariantsRequest < 3) { |
1330 o.variants = buildUnnamed1532(); | 1330 o.variants = buildUnnamed2405(); |
1331 } | 1331 } |
1332 buildCounterMergeVariantsRequest--; | 1332 buildCounterMergeVariantsRequest--; |
1333 return o; | 1333 return o; |
1334 } | 1334 } |
1335 | 1335 |
1336 checkMergeVariantsRequest(api.MergeVariantsRequest o) { | 1336 checkMergeVariantsRequest(api.MergeVariantsRequest o) { |
1337 buildCounterMergeVariantsRequest++; | 1337 buildCounterMergeVariantsRequest++; |
1338 if (buildCounterMergeVariantsRequest < 3) { | 1338 if (buildCounterMergeVariantsRequest < 3) { |
1339 checkUnnamed1532(o.variants); | 1339 checkUnnamed2405(o.variants); |
1340 } | 1340 } |
1341 buildCounterMergeVariantsRequest--; | 1341 buildCounterMergeVariantsRequest--; |
1342 } | 1342 } |
1343 | 1343 |
1344 buildUnnamed1533() { | 1344 buildUnnamed2406() { |
1345 var o = new core.List<core.String>(); | 1345 var o = new core.List<core.String>(); |
1346 o.add("foo"); | 1346 o.add("foo"); |
1347 o.add("foo"); | 1347 o.add("foo"); |
1348 return o; | 1348 return o; |
1349 } | 1349 } |
1350 | 1350 |
1351 checkUnnamed1533(core.List<core.String> o) { | 1351 checkUnnamed2406(core.List<core.String> o) { |
1352 unittest.expect(o, unittest.hasLength(2)); | 1352 unittest.expect(o, unittest.hasLength(2)); |
1353 unittest.expect(o[0], unittest.equals('foo')); | 1353 unittest.expect(o[0], unittest.equals('foo')); |
1354 unittest.expect(o[1], unittest.equals('foo')); | 1354 unittest.expect(o[1], unittest.equals('foo')); |
1355 } | 1355 } |
1356 | 1356 |
1357 buildUnnamed1534() { | 1357 buildUnnamed2407() { |
1358 var o = new core.Map<core.String, core.List<core.String>>(); | 1358 var o = new core.Map<core.String, core.List<core.String>>(); |
1359 o["x"] = buildUnnamed1533(); | 1359 o["x"] = buildUnnamed2406(); |
1360 o["y"] = buildUnnamed1533(); | 1360 o["y"] = buildUnnamed2406(); |
1361 return o; | 1361 return o; |
1362 } | 1362 } |
1363 | 1363 |
1364 checkUnnamed1534(core.Map<core.String, core.List<core.String>> o) { | 1364 checkUnnamed2407(core.Map<core.String, core.List<core.String>> o) { |
1365 unittest.expect(o, unittest.hasLength(2)); | 1365 unittest.expect(o, unittest.hasLength(2)); |
1366 checkUnnamed1533(o["x"]); | 1366 checkUnnamed2406(o["x"]); |
1367 checkUnnamed1533(o["y"]); | 1367 checkUnnamed2406(o["y"]); |
1368 } | 1368 } |
1369 | 1369 |
1370 core.int buildCounterMetadata = 0; | 1370 core.int buildCounterMetadata = 0; |
1371 buildMetadata() { | 1371 buildMetadata() { |
1372 var o = new api.Metadata(); | 1372 var o = new api.Metadata(); |
1373 buildCounterMetadata++; | 1373 buildCounterMetadata++; |
1374 if (buildCounterMetadata < 3) { | 1374 if (buildCounterMetadata < 3) { |
1375 o.description = "foo"; | 1375 o.description = "foo"; |
1376 o.id = "foo"; | 1376 o.id = "foo"; |
1377 o.info = buildUnnamed1534(); | 1377 o.info = buildUnnamed2407(); |
1378 o.key = "foo"; | 1378 o.key = "foo"; |
1379 o.number = "foo"; | 1379 o.number = "foo"; |
1380 o.type = "foo"; | 1380 o.type = "foo"; |
1381 o.value = "foo"; | 1381 o.value = "foo"; |
1382 } | 1382 } |
1383 buildCounterMetadata--; | 1383 buildCounterMetadata--; |
1384 return o; | 1384 return o; |
1385 } | 1385 } |
1386 | 1386 |
1387 checkMetadata(api.Metadata o) { | 1387 checkMetadata(api.Metadata o) { |
1388 buildCounterMetadata++; | 1388 buildCounterMetadata++; |
1389 if (buildCounterMetadata < 3) { | 1389 if (buildCounterMetadata < 3) { |
1390 unittest.expect(o.description, unittest.equals('foo')); | 1390 unittest.expect(o.description, unittest.equals('foo')); |
1391 unittest.expect(o.id, unittest.equals('foo')); | 1391 unittest.expect(o.id, unittest.equals('foo')); |
1392 checkUnnamed1534(o.info); | 1392 checkUnnamed2407(o.info); |
1393 unittest.expect(o.key, unittest.equals('foo')); | 1393 unittest.expect(o.key, unittest.equals('foo')); |
1394 unittest.expect(o.number, unittest.equals('foo')); | 1394 unittest.expect(o.number, unittest.equals('foo')); |
1395 unittest.expect(o.type, unittest.equals('foo')); | 1395 unittest.expect(o.type, unittest.equals('foo')); |
1396 unittest.expect(o.value, unittest.equals('foo')); | 1396 unittest.expect(o.value, unittest.equals('foo')); |
1397 } | 1397 } |
1398 buildCounterMetadata--; | 1398 buildCounterMetadata--; |
1399 } | 1399 } |
1400 | 1400 |
1401 buildUnnamed1535() { | 1401 buildUnnamed2408() { |
1402 var o = new core.List<core.String>(); | 1402 var o = new core.List<core.String>(); |
1403 o.add("foo"); | 1403 o.add("foo"); |
1404 o.add("foo"); | 1404 o.add("foo"); |
1405 return o; | 1405 return o; |
1406 } | 1406 } |
1407 | 1407 |
1408 checkUnnamed1535(core.List<core.String> o) { | 1408 checkUnnamed2408(core.List<core.String> o) { |
1409 unittest.expect(o, unittest.hasLength(2)); | 1409 unittest.expect(o, unittest.hasLength(2)); |
1410 unittest.expect(o[0], unittest.equals('foo')); | 1410 unittest.expect(o[0], unittest.equals('foo')); |
1411 unittest.expect(o[1], unittest.equals('foo')); | 1411 unittest.expect(o[1], unittest.equals('foo')); |
1412 } | 1412 } |
1413 | 1413 |
1414 buildUnnamed1536() { | 1414 buildUnnamed2409() { |
1415 var o = new core.List<core.String>(); | 1415 var o = new core.List<core.String>(); |
1416 o.add("foo"); | 1416 o.add("foo"); |
1417 o.add("foo"); | 1417 o.add("foo"); |
1418 return o; | 1418 return o; |
1419 } | 1419 } |
1420 | 1420 |
1421 checkUnnamed1536(core.List<core.String> o) { | 1421 checkUnnamed2409(core.List<core.String> o) { |
1422 unittest.expect(o, unittest.hasLength(2)); | 1422 unittest.expect(o, unittest.hasLength(2)); |
1423 unittest.expect(o[0], unittest.equals('foo')); | 1423 unittest.expect(o[0], unittest.equals('foo')); |
1424 unittest.expect(o[1], unittest.equals('foo')); | 1424 unittest.expect(o[1], unittest.equals('foo')); |
1425 } | 1425 } |
1426 | 1426 |
1427 core.int buildCounterPairedFastqSource = 0; | 1427 core.int buildCounterPairedFastqSource = 0; |
1428 buildPairedFastqSource() { | 1428 buildPairedFastqSource() { |
1429 var o = new api.PairedFastqSource(); | 1429 var o = new api.PairedFastqSource(); |
1430 buildCounterPairedFastqSource++; | 1430 buildCounterPairedFastqSource++; |
1431 if (buildCounterPairedFastqSource < 3) { | 1431 if (buildCounterPairedFastqSource < 3) { |
1432 o.firstSourceUris = buildUnnamed1535(); | 1432 o.firstSourceUris = buildUnnamed2408(); |
1433 o.metadata = buildFastqMetadata(); | 1433 o.metadata = buildFastqMetadata(); |
1434 o.secondSourceUris = buildUnnamed1536(); | 1434 o.secondSourceUris = buildUnnamed2409(); |
1435 } | 1435 } |
1436 buildCounterPairedFastqSource--; | 1436 buildCounterPairedFastqSource--; |
1437 return o; | 1437 return o; |
1438 } | 1438 } |
1439 | 1439 |
1440 checkPairedFastqSource(api.PairedFastqSource o) { | 1440 checkPairedFastqSource(api.PairedFastqSource o) { |
1441 buildCounterPairedFastqSource++; | 1441 buildCounterPairedFastqSource++; |
1442 if (buildCounterPairedFastqSource < 3) { | 1442 if (buildCounterPairedFastqSource < 3) { |
1443 checkUnnamed1535(o.firstSourceUris); | 1443 checkUnnamed2408(o.firstSourceUris); |
1444 checkFastqMetadata(o.metadata); | 1444 checkFastqMetadata(o.metadata); |
1445 checkUnnamed1536(o.secondSourceUris); | 1445 checkUnnamed2409(o.secondSourceUris); |
1446 } | 1446 } |
1447 buildCounterPairedFastqSource--; | 1447 buildCounterPairedFastqSource--; |
1448 } | 1448 } |
1449 | 1449 |
1450 core.int buildCounterPosition = 0; | 1450 core.int buildCounterPosition = 0; |
1451 buildPosition() { | 1451 buildPosition() { |
1452 var o = new api.Position(); | 1452 var o = new api.Position(); |
1453 buildCounterPosition++; | 1453 buildCounterPosition++; |
1454 if (buildCounterPosition < 3) { | 1454 if (buildCounterPosition < 3) { |
1455 o.position = "foo"; | 1455 o.position = "foo"; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1538 if (buildCounterRangePosition < 3) { | 1538 if (buildCounterRangePosition < 3) { |
1539 unittest.expect(o.end, unittest.equals('foo')); | 1539 unittest.expect(o.end, unittest.equals('foo')); |
1540 unittest.expect(o.referenceId, unittest.equals('foo')); | 1540 unittest.expect(o.referenceId, unittest.equals('foo')); |
1541 unittest.expect(o.referenceName, unittest.equals('foo')); | 1541 unittest.expect(o.referenceName, unittest.equals('foo')); |
1542 unittest.expect(o.reverseStrand, unittest.isTrue); | 1542 unittest.expect(o.reverseStrand, unittest.isTrue); |
1543 unittest.expect(o.start, unittest.equals('foo')); | 1543 unittest.expect(o.start, unittest.equals('foo')); |
1544 } | 1544 } |
1545 buildCounterRangePosition--; | 1545 buildCounterRangePosition--; |
1546 } | 1546 } |
1547 | 1547 |
1548 buildUnnamed1537() { | 1548 buildUnnamed2410() { |
1549 var o = new core.List<core.int>(); | 1549 var o = new core.List<core.int>(); |
1550 o.add(42); | 1550 o.add(42); |
1551 o.add(42); | 1551 o.add(42); |
1552 return o; | 1552 return o; |
1553 } | 1553 } |
1554 | 1554 |
1555 checkUnnamed1537(core.List<core.int> o) { | 1555 checkUnnamed2410(core.List<core.int> o) { |
1556 unittest.expect(o, unittest.hasLength(2)); | 1556 unittest.expect(o, unittest.hasLength(2)); |
1557 unittest.expect(o[0], unittest.equals(42)); | 1557 unittest.expect(o[0], unittest.equals(42)); |
1558 unittest.expect(o[1], unittest.equals(42)); | 1558 unittest.expect(o[1], unittest.equals(42)); |
1559 } | 1559 } |
1560 | 1560 |
1561 buildUnnamed1538() { | 1561 buildUnnamed2411() { |
1562 var o = new core.List<core.String>(); | 1562 var o = new core.List<core.String>(); |
1563 o.add("foo"); | 1563 o.add("foo"); |
1564 o.add("foo"); | 1564 o.add("foo"); |
1565 return o; | 1565 return o; |
1566 } | 1566 } |
1567 | 1567 |
1568 checkUnnamed1538(core.List<core.String> o) { | 1568 checkUnnamed2411(core.List<core.String> o) { |
1569 unittest.expect(o, unittest.hasLength(2)); | 1569 unittest.expect(o, unittest.hasLength(2)); |
1570 unittest.expect(o[0], unittest.equals('foo')); | 1570 unittest.expect(o[0], unittest.equals('foo')); |
1571 unittest.expect(o[1], unittest.equals('foo')); | 1571 unittest.expect(o[1], unittest.equals('foo')); |
1572 } | 1572 } |
1573 | 1573 |
1574 buildUnnamed1539() { | 1574 buildUnnamed2412() { |
1575 var o = new core.Map<core.String, core.List<core.String>>(); | 1575 var o = new core.Map<core.String, core.List<core.String>>(); |
1576 o["x"] = buildUnnamed1538(); | 1576 o["x"] = buildUnnamed2411(); |
1577 o["y"] = buildUnnamed1538(); | 1577 o["y"] = buildUnnamed2411(); |
1578 return o; | 1578 return o; |
1579 } | 1579 } |
1580 | 1580 |
1581 checkUnnamed1539(core.Map<core.String, core.List<core.String>> o) { | 1581 checkUnnamed2412(core.Map<core.String, core.List<core.String>> o) { |
1582 unittest.expect(o, unittest.hasLength(2)); | 1582 unittest.expect(o, unittest.hasLength(2)); |
1583 checkUnnamed1538(o["x"]); | 1583 checkUnnamed2411(o["x"]); |
1584 checkUnnamed1538(o["y"]); | 1584 checkUnnamed2411(o["y"]); |
1585 } | 1585 } |
1586 | 1586 |
1587 core.int buildCounterRead = 0; | 1587 core.int buildCounterRead = 0; |
1588 buildRead() { | 1588 buildRead() { |
1589 var o = new api.Read(); | 1589 var o = new api.Read(); |
1590 buildCounterRead++; | 1590 buildCounterRead++; |
1591 if (buildCounterRead < 3) { | 1591 if (buildCounterRead < 3) { |
1592 o.alignedQuality = buildUnnamed1537(); | 1592 o.alignedQuality = buildUnnamed2410(); |
1593 o.alignedSequence = "foo"; | 1593 o.alignedSequence = "foo"; |
1594 o.alignment = buildLinearAlignment(); | 1594 o.alignment = buildLinearAlignment(); |
1595 o.duplicateFragment = true; | 1595 o.duplicateFragment = true; |
1596 o.failedVendorQualityChecks = true; | 1596 o.failedVendorQualityChecks = true; |
1597 o.fragmentLength = 42; | 1597 o.fragmentLength = 42; |
1598 o.fragmentName = "foo"; | 1598 o.fragmentName = "foo"; |
1599 o.id = "foo"; | 1599 o.id = "foo"; |
1600 o.info = buildUnnamed1539(); | 1600 o.info = buildUnnamed2412(); |
1601 o.nextMatePosition = buildPosition(); | 1601 o.nextMatePosition = buildPosition(); |
1602 o.numberReads = 42; | 1602 o.numberReads = 42; |
1603 o.properPlacement = true; | 1603 o.properPlacement = true; |
1604 o.readGroupId = "foo"; | 1604 o.readGroupId = "foo"; |
1605 o.readGroupSetId = "foo"; | 1605 o.readGroupSetId = "foo"; |
1606 o.readNumber = 42; | 1606 o.readNumber = 42; |
1607 o.secondaryAlignment = true; | 1607 o.secondaryAlignment = true; |
1608 o.supplementaryAlignment = true; | 1608 o.supplementaryAlignment = true; |
1609 } | 1609 } |
1610 buildCounterRead--; | 1610 buildCounterRead--; |
1611 return o; | 1611 return o; |
1612 } | 1612 } |
1613 | 1613 |
1614 checkRead(api.Read o) { | 1614 checkRead(api.Read o) { |
1615 buildCounterRead++; | 1615 buildCounterRead++; |
1616 if (buildCounterRead < 3) { | 1616 if (buildCounterRead < 3) { |
1617 checkUnnamed1537(o.alignedQuality); | 1617 checkUnnamed2410(o.alignedQuality); |
1618 unittest.expect(o.alignedSequence, unittest.equals('foo')); | 1618 unittest.expect(o.alignedSequence, unittest.equals('foo')); |
1619 checkLinearAlignment(o.alignment); | 1619 checkLinearAlignment(o.alignment); |
1620 unittest.expect(o.duplicateFragment, unittest.isTrue); | 1620 unittest.expect(o.duplicateFragment, unittest.isTrue); |
1621 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); | 1621 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); |
1622 unittest.expect(o.fragmentLength, unittest.equals(42)); | 1622 unittest.expect(o.fragmentLength, unittest.equals(42)); |
1623 unittest.expect(o.fragmentName, unittest.equals('foo')); | 1623 unittest.expect(o.fragmentName, unittest.equals('foo')); |
1624 unittest.expect(o.id, unittest.equals('foo')); | 1624 unittest.expect(o.id, unittest.equals('foo')); |
1625 checkUnnamed1539(o.info); | 1625 checkUnnamed2412(o.info); |
1626 checkPosition(o.nextMatePosition); | 1626 checkPosition(o.nextMatePosition); |
1627 unittest.expect(o.numberReads, unittest.equals(42)); | 1627 unittest.expect(o.numberReads, unittest.equals(42)); |
1628 unittest.expect(o.properPlacement, unittest.isTrue); | 1628 unittest.expect(o.properPlacement, unittest.isTrue); |
1629 unittest.expect(o.readGroupId, unittest.equals('foo')); | 1629 unittest.expect(o.readGroupId, unittest.equals('foo')); |
1630 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 1630 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
1631 unittest.expect(o.readNumber, unittest.equals(42)); | 1631 unittest.expect(o.readNumber, unittest.equals(42)); |
1632 unittest.expect(o.secondaryAlignment, unittest.isTrue); | 1632 unittest.expect(o.secondaryAlignment, unittest.isTrue); |
1633 unittest.expect(o.supplementaryAlignment, unittest.isTrue); | 1633 unittest.expect(o.supplementaryAlignment, unittest.isTrue); |
1634 } | 1634 } |
1635 buildCounterRead--; | 1635 buildCounterRead--; |
1636 } | 1636 } |
1637 | 1637 |
1638 buildUnnamed1540() { | 1638 buildUnnamed2413() { |
1639 var o = new core.List<core.String>(); | 1639 var o = new core.List<core.String>(); |
1640 o.add("foo"); | 1640 o.add("foo"); |
1641 o.add("foo"); | 1641 o.add("foo"); |
1642 return o; | 1642 return o; |
1643 } | 1643 } |
1644 | 1644 |
1645 checkUnnamed1540(core.List<core.String> o) { | 1645 checkUnnamed2413(core.List<core.String> o) { |
1646 unittest.expect(o, unittest.hasLength(2)); | 1646 unittest.expect(o, unittest.hasLength(2)); |
1647 unittest.expect(o[0], unittest.equals('foo')); | 1647 unittest.expect(o[0], unittest.equals('foo')); |
1648 unittest.expect(o[1], unittest.equals('foo')); | 1648 unittest.expect(o[1], unittest.equals('foo')); |
1649 } | 1649 } |
1650 | 1650 |
1651 buildUnnamed1541() { | 1651 buildUnnamed2414() { |
1652 var o = new core.Map<core.String, core.List<core.String>>(); | 1652 var o = new core.Map<core.String, core.List<core.String>>(); |
1653 o["x"] = buildUnnamed1540(); | 1653 o["x"] = buildUnnamed2413(); |
1654 o["y"] = buildUnnamed1540(); | 1654 o["y"] = buildUnnamed2413(); |
1655 return o; | 1655 return o; |
1656 } | 1656 } |
1657 | 1657 |
1658 checkUnnamed1541(core.Map<core.String, core.List<core.String>> o) { | 1658 checkUnnamed2414(core.Map<core.String, core.List<core.String>> o) { |
1659 unittest.expect(o, unittest.hasLength(2)); | 1659 unittest.expect(o, unittest.hasLength(2)); |
1660 checkUnnamed1540(o["x"]); | 1660 checkUnnamed2413(o["x"]); |
1661 checkUnnamed1540(o["y"]); | 1661 checkUnnamed2413(o["y"]); |
1662 } | 1662 } |
1663 | 1663 |
1664 buildUnnamed1542() { | 1664 buildUnnamed2415() { |
1665 var o = new core.List<api.ReadGroupProgram>(); | 1665 var o = new core.List<api.ReadGroupProgram>(); |
1666 o.add(buildReadGroupProgram()); | 1666 o.add(buildReadGroupProgram()); |
1667 o.add(buildReadGroupProgram()); | 1667 o.add(buildReadGroupProgram()); |
1668 return o; | 1668 return o; |
1669 } | 1669 } |
1670 | 1670 |
1671 checkUnnamed1542(core.List<api.ReadGroupProgram> o) { | 1671 checkUnnamed2415(core.List<api.ReadGroupProgram> o) { |
1672 unittest.expect(o, unittest.hasLength(2)); | 1672 unittest.expect(o, unittest.hasLength(2)); |
1673 checkReadGroupProgram(o[0]); | 1673 checkReadGroupProgram(o[0]); |
1674 checkReadGroupProgram(o[1]); | 1674 checkReadGroupProgram(o[1]); |
1675 } | 1675 } |
1676 | 1676 |
1677 core.int buildCounterReadGroup = 0; | 1677 core.int buildCounterReadGroup = 0; |
1678 buildReadGroup() { | 1678 buildReadGroup() { |
1679 var o = new api.ReadGroup(); | 1679 var o = new api.ReadGroup(); |
1680 buildCounterReadGroup++; | 1680 buildCounterReadGroup++; |
1681 if (buildCounterReadGroup < 3) { | 1681 if (buildCounterReadGroup < 3) { |
1682 o.datasetId = "foo"; | 1682 o.datasetId = "foo"; |
1683 o.description = "foo"; | 1683 o.description = "foo"; |
1684 o.experiment = buildReadGroupExperiment(); | 1684 o.experiment = buildReadGroupExperiment(); |
1685 o.id = "foo"; | 1685 o.id = "foo"; |
1686 o.info = buildUnnamed1541(); | 1686 o.info = buildUnnamed2414(); |
1687 o.name = "foo"; | 1687 o.name = "foo"; |
1688 o.predictedInsertSize = 42; | 1688 o.predictedInsertSize = 42; |
1689 o.programs = buildUnnamed1542(); | 1689 o.programs = buildUnnamed2415(); |
1690 o.referenceSetId = "foo"; | 1690 o.referenceSetId = "foo"; |
1691 o.sampleId = "foo"; | 1691 o.sampleId = "foo"; |
1692 } | 1692 } |
1693 buildCounterReadGroup--; | 1693 buildCounterReadGroup--; |
1694 return o; | 1694 return o; |
1695 } | 1695 } |
1696 | 1696 |
1697 checkReadGroup(api.ReadGroup o) { | 1697 checkReadGroup(api.ReadGroup o) { |
1698 buildCounterReadGroup++; | 1698 buildCounterReadGroup++; |
1699 if (buildCounterReadGroup < 3) { | 1699 if (buildCounterReadGroup < 3) { |
1700 unittest.expect(o.datasetId, unittest.equals('foo')); | 1700 unittest.expect(o.datasetId, unittest.equals('foo')); |
1701 unittest.expect(o.description, unittest.equals('foo')); | 1701 unittest.expect(o.description, unittest.equals('foo')); |
1702 checkReadGroupExperiment(o.experiment); | 1702 checkReadGroupExperiment(o.experiment); |
1703 unittest.expect(o.id, unittest.equals('foo')); | 1703 unittest.expect(o.id, unittest.equals('foo')); |
1704 checkUnnamed1541(o.info); | 1704 checkUnnamed2414(o.info); |
1705 unittest.expect(o.name, unittest.equals('foo')); | 1705 unittest.expect(o.name, unittest.equals('foo')); |
1706 unittest.expect(o.predictedInsertSize, unittest.equals(42)); | 1706 unittest.expect(o.predictedInsertSize, unittest.equals(42)); |
1707 checkUnnamed1542(o.programs); | 1707 checkUnnamed2415(o.programs); |
1708 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1708 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
1709 unittest.expect(o.sampleId, unittest.equals('foo')); | 1709 unittest.expect(o.sampleId, unittest.equals('foo')); |
1710 } | 1710 } |
1711 buildCounterReadGroup--; | 1711 buildCounterReadGroup--; |
1712 } | 1712 } |
1713 | 1713 |
1714 core.int buildCounterReadGroupExperiment = 0; | 1714 core.int buildCounterReadGroupExperiment = 0; |
1715 buildReadGroupExperiment() { | 1715 buildReadGroupExperiment() { |
1716 var o = new api.ReadGroupExperiment(); | 1716 var o = new api.ReadGroupExperiment(); |
1717 buildCounterReadGroupExperiment++; | 1717 buildCounterReadGroupExperiment++; |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1756 if (buildCounterReadGroupProgram < 3) { | 1756 if (buildCounterReadGroupProgram < 3) { |
1757 unittest.expect(o.commandLine, unittest.equals('foo')); | 1757 unittest.expect(o.commandLine, unittest.equals('foo')); |
1758 unittest.expect(o.id, unittest.equals('foo')); | 1758 unittest.expect(o.id, unittest.equals('foo')); |
1759 unittest.expect(o.name, unittest.equals('foo')); | 1759 unittest.expect(o.name, unittest.equals('foo')); |
1760 unittest.expect(o.prevProgramId, unittest.equals('foo')); | 1760 unittest.expect(o.prevProgramId, unittest.equals('foo')); |
1761 unittest.expect(o.version, unittest.equals('foo')); | 1761 unittest.expect(o.version, unittest.equals('foo')); |
1762 } | 1762 } |
1763 buildCounterReadGroupProgram--; | 1763 buildCounterReadGroupProgram--; |
1764 } | 1764 } |
1765 | 1765 |
1766 buildUnnamed1543() { | 1766 buildUnnamed2416() { |
1767 var o = new core.List<core.String>(); | 1767 var o = new core.List<core.String>(); |
1768 o.add("foo"); | 1768 o.add("foo"); |
1769 o.add("foo"); | 1769 o.add("foo"); |
1770 return o; | 1770 return o; |
1771 } | 1771 } |
1772 | 1772 |
1773 checkUnnamed1543(core.List<core.String> o) { | 1773 checkUnnamed2416(core.List<core.String> o) { |
1774 unittest.expect(o, unittest.hasLength(2)); | 1774 unittest.expect(o, unittest.hasLength(2)); |
1775 unittest.expect(o[0], unittest.equals('foo')); | 1775 unittest.expect(o[0], unittest.equals('foo')); |
1776 unittest.expect(o[1], unittest.equals('foo')); | 1776 unittest.expect(o[1], unittest.equals('foo')); |
1777 } | 1777 } |
1778 | 1778 |
1779 buildUnnamed1544() { | 1779 buildUnnamed2417() { |
1780 var o = new core.Map<core.String, core.List<core.String>>(); | 1780 var o = new core.Map<core.String, core.List<core.String>>(); |
1781 o["x"] = buildUnnamed1543(); | 1781 o["x"] = buildUnnamed2416(); |
1782 o["y"] = buildUnnamed1543(); | 1782 o["y"] = buildUnnamed2416(); |
1783 return o; | 1783 return o; |
1784 } | 1784 } |
1785 | 1785 |
1786 checkUnnamed1544(core.Map<core.String, core.List<core.String>> o) { | 1786 checkUnnamed2417(core.Map<core.String, core.List<core.String>> o) { |
1787 unittest.expect(o, unittest.hasLength(2)); | 1787 unittest.expect(o, unittest.hasLength(2)); |
1788 checkUnnamed1543(o["x"]); | 1788 checkUnnamed2416(o["x"]); |
1789 checkUnnamed1543(o["y"]); | 1789 checkUnnamed2416(o["y"]); |
1790 } | 1790 } |
1791 | 1791 |
1792 buildUnnamed1545() { | 1792 buildUnnamed2418() { |
1793 var o = new core.List<api.ReadGroup>(); | 1793 var o = new core.List<api.ReadGroup>(); |
1794 o.add(buildReadGroup()); | 1794 o.add(buildReadGroup()); |
1795 o.add(buildReadGroup()); | 1795 o.add(buildReadGroup()); |
1796 return o; | 1796 return o; |
1797 } | 1797 } |
1798 | 1798 |
1799 checkUnnamed1545(core.List<api.ReadGroup> o) { | 1799 checkUnnamed2418(core.List<api.ReadGroup> o) { |
1800 unittest.expect(o, unittest.hasLength(2)); | 1800 unittest.expect(o, unittest.hasLength(2)); |
1801 checkReadGroup(o[0]); | 1801 checkReadGroup(o[0]); |
1802 checkReadGroup(o[1]); | 1802 checkReadGroup(o[1]); |
1803 } | 1803 } |
1804 | 1804 |
1805 core.int buildCounterReadGroupSet = 0; | 1805 core.int buildCounterReadGroupSet = 0; |
1806 buildReadGroupSet() { | 1806 buildReadGroupSet() { |
1807 var o = new api.ReadGroupSet(); | 1807 var o = new api.ReadGroupSet(); |
1808 buildCounterReadGroupSet++; | 1808 buildCounterReadGroupSet++; |
1809 if (buildCounterReadGroupSet < 3) { | 1809 if (buildCounterReadGroupSet < 3) { |
1810 o.datasetId = "foo"; | 1810 o.datasetId = "foo"; |
1811 o.filename = "foo"; | 1811 o.filename = "foo"; |
1812 o.id = "foo"; | 1812 o.id = "foo"; |
1813 o.info = buildUnnamed1544(); | 1813 o.info = buildUnnamed2417(); |
1814 o.name = "foo"; | 1814 o.name = "foo"; |
1815 o.readGroups = buildUnnamed1545(); | 1815 o.readGroups = buildUnnamed2418(); |
1816 o.referenceSetId = "foo"; | 1816 o.referenceSetId = "foo"; |
1817 } | 1817 } |
1818 buildCounterReadGroupSet--; | 1818 buildCounterReadGroupSet--; |
1819 return o; | 1819 return o; |
1820 } | 1820 } |
1821 | 1821 |
1822 checkReadGroupSet(api.ReadGroupSet o) { | 1822 checkReadGroupSet(api.ReadGroupSet o) { |
1823 buildCounterReadGroupSet++; | 1823 buildCounterReadGroupSet++; |
1824 if (buildCounterReadGroupSet < 3) { | 1824 if (buildCounterReadGroupSet < 3) { |
1825 unittest.expect(o.datasetId, unittest.equals('foo')); | 1825 unittest.expect(o.datasetId, unittest.equals('foo')); |
1826 unittest.expect(o.filename, unittest.equals('foo')); | 1826 unittest.expect(o.filename, unittest.equals('foo')); |
1827 unittest.expect(o.id, unittest.equals('foo')); | 1827 unittest.expect(o.id, unittest.equals('foo')); |
1828 checkUnnamed1544(o.info); | 1828 checkUnnamed2417(o.info); |
1829 unittest.expect(o.name, unittest.equals('foo')); | 1829 unittest.expect(o.name, unittest.equals('foo')); |
1830 checkUnnamed1545(o.readGroups); | 1830 checkUnnamed2418(o.readGroups); |
1831 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1831 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
1832 } | 1832 } |
1833 buildCounterReadGroupSet--; | 1833 buildCounterReadGroupSet--; |
1834 } | 1834 } |
1835 | 1835 |
1836 buildUnnamed1546() { | 1836 buildUnnamed2419() { |
1837 var o = new core.List<core.String>(); | 1837 var o = new core.List<core.String>(); |
1838 o.add("foo"); | 1838 o.add("foo"); |
1839 o.add("foo"); | 1839 o.add("foo"); |
1840 return o; | 1840 return o; |
1841 } | 1841 } |
1842 | 1842 |
1843 checkUnnamed1546(core.List<core.String> o) { | 1843 checkUnnamed2419(core.List<core.String> o) { |
1844 unittest.expect(o, unittest.hasLength(2)); | 1844 unittest.expect(o, unittest.hasLength(2)); |
1845 unittest.expect(o[0], unittest.equals('foo')); | 1845 unittest.expect(o[0], unittest.equals('foo')); |
1846 unittest.expect(o[1], unittest.equals('foo')); | 1846 unittest.expect(o[1], unittest.equals('foo')); |
1847 } | 1847 } |
1848 | 1848 |
1849 core.int buildCounterReference = 0; | 1849 core.int buildCounterReference = 0; |
1850 buildReference() { | 1850 buildReference() { |
1851 var o = new api.Reference(); | 1851 var o = new api.Reference(); |
1852 buildCounterReference++; | 1852 buildCounterReference++; |
1853 if (buildCounterReference < 3) { | 1853 if (buildCounterReference < 3) { |
1854 o.id = "foo"; | 1854 o.id = "foo"; |
1855 o.length = "foo"; | 1855 o.length = "foo"; |
1856 o.md5checksum = "foo"; | 1856 o.md5checksum = "foo"; |
1857 o.name = "foo"; | 1857 o.name = "foo"; |
1858 o.ncbiTaxonId = 42; | 1858 o.ncbiTaxonId = 42; |
1859 o.sourceAccessions = buildUnnamed1546(); | 1859 o.sourceAccessions = buildUnnamed2419(); |
1860 o.sourceURI = "foo"; | 1860 o.sourceURI = "foo"; |
1861 } | 1861 } |
1862 buildCounterReference--; | 1862 buildCounterReference--; |
1863 return o; | 1863 return o; |
1864 } | 1864 } |
1865 | 1865 |
1866 checkReference(api.Reference o) { | 1866 checkReference(api.Reference o) { |
1867 buildCounterReference++; | 1867 buildCounterReference++; |
1868 if (buildCounterReference < 3) { | 1868 if (buildCounterReference < 3) { |
1869 unittest.expect(o.id, unittest.equals('foo')); | 1869 unittest.expect(o.id, unittest.equals('foo')); |
1870 unittest.expect(o.length, unittest.equals('foo')); | 1870 unittest.expect(o.length, unittest.equals('foo')); |
1871 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1871 unittest.expect(o.md5checksum, unittest.equals('foo')); |
1872 unittest.expect(o.name, unittest.equals('foo')); | 1872 unittest.expect(o.name, unittest.equals('foo')); |
1873 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1873 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
1874 checkUnnamed1546(o.sourceAccessions); | 1874 checkUnnamed2419(o.sourceAccessions); |
1875 unittest.expect(o.sourceURI, unittest.equals('foo')); | 1875 unittest.expect(o.sourceURI, unittest.equals('foo')); |
1876 } | 1876 } |
1877 buildCounterReference--; | 1877 buildCounterReference--; |
1878 } | 1878 } |
1879 | 1879 |
1880 core.int buildCounterReferenceBound = 0; | 1880 core.int buildCounterReferenceBound = 0; |
1881 buildReferenceBound() { | 1881 buildReferenceBound() { |
1882 var o = new api.ReferenceBound(); | 1882 var o = new api.ReferenceBound(); |
1883 buildCounterReferenceBound++; | 1883 buildCounterReferenceBound++; |
1884 if (buildCounterReferenceBound < 3) { | 1884 if (buildCounterReferenceBound < 3) { |
1885 o.referenceName = "foo"; | 1885 o.referenceName = "foo"; |
1886 o.upperBound = "foo"; | 1886 o.upperBound = "foo"; |
1887 } | 1887 } |
1888 buildCounterReferenceBound--; | 1888 buildCounterReferenceBound--; |
1889 return o; | 1889 return o; |
1890 } | 1890 } |
1891 | 1891 |
1892 checkReferenceBound(api.ReferenceBound o) { | 1892 checkReferenceBound(api.ReferenceBound o) { |
1893 buildCounterReferenceBound++; | 1893 buildCounterReferenceBound++; |
1894 if (buildCounterReferenceBound < 3) { | 1894 if (buildCounterReferenceBound < 3) { |
1895 unittest.expect(o.referenceName, unittest.equals('foo')); | 1895 unittest.expect(o.referenceName, unittest.equals('foo')); |
1896 unittest.expect(o.upperBound, unittest.equals('foo')); | 1896 unittest.expect(o.upperBound, unittest.equals('foo')); |
1897 } | 1897 } |
1898 buildCounterReferenceBound--; | 1898 buildCounterReferenceBound--; |
1899 } | 1899 } |
1900 | 1900 |
1901 buildUnnamed1547() { | 1901 buildUnnamed2420() { |
1902 var o = new core.List<core.String>(); | 1902 var o = new core.List<core.String>(); |
1903 o.add("foo"); | 1903 o.add("foo"); |
1904 o.add("foo"); | 1904 o.add("foo"); |
1905 return o; | 1905 return o; |
1906 } | 1906 } |
1907 | 1907 |
1908 checkUnnamed1547(core.List<core.String> o) { | 1908 checkUnnamed2420(core.List<core.String> o) { |
1909 unittest.expect(o, unittest.hasLength(2)); | 1909 unittest.expect(o, unittest.hasLength(2)); |
1910 unittest.expect(o[0], unittest.equals('foo')); | 1910 unittest.expect(o[0], unittest.equals('foo')); |
1911 unittest.expect(o[1], unittest.equals('foo')); | 1911 unittest.expect(o[1], unittest.equals('foo')); |
1912 } | 1912 } |
1913 | 1913 |
1914 buildUnnamed1548() { | 1914 buildUnnamed2421() { |
1915 var o = new core.List<core.String>(); | 1915 var o = new core.List<core.String>(); |
1916 o.add("foo"); | 1916 o.add("foo"); |
1917 o.add("foo"); | 1917 o.add("foo"); |
1918 return o; | 1918 return o; |
1919 } | 1919 } |
1920 | 1920 |
1921 checkUnnamed1548(core.List<core.String> o) { | 1921 checkUnnamed2421(core.List<core.String> o) { |
1922 unittest.expect(o, unittest.hasLength(2)); | 1922 unittest.expect(o, unittest.hasLength(2)); |
1923 unittest.expect(o[0], unittest.equals('foo')); | 1923 unittest.expect(o[0], unittest.equals('foo')); |
1924 unittest.expect(o[1], unittest.equals('foo')); | 1924 unittest.expect(o[1], unittest.equals('foo')); |
1925 } | 1925 } |
1926 | 1926 |
1927 core.int buildCounterReferenceSet = 0; | 1927 core.int buildCounterReferenceSet = 0; |
1928 buildReferenceSet() { | 1928 buildReferenceSet() { |
1929 var o = new api.ReferenceSet(); | 1929 var o = new api.ReferenceSet(); |
1930 buildCounterReferenceSet++; | 1930 buildCounterReferenceSet++; |
1931 if (buildCounterReferenceSet < 3) { | 1931 if (buildCounterReferenceSet < 3) { |
1932 o.assemblyId = "foo"; | 1932 o.assemblyId = "foo"; |
1933 o.description = "foo"; | 1933 o.description = "foo"; |
1934 o.id = "foo"; | 1934 o.id = "foo"; |
1935 o.md5checksum = "foo"; | 1935 o.md5checksum = "foo"; |
1936 o.ncbiTaxonId = 42; | 1936 o.ncbiTaxonId = 42; |
1937 o.referenceIds = buildUnnamed1547(); | 1937 o.referenceIds = buildUnnamed2420(); |
1938 o.sourceAccessions = buildUnnamed1548(); | 1938 o.sourceAccessions = buildUnnamed2421(); |
1939 o.sourceURI = "foo"; | 1939 o.sourceURI = "foo"; |
1940 } | 1940 } |
1941 buildCounterReferenceSet--; | 1941 buildCounterReferenceSet--; |
1942 return o; | 1942 return o; |
1943 } | 1943 } |
1944 | 1944 |
1945 checkReferenceSet(api.ReferenceSet o) { | 1945 checkReferenceSet(api.ReferenceSet o) { |
1946 buildCounterReferenceSet++; | 1946 buildCounterReferenceSet++; |
1947 if (buildCounterReferenceSet < 3) { | 1947 if (buildCounterReferenceSet < 3) { |
1948 unittest.expect(o.assemblyId, unittest.equals('foo')); | 1948 unittest.expect(o.assemblyId, unittest.equals('foo')); |
1949 unittest.expect(o.description, unittest.equals('foo')); | 1949 unittest.expect(o.description, unittest.equals('foo')); |
1950 unittest.expect(o.id, unittest.equals('foo')); | 1950 unittest.expect(o.id, unittest.equals('foo')); |
1951 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1951 unittest.expect(o.md5checksum, unittest.equals('foo')); |
1952 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1952 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
1953 checkUnnamed1547(o.referenceIds); | 1953 checkUnnamed2420(o.referenceIds); |
1954 checkUnnamed1548(o.sourceAccessions); | 1954 checkUnnamed2421(o.sourceAccessions); |
1955 unittest.expect(o.sourceURI, unittest.equals('foo')); | 1955 unittest.expect(o.sourceURI, unittest.equals('foo')); |
1956 } | 1956 } |
1957 buildCounterReferenceSet--; | 1957 buildCounterReferenceSet--; |
1958 } | 1958 } |
1959 | 1959 |
1960 buildUnnamed1549() { | 1960 buildUnnamed2422() { |
1961 var o = new core.List<core.String>(); | 1961 var o = new core.List<core.String>(); |
1962 o.add("foo"); | 1962 o.add("foo"); |
1963 o.add("foo"); | 1963 o.add("foo"); |
1964 return o; | 1964 return o; |
1965 } | 1965 } |
1966 | 1966 |
1967 checkUnnamed1549(core.List<core.String> o) { | 1967 checkUnnamed2422(core.List<core.String> o) { |
1968 unittest.expect(o, unittest.hasLength(2)); | 1968 unittest.expect(o, unittest.hasLength(2)); |
1969 unittest.expect(o[0], unittest.equals('foo')); | 1969 unittest.expect(o[0], unittest.equals('foo')); |
1970 unittest.expect(o[1], unittest.equals('foo')); | 1970 unittest.expect(o[1], unittest.equals('foo')); |
1971 } | 1971 } |
1972 | 1972 |
1973 buildUnnamed1550() { | 1973 buildUnnamed2423() { |
1974 var o = new core.List<core.String>(); | 1974 var o = new core.List<core.String>(); |
1975 o.add("foo"); | 1975 o.add("foo"); |
1976 o.add("foo"); | 1976 o.add("foo"); |
1977 return o; | 1977 return o; |
1978 } | 1978 } |
1979 | 1979 |
1980 checkUnnamed1550(core.List<core.String> o) { | 1980 checkUnnamed2423(core.List<core.String> o) { |
1981 unittest.expect(o, unittest.hasLength(2)); | 1981 unittest.expect(o, unittest.hasLength(2)); |
1982 unittest.expect(o[0], unittest.equals('foo')); | 1982 unittest.expect(o[0], unittest.equals('foo')); |
1983 unittest.expect(o[1], unittest.equals('foo')); | 1983 unittest.expect(o[1], unittest.equals('foo')); |
1984 } | 1984 } |
1985 | 1985 |
1986 core.int buildCounterSearchAnnotationSetsRequest = 0; | 1986 core.int buildCounterSearchAnnotationSetsRequest = 0; |
1987 buildSearchAnnotationSetsRequest() { | 1987 buildSearchAnnotationSetsRequest() { |
1988 var o = new api.SearchAnnotationSetsRequest(); | 1988 var o = new api.SearchAnnotationSetsRequest(); |
1989 buildCounterSearchAnnotationSetsRequest++; | 1989 buildCounterSearchAnnotationSetsRequest++; |
1990 if (buildCounterSearchAnnotationSetsRequest < 3) { | 1990 if (buildCounterSearchAnnotationSetsRequest < 3) { |
1991 o.datasetIds = buildUnnamed1549(); | 1991 o.datasetIds = buildUnnamed2422(); |
1992 o.name = "foo"; | 1992 o.name = "foo"; |
1993 o.pageSize = 42; | 1993 o.pageSize = 42; |
1994 o.pageToken = "foo"; | 1994 o.pageToken = "foo"; |
1995 o.referenceSetId = "foo"; | 1995 o.referenceSetId = "foo"; |
1996 o.types = buildUnnamed1550(); | 1996 o.types = buildUnnamed2423(); |
1997 } | 1997 } |
1998 buildCounterSearchAnnotationSetsRequest--; | 1998 buildCounterSearchAnnotationSetsRequest--; |
1999 return o; | 1999 return o; |
2000 } | 2000 } |
2001 | 2001 |
2002 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { | 2002 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { |
2003 buildCounterSearchAnnotationSetsRequest++; | 2003 buildCounterSearchAnnotationSetsRequest++; |
2004 if (buildCounterSearchAnnotationSetsRequest < 3) { | 2004 if (buildCounterSearchAnnotationSetsRequest < 3) { |
2005 checkUnnamed1549(o.datasetIds); | 2005 checkUnnamed2422(o.datasetIds); |
2006 unittest.expect(o.name, unittest.equals('foo')); | 2006 unittest.expect(o.name, unittest.equals('foo')); |
2007 unittest.expect(o.pageSize, unittest.equals(42)); | 2007 unittest.expect(o.pageSize, unittest.equals(42)); |
2008 unittest.expect(o.pageToken, unittest.equals('foo')); | 2008 unittest.expect(o.pageToken, unittest.equals('foo')); |
2009 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 2009 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
2010 checkUnnamed1550(o.types); | 2010 checkUnnamed2423(o.types); |
2011 } | 2011 } |
2012 buildCounterSearchAnnotationSetsRequest--; | 2012 buildCounterSearchAnnotationSetsRequest--; |
2013 } | 2013 } |
2014 | 2014 |
2015 buildUnnamed1551() { | 2015 buildUnnamed2424() { |
2016 var o = new core.List<api.AnnotationSet>(); | 2016 var o = new core.List<api.AnnotationSet>(); |
2017 o.add(buildAnnotationSet()); | 2017 o.add(buildAnnotationSet()); |
2018 o.add(buildAnnotationSet()); | 2018 o.add(buildAnnotationSet()); |
2019 return o; | 2019 return o; |
2020 } | 2020 } |
2021 | 2021 |
2022 checkUnnamed1551(core.List<api.AnnotationSet> o) { | 2022 checkUnnamed2424(core.List<api.AnnotationSet> o) { |
2023 unittest.expect(o, unittest.hasLength(2)); | 2023 unittest.expect(o, unittest.hasLength(2)); |
2024 checkAnnotationSet(o[0]); | 2024 checkAnnotationSet(o[0]); |
2025 checkAnnotationSet(o[1]); | 2025 checkAnnotationSet(o[1]); |
2026 } | 2026 } |
2027 | 2027 |
2028 core.int buildCounterSearchAnnotationSetsResponse = 0; | 2028 core.int buildCounterSearchAnnotationSetsResponse = 0; |
2029 buildSearchAnnotationSetsResponse() { | 2029 buildSearchAnnotationSetsResponse() { |
2030 var o = new api.SearchAnnotationSetsResponse(); | 2030 var o = new api.SearchAnnotationSetsResponse(); |
2031 buildCounterSearchAnnotationSetsResponse++; | 2031 buildCounterSearchAnnotationSetsResponse++; |
2032 if (buildCounterSearchAnnotationSetsResponse < 3) { | 2032 if (buildCounterSearchAnnotationSetsResponse < 3) { |
2033 o.annotationSets = buildUnnamed1551(); | 2033 o.annotationSets = buildUnnamed2424(); |
2034 o.nextPageToken = "foo"; | 2034 o.nextPageToken = "foo"; |
2035 } | 2035 } |
2036 buildCounterSearchAnnotationSetsResponse--; | 2036 buildCounterSearchAnnotationSetsResponse--; |
2037 return o; | 2037 return o; |
2038 } | 2038 } |
2039 | 2039 |
2040 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { | 2040 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { |
2041 buildCounterSearchAnnotationSetsResponse++; | 2041 buildCounterSearchAnnotationSetsResponse++; |
2042 if (buildCounterSearchAnnotationSetsResponse < 3) { | 2042 if (buildCounterSearchAnnotationSetsResponse < 3) { |
2043 checkUnnamed1551(o.annotationSets); | 2043 checkUnnamed2424(o.annotationSets); |
2044 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2044 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2045 } | 2045 } |
2046 buildCounterSearchAnnotationSetsResponse--; | 2046 buildCounterSearchAnnotationSetsResponse--; |
2047 } | 2047 } |
2048 | 2048 |
2049 buildUnnamed1552() { | 2049 buildUnnamed2425() { |
2050 var o = new core.List<core.String>(); | 2050 var o = new core.List<core.String>(); |
2051 o.add("foo"); | 2051 o.add("foo"); |
2052 o.add("foo"); | 2052 o.add("foo"); |
2053 return o; | 2053 return o; |
2054 } | 2054 } |
2055 | 2055 |
2056 checkUnnamed1552(core.List<core.String> o) { | 2056 checkUnnamed2425(core.List<core.String> o) { |
2057 unittest.expect(o, unittest.hasLength(2)); | 2057 unittest.expect(o, unittest.hasLength(2)); |
2058 unittest.expect(o[0], unittest.equals('foo')); | 2058 unittest.expect(o[0], unittest.equals('foo')); |
2059 unittest.expect(o[1], unittest.equals('foo')); | 2059 unittest.expect(o[1], unittest.equals('foo')); |
2060 } | 2060 } |
2061 | 2061 |
2062 core.int buildCounterSearchAnnotationsRequest = 0; | 2062 core.int buildCounterSearchAnnotationsRequest = 0; |
2063 buildSearchAnnotationsRequest() { | 2063 buildSearchAnnotationsRequest() { |
2064 var o = new api.SearchAnnotationsRequest(); | 2064 var o = new api.SearchAnnotationsRequest(); |
2065 buildCounterSearchAnnotationsRequest++; | 2065 buildCounterSearchAnnotationsRequest++; |
2066 if (buildCounterSearchAnnotationsRequest < 3) { | 2066 if (buildCounterSearchAnnotationsRequest < 3) { |
2067 o.annotationSetIds = buildUnnamed1552(); | 2067 o.annotationSetIds = buildUnnamed2425(); |
2068 o.pageSize = 42; | 2068 o.pageSize = 42; |
2069 o.pageToken = "foo"; | 2069 o.pageToken = "foo"; |
2070 o.range = buildQueryRange(); | 2070 o.range = buildQueryRange(); |
2071 } | 2071 } |
2072 buildCounterSearchAnnotationsRequest--; | 2072 buildCounterSearchAnnotationsRequest--; |
2073 return o; | 2073 return o; |
2074 } | 2074 } |
2075 | 2075 |
2076 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { | 2076 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { |
2077 buildCounterSearchAnnotationsRequest++; | 2077 buildCounterSearchAnnotationsRequest++; |
2078 if (buildCounterSearchAnnotationsRequest < 3) { | 2078 if (buildCounterSearchAnnotationsRequest < 3) { |
2079 checkUnnamed1552(o.annotationSetIds); | 2079 checkUnnamed2425(o.annotationSetIds); |
2080 unittest.expect(o.pageSize, unittest.equals(42)); | 2080 unittest.expect(o.pageSize, unittest.equals(42)); |
2081 unittest.expect(o.pageToken, unittest.equals('foo')); | 2081 unittest.expect(o.pageToken, unittest.equals('foo')); |
2082 checkQueryRange(o.range); | 2082 checkQueryRange(o.range); |
2083 } | 2083 } |
2084 buildCounterSearchAnnotationsRequest--; | 2084 buildCounterSearchAnnotationsRequest--; |
2085 } | 2085 } |
2086 | 2086 |
2087 buildUnnamed1553() { | 2087 buildUnnamed2426() { |
2088 var o = new core.List<api.Annotation>(); | 2088 var o = new core.List<api.Annotation>(); |
2089 o.add(buildAnnotation()); | 2089 o.add(buildAnnotation()); |
2090 o.add(buildAnnotation()); | 2090 o.add(buildAnnotation()); |
2091 return o; | 2091 return o; |
2092 } | 2092 } |
2093 | 2093 |
2094 checkUnnamed1553(core.List<api.Annotation> o) { | 2094 checkUnnamed2426(core.List<api.Annotation> o) { |
2095 unittest.expect(o, unittest.hasLength(2)); | 2095 unittest.expect(o, unittest.hasLength(2)); |
2096 checkAnnotation(o[0]); | 2096 checkAnnotation(o[0]); |
2097 checkAnnotation(o[1]); | 2097 checkAnnotation(o[1]); |
2098 } | 2098 } |
2099 | 2099 |
2100 core.int buildCounterSearchAnnotationsResponse = 0; | 2100 core.int buildCounterSearchAnnotationsResponse = 0; |
2101 buildSearchAnnotationsResponse() { | 2101 buildSearchAnnotationsResponse() { |
2102 var o = new api.SearchAnnotationsResponse(); | 2102 var o = new api.SearchAnnotationsResponse(); |
2103 buildCounterSearchAnnotationsResponse++; | 2103 buildCounterSearchAnnotationsResponse++; |
2104 if (buildCounterSearchAnnotationsResponse < 3) { | 2104 if (buildCounterSearchAnnotationsResponse < 3) { |
2105 o.annotations = buildUnnamed1553(); | 2105 o.annotations = buildUnnamed2426(); |
2106 o.nextPageToken = "foo"; | 2106 o.nextPageToken = "foo"; |
2107 } | 2107 } |
2108 buildCounterSearchAnnotationsResponse--; | 2108 buildCounterSearchAnnotationsResponse--; |
2109 return o; | 2109 return o; |
2110 } | 2110 } |
2111 | 2111 |
2112 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { | 2112 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { |
2113 buildCounterSearchAnnotationsResponse++; | 2113 buildCounterSearchAnnotationsResponse++; |
2114 if (buildCounterSearchAnnotationsResponse < 3) { | 2114 if (buildCounterSearchAnnotationsResponse < 3) { |
2115 checkUnnamed1553(o.annotations); | 2115 checkUnnamed2426(o.annotations); |
2116 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2116 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2117 } | 2117 } |
2118 buildCounterSearchAnnotationsResponse--; | 2118 buildCounterSearchAnnotationsResponse--; |
2119 } | 2119 } |
2120 | 2120 |
2121 buildUnnamed1554() { | 2121 buildUnnamed2427() { |
2122 var o = new core.List<core.String>(); | 2122 var o = new core.List<core.String>(); |
2123 o.add("foo"); | 2123 o.add("foo"); |
2124 o.add("foo"); | 2124 o.add("foo"); |
2125 return o; | 2125 return o; |
2126 } | 2126 } |
2127 | 2127 |
2128 checkUnnamed1554(core.List<core.String> o) { | 2128 checkUnnamed2427(core.List<core.String> o) { |
2129 unittest.expect(o, unittest.hasLength(2)); | 2129 unittest.expect(o, unittest.hasLength(2)); |
2130 unittest.expect(o[0], unittest.equals('foo')); | 2130 unittest.expect(o[0], unittest.equals('foo')); |
2131 unittest.expect(o[1], unittest.equals('foo')); | 2131 unittest.expect(o[1], unittest.equals('foo')); |
2132 } | 2132 } |
2133 | 2133 |
2134 core.int buildCounterSearchCallSetsRequest = 0; | 2134 core.int buildCounterSearchCallSetsRequest = 0; |
2135 buildSearchCallSetsRequest() { | 2135 buildSearchCallSetsRequest() { |
2136 var o = new api.SearchCallSetsRequest(); | 2136 var o = new api.SearchCallSetsRequest(); |
2137 buildCounterSearchCallSetsRequest++; | 2137 buildCounterSearchCallSetsRequest++; |
2138 if (buildCounterSearchCallSetsRequest < 3) { | 2138 if (buildCounterSearchCallSetsRequest < 3) { |
2139 o.name = "foo"; | 2139 o.name = "foo"; |
2140 o.pageSize = 42; | 2140 o.pageSize = 42; |
2141 o.pageToken = "foo"; | 2141 o.pageToken = "foo"; |
2142 o.variantSetIds = buildUnnamed1554(); | 2142 o.variantSetIds = buildUnnamed2427(); |
2143 } | 2143 } |
2144 buildCounterSearchCallSetsRequest--; | 2144 buildCounterSearchCallSetsRequest--; |
2145 return o; | 2145 return o; |
2146 } | 2146 } |
2147 | 2147 |
2148 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { | 2148 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { |
2149 buildCounterSearchCallSetsRequest++; | 2149 buildCounterSearchCallSetsRequest++; |
2150 if (buildCounterSearchCallSetsRequest < 3) { | 2150 if (buildCounterSearchCallSetsRequest < 3) { |
2151 unittest.expect(o.name, unittest.equals('foo')); | 2151 unittest.expect(o.name, unittest.equals('foo')); |
2152 unittest.expect(o.pageSize, unittest.equals(42)); | 2152 unittest.expect(o.pageSize, unittest.equals(42)); |
2153 unittest.expect(o.pageToken, unittest.equals('foo')); | 2153 unittest.expect(o.pageToken, unittest.equals('foo')); |
2154 checkUnnamed1554(o.variantSetIds); | 2154 checkUnnamed2427(o.variantSetIds); |
2155 } | 2155 } |
2156 buildCounterSearchCallSetsRequest--; | 2156 buildCounterSearchCallSetsRequest--; |
2157 } | 2157 } |
2158 | 2158 |
2159 buildUnnamed1555() { | 2159 buildUnnamed2428() { |
2160 var o = new core.List<api.CallSet>(); | 2160 var o = new core.List<api.CallSet>(); |
2161 o.add(buildCallSet()); | 2161 o.add(buildCallSet()); |
2162 o.add(buildCallSet()); | 2162 o.add(buildCallSet()); |
2163 return o; | 2163 return o; |
2164 } | 2164 } |
2165 | 2165 |
2166 checkUnnamed1555(core.List<api.CallSet> o) { | 2166 checkUnnamed2428(core.List<api.CallSet> o) { |
2167 unittest.expect(o, unittest.hasLength(2)); | 2167 unittest.expect(o, unittest.hasLength(2)); |
2168 checkCallSet(o[0]); | 2168 checkCallSet(o[0]); |
2169 checkCallSet(o[1]); | 2169 checkCallSet(o[1]); |
2170 } | 2170 } |
2171 | 2171 |
2172 core.int buildCounterSearchCallSetsResponse = 0; | 2172 core.int buildCounterSearchCallSetsResponse = 0; |
2173 buildSearchCallSetsResponse() { | 2173 buildSearchCallSetsResponse() { |
2174 var o = new api.SearchCallSetsResponse(); | 2174 var o = new api.SearchCallSetsResponse(); |
2175 buildCounterSearchCallSetsResponse++; | 2175 buildCounterSearchCallSetsResponse++; |
2176 if (buildCounterSearchCallSetsResponse < 3) { | 2176 if (buildCounterSearchCallSetsResponse < 3) { |
2177 o.callSets = buildUnnamed1555(); | 2177 o.callSets = buildUnnamed2428(); |
2178 o.nextPageToken = "foo"; | 2178 o.nextPageToken = "foo"; |
2179 } | 2179 } |
2180 buildCounterSearchCallSetsResponse--; | 2180 buildCounterSearchCallSetsResponse--; |
2181 return o; | 2181 return o; |
2182 } | 2182 } |
2183 | 2183 |
2184 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { | 2184 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { |
2185 buildCounterSearchCallSetsResponse++; | 2185 buildCounterSearchCallSetsResponse++; |
2186 if (buildCounterSearchCallSetsResponse < 3) { | 2186 if (buildCounterSearchCallSetsResponse < 3) { |
2187 checkUnnamed1555(o.callSets); | 2187 checkUnnamed2428(o.callSets); |
2188 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2188 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2189 } | 2189 } |
2190 buildCounterSearchCallSetsResponse--; | 2190 buildCounterSearchCallSetsResponse--; |
2191 } | 2191 } |
2192 | 2192 |
2193 buildUnnamed1556() { | 2193 buildUnnamed2429() { |
2194 var o = new core.List<core.String>(); | 2194 var o = new core.List<core.String>(); |
2195 o.add("foo"); | 2195 o.add("foo"); |
2196 o.add("foo"); | 2196 o.add("foo"); |
2197 return o; | 2197 return o; |
2198 } | 2198 } |
2199 | 2199 |
2200 checkUnnamed1556(core.List<core.String> o) { | 2200 checkUnnamed2429(core.List<core.String> o) { |
2201 unittest.expect(o, unittest.hasLength(2)); | 2201 unittest.expect(o, unittest.hasLength(2)); |
2202 unittest.expect(o[0], unittest.equals('foo')); | 2202 unittest.expect(o[0], unittest.equals('foo')); |
2203 unittest.expect(o[1], unittest.equals('foo')); | 2203 unittest.expect(o[1], unittest.equals('foo')); |
2204 } | 2204 } |
2205 | 2205 |
2206 core.int buildCounterSearchJobsRequest = 0; | 2206 core.int buildCounterSearchJobsRequest = 0; |
2207 buildSearchJobsRequest() { | 2207 buildSearchJobsRequest() { |
2208 var o = new api.SearchJobsRequest(); | 2208 var o = new api.SearchJobsRequest(); |
2209 buildCounterSearchJobsRequest++; | 2209 buildCounterSearchJobsRequest++; |
2210 if (buildCounterSearchJobsRequest < 3) { | 2210 if (buildCounterSearchJobsRequest < 3) { |
2211 o.createdAfter = "foo"; | 2211 o.createdAfter = "foo"; |
2212 o.createdBefore = "foo"; | 2212 o.createdBefore = "foo"; |
2213 o.pageSize = 42; | 2213 o.pageSize = 42; |
2214 o.pageToken = "foo"; | 2214 o.pageToken = "foo"; |
2215 o.projectNumber = "foo"; | 2215 o.projectNumber = "foo"; |
2216 o.status = buildUnnamed1556(); | 2216 o.status = buildUnnamed2429(); |
2217 } | 2217 } |
2218 buildCounterSearchJobsRequest--; | 2218 buildCounterSearchJobsRequest--; |
2219 return o; | 2219 return o; |
2220 } | 2220 } |
2221 | 2221 |
2222 checkSearchJobsRequest(api.SearchJobsRequest o) { | 2222 checkSearchJobsRequest(api.SearchJobsRequest o) { |
2223 buildCounterSearchJobsRequest++; | 2223 buildCounterSearchJobsRequest++; |
2224 if (buildCounterSearchJobsRequest < 3) { | 2224 if (buildCounterSearchJobsRequest < 3) { |
2225 unittest.expect(o.createdAfter, unittest.equals('foo')); | 2225 unittest.expect(o.createdAfter, unittest.equals('foo')); |
2226 unittest.expect(o.createdBefore, unittest.equals('foo')); | 2226 unittest.expect(o.createdBefore, unittest.equals('foo')); |
2227 unittest.expect(o.pageSize, unittest.equals(42)); | 2227 unittest.expect(o.pageSize, unittest.equals(42)); |
2228 unittest.expect(o.pageToken, unittest.equals('foo')); | 2228 unittest.expect(o.pageToken, unittest.equals('foo')); |
2229 unittest.expect(o.projectNumber, unittest.equals('foo')); | 2229 unittest.expect(o.projectNumber, unittest.equals('foo')); |
2230 checkUnnamed1556(o.status); | 2230 checkUnnamed2429(o.status); |
2231 } | 2231 } |
2232 buildCounterSearchJobsRequest--; | 2232 buildCounterSearchJobsRequest--; |
2233 } | 2233 } |
2234 | 2234 |
2235 buildUnnamed1557() { | 2235 buildUnnamed2430() { |
2236 var o = new core.List<api.Job>(); | 2236 var o = new core.List<api.Job>(); |
2237 o.add(buildJob()); | 2237 o.add(buildJob()); |
2238 o.add(buildJob()); | 2238 o.add(buildJob()); |
2239 return o; | 2239 return o; |
2240 } | 2240 } |
2241 | 2241 |
2242 checkUnnamed1557(core.List<api.Job> o) { | 2242 checkUnnamed2430(core.List<api.Job> o) { |
2243 unittest.expect(o, unittest.hasLength(2)); | 2243 unittest.expect(o, unittest.hasLength(2)); |
2244 checkJob(o[0]); | 2244 checkJob(o[0]); |
2245 checkJob(o[1]); | 2245 checkJob(o[1]); |
2246 } | 2246 } |
2247 | 2247 |
2248 core.int buildCounterSearchJobsResponse = 0; | 2248 core.int buildCounterSearchJobsResponse = 0; |
2249 buildSearchJobsResponse() { | 2249 buildSearchJobsResponse() { |
2250 var o = new api.SearchJobsResponse(); | 2250 var o = new api.SearchJobsResponse(); |
2251 buildCounterSearchJobsResponse++; | 2251 buildCounterSearchJobsResponse++; |
2252 if (buildCounterSearchJobsResponse < 3) { | 2252 if (buildCounterSearchJobsResponse < 3) { |
2253 o.jobs = buildUnnamed1557(); | 2253 o.jobs = buildUnnamed2430(); |
2254 o.nextPageToken = "foo"; | 2254 o.nextPageToken = "foo"; |
2255 } | 2255 } |
2256 buildCounterSearchJobsResponse--; | 2256 buildCounterSearchJobsResponse--; |
2257 return o; | 2257 return o; |
2258 } | 2258 } |
2259 | 2259 |
2260 checkSearchJobsResponse(api.SearchJobsResponse o) { | 2260 checkSearchJobsResponse(api.SearchJobsResponse o) { |
2261 buildCounterSearchJobsResponse++; | 2261 buildCounterSearchJobsResponse++; |
2262 if (buildCounterSearchJobsResponse < 3) { | 2262 if (buildCounterSearchJobsResponse < 3) { |
2263 checkUnnamed1557(o.jobs); | 2263 checkUnnamed2430(o.jobs); |
2264 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2264 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2265 } | 2265 } |
2266 buildCounterSearchJobsResponse--; | 2266 buildCounterSearchJobsResponse--; |
2267 } | 2267 } |
2268 | 2268 |
2269 buildUnnamed1558() { | 2269 buildUnnamed2431() { |
2270 var o = new core.List<core.String>(); | 2270 var o = new core.List<core.String>(); |
2271 o.add("foo"); | 2271 o.add("foo"); |
2272 o.add("foo"); | 2272 o.add("foo"); |
2273 return o; | 2273 return o; |
2274 } | 2274 } |
2275 | 2275 |
2276 checkUnnamed1558(core.List<core.String> o) { | 2276 checkUnnamed2431(core.List<core.String> o) { |
2277 unittest.expect(o, unittest.hasLength(2)); | 2277 unittest.expect(o, unittest.hasLength(2)); |
2278 unittest.expect(o[0], unittest.equals('foo')); | 2278 unittest.expect(o[0], unittest.equals('foo')); |
2279 unittest.expect(o[1], unittest.equals('foo')); | 2279 unittest.expect(o[1], unittest.equals('foo')); |
2280 } | 2280 } |
2281 | 2281 |
2282 core.int buildCounterSearchReadGroupSetsRequest = 0; | 2282 core.int buildCounterSearchReadGroupSetsRequest = 0; |
2283 buildSearchReadGroupSetsRequest() { | 2283 buildSearchReadGroupSetsRequest() { |
2284 var o = new api.SearchReadGroupSetsRequest(); | 2284 var o = new api.SearchReadGroupSetsRequest(); |
2285 buildCounterSearchReadGroupSetsRequest++; | 2285 buildCounterSearchReadGroupSetsRequest++; |
2286 if (buildCounterSearchReadGroupSetsRequest < 3) { | 2286 if (buildCounterSearchReadGroupSetsRequest < 3) { |
2287 o.datasetIds = buildUnnamed1558(); | 2287 o.datasetIds = buildUnnamed2431(); |
2288 o.name = "foo"; | 2288 o.name = "foo"; |
2289 o.pageSize = 42; | 2289 o.pageSize = 42; |
2290 o.pageToken = "foo"; | 2290 o.pageToken = "foo"; |
2291 } | 2291 } |
2292 buildCounterSearchReadGroupSetsRequest--; | 2292 buildCounterSearchReadGroupSetsRequest--; |
2293 return o; | 2293 return o; |
2294 } | 2294 } |
2295 | 2295 |
2296 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { | 2296 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { |
2297 buildCounterSearchReadGroupSetsRequest++; | 2297 buildCounterSearchReadGroupSetsRequest++; |
2298 if (buildCounterSearchReadGroupSetsRequest < 3) { | 2298 if (buildCounterSearchReadGroupSetsRequest < 3) { |
2299 checkUnnamed1558(o.datasetIds); | 2299 checkUnnamed2431(o.datasetIds); |
2300 unittest.expect(o.name, unittest.equals('foo')); | 2300 unittest.expect(o.name, unittest.equals('foo')); |
2301 unittest.expect(o.pageSize, unittest.equals(42)); | 2301 unittest.expect(o.pageSize, unittest.equals(42)); |
2302 unittest.expect(o.pageToken, unittest.equals('foo')); | 2302 unittest.expect(o.pageToken, unittest.equals('foo')); |
2303 } | 2303 } |
2304 buildCounterSearchReadGroupSetsRequest--; | 2304 buildCounterSearchReadGroupSetsRequest--; |
2305 } | 2305 } |
2306 | 2306 |
2307 buildUnnamed1559() { | 2307 buildUnnamed2432() { |
2308 var o = new core.List<api.ReadGroupSet>(); | 2308 var o = new core.List<api.ReadGroupSet>(); |
2309 o.add(buildReadGroupSet()); | 2309 o.add(buildReadGroupSet()); |
2310 o.add(buildReadGroupSet()); | 2310 o.add(buildReadGroupSet()); |
2311 return o; | 2311 return o; |
2312 } | 2312 } |
2313 | 2313 |
2314 checkUnnamed1559(core.List<api.ReadGroupSet> o) { | 2314 checkUnnamed2432(core.List<api.ReadGroupSet> o) { |
2315 unittest.expect(o, unittest.hasLength(2)); | 2315 unittest.expect(o, unittest.hasLength(2)); |
2316 checkReadGroupSet(o[0]); | 2316 checkReadGroupSet(o[0]); |
2317 checkReadGroupSet(o[1]); | 2317 checkReadGroupSet(o[1]); |
2318 } | 2318 } |
2319 | 2319 |
2320 core.int buildCounterSearchReadGroupSetsResponse = 0; | 2320 core.int buildCounterSearchReadGroupSetsResponse = 0; |
2321 buildSearchReadGroupSetsResponse() { | 2321 buildSearchReadGroupSetsResponse() { |
2322 var o = new api.SearchReadGroupSetsResponse(); | 2322 var o = new api.SearchReadGroupSetsResponse(); |
2323 buildCounterSearchReadGroupSetsResponse++; | 2323 buildCounterSearchReadGroupSetsResponse++; |
2324 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2324 if (buildCounterSearchReadGroupSetsResponse < 3) { |
2325 o.nextPageToken = "foo"; | 2325 o.nextPageToken = "foo"; |
2326 o.readGroupSets = buildUnnamed1559(); | 2326 o.readGroupSets = buildUnnamed2432(); |
2327 } | 2327 } |
2328 buildCounterSearchReadGroupSetsResponse--; | 2328 buildCounterSearchReadGroupSetsResponse--; |
2329 return o; | 2329 return o; |
2330 } | 2330 } |
2331 | 2331 |
2332 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { | 2332 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { |
2333 buildCounterSearchReadGroupSetsResponse++; | 2333 buildCounterSearchReadGroupSetsResponse++; |
2334 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2334 if (buildCounterSearchReadGroupSetsResponse < 3) { |
2335 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2335 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2336 checkUnnamed1559(o.readGroupSets); | 2336 checkUnnamed2432(o.readGroupSets); |
2337 } | 2337 } |
2338 buildCounterSearchReadGroupSetsResponse--; | 2338 buildCounterSearchReadGroupSetsResponse--; |
2339 } | 2339 } |
2340 | 2340 |
2341 buildUnnamed1560() { | 2341 buildUnnamed2433() { |
2342 var o = new core.List<core.String>(); | 2342 var o = new core.List<core.String>(); |
2343 o.add("foo"); | 2343 o.add("foo"); |
2344 o.add("foo"); | 2344 o.add("foo"); |
2345 return o; | 2345 return o; |
2346 } | 2346 } |
2347 | 2347 |
2348 checkUnnamed1560(core.List<core.String> o) { | 2348 checkUnnamed2433(core.List<core.String> o) { |
2349 unittest.expect(o, unittest.hasLength(2)); | 2349 unittest.expect(o, unittest.hasLength(2)); |
2350 unittest.expect(o[0], unittest.equals('foo')); | 2350 unittest.expect(o[0], unittest.equals('foo')); |
2351 unittest.expect(o[1], unittest.equals('foo')); | 2351 unittest.expect(o[1], unittest.equals('foo')); |
2352 } | 2352 } |
2353 | 2353 |
2354 buildUnnamed1561() { | 2354 buildUnnamed2434() { |
2355 var o = new core.List<core.String>(); | 2355 var o = new core.List<core.String>(); |
2356 o.add("foo"); | 2356 o.add("foo"); |
2357 o.add("foo"); | 2357 o.add("foo"); |
2358 return o; | 2358 return o; |
2359 } | 2359 } |
2360 | 2360 |
2361 checkUnnamed1561(core.List<core.String> o) { | 2361 checkUnnamed2434(core.List<core.String> o) { |
2362 unittest.expect(o, unittest.hasLength(2)); | 2362 unittest.expect(o, unittest.hasLength(2)); |
2363 unittest.expect(o[0], unittest.equals('foo')); | 2363 unittest.expect(o[0], unittest.equals('foo')); |
2364 unittest.expect(o[1], unittest.equals('foo')); | 2364 unittest.expect(o[1], unittest.equals('foo')); |
2365 } | 2365 } |
2366 | 2366 |
2367 core.int buildCounterSearchReadsRequest = 0; | 2367 core.int buildCounterSearchReadsRequest = 0; |
2368 buildSearchReadsRequest() { | 2368 buildSearchReadsRequest() { |
2369 var o = new api.SearchReadsRequest(); | 2369 var o = new api.SearchReadsRequest(); |
2370 buildCounterSearchReadsRequest++; | 2370 buildCounterSearchReadsRequest++; |
2371 if (buildCounterSearchReadsRequest < 3) { | 2371 if (buildCounterSearchReadsRequest < 3) { |
2372 o.end = "foo"; | 2372 o.end = "foo"; |
2373 o.pageSize = 42; | 2373 o.pageSize = 42; |
2374 o.pageToken = "foo"; | 2374 o.pageToken = "foo"; |
2375 o.readGroupIds = buildUnnamed1560(); | 2375 o.readGroupIds = buildUnnamed2433(); |
2376 o.readGroupSetIds = buildUnnamed1561(); | 2376 o.readGroupSetIds = buildUnnamed2434(); |
2377 o.referenceName = "foo"; | 2377 o.referenceName = "foo"; |
2378 o.start = "foo"; | 2378 o.start = "foo"; |
2379 } | 2379 } |
2380 buildCounterSearchReadsRequest--; | 2380 buildCounterSearchReadsRequest--; |
2381 return o; | 2381 return o; |
2382 } | 2382 } |
2383 | 2383 |
2384 checkSearchReadsRequest(api.SearchReadsRequest o) { | 2384 checkSearchReadsRequest(api.SearchReadsRequest o) { |
2385 buildCounterSearchReadsRequest++; | 2385 buildCounterSearchReadsRequest++; |
2386 if (buildCounterSearchReadsRequest < 3) { | 2386 if (buildCounterSearchReadsRequest < 3) { |
2387 unittest.expect(o.end, unittest.equals('foo')); | 2387 unittest.expect(o.end, unittest.equals('foo')); |
2388 unittest.expect(o.pageSize, unittest.equals(42)); | 2388 unittest.expect(o.pageSize, unittest.equals(42)); |
2389 unittest.expect(o.pageToken, unittest.equals('foo')); | 2389 unittest.expect(o.pageToken, unittest.equals('foo')); |
2390 checkUnnamed1560(o.readGroupIds); | 2390 checkUnnamed2433(o.readGroupIds); |
2391 checkUnnamed1561(o.readGroupSetIds); | 2391 checkUnnamed2434(o.readGroupSetIds); |
2392 unittest.expect(o.referenceName, unittest.equals('foo')); | 2392 unittest.expect(o.referenceName, unittest.equals('foo')); |
2393 unittest.expect(o.start, unittest.equals('foo')); | 2393 unittest.expect(o.start, unittest.equals('foo')); |
2394 } | 2394 } |
2395 buildCounterSearchReadsRequest--; | 2395 buildCounterSearchReadsRequest--; |
2396 } | 2396 } |
2397 | 2397 |
2398 buildUnnamed1562() { | 2398 buildUnnamed2435() { |
2399 var o = new core.List<api.Read>(); | 2399 var o = new core.List<api.Read>(); |
2400 o.add(buildRead()); | 2400 o.add(buildRead()); |
2401 o.add(buildRead()); | 2401 o.add(buildRead()); |
2402 return o; | 2402 return o; |
2403 } | 2403 } |
2404 | 2404 |
2405 checkUnnamed1562(core.List<api.Read> o) { | 2405 checkUnnamed2435(core.List<api.Read> o) { |
2406 unittest.expect(o, unittest.hasLength(2)); | 2406 unittest.expect(o, unittest.hasLength(2)); |
2407 checkRead(o[0]); | 2407 checkRead(o[0]); |
2408 checkRead(o[1]); | 2408 checkRead(o[1]); |
2409 } | 2409 } |
2410 | 2410 |
2411 core.int buildCounterSearchReadsResponse = 0; | 2411 core.int buildCounterSearchReadsResponse = 0; |
2412 buildSearchReadsResponse() { | 2412 buildSearchReadsResponse() { |
2413 var o = new api.SearchReadsResponse(); | 2413 var o = new api.SearchReadsResponse(); |
2414 buildCounterSearchReadsResponse++; | 2414 buildCounterSearchReadsResponse++; |
2415 if (buildCounterSearchReadsResponse < 3) { | 2415 if (buildCounterSearchReadsResponse < 3) { |
2416 o.alignments = buildUnnamed1562(); | 2416 o.alignments = buildUnnamed2435(); |
2417 o.nextPageToken = "foo"; | 2417 o.nextPageToken = "foo"; |
2418 } | 2418 } |
2419 buildCounterSearchReadsResponse--; | 2419 buildCounterSearchReadsResponse--; |
2420 return o; | 2420 return o; |
2421 } | 2421 } |
2422 | 2422 |
2423 checkSearchReadsResponse(api.SearchReadsResponse o) { | 2423 checkSearchReadsResponse(api.SearchReadsResponse o) { |
2424 buildCounterSearchReadsResponse++; | 2424 buildCounterSearchReadsResponse++; |
2425 if (buildCounterSearchReadsResponse < 3) { | 2425 if (buildCounterSearchReadsResponse < 3) { |
2426 checkUnnamed1562(o.alignments); | 2426 checkUnnamed2435(o.alignments); |
2427 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2427 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2428 } | 2428 } |
2429 buildCounterSearchReadsResponse--; | 2429 buildCounterSearchReadsResponse--; |
2430 } | 2430 } |
2431 | 2431 |
2432 buildUnnamed1563() { | 2432 buildUnnamed2436() { |
2433 var o = new core.List<core.String>(); | 2433 var o = new core.List<core.String>(); |
2434 o.add("foo"); | 2434 o.add("foo"); |
2435 o.add("foo"); | 2435 o.add("foo"); |
2436 return o; | 2436 return o; |
2437 } | 2437 } |
2438 | 2438 |
2439 checkUnnamed1563(core.List<core.String> o) { | 2439 checkUnnamed2436(core.List<core.String> o) { |
2440 unittest.expect(o, unittest.hasLength(2)); | 2440 unittest.expect(o, unittest.hasLength(2)); |
2441 unittest.expect(o[0], unittest.equals('foo')); | 2441 unittest.expect(o[0], unittest.equals('foo')); |
2442 unittest.expect(o[1], unittest.equals('foo')); | 2442 unittest.expect(o[1], unittest.equals('foo')); |
2443 } | 2443 } |
2444 | 2444 |
2445 buildUnnamed1564() { | 2445 buildUnnamed2437() { |
2446 var o = new core.List<core.String>(); | 2446 var o = new core.List<core.String>(); |
2447 o.add("foo"); | 2447 o.add("foo"); |
2448 o.add("foo"); | 2448 o.add("foo"); |
2449 return o; | 2449 return o; |
2450 } | 2450 } |
2451 | 2451 |
2452 checkUnnamed1564(core.List<core.String> o) { | 2452 checkUnnamed2437(core.List<core.String> o) { |
2453 unittest.expect(o, unittest.hasLength(2)); | 2453 unittest.expect(o, unittest.hasLength(2)); |
2454 unittest.expect(o[0], unittest.equals('foo')); | 2454 unittest.expect(o[0], unittest.equals('foo')); |
2455 unittest.expect(o[1], unittest.equals('foo')); | 2455 unittest.expect(o[1], unittest.equals('foo')); |
2456 } | 2456 } |
2457 | 2457 |
2458 core.int buildCounterSearchReferenceSetsRequest = 0; | 2458 core.int buildCounterSearchReferenceSetsRequest = 0; |
2459 buildSearchReferenceSetsRequest() { | 2459 buildSearchReferenceSetsRequest() { |
2460 var o = new api.SearchReferenceSetsRequest(); | 2460 var o = new api.SearchReferenceSetsRequest(); |
2461 buildCounterSearchReferenceSetsRequest++; | 2461 buildCounterSearchReferenceSetsRequest++; |
2462 if (buildCounterSearchReferenceSetsRequest < 3) { | 2462 if (buildCounterSearchReferenceSetsRequest < 3) { |
2463 o.accessions = buildUnnamed1563(); | 2463 o.accessions = buildUnnamed2436(); |
2464 o.assemblyId = "foo"; | 2464 o.assemblyId = "foo"; |
2465 o.md5checksums = buildUnnamed1564(); | 2465 o.md5checksums = buildUnnamed2437(); |
2466 o.pageSize = 42; | 2466 o.pageSize = 42; |
2467 o.pageToken = "foo"; | 2467 o.pageToken = "foo"; |
2468 } | 2468 } |
2469 buildCounterSearchReferenceSetsRequest--; | 2469 buildCounterSearchReferenceSetsRequest--; |
2470 return o; | 2470 return o; |
2471 } | 2471 } |
2472 | 2472 |
2473 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { | 2473 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { |
2474 buildCounterSearchReferenceSetsRequest++; | 2474 buildCounterSearchReferenceSetsRequest++; |
2475 if (buildCounterSearchReferenceSetsRequest < 3) { | 2475 if (buildCounterSearchReferenceSetsRequest < 3) { |
2476 checkUnnamed1563(o.accessions); | 2476 checkUnnamed2436(o.accessions); |
2477 unittest.expect(o.assemblyId, unittest.equals('foo')); | 2477 unittest.expect(o.assemblyId, unittest.equals('foo')); |
2478 checkUnnamed1564(o.md5checksums); | 2478 checkUnnamed2437(o.md5checksums); |
2479 unittest.expect(o.pageSize, unittest.equals(42)); | 2479 unittest.expect(o.pageSize, unittest.equals(42)); |
2480 unittest.expect(o.pageToken, unittest.equals('foo')); | 2480 unittest.expect(o.pageToken, unittest.equals('foo')); |
2481 } | 2481 } |
2482 buildCounterSearchReferenceSetsRequest--; | 2482 buildCounterSearchReferenceSetsRequest--; |
2483 } | 2483 } |
2484 | 2484 |
2485 buildUnnamed1565() { | 2485 buildUnnamed2438() { |
2486 var o = new core.List<api.ReferenceSet>(); | 2486 var o = new core.List<api.ReferenceSet>(); |
2487 o.add(buildReferenceSet()); | 2487 o.add(buildReferenceSet()); |
2488 o.add(buildReferenceSet()); | 2488 o.add(buildReferenceSet()); |
2489 return o; | 2489 return o; |
2490 } | 2490 } |
2491 | 2491 |
2492 checkUnnamed1565(core.List<api.ReferenceSet> o) { | 2492 checkUnnamed2438(core.List<api.ReferenceSet> o) { |
2493 unittest.expect(o, unittest.hasLength(2)); | 2493 unittest.expect(o, unittest.hasLength(2)); |
2494 checkReferenceSet(o[0]); | 2494 checkReferenceSet(o[0]); |
2495 checkReferenceSet(o[1]); | 2495 checkReferenceSet(o[1]); |
2496 } | 2496 } |
2497 | 2497 |
2498 core.int buildCounterSearchReferenceSetsResponse = 0; | 2498 core.int buildCounterSearchReferenceSetsResponse = 0; |
2499 buildSearchReferenceSetsResponse() { | 2499 buildSearchReferenceSetsResponse() { |
2500 var o = new api.SearchReferenceSetsResponse(); | 2500 var o = new api.SearchReferenceSetsResponse(); |
2501 buildCounterSearchReferenceSetsResponse++; | 2501 buildCounterSearchReferenceSetsResponse++; |
2502 if (buildCounterSearchReferenceSetsResponse < 3) { | 2502 if (buildCounterSearchReferenceSetsResponse < 3) { |
2503 o.nextPageToken = "foo"; | 2503 o.nextPageToken = "foo"; |
2504 o.referenceSets = buildUnnamed1565(); | 2504 o.referenceSets = buildUnnamed2438(); |
2505 } | 2505 } |
2506 buildCounterSearchReferenceSetsResponse--; | 2506 buildCounterSearchReferenceSetsResponse--; |
2507 return o; | 2507 return o; |
2508 } | 2508 } |
2509 | 2509 |
2510 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { | 2510 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { |
2511 buildCounterSearchReferenceSetsResponse++; | 2511 buildCounterSearchReferenceSetsResponse++; |
2512 if (buildCounterSearchReferenceSetsResponse < 3) { | 2512 if (buildCounterSearchReferenceSetsResponse < 3) { |
2513 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2513 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2514 checkUnnamed1565(o.referenceSets); | 2514 checkUnnamed2438(o.referenceSets); |
2515 } | 2515 } |
2516 buildCounterSearchReferenceSetsResponse--; | 2516 buildCounterSearchReferenceSetsResponse--; |
2517 } | 2517 } |
2518 | 2518 |
2519 buildUnnamed1566() { | 2519 buildUnnamed2439() { |
2520 var o = new core.List<core.String>(); | 2520 var o = new core.List<core.String>(); |
2521 o.add("foo"); | 2521 o.add("foo"); |
2522 o.add("foo"); | 2522 o.add("foo"); |
2523 return o; | 2523 return o; |
2524 } | 2524 } |
2525 | 2525 |
2526 checkUnnamed1566(core.List<core.String> o) { | 2526 checkUnnamed2439(core.List<core.String> o) { |
2527 unittest.expect(o, unittest.hasLength(2)); | 2527 unittest.expect(o, unittest.hasLength(2)); |
2528 unittest.expect(o[0], unittest.equals('foo')); | 2528 unittest.expect(o[0], unittest.equals('foo')); |
2529 unittest.expect(o[1], unittest.equals('foo')); | 2529 unittest.expect(o[1], unittest.equals('foo')); |
2530 } | 2530 } |
2531 | 2531 |
2532 buildUnnamed1567() { | 2532 buildUnnamed2440() { |
2533 var o = new core.List<core.String>(); | 2533 var o = new core.List<core.String>(); |
2534 o.add("foo"); | 2534 o.add("foo"); |
2535 o.add("foo"); | 2535 o.add("foo"); |
2536 return o; | 2536 return o; |
2537 } | 2537 } |
2538 | 2538 |
2539 checkUnnamed1567(core.List<core.String> o) { | 2539 checkUnnamed2440(core.List<core.String> o) { |
2540 unittest.expect(o, unittest.hasLength(2)); | 2540 unittest.expect(o, unittest.hasLength(2)); |
2541 unittest.expect(o[0], unittest.equals('foo')); | 2541 unittest.expect(o[0], unittest.equals('foo')); |
2542 unittest.expect(o[1], unittest.equals('foo')); | 2542 unittest.expect(o[1], unittest.equals('foo')); |
2543 } | 2543 } |
2544 | 2544 |
2545 core.int buildCounterSearchReferencesRequest = 0; | 2545 core.int buildCounterSearchReferencesRequest = 0; |
2546 buildSearchReferencesRequest() { | 2546 buildSearchReferencesRequest() { |
2547 var o = new api.SearchReferencesRequest(); | 2547 var o = new api.SearchReferencesRequest(); |
2548 buildCounterSearchReferencesRequest++; | 2548 buildCounterSearchReferencesRequest++; |
2549 if (buildCounterSearchReferencesRequest < 3) { | 2549 if (buildCounterSearchReferencesRequest < 3) { |
2550 o.accessions = buildUnnamed1566(); | 2550 o.accessions = buildUnnamed2439(); |
2551 o.md5checksums = buildUnnamed1567(); | 2551 o.md5checksums = buildUnnamed2440(); |
2552 o.pageSize = 42; | 2552 o.pageSize = 42; |
2553 o.pageToken = "foo"; | 2553 o.pageToken = "foo"; |
2554 o.referenceSetId = "foo"; | 2554 o.referenceSetId = "foo"; |
2555 } | 2555 } |
2556 buildCounterSearchReferencesRequest--; | 2556 buildCounterSearchReferencesRequest--; |
2557 return o; | 2557 return o; |
2558 } | 2558 } |
2559 | 2559 |
2560 checkSearchReferencesRequest(api.SearchReferencesRequest o) { | 2560 checkSearchReferencesRequest(api.SearchReferencesRequest o) { |
2561 buildCounterSearchReferencesRequest++; | 2561 buildCounterSearchReferencesRequest++; |
2562 if (buildCounterSearchReferencesRequest < 3) { | 2562 if (buildCounterSearchReferencesRequest < 3) { |
2563 checkUnnamed1566(o.accessions); | 2563 checkUnnamed2439(o.accessions); |
2564 checkUnnamed1567(o.md5checksums); | 2564 checkUnnamed2440(o.md5checksums); |
2565 unittest.expect(o.pageSize, unittest.equals(42)); | 2565 unittest.expect(o.pageSize, unittest.equals(42)); |
2566 unittest.expect(o.pageToken, unittest.equals('foo')); | 2566 unittest.expect(o.pageToken, unittest.equals('foo')); |
2567 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 2567 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
2568 } | 2568 } |
2569 buildCounterSearchReferencesRequest--; | 2569 buildCounterSearchReferencesRequest--; |
2570 } | 2570 } |
2571 | 2571 |
2572 buildUnnamed1568() { | 2572 buildUnnamed2441() { |
2573 var o = new core.List<api.Reference>(); | 2573 var o = new core.List<api.Reference>(); |
2574 o.add(buildReference()); | 2574 o.add(buildReference()); |
2575 o.add(buildReference()); | 2575 o.add(buildReference()); |
2576 return o; | 2576 return o; |
2577 } | 2577 } |
2578 | 2578 |
2579 checkUnnamed1568(core.List<api.Reference> o) { | 2579 checkUnnamed2441(core.List<api.Reference> o) { |
2580 unittest.expect(o, unittest.hasLength(2)); | 2580 unittest.expect(o, unittest.hasLength(2)); |
2581 checkReference(o[0]); | 2581 checkReference(o[0]); |
2582 checkReference(o[1]); | 2582 checkReference(o[1]); |
2583 } | 2583 } |
2584 | 2584 |
2585 core.int buildCounterSearchReferencesResponse = 0; | 2585 core.int buildCounterSearchReferencesResponse = 0; |
2586 buildSearchReferencesResponse() { | 2586 buildSearchReferencesResponse() { |
2587 var o = new api.SearchReferencesResponse(); | 2587 var o = new api.SearchReferencesResponse(); |
2588 buildCounterSearchReferencesResponse++; | 2588 buildCounterSearchReferencesResponse++; |
2589 if (buildCounterSearchReferencesResponse < 3) { | 2589 if (buildCounterSearchReferencesResponse < 3) { |
2590 o.nextPageToken = "foo"; | 2590 o.nextPageToken = "foo"; |
2591 o.references = buildUnnamed1568(); | 2591 o.references = buildUnnamed2441(); |
2592 } | 2592 } |
2593 buildCounterSearchReferencesResponse--; | 2593 buildCounterSearchReferencesResponse--; |
2594 return o; | 2594 return o; |
2595 } | 2595 } |
2596 | 2596 |
2597 checkSearchReferencesResponse(api.SearchReferencesResponse o) { | 2597 checkSearchReferencesResponse(api.SearchReferencesResponse o) { |
2598 buildCounterSearchReferencesResponse++; | 2598 buildCounterSearchReferencesResponse++; |
2599 if (buildCounterSearchReferencesResponse < 3) { | 2599 if (buildCounterSearchReferencesResponse < 3) { |
2600 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2600 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2601 checkUnnamed1568(o.references); | 2601 checkUnnamed2441(o.references); |
2602 } | 2602 } |
2603 buildCounterSearchReferencesResponse--; | 2603 buildCounterSearchReferencesResponse--; |
2604 } | 2604 } |
2605 | 2605 |
2606 buildUnnamed1569() { | 2606 buildUnnamed2442() { |
2607 var o = new core.List<core.String>(); | 2607 var o = new core.List<core.String>(); |
2608 o.add("foo"); | 2608 o.add("foo"); |
2609 o.add("foo"); | 2609 o.add("foo"); |
2610 return o; | 2610 return o; |
2611 } | 2611 } |
2612 | 2612 |
2613 checkUnnamed1569(core.List<core.String> o) { | 2613 checkUnnamed2442(core.List<core.String> o) { |
2614 unittest.expect(o, unittest.hasLength(2)); | 2614 unittest.expect(o, unittest.hasLength(2)); |
2615 unittest.expect(o[0], unittest.equals('foo')); | 2615 unittest.expect(o[0], unittest.equals('foo')); |
2616 unittest.expect(o[1], unittest.equals('foo')); | 2616 unittest.expect(o[1], unittest.equals('foo')); |
2617 } | 2617 } |
2618 | 2618 |
2619 core.int buildCounterSearchVariantSetsRequest = 0; | 2619 core.int buildCounterSearchVariantSetsRequest = 0; |
2620 buildSearchVariantSetsRequest() { | 2620 buildSearchVariantSetsRequest() { |
2621 var o = new api.SearchVariantSetsRequest(); | 2621 var o = new api.SearchVariantSetsRequest(); |
2622 buildCounterSearchVariantSetsRequest++; | 2622 buildCounterSearchVariantSetsRequest++; |
2623 if (buildCounterSearchVariantSetsRequest < 3) { | 2623 if (buildCounterSearchVariantSetsRequest < 3) { |
2624 o.datasetIds = buildUnnamed1569(); | 2624 o.datasetIds = buildUnnamed2442(); |
2625 o.pageSize = 42; | 2625 o.pageSize = 42; |
2626 o.pageToken = "foo"; | 2626 o.pageToken = "foo"; |
2627 } | 2627 } |
2628 buildCounterSearchVariantSetsRequest--; | 2628 buildCounterSearchVariantSetsRequest--; |
2629 return o; | 2629 return o; |
2630 } | 2630 } |
2631 | 2631 |
2632 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { | 2632 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { |
2633 buildCounterSearchVariantSetsRequest++; | 2633 buildCounterSearchVariantSetsRequest++; |
2634 if (buildCounterSearchVariantSetsRequest < 3) { | 2634 if (buildCounterSearchVariantSetsRequest < 3) { |
2635 checkUnnamed1569(o.datasetIds); | 2635 checkUnnamed2442(o.datasetIds); |
2636 unittest.expect(o.pageSize, unittest.equals(42)); | 2636 unittest.expect(o.pageSize, unittest.equals(42)); |
2637 unittest.expect(o.pageToken, unittest.equals('foo')); | 2637 unittest.expect(o.pageToken, unittest.equals('foo')); |
2638 } | 2638 } |
2639 buildCounterSearchVariantSetsRequest--; | 2639 buildCounterSearchVariantSetsRequest--; |
2640 } | 2640 } |
2641 | 2641 |
2642 buildUnnamed1570() { | 2642 buildUnnamed2443() { |
2643 var o = new core.List<api.VariantSet>(); | 2643 var o = new core.List<api.VariantSet>(); |
2644 o.add(buildVariantSet()); | 2644 o.add(buildVariantSet()); |
2645 o.add(buildVariantSet()); | 2645 o.add(buildVariantSet()); |
2646 return o; | 2646 return o; |
2647 } | 2647 } |
2648 | 2648 |
2649 checkUnnamed1570(core.List<api.VariantSet> o) { | 2649 checkUnnamed2443(core.List<api.VariantSet> o) { |
2650 unittest.expect(o, unittest.hasLength(2)); | 2650 unittest.expect(o, unittest.hasLength(2)); |
2651 checkVariantSet(o[0]); | 2651 checkVariantSet(o[0]); |
2652 checkVariantSet(o[1]); | 2652 checkVariantSet(o[1]); |
2653 } | 2653 } |
2654 | 2654 |
2655 core.int buildCounterSearchVariantSetsResponse = 0; | 2655 core.int buildCounterSearchVariantSetsResponse = 0; |
2656 buildSearchVariantSetsResponse() { | 2656 buildSearchVariantSetsResponse() { |
2657 var o = new api.SearchVariantSetsResponse(); | 2657 var o = new api.SearchVariantSetsResponse(); |
2658 buildCounterSearchVariantSetsResponse++; | 2658 buildCounterSearchVariantSetsResponse++; |
2659 if (buildCounterSearchVariantSetsResponse < 3) { | 2659 if (buildCounterSearchVariantSetsResponse < 3) { |
2660 o.nextPageToken = "foo"; | 2660 o.nextPageToken = "foo"; |
2661 o.variantSets = buildUnnamed1570(); | 2661 o.variantSets = buildUnnamed2443(); |
2662 } | 2662 } |
2663 buildCounterSearchVariantSetsResponse--; | 2663 buildCounterSearchVariantSetsResponse--; |
2664 return o; | 2664 return o; |
2665 } | 2665 } |
2666 | 2666 |
2667 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { | 2667 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { |
2668 buildCounterSearchVariantSetsResponse++; | 2668 buildCounterSearchVariantSetsResponse++; |
2669 if (buildCounterSearchVariantSetsResponse < 3) { | 2669 if (buildCounterSearchVariantSetsResponse < 3) { |
2670 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2670 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2671 checkUnnamed1570(o.variantSets); | 2671 checkUnnamed2443(o.variantSets); |
2672 } | 2672 } |
2673 buildCounterSearchVariantSetsResponse--; | 2673 buildCounterSearchVariantSetsResponse--; |
2674 } | 2674 } |
2675 | 2675 |
2676 buildUnnamed1571() { | 2676 buildUnnamed2444() { |
2677 var o = new core.List<core.String>(); | 2677 var o = new core.List<core.String>(); |
2678 o.add("foo"); | 2678 o.add("foo"); |
2679 o.add("foo"); | 2679 o.add("foo"); |
2680 return o; | 2680 return o; |
2681 } | 2681 } |
2682 | 2682 |
2683 checkUnnamed1571(core.List<core.String> o) { | 2683 checkUnnamed2444(core.List<core.String> o) { |
2684 unittest.expect(o, unittest.hasLength(2)); | 2684 unittest.expect(o, unittest.hasLength(2)); |
2685 unittest.expect(o[0], unittest.equals('foo')); | 2685 unittest.expect(o[0], unittest.equals('foo')); |
2686 unittest.expect(o[1], unittest.equals('foo')); | 2686 unittest.expect(o[1], unittest.equals('foo')); |
2687 } | 2687 } |
2688 | 2688 |
2689 buildUnnamed1572() { | 2689 buildUnnamed2445() { |
2690 var o = new core.List<core.String>(); | 2690 var o = new core.List<core.String>(); |
2691 o.add("foo"); | 2691 o.add("foo"); |
2692 o.add("foo"); | 2692 o.add("foo"); |
2693 return o; | 2693 return o; |
2694 } | 2694 } |
2695 | 2695 |
2696 checkUnnamed1572(core.List<core.String> o) { | 2696 checkUnnamed2445(core.List<core.String> o) { |
2697 unittest.expect(o, unittest.hasLength(2)); | 2697 unittest.expect(o, unittest.hasLength(2)); |
2698 unittest.expect(o[0], unittest.equals('foo')); | 2698 unittest.expect(o[0], unittest.equals('foo')); |
2699 unittest.expect(o[1], unittest.equals('foo')); | 2699 unittest.expect(o[1], unittest.equals('foo')); |
2700 } | 2700 } |
2701 | 2701 |
2702 core.int buildCounterSearchVariantsRequest = 0; | 2702 core.int buildCounterSearchVariantsRequest = 0; |
2703 buildSearchVariantsRequest() { | 2703 buildSearchVariantsRequest() { |
2704 var o = new api.SearchVariantsRequest(); | 2704 var o = new api.SearchVariantsRequest(); |
2705 buildCounterSearchVariantsRequest++; | 2705 buildCounterSearchVariantsRequest++; |
2706 if (buildCounterSearchVariantsRequest < 3) { | 2706 if (buildCounterSearchVariantsRequest < 3) { |
2707 o.callSetIds = buildUnnamed1571(); | 2707 o.callSetIds = buildUnnamed2444(); |
2708 o.end = "foo"; | 2708 o.end = "foo"; |
2709 o.maxCalls = 42; | 2709 o.maxCalls = 42; |
2710 o.pageSize = 42; | 2710 o.pageSize = 42; |
2711 o.pageToken = "foo"; | 2711 o.pageToken = "foo"; |
2712 o.referenceName = "foo"; | 2712 o.referenceName = "foo"; |
2713 o.start = "foo"; | 2713 o.start = "foo"; |
2714 o.variantName = "foo"; | 2714 o.variantName = "foo"; |
2715 o.variantSetIds = buildUnnamed1572(); | 2715 o.variantSetIds = buildUnnamed2445(); |
2716 } | 2716 } |
2717 buildCounterSearchVariantsRequest--; | 2717 buildCounterSearchVariantsRequest--; |
2718 return o; | 2718 return o; |
2719 } | 2719 } |
2720 | 2720 |
2721 checkSearchVariantsRequest(api.SearchVariantsRequest o) { | 2721 checkSearchVariantsRequest(api.SearchVariantsRequest o) { |
2722 buildCounterSearchVariantsRequest++; | 2722 buildCounterSearchVariantsRequest++; |
2723 if (buildCounterSearchVariantsRequest < 3) { | 2723 if (buildCounterSearchVariantsRequest < 3) { |
2724 checkUnnamed1571(o.callSetIds); | 2724 checkUnnamed2444(o.callSetIds); |
2725 unittest.expect(o.end, unittest.equals('foo')); | 2725 unittest.expect(o.end, unittest.equals('foo')); |
2726 unittest.expect(o.maxCalls, unittest.equals(42)); | 2726 unittest.expect(o.maxCalls, unittest.equals(42)); |
2727 unittest.expect(o.pageSize, unittest.equals(42)); | 2727 unittest.expect(o.pageSize, unittest.equals(42)); |
2728 unittest.expect(o.pageToken, unittest.equals('foo')); | 2728 unittest.expect(o.pageToken, unittest.equals('foo')); |
2729 unittest.expect(o.referenceName, unittest.equals('foo')); | 2729 unittest.expect(o.referenceName, unittest.equals('foo')); |
2730 unittest.expect(o.start, unittest.equals('foo')); | 2730 unittest.expect(o.start, unittest.equals('foo')); |
2731 unittest.expect(o.variantName, unittest.equals('foo')); | 2731 unittest.expect(o.variantName, unittest.equals('foo')); |
2732 checkUnnamed1572(o.variantSetIds); | 2732 checkUnnamed2445(o.variantSetIds); |
2733 } | 2733 } |
2734 buildCounterSearchVariantsRequest--; | 2734 buildCounterSearchVariantsRequest--; |
2735 } | 2735 } |
2736 | 2736 |
2737 buildUnnamed1573() { | 2737 buildUnnamed2446() { |
2738 var o = new core.List<api.Variant>(); | 2738 var o = new core.List<api.Variant>(); |
2739 o.add(buildVariant()); | 2739 o.add(buildVariant()); |
2740 o.add(buildVariant()); | 2740 o.add(buildVariant()); |
2741 return o; | 2741 return o; |
2742 } | 2742 } |
2743 | 2743 |
2744 checkUnnamed1573(core.List<api.Variant> o) { | 2744 checkUnnamed2446(core.List<api.Variant> o) { |
2745 unittest.expect(o, unittest.hasLength(2)); | 2745 unittest.expect(o, unittest.hasLength(2)); |
2746 checkVariant(o[0]); | 2746 checkVariant(o[0]); |
2747 checkVariant(o[1]); | 2747 checkVariant(o[1]); |
2748 } | 2748 } |
2749 | 2749 |
2750 core.int buildCounterSearchVariantsResponse = 0; | 2750 core.int buildCounterSearchVariantsResponse = 0; |
2751 buildSearchVariantsResponse() { | 2751 buildSearchVariantsResponse() { |
2752 var o = new api.SearchVariantsResponse(); | 2752 var o = new api.SearchVariantsResponse(); |
2753 buildCounterSearchVariantsResponse++; | 2753 buildCounterSearchVariantsResponse++; |
2754 if (buildCounterSearchVariantsResponse < 3) { | 2754 if (buildCounterSearchVariantsResponse < 3) { |
2755 o.nextPageToken = "foo"; | 2755 o.nextPageToken = "foo"; |
2756 o.variants = buildUnnamed1573(); | 2756 o.variants = buildUnnamed2446(); |
2757 } | 2757 } |
2758 buildCounterSearchVariantsResponse--; | 2758 buildCounterSearchVariantsResponse--; |
2759 return o; | 2759 return o; |
2760 } | 2760 } |
2761 | 2761 |
2762 checkSearchVariantsResponse(api.SearchVariantsResponse o) { | 2762 checkSearchVariantsResponse(api.SearchVariantsResponse o) { |
2763 buildCounterSearchVariantsResponse++; | 2763 buildCounterSearchVariantsResponse++; |
2764 if (buildCounterSearchVariantsResponse < 3) { | 2764 if (buildCounterSearchVariantsResponse < 3) { |
2765 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2765 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2766 checkUnnamed1573(o.variants); | 2766 checkUnnamed2446(o.variants); |
2767 } | 2767 } |
2768 buildCounterSearchVariantsResponse--; | 2768 buildCounterSearchVariantsResponse--; |
2769 } | 2769 } |
2770 | 2770 |
2771 buildUnnamed1574() { | 2771 buildUnnamed2447() { |
2772 var o = new core.List<api.TranscriptExon>(); | 2772 var o = new core.List<api.TranscriptExon>(); |
2773 o.add(buildTranscriptExon()); | 2773 o.add(buildTranscriptExon()); |
2774 o.add(buildTranscriptExon()); | 2774 o.add(buildTranscriptExon()); |
2775 return o; | 2775 return o; |
2776 } | 2776 } |
2777 | 2777 |
2778 checkUnnamed1574(core.List<api.TranscriptExon> o) { | 2778 checkUnnamed2447(core.List<api.TranscriptExon> o) { |
2779 unittest.expect(o, unittest.hasLength(2)); | 2779 unittest.expect(o, unittest.hasLength(2)); |
2780 checkTranscriptExon(o[0]); | 2780 checkTranscriptExon(o[0]); |
2781 checkTranscriptExon(o[1]); | 2781 checkTranscriptExon(o[1]); |
2782 } | 2782 } |
2783 | 2783 |
2784 core.int buildCounterTranscript = 0; | 2784 core.int buildCounterTranscript = 0; |
2785 buildTranscript() { | 2785 buildTranscript() { |
2786 var o = new api.Transcript(); | 2786 var o = new api.Transcript(); |
2787 buildCounterTranscript++; | 2787 buildCounterTranscript++; |
2788 if (buildCounterTranscript < 3) { | 2788 if (buildCounterTranscript < 3) { |
2789 o.codingSequence = buildTranscriptCodingSequence(); | 2789 o.codingSequence = buildTranscriptCodingSequence(); |
2790 o.exons = buildUnnamed1574(); | 2790 o.exons = buildUnnamed2447(); |
2791 o.geneId = "foo"; | 2791 o.geneId = "foo"; |
2792 } | 2792 } |
2793 buildCounterTranscript--; | 2793 buildCounterTranscript--; |
2794 return o; | 2794 return o; |
2795 } | 2795 } |
2796 | 2796 |
2797 checkTranscript(api.Transcript o) { | 2797 checkTranscript(api.Transcript o) { |
2798 buildCounterTranscript++; | 2798 buildCounterTranscript++; |
2799 if (buildCounterTranscript < 3) { | 2799 if (buildCounterTranscript < 3) { |
2800 checkTranscriptCodingSequence(o.codingSequence); | 2800 checkTranscriptCodingSequence(o.codingSequence); |
2801 checkUnnamed1574(o.exons); | 2801 checkUnnamed2447(o.exons); |
2802 unittest.expect(o.geneId, unittest.equals('foo')); | 2802 unittest.expect(o.geneId, unittest.equals('foo')); |
2803 } | 2803 } |
2804 buildCounterTranscript--; | 2804 buildCounterTranscript--; |
2805 } | 2805 } |
2806 | 2806 |
2807 core.int buildCounterTranscriptCodingSequence = 0; | 2807 core.int buildCounterTranscriptCodingSequence = 0; |
2808 buildTranscriptCodingSequence() { | 2808 buildTranscriptCodingSequence() { |
2809 var o = new api.TranscriptCodingSequence(); | 2809 var o = new api.TranscriptCodingSequence(); |
2810 buildCounterTranscriptCodingSequence++; | 2810 buildCounterTranscriptCodingSequence++; |
2811 if (buildCounterTranscriptCodingSequence < 3) { | 2811 if (buildCounterTranscriptCodingSequence < 3) { |
(...skipping 29 matching lines...) Expand all Loading... |
2841 checkTranscriptExon(api.TranscriptExon o) { | 2841 checkTranscriptExon(api.TranscriptExon o) { |
2842 buildCounterTranscriptExon++; | 2842 buildCounterTranscriptExon++; |
2843 if (buildCounterTranscriptExon < 3) { | 2843 if (buildCounterTranscriptExon < 3) { |
2844 unittest.expect(o.end, unittest.equals('foo')); | 2844 unittest.expect(o.end, unittest.equals('foo')); |
2845 checkInt32Value(o.frame); | 2845 checkInt32Value(o.frame); |
2846 unittest.expect(o.start, unittest.equals('foo')); | 2846 unittest.expect(o.start, unittest.equals('foo')); |
2847 } | 2847 } |
2848 buildCounterTranscriptExon--; | 2848 buildCounterTranscriptExon--; |
2849 } | 2849 } |
2850 | 2850 |
2851 buildUnnamed1575() { | 2851 buildUnnamed2448() { |
2852 var o = new core.List<core.String>(); | 2852 var o = new core.List<core.String>(); |
2853 o.add("foo"); | 2853 o.add("foo"); |
2854 o.add("foo"); | 2854 o.add("foo"); |
2855 return o; | 2855 return o; |
2856 } | 2856 } |
2857 | 2857 |
2858 checkUnnamed1575(core.List<core.String> o) { | 2858 checkUnnamed2448(core.List<core.String> o) { |
2859 unittest.expect(o, unittest.hasLength(2)); | 2859 unittest.expect(o, unittest.hasLength(2)); |
2860 unittest.expect(o[0], unittest.equals('foo')); | 2860 unittest.expect(o[0], unittest.equals('foo')); |
2861 unittest.expect(o[1], unittest.equals('foo')); | 2861 unittest.expect(o[1], unittest.equals('foo')); |
2862 } | 2862 } |
2863 | 2863 |
2864 buildUnnamed1576() { | 2864 buildUnnamed2449() { |
2865 var o = new core.List<api.Call>(); | 2865 var o = new core.List<api.Call>(); |
2866 o.add(buildCall()); | 2866 o.add(buildCall()); |
2867 o.add(buildCall()); | 2867 o.add(buildCall()); |
2868 return o; | 2868 return o; |
2869 } | 2869 } |
2870 | 2870 |
2871 checkUnnamed1576(core.List<api.Call> o) { | 2871 checkUnnamed2449(core.List<api.Call> o) { |
2872 unittest.expect(o, unittest.hasLength(2)); | 2872 unittest.expect(o, unittest.hasLength(2)); |
2873 checkCall(o[0]); | 2873 checkCall(o[0]); |
2874 checkCall(o[1]); | 2874 checkCall(o[1]); |
2875 } | 2875 } |
2876 | 2876 |
2877 buildUnnamed1577() { | 2877 buildUnnamed2450() { |
2878 var o = new core.List<core.String>(); | 2878 var o = new core.List<core.String>(); |
2879 o.add("foo"); | 2879 o.add("foo"); |
2880 o.add("foo"); | 2880 o.add("foo"); |
2881 return o; | 2881 return o; |
2882 } | 2882 } |
2883 | 2883 |
2884 checkUnnamed1577(core.List<core.String> o) { | 2884 checkUnnamed2450(core.List<core.String> o) { |
2885 unittest.expect(o, unittest.hasLength(2)); | 2885 unittest.expect(o, unittest.hasLength(2)); |
2886 unittest.expect(o[0], unittest.equals('foo')); | 2886 unittest.expect(o[0], unittest.equals('foo')); |
2887 unittest.expect(o[1], unittest.equals('foo')); | 2887 unittest.expect(o[1], unittest.equals('foo')); |
2888 } | 2888 } |
2889 | 2889 |
2890 buildUnnamed1578() { | 2890 buildUnnamed2451() { |
2891 var o = new core.List<core.String>(); | 2891 var o = new core.List<core.String>(); |
2892 o.add("foo"); | 2892 o.add("foo"); |
2893 o.add("foo"); | 2893 o.add("foo"); |
2894 return o; | 2894 return o; |
2895 } | 2895 } |
2896 | 2896 |
2897 checkUnnamed1578(core.List<core.String> o) { | 2897 checkUnnamed2451(core.List<core.String> o) { |
2898 unittest.expect(o, unittest.hasLength(2)); | 2898 unittest.expect(o, unittest.hasLength(2)); |
2899 unittest.expect(o[0], unittest.equals('foo')); | 2899 unittest.expect(o[0], unittest.equals('foo')); |
2900 unittest.expect(o[1], unittest.equals('foo')); | 2900 unittest.expect(o[1], unittest.equals('foo')); |
2901 } | 2901 } |
2902 | 2902 |
2903 buildUnnamed1579() { | 2903 buildUnnamed2452() { |
2904 var o = new core.Map<core.String, core.List<core.String>>(); | 2904 var o = new core.Map<core.String, core.List<core.String>>(); |
2905 o["x"] = buildUnnamed1578(); | 2905 o["x"] = buildUnnamed2451(); |
2906 o["y"] = buildUnnamed1578(); | 2906 o["y"] = buildUnnamed2451(); |
2907 return o; | 2907 return o; |
2908 } | 2908 } |
2909 | 2909 |
2910 checkUnnamed1579(core.Map<core.String, core.List<core.String>> o) { | 2910 checkUnnamed2452(core.Map<core.String, core.List<core.String>> o) { |
2911 unittest.expect(o, unittest.hasLength(2)); | 2911 unittest.expect(o, unittest.hasLength(2)); |
2912 checkUnnamed1578(o["x"]); | 2912 checkUnnamed2451(o["x"]); |
2913 checkUnnamed1578(o["y"]); | 2913 checkUnnamed2451(o["y"]); |
2914 } | 2914 } |
2915 | 2915 |
2916 buildUnnamed1580() { | 2916 buildUnnamed2453() { |
2917 var o = new core.List<core.String>(); | 2917 var o = new core.List<core.String>(); |
2918 o.add("foo"); | 2918 o.add("foo"); |
2919 o.add("foo"); | 2919 o.add("foo"); |
2920 return o; | 2920 return o; |
2921 } | 2921 } |
2922 | 2922 |
2923 checkUnnamed1580(core.List<core.String> o) { | 2923 checkUnnamed2453(core.List<core.String> o) { |
2924 unittest.expect(o, unittest.hasLength(2)); | 2924 unittest.expect(o, unittest.hasLength(2)); |
2925 unittest.expect(o[0], unittest.equals('foo')); | 2925 unittest.expect(o[0], unittest.equals('foo')); |
2926 unittest.expect(o[1], unittest.equals('foo')); | 2926 unittest.expect(o[1], unittest.equals('foo')); |
2927 } | 2927 } |
2928 | 2928 |
2929 core.int buildCounterVariant = 0; | 2929 core.int buildCounterVariant = 0; |
2930 buildVariant() { | 2930 buildVariant() { |
2931 var o = new api.Variant(); | 2931 var o = new api.Variant(); |
2932 buildCounterVariant++; | 2932 buildCounterVariant++; |
2933 if (buildCounterVariant < 3) { | 2933 if (buildCounterVariant < 3) { |
2934 o.alternateBases = buildUnnamed1575(); | 2934 o.alternateBases = buildUnnamed2448(); |
2935 o.calls = buildUnnamed1576(); | 2935 o.calls = buildUnnamed2449(); |
2936 o.created = "foo"; | 2936 o.created = "foo"; |
2937 o.end = "foo"; | 2937 o.end = "foo"; |
2938 o.filter = buildUnnamed1577(); | 2938 o.filter = buildUnnamed2450(); |
2939 o.id = "foo"; | 2939 o.id = "foo"; |
2940 o.info = buildUnnamed1579(); | 2940 o.info = buildUnnamed2452(); |
2941 o.names = buildUnnamed1580(); | 2941 o.names = buildUnnamed2453(); |
2942 o.quality = 42.0; | 2942 o.quality = 42.0; |
2943 o.referenceBases = "foo"; | 2943 o.referenceBases = "foo"; |
2944 o.referenceName = "foo"; | 2944 o.referenceName = "foo"; |
2945 o.start = "foo"; | 2945 o.start = "foo"; |
2946 o.variantSetId = "foo"; | 2946 o.variantSetId = "foo"; |
2947 } | 2947 } |
2948 buildCounterVariant--; | 2948 buildCounterVariant--; |
2949 return o; | 2949 return o; |
2950 } | 2950 } |
2951 | 2951 |
2952 checkVariant(api.Variant o) { | 2952 checkVariant(api.Variant o) { |
2953 buildCounterVariant++; | 2953 buildCounterVariant++; |
2954 if (buildCounterVariant < 3) { | 2954 if (buildCounterVariant < 3) { |
2955 checkUnnamed1575(o.alternateBases); | 2955 checkUnnamed2448(o.alternateBases); |
2956 checkUnnamed1576(o.calls); | 2956 checkUnnamed2449(o.calls); |
2957 unittest.expect(o.created, unittest.equals('foo')); | 2957 unittest.expect(o.created, unittest.equals('foo')); |
2958 unittest.expect(o.end, unittest.equals('foo')); | 2958 unittest.expect(o.end, unittest.equals('foo')); |
2959 checkUnnamed1577(o.filter); | 2959 checkUnnamed2450(o.filter); |
2960 unittest.expect(o.id, unittest.equals('foo')); | 2960 unittest.expect(o.id, unittest.equals('foo')); |
2961 checkUnnamed1579(o.info); | 2961 checkUnnamed2452(o.info); |
2962 checkUnnamed1580(o.names); | 2962 checkUnnamed2453(o.names); |
2963 unittest.expect(o.quality, unittest.equals(42.0)); | 2963 unittest.expect(o.quality, unittest.equals(42.0)); |
2964 unittest.expect(o.referenceBases, unittest.equals('foo')); | 2964 unittest.expect(o.referenceBases, unittest.equals('foo')); |
2965 unittest.expect(o.referenceName, unittest.equals('foo')); | 2965 unittest.expect(o.referenceName, unittest.equals('foo')); |
2966 unittest.expect(o.start, unittest.equals('foo')); | 2966 unittest.expect(o.start, unittest.equals('foo')); |
2967 unittest.expect(o.variantSetId, unittest.equals('foo')); | 2967 unittest.expect(o.variantSetId, unittest.equals('foo')); |
2968 } | 2968 } |
2969 buildCounterVariant--; | 2969 buildCounterVariant--; |
2970 } | 2970 } |
2971 | 2971 |
2972 buildUnnamed1581() { | 2972 buildUnnamed2454() { |
2973 var o = new core.List<api.VariantAnnotationCondition>(); | 2973 var o = new core.List<api.VariantAnnotationCondition>(); |
2974 o.add(buildVariantAnnotationCondition()); | 2974 o.add(buildVariantAnnotationCondition()); |
2975 o.add(buildVariantAnnotationCondition()); | 2975 o.add(buildVariantAnnotationCondition()); |
2976 return o; | 2976 return o; |
2977 } | 2977 } |
2978 | 2978 |
2979 checkUnnamed1581(core.List<api.VariantAnnotationCondition> o) { | 2979 checkUnnamed2454(core.List<api.VariantAnnotationCondition> o) { |
2980 unittest.expect(o, unittest.hasLength(2)); | 2980 unittest.expect(o, unittest.hasLength(2)); |
2981 checkVariantAnnotationCondition(o[0]); | 2981 checkVariantAnnotationCondition(o[0]); |
2982 checkVariantAnnotationCondition(o[1]); | 2982 checkVariantAnnotationCondition(o[1]); |
2983 } | 2983 } |
2984 | 2984 |
2985 buildUnnamed1582() { | 2985 buildUnnamed2455() { |
2986 var o = new core.List<core.String>(); | 2986 var o = new core.List<core.String>(); |
2987 o.add("foo"); | 2987 o.add("foo"); |
2988 o.add("foo"); | 2988 o.add("foo"); |
2989 return o; | 2989 return o; |
2990 } | 2990 } |
2991 | 2991 |
2992 checkUnnamed1582(core.List<core.String> o) { | 2992 checkUnnamed2455(core.List<core.String> o) { |
2993 unittest.expect(o, unittest.hasLength(2)); | 2993 unittest.expect(o, unittest.hasLength(2)); |
2994 unittest.expect(o[0], unittest.equals('foo')); | 2994 unittest.expect(o[0], unittest.equals('foo')); |
2995 unittest.expect(o[1], unittest.equals('foo')); | 2995 unittest.expect(o[1], unittest.equals('foo')); |
2996 } | 2996 } |
2997 | 2997 |
2998 core.int buildCounterVariantAnnotation = 0; | 2998 core.int buildCounterVariantAnnotation = 0; |
2999 buildVariantAnnotation() { | 2999 buildVariantAnnotation() { |
3000 var o = new api.VariantAnnotation(); | 3000 var o = new api.VariantAnnotation(); |
3001 buildCounterVariantAnnotation++; | 3001 buildCounterVariantAnnotation++; |
3002 if (buildCounterVariantAnnotation < 3) { | 3002 if (buildCounterVariantAnnotation < 3) { |
3003 o.alternateBases = "foo"; | 3003 o.alternateBases = "foo"; |
3004 o.clinicalSignificance = "foo"; | 3004 o.clinicalSignificance = "foo"; |
3005 o.conditions = buildUnnamed1581(); | 3005 o.conditions = buildUnnamed2454(); |
3006 o.effect = "foo"; | 3006 o.effect = "foo"; |
3007 o.geneId = "foo"; | 3007 o.geneId = "foo"; |
3008 o.transcriptIds = buildUnnamed1582(); | 3008 o.transcriptIds = buildUnnamed2455(); |
3009 o.type = "foo"; | 3009 o.type = "foo"; |
3010 } | 3010 } |
3011 buildCounterVariantAnnotation--; | 3011 buildCounterVariantAnnotation--; |
3012 return o; | 3012 return o; |
3013 } | 3013 } |
3014 | 3014 |
3015 checkVariantAnnotation(api.VariantAnnotation o) { | 3015 checkVariantAnnotation(api.VariantAnnotation o) { |
3016 buildCounterVariantAnnotation++; | 3016 buildCounterVariantAnnotation++; |
3017 if (buildCounterVariantAnnotation < 3) { | 3017 if (buildCounterVariantAnnotation < 3) { |
3018 unittest.expect(o.alternateBases, unittest.equals('foo')); | 3018 unittest.expect(o.alternateBases, unittest.equals('foo')); |
3019 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); | 3019 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); |
3020 checkUnnamed1581(o.conditions); | 3020 checkUnnamed2454(o.conditions); |
3021 unittest.expect(o.effect, unittest.equals('foo')); | 3021 unittest.expect(o.effect, unittest.equals('foo')); |
3022 unittest.expect(o.geneId, unittest.equals('foo')); | 3022 unittest.expect(o.geneId, unittest.equals('foo')); |
3023 checkUnnamed1582(o.transcriptIds); | 3023 checkUnnamed2455(o.transcriptIds); |
3024 unittest.expect(o.type, unittest.equals('foo')); | 3024 unittest.expect(o.type, unittest.equals('foo')); |
3025 } | 3025 } |
3026 buildCounterVariantAnnotation--; | 3026 buildCounterVariantAnnotation--; |
3027 } | 3027 } |
3028 | 3028 |
3029 buildUnnamed1583() { | 3029 buildUnnamed2456() { |
3030 var o = new core.List<api.ExternalId>(); | 3030 var o = new core.List<api.ExternalId>(); |
3031 o.add(buildExternalId()); | 3031 o.add(buildExternalId()); |
3032 o.add(buildExternalId()); | 3032 o.add(buildExternalId()); |
3033 return o; | 3033 return o; |
3034 } | 3034 } |
3035 | 3035 |
3036 checkUnnamed1583(core.List<api.ExternalId> o) { | 3036 checkUnnamed2456(core.List<api.ExternalId> o) { |
3037 unittest.expect(o, unittest.hasLength(2)); | 3037 unittest.expect(o, unittest.hasLength(2)); |
3038 checkExternalId(o[0]); | 3038 checkExternalId(o[0]); |
3039 checkExternalId(o[1]); | 3039 checkExternalId(o[1]); |
3040 } | 3040 } |
3041 | 3041 |
3042 buildUnnamed1584() { | 3042 buildUnnamed2457() { |
3043 var o = new core.List<core.String>(); | 3043 var o = new core.List<core.String>(); |
3044 o.add("foo"); | 3044 o.add("foo"); |
3045 o.add("foo"); | 3045 o.add("foo"); |
3046 return o; | 3046 return o; |
3047 } | 3047 } |
3048 | 3048 |
3049 checkUnnamed1584(core.List<core.String> o) { | 3049 checkUnnamed2457(core.List<core.String> o) { |
3050 unittest.expect(o, unittest.hasLength(2)); | 3050 unittest.expect(o, unittest.hasLength(2)); |
3051 unittest.expect(o[0], unittest.equals('foo')); | 3051 unittest.expect(o[0], unittest.equals('foo')); |
3052 unittest.expect(o[1], unittest.equals('foo')); | 3052 unittest.expect(o[1], unittest.equals('foo')); |
3053 } | 3053 } |
3054 | 3054 |
3055 core.int buildCounterVariantAnnotationCondition = 0; | 3055 core.int buildCounterVariantAnnotationCondition = 0; |
3056 buildVariantAnnotationCondition() { | 3056 buildVariantAnnotationCondition() { |
3057 var o = new api.VariantAnnotationCondition(); | 3057 var o = new api.VariantAnnotationCondition(); |
3058 buildCounterVariantAnnotationCondition++; | 3058 buildCounterVariantAnnotationCondition++; |
3059 if (buildCounterVariantAnnotationCondition < 3) { | 3059 if (buildCounterVariantAnnotationCondition < 3) { |
3060 o.conceptId = "foo"; | 3060 o.conceptId = "foo"; |
3061 o.externalIds = buildUnnamed1583(); | 3061 o.externalIds = buildUnnamed2456(); |
3062 o.names = buildUnnamed1584(); | 3062 o.names = buildUnnamed2457(); |
3063 o.omimId = "foo"; | 3063 o.omimId = "foo"; |
3064 } | 3064 } |
3065 buildCounterVariantAnnotationCondition--; | 3065 buildCounterVariantAnnotationCondition--; |
3066 return o; | 3066 return o; |
3067 } | 3067 } |
3068 | 3068 |
3069 checkVariantAnnotationCondition(api.VariantAnnotationCondition o) { | 3069 checkVariantAnnotationCondition(api.VariantAnnotationCondition o) { |
3070 buildCounterVariantAnnotationCondition++; | 3070 buildCounterVariantAnnotationCondition++; |
3071 if (buildCounterVariantAnnotationCondition < 3) { | 3071 if (buildCounterVariantAnnotationCondition < 3) { |
3072 unittest.expect(o.conceptId, unittest.equals('foo')); | 3072 unittest.expect(o.conceptId, unittest.equals('foo')); |
3073 checkUnnamed1583(o.externalIds); | 3073 checkUnnamed2456(o.externalIds); |
3074 checkUnnamed1584(o.names); | 3074 checkUnnamed2457(o.names); |
3075 unittest.expect(o.omimId, unittest.equals('foo')); | 3075 unittest.expect(o.omimId, unittest.equals('foo')); |
3076 } | 3076 } |
3077 buildCounterVariantAnnotationCondition--; | 3077 buildCounterVariantAnnotationCondition--; |
3078 } | 3078 } |
3079 | 3079 |
3080 buildUnnamed1585() { | 3080 buildUnnamed2458() { |
3081 var o = new core.List<api.Metadata>(); | 3081 var o = new core.List<api.Metadata>(); |
3082 o.add(buildMetadata()); | 3082 o.add(buildMetadata()); |
3083 o.add(buildMetadata()); | 3083 o.add(buildMetadata()); |
3084 return o; | 3084 return o; |
3085 } | 3085 } |
3086 | 3086 |
3087 checkUnnamed1585(core.List<api.Metadata> o) { | 3087 checkUnnamed2458(core.List<api.Metadata> o) { |
3088 unittest.expect(o, unittest.hasLength(2)); | 3088 unittest.expect(o, unittest.hasLength(2)); |
3089 checkMetadata(o[0]); | 3089 checkMetadata(o[0]); |
3090 checkMetadata(o[1]); | 3090 checkMetadata(o[1]); |
3091 } | 3091 } |
3092 | 3092 |
3093 buildUnnamed1586() { | 3093 buildUnnamed2459() { |
3094 var o = new core.List<api.ReferenceBound>(); | 3094 var o = new core.List<api.ReferenceBound>(); |
3095 o.add(buildReferenceBound()); | 3095 o.add(buildReferenceBound()); |
3096 o.add(buildReferenceBound()); | 3096 o.add(buildReferenceBound()); |
3097 return o; | 3097 return o; |
3098 } | 3098 } |
3099 | 3099 |
3100 checkUnnamed1586(core.List<api.ReferenceBound> o) { | 3100 checkUnnamed2459(core.List<api.ReferenceBound> o) { |
3101 unittest.expect(o, unittest.hasLength(2)); | 3101 unittest.expect(o, unittest.hasLength(2)); |
3102 checkReferenceBound(o[0]); | 3102 checkReferenceBound(o[0]); |
3103 checkReferenceBound(o[1]); | 3103 checkReferenceBound(o[1]); |
3104 } | 3104 } |
3105 | 3105 |
3106 core.int buildCounterVariantSet = 0; | 3106 core.int buildCounterVariantSet = 0; |
3107 buildVariantSet() { | 3107 buildVariantSet() { |
3108 var o = new api.VariantSet(); | 3108 var o = new api.VariantSet(); |
3109 buildCounterVariantSet++; | 3109 buildCounterVariantSet++; |
3110 if (buildCounterVariantSet < 3) { | 3110 if (buildCounterVariantSet < 3) { |
3111 o.datasetId = "foo"; | 3111 o.datasetId = "foo"; |
3112 o.id = "foo"; | 3112 o.id = "foo"; |
3113 o.metadata = buildUnnamed1585(); | 3113 o.metadata = buildUnnamed2458(); |
3114 o.referenceBounds = buildUnnamed1586(); | 3114 o.referenceBounds = buildUnnamed2459(); |
3115 } | 3115 } |
3116 buildCounterVariantSet--; | 3116 buildCounterVariantSet--; |
3117 return o; | 3117 return o; |
3118 } | 3118 } |
3119 | 3119 |
3120 checkVariantSet(api.VariantSet o) { | 3120 checkVariantSet(api.VariantSet o) { |
3121 buildCounterVariantSet++; | 3121 buildCounterVariantSet++; |
3122 if (buildCounterVariantSet < 3) { | 3122 if (buildCounterVariantSet < 3) { |
3123 unittest.expect(o.datasetId, unittest.equals('foo')); | 3123 unittest.expect(o.datasetId, unittest.equals('foo')); |
3124 unittest.expect(o.id, unittest.equals('foo')); | 3124 unittest.expect(o.id, unittest.equals('foo')); |
3125 checkUnnamed1585(o.metadata); | 3125 checkUnnamed2458(o.metadata); |
3126 checkUnnamed1586(o.referenceBounds); | 3126 checkUnnamed2459(o.referenceBounds); |
3127 } | 3127 } |
3128 buildCounterVariantSet--; | 3128 buildCounterVariantSet--; |
3129 } | 3129 } |
3130 | 3130 |
3131 | 3131 |
3132 main() { | 3132 main() { |
3133 unittest.group("obj-schema-AlignReadGroupSetsRequest", () { | 3133 unittest.group("obj-schema-AlignReadGroupSetsRequest", () { |
3134 unittest.test("to-json--from-json", () { | 3134 unittest.test("to-json--from-json", () { |
3135 var o = buildAlignReadGroupSetsRequest(); | 3135 var o = buildAlignReadGroupSetsRequest(); |
3136 var od = new api.AlignReadGroupSetsRequest.fromJson(o.toJson()); | 3136 var od = new api.AlignReadGroupSetsRequest.fromJson(o.toJson()); |
(...skipping 3308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6445 }), true); | 6445 }), true); |
6446 res.update(arg_request, arg_variantId).then(unittest.expectAsync(((api.Var
iant response) { | 6446 res.update(arg_request, arg_variantId).then(unittest.expectAsync(((api.Var
iant response) { |
6447 checkVariant(response); | 6447 checkVariant(response); |
6448 }))); | 6448 }))); |
6449 }); | 6449 }); |
6450 | 6450 |
6451 }); | 6451 }); |
6452 | 6452 |
6453 | 6453 |
6454 unittest.group("resource-VariantsetsResourceApi", () { | 6454 unittest.group("resource-VariantsetsResourceApi", () { |
| 6455 unittest.test("method--create", () { |
| 6456 |
| 6457 var mock = new HttpServerMock(); |
| 6458 api.VariantsetsResourceApi res = new api.GenomicsApi(mock).variantsets; |
| 6459 var arg_request = buildVariantSet(); |
| 6460 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 6461 var obj = new api.VariantSet.fromJson(json); |
| 6462 checkVariantSet(obj); |
| 6463 |
| 6464 var path = (req.url).path; |
| 6465 var pathOffset = 0; |
| 6466 var index; |
| 6467 var subPart; |
| 6468 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 6469 pathOffset += 1; |
| 6470 unittest.expect(path.substring(pathOffset, pathOffset + 17), unittest.eq
uals("genomics/v1beta2/")); |
| 6471 pathOffset += 17; |
| 6472 unittest.expect(path.substring(pathOffset, pathOffset + 11), unittest.eq
uals("variantsets")); |
| 6473 pathOffset += 11; |
| 6474 |
| 6475 var query = (req.url).query; |
| 6476 var queryOffset = 0; |
| 6477 var queryMap = {}; |
| 6478 addQueryParam(n, v) => queryMap.putIfAbsent(n, () => []).add(v); |
| 6479 parseBool(n) { |
| 6480 if (n == "true") return true; |
| 6481 if (n == "false") return false; |
| 6482 if (n == null) return null; |
| 6483 throw new core.ArgumentError("Invalid boolean: $n"); |
| 6484 } |
| 6485 if (query.length > 0) { |
| 6486 for (var part in query.split("&")) { |
| 6487 var keyvalue = part.split("="); |
| 6488 addQueryParam(core.Uri.decodeQueryComponent(keyvalue[0]), core.Uri.d
ecodeQueryComponent(keyvalue[1])); |
| 6489 } |
| 6490 } |
| 6491 |
| 6492 |
| 6493 var h = { |
| 6494 "content-type" : "application/json; charset=utf-8", |
| 6495 }; |
| 6496 var resp = convert.JSON.encode(buildVariantSet()); |
| 6497 return new async.Future.value(stringResponse(200, h, resp)); |
| 6498 }), true); |
| 6499 res.create(arg_request).then(unittest.expectAsync(((api.VariantSet respons
e) { |
| 6500 checkVariantSet(response); |
| 6501 }))); |
| 6502 }); |
| 6503 |
6455 unittest.test("method--delete", () { | 6504 unittest.test("method--delete", () { |
6456 | 6505 |
6457 var mock = new HttpServerMock(); | 6506 var mock = new HttpServerMock(); |
6458 api.VariantsetsResourceApi res = new api.GenomicsApi(mock).variantsets; | 6507 api.VariantsetsResourceApi res = new api.GenomicsApi(mock).variantsets; |
6459 var arg_variantSetId = "foo"; | 6508 var arg_variantSetId = "foo"; |
6460 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 6509 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
6461 var path = (req.url).path; | 6510 var path = (req.url).path; |
6462 var pathOffset = 0; | 6511 var pathOffset = 0; |
6463 var index; | 6512 var index; |
6464 var subPart; | 6513 var subPart; |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6870 res.update(arg_request, arg_variantSetId).then(unittest.expectAsync(((api.
VariantSet response) { | 6919 res.update(arg_request, arg_variantSetId).then(unittest.expectAsync(((api.
VariantSet response) { |
6871 checkVariantSet(response); | 6920 checkVariantSet(response); |
6872 }))); | 6921 }))); |
6873 }); | 6922 }); |
6874 | 6923 |
6875 }); | 6924 }); |
6876 | 6925 |
6877 | 6926 |
6878 } | 6927 } |
6879 | 6928 |
OLD | NEW |