OLD | NEW |
1 library googleapis_beta.genomics.v1beta.test; | 1 library googleapis_beta.genomics.v1beta.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; |
11 import 'package:googleapis_beta/common/common.dart' as common; | 11 import 'package:googleapis_beta/common/common.dart' as common; |
12 import 'package:googleapis_beta/src/common_internal.dart' as common_internal; | 12 import 'package:googleapis_beta/src/common_internal.dart' as common_internal; |
13 import '../common/common_internal_test.dart' as common_test; | 13 import '../common/common_internal_test.dart' as common_test; |
14 | 14 |
15 import 'package:googleapis_beta/genomics/v1beta.dart' as api; | 15 import 'package:googleapis_beta/genomics/v1beta.dart' as api; |
16 | 16 |
17 | 17 |
18 | 18 |
19 buildUnnamed1337() { | 19 buildUnnamed1238() { |
20 var o = new core.List<core.int>(); | 20 var o = new core.List<core.int>(); |
21 o.add(42); | 21 o.add(42); |
22 o.add(42); | 22 o.add(42); |
23 return o; | 23 return o; |
24 } | 24 } |
25 | 25 |
26 checkUnnamed1337(core.List<core.int> o) { | 26 checkUnnamed1238(core.List<core.int> o) { |
27 unittest.expect(o, unittest.hasLength(2)); | 27 unittest.expect(o, unittest.hasLength(2)); |
28 unittest.expect(o[0], unittest.equals(42)); | 28 unittest.expect(o[0], unittest.equals(42)); |
29 unittest.expect(o[1], unittest.equals(42)); | 29 unittest.expect(o[1], unittest.equals(42)); |
30 } | 30 } |
31 | 31 |
32 buildUnnamed1338() { | 32 buildUnnamed1239() { |
33 var o = new core.List<core.double>(); | 33 var o = new core.List<core.double>(); |
34 o.add(42.0); | 34 o.add(42.0); |
35 o.add(42.0); | 35 o.add(42.0); |
36 return o; | 36 return o; |
37 } | 37 } |
38 | 38 |
39 checkUnnamed1338(core.List<core.double> o) { | 39 checkUnnamed1239(core.List<core.double> o) { |
40 unittest.expect(o, unittest.hasLength(2)); | 40 unittest.expect(o, unittest.hasLength(2)); |
41 unittest.expect(o[0], unittest.equals(42.0)); | 41 unittest.expect(o[0], unittest.equals(42.0)); |
42 unittest.expect(o[1], unittest.equals(42.0)); | 42 unittest.expect(o[1], unittest.equals(42.0)); |
43 } | 43 } |
44 | 44 |
45 buildUnnamed1339() { | 45 buildUnnamed1240() { |
46 var o = new core.List<core.String>(); | 46 var o = new core.List<core.String>(); |
47 o.add("foo"); | 47 o.add("foo"); |
48 o.add("foo"); | 48 o.add("foo"); |
49 return o; | 49 return o; |
50 } | 50 } |
51 | 51 |
52 checkUnnamed1339(core.List<core.String> o) { | 52 checkUnnamed1240(core.List<core.String> o) { |
53 unittest.expect(o, unittest.hasLength(2)); | 53 unittest.expect(o, unittest.hasLength(2)); |
54 unittest.expect(o[0], unittest.equals('foo')); | 54 unittest.expect(o[0], unittest.equals('foo')); |
55 unittest.expect(o[1], unittest.equals('foo')); | 55 unittest.expect(o[1], unittest.equals('foo')); |
56 } | 56 } |
57 | 57 |
58 buildUnnamed1340() { | 58 buildUnnamed1241() { |
59 var o = new core.Map<core.String, core.List<core.String>>(); | 59 var o = new core.Map<core.String, core.List<core.String>>(); |
60 o["x"] = buildUnnamed1339(); | 60 o["x"] = buildUnnamed1240(); |
61 o["y"] = buildUnnamed1339(); | 61 o["y"] = buildUnnamed1240(); |
62 return o; | 62 return o; |
63 } | 63 } |
64 | 64 |
65 checkUnnamed1340(core.Map<core.String, core.List<core.String>> o) { | 65 checkUnnamed1241(core.Map<core.String, core.List<core.String>> o) { |
66 unittest.expect(o, unittest.hasLength(2)); | 66 unittest.expect(o, unittest.hasLength(2)); |
67 checkUnnamed1339(o["x"]); | 67 checkUnnamed1240(o["x"]); |
68 checkUnnamed1339(o["y"]); | 68 checkUnnamed1240(o["y"]); |
69 } | 69 } |
70 | 70 |
71 core.int buildCounterCall = 0; | 71 core.int buildCounterCall = 0; |
72 buildCall() { | 72 buildCall() { |
73 var o = new api.Call(); | 73 var o = new api.Call(); |
74 buildCounterCall++; | 74 buildCounterCall++; |
75 if (buildCounterCall < 3) { | 75 if (buildCounterCall < 3) { |
76 o.callSetId = "foo"; | 76 o.callSetId = "foo"; |
77 o.callSetName = "foo"; | 77 o.callSetName = "foo"; |
78 o.genotype = buildUnnamed1337(); | 78 o.genotype = buildUnnamed1238(); |
79 o.genotypeLikelihood = buildUnnamed1338(); | 79 o.genotypeLikelihood = buildUnnamed1239(); |
80 o.info = buildUnnamed1340(); | 80 o.info = buildUnnamed1241(); |
81 o.phaseset = "foo"; | 81 o.phaseset = "foo"; |
82 } | 82 } |
83 buildCounterCall--; | 83 buildCounterCall--; |
84 return o; | 84 return o; |
85 } | 85 } |
86 | 86 |
87 checkCall(api.Call o) { | 87 checkCall(api.Call o) { |
88 buildCounterCall++; | 88 buildCounterCall++; |
89 if (buildCounterCall < 3) { | 89 if (buildCounterCall < 3) { |
90 unittest.expect(o.callSetId, unittest.equals('foo')); | 90 unittest.expect(o.callSetId, unittest.equals('foo')); |
91 unittest.expect(o.callSetName, unittest.equals('foo')); | 91 unittest.expect(o.callSetName, unittest.equals('foo')); |
92 checkUnnamed1337(o.genotype); | 92 checkUnnamed1238(o.genotype); |
93 checkUnnamed1338(o.genotypeLikelihood); | 93 checkUnnamed1239(o.genotypeLikelihood); |
94 checkUnnamed1340(o.info); | 94 checkUnnamed1241(o.info); |
95 unittest.expect(o.phaseset, unittest.equals('foo')); | 95 unittest.expect(o.phaseset, unittest.equals('foo')); |
96 } | 96 } |
97 buildCounterCall--; | 97 buildCounterCall--; |
98 } | 98 } |
99 | 99 |
100 buildUnnamed1341() { | 100 buildUnnamed1242() { |
101 var o = new core.List<core.String>(); | 101 var o = new core.List<core.String>(); |
102 o.add("foo"); | 102 o.add("foo"); |
103 o.add("foo"); | 103 o.add("foo"); |
104 return o; | 104 return o; |
105 } | 105 } |
106 | 106 |
107 checkUnnamed1341(core.List<core.String> o) { | 107 checkUnnamed1242(core.List<core.String> o) { |
108 unittest.expect(o, unittest.hasLength(2)); | 108 unittest.expect(o, unittest.hasLength(2)); |
109 unittest.expect(o[0], unittest.equals('foo')); | 109 unittest.expect(o[0], unittest.equals('foo')); |
110 unittest.expect(o[1], unittest.equals('foo')); | 110 unittest.expect(o[1], unittest.equals('foo')); |
111 } | 111 } |
112 | 112 |
113 buildUnnamed1342() { | 113 buildUnnamed1243() { |
114 var o = new core.Map<core.String, core.List<core.String>>(); | 114 var o = new core.Map<core.String, core.List<core.String>>(); |
115 o["x"] = buildUnnamed1341(); | 115 o["x"] = buildUnnamed1242(); |
116 o["y"] = buildUnnamed1341(); | 116 o["y"] = buildUnnamed1242(); |
117 return o; | 117 return o; |
118 } | 118 } |
119 | 119 |
120 checkUnnamed1342(core.Map<core.String, core.List<core.String>> o) { | 120 checkUnnamed1243(core.Map<core.String, core.List<core.String>> o) { |
121 unittest.expect(o, unittest.hasLength(2)); | 121 unittest.expect(o, unittest.hasLength(2)); |
122 checkUnnamed1341(o["x"]); | 122 checkUnnamed1242(o["x"]); |
123 checkUnnamed1341(o["y"]); | 123 checkUnnamed1242(o["y"]); |
124 } | 124 } |
125 | 125 |
126 buildUnnamed1343() { | 126 buildUnnamed1244() { |
127 var o = new core.List<core.String>(); | 127 var o = new core.List<core.String>(); |
128 o.add("foo"); | 128 o.add("foo"); |
129 o.add("foo"); | 129 o.add("foo"); |
130 return o; | 130 return o; |
131 } | 131 } |
132 | 132 |
133 checkUnnamed1343(core.List<core.String> o) { | 133 checkUnnamed1244(core.List<core.String> o) { |
134 unittest.expect(o, unittest.hasLength(2)); | 134 unittest.expect(o, unittest.hasLength(2)); |
135 unittest.expect(o[0], unittest.equals('foo')); | 135 unittest.expect(o[0], unittest.equals('foo')); |
136 unittest.expect(o[1], unittest.equals('foo')); | 136 unittest.expect(o[1], unittest.equals('foo')); |
137 } | 137 } |
138 | 138 |
139 core.int buildCounterCallSet = 0; | 139 core.int buildCounterCallSet = 0; |
140 buildCallSet() { | 140 buildCallSet() { |
141 var o = new api.CallSet(); | 141 var o = new api.CallSet(); |
142 buildCounterCallSet++; | 142 buildCounterCallSet++; |
143 if (buildCounterCallSet < 3) { | 143 if (buildCounterCallSet < 3) { |
144 o.created = "foo"; | 144 o.created = "foo"; |
145 o.id = "foo"; | 145 o.id = "foo"; |
146 o.info = buildUnnamed1342(); | 146 o.info = buildUnnamed1243(); |
147 o.name = "foo"; | 147 o.name = "foo"; |
148 o.sampleId = "foo"; | 148 o.sampleId = "foo"; |
149 o.variantSetIds = buildUnnamed1343(); | 149 o.variantSetIds = buildUnnamed1244(); |
150 } | 150 } |
151 buildCounterCallSet--; | 151 buildCounterCallSet--; |
152 return o; | 152 return o; |
153 } | 153 } |
154 | 154 |
155 checkCallSet(api.CallSet o) { | 155 checkCallSet(api.CallSet o) { |
156 buildCounterCallSet++; | 156 buildCounterCallSet++; |
157 if (buildCounterCallSet < 3) { | 157 if (buildCounterCallSet < 3) { |
158 unittest.expect(o.created, unittest.equals('foo')); | 158 unittest.expect(o.created, unittest.equals('foo')); |
159 unittest.expect(o.id, unittest.equals('foo')); | 159 unittest.expect(o.id, unittest.equals('foo')); |
160 checkUnnamed1342(o.info); | 160 checkUnnamed1243(o.info); |
161 unittest.expect(o.name, unittest.equals('foo')); | 161 unittest.expect(o.name, unittest.equals('foo')); |
162 unittest.expect(o.sampleId, unittest.equals('foo')); | 162 unittest.expect(o.sampleId, unittest.equals('foo')); |
163 checkUnnamed1343(o.variantSetIds); | 163 checkUnnamed1244(o.variantSetIds); |
164 } | 164 } |
165 buildCounterCallSet--; | 165 buildCounterCallSet--; |
166 } | 166 } |
167 | 167 |
168 core.int buildCounterCoverageBucket = 0; | 168 core.int buildCounterCoverageBucket = 0; |
169 buildCoverageBucket() { | 169 buildCoverageBucket() { |
170 var o = new api.CoverageBucket(); | 170 var o = new api.CoverageBucket(); |
171 buildCounterCoverageBucket++; | 171 buildCounterCoverageBucket++; |
172 if (buildCounterCoverageBucket < 3) { | 172 if (buildCounterCoverageBucket < 3) { |
173 o.meanCoverage = 42.0; | 173 o.meanCoverage = 42.0; |
(...skipping 30 matching lines...) Expand all Loading... |
204 buildCounterDataset++; | 204 buildCounterDataset++; |
205 if (buildCounterDataset < 3) { | 205 if (buildCounterDataset < 3) { |
206 unittest.expect(o.id, unittest.equals('foo')); | 206 unittest.expect(o.id, unittest.equals('foo')); |
207 unittest.expect(o.isPublic, unittest.isTrue); | 207 unittest.expect(o.isPublic, unittest.isTrue); |
208 unittest.expect(o.name, unittest.equals('foo')); | 208 unittest.expect(o.name, unittest.equals('foo')); |
209 unittest.expect(o.projectId, unittest.equals('foo')); | 209 unittest.expect(o.projectId, unittest.equals('foo')); |
210 } | 210 } |
211 buildCounterDataset--; | 211 buildCounterDataset--; |
212 } | 212 } |
213 | 213 |
214 buildUnnamed1344() { | 214 buildUnnamed1245() { |
215 var o = new core.List<core.String>(); | 215 var o = new core.List<core.String>(); |
216 o.add("foo"); | 216 o.add("foo"); |
217 o.add("foo"); | 217 o.add("foo"); |
218 return o; | 218 return o; |
219 } | 219 } |
220 | 220 |
221 checkUnnamed1344(core.List<core.String> o) { | 221 checkUnnamed1245(core.List<core.String> o) { |
222 unittest.expect(o, unittest.hasLength(2)); | 222 unittest.expect(o, unittest.hasLength(2)); |
223 unittest.expect(o[0], unittest.equals('foo')); | 223 unittest.expect(o[0], unittest.equals('foo')); |
224 unittest.expect(o[1], unittest.equals('foo')); | 224 unittest.expect(o[1], unittest.equals('foo')); |
225 } | 225 } |
226 | 226 |
227 buildUnnamed1345() { | 227 buildUnnamed1246() { |
228 var o = new core.List<core.String>(); | 228 var o = new core.List<core.String>(); |
229 o.add("foo"); | 229 o.add("foo"); |
230 o.add("foo"); | 230 o.add("foo"); |
231 return o; | 231 return o; |
232 } | 232 } |
233 | 233 |
234 checkUnnamed1345(core.List<core.String> o) { | 234 checkUnnamed1246(core.List<core.String> o) { |
235 unittest.expect(o, unittest.hasLength(2)); | 235 unittest.expect(o, unittest.hasLength(2)); |
236 unittest.expect(o[0], unittest.equals('foo')); | 236 unittest.expect(o[0], unittest.equals('foo')); |
237 unittest.expect(o[1], unittest.equals('foo')); | 237 unittest.expect(o[1], unittest.equals('foo')); |
238 } | 238 } |
239 | 239 |
240 core.int buildCounterExperimentalCreateJobRequest = 0; | 240 core.int buildCounterExperimentalCreateJobRequest = 0; |
241 buildExperimentalCreateJobRequest() { | 241 buildExperimentalCreateJobRequest() { |
242 var o = new api.ExperimentalCreateJobRequest(); | 242 var o = new api.ExperimentalCreateJobRequest(); |
243 buildCounterExperimentalCreateJobRequest++; | 243 buildCounterExperimentalCreateJobRequest++; |
244 if (buildCounterExperimentalCreateJobRequest < 3) { | 244 if (buildCounterExperimentalCreateJobRequest < 3) { |
245 o.align = true; | 245 o.align = true; |
246 o.callVariants = true; | 246 o.callVariants = true; |
247 o.gcsOutputPath = "foo"; | 247 o.gcsOutputPath = "foo"; |
248 o.pairedSourceUris = buildUnnamed1344(); | 248 o.pairedSourceUris = buildUnnamed1245(); |
249 o.projectId = "foo"; | 249 o.projectId = "foo"; |
250 o.sourceUris = buildUnnamed1345(); | 250 o.sourceUris = buildUnnamed1246(); |
251 } | 251 } |
252 buildCounterExperimentalCreateJobRequest--; | 252 buildCounterExperimentalCreateJobRequest--; |
253 return o; | 253 return o; |
254 } | 254 } |
255 | 255 |
256 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { | 256 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { |
257 buildCounterExperimentalCreateJobRequest++; | 257 buildCounterExperimentalCreateJobRequest++; |
258 if (buildCounterExperimentalCreateJobRequest < 3) { | 258 if (buildCounterExperimentalCreateJobRequest < 3) { |
259 unittest.expect(o.align, unittest.isTrue); | 259 unittest.expect(o.align, unittest.isTrue); |
260 unittest.expect(o.callVariants, unittest.isTrue); | 260 unittest.expect(o.callVariants, unittest.isTrue); |
261 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); | 261 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); |
262 checkUnnamed1344(o.pairedSourceUris); | 262 checkUnnamed1245(o.pairedSourceUris); |
263 unittest.expect(o.projectId, unittest.equals('foo')); | 263 unittest.expect(o.projectId, unittest.equals('foo')); |
264 checkUnnamed1345(o.sourceUris); | 264 checkUnnamed1246(o.sourceUris); |
265 } | 265 } |
266 buildCounterExperimentalCreateJobRequest--; | 266 buildCounterExperimentalCreateJobRequest--; |
267 } | 267 } |
268 | 268 |
269 core.int buildCounterExperimentalCreateJobResponse = 0; | 269 core.int buildCounterExperimentalCreateJobResponse = 0; |
270 buildExperimentalCreateJobResponse() { | 270 buildExperimentalCreateJobResponse() { |
271 var o = new api.ExperimentalCreateJobResponse(); | 271 var o = new api.ExperimentalCreateJobResponse(); |
272 buildCounterExperimentalCreateJobResponse++; | 272 buildCounterExperimentalCreateJobResponse++; |
273 if (buildCounterExperimentalCreateJobResponse < 3) { | 273 if (buildCounterExperimentalCreateJobResponse < 3) { |
274 o.jobId = "foo"; | 274 o.jobId = "foo"; |
275 } | 275 } |
276 buildCounterExperimentalCreateJobResponse--; | 276 buildCounterExperimentalCreateJobResponse--; |
277 return o; | 277 return o; |
278 } | 278 } |
279 | 279 |
280 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { | 280 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { |
281 buildCounterExperimentalCreateJobResponse++; | 281 buildCounterExperimentalCreateJobResponse++; |
282 if (buildCounterExperimentalCreateJobResponse < 3) { | 282 if (buildCounterExperimentalCreateJobResponse < 3) { |
283 unittest.expect(o.jobId, unittest.equals('foo')); | 283 unittest.expect(o.jobId, unittest.equals('foo')); |
284 } | 284 } |
285 buildCounterExperimentalCreateJobResponse--; | 285 buildCounterExperimentalCreateJobResponse--; |
286 } | 286 } |
287 | 287 |
288 buildUnnamed1346() { | 288 buildUnnamed1247() { |
289 var o = new core.List<core.String>(); | 289 var o = new core.List<core.String>(); |
290 o.add("foo"); | 290 o.add("foo"); |
291 o.add("foo"); | 291 o.add("foo"); |
292 return o; | 292 return o; |
293 } | 293 } |
294 | 294 |
295 checkUnnamed1346(core.List<core.String> o) { | 295 checkUnnamed1247(core.List<core.String> o) { |
296 unittest.expect(o, unittest.hasLength(2)); | 296 unittest.expect(o, unittest.hasLength(2)); |
297 unittest.expect(o[0], unittest.equals('foo')); | 297 unittest.expect(o[0], unittest.equals('foo')); |
298 unittest.expect(o[1], unittest.equals('foo')); | 298 unittest.expect(o[1], unittest.equals('foo')); |
299 } | 299 } |
300 | 300 |
301 buildUnnamed1347() { | 301 buildUnnamed1248() { |
302 var o = new core.List<core.String>(); | 302 var o = new core.List<core.String>(); |
303 o.add("foo"); | 303 o.add("foo"); |
304 o.add("foo"); | 304 o.add("foo"); |
305 return o; | 305 return o; |
306 } | 306 } |
307 | 307 |
308 checkUnnamed1347(core.List<core.String> o) { | 308 checkUnnamed1248(core.List<core.String> o) { |
309 unittest.expect(o, unittest.hasLength(2)); | 309 unittest.expect(o, unittest.hasLength(2)); |
310 unittest.expect(o[0], unittest.equals('foo')); | 310 unittest.expect(o[0], unittest.equals('foo')); |
311 unittest.expect(o[1], unittest.equals('foo')); | 311 unittest.expect(o[1], unittest.equals('foo')); |
312 } | 312 } |
313 | 313 |
314 core.int buildCounterExportReadsetsRequest = 0; | 314 core.int buildCounterExportReadsetsRequest = 0; |
315 buildExportReadsetsRequest() { | 315 buildExportReadsetsRequest() { |
316 var o = new api.ExportReadsetsRequest(); | 316 var o = new api.ExportReadsetsRequest(); |
317 buildCounterExportReadsetsRequest++; | 317 buildCounterExportReadsetsRequest++; |
318 if (buildCounterExportReadsetsRequest < 3) { | 318 if (buildCounterExportReadsetsRequest < 3) { |
319 o.exportUri = "foo"; | 319 o.exportUri = "foo"; |
320 o.projectId = "foo"; | 320 o.projectId = "foo"; |
321 o.readsetIds = buildUnnamed1346(); | 321 o.readsetIds = buildUnnamed1247(); |
322 o.referenceNames = buildUnnamed1347(); | 322 o.referenceNames = buildUnnamed1248(); |
323 } | 323 } |
324 buildCounterExportReadsetsRequest--; | 324 buildCounterExportReadsetsRequest--; |
325 return o; | 325 return o; |
326 } | 326 } |
327 | 327 |
328 checkExportReadsetsRequest(api.ExportReadsetsRequest o) { | 328 checkExportReadsetsRequest(api.ExportReadsetsRequest o) { |
329 buildCounterExportReadsetsRequest++; | 329 buildCounterExportReadsetsRequest++; |
330 if (buildCounterExportReadsetsRequest < 3) { | 330 if (buildCounterExportReadsetsRequest < 3) { |
331 unittest.expect(o.exportUri, unittest.equals('foo')); | 331 unittest.expect(o.exportUri, unittest.equals('foo')); |
332 unittest.expect(o.projectId, unittest.equals('foo')); | 332 unittest.expect(o.projectId, unittest.equals('foo')); |
333 checkUnnamed1346(o.readsetIds); | 333 checkUnnamed1247(o.readsetIds); |
334 checkUnnamed1347(o.referenceNames); | 334 checkUnnamed1248(o.referenceNames); |
335 } | 335 } |
336 buildCounterExportReadsetsRequest--; | 336 buildCounterExportReadsetsRequest--; |
337 } | 337 } |
338 | 338 |
339 core.int buildCounterExportReadsetsResponse = 0; | 339 core.int buildCounterExportReadsetsResponse = 0; |
340 buildExportReadsetsResponse() { | 340 buildExportReadsetsResponse() { |
341 var o = new api.ExportReadsetsResponse(); | 341 var o = new api.ExportReadsetsResponse(); |
342 buildCounterExportReadsetsResponse++; | 342 buildCounterExportReadsetsResponse++; |
343 if (buildCounterExportReadsetsResponse < 3) { | 343 if (buildCounterExportReadsetsResponse < 3) { |
344 o.jobId = "foo"; | 344 o.jobId = "foo"; |
345 } | 345 } |
346 buildCounterExportReadsetsResponse--; | 346 buildCounterExportReadsetsResponse--; |
347 return o; | 347 return o; |
348 } | 348 } |
349 | 349 |
350 checkExportReadsetsResponse(api.ExportReadsetsResponse o) { | 350 checkExportReadsetsResponse(api.ExportReadsetsResponse o) { |
351 buildCounterExportReadsetsResponse++; | 351 buildCounterExportReadsetsResponse++; |
352 if (buildCounterExportReadsetsResponse < 3) { | 352 if (buildCounterExportReadsetsResponse < 3) { |
353 unittest.expect(o.jobId, unittest.equals('foo')); | 353 unittest.expect(o.jobId, unittest.equals('foo')); |
354 } | 354 } |
355 buildCounterExportReadsetsResponse--; | 355 buildCounterExportReadsetsResponse--; |
356 } | 356 } |
357 | 357 |
358 buildUnnamed1348() { | 358 buildUnnamed1249() { |
359 var o = new core.List<core.String>(); | 359 var o = new core.List<core.String>(); |
360 o.add("foo"); | 360 o.add("foo"); |
361 o.add("foo"); | 361 o.add("foo"); |
362 return o; | 362 return o; |
363 } | 363 } |
364 | 364 |
365 checkUnnamed1348(core.List<core.String> o) { | 365 checkUnnamed1249(core.List<core.String> o) { |
366 unittest.expect(o, unittest.hasLength(2)); | 366 unittest.expect(o, unittest.hasLength(2)); |
367 unittest.expect(o[0], unittest.equals('foo')); | 367 unittest.expect(o[0], unittest.equals('foo')); |
368 unittest.expect(o[1], unittest.equals('foo')); | 368 unittest.expect(o[1], unittest.equals('foo')); |
369 } | 369 } |
370 | 370 |
371 core.int buildCounterExportVariantsRequest = 0; | 371 core.int buildCounterExportVariantsRequest = 0; |
372 buildExportVariantsRequest() { | 372 buildExportVariantsRequest() { |
373 var o = new api.ExportVariantsRequest(); | 373 var o = new api.ExportVariantsRequest(); |
374 buildCounterExportVariantsRequest++; | 374 buildCounterExportVariantsRequest++; |
375 if (buildCounterExportVariantsRequest < 3) { | 375 if (buildCounterExportVariantsRequest < 3) { |
376 o.bigqueryDataset = "foo"; | 376 o.bigqueryDataset = "foo"; |
377 o.bigqueryTable = "foo"; | 377 o.bigqueryTable = "foo"; |
378 o.callSetIds = buildUnnamed1348(); | 378 o.callSetIds = buildUnnamed1249(); |
379 o.format = "foo"; | 379 o.format = "foo"; |
380 o.projectId = "foo"; | 380 o.projectId = "foo"; |
381 o.variantSetId = "foo"; | 381 o.variantSetId = "foo"; |
382 } | 382 } |
383 buildCounterExportVariantsRequest--; | 383 buildCounterExportVariantsRequest--; |
384 return o; | 384 return o; |
385 } | 385 } |
386 | 386 |
387 checkExportVariantsRequest(api.ExportVariantsRequest o) { | 387 checkExportVariantsRequest(api.ExportVariantsRequest o) { |
388 buildCounterExportVariantsRequest++; | 388 buildCounterExportVariantsRequest++; |
389 if (buildCounterExportVariantsRequest < 3) { | 389 if (buildCounterExportVariantsRequest < 3) { |
390 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); | 390 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); |
391 unittest.expect(o.bigqueryTable, unittest.equals('foo')); | 391 unittest.expect(o.bigqueryTable, unittest.equals('foo')); |
392 checkUnnamed1348(o.callSetIds); | 392 checkUnnamed1249(o.callSetIds); |
393 unittest.expect(o.format, unittest.equals('foo')); | 393 unittest.expect(o.format, unittest.equals('foo')); |
394 unittest.expect(o.projectId, unittest.equals('foo')); | 394 unittest.expect(o.projectId, unittest.equals('foo')); |
395 unittest.expect(o.variantSetId, unittest.equals('foo')); | 395 unittest.expect(o.variantSetId, unittest.equals('foo')); |
396 } | 396 } |
397 buildCounterExportVariantsRequest--; | 397 buildCounterExportVariantsRequest--; |
398 } | 398 } |
399 | 399 |
400 core.int buildCounterExportVariantsResponse = 0; | 400 core.int buildCounterExportVariantsResponse = 0; |
401 buildExportVariantsResponse() { | 401 buildExportVariantsResponse() { |
402 var o = new api.ExportVariantsResponse(); | 402 var o = new api.ExportVariantsResponse(); |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 | 453 |
454 checkHeader(api.Header o) { | 454 checkHeader(api.Header o) { |
455 buildCounterHeader++; | 455 buildCounterHeader++; |
456 if (buildCounterHeader < 3) { | 456 if (buildCounterHeader < 3) { |
457 unittest.expect(o.sortingOrder, unittest.equals('foo')); | 457 unittest.expect(o.sortingOrder, unittest.equals('foo')); |
458 unittest.expect(o.version, unittest.equals('foo')); | 458 unittest.expect(o.version, unittest.equals('foo')); |
459 } | 459 } |
460 buildCounterHeader--; | 460 buildCounterHeader--; |
461 } | 461 } |
462 | 462 |
463 buildUnnamed1349() { | 463 buildUnnamed1250() { |
464 var o = new core.List<core.String>(); | 464 var o = new core.List<core.String>(); |
465 o.add("foo"); | 465 o.add("foo"); |
466 o.add("foo"); | 466 o.add("foo"); |
467 return o; | 467 return o; |
468 } | 468 } |
469 | 469 |
470 checkUnnamed1349(core.List<core.String> o) { | 470 checkUnnamed1250(core.List<core.String> o) { |
471 unittest.expect(o, unittest.hasLength(2)); | 471 unittest.expect(o, unittest.hasLength(2)); |
472 unittest.expect(o[0], unittest.equals('foo')); | 472 unittest.expect(o[0], unittest.equals('foo')); |
473 unittest.expect(o[1], unittest.equals('foo')); | 473 unittest.expect(o[1], unittest.equals('foo')); |
474 } | 474 } |
475 | 475 |
476 buildUnnamed1350() { | 476 buildUnnamed1251() { |
477 var o = new core.List<api.Header>(); | 477 var o = new core.List<api.Header>(); |
478 o.add(buildHeader()); | 478 o.add(buildHeader()); |
479 o.add(buildHeader()); | 479 o.add(buildHeader()); |
480 return o; | 480 return o; |
481 } | 481 } |
482 | 482 |
483 checkUnnamed1350(core.List<api.Header> o) { | 483 checkUnnamed1251(core.List<api.Header> o) { |
484 unittest.expect(o, unittest.hasLength(2)); | 484 unittest.expect(o, unittest.hasLength(2)); |
485 checkHeader(o[0]); | 485 checkHeader(o[0]); |
486 checkHeader(o[1]); | 486 checkHeader(o[1]); |
487 } | 487 } |
488 | 488 |
489 buildUnnamed1351() { | 489 buildUnnamed1252() { |
490 var o = new core.List<api.Program>(); | 490 var o = new core.List<api.Program>(); |
491 o.add(buildProgram()); | 491 o.add(buildProgram()); |
492 o.add(buildProgram()); | 492 o.add(buildProgram()); |
493 return o; | 493 return o; |
494 } | 494 } |
495 | 495 |
496 checkUnnamed1351(core.List<api.Program> o) { | 496 checkUnnamed1252(core.List<api.Program> o) { |
497 unittest.expect(o, unittest.hasLength(2)); | 497 unittest.expect(o, unittest.hasLength(2)); |
498 checkProgram(o[0]); | 498 checkProgram(o[0]); |
499 checkProgram(o[1]); | 499 checkProgram(o[1]); |
500 } | 500 } |
501 | 501 |
502 buildUnnamed1352() { | 502 buildUnnamed1253() { |
503 var o = new core.List<api.ReadGroup>(); | 503 var o = new core.List<api.ReadGroup>(); |
504 o.add(buildReadGroup()); | 504 o.add(buildReadGroup()); |
505 o.add(buildReadGroup()); | 505 o.add(buildReadGroup()); |
506 return o; | 506 return o; |
507 } | 507 } |
508 | 508 |
509 checkUnnamed1352(core.List<api.ReadGroup> o) { | 509 checkUnnamed1253(core.List<api.ReadGroup> o) { |
510 unittest.expect(o, unittest.hasLength(2)); | 510 unittest.expect(o, unittest.hasLength(2)); |
511 checkReadGroup(o[0]); | 511 checkReadGroup(o[0]); |
512 checkReadGroup(o[1]); | 512 checkReadGroup(o[1]); |
513 } | 513 } |
514 | 514 |
515 buildUnnamed1353() { | 515 buildUnnamed1254() { |
516 var o = new core.List<api.ReferenceSequence>(); | 516 var o = new core.List<api.ReferenceSequence>(); |
517 o.add(buildReferenceSequence()); | 517 o.add(buildReferenceSequence()); |
518 o.add(buildReferenceSequence()); | 518 o.add(buildReferenceSequence()); |
519 return o; | 519 return o; |
520 } | 520 } |
521 | 521 |
522 checkUnnamed1353(core.List<api.ReferenceSequence> o) { | 522 checkUnnamed1254(core.List<api.ReferenceSequence> o) { |
523 unittest.expect(o, unittest.hasLength(2)); | 523 unittest.expect(o, unittest.hasLength(2)); |
524 checkReferenceSequence(o[0]); | 524 checkReferenceSequence(o[0]); |
525 checkReferenceSequence(o[1]); | 525 checkReferenceSequence(o[1]); |
526 } | 526 } |
527 | 527 |
528 core.int buildCounterHeaderSection = 0; | 528 core.int buildCounterHeaderSection = 0; |
529 buildHeaderSection() { | 529 buildHeaderSection() { |
530 var o = new api.HeaderSection(); | 530 var o = new api.HeaderSection(); |
531 buildCounterHeaderSection++; | 531 buildCounterHeaderSection++; |
532 if (buildCounterHeaderSection < 3) { | 532 if (buildCounterHeaderSection < 3) { |
533 o.comments = buildUnnamed1349(); | 533 o.comments = buildUnnamed1250(); |
534 o.fileUri = "foo"; | 534 o.fileUri = "foo"; |
535 o.filename = "foo"; | 535 o.filename = "foo"; |
536 o.headers = buildUnnamed1350(); | 536 o.headers = buildUnnamed1251(); |
537 o.programs = buildUnnamed1351(); | 537 o.programs = buildUnnamed1252(); |
538 o.readGroups = buildUnnamed1352(); | 538 o.readGroups = buildUnnamed1253(); |
539 o.refSequences = buildUnnamed1353(); | 539 o.refSequences = buildUnnamed1254(); |
540 } | 540 } |
541 buildCounterHeaderSection--; | 541 buildCounterHeaderSection--; |
542 return o; | 542 return o; |
543 } | 543 } |
544 | 544 |
545 checkHeaderSection(api.HeaderSection o) { | 545 checkHeaderSection(api.HeaderSection o) { |
546 buildCounterHeaderSection++; | 546 buildCounterHeaderSection++; |
547 if (buildCounterHeaderSection < 3) { | 547 if (buildCounterHeaderSection < 3) { |
548 checkUnnamed1349(o.comments); | 548 checkUnnamed1250(o.comments); |
549 unittest.expect(o.fileUri, unittest.equals('foo')); | 549 unittest.expect(o.fileUri, unittest.equals('foo')); |
550 unittest.expect(o.filename, unittest.equals('foo')); | 550 unittest.expect(o.filename, unittest.equals('foo')); |
551 checkUnnamed1350(o.headers); | 551 checkUnnamed1251(o.headers); |
552 checkUnnamed1351(o.programs); | 552 checkUnnamed1252(o.programs); |
553 checkUnnamed1352(o.readGroups); | 553 checkUnnamed1253(o.readGroups); |
554 checkUnnamed1353(o.refSequences); | 554 checkUnnamed1254(o.refSequences); |
555 } | 555 } |
556 buildCounterHeaderSection--; | 556 buildCounterHeaderSection--; |
557 } | 557 } |
558 | 558 |
559 buildUnnamed1354() { | 559 buildUnnamed1255() { |
560 var o = new core.List<core.String>(); | 560 var o = new core.List<core.String>(); |
561 o.add("foo"); | 561 o.add("foo"); |
562 o.add("foo"); | 562 o.add("foo"); |
563 return o; | 563 return o; |
564 } | 564 } |
565 | 565 |
566 checkUnnamed1354(core.List<core.String> o) { | 566 checkUnnamed1255(core.List<core.String> o) { |
567 unittest.expect(o, unittest.hasLength(2)); | 567 unittest.expect(o, unittest.hasLength(2)); |
568 unittest.expect(o[0], unittest.equals('foo')); | 568 unittest.expect(o[0], unittest.equals('foo')); |
569 unittest.expect(o[1], unittest.equals('foo')); | 569 unittest.expect(o[1], unittest.equals('foo')); |
570 } | 570 } |
571 | 571 |
572 core.int buildCounterImportReadsetsRequest = 0; | 572 core.int buildCounterImportReadsetsRequest = 0; |
573 buildImportReadsetsRequest() { | 573 buildImportReadsetsRequest() { |
574 var o = new api.ImportReadsetsRequest(); | 574 var o = new api.ImportReadsetsRequest(); |
575 buildCounterImportReadsetsRequest++; | 575 buildCounterImportReadsetsRequest++; |
576 if (buildCounterImportReadsetsRequest < 3) { | 576 if (buildCounterImportReadsetsRequest < 3) { |
577 o.datasetId = "foo"; | 577 o.datasetId = "foo"; |
578 o.sourceUris = buildUnnamed1354(); | 578 o.sourceUris = buildUnnamed1255(); |
579 } | 579 } |
580 buildCounterImportReadsetsRequest--; | 580 buildCounterImportReadsetsRequest--; |
581 return o; | 581 return o; |
582 } | 582 } |
583 | 583 |
584 checkImportReadsetsRequest(api.ImportReadsetsRequest o) { | 584 checkImportReadsetsRequest(api.ImportReadsetsRequest o) { |
585 buildCounterImportReadsetsRequest++; | 585 buildCounterImportReadsetsRequest++; |
586 if (buildCounterImportReadsetsRequest < 3) { | 586 if (buildCounterImportReadsetsRequest < 3) { |
587 unittest.expect(o.datasetId, unittest.equals('foo')); | 587 unittest.expect(o.datasetId, unittest.equals('foo')); |
588 checkUnnamed1354(o.sourceUris); | 588 checkUnnamed1255(o.sourceUris); |
589 } | 589 } |
590 buildCounterImportReadsetsRequest--; | 590 buildCounterImportReadsetsRequest--; |
591 } | 591 } |
592 | 592 |
593 core.int buildCounterImportReadsetsResponse = 0; | 593 core.int buildCounterImportReadsetsResponse = 0; |
594 buildImportReadsetsResponse() { | 594 buildImportReadsetsResponse() { |
595 var o = new api.ImportReadsetsResponse(); | 595 var o = new api.ImportReadsetsResponse(); |
596 buildCounterImportReadsetsResponse++; | 596 buildCounterImportReadsetsResponse++; |
597 if (buildCounterImportReadsetsResponse < 3) { | 597 if (buildCounterImportReadsetsResponse < 3) { |
598 o.jobId = "foo"; | 598 o.jobId = "foo"; |
599 } | 599 } |
600 buildCounterImportReadsetsResponse--; | 600 buildCounterImportReadsetsResponse--; |
601 return o; | 601 return o; |
602 } | 602 } |
603 | 603 |
604 checkImportReadsetsResponse(api.ImportReadsetsResponse o) { | 604 checkImportReadsetsResponse(api.ImportReadsetsResponse o) { |
605 buildCounterImportReadsetsResponse++; | 605 buildCounterImportReadsetsResponse++; |
606 if (buildCounterImportReadsetsResponse < 3) { | 606 if (buildCounterImportReadsetsResponse < 3) { |
607 unittest.expect(o.jobId, unittest.equals('foo')); | 607 unittest.expect(o.jobId, unittest.equals('foo')); |
608 } | 608 } |
609 buildCounterImportReadsetsResponse--; | 609 buildCounterImportReadsetsResponse--; |
610 } | 610 } |
611 | 611 |
612 buildUnnamed1355() { | 612 buildUnnamed1256() { |
613 var o = new core.List<core.String>(); | 613 var o = new core.List<core.String>(); |
614 o.add("foo"); | 614 o.add("foo"); |
615 o.add("foo"); | 615 o.add("foo"); |
616 return o; | 616 return o; |
617 } | 617 } |
618 | 618 |
619 checkUnnamed1355(core.List<core.String> o) { | 619 checkUnnamed1256(core.List<core.String> o) { |
620 unittest.expect(o, unittest.hasLength(2)); | 620 unittest.expect(o, unittest.hasLength(2)); |
621 unittest.expect(o[0], unittest.equals('foo')); | 621 unittest.expect(o[0], unittest.equals('foo')); |
622 unittest.expect(o[1], unittest.equals('foo')); | 622 unittest.expect(o[1], unittest.equals('foo')); |
623 } | 623 } |
624 | 624 |
625 core.int buildCounterImportVariantsRequest = 0; | 625 core.int buildCounterImportVariantsRequest = 0; |
626 buildImportVariantsRequest() { | 626 buildImportVariantsRequest() { |
627 var o = new api.ImportVariantsRequest(); | 627 var o = new api.ImportVariantsRequest(); |
628 buildCounterImportVariantsRequest++; | 628 buildCounterImportVariantsRequest++; |
629 if (buildCounterImportVariantsRequest < 3) { | 629 if (buildCounterImportVariantsRequest < 3) { |
630 o.format = "foo"; | 630 o.format = "foo"; |
631 o.sourceUris = buildUnnamed1355(); | 631 o.sourceUris = buildUnnamed1256(); |
632 o.variantSetId = "foo"; | 632 o.variantSetId = "foo"; |
633 } | 633 } |
634 buildCounterImportVariantsRequest--; | 634 buildCounterImportVariantsRequest--; |
635 return o; | 635 return o; |
636 } | 636 } |
637 | 637 |
638 checkImportVariantsRequest(api.ImportVariantsRequest o) { | 638 checkImportVariantsRequest(api.ImportVariantsRequest o) { |
639 buildCounterImportVariantsRequest++; | 639 buildCounterImportVariantsRequest++; |
640 if (buildCounterImportVariantsRequest < 3) { | 640 if (buildCounterImportVariantsRequest < 3) { |
641 unittest.expect(o.format, unittest.equals('foo')); | 641 unittest.expect(o.format, unittest.equals('foo')); |
642 checkUnnamed1355(o.sourceUris); | 642 checkUnnamed1256(o.sourceUris); |
643 unittest.expect(o.variantSetId, unittest.equals('foo')); | 643 unittest.expect(o.variantSetId, unittest.equals('foo')); |
644 } | 644 } |
645 buildCounterImportVariantsRequest--; | 645 buildCounterImportVariantsRequest--; |
646 } | 646 } |
647 | 647 |
648 core.int buildCounterImportVariantsResponse = 0; | 648 core.int buildCounterImportVariantsResponse = 0; |
649 buildImportVariantsResponse() { | 649 buildImportVariantsResponse() { |
650 var o = new api.ImportVariantsResponse(); | 650 var o = new api.ImportVariantsResponse(); |
651 buildCounterImportVariantsResponse++; | 651 buildCounterImportVariantsResponse++; |
652 if (buildCounterImportVariantsResponse < 3) { | 652 if (buildCounterImportVariantsResponse < 3) { |
653 o.jobId = "foo"; | 653 o.jobId = "foo"; |
654 } | 654 } |
655 buildCounterImportVariantsResponse--; | 655 buildCounterImportVariantsResponse--; |
656 return o; | 656 return o; |
657 } | 657 } |
658 | 658 |
659 checkImportVariantsResponse(api.ImportVariantsResponse o) { | 659 checkImportVariantsResponse(api.ImportVariantsResponse o) { |
660 buildCounterImportVariantsResponse++; | 660 buildCounterImportVariantsResponse++; |
661 if (buildCounterImportVariantsResponse < 3) { | 661 if (buildCounterImportVariantsResponse < 3) { |
662 unittest.expect(o.jobId, unittest.equals('foo')); | 662 unittest.expect(o.jobId, unittest.equals('foo')); |
663 } | 663 } |
664 buildCounterImportVariantsResponse--; | 664 buildCounterImportVariantsResponse--; |
665 } | 665 } |
666 | 666 |
667 buildUnnamed1356() { | 667 buildUnnamed1257() { |
668 var o = new core.List<core.String>(); | 668 var o = new core.List<core.String>(); |
669 o.add("foo"); | 669 o.add("foo"); |
670 o.add("foo"); | 670 o.add("foo"); |
671 return o; | 671 return o; |
672 } | 672 } |
673 | 673 |
674 checkUnnamed1356(core.List<core.String> o) { | 674 checkUnnamed1257(core.List<core.String> o) { |
675 unittest.expect(o, unittest.hasLength(2)); | 675 unittest.expect(o, unittest.hasLength(2)); |
676 unittest.expect(o[0], unittest.equals('foo')); | 676 unittest.expect(o[0], unittest.equals('foo')); |
677 unittest.expect(o[1], unittest.equals('foo')); | 677 unittest.expect(o[1], unittest.equals('foo')); |
678 } | 678 } |
679 | 679 |
680 buildUnnamed1357() { | 680 buildUnnamed1258() { |
681 var o = new core.List<core.String>(); | 681 var o = new core.List<core.String>(); |
682 o.add("foo"); | 682 o.add("foo"); |
683 o.add("foo"); | 683 o.add("foo"); |
684 return o; | 684 return o; |
685 } | 685 } |
686 | 686 |
687 checkUnnamed1357(core.List<core.String> o) { | 687 checkUnnamed1258(core.List<core.String> o) { |
688 unittest.expect(o, unittest.hasLength(2)); | 688 unittest.expect(o, unittest.hasLength(2)); |
689 unittest.expect(o[0], unittest.equals('foo')); | 689 unittest.expect(o[0], unittest.equals('foo')); |
690 unittest.expect(o[1], unittest.equals('foo')); | 690 unittest.expect(o[1], unittest.equals('foo')); |
691 } | 691 } |
692 | 692 |
693 buildUnnamed1358() { | 693 buildUnnamed1259() { |
694 var o = new core.List<core.String>(); | 694 var o = new core.List<core.String>(); |
695 o.add("foo"); | 695 o.add("foo"); |
696 o.add("foo"); | 696 o.add("foo"); |
697 return o; | 697 return o; |
698 } | 698 } |
699 | 699 |
700 checkUnnamed1358(core.List<core.String> o) { | 700 checkUnnamed1259(core.List<core.String> o) { |
701 unittest.expect(o, unittest.hasLength(2)); | 701 unittest.expect(o, unittest.hasLength(2)); |
702 unittest.expect(o[0], unittest.equals('foo')); | 702 unittest.expect(o[0], unittest.equals('foo')); |
703 unittest.expect(o[1], unittest.equals('foo')); | 703 unittest.expect(o[1], unittest.equals('foo')); |
704 } | 704 } |
705 | 705 |
706 core.int buildCounterJob = 0; | 706 core.int buildCounterJob = 0; |
707 buildJob() { | 707 buildJob() { |
708 var o = new api.Job(); | 708 var o = new api.Job(); |
709 buildCounterJob++; | 709 buildCounterJob++; |
710 if (buildCounterJob < 3) { | 710 if (buildCounterJob < 3) { |
711 o.created = "foo"; | 711 o.created = "foo"; |
712 o.description = "foo"; | 712 o.description = "foo"; |
713 o.errors = buildUnnamed1356(); | 713 o.errors = buildUnnamed1257(); |
714 o.id = "foo"; | 714 o.id = "foo"; |
715 o.importedIds = buildUnnamed1357(); | 715 o.importedIds = buildUnnamed1258(); |
716 o.projectId = "foo"; | 716 o.projectId = "foo"; |
717 o.request = buildJobRequest(); | 717 o.request = buildJobRequest(); |
718 o.status = "foo"; | 718 o.status = "foo"; |
719 o.warnings = buildUnnamed1358(); | 719 o.warnings = buildUnnamed1259(); |
720 } | 720 } |
721 buildCounterJob--; | 721 buildCounterJob--; |
722 return o; | 722 return o; |
723 } | 723 } |
724 | 724 |
725 checkJob(api.Job o) { | 725 checkJob(api.Job o) { |
726 buildCounterJob++; | 726 buildCounterJob++; |
727 if (buildCounterJob < 3) { | 727 if (buildCounterJob < 3) { |
728 unittest.expect(o.created, unittest.equals('foo')); | 728 unittest.expect(o.created, unittest.equals('foo')); |
729 unittest.expect(o.description, unittest.equals('foo')); | 729 unittest.expect(o.description, unittest.equals('foo')); |
730 checkUnnamed1356(o.errors); | 730 checkUnnamed1257(o.errors); |
731 unittest.expect(o.id, unittest.equals('foo')); | 731 unittest.expect(o.id, unittest.equals('foo')); |
732 checkUnnamed1357(o.importedIds); | 732 checkUnnamed1258(o.importedIds); |
733 unittest.expect(o.projectId, unittest.equals('foo')); | 733 unittest.expect(o.projectId, unittest.equals('foo')); |
734 checkJobRequest(o.request); | 734 checkJobRequest(o.request); |
735 unittest.expect(o.status, unittest.equals('foo')); | 735 unittest.expect(o.status, unittest.equals('foo')); |
736 checkUnnamed1358(o.warnings); | 736 checkUnnamed1259(o.warnings); |
737 } | 737 } |
738 buildCounterJob--; | 738 buildCounterJob--; |
739 } | 739 } |
740 | 740 |
741 buildUnnamed1359() { | 741 buildUnnamed1260() { |
742 var o = new core.List<core.String>(); | 742 var o = new core.List<core.String>(); |
743 o.add("foo"); | 743 o.add("foo"); |
744 o.add("foo"); | 744 o.add("foo"); |
745 return o; | 745 return o; |
746 } | 746 } |
747 | 747 |
748 checkUnnamed1359(core.List<core.String> o) { | 748 checkUnnamed1260(core.List<core.String> o) { |
749 unittest.expect(o, unittest.hasLength(2)); | 749 unittest.expect(o, unittest.hasLength(2)); |
750 unittest.expect(o[0], unittest.equals('foo')); | 750 unittest.expect(o[0], unittest.equals('foo')); |
751 unittest.expect(o[1], unittest.equals('foo')); | 751 unittest.expect(o[1], unittest.equals('foo')); |
752 } | 752 } |
753 | 753 |
754 buildUnnamed1360() { | 754 buildUnnamed1261() { |
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 checkUnnamed1360(core.List<core.String> o) { | 761 checkUnnamed1261(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 buildCounterJobRequest = 0; | 767 core.int buildCounterJobRequest = 0; |
768 buildJobRequest() { | 768 buildJobRequest() { |
769 var o = new api.JobRequest(); | 769 var o = new api.JobRequest(); |
770 buildCounterJobRequest++; | 770 buildCounterJobRequest++; |
771 if (buildCounterJobRequest < 3) { | 771 if (buildCounterJobRequest < 3) { |
772 o.destination = buildUnnamed1359(); | 772 o.destination = buildUnnamed1260(); |
773 o.source = buildUnnamed1360(); | 773 o.source = buildUnnamed1261(); |
774 o.type = "foo"; | 774 o.type = "foo"; |
775 } | 775 } |
776 buildCounterJobRequest--; | 776 buildCounterJobRequest--; |
777 return o; | 777 return o; |
778 } | 778 } |
779 | 779 |
780 checkJobRequest(api.JobRequest o) { | 780 checkJobRequest(api.JobRequest o) { |
781 buildCounterJobRequest++; | 781 buildCounterJobRequest++; |
782 if (buildCounterJobRequest < 3) { | 782 if (buildCounterJobRequest < 3) { |
783 checkUnnamed1359(o.destination); | 783 checkUnnamed1260(o.destination); |
784 checkUnnamed1360(o.source); | 784 checkUnnamed1261(o.source); |
785 unittest.expect(o.type, unittest.equals('foo')); | 785 unittest.expect(o.type, unittest.equals('foo')); |
786 } | 786 } |
787 buildCounterJobRequest--; | 787 buildCounterJobRequest--; |
788 } | 788 } |
789 | 789 |
790 buildUnnamed1361() { | 790 buildUnnamed1262() { |
791 var o = new core.List<api.CoverageBucket>(); | 791 var o = new core.List<api.CoverageBucket>(); |
792 o.add(buildCoverageBucket()); | 792 o.add(buildCoverageBucket()); |
793 o.add(buildCoverageBucket()); | 793 o.add(buildCoverageBucket()); |
794 return o; | 794 return o; |
795 } | 795 } |
796 | 796 |
797 checkUnnamed1361(core.List<api.CoverageBucket> o) { | 797 checkUnnamed1262(core.List<api.CoverageBucket> o) { |
798 unittest.expect(o, unittest.hasLength(2)); | 798 unittest.expect(o, unittest.hasLength(2)); |
799 checkCoverageBucket(o[0]); | 799 checkCoverageBucket(o[0]); |
800 checkCoverageBucket(o[1]); | 800 checkCoverageBucket(o[1]); |
801 } | 801 } |
802 | 802 |
803 core.int buildCounterListCoverageBucketsResponse = 0; | 803 core.int buildCounterListCoverageBucketsResponse = 0; |
804 buildListCoverageBucketsResponse() { | 804 buildListCoverageBucketsResponse() { |
805 var o = new api.ListCoverageBucketsResponse(); | 805 var o = new api.ListCoverageBucketsResponse(); |
806 buildCounterListCoverageBucketsResponse++; | 806 buildCounterListCoverageBucketsResponse++; |
807 if (buildCounterListCoverageBucketsResponse < 3) { | 807 if (buildCounterListCoverageBucketsResponse < 3) { |
808 o.bucketWidth = "foo"; | 808 o.bucketWidth = "foo"; |
809 o.coverageBuckets = buildUnnamed1361(); | 809 o.coverageBuckets = buildUnnamed1262(); |
810 o.nextPageToken = "foo"; | 810 o.nextPageToken = "foo"; |
811 } | 811 } |
812 buildCounterListCoverageBucketsResponse--; | 812 buildCounterListCoverageBucketsResponse--; |
813 return o; | 813 return o; |
814 } | 814 } |
815 | 815 |
816 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { | 816 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { |
817 buildCounterListCoverageBucketsResponse++; | 817 buildCounterListCoverageBucketsResponse++; |
818 if (buildCounterListCoverageBucketsResponse < 3) { | 818 if (buildCounterListCoverageBucketsResponse < 3) { |
819 unittest.expect(o.bucketWidth, unittest.equals('foo')); | 819 unittest.expect(o.bucketWidth, unittest.equals('foo')); |
820 checkUnnamed1361(o.coverageBuckets); | 820 checkUnnamed1262(o.coverageBuckets); |
821 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 821 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
822 } | 822 } |
823 buildCounterListCoverageBucketsResponse--; | 823 buildCounterListCoverageBucketsResponse--; |
824 } | 824 } |
825 | 825 |
826 buildUnnamed1362() { | 826 buildUnnamed1263() { |
827 var o = new core.List<api.Dataset>(); | 827 var o = new core.List<api.Dataset>(); |
828 o.add(buildDataset()); | 828 o.add(buildDataset()); |
829 o.add(buildDataset()); | 829 o.add(buildDataset()); |
830 return o; | 830 return o; |
831 } | 831 } |
832 | 832 |
833 checkUnnamed1362(core.List<api.Dataset> o) { | 833 checkUnnamed1263(core.List<api.Dataset> o) { |
834 unittest.expect(o, unittest.hasLength(2)); | 834 unittest.expect(o, unittest.hasLength(2)); |
835 checkDataset(o[0]); | 835 checkDataset(o[0]); |
836 checkDataset(o[1]); | 836 checkDataset(o[1]); |
837 } | 837 } |
838 | 838 |
839 core.int buildCounterListDatasetsResponse = 0; | 839 core.int buildCounterListDatasetsResponse = 0; |
840 buildListDatasetsResponse() { | 840 buildListDatasetsResponse() { |
841 var o = new api.ListDatasetsResponse(); | 841 var o = new api.ListDatasetsResponse(); |
842 buildCounterListDatasetsResponse++; | 842 buildCounterListDatasetsResponse++; |
843 if (buildCounterListDatasetsResponse < 3) { | 843 if (buildCounterListDatasetsResponse < 3) { |
844 o.datasets = buildUnnamed1362(); | 844 o.datasets = buildUnnamed1263(); |
845 o.nextPageToken = "foo"; | 845 o.nextPageToken = "foo"; |
846 } | 846 } |
847 buildCounterListDatasetsResponse--; | 847 buildCounterListDatasetsResponse--; |
848 return o; | 848 return o; |
849 } | 849 } |
850 | 850 |
851 checkListDatasetsResponse(api.ListDatasetsResponse o) { | 851 checkListDatasetsResponse(api.ListDatasetsResponse o) { |
852 buildCounterListDatasetsResponse++; | 852 buildCounterListDatasetsResponse++; |
853 if (buildCounterListDatasetsResponse < 3) { | 853 if (buildCounterListDatasetsResponse < 3) { |
854 checkUnnamed1362(o.datasets); | 854 checkUnnamed1263(o.datasets); |
855 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 855 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
856 } | 856 } |
857 buildCounterListDatasetsResponse--; | 857 buildCounterListDatasetsResponse--; |
858 } | 858 } |
859 | 859 |
860 buildUnnamed1363() { | 860 buildUnnamed1264() { |
861 var o = new core.List<api.Variant>(); | 861 var o = new core.List<api.Variant>(); |
862 o.add(buildVariant()); | 862 o.add(buildVariant()); |
863 o.add(buildVariant()); | 863 o.add(buildVariant()); |
864 return o; | 864 return o; |
865 } | 865 } |
866 | 866 |
867 checkUnnamed1363(core.List<api.Variant> o) { | 867 checkUnnamed1264(core.List<api.Variant> o) { |
868 unittest.expect(o, unittest.hasLength(2)); | 868 unittest.expect(o, unittest.hasLength(2)); |
869 checkVariant(o[0]); | 869 checkVariant(o[0]); |
870 checkVariant(o[1]); | 870 checkVariant(o[1]); |
871 } | 871 } |
872 | 872 |
873 core.int buildCounterMergeVariantsRequest = 0; | 873 core.int buildCounterMergeVariantsRequest = 0; |
874 buildMergeVariantsRequest() { | 874 buildMergeVariantsRequest() { |
875 var o = new api.MergeVariantsRequest(); | 875 var o = new api.MergeVariantsRequest(); |
876 buildCounterMergeVariantsRequest++; | 876 buildCounterMergeVariantsRequest++; |
877 if (buildCounterMergeVariantsRequest < 3) { | 877 if (buildCounterMergeVariantsRequest < 3) { |
878 o.variants = buildUnnamed1363(); | 878 o.variants = buildUnnamed1264(); |
879 } | 879 } |
880 buildCounterMergeVariantsRequest--; | 880 buildCounterMergeVariantsRequest--; |
881 return o; | 881 return o; |
882 } | 882 } |
883 | 883 |
884 checkMergeVariantsRequest(api.MergeVariantsRequest o) { | 884 checkMergeVariantsRequest(api.MergeVariantsRequest o) { |
885 buildCounterMergeVariantsRequest++; | 885 buildCounterMergeVariantsRequest++; |
886 if (buildCounterMergeVariantsRequest < 3) { | 886 if (buildCounterMergeVariantsRequest < 3) { |
887 checkUnnamed1363(o.variants); | 887 checkUnnamed1264(o.variants); |
888 } | 888 } |
889 buildCounterMergeVariantsRequest--; | 889 buildCounterMergeVariantsRequest--; |
890 } | 890 } |
891 | 891 |
892 buildUnnamed1364() { | 892 buildUnnamed1265() { |
893 var o = new core.List<core.String>(); | 893 var o = new core.List<core.String>(); |
894 o.add("foo"); | 894 o.add("foo"); |
895 o.add("foo"); | 895 o.add("foo"); |
896 return o; | 896 return o; |
897 } | 897 } |
898 | 898 |
899 checkUnnamed1364(core.List<core.String> o) { | 899 checkUnnamed1265(core.List<core.String> o) { |
900 unittest.expect(o, unittest.hasLength(2)); | 900 unittest.expect(o, unittest.hasLength(2)); |
901 unittest.expect(o[0], unittest.equals('foo')); | 901 unittest.expect(o[0], unittest.equals('foo')); |
902 unittest.expect(o[1], unittest.equals('foo')); | 902 unittest.expect(o[1], unittest.equals('foo')); |
903 } | 903 } |
904 | 904 |
905 buildUnnamed1365() { | 905 buildUnnamed1266() { |
906 var o = new core.Map<core.String, core.List<core.String>>(); | 906 var o = new core.Map<core.String, core.List<core.String>>(); |
907 o["x"] = buildUnnamed1364(); | 907 o["x"] = buildUnnamed1265(); |
908 o["y"] = buildUnnamed1364(); | 908 o["y"] = buildUnnamed1265(); |
909 return o; | 909 return o; |
910 } | 910 } |
911 | 911 |
912 checkUnnamed1365(core.Map<core.String, core.List<core.String>> o) { | 912 checkUnnamed1266(core.Map<core.String, core.List<core.String>> o) { |
913 unittest.expect(o, unittest.hasLength(2)); | 913 unittest.expect(o, unittest.hasLength(2)); |
914 checkUnnamed1364(o["x"]); | 914 checkUnnamed1265(o["x"]); |
915 checkUnnamed1364(o["y"]); | 915 checkUnnamed1265(o["y"]); |
916 } | 916 } |
917 | 917 |
918 core.int buildCounterMetadata = 0; | 918 core.int buildCounterMetadata = 0; |
919 buildMetadata() { | 919 buildMetadata() { |
920 var o = new api.Metadata(); | 920 var o = new api.Metadata(); |
921 buildCounterMetadata++; | 921 buildCounterMetadata++; |
922 if (buildCounterMetadata < 3) { | 922 if (buildCounterMetadata < 3) { |
923 o.description = "foo"; | 923 o.description = "foo"; |
924 o.id = "foo"; | 924 o.id = "foo"; |
925 o.info = buildUnnamed1365(); | 925 o.info = buildUnnamed1266(); |
926 o.key = "foo"; | 926 o.key = "foo"; |
927 o.number = "foo"; | 927 o.number = "foo"; |
928 o.type = "foo"; | 928 o.type = "foo"; |
929 o.value = "foo"; | 929 o.value = "foo"; |
930 } | 930 } |
931 buildCounterMetadata--; | 931 buildCounterMetadata--; |
932 return o; | 932 return o; |
933 } | 933 } |
934 | 934 |
935 checkMetadata(api.Metadata o) { | 935 checkMetadata(api.Metadata o) { |
936 buildCounterMetadata++; | 936 buildCounterMetadata++; |
937 if (buildCounterMetadata < 3) { | 937 if (buildCounterMetadata < 3) { |
938 unittest.expect(o.description, unittest.equals('foo')); | 938 unittest.expect(o.description, unittest.equals('foo')); |
939 unittest.expect(o.id, unittest.equals('foo')); | 939 unittest.expect(o.id, unittest.equals('foo')); |
940 checkUnnamed1365(o.info); | 940 checkUnnamed1266(o.info); |
941 unittest.expect(o.key, unittest.equals('foo')); | 941 unittest.expect(o.key, unittest.equals('foo')); |
942 unittest.expect(o.number, unittest.equals('foo')); | 942 unittest.expect(o.number, unittest.equals('foo')); |
943 unittest.expect(o.type, unittest.equals('foo')); | 943 unittest.expect(o.type, unittest.equals('foo')); |
944 unittest.expect(o.value, unittest.equals('foo')); | 944 unittest.expect(o.value, unittest.equals('foo')); |
945 } | 945 } |
946 buildCounterMetadata--; | 946 buildCounterMetadata--; |
947 } | 947 } |
948 | 948 |
949 core.int buildCounterProgram = 0; | 949 core.int buildCounterProgram = 0; |
950 buildProgram() { | 950 buildProgram() { |
(...skipping 15 matching lines...) Expand all Loading... |
966 if (buildCounterProgram < 3) { | 966 if (buildCounterProgram < 3) { |
967 unittest.expect(o.commandLine, unittest.equals('foo')); | 967 unittest.expect(o.commandLine, unittest.equals('foo')); |
968 unittest.expect(o.id, unittest.equals('foo')); | 968 unittest.expect(o.id, unittest.equals('foo')); |
969 unittest.expect(o.name, unittest.equals('foo')); | 969 unittest.expect(o.name, unittest.equals('foo')); |
970 unittest.expect(o.prevProgramId, unittest.equals('foo')); | 970 unittest.expect(o.prevProgramId, unittest.equals('foo')); |
971 unittest.expect(o.version, unittest.equals('foo')); | 971 unittest.expect(o.version, unittest.equals('foo')); |
972 } | 972 } |
973 buildCounterProgram--; | 973 buildCounterProgram--; |
974 } | 974 } |
975 | 975 |
976 buildUnnamed1366() { | 976 buildUnnamed1267() { |
977 var o = new core.List<core.String>(); | 977 var o = new core.List<core.String>(); |
978 o.add("foo"); | 978 o.add("foo"); |
979 o.add("foo"); | 979 o.add("foo"); |
980 return o; | 980 return o; |
981 } | 981 } |
982 | 982 |
983 checkUnnamed1366(core.List<core.String> o) { | 983 checkUnnamed1267(core.List<core.String> o) { |
984 unittest.expect(o, unittest.hasLength(2)); | 984 unittest.expect(o, unittest.hasLength(2)); |
985 unittest.expect(o[0], unittest.equals('foo')); | 985 unittest.expect(o[0], unittest.equals('foo')); |
986 unittest.expect(o[1], unittest.equals('foo')); | 986 unittest.expect(o[1], unittest.equals('foo')); |
987 } | 987 } |
988 | 988 |
989 buildUnnamed1367() { | 989 buildUnnamed1268() { |
990 var o = new core.Map<core.String, core.List<core.String>>(); | 990 var o = new core.Map<core.String, core.List<core.String>>(); |
991 o["x"] = buildUnnamed1366(); | 991 o["x"] = buildUnnamed1267(); |
992 o["y"] = buildUnnamed1366(); | 992 o["y"] = buildUnnamed1267(); |
993 return o; | 993 return o; |
994 } | 994 } |
995 | 995 |
996 checkUnnamed1367(core.Map<core.String, core.List<core.String>> o) { | 996 checkUnnamed1268(core.Map<core.String, core.List<core.String>> o) { |
997 unittest.expect(o, unittest.hasLength(2)); | 997 unittest.expect(o, unittest.hasLength(2)); |
998 checkUnnamed1366(o["x"]); | 998 checkUnnamed1267(o["x"]); |
999 checkUnnamed1366(o["y"]); | 999 checkUnnamed1267(o["y"]); |
1000 } | 1000 } |
1001 | 1001 |
1002 core.int buildCounterRead = 0; | 1002 core.int buildCounterRead = 0; |
1003 buildRead() { | 1003 buildRead() { |
1004 var o = new api.Read(); | 1004 var o = new api.Read(); |
1005 buildCounterRead++; | 1005 buildCounterRead++; |
1006 if (buildCounterRead < 3) { | 1006 if (buildCounterRead < 3) { |
1007 o.alignedBases = "foo"; | 1007 o.alignedBases = "foo"; |
1008 o.baseQuality = "foo"; | 1008 o.baseQuality = "foo"; |
1009 o.cigar = "foo"; | 1009 o.cigar = "foo"; |
1010 o.flags = 42; | 1010 o.flags = 42; |
1011 o.id = "foo"; | 1011 o.id = "foo"; |
1012 o.mappingQuality = 42; | 1012 o.mappingQuality = 42; |
1013 o.matePosition = 42; | 1013 o.matePosition = 42; |
1014 o.mateReferenceSequenceName = "foo"; | 1014 o.mateReferenceSequenceName = "foo"; |
1015 o.name = "foo"; | 1015 o.name = "foo"; |
1016 o.originalBases = "foo"; | 1016 o.originalBases = "foo"; |
1017 o.position = 42; | 1017 o.position = 42; |
1018 o.readsetId = "foo"; | 1018 o.readsetId = "foo"; |
1019 o.referenceSequenceName = "foo"; | 1019 o.referenceSequenceName = "foo"; |
1020 o.tags = buildUnnamed1367(); | 1020 o.tags = buildUnnamed1268(); |
1021 o.templateLength = 42; | 1021 o.templateLength = 42; |
1022 } | 1022 } |
1023 buildCounterRead--; | 1023 buildCounterRead--; |
1024 return o; | 1024 return o; |
1025 } | 1025 } |
1026 | 1026 |
1027 checkRead(api.Read o) { | 1027 checkRead(api.Read o) { |
1028 buildCounterRead++; | 1028 buildCounterRead++; |
1029 if (buildCounterRead < 3) { | 1029 if (buildCounterRead < 3) { |
1030 unittest.expect(o.alignedBases, unittest.equals('foo')); | 1030 unittest.expect(o.alignedBases, unittest.equals('foo')); |
1031 unittest.expect(o.baseQuality, unittest.equals('foo')); | 1031 unittest.expect(o.baseQuality, unittest.equals('foo')); |
1032 unittest.expect(o.cigar, unittest.equals('foo')); | 1032 unittest.expect(o.cigar, unittest.equals('foo')); |
1033 unittest.expect(o.flags, unittest.equals(42)); | 1033 unittest.expect(o.flags, unittest.equals(42)); |
1034 unittest.expect(o.id, unittest.equals('foo')); | 1034 unittest.expect(o.id, unittest.equals('foo')); |
1035 unittest.expect(o.mappingQuality, unittest.equals(42)); | 1035 unittest.expect(o.mappingQuality, unittest.equals(42)); |
1036 unittest.expect(o.matePosition, unittest.equals(42)); | 1036 unittest.expect(o.matePosition, unittest.equals(42)); |
1037 unittest.expect(o.mateReferenceSequenceName, unittest.equals('foo')); | 1037 unittest.expect(o.mateReferenceSequenceName, unittest.equals('foo')); |
1038 unittest.expect(o.name, unittest.equals('foo')); | 1038 unittest.expect(o.name, unittest.equals('foo')); |
1039 unittest.expect(o.originalBases, unittest.equals('foo')); | 1039 unittest.expect(o.originalBases, unittest.equals('foo')); |
1040 unittest.expect(o.position, unittest.equals(42)); | 1040 unittest.expect(o.position, unittest.equals(42)); |
1041 unittest.expect(o.readsetId, unittest.equals('foo')); | 1041 unittest.expect(o.readsetId, unittest.equals('foo')); |
1042 unittest.expect(o.referenceSequenceName, unittest.equals('foo')); | 1042 unittest.expect(o.referenceSequenceName, unittest.equals('foo')); |
1043 checkUnnamed1367(o.tags); | 1043 checkUnnamed1268(o.tags); |
1044 unittest.expect(o.templateLength, unittest.equals(42)); | 1044 unittest.expect(o.templateLength, unittest.equals(42)); |
1045 } | 1045 } |
1046 buildCounterRead--; | 1046 buildCounterRead--; |
1047 } | 1047 } |
1048 | 1048 |
1049 core.int buildCounterReadGroup = 0; | 1049 core.int buildCounterReadGroup = 0; |
1050 buildReadGroup() { | 1050 buildReadGroup() { |
1051 var o = new api.ReadGroup(); | 1051 var o = new api.ReadGroup(); |
1052 buildCounterReadGroup++; | 1052 buildCounterReadGroup++; |
1053 if (buildCounterReadGroup < 3) { | 1053 if (buildCounterReadGroup < 3) { |
(...skipping 26 matching lines...) Expand all Loading... |
1080 unittest.expect(o.platformUnit, unittest.equals('foo')); | 1080 unittest.expect(o.platformUnit, unittest.equals('foo')); |
1081 unittest.expect(o.predictedInsertSize, unittest.equals(42)); | 1081 unittest.expect(o.predictedInsertSize, unittest.equals(42)); |
1082 unittest.expect(o.processingProgram, unittest.equals('foo')); | 1082 unittest.expect(o.processingProgram, unittest.equals('foo')); |
1083 unittest.expect(o.sample, unittest.equals('foo')); | 1083 unittest.expect(o.sample, unittest.equals('foo')); |
1084 unittest.expect(o.sequencingCenterName, unittest.equals('foo')); | 1084 unittest.expect(o.sequencingCenterName, unittest.equals('foo')); |
1085 unittest.expect(o.sequencingTechnology, unittest.equals('foo')); | 1085 unittest.expect(o.sequencingTechnology, unittest.equals('foo')); |
1086 } | 1086 } |
1087 buildCounterReadGroup--; | 1087 buildCounterReadGroup--; |
1088 } | 1088 } |
1089 | 1089 |
1090 buildUnnamed1368() { | 1090 buildUnnamed1269() { |
1091 var o = new core.List<api.HeaderSection>(); | 1091 var o = new core.List<api.HeaderSection>(); |
1092 o.add(buildHeaderSection()); | 1092 o.add(buildHeaderSection()); |
1093 o.add(buildHeaderSection()); | 1093 o.add(buildHeaderSection()); |
1094 return o; | 1094 return o; |
1095 } | 1095 } |
1096 | 1096 |
1097 checkUnnamed1368(core.List<api.HeaderSection> o) { | 1097 checkUnnamed1269(core.List<api.HeaderSection> o) { |
1098 unittest.expect(o, unittest.hasLength(2)); | 1098 unittest.expect(o, unittest.hasLength(2)); |
1099 checkHeaderSection(o[0]); | 1099 checkHeaderSection(o[0]); |
1100 checkHeaderSection(o[1]); | 1100 checkHeaderSection(o[1]); |
1101 } | 1101 } |
1102 | 1102 |
1103 core.int buildCounterReadset = 0; | 1103 core.int buildCounterReadset = 0; |
1104 buildReadset() { | 1104 buildReadset() { |
1105 var o = new api.Readset(); | 1105 var o = new api.Readset(); |
1106 buildCounterReadset++; | 1106 buildCounterReadset++; |
1107 if (buildCounterReadset < 3) { | 1107 if (buildCounterReadset < 3) { |
1108 o.datasetId = "foo"; | 1108 o.datasetId = "foo"; |
1109 o.fileData = buildUnnamed1368(); | 1109 o.fileData = buildUnnamed1269(); |
1110 o.id = "foo"; | 1110 o.id = "foo"; |
1111 o.name = "foo"; | 1111 o.name = "foo"; |
1112 } | 1112 } |
1113 buildCounterReadset--; | 1113 buildCounterReadset--; |
1114 return o; | 1114 return o; |
1115 } | 1115 } |
1116 | 1116 |
1117 checkReadset(api.Readset o) { | 1117 checkReadset(api.Readset o) { |
1118 buildCounterReadset++; | 1118 buildCounterReadset++; |
1119 if (buildCounterReadset < 3) { | 1119 if (buildCounterReadset < 3) { |
1120 unittest.expect(o.datasetId, unittest.equals('foo')); | 1120 unittest.expect(o.datasetId, unittest.equals('foo')); |
1121 checkUnnamed1368(o.fileData); | 1121 checkUnnamed1269(o.fileData); |
1122 unittest.expect(o.id, unittest.equals('foo')); | 1122 unittest.expect(o.id, unittest.equals('foo')); |
1123 unittest.expect(o.name, unittest.equals('foo')); | 1123 unittest.expect(o.name, unittest.equals('foo')); |
1124 } | 1124 } |
1125 buildCounterReadset--; | 1125 buildCounterReadset--; |
1126 } | 1126 } |
1127 | 1127 |
1128 core.int buildCounterReferenceBound = 0; | 1128 core.int buildCounterReferenceBound = 0; |
1129 buildReferenceBound() { | 1129 buildReferenceBound() { |
1130 var o = new api.ReferenceBound(); | 1130 var o = new api.ReferenceBound(); |
1131 buildCounterReferenceBound++; | 1131 buildCounterReferenceBound++; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1168 unittest.expect(o.assemblyId, unittest.equals('foo')); | 1168 unittest.expect(o.assemblyId, unittest.equals('foo')); |
1169 unittest.expect(o.length, unittest.equals(42)); | 1169 unittest.expect(o.length, unittest.equals(42)); |
1170 unittest.expect(o.md5Checksum, unittest.equals('foo')); | 1170 unittest.expect(o.md5Checksum, unittest.equals('foo')); |
1171 unittest.expect(o.name, unittest.equals('foo')); | 1171 unittest.expect(o.name, unittest.equals('foo')); |
1172 unittest.expect(o.species, unittest.equals('foo')); | 1172 unittest.expect(o.species, unittest.equals('foo')); |
1173 unittest.expect(o.uri, unittest.equals('foo')); | 1173 unittest.expect(o.uri, unittest.equals('foo')); |
1174 } | 1174 } |
1175 buildCounterReferenceSequence--; | 1175 buildCounterReferenceSequence--; |
1176 } | 1176 } |
1177 | 1177 |
1178 buildUnnamed1369() { | 1178 buildUnnamed1270() { |
1179 var o = new core.List<core.String>(); | 1179 var o = new core.List<core.String>(); |
1180 o.add("foo"); | 1180 o.add("foo"); |
1181 o.add("foo"); | 1181 o.add("foo"); |
1182 return o; | 1182 return o; |
1183 } | 1183 } |
1184 | 1184 |
1185 checkUnnamed1369(core.List<core.String> o) { | 1185 checkUnnamed1270(core.List<core.String> o) { |
1186 unittest.expect(o, unittest.hasLength(2)); | 1186 unittest.expect(o, unittest.hasLength(2)); |
1187 unittest.expect(o[0], unittest.equals('foo')); | 1187 unittest.expect(o[0], unittest.equals('foo')); |
1188 unittest.expect(o[1], unittest.equals('foo')); | 1188 unittest.expect(o[1], unittest.equals('foo')); |
1189 } | 1189 } |
1190 | 1190 |
1191 core.int buildCounterSearchCallSetsRequest = 0; | 1191 core.int buildCounterSearchCallSetsRequest = 0; |
1192 buildSearchCallSetsRequest() { | 1192 buildSearchCallSetsRequest() { |
1193 var o = new api.SearchCallSetsRequest(); | 1193 var o = new api.SearchCallSetsRequest(); |
1194 buildCounterSearchCallSetsRequest++; | 1194 buildCounterSearchCallSetsRequest++; |
1195 if (buildCounterSearchCallSetsRequest < 3) { | 1195 if (buildCounterSearchCallSetsRequest < 3) { |
1196 o.name = "foo"; | 1196 o.name = "foo"; |
1197 o.pageSize = 42; | 1197 o.pageSize = 42; |
1198 o.pageToken = "foo"; | 1198 o.pageToken = "foo"; |
1199 o.variantSetIds = buildUnnamed1369(); | 1199 o.variantSetIds = buildUnnamed1270(); |
1200 } | 1200 } |
1201 buildCounterSearchCallSetsRequest--; | 1201 buildCounterSearchCallSetsRequest--; |
1202 return o; | 1202 return o; |
1203 } | 1203 } |
1204 | 1204 |
1205 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { | 1205 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { |
1206 buildCounterSearchCallSetsRequest++; | 1206 buildCounterSearchCallSetsRequest++; |
1207 if (buildCounterSearchCallSetsRequest < 3) { | 1207 if (buildCounterSearchCallSetsRequest < 3) { |
1208 unittest.expect(o.name, unittest.equals('foo')); | 1208 unittest.expect(o.name, unittest.equals('foo')); |
1209 unittest.expect(o.pageSize, unittest.equals(42)); | 1209 unittest.expect(o.pageSize, unittest.equals(42)); |
1210 unittest.expect(o.pageToken, unittest.equals('foo')); | 1210 unittest.expect(o.pageToken, unittest.equals('foo')); |
1211 checkUnnamed1369(o.variantSetIds); | 1211 checkUnnamed1270(o.variantSetIds); |
1212 } | 1212 } |
1213 buildCounterSearchCallSetsRequest--; | 1213 buildCounterSearchCallSetsRequest--; |
1214 } | 1214 } |
1215 | 1215 |
1216 buildUnnamed1370() { | 1216 buildUnnamed1271() { |
1217 var o = new core.List<api.CallSet>(); | 1217 var o = new core.List<api.CallSet>(); |
1218 o.add(buildCallSet()); | 1218 o.add(buildCallSet()); |
1219 o.add(buildCallSet()); | 1219 o.add(buildCallSet()); |
1220 return o; | 1220 return o; |
1221 } | 1221 } |
1222 | 1222 |
1223 checkUnnamed1370(core.List<api.CallSet> o) { | 1223 checkUnnamed1271(core.List<api.CallSet> o) { |
1224 unittest.expect(o, unittest.hasLength(2)); | 1224 unittest.expect(o, unittest.hasLength(2)); |
1225 checkCallSet(o[0]); | 1225 checkCallSet(o[0]); |
1226 checkCallSet(o[1]); | 1226 checkCallSet(o[1]); |
1227 } | 1227 } |
1228 | 1228 |
1229 core.int buildCounterSearchCallSetsResponse = 0; | 1229 core.int buildCounterSearchCallSetsResponse = 0; |
1230 buildSearchCallSetsResponse() { | 1230 buildSearchCallSetsResponse() { |
1231 var o = new api.SearchCallSetsResponse(); | 1231 var o = new api.SearchCallSetsResponse(); |
1232 buildCounterSearchCallSetsResponse++; | 1232 buildCounterSearchCallSetsResponse++; |
1233 if (buildCounterSearchCallSetsResponse < 3) { | 1233 if (buildCounterSearchCallSetsResponse < 3) { |
1234 o.callSets = buildUnnamed1370(); | 1234 o.callSets = buildUnnamed1271(); |
1235 o.nextPageToken = "foo"; | 1235 o.nextPageToken = "foo"; |
1236 } | 1236 } |
1237 buildCounterSearchCallSetsResponse--; | 1237 buildCounterSearchCallSetsResponse--; |
1238 return o; | 1238 return o; |
1239 } | 1239 } |
1240 | 1240 |
1241 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { | 1241 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { |
1242 buildCounterSearchCallSetsResponse++; | 1242 buildCounterSearchCallSetsResponse++; |
1243 if (buildCounterSearchCallSetsResponse < 3) { | 1243 if (buildCounterSearchCallSetsResponse < 3) { |
1244 checkUnnamed1370(o.callSets); | 1244 checkUnnamed1271(o.callSets); |
1245 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1245 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1246 } | 1246 } |
1247 buildCounterSearchCallSetsResponse--; | 1247 buildCounterSearchCallSetsResponse--; |
1248 } | 1248 } |
1249 | 1249 |
1250 buildUnnamed1371() { | 1250 buildUnnamed1272() { |
1251 var o = new core.List<core.String>(); | 1251 var o = new core.List<core.String>(); |
1252 o.add("foo"); | 1252 o.add("foo"); |
1253 o.add("foo"); | 1253 o.add("foo"); |
1254 return o; | 1254 return o; |
1255 } | 1255 } |
1256 | 1256 |
1257 checkUnnamed1371(core.List<core.String> o) { | 1257 checkUnnamed1272(core.List<core.String> o) { |
1258 unittest.expect(o, unittest.hasLength(2)); | 1258 unittest.expect(o, unittest.hasLength(2)); |
1259 unittest.expect(o[0], unittest.equals('foo')); | 1259 unittest.expect(o[0], unittest.equals('foo')); |
1260 unittest.expect(o[1], unittest.equals('foo')); | 1260 unittest.expect(o[1], unittest.equals('foo')); |
1261 } | 1261 } |
1262 | 1262 |
1263 core.int buildCounterSearchJobsRequest = 0; | 1263 core.int buildCounterSearchJobsRequest = 0; |
1264 buildSearchJobsRequest() { | 1264 buildSearchJobsRequest() { |
1265 var o = new api.SearchJobsRequest(); | 1265 var o = new api.SearchJobsRequest(); |
1266 buildCounterSearchJobsRequest++; | 1266 buildCounterSearchJobsRequest++; |
1267 if (buildCounterSearchJobsRequest < 3) { | 1267 if (buildCounterSearchJobsRequest < 3) { |
1268 o.createdAfter = "foo"; | 1268 o.createdAfter = "foo"; |
1269 o.createdBefore = "foo"; | 1269 o.createdBefore = "foo"; |
1270 o.maxResults = "foo"; | 1270 o.maxResults = "foo"; |
1271 o.pageToken = "foo"; | 1271 o.pageToken = "foo"; |
1272 o.projectId = "foo"; | 1272 o.projectId = "foo"; |
1273 o.status = buildUnnamed1371(); | 1273 o.status = buildUnnamed1272(); |
1274 } | 1274 } |
1275 buildCounterSearchJobsRequest--; | 1275 buildCounterSearchJobsRequest--; |
1276 return o; | 1276 return o; |
1277 } | 1277 } |
1278 | 1278 |
1279 checkSearchJobsRequest(api.SearchJobsRequest o) { | 1279 checkSearchJobsRequest(api.SearchJobsRequest o) { |
1280 buildCounterSearchJobsRequest++; | 1280 buildCounterSearchJobsRequest++; |
1281 if (buildCounterSearchJobsRequest < 3) { | 1281 if (buildCounterSearchJobsRequest < 3) { |
1282 unittest.expect(o.createdAfter, unittest.equals('foo')); | 1282 unittest.expect(o.createdAfter, unittest.equals('foo')); |
1283 unittest.expect(o.createdBefore, unittest.equals('foo')); | 1283 unittest.expect(o.createdBefore, unittest.equals('foo')); |
1284 unittest.expect(o.maxResults, unittest.equals('foo')); | 1284 unittest.expect(o.maxResults, unittest.equals('foo')); |
1285 unittest.expect(o.pageToken, unittest.equals('foo')); | 1285 unittest.expect(o.pageToken, unittest.equals('foo')); |
1286 unittest.expect(o.projectId, unittest.equals('foo')); | 1286 unittest.expect(o.projectId, unittest.equals('foo')); |
1287 checkUnnamed1371(o.status); | 1287 checkUnnamed1272(o.status); |
1288 } | 1288 } |
1289 buildCounterSearchJobsRequest--; | 1289 buildCounterSearchJobsRequest--; |
1290 } | 1290 } |
1291 | 1291 |
1292 buildUnnamed1372() { | 1292 buildUnnamed1273() { |
1293 var o = new core.List<api.Job>(); | 1293 var o = new core.List<api.Job>(); |
1294 o.add(buildJob()); | 1294 o.add(buildJob()); |
1295 o.add(buildJob()); | 1295 o.add(buildJob()); |
1296 return o; | 1296 return o; |
1297 } | 1297 } |
1298 | 1298 |
1299 checkUnnamed1372(core.List<api.Job> o) { | 1299 checkUnnamed1273(core.List<api.Job> o) { |
1300 unittest.expect(o, unittest.hasLength(2)); | 1300 unittest.expect(o, unittest.hasLength(2)); |
1301 checkJob(o[0]); | 1301 checkJob(o[0]); |
1302 checkJob(o[1]); | 1302 checkJob(o[1]); |
1303 } | 1303 } |
1304 | 1304 |
1305 core.int buildCounterSearchJobsResponse = 0; | 1305 core.int buildCounterSearchJobsResponse = 0; |
1306 buildSearchJobsResponse() { | 1306 buildSearchJobsResponse() { |
1307 var o = new api.SearchJobsResponse(); | 1307 var o = new api.SearchJobsResponse(); |
1308 buildCounterSearchJobsResponse++; | 1308 buildCounterSearchJobsResponse++; |
1309 if (buildCounterSearchJobsResponse < 3) { | 1309 if (buildCounterSearchJobsResponse < 3) { |
1310 o.jobs = buildUnnamed1372(); | 1310 o.jobs = buildUnnamed1273(); |
1311 o.nextPageToken = "foo"; | 1311 o.nextPageToken = "foo"; |
1312 } | 1312 } |
1313 buildCounterSearchJobsResponse--; | 1313 buildCounterSearchJobsResponse--; |
1314 return o; | 1314 return o; |
1315 } | 1315 } |
1316 | 1316 |
1317 checkSearchJobsResponse(api.SearchJobsResponse o) { | 1317 checkSearchJobsResponse(api.SearchJobsResponse o) { |
1318 buildCounterSearchJobsResponse++; | 1318 buildCounterSearchJobsResponse++; |
1319 if (buildCounterSearchJobsResponse < 3) { | 1319 if (buildCounterSearchJobsResponse < 3) { |
1320 checkUnnamed1372(o.jobs); | 1320 checkUnnamed1273(o.jobs); |
1321 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1321 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1322 } | 1322 } |
1323 buildCounterSearchJobsResponse--; | 1323 buildCounterSearchJobsResponse--; |
1324 } | 1324 } |
1325 | 1325 |
1326 buildUnnamed1373() { | 1326 buildUnnamed1274() { |
1327 var o = new core.List<core.String>(); | 1327 var o = new core.List<core.String>(); |
1328 o.add("foo"); | 1328 o.add("foo"); |
1329 o.add("foo"); | 1329 o.add("foo"); |
1330 return o; | 1330 return o; |
1331 } | 1331 } |
1332 | 1332 |
1333 checkUnnamed1373(core.List<core.String> o) { | 1333 checkUnnamed1274(core.List<core.String> o) { |
1334 unittest.expect(o, unittest.hasLength(2)); | 1334 unittest.expect(o, unittest.hasLength(2)); |
1335 unittest.expect(o[0], unittest.equals('foo')); | 1335 unittest.expect(o[0], unittest.equals('foo')); |
1336 unittest.expect(o[1], unittest.equals('foo')); | 1336 unittest.expect(o[1], unittest.equals('foo')); |
1337 } | 1337 } |
1338 | 1338 |
1339 core.int buildCounterSearchReadsRequest = 0; | 1339 core.int buildCounterSearchReadsRequest = 0; |
1340 buildSearchReadsRequest() { | 1340 buildSearchReadsRequest() { |
1341 var o = new api.SearchReadsRequest(); | 1341 var o = new api.SearchReadsRequest(); |
1342 buildCounterSearchReadsRequest++; | 1342 buildCounterSearchReadsRequest++; |
1343 if (buildCounterSearchReadsRequest < 3) { | 1343 if (buildCounterSearchReadsRequest < 3) { |
1344 o.maxResults = "foo"; | 1344 o.maxResults = "foo"; |
1345 o.pageToken = "foo"; | 1345 o.pageToken = "foo"; |
1346 o.readsetIds = buildUnnamed1373(); | 1346 o.readsetIds = buildUnnamed1274(); |
1347 o.sequenceEnd = "foo"; | 1347 o.sequenceEnd = "foo"; |
1348 o.sequenceName = "foo"; | 1348 o.sequenceName = "foo"; |
1349 o.sequenceStart = "foo"; | 1349 o.sequenceStart = "foo"; |
1350 } | 1350 } |
1351 buildCounterSearchReadsRequest--; | 1351 buildCounterSearchReadsRequest--; |
1352 return o; | 1352 return o; |
1353 } | 1353 } |
1354 | 1354 |
1355 checkSearchReadsRequest(api.SearchReadsRequest o) { | 1355 checkSearchReadsRequest(api.SearchReadsRequest o) { |
1356 buildCounterSearchReadsRequest++; | 1356 buildCounterSearchReadsRequest++; |
1357 if (buildCounterSearchReadsRequest < 3) { | 1357 if (buildCounterSearchReadsRequest < 3) { |
1358 unittest.expect(o.maxResults, unittest.equals('foo')); | 1358 unittest.expect(o.maxResults, unittest.equals('foo')); |
1359 unittest.expect(o.pageToken, unittest.equals('foo')); | 1359 unittest.expect(o.pageToken, unittest.equals('foo')); |
1360 checkUnnamed1373(o.readsetIds); | 1360 checkUnnamed1274(o.readsetIds); |
1361 unittest.expect(o.sequenceEnd, unittest.equals('foo')); | 1361 unittest.expect(o.sequenceEnd, unittest.equals('foo')); |
1362 unittest.expect(o.sequenceName, unittest.equals('foo')); | 1362 unittest.expect(o.sequenceName, unittest.equals('foo')); |
1363 unittest.expect(o.sequenceStart, unittest.equals('foo')); | 1363 unittest.expect(o.sequenceStart, unittest.equals('foo')); |
1364 } | 1364 } |
1365 buildCounterSearchReadsRequest--; | 1365 buildCounterSearchReadsRequest--; |
1366 } | 1366 } |
1367 | 1367 |
1368 buildUnnamed1374() { | 1368 buildUnnamed1275() { |
1369 var o = new core.List<api.Read>(); | 1369 var o = new core.List<api.Read>(); |
1370 o.add(buildRead()); | 1370 o.add(buildRead()); |
1371 o.add(buildRead()); | 1371 o.add(buildRead()); |
1372 return o; | 1372 return o; |
1373 } | 1373 } |
1374 | 1374 |
1375 checkUnnamed1374(core.List<api.Read> o) { | 1375 checkUnnamed1275(core.List<api.Read> o) { |
1376 unittest.expect(o, unittest.hasLength(2)); | 1376 unittest.expect(o, unittest.hasLength(2)); |
1377 checkRead(o[0]); | 1377 checkRead(o[0]); |
1378 checkRead(o[1]); | 1378 checkRead(o[1]); |
1379 } | 1379 } |
1380 | 1380 |
1381 core.int buildCounterSearchReadsResponse = 0; | 1381 core.int buildCounterSearchReadsResponse = 0; |
1382 buildSearchReadsResponse() { | 1382 buildSearchReadsResponse() { |
1383 var o = new api.SearchReadsResponse(); | 1383 var o = new api.SearchReadsResponse(); |
1384 buildCounterSearchReadsResponse++; | 1384 buildCounterSearchReadsResponse++; |
1385 if (buildCounterSearchReadsResponse < 3) { | 1385 if (buildCounterSearchReadsResponse < 3) { |
1386 o.nextPageToken = "foo"; | 1386 o.nextPageToken = "foo"; |
1387 o.reads = buildUnnamed1374(); | 1387 o.reads = buildUnnamed1275(); |
1388 } | 1388 } |
1389 buildCounterSearchReadsResponse--; | 1389 buildCounterSearchReadsResponse--; |
1390 return o; | 1390 return o; |
1391 } | 1391 } |
1392 | 1392 |
1393 checkSearchReadsResponse(api.SearchReadsResponse o) { | 1393 checkSearchReadsResponse(api.SearchReadsResponse o) { |
1394 buildCounterSearchReadsResponse++; | 1394 buildCounterSearchReadsResponse++; |
1395 if (buildCounterSearchReadsResponse < 3) { | 1395 if (buildCounterSearchReadsResponse < 3) { |
1396 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1396 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1397 checkUnnamed1374(o.reads); | 1397 checkUnnamed1275(o.reads); |
1398 } | 1398 } |
1399 buildCounterSearchReadsResponse--; | 1399 buildCounterSearchReadsResponse--; |
1400 } | 1400 } |
1401 | 1401 |
1402 buildUnnamed1375() { | 1402 buildUnnamed1276() { |
1403 var o = new core.List<core.String>(); | 1403 var o = new core.List<core.String>(); |
1404 o.add("foo"); | 1404 o.add("foo"); |
1405 o.add("foo"); | 1405 o.add("foo"); |
1406 return o; | 1406 return o; |
1407 } | 1407 } |
1408 | 1408 |
1409 checkUnnamed1375(core.List<core.String> o) { | 1409 checkUnnamed1276(core.List<core.String> o) { |
1410 unittest.expect(o, unittest.hasLength(2)); | 1410 unittest.expect(o, unittest.hasLength(2)); |
1411 unittest.expect(o[0], unittest.equals('foo')); | 1411 unittest.expect(o[0], unittest.equals('foo')); |
1412 unittest.expect(o[1], unittest.equals('foo')); | 1412 unittest.expect(o[1], unittest.equals('foo')); |
1413 } | 1413 } |
1414 | 1414 |
1415 core.int buildCounterSearchReadsetsRequest = 0; | 1415 core.int buildCounterSearchReadsetsRequest = 0; |
1416 buildSearchReadsetsRequest() { | 1416 buildSearchReadsetsRequest() { |
1417 var o = new api.SearchReadsetsRequest(); | 1417 var o = new api.SearchReadsetsRequest(); |
1418 buildCounterSearchReadsetsRequest++; | 1418 buildCounterSearchReadsetsRequest++; |
1419 if (buildCounterSearchReadsetsRequest < 3) { | 1419 if (buildCounterSearchReadsetsRequest < 3) { |
1420 o.datasetIds = buildUnnamed1375(); | 1420 o.datasetIds = buildUnnamed1276(); |
1421 o.maxResults = "foo"; | 1421 o.maxResults = "foo"; |
1422 o.name = "foo"; | 1422 o.name = "foo"; |
1423 o.pageToken = "foo"; | 1423 o.pageToken = "foo"; |
1424 } | 1424 } |
1425 buildCounterSearchReadsetsRequest--; | 1425 buildCounterSearchReadsetsRequest--; |
1426 return o; | 1426 return o; |
1427 } | 1427 } |
1428 | 1428 |
1429 checkSearchReadsetsRequest(api.SearchReadsetsRequest o) { | 1429 checkSearchReadsetsRequest(api.SearchReadsetsRequest o) { |
1430 buildCounterSearchReadsetsRequest++; | 1430 buildCounterSearchReadsetsRequest++; |
1431 if (buildCounterSearchReadsetsRequest < 3) { | 1431 if (buildCounterSearchReadsetsRequest < 3) { |
1432 checkUnnamed1375(o.datasetIds); | 1432 checkUnnamed1276(o.datasetIds); |
1433 unittest.expect(o.maxResults, unittest.equals('foo')); | 1433 unittest.expect(o.maxResults, unittest.equals('foo')); |
1434 unittest.expect(o.name, unittest.equals('foo')); | 1434 unittest.expect(o.name, unittest.equals('foo')); |
1435 unittest.expect(o.pageToken, unittest.equals('foo')); | 1435 unittest.expect(o.pageToken, unittest.equals('foo')); |
1436 } | 1436 } |
1437 buildCounterSearchReadsetsRequest--; | 1437 buildCounterSearchReadsetsRequest--; |
1438 } | 1438 } |
1439 | 1439 |
1440 buildUnnamed1376() { | 1440 buildUnnamed1277() { |
1441 var o = new core.List<api.Readset>(); | 1441 var o = new core.List<api.Readset>(); |
1442 o.add(buildReadset()); | 1442 o.add(buildReadset()); |
1443 o.add(buildReadset()); | 1443 o.add(buildReadset()); |
1444 return o; | 1444 return o; |
1445 } | 1445 } |
1446 | 1446 |
1447 checkUnnamed1376(core.List<api.Readset> o) { | 1447 checkUnnamed1277(core.List<api.Readset> o) { |
1448 unittest.expect(o, unittest.hasLength(2)); | 1448 unittest.expect(o, unittest.hasLength(2)); |
1449 checkReadset(o[0]); | 1449 checkReadset(o[0]); |
1450 checkReadset(o[1]); | 1450 checkReadset(o[1]); |
1451 } | 1451 } |
1452 | 1452 |
1453 core.int buildCounterSearchReadsetsResponse = 0; | 1453 core.int buildCounterSearchReadsetsResponse = 0; |
1454 buildSearchReadsetsResponse() { | 1454 buildSearchReadsetsResponse() { |
1455 var o = new api.SearchReadsetsResponse(); | 1455 var o = new api.SearchReadsetsResponse(); |
1456 buildCounterSearchReadsetsResponse++; | 1456 buildCounterSearchReadsetsResponse++; |
1457 if (buildCounterSearchReadsetsResponse < 3) { | 1457 if (buildCounterSearchReadsetsResponse < 3) { |
1458 o.nextPageToken = "foo"; | 1458 o.nextPageToken = "foo"; |
1459 o.readsets = buildUnnamed1376(); | 1459 o.readsets = buildUnnamed1277(); |
1460 } | 1460 } |
1461 buildCounterSearchReadsetsResponse--; | 1461 buildCounterSearchReadsetsResponse--; |
1462 return o; | 1462 return o; |
1463 } | 1463 } |
1464 | 1464 |
1465 checkSearchReadsetsResponse(api.SearchReadsetsResponse o) { | 1465 checkSearchReadsetsResponse(api.SearchReadsetsResponse o) { |
1466 buildCounterSearchReadsetsResponse++; | 1466 buildCounterSearchReadsetsResponse++; |
1467 if (buildCounterSearchReadsetsResponse < 3) { | 1467 if (buildCounterSearchReadsetsResponse < 3) { |
1468 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1468 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1469 checkUnnamed1376(o.readsets); | 1469 checkUnnamed1277(o.readsets); |
1470 } | 1470 } |
1471 buildCounterSearchReadsetsResponse--; | 1471 buildCounterSearchReadsetsResponse--; |
1472 } | 1472 } |
1473 | 1473 |
1474 buildUnnamed1377() { | 1474 buildUnnamed1278() { |
1475 var o = new core.List<core.String>(); | 1475 var o = new core.List<core.String>(); |
1476 o.add("foo"); | 1476 o.add("foo"); |
1477 o.add("foo"); | 1477 o.add("foo"); |
1478 return o; | 1478 return o; |
1479 } | 1479 } |
1480 | 1480 |
1481 checkUnnamed1377(core.List<core.String> o) { | 1481 checkUnnamed1278(core.List<core.String> o) { |
1482 unittest.expect(o, unittest.hasLength(2)); | 1482 unittest.expect(o, unittest.hasLength(2)); |
1483 unittest.expect(o[0], unittest.equals('foo')); | 1483 unittest.expect(o[0], unittest.equals('foo')); |
1484 unittest.expect(o[1], unittest.equals('foo')); | 1484 unittest.expect(o[1], unittest.equals('foo')); |
1485 } | 1485 } |
1486 | 1486 |
1487 core.int buildCounterSearchVariantSetsRequest = 0; | 1487 core.int buildCounterSearchVariantSetsRequest = 0; |
1488 buildSearchVariantSetsRequest() { | 1488 buildSearchVariantSetsRequest() { |
1489 var o = new api.SearchVariantSetsRequest(); | 1489 var o = new api.SearchVariantSetsRequest(); |
1490 buildCounterSearchVariantSetsRequest++; | 1490 buildCounterSearchVariantSetsRequest++; |
1491 if (buildCounterSearchVariantSetsRequest < 3) { | 1491 if (buildCounterSearchVariantSetsRequest < 3) { |
1492 o.datasetIds = buildUnnamed1377(); | 1492 o.datasetIds = buildUnnamed1278(); |
1493 o.pageSize = 42; | 1493 o.pageSize = 42; |
1494 o.pageToken = "foo"; | 1494 o.pageToken = "foo"; |
1495 } | 1495 } |
1496 buildCounterSearchVariantSetsRequest--; | 1496 buildCounterSearchVariantSetsRequest--; |
1497 return o; | 1497 return o; |
1498 } | 1498 } |
1499 | 1499 |
1500 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { | 1500 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { |
1501 buildCounterSearchVariantSetsRequest++; | 1501 buildCounterSearchVariantSetsRequest++; |
1502 if (buildCounterSearchVariantSetsRequest < 3) { | 1502 if (buildCounterSearchVariantSetsRequest < 3) { |
1503 checkUnnamed1377(o.datasetIds); | 1503 checkUnnamed1278(o.datasetIds); |
1504 unittest.expect(o.pageSize, unittest.equals(42)); | 1504 unittest.expect(o.pageSize, unittest.equals(42)); |
1505 unittest.expect(o.pageToken, unittest.equals('foo')); | 1505 unittest.expect(o.pageToken, unittest.equals('foo')); |
1506 } | 1506 } |
1507 buildCounterSearchVariantSetsRequest--; | 1507 buildCounterSearchVariantSetsRequest--; |
1508 } | 1508 } |
1509 | 1509 |
1510 buildUnnamed1378() { | 1510 buildUnnamed1279() { |
1511 var o = new core.List<api.VariantSet>(); | 1511 var o = new core.List<api.VariantSet>(); |
1512 o.add(buildVariantSet()); | 1512 o.add(buildVariantSet()); |
1513 o.add(buildVariantSet()); | 1513 o.add(buildVariantSet()); |
1514 return o; | 1514 return o; |
1515 } | 1515 } |
1516 | 1516 |
1517 checkUnnamed1378(core.List<api.VariantSet> o) { | 1517 checkUnnamed1279(core.List<api.VariantSet> o) { |
1518 unittest.expect(o, unittest.hasLength(2)); | 1518 unittest.expect(o, unittest.hasLength(2)); |
1519 checkVariantSet(o[0]); | 1519 checkVariantSet(o[0]); |
1520 checkVariantSet(o[1]); | 1520 checkVariantSet(o[1]); |
1521 } | 1521 } |
1522 | 1522 |
1523 core.int buildCounterSearchVariantSetsResponse = 0; | 1523 core.int buildCounterSearchVariantSetsResponse = 0; |
1524 buildSearchVariantSetsResponse() { | 1524 buildSearchVariantSetsResponse() { |
1525 var o = new api.SearchVariantSetsResponse(); | 1525 var o = new api.SearchVariantSetsResponse(); |
1526 buildCounterSearchVariantSetsResponse++; | 1526 buildCounterSearchVariantSetsResponse++; |
1527 if (buildCounterSearchVariantSetsResponse < 3) { | 1527 if (buildCounterSearchVariantSetsResponse < 3) { |
1528 o.nextPageToken = "foo"; | 1528 o.nextPageToken = "foo"; |
1529 o.variantSets = buildUnnamed1378(); | 1529 o.variantSets = buildUnnamed1279(); |
1530 } | 1530 } |
1531 buildCounterSearchVariantSetsResponse--; | 1531 buildCounterSearchVariantSetsResponse--; |
1532 return o; | 1532 return o; |
1533 } | 1533 } |
1534 | 1534 |
1535 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { | 1535 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { |
1536 buildCounterSearchVariantSetsResponse++; | 1536 buildCounterSearchVariantSetsResponse++; |
1537 if (buildCounterSearchVariantSetsResponse < 3) { | 1537 if (buildCounterSearchVariantSetsResponse < 3) { |
1538 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1538 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1539 checkUnnamed1378(o.variantSets); | 1539 checkUnnamed1279(o.variantSets); |
1540 } | 1540 } |
1541 buildCounterSearchVariantSetsResponse--; | 1541 buildCounterSearchVariantSetsResponse--; |
1542 } | 1542 } |
1543 | 1543 |
1544 buildUnnamed1379() { | 1544 buildUnnamed1280() { |
1545 var o = new core.List<core.String>(); | 1545 var o = new core.List<core.String>(); |
1546 o.add("foo"); | 1546 o.add("foo"); |
1547 o.add("foo"); | 1547 o.add("foo"); |
1548 return o; | 1548 return o; |
1549 } | 1549 } |
1550 | 1550 |
1551 checkUnnamed1379(core.List<core.String> o) { | 1551 checkUnnamed1280(core.List<core.String> o) { |
1552 unittest.expect(o, unittest.hasLength(2)); | 1552 unittest.expect(o, unittest.hasLength(2)); |
1553 unittest.expect(o[0], unittest.equals('foo')); | 1553 unittest.expect(o[0], unittest.equals('foo')); |
1554 unittest.expect(o[1], unittest.equals('foo')); | 1554 unittest.expect(o[1], unittest.equals('foo')); |
1555 } | 1555 } |
1556 | 1556 |
1557 buildUnnamed1380() { | 1557 buildUnnamed1281() { |
1558 var o = new core.List<core.String>(); | 1558 var o = new core.List<core.String>(); |
1559 o.add("foo"); | 1559 o.add("foo"); |
1560 o.add("foo"); | 1560 o.add("foo"); |
1561 return o; | 1561 return o; |
1562 } | 1562 } |
1563 | 1563 |
1564 checkUnnamed1380(core.List<core.String> o) { | 1564 checkUnnamed1281(core.List<core.String> o) { |
1565 unittest.expect(o, unittest.hasLength(2)); | 1565 unittest.expect(o, unittest.hasLength(2)); |
1566 unittest.expect(o[0], unittest.equals('foo')); | 1566 unittest.expect(o[0], unittest.equals('foo')); |
1567 unittest.expect(o[1], unittest.equals('foo')); | 1567 unittest.expect(o[1], unittest.equals('foo')); |
1568 } | 1568 } |
1569 | 1569 |
1570 core.int buildCounterSearchVariantsRequest = 0; | 1570 core.int buildCounterSearchVariantsRequest = 0; |
1571 buildSearchVariantsRequest() { | 1571 buildSearchVariantsRequest() { |
1572 var o = new api.SearchVariantsRequest(); | 1572 var o = new api.SearchVariantsRequest(); |
1573 buildCounterSearchVariantsRequest++; | 1573 buildCounterSearchVariantsRequest++; |
1574 if (buildCounterSearchVariantsRequest < 3) { | 1574 if (buildCounterSearchVariantsRequest < 3) { |
1575 o.callSetIds = buildUnnamed1379(); | 1575 o.callSetIds = buildUnnamed1280(); |
1576 o.end = "foo"; | 1576 o.end = "foo"; |
1577 o.maxCalls = 42; | 1577 o.maxCalls = 42; |
1578 o.pageSize = 42; | 1578 o.pageSize = 42; |
1579 o.pageToken = "foo"; | 1579 o.pageToken = "foo"; |
1580 o.referenceName = "foo"; | 1580 o.referenceName = "foo"; |
1581 o.start = "foo"; | 1581 o.start = "foo"; |
1582 o.variantName = "foo"; | 1582 o.variantName = "foo"; |
1583 o.variantSetIds = buildUnnamed1380(); | 1583 o.variantSetIds = buildUnnamed1281(); |
1584 } | 1584 } |
1585 buildCounterSearchVariantsRequest--; | 1585 buildCounterSearchVariantsRequest--; |
1586 return o; | 1586 return o; |
1587 } | 1587 } |
1588 | 1588 |
1589 checkSearchVariantsRequest(api.SearchVariantsRequest o) { | 1589 checkSearchVariantsRequest(api.SearchVariantsRequest o) { |
1590 buildCounterSearchVariantsRequest++; | 1590 buildCounterSearchVariantsRequest++; |
1591 if (buildCounterSearchVariantsRequest < 3) { | 1591 if (buildCounterSearchVariantsRequest < 3) { |
1592 checkUnnamed1379(o.callSetIds); | 1592 checkUnnamed1280(o.callSetIds); |
1593 unittest.expect(o.end, unittest.equals('foo')); | 1593 unittest.expect(o.end, unittest.equals('foo')); |
1594 unittest.expect(o.maxCalls, unittest.equals(42)); | 1594 unittest.expect(o.maxCalls, unittest.equals(42)); |
1595 unittest.expect(o.pageSize, unittest.equals(42)); | 1595 unittest.expect(o.pageSize, unittest.equals(42)); |
1596 unittest.expect(o.pageToken, unittest.equals('foo')); | 1596 unittest.expect(o.pageToken, unittest.equals('foo')); |
1597 unittest.expect(o.referenceName, unittest.equals('foo')); | 1597 unittest.expect(o.referenceName, unittest.equals('foo')); |
1598 unittest.expect(o.start, unittest.equals('foo')); | 1598 unittest.expect(o.start, unittest.equals('foo')); |
1599 unittest.expect(o.variantName, unittest.equals('foo')); | 1599 unittest.expect(o.variantName, unittest.equals('foo')); |
1600 checkUnnamed1380(o.variantSetIds); | 1600 checkUnnamed1281(o.variantSetIds); |
1601 } | 1601 } |
1602 buildCounterSearchVariantsRequest--; | 1602 buildCounterSearchVariantsRequest--; |
1603 } | 1603 } |
1604 | 1604 |
1605 buildUnnamed1381() { | 1605 buildUnnamed1282() { |
1606 var o = new core.List<api.Variant>(); | 1606 var o = new core.List<api.Variant>(); |
1607 o.add(buildVariant()); | 1607 o.add(buildVariant()); |
1608 o.add(buildVariant()); | 1608 o.add(buildVariant()); |
1609 return o; | 1609 return o; |
1610 } | 1610 } |
1611 | 1611 |
1612 checkUnnamed1381(core.List<api.Variant> o) { | 1612 checkUnnamed1282(core.List<api.Variant> o) { |
1613 unittest.expect(o, unittest.hasLength(2)); | 1613 unittest.expect(o, unittest.hasLength(2)); |
1614 checkVariant(o[0]); | 1614 checkVariant(o[0]); |
1615 checkVariant(o[1]); | 1615 checkVariant(o[1]); |
1616 } | 1616 } |
1617 | 1617 |
1618 core.int buildCounterSearchVariantsResponse = 0; | 1618 core.int buildCounterSearchVariantsResponse = 0; |
1619 buildSearchVariantsResponse() { | 1619 buildSearchVariantsResponse() { |
1620 var o = new api.SearchVariantsResponse(); | 1620 var o = new api.SearchVariantsResponse(); |
1621 buildCounterSearchVariantsResponse++; | 1621 buildCounterSearchVariantsResponse++; |
1622 if (buildCounterSearchVariantsResponse < 3) { | 1622 if (buildCounterSearchVariantsResponse < 3) { |
1623 o.nextPageToken = "foo"; | 1623 o.nextPageToken = "foo"; |
1624 o.variants = buildUnnamed1381(); | 1624 o.variants = buildUnnamed1282(); |
1625 } | 1625 } |
1626 buildCounterSearchVariantsResponse--; | 1626 buildCounterSearchVariantsResponse--; |
1627 return o; | 1627 return o; |
1628 } | 1628 } |
1629 | 1629 |
1630 checkSearchVariantsResponse(api.SearchVariantsResponse o) { | 1630 checkSearchVariantsResponse(api.SearchVariantsResponse o) { |
1631 buildCounterSearchVariantsResponse++; | 1631 buildCounterSearchVariantsResponse++; |
1632 if (buildCounterSearchVariantsResponse < 3) { | 1632 if (buildCounterSearchVariantsResponse < 3) { |
1633 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1633 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1634 checkUnnamed1381(o.variants); | 1634 checkUnnamed1282(o.variants); |
1635 } | 1635 } |
1636 buildCounterSearchVariantsResponse--; | 1636 buildCounterSearchVariantsResponse--; |
1637 } | 1637 } |
1638 | 1638 |
1639 buildUnnamed1382() { | 1639 buildUnnamed1283() { |
1640 var o = new core.List<core.String>(); | 1640 var o = new core.List<core.String>(); |
1641 o.add("foo"); | 1641 o.add("foo"); |
1642 o.add("foo"); | 1642 o.add("foo"); |
1643 return o; | 1643 return o; |
1644 } | 1644 } |
1645 | 1645 |
1646 checkUnnamed1382(core.List<core.String> o) { | 1646 checkUnnamed1283(core.List<core.String> o) { |
1647 unittest.expect(o, unittest.hasLength(2)); | 1647 unittest.expect(o, unittest.hasLength(2)); |
1648 unittest.expect(o[0], unittest.equals('foo')); | 1648 unittest.expect(o[0], unittest.equals('foo')); |
1649 unittest.expect(o[1], unittest.equals('foo')); | 1649 unittest.expect(o[1], unittest.equals('foo')); |
1650 } | 1650 } |
1651 | 1651 |
1652 buildUnnamed1383() { | 1652 buildUnnamed1284() { |
1653 var o = new core.List<api.Call>(); | 1653 var o = new core.List<api.Call>(); |
1654 o.add(buildCall()); | 1654 o.add(buildCall()); |
1655 o.add(buildCall()); | 1655 o.add(buildCall()); |
1656 return o; | 1656 return o; |
1657 } | 1657 } |
1658 | 1658 |
1659 checkUnnamed1383(core.List<api.Call> o) { | 1659 checkUnnamed1284(core.List<api.Call> o) { |
1660 unittest.expect(o, unittest.hasLength(2)); | 1660 unittest.expect(o, unittest.hasLength(2)); |
1661 checkCall(o[0]); | 1661 checkCall(o[0]); |
1662 checkCall(o[1]); | 1662 checkCall(o[1]); |
1663 } | 1663 } |
1664 | 1664 |
1665 buildUnnamed1384() { | 1665 buildUnnamed1285() { |
1666 var o = new core.List<core.String>(); | 1666 var o = new core.List<core.String>(); |
1667 o.add("foo"); | 1667 o.add("foo"); |
1668 o.add("foo"); | 1668 o.add("foo"); |
1669 return o; | 1669 return o; |
1670 } | 1670 } |
1671 | 1671 |
1672 checkUnnamed1384(core.List<core.String> o) { | 1672 checkUnnamed1285(core.List<core.String> o) { |
1673 unittest.expect(o, unittest.hasLength(2)); | 1673 unittest.expect(o, unittest.hasLength(2)); |
1674 unittest.expect(o[0], unittest.equals('foo')); | 1674 unittest.expect(o[0], unittest.equals('foo')); |
1675 unittest.expect(o[1], unittest.equals('foo')); | 1675 unittest.expect(o[1], unittest.equals('foo')); |
1676 } | 1676 } |
1677 | 1677 |
1678 buildUnnamed1385() { | 1678 buildUnnamed1286() { |
1679 var o = new core.List<core.String>(); | 1679 var o = new core.List<core.String>(); |
1680 o.add("foo"); | 1680 o.add("foo"); |
1681 o.add("foo"); | 1681 o.add("foo"); |
1682 return o; | 1682 return o; |
1683 } | 1683 } |
1684 | 1684 |
1685 checkUnnamed1385(core.List<core.String> o) { | 1685 checkUnnamed1286(core.List<core.String> o) { |
1686 unittest.expect(o, unittest.hasLength(2)); | 1686 unittest.expect(o, unittest.hasLength(2)); |
1687 unittest.expect(o[0], unittest.equals('foo')); | 1687 unittest.expect(o[0], unittest.equals('foo')); |
1688 unittest.expect(o[1], unittest.equals('foo')); | 1688 unittest.expect(o[1], unittest.equals('foo')); |
1689 } | 1689 } |
1690 | 1690 |
1691 buildUnnamed1386() { | 1691 buildUnnamed1287() { |
1692 var o = new core.Map<core.String, core.List<core.String>>(); | 1692 var o = new core.Map<core.String, core.List<core.String>>(); |
1693 o["x"] = buildUnnamed1385(); | 1693 o["x"] = buildUnnamed1286(); |
1694 o["y"] = buildUnnamed1385(); | 1694 o["y"] = buildUnnamed1286(); |
1695 return o; | 1695 return o; |
1696 } | 1696 } |
1697 | 1697 |
1698 checkUnnamed1386(core.Map<core.String, core.List<core.String>> o) { | 1698 checkUnnamed1287(core.Map<core.String, core.List<core.String>> o) { |
1699 unittest.expect(o, unittest.hasLength(2)); | 1699 unittest.expect(o, unittest.hasLength(2)); |
1700 checkUnnamed1385(o["x"]); | 1700 checkUnnamed1286(o["x"]); |
1701 checkUnnamed1385(o["y"]); | 1701 checkUnnamed1286(o["y"]); |
1702 } | 1702 } |
1703 | 1703 |
1704 buildUnnamed1387() { | 1704 buildUnnamed1288() { |
1705 var o = new core.List<core.String>(); | 1705 var o = new core.List<core.String>(); |
1706 o.add("foo"); | 1706 o.add("foo"); |
1707 o.add("foo"); | 1707 o.add("foo"); |
1708 return o; | 1708 return o; |
1709 } | 1709 } |
1710 | 1710 |
1711 checkUnnamed1387(core.List<core.String> o) { | 1711 checkUnnamed1288(core.List<core.String> o) { |
1712 unittest.expect(o, unittest.hasLength(2)); | 1712 unittest.expect(o, unittest.hasLength(2)); |
1713 unittest.expect(o[0], unittest.equals('foo')); | 1713 unittest.expect(o[0], unittest.equals('foo')); |
1714 unittest.expect(o[1], unittest.equals('foo')); | 1714 unittest.expect(o[1], unittest.equals('foo')); |
1715 } | 1715 } |
1716 | 1716 |
1717 core.int buildCounterVariant = 0; | 1717 core.int buildCounterVariant = 0; |
1718 buildVariant() { | 1718 buildVariant() { |
1719 var o = new api.Variant(); | 1719 var o = new api.Variant(); |
1720 buildCounterVariant++; | 1720 buildCounterVariant++; |
1721 if (buildCounterVariant < 3) { | 1721 if (buildCounterVariant < 3) { |
1722 o.alternateBases = buildUnnamed1382(); | 1722 o.alternateBases = buildUnnamed1283(); |
1723 o.calls = buildUnnamed1383(); | 1723 o.calls = buildUnnamed1284(); |
1724 o.created = "foo"; | 1724 o.created = "foo"; |
1725 o.end = "foo"; | 1725 o.end = "foo"; |
1726 o.filter = buildUnnamed1384(); | 1726 o.filter = buildUnnamed1285(); |
1727 o.id = "foo"; | 1727 o.id = "foo"; |
1728 o.info = buildUnnamed1386(); | 1728 o.info = buildUnnamed1287(); |
1729 o.names = buildUnnamed1387(); | 1729 o.names = buildUnnamed1288(); |
1730 o.quality = 42.0; | 1730 o.quality = 42.0; |
1731 o.referenceBases = "foo"; | 1731 o.referenceBases = "foo"; |
1732 o.referenceName = "foo"; | 1732 o.referenceName = "foo"; |
1733 o.start = "foo"; | 1733 o.start = "foo"; |
1734 o.variantSetId = "foo"; | 1734 o.variantSetId = "foo"; |
1735 } | 1735 } |
1736 buildCounterVariant--; | 1736 buildCounterVariant--; |
1737 return o; | 1737 return o; |
1738 } | 1738 } |
1739 | 1739 |
1740 checkVariant(api.Variant o) { | 1740 checkVariant(api.Variant o) { |
1741 buildCounterVariant++; | 1741 buildCounterVariant++; |
1742 if (buildCounterVariant < 3) { | 1742 if (buildCounterVariant < 3) { |
1743 checkUnnamed1382(o.alternateBases); | 1743 checkUnnamed1283(o.alternateBases); |
1744 checkUnnamed1383(o.calls); | 1744 checkUnnamed1284(o.calls); |
1745 unittest.expect(o.created, unittest.equals('foo')); | 1745 unittest.expect(o.created, unittest.equals('foo')); |
1746 unittest.expect(o.end, unittest.equals('foo')); | 1746 unittest.expect(o.end, unittest.equals('foo')); |
1747 checkUnnamed1384(o.filter); | 1747 checkUnnamed1285(o.filter); |
1748 unittest.expect(o.id, unittest.equals('foo')); | 1748 unittest.expect(o.id, unittest.equals('foo')); |
1749 checkUnnamed1386(o.info); | 1749 checkUnnamed1287(o.info); |
1750 checkUnnamed1387(o.names); | 1750 checkUnnamed1288(o.names); |
1751 unittest.expect(o.quality, unittest.equals(42.0)); | 1751 unittest.expect(o.quality, unittest.equals(42.0)); |
1752 unittest.expect(o.referenceBases, unittest.equals('foo')); | 1752 unittest.expect(o.referenceBases, unittest.equals('foo')); |
1753 unittest.expect(o.referenceName, unittest.equals('foo')); | 1753 unittest.expect(o.referenceName, unittest.equals('foo')); |
1754 unittest.expect(o.start, unittest.equals('foo')); | 1754 unittest.expect(o.start, unittest.equals('foo')); |
1755 unittest.expect(o.variantSetId, unittest.equals('foo')); | 1755 unittest.expect(o.variantSetId, unittest.equals('foo')); |
1756 } | 1756 } |
1757 buildCounterVariant--; | 1757 buildCounterVariant--; |
1758 } | 1758 } |
1759 | 1759 |
1760 buildUnnamed1388() { | 1760 buildUnnamed1289() { |
1761 var o = new core.List<api.Metadata>(); | 1761 var o = new core.List<api.Metadata>(); |
1762 o.add(buildMetadata()); | 1762 o.add(buildMetadata()); |
1763 o.add(buildMetadata()); | 1763 o.add(buildMetadata()); |
1764 return o; | 1764 return o; |
1765 } | 1765 } |
1766 | 1766 |
1767 checkUnnamed1388(core.List<api.Metadata> o) { | 1767 checkUnnamed1289(core.List<api.Metadata> o) { |
1768 unittest.expect(o, unittest.hasLength(2)); | 1768 unittest.expect(o, unittest.hasLength(2)); |
1769 checkMetadata(o[0]); | 1769 checkMetadata(o[0]); |
1770 checkMetadata(o[1]); | 1770 checkMetadata(o[1]); |
1771 } | 1771 } |
1772 | 1772 |
1773 buildUnnamed1389() { | 1773 buildUnnamed1290() { |
1774 var o = new core.List<api.ReferenceBound>(); | 1774 var o = new core.List<api.ReferenceBound>(); |
1775 o.add(buildReferenceBound()); | 1775 o.add(buildReferenceBound()); |
1776 o.add(buildReferenceBound()); | 1776 o.add(buildReferenceBound()); |
1777 return o; | 1777 return o; |
1778 } | 1778 } |
1779 | 1779 |
1780 checkUnnamed1389(core.List<api.ReferenceBound> o) { | 1780 checkUnnamed1290(core.List<api.ReferenceBound> o) { |
1781 unittest.expect(o, unittest.hasLength(2)); | 1781 unittest.expect(o, unittest.hasLength(2)); |
1782 checkReferenceBound(o[0]); | 1782 checkReferenceBound(o[0]); |
1783 checkReferenceBound(o[1]); | 1783 checkReferenceBound(o[1]); |
1784 } | 1784 } |
1785 | 1785 |
1786 core.int buildCounterVariantSet = 0; | 1786 core.int buildCounterVariantSet = 0; |
1787 buildVariantSet() { | 1787 buildVariantSet() { |
1788 var o = new api.VariantSet(); | 1788 var o = new api.VariantSet(); |
1789 buildCounterVariantSet++; | 1789 buildCounterVariantSet++; |
1790 if (buildCounterVariantSet < 3) { | 1790 if (buildCounterVariantSet < 3) { |
1791 o.datasetId = "foo"; | 1791 o.datasetId = "foo"; |
1792 o.id = "foo"; | 1792 o.id = "foo"; |
1793 o.metadata = buildUnnamed1388(); | 1793 o.metadata = buildUnnamed1289(); |
1794 o.referenceBounds = buildUnnamed1389(); | 1794 o.referenceBounds = buildUnnamed1290(); |
1795 } | 1795 } |
1796 buildCounterVariantSet--; | 1796 buildCounterVariantSet--; |
1797 return o; | 1797 return o; |
1798 } | 1798 } |
1799 | 1799 |
1800 checkVariantSet(api.VariantSet o) { | 1800 checkVariantSet(api.VariantSet o) { |
1801 buildCounterVariantSet++; | 1801 buildCounterVariantSet++; |
1802 if (buildCounterVariantSet < 3) { | 1802 if (buildCounterVariantSet < 3) { |
1803 unittest.expect(o.datasetId, unittest.equals('foo')); | 1803 unittest.expect(o.datasetId, unittest.equals('foo')); |
1804 unittest.expect(o.id, unittest.equals('foo')); | 1804 unittest.expect(o.id, unittest.equals('foo')); |
1805 checkUnnamed1388(o.metadata); | 1805 checkUnnamed1289(o.metadata); |
1806 checkUnnamed1389(o.referenceBounds); | 1806 checkUnnamed1290(o.referenceBounds); |
1807 } | 1807 } |
1808 buildCounterVariantSet--; | 1808 buildCounterVariantSet--; |
1809 } | 1809 } |
1810 | 1810 |
1811 | 1811 |
1812 main() { | 1812 main() { |
1813 unittest.group("obj-schema-Call", () { | 1813 unittest.group("obj-schema-Call", () { |
1814 unittest.test("to-json--from-json", () { | 1814 unittest.test("to-json--from-json", () { |
1815 var o = buildCall(); | 1815 var o = buildCall(); |
1816 var od = new api.Call.fromJson(o.toJson()); | 1816 var od = new api.Call.fromJson(o.toJson()); |
(...skipping 2378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4195 res.update(arg_request, arg_variantSetId).then(unittest.expectAsync(((api.
VariantSet response) { | 4195 res.update(arg_request, arg_variantSetId).then(unittest.expectAsync(((api.
VariantSet response) { |
4196 checkVariantSet(response); | 4196 checkVariantSet(response); |
4197 }))); | 4197 }))); |
4198 }); | 4198 }); |
4199 | 4199 |
4200 }); | 4200 }); |
4201 | 4201 |
4202 | 4202 |
4203 } | 4203 } |
4204 | 4204 |
OLD | NEW |