Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(503)

Side by Side Diff: generated/googleapis/test/genomics/v1_test.dart

Issue 2039113004: Api-roll 37: 2016-06-06 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 library googleapis.genomics.v1.test; 1 library googleapis.genomics.v1.test;
2 2
3 import "dart:core" as core; 3 import "dart:core" as core;
4 import "dart:collection" as collection; 4 import "dart:collection" as collection;
5 import "dart:async" as async; 5 import "dart:async" as async;
6 import "dart:convert" as convert; 6 import "dart:convert" as convert;
7 7
8 import 'package:http/http.dart' as http; 8 import 'package:http/http.dart' as http;
9 import 'package:http/testing.dart' as http_testing; 9 import 'package:http/testing.dart' as http_testing;
10 import 'package:unittest/unittest.dart' as unittest; 10 import 'package:unittest/unittest.dart' as unittest;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 } 44 }
45 } 45 }
46 } 46 }
47 47
48 http.StreamedResponse stringResponse( 48 http.StreamedResponse stringResponse(
49 core.int status, core.Map headers, core.String body) { 49 core.int status, core.Map headers, core.String body) {
50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]);
51 return new http.StreamedResponse(stream, status, headers: headers); 51 return new http.StreamedResponse(stream, status, headers: headers);
52 } 52 }
53 53
54 buildUnnamed2320() { 54 buildUnnamed2500() {
55 var o = new core.List<core.Object>(); 55 var o = new core.List<core.Object>();
56 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 56 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
57 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 57 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
58 return o; 58 return o;
59 } 59 }
60 60
61 checkUnnamed2320(core.List<core.Object> o) { 61 checkUnnamed2500(core.List<core.Object> o) {
62 unittest.expect(o, unittest.hasLength(2)); 62 unittest.expect(o, unittest.hasLength(2));
63 var casted1 = (o[0]) as core.Map; unittest.expect(casted1, unittest.hasLength( 3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"], u nittest.equals('foo')); 63 var casted1 = (o[0]) as core.Map; unittest.expect(casted1, unittest.hasLength( 3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"], u nittest.equals('foo'));
64 var casted2 = (o[1]) as core.Map; unittest.expect(casted2, unittest.hasLength( 3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"], u nittest.equals('foo')); 64 var casted2 = (o[1]) as core.Map; unittest.expect(casted2, unittest.hasLength( 3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"], u nittest.equals('foo'));
65 } 65 }
66 66
67 buildUnnamed2321() { 67 buildUnnamed2501() {
68 var o = new core.Map<core.String, core.List<core.Object>>(); 68 var o = new core.Map<core.String, core.List<core.Object>>();
69 o["x"] = buildUnnamed2320(); 69 o["x"] = buildUnnamed2500();
70 o["y"] = buildUnnamed2320(); 70 o["y"] = buildUnnamed2500();
71 return o; 71 return o;
72 } 72 }
73 73
74 checkUnnamed2321(core.Map<core.String, core.List<core.Object>> o) { 74 checkUnnamed2501(core.Map<core.String, core.List<core.Object>> o) {
75 unittest.expect(o, unittest.hasLength(2)); 75 unittest.expect(o, unittest.hasLength(2));
76 checkUnnamed2320(o["x"]); 76 checkUnnamed2500(o["x"]);
77 checkUnnamed2320(o["y"]); 77 checkUnnamed2500(o["y"]);
78 } 78 }
79 79
80 core.int buildCounterAnnotation = 0; 80 core.int buildCounterAnnotation = 0;
81 buildAnnotation() { 81 buildAnnotation() {
82 var o = new api.Annotation(); 82 var o = new api.Annotation();
83 buildCounterAnnotation++; 83 buildCounterAnnotation++;
84 if (buildCounterAnnotation < 3) { 84 if (buildCounterAnnotation < 3) {
85 o.annotationSetId = "foo"; 85 o.annotationSetId = "foo";
86 o.end = "foo"; 86 o.end = "foo";
87 o.id = "foo"; 87 o.id = "foo";
88 o.info = buildUnnamed2321(); 88 o.info = buildUnnamed2501();
89 o.name = "foo"; 89 o.name = "foo";
90 o.referenceId = "foo"; 90 o.referenceId = "foo";
91 o.referenceName = "foo"; 91 o.referenceName = "foo";
92 o.reverseStrand = true; 92 o.reverseStrand = true;
93 o.start = "foo"; 93 o.start = "foo";
94 o.transcript = buildTranscript(); 94 o.transcript = buildTranscript();
95 o.type = "foo"; 95 o.type = "foo";
96 o.variant = buildVariantAnnotation(); 96 o.variant = buildVariantAnnotation();
97 } 97 }
98 buildCounterAnnotation--; 98 buildCounterAnnotation--;
99 return o; 99 return o;
100 } 100 }
101 101
102 checkAnnotation(api.Annotation o) { 102 checkAnnotation(api.Annotation o) {
103 buildCounterAnnotation++; 103 buildCounterAnnotation++;
104 if (buildCounterAnnotation < 3) { 104 if (buildCounterAnnotation < 3) {
105 unittest.expect(o.annotationSetId, unittest.equals('foo')); 105 unittest.expect(o.annotationSetId, unittest.equals('foo'));
106 unittest.expect(o.end, unittest.equals('foo')); 106 unittest.expect(o.end, unittest.equals('foo'));
107 unittest.expect(o.id, unittest.equals('foo')); 107 unittest.expect(o.id, unittest.equals('foo'));
108 checkUnnamed2321(o.info); 108 checkUnnamed2501(o.info);
109 unittest.expect(o.name, unittest.equals('foo')); 109 unittest.expect(o.name, unittest.equals('foo'));
110 unittest.expect(o.referenceId, unittest.equals('foo')); 110 unittest.expect(o.referenceId, unittest.equals('foo'));
111 unittest.expect(o.referenceName, unittest.equals('foo')); 111 unittest.expect(o.referenceName, unittest.equals('foo'));
112 unittest.expect(o.reverseStrand, unittest.isTrue); 112 unittest.expect(o.reverseStrand, unittest.isTrue);
113 unittest.expect(o.start, unittest.equals('foo')); 113 unittest.expect(o.start, unittest.equals('foo'));
114 checkTranscript(o.transcript); 114 checkTranscript(o.transcript);
115 unittest.expect(o.type, unittest.equals('foo')); 115 unittest.expect(o.type, unittest.equals('foo'));
116 checkVariantAnnotation(o.variant); 116 checkVariantAnnotation(o.variant);
117 } 117 }
118 buildCounterAnnotation--; 118 buildCounterAnnotation--;
119 } 119 }
120 120
121 buildUnnamed2322() { 121 buildUnnamed2502() {
122 var o = new core.List<core.Object>(); 122 var o = new core.List<core.Object>();
123 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 123 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
124 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 124 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
125 return o; 125 return o;
126 } 126 }
127 127
128 checkUnnamed2322(core.List<core.Object> o) { 128 checkUnnamed2502(core.List<core.Object> o) {
129 unittest.expect(o, unittest.hasLength(2)); 129 unittest.expect(o, unittest.hasLength(2));
130 var casted3 = (o[0]) as core.Map; unittest.expect(casted3, unittest.hasLength( 3)); unittest.expect(casted3["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted3["bool"], unittest.equals(true)); unittest.expect(casted3["string"], u nittest.equals('foo')); 130 var casted3 = (o[0]) as core.Map; unittest.expect(casted3, unittest.hasLength( 3)); unittest.expect(casted3["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted3["bool"], unittest.equals(true)); unittest.expect(casted3["string"], u nittest.equals('foo'));
131 var casted4 = (o[1]) as core.Map; unittest.expect(casted4, unittest.hasLength( 3)); unittest.expect(casted4["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted4["bool"], unittest.equals(true)); unittest.expect(casted4["string"], u nittest.equals('foo')); 131 var casted4 = (o[1]) as core.Map; unittest.expect(casted4, unittest.hasLength( 3)); unittest.expect(casted4["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted4["bool"], unittest.equals(true)); unittest.expect(casted4["string"], u nittest.equals('foo'));
132 } 132 }
133 133
134 buildUnnamed2323() { 134 buildUnnamed2503() {
135 var o = new core.Map<core.String, core.List<core.Object>>(); 135 var o = new core.Map<core.String, core.List<core.Object>>();
136 o["x"] = buildUnnamed2322(); 136 o["x"] = buildUnnamed2502();
137 o["y"] = buildUnnamed2322(); 137 o["y"] = buildUnnamed2502();
138 return o; 138 return o;
139 } 139 }
140 140
141 checkUnnamed2323(core.Map<core.String, core.List<core.Object>> o) { 141 checkUnnamed2503(core.Map<core.String, core.List<core.Object>> o) {
142 unittest.expect(o, unittest.hasLength(2)); 142 unittest.expect(o, unittest.hasLength(2));
143 checkUnnamed2322(o["x"]); 143 checkUnnamed2502(o["x"]);
144 checkUnnamed2322(o["y"]); 144 checkUnnamed2502(o["y"]);
145 } 145 }
146 146
147 core.int buildCounterAnnotationSet = 0; 147 core.int buildCounterAnnotationSet = 0;
148 buildAnnotationSet() { 148 buildAnnotationSet() {
149 var o = new api.AnnotationSet(); 149 var o = new api.AnnotationSet();
150 buildCounterAnnotationSet++; 150 buildCounterAnnotationSet++;
151 if (buildCounterAnnotationSet < 3) { 151 if (buildCounterAnnotationSet < 3) {
152 o.datasetId = "foo"; 152 o.datasetId = "foo";
153 o.id = "foo"; 153 o.id = "foo";
154 o.info = buildUnnamed2323(); 154 o.info = buildUnnamed2503();
155 o.name = "foo"; 155 o.name = "foo";
156 o.referenceSetId = "foo"; 156 o.referenceSetId = "foo";
157 o.sourceUri = "foo"; 157 o.sourceUri = "foo";
158 o.type = "foo"; 158 o.type = "foo";
159 } 159 }
160 buildCounterAnnotationSet--; 160 buildCounterAnnotationSet--;
161 return o; 161 return o;
162 } 162 }
163 163
164 checkAnnotationSet(api.AnnotationSet o) { 164 checkAnnotationSet(api.AnnotationSet o) {
165 buildCounterAnnotationSet++; 165 buildCounterAnnotationSet++;
166 if (buildCounterAnnotationSet < 3) { 166 if (buildCounterAnnotationSet < 3) {
167 unittest.expect(o.datasetId, unittest.equals('foo')); 167 unittest.expect(o.datasetId, unittest.equals('foo'));
168 unittest.expect(o.id, unittest.equals('foo')); 168 unittest.expect(o.id, unittest.equals('foo'));
169 checkUnnamed2323(o.info); 169 checkUnnamed2503(o.info);
170 unittest.expect(o.name, unittest.equals('foo')); 170 unittest.expect(o.name, unittest.equals('foo'));
171 unittest.expect(o.referenceSetId, unittest.equals('foo')); 171 unittest.expect(o.referenceSetId, unittest.equals('foo'));
172 unittest.expect(o.sourceUri, unittest.equals('foo')); 172 unittest.expect(o.sourceUri, unittest.equals('foo'));
173 unittest.expect(o.type, unittest.equals('foo')); 173 unittest.expect(o.type, unittest.equals('foo'));
174 } 174 }
175 buildCounterAnnotationSet--; 175 buildCounterAnnotationSet--;
176 } 176 }
177 177
178 buildUnnamed2324() { 178 buildUnnamed2504() {
179 var o = new core.List<api.Annotation>(); 179 var o = new core.List<api.Annotation>();
180 o.add(buildAnnotation()); 180 o.add(buildAnnotation());
181 o.add(buildAnnotation()); 181 o.add(buildAnnotation());
182 return o; 182 return o;
183 } 183 }
184 184
185 checkUnnamed2324(core.List<api.Annotation> o) { 185 checkUnnamed2504(core.List<api.Annotation> o) {
186 unittest.expect(o, unittest.hasLength(2)); 186 unittest.expect(o, unittest.hasLength(2));
187 checkAnnotation(o[0]); 187 checkAnnotation(o[0]);
188 checkAnnotation(o[1]); 188 checkAnnotation(o[1]);
189 } 189 }
190 190
191 core.int buildCounterBatchCreateAnnotationsRequest = 0; 191 core.int buildCounterBatchCreateAnnotationsRequest = 0;
192 buildBatchCreateAnnotationsRequest() { 192 buildBatchCreateAnnotationsRequest() {
193 var o = new api.BatchCreateAnnotationsRequest(); 193 var o = new api.BatchCreateAnnotationsRequest();
194 buildCounterBatchCreateAnnotationsRequest++; 194 buildCounterBatchCreateAnnotationsRequest++;
195 if (buildCounterBatchCreateAnnotationsRequest < 3) { 195 if (buildCounterBatchCreateAnnotationsRequest < 3) {
196 o.annotations = buildUnnamed2324(); 196 o.annotations = buildUnnamed2504();
197 } 197 }
198 buildCounterBatchCreateAnnotationsRequest--; 198 buildCounterBatchCreateAnnotationsRequest--;
199 return o; 199 return o;
200 } 200 }
201 201
202 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) { 202 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) {
203 buildCounterBatchCreateAnnotationsRequest++; 203 buildCounterBatchCreateAnnotationsRequest++;
204 if (buildCounterBatchCreateAnnotationsRequest < 3) { 204 if (buildCounterBatchCreateAnnotationsRequest < 3) {
205 checkUnnamed2324(o.annotations); 205 checkUnnamed2504(o.annotations);
206 } 206 }
207 buildCounterBatchCreateAnnotationsRequest--; 207 buildCounterBatchCreateAnnotationsRequest--;
208 } 208 }
209 209
210 buildUnnamed2325() { 210 buildUnnamed2505() {
211 var o = new core.List<api.Entry>(); 211 var o = new core.List<api.Entry>();
212 o.add(buildEntry()); 212 o.add(buildEntry());
213 o.add(buildEntry()); 213 o.add(buildEntry());
214 return o; 214 return o;
215 } 215 }
216 216
217 checkUnnamed2325(core.List<api.Entry> o) { 217 checkUnnamed2505(core.List<api.Entry> o) {
218 unittest.expect(o, unittest.hasLength(2)); 218 unittest.expect(o, unittest.hasLength(2));
219 checkEntry(o[0]); 219 checkEntry(o[0]);
220 checkEntry(o[1]); 220 checkEntry(o[1]);
221 } 221 }
222 222
223 core.int buildCounterBatchCreateAnnotationsResponse = 0; 223 core.int buildCounterBatchCreateAnnotationsResponse = 0;
224 buildBatchCreateAnnotationsResponse() { 224 buildBatchCreateAnnotationsResponse() {
225 var o = new api.BatchCreateAnnotationsResponse(); 225 var o = new api.BatchCreateAnnotationsResponse();
226 buildCounterBatchCreateAnnotationsResponse++; 226 buildCounterBatchCreateAnnotationsResponse++;
227 if (buildCounterBatchCreateAnnotationsResponse < 3) { 227 if (buildCounterBatchCreateAnnotationsResponse < 3) {
228 o.entries = buildUnnamed2325(); 228 o.entries = buildUnnamed2505();
229 } 229 }
230 buildCounterBatchCreateAnnotationsResponse--; 230 buildCounterBatchCreateAnnotationsResponse--;
231 return o; 231 return o;
232 } 232 }
233 233
234 checkBatchCreateAnnotationsResponse(api.BatchCreateAnnotationsResponse o) { 234 checkBatchCreateAnnotationsResponse(api.BatchCreateAnnotationsResponse o) {
235 buildCounterBatchCreateAnnotationsResponse++; 235 buildCounterBatchCreateAnnotationsResponse++;
236 if (buildCounterBatchCreateAnnotationsResponse < 3) { 236 if (buildCounterBatchCreateAnnotationsResponse < 3) {
237 checkUnnamed2325(o.entries); 237 checkUnnamed2505(o.entries);
238 } 238 }
239 buildCounterBatchCreateAnnotationsResponse--; 239 buildCounterBatchCreateAnnotationsResponse--;
240 } 240 }
241 241
242 buildUnnamed2326() { 242 buildUnnamed2506() {
243 var o = new core.List<core.String>(); 243 var o = new core.List<core.String>();
244 o.add("foo"); 244 o.add("foo");
245 o.add("foo"); 245 o.add("foo");
246 return o; 246 return o;
247 } 247 }
248 248
249 checkUnnamed2326(core.List<core.String> o) { 249 checkUnnamed2506(core.List<core.String> o) {
250 unittest.expect(o, unittest.hasLength(2)); 250 unittest.expect(o, unittest.hasLength(2));
251 unittest.expect(o[0], unittest.equals('foo')); 251 unittest.expect(o[0], unittest.equals('foo'));
252 unittest.expect(o[1], unittest.equals('foo')); 252 unittest.expect(o[1], unittest.equals('foo'));
253 } 253 }
254 254
255 core.int buildCounterBinding = 0; 255 core.int buildCounterBinding = 0;
256 buildBinding() { 256 buildBinding() {
257 var o = new api.Binding(); 257 var o = new api.Binding();
258 buildCounterBinding++; 258 buildCounterBinding++;
259 if (buildCounterBinding < 3) { 259 if (buildCounterBinding < 3) {
260 o.members = buildUnnamed2326(); 260 o.members = buildUnnamed2506();
261 o.role = "foo"; 261 o.role = "foo";
262 } 262 }
263 buildCounterBinding--; 263 buildCounterBinding--;
264 return o; 264 return o;
265 } 265 }
266 266
267 checkBinding(api.Binding o) { 267 checkBinding(api.Binding o) {
268 buildCounterBinding++; 268 buildCounterBinding++;
269 if (buildCounterBinding < 3) { 269 if (buildCounterBinding < 3) {
270 checkUnnamed2326(o.members); 270 checkUnnamed2506(o.members);
271 unittest.expect(o.role, unittest.equals('foo')); 271 unittest.expect(o.role, unittest.equals('foo'));
272 } 272 }
273 buildCounterBinding--; 273 buildCounterBinding--;
274 } 274 }
275 275
276 buildUnnamed2327() { 276 buildUnnamed2507() {
277 var o = new core.List<core.Object>(); 277 var o = new core.List<core.Object>();
278 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 278 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
279 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 279 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
280 return o; 280 return o;
281 } 281 }
282 282
283 checkUnnamed2327(core.List<core.Object> o) { 283 checkUnnamed2507(core.List<core.Object> o) {
284 unittest.expect(o, unittest.hasLength(2)); 284 unittest.expect(o, unittest.hasLength(2));
285 var casted5 = (o[0]) as core.Map; unittest.expect(casted5, unittest.hasLength( 3)); unittest.expect(casted5["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted5["bool"], unittest.equals(true)); unittest.expect(casted5["string"], u nittest.equals('foo')); 285 var casted5 = (o[0]) as core.Map; unittest.expect(casted5, unittest.hasLength( 3)); unittest.expect(casted5["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted5["bool"], unittest.equals(true)); unittest.expect(casted5["string"], u nittest.equals('foo'));
286 var casted6 = (o[1]) as core.Map; unittest.expect(casted6, unittest.hasLength( 3)); unittest.expect(casted6["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted6["bool"], unittest.equals(true)); unittest.expect(casted6["string"], u nittest.equals('foo')); 286 var casted6 = (o[1]) as core.Map; unittest.expect(casted6, unittest.hasLength( 3)); unittest.expect(casted6["list"], unittest.equals([1, 2, 3])); unittest.expe ct(casted6["bool"], unittest.equals(true)); unittest.expect(casted6["string"], u nittest.equals('foo'));
287 } 287 }
288 288
289 buildUnnamed2328() { 289 buildUnnamed2508() {
290 var o = new core.Map<core.String, core.List<core.Object>>(); 290 var o = new core.Map<core.String, core.List<core.Object>>();
291 o["x"] = buildUnnamed2327(); 291 o["x"] = buildUnnamed2507();
292 o["y"] = buildUnnamed2327(); 292 o["y"] = buildUnnamed2507();
293 return o; 293 return o;
294 } 294 }
295 295
296 checkUnnamed2328(core.Map<core.String, core.List<core.Object>> o) { 296 checkUnnamed2508(core.Map<core.String, core.List<core.Object>> o) {
297 unittest.expect(o, unittest.hasLength(2)); 297 unittest.expect(o, unittest.hasLength(2));
298 checkUnnamed2327(o["x"]); 298 checkUnnamed2507(o["x"]);
299 checkUnnamed2327(o["y"]); 299 checkUnnamed2507(o["y"]);
300 } 300 }
301 301
302 buildUnnamed2329() { 302 buildUnnamed2509() {
303 var o = new core.List<core.String>(); 303 var o = new core.List<core.String>();
304 o.add("foo"); 304 o.add("foo");
305 o.add("foo"); 305 o.add("foo");
306 return o; 306 return o;
307 } 307 }
308 308
309 checkUnnamed2329(core.List<core.String> o) { 309 checkUnnamed2509(core.List<core.String> o) {
310 unittest.expect(o, unittest.hasLength(2)); 310 unittest.expect(o, unittest.hasLength(2));
311 unittest.expect(o[0], unittest.equals('foo')); 311 unittest.expect(o[0], unittest.equals('foo'));
312 unittest.expect(o[1], unittest.equals('foo')); 312 unittest.expect(o[1], unittest.equals('foo'));
313 } 313 }
314 314
315 core.int buildCounterCallSet = 0; 315 core.int buildCounterCallSet = 0;
316 buildCallSet() { 316 buildCallSet() {
317 var o = new api.CallSet(); 317 var o = new api.CallSet();
318 buildCounterCallSet++; 318 buildCounterCallSet++;
319 if (buildCounterCallSet < 3) { 319 if (buildCounterCallSet < 3) {
320 o.created = "foo"; 320 o.created = "foo";
321 o.id = "foo"; 321 o.id = "foo";
322 o.info = buildUnnamed2328(); 322 o.info = buildUnnamed2508();
323 o.name = "foo"; 323 o.name = "foo";
324 o.sampleId = "foo"; 324 o.sampleId = "foo";
325 o.variantSetIds = buildUnnamed2329(); 325 o.variantSetIds = buildUnnamed2509();
326 } 326 }
327 buildCounterCallSet--; 327 buildCounterCallSet--;
328 return o; 328 return o;
329 } 329 }
330 330
331 checkCallSet(api.CallSet o) { 331 checkCallSet(api.CallSet o) {
332 buildCounterCallSet++; 332 buildCounterCallSet++;
333 if (buildCounterCallSet < 3) { 333 if (buildCounterCallSet < 3) {
334 unittest.expect(o.created, unittest.equals('foo')); 334 unittest.expect(o.created, unittest.equals('foo'));
335 unittest.expect(o.id, unittest.equals('foo')); 335 unittest.expect(o.id, unittest.equals('foo'));
336 checkUnnamed2328(o.info); 336 checkUnnamed2508(o.info);
337 unittest.expect(o.name, unittest.equals('foo')); 337 unittest.expect(o.name, unittest.equals('foo'));
338 unittest.expect(o.sampleId, unittest.equals('foo')); 338 unittest.expect(o.sampleId, unittest.equals('foo'));
339 checkUnnamed2329(o.variantSetIds); 339 checkUnnamed2509(o.variantSetIds);
340 } 340 }
341 buildCounterCallSet--; 341 buildCounterCallSet--;
342 } 342 }
343 343
344 core.int buildCounterCancelOperationRequest = 0; 344 core.int buildCounterCancelOperationRequest = 0;
345 buildCancelOperationRequest() { 345 buildCancelOperationRequest() {
346 var o = new api.CancelOperationRequest(); 346 var o = new api.CancelOperationRequest();
347 buildCounterCancelOperationRequest++; 347 buildCounterCancelOperationRequest++;
348 if (buildCounterCancelOperationRequest < 3) { 348 if (buildCounterCancelOperationRequest < 3) {
349 } 349 }
(...skipping 24 matching lines...) Expand all
374 checkCigarUnit(api.CigarUnit o) { 374 checkCigarUnit(api.CigarUnit o) {
375 buildCounterCigarUnit++; 375 buildCounterCigarUnit++;
376 if (buildCounterCigarUnit < 3) { 376 if (buildCounterCigarUnit < 3) {
377 unittest.expect(o.operation, unittest.equals('foo')); 377 unittest.expect(o.operation, unittest.equals('foo'));
378 unittest.expect(o.operationLength, unittest.equals('foo')); 378 unittest.expect(o.operationLength, unittest.equals('foo'));
379 unittest.expect(o.referenceSequence, unittest.equals('foo')); 379 unittest.expect(o.referenceSequence, unittest.equals('foo'));
380 } 380 }
381 buildCounterCigarUnit--; 381 buildCounterCigarUnit--;
382 } 382 }
383 383
384 buildUnnamed2330() { 384 buildUnnamed2510() {
385 var o = new core.List<api.ExternalId>(); 385 var o = new core.List<api.ExternalId>();
386 o.add(buildExternalId()); 386 o.add(buildExternalId());
387 o.add(buildExternalId()); 387 o.add(buildExternalId());
388 return o; 388 return o;
389 } 389 }
390 390
391 checkUnnamed2330(core.List<api.ExternalId> o) { 391 checkUnnamed2510(core.List<api.ExternalId> o) {
392 unittest.expect(o, unittest.hasLength(2)); 392 unittest.expect(o, unittest.hasLength(2));
393 checkExternalId(o[0]); 393 checkExternalId(o[0]);
394 checkExternalId(o[1]); 394 checkExternalId(o[1]);
395 } 395 }
396 396
397 buildUnnamed2331() { 397 buildUnnamed2511() {
398 var o = new core.List<core.String>(); 398 var o = new core.List<core.String>();
399 o.add("foo"); 399 o.add("foo");
400 o.add("foo"); 400 o.add("foo");
401 return o; 401 return o;
402 } 402 }
403 403
404 checkUnnamed2331(core.List<core.String> o) { 404 checkUnnamed2511(core.List<core.String> o) {
405 unittest.expect(o, unittest.hasLength(2)); 405 unittest.expect(o, unittest.hasLength(2));
406 unittest.expect(o[0], unittest.equals('foo')); 406 unittest.expect(o[0], unittest.equals('foo'));
407 unittest.expect(o[1], unittest.equals('foo')); 407 unittest.expect(o[1], unittest.equals('foo'));
408 } 408 }
409 409
410 core.int buildCounterClinicalCondition = 0; 410 core.int buildCounterClinicalCondition = 0;
411 buildClinicalCondition() { 411 buildClinicalCondition() {
412 var o = new api.ClinicalCondition(); 412 var o = new api.ClinicalCondition();
413 buildCounterClinicalCondition++; 413 buildCounterClinicalCondition++;
414 if (buildCounterClinicalCondition < 3) { 414 if (buildCounterClinicalCondition < 3) {
415 o.conceptId = "foo"; 415 o.conceptId = "foo";
416 o.externalIds = buildUnnamed2330(); 416 o.externalIds = buildUnnamed2510();
417 o.names = buildUnnamed2331(); 417 o.names = buildUnnamed2511();
418 o.omimId = "foo"; 418 o.omimId = "foo";
419 } 419 }
420 buildCounterClinicalCondition--; 420 buildCounterClinicalCondition--;
421 return o; 421 return o;
422 } 422 }
423 423
424 checkClinicalCondition(api.ClinicalCondition o) { 424 checkClinicalCondition(api.ClinicalCondition o) {
425 buildCounterClinicalCondition++; 425 buildCounterClinicalCondition++;
426 if (buildCounterClinicalCondition < 3) { 426 if (buildCounterClinicalCondition < 3) {
427 unittest.expect(o.conceptId, unittest.equals('foo')); 427 unittest.expect(o.conceptId, unittest.equals('foo'));
428 checkUnnamed2330(o.externalIds); 428 checkUnnamed2510(o.externalIds);
429 checkUnnamed2331(o.names); 429 checkUnnamed2511(o.names);
430 unittest.expect(o.omimId, unittest.equals('foo')); 430 unittest.expect(o.omimId, unittest.equals('foo'));
431 } 431 }
432 buildCounterClinicalCondition--; 432 buildCounterClinicalCondition--;
433 } 433 }
434 434
435 core.int buildCounterCodingSequence = 0; 435 core.int buildCounterCodingSequence = 0;
436 buildCodingSequence() { 436 buildCodingSequence() {
437 var o = new api.CodingSequence(); 437 var o = new api.CodingSequence();
438 buildCounterCodingSequence++; 438 buildCounterCodingSequence++;
439 if (buildCounterCodingSequence < 3) { 439 if (buildCounterCodingSequence < 3) {
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 buildCounterExperiment++; 578 buildCounterExperiment++;
579 if (buildCounterExperiment < 3) { 579 if (buildCounterExperiment < 3) {
580 unittest.expect(o.instrumentModel, unittest.equals('foo')); 580 unittest.expect(o.instrumentModel, unittest.equals('foo'));
581 unittest.expect(o.libraryId, unittest.equals('foo')); 581 unittest.expect(o.libraryId, unittest.equals('foo'));
582 unittest.expect(o.platformUnit, unittest.equals('foo')); 582 unittest.expect(o.platformUnit, unittest.equals('foo'));
583 unittest.expect(o.sequencingCenter, unittest.equals('foo')); 583 unittest.expect(o.sequencingCenter, unittest.equals('foo'));
584 } 584 }
585 buildCounterExperiment--; 585 buildCounterExperiment--;
586 } 586 }
587 587
588 buildUnnamed2332() { 588 buildUnnamed2512() {
589 var o = new core.List<core.String>(); 589 var o = new core.List<core.String>();
590 o.add("foo"); 590 o.add("foo");
591 o.add("foo"); 591 o.add("foo");
592 return o; 592 return o;
593 } 593 }
594 594
595 checkUnnamed2332(core.List<core.String> o) { 595 checkUnnamed2512(core.List<core.String> o) {
596 unittest.expect(o, unittest.hasLength(2)); 596 unittest.expect(o, unittest.hasLength(2));
597 unittest.expect(o[0], unittest.equals('foo')); 597 unittest.expect(o[0], unittest.equals('foo'));
598 unittest.expect(o[1], unittest.equals('foo')); 598 unittest.expect(o[1], unittest.equals('foo'));
599 } 599 }
600 600
601 core.int buildCounterExportReadGroupSetRequest = 0; 601 core.int buildCounterExportReadGroupSetRequest = 0;
602 buildExportReadGroupSetRequest() { 602 buildExportReadGroupSetRequest() {
603 var o = new api.ExportReadGroupSetRequest(); 603 var o = new api.ExportReadGroupSetRequest();
604 buildCounterExportReadGroupSetRequest++; 604 buildCounterExportReadGroupSetRequest++;
605 if (buildCounterExportReadGroupSetRequest < 3) { 605 if (buildCounterExportReadGroupSetRequest < 3) {
606 o.exportUri = "foo"; 606 o.exportUri = "foo";
607 o.projectId = "foo"; 607 o.projectId = "foo";
608 o.referenceNames = buildUnnamed2332(); 608 o.referenceNames = buildUnnamed2512();
609 } 609 }
610 buildCounterExportReadGroupSetRequest--; 610 buildCounterExportReadGroupSetRequest--;
611 return o; 611 return o;
612 } 612 }
613 613
614 checkExportReadGroupSetRequest(api.ExportReadGroupSetRequest o) { 614 checkExportReadGroupSetRequest(api.ExportReadGroupSetRequest o) {
615 buildCounterExportReadGroupSetRequest++; 615 buildCounterExportReadGroupSetRequest++;
616 if (buildCounterExportReadGroupSetRequest < 3) { 616 if (buildCounterExportReadGroupSetRequest < 3) {
617 unittest.expect(o.exportUri, unittest.equals('foo')); 617 unittest.expect(o.exportUri, unittest.equals('foo'));
618 unittest.expect(o.projectId, unittest.equals('foo')); 618 unittest.expect(o.projectId, unittest.equals('foo'));
619 checkUnnamed2332(o.referenceNames); 619 checkUnnamed2512(o.referenceNames);
620 } 620 }
621 buildCounterExportReadGroupSetRequest--; 621 buildCounterExportReadGroupSetRequest--;
622 } 622 }
623 623
624 buildUnnamed2333() { 624 buildUnnamed2513() {
625 var o = new core.List<core.String>(); 625 var o = new core.List<core.String>();
626 o.add("foo"); 626 o.add("foo");
627 o.add("foo"); 627 o.add("foo");
628 return o; 628 return o;
629 } 629 }
630 630
631 checkUnnamed2333(core.List<core.String> o) { 631 checkUnnamed2513(core.List<core.String> o) {
632 unittest.expect(o, unittest.hasLength(2)); 632 unittest.expect(o, unittest.hasLength(2));
633 unittest.expect(o[0], unittest.equals('foo')); 633 unittest.expect(o[0], unittest.equals('foo'));
634 unittest.expect(o[1], unittest.equals('foo')); 634 unittest.expect(o[1], unittest.equals('foo'));
635 } 635 }
636 636
637 core.int buildCounterExportVariantSetRequest = 0; 637 core.int buildCounterExportVariantSetRequest = 0;
638 buildExportVariantSetRequest() { 638 buildExportVariantSetRequest() {
639 var o = new api.ExportVariantSetRequest(); 639 var o = new api.ExportVariantSetRequest();
640 buildCounterExportVariantSetRequest++; 640 buildCounterExportVariantSetRequest++;
641 if (buildCounterExportVariantSetRequest < 3) { 641 if (buildCounterExportVariantSetRequest < 3) {
642 o.bigqueryDataset = "foo"; 642 o.bigqueryDataset = "foo";
643 o.bigqueryTable = "foo"; 643 o.bigqueryTable = "foo";
644 o.callSetIds = buildUnnamed2333(); 644 o.callSetIds = buildUnnamed2513();
645 o.format = "foo"; 645 o.format = "foo";
646 o.projectId = "foo"; 646 o.projectId = "foo";
647 } 647 }
648 buildCounterExportVariantSetRequest--; 648 buildCounterExportVariantSetRequest--;
649 return o; 649 return o;
650 } 650 }
651 651
652 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { 652 checkExportVariantSetRequest(api.ExportVariantSetRequest o) {
653 buildCounterExportVariantSetRequest++; 653 buildCounterExportVariantSetRequest++;
654 if (buildCounterExportVariantSetRequest < 3) { 654 if (buildCounterExportVariantSetRequest < 3) {
655 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); 655 unittest.expect(o.bigqueryDataset, unittest.equals('foo'));
656 unittest.expect(o.bigqueryTable, unittest.equals('foo')); 656 unittest.expect(o.bigqueryTable, unittest.equals('foo'));
657 checkUnnamed2333(o.callSetIds); 657 checkUnnamed2513(o.callSetIds);
658 unittest.expect(o.format, unittest.equals('foo')); 658 unittest.expect(o.format, unittest.equals('foo'));
659 unittest.expect(o.projectId, unittest.equals('foo')); 659 unittest.expect(o.projectId, unittest.equals('foo'));
660 } 660 }
661 buildCounterExportVariantSetRequest--; 661 buildCounterExportVariantSetRequest--;
662 } 662 }
663 663
664 core.int buildCounterExternalId = 0; 664 core.int buildCounterExternalId = 0;
665 buildExternalId() { 665 buildExternalId() {
666 var o = new api.ExternalId(); 666 var o = new api.ExternalId();
667 buildCounterExternalId++; 667 buildCounterExternalId++;
(...skipping 24 matching lines...) Expand all
692 return o; 692 return o;
693 } 693 }
694 694
695 checkGetIamPolicyRequest(api.GetIamPolicyRequest o) { 695 checkGetIamPolicyRequest(api.GetIamPolicyRequest o) {
696 buildCounterGetIamPolicyRequest++; 696 buildCounterGetIamPolicyRequest++;
697 if (buildCounterGetIamPolicyRequest < 3) { 697 if (buildCounterGetIamPolicyRequest < 3) {
698 } 698 }
699 buildCounterGetIamPolicyRequest--; 699 buildCounterGetIamPolicyRequest--;
700 } 700 }
701 701
702 buildUnnamed2334() { 702 buildUnnamed2514() {
703 var o = new core.List<core.String>(); 703 var o = new core.List<core.String>();
704 o.add("foo"); 704 o.add("foo");
705 o.add("foo"); 705 o.add("foo");
706 return o; 706 return o;
707 } 707 }
708 708
709 checkUnnamed2334(core.List<core.String> o) { 709 checkUnnamed2514(core.List<core.String> o) {
710 unittest.expect(o, unittest.hasLength(2)); 710 unittest.expect(o, unittest.hasLength(2));
711 unittest.expect(o[0], unittest.equals('foo')); 711 unittest.expect(o[0], unittest.equals('foo'));
712 unittest.expect(o[1], unittest.equals('foo')); 712 unittest.expect(o[1], unittest.equals('foo'));
713 } 713 }
714 714
715 core.int buildCounterImportReadGroupSetsRequest = 0; 715 core.int buildCounterImportReadGroupSetsRequest = 0;
716 buildImportReadGroupSetsRequest() { 716 buildImportReadGroupSetsRequest() {
717 var o = new api.ImportReadGroupSetsRequest(); 717 var o = new api.ImportReadGroupSetsRequest();
718 buildCounterImportReadGroupSetsRequest++; 718 buildCounterImportReadGroupSetsRequest++;
719 if (buildCounterImportReadGroupSetsRequest < 3) { 719 if (buildCounterImportReadGroupSetsRequest < 3) {
720 o.datasetId = "foo"; 720 o.datasetId = "foo";
721 o.partitionStrategy = "foo"; 721 o.partitionStrategy = "foo";
722 o.referenceSetId = "foo"; 722 o.referenceSetId = "foo";
723 o.sourceUris = buildUnnamed2334(); 723 o.sourceUris = buildUnnamed2514();
724 } 724 }
725 buildCounterImportReadGroupSetsRequest--; 725 buildCounterImportReadGroupSetsRequest--;
726 return o; 726 return o;
727 } 727 }
728 728
729 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { 729 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) {
730 buildCounterImportReadGroupSetsRequest++; 730 buildCounterImportReadGroupSetsRequest++;
731 if (buildCounterImportReadGroupSetsRequest < 3) { 731 if (buildCounterImportReadGroupSetsRequest < 3) {
732 unittest.expect(o.datasetId, unittest.equals('foo')); 732 unittest.expect(o.datasetId, unittest.equals('foo'));
733 unittest.expect(o.partitionStrategy, unittest.equals('foo')); 733 unittest.expect(o.partitionStrategy, unittest.equals('foo'));
734 unittest.expect(o.referenceSetId, unittest.equals('foo')); 734 unittest.expect(o.referenceSetId, unittest.equals('foo'));
735 checkUnnamed2334(o.sourceUris); 735 checkUnnamed2514(o.sourceUris);
736 } 736 }
737 buildCounterImportReadGroupSetsRequest--; 737 buildCounterImportReadGroupSetsRequest--;
738 } 738 }
739 739
740 buildUnnamed2335() { 740 buildUnnamed2515() {
741 var o = new core.List<core.String>(); 741 var o = new core.List<core.String>();
742 o.add("foo"); 742 o.add("foo");
743 o.add("foo"); 743 o.add("foo");
744 return o; 744 return o;
745 } 745 }
746 746
747 checkUnnamed2335(core.List<core.String> o) { 747 checkUnnamed2515(core.List<core.String> o) {
748 unittest.expect(o, unittest.hasLength(2)); 748 unittest.expect(o, unittest.hasLength(2));
749 unittest.expect(o[0], unittest.equals('foo')); 749 unittest.expect(o[0], unittest.equals('foo'));
750 unittest.expect(o[1], unittest.equals('foo')); 750 unittest.expect(o[1], unittest.equals('foo'));
751 } 751 }
752 752
753 core.int buildCounterImportReadGroupSetsResponse = 0; 753 core.int buildCounterImportReadGroupSetsResponse = 0;
754 buildImportReadGroupSetsResponse() { 754 buildImportReadGroupSetsResponse() {
755 var o = new api.ImportReadGroupSetsResponse(); 755 var o = new api.ImportReadGroupSetsResponse();
756 buildCounterImportReadGroupSetsResponse++; 756 buildCounterImportReadGroupSetsResponse++;
757 if (buildCounterImportReadGroupSetsResponse < 3) { 757 if (buildCounterImportReadGroupSetsResponse < 3) {
758 o.readGroupSetIds = buildUnnamed2335(); 758 o.readGroupSetIds = buildUnnamed2515();
759 } 759 }
760 buildCounterImportReadGroupSetsResponse--; 760 buildCounterImportReadGroupSetsResponse--;
761 return o; 761 return o;
762 } 762 }
763 763
764 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { 764 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) {
765 buildCounterImportReadGroupSetsResponse++; 765 buildCounterImportReadGroupSetsResponse++;
766 if (buildCounterImportReadGroupSetsResponse < 3) { 766 if (buildCounterImportReadGroupSetsResponse < 3) {
767 checkUnnamed2335(o.readGroupSetIds); 767 checkUnnamed2515(o.readGroupSetIds);
768 } 768 }
769 buildCounterImportReadGroupSetsResponse--; 769 buildCounterImportReadGroupSetsResponse--;
770 } 770 }
771 771
772 buildUnnamed2336() { 772 buildUnnamed2516() {
773 var o = new core.Map<core.String, core.String>(); 773 var o = new core.Map<core.String, core.String>();
774 o["x"] = "foo"; 774 o["x"] = "foo";
775 o["y"] = "foo"; 775 o["y"] = "foo";
776 return o; 776 return o;
777 } 777 }
778 778
779 checkUnnamed2336(core.Map<core.String, core.String> o) { 779 checkUnnamed2516(core.Map<core.String, core.String> o) {
780 unittest.expect(o, unittest.hasLength(2)); 780 unittest.expect(o, unittest.hasLength(2));
781 unittest.expect(o["x"], unittest.equals('foo')); 781 unittest.expect(o["x"], unittest.equals('foo'));
782 unittest.expect(o["y"], unittest.equals('foo')); 782 unittest.expect(o["y"], unittest.equals('foo'));
783 } 783 }
784 784
785 buildUnnamed2337() { 785 buildUnnamed2517() {
786 var o = new core.List<core.String>(); 786 var o = new core.List<core.String>();
787 o.add("foo"); 787 o.add("foo");
788 o.add("foo"); 788 o.add("foo");
789 return o; 789 return o;
790 } 790 }
791 791
792 checkUnnamed2337(core.List<core.String> o) { 792 checkUnnamed2517(core.List<core.String> o) {
793 unittest.expect(o, unittest.hasLength(2)); 793 unittest.expect(o, unittest.hasLength(2));
794 unittest.expect(o[0], unittest.equals('foo')); 794 unittest.expect(o[0], unittest.equals('foo'));
795 unittest.expect(o[1], unittest.equals('foo')); 795 unittest.expect(o[1], unittest.equals('foo'));
796 } 796 }
797 797
798 core.int buildCounterImportVariantsRequest = 0; 798 core.int buildCounterImportVariantsRequest = 0;
799 buildImportVariantsRequest() { 799 buildImportVariantsRequest() {
800 var o = new api.ImportVariantsRequest(); 800 var o = new api.ImportVariantsRequest();
801 buildCounterImportVariantsRequest++; 801 buildCounterImportVariantsRequest++;
802 if (buildCounterImportVariantsRequest < 3) { 802 if (buildCounterImportVariantsRequest < 3) {
803 o.format = "foo"; 803 o.format = "foo";
804 o.infoMergeConfig = buildUnnamed2336(); 804 o.infoMergeConfig = buildUnnamed2516();
805 o.normalizeReferenceNames = true; 805 o.normalizeReferenceNames = true;
806 o.sourceUris = buildUnnamed2337(); 806 o.sourceUris = buildUnnamed2517();
807 o.variantSetId = "foo"; 807 o.variantSetId = "foo";
808 } 808 }
809 buildCounterImportVariantsRequest--; 809 buildCounterImportVariantsRequest--;
810 return o; 810 return o;
811 } 811 }
812 812
813 checkImportVariantsRequest(api.ImportVariantsRequest o) { 813 checkImportVariantsRequest(api.ImportVariantsRequest o) {
814 buildCounterImportVariantsRequest++; 814 buildCounterImportVariantsRequest++;
815 if (buildCounterImportVariantsRequest < 3) { 815 if (buildCounterImportVariantsRequest < 3) {
816 unittest.expect(o.format, unittest.equals('foo')); 816 unittest.expect(o.format, unittest.equals('foo'));
817 checkUnnamed2336(o.infoMergeConfig); 817 checkUnnamed2516(o.infoMergeConfig);
818 unittest.expect(o.normalizeReferenceNames, unittest.isTrue); 818 unittest.expect(o.normalizeReferenceNames, unittest.isTrue);
819 checkUnnamed2337(o.sourceUris); 819 checkUnnamed2517(o.sourceUris);
820 unittest.expect(o.variantSetId, unittest.equals('foo')); 820 unittest.expect(o.variantSetId, unittest.equals('foo'));
821 } 821 }
822 buildCounterImportVariantsRequest--; 822 buildCounterImportVariantsRequest--;
823 } 823 }
824 824
825 buildUnnamed2338() { 825 buildUnnamed2518() {
826 var o = new core.List<core.String>(); 826 var o = new core.List<core.String>();
827 o.add("foo"); 827 o.add("foo");
828 o.add("foo"); 828 o.add("foo");
829 return o; 829 return o;
830 } 830 }
831 831
832 checkUnnamed2338(core.List<core.String> o) { 832 checkUnnamed2518(core.List<core.String> o) {
833 unittest.expect(o, unittest.hasLength(2)); 833 unittest.expect(o, unittest.hasLength(2));
834 unittest.expect(o[0], unittest.equals('foo')); 834 unittest.expect(o[0], unittest.equals('foo'));
835 unittest.expect(o[1], unittest.equals('foo')); 835 unittest.expect(o[1], unittest.equals('foo'));
836 } 836 }
837 837
838 core.int buildCounterImportVariantsResponse = 0; 838 core.int buildCounterImportVariantsResponse = 0;
839 buildImportVariantsResponse() { 839 buildImportVariantsResponse() {
840 var o = new api.ImportVariantsResponse(); 840 var o = new api.ImportVariantsResponse();
841 buildCounterImportVariantsResponse++; 841 buildCounterImportVariantsResponse++;
842 if (buildCounterImportVariantsResponse < 3) { 842 if (buildCounterImportVariantsResponse < 3) {
843 o.callSetIds = buildUnnamed2338(); 843 o.callSetIds = buildUnnamed2518();
844 } 844 }
845 buildCounterImportVariantsResponse--; 845 buildCounterImportVariantsResponse--;
846 return o; 846 return o;
847 } 847 }
848 848
849 checkImportVariantsResponse(api.ImportVariantsResponse o) { 849 checkImportVariantsResponse(api.ImportVariantsResponse o) {
850 buildCounterImportVariantsResponse++; 850 buildCounterImportVariantsResponse++;
851 if (buildCounterImportVariantsResponse < 3) { 851 if (buildCounterImportVariantsResponse < 3) {
852 checkUnnamed2338(o.callSetIds); 852 checkUnnamed2518(o.callSetIds);
853 } 853 }
854 buildCounterImportVariantsResponse--; 854 buildCounterImportVariantsResponse--;
855 } 855 }
856 856
857 buildUnnamed2339() { 857 buildUnnamed2519() {
858 var o = new core.List<api.CigarUnit>(); 858 var o = new core.List<api.CigarUnit>();
859 o.add(buildCigarUnit()); 859 o.add(buildCigarUnit());
860 o.add(buildCigarUnit()); 860 o.add(buildCigarUnit());
861 return o; 861 return o;
862 } 862 }
863 863
864 checkUnnamed2339(core.List<api.CigarUnit> o) { 864 checkUnnamed2519(core.List<api.CigarUnit> o) {
865 unittest.expect(o, unittest.hasLength(2)); 865 unittest.expect(o, unittest.hasLength(2));
866 checkCigarUnit(o[0]); 866 checkCigarUnit(o[0]);
867 checkCigarUnit(o[1]); 867 checkCigarUnit(o[1]);
868 } 868 }
869 869
870 core.int buildCounterLinearAlignment = 0; 870 core.int buildCounterLinearAlignment = 0;
871 buildLinearAlignment() { 871 buildLinearAlignment() {
872 var o = new api.LinearAlignment(); 872 var o = new api.LinearAlignment();
873 buildCounterLinearAlignment++; 873 buildCounterLinearAlignment++;
874 if (buildCounterLinearAlignment < 3) { 874 if (buildCounterLinearAlignment < 3) {
875 o.cigar = buildUnnamed2339(); 875 o.cigar = buildUnnamed2519();
876 o.mappingQuality = 42; 876 o.mappingQuality = 42;
877 o.position = buildPosition(); 877 o.position = buildPosition();
878 } 878 }
879 buildCounterLinearAlignment--; 879 buildCounterLinearAlignment--;
880 return o; 880 return o;
881 } 881 }
882 882
883 checkLinearAlignment(api.LinearAlignment o) { 883 checkLinearAlignment(api.LinearAlignment o) {
884 buildCounterLinearAlignment++; 884 buildCounterLinearAlignment++;
885 if (buildCounterLinearAlignment < 3) { 885 if (buildCounterLinearAlignment < 3) {
886 checkUnnamed2339(o.cigar); 886 checkUnnamed2519(o.cigar);
887 unittest.expect(o.mappingQuality, unittest.equals(42)); 887 unittest.expect(o.mappingQuality, unittest.equals(42));
888 checkPosition(o.position); 888 checkPosition(o.position);
889 } 889 }
890 buildCounterLinearAlignment--; 890 buildCounterLinearAlignment--;
891 } 891 }
892 892
893 core.int buildCounterListBasesResponse = 0; 893 core.int buildCounterListBasesResponse = 0;
894 buildListBasesResponse() { 894 buildListBasesResponse() {
895 var o = new api.ListBasesResponse(); 895 var o = new api.ListBasesResponse();
896 buildCounterListBasesResponse++; 896 buildCounterListBasesResponse++;
897 if (buildCounterListBasesResponse < 3) { 897 if (buildCounterListBasesResponse < 3) {
898 o.nextPageToken = "foo"; 898 o.nextPageToken = "foo";
899 o.offset = "foo"; 899 o.offset = "foo";
900 o.sequence = "foo"; 900 o.sequence = "foo";
901 } 901 }
902 buildCounterListBasesResponse--; 902 buildCounterListBasesResponse--;
903 return o; 903 return o;
904 } 904 }
905 905
906 checkListBasesResponse(api.ListBasesResponse o) { 906 checkListBasesResponse(api.ListBasesResponse o) {
907 buildCounterListBasesResponse++; 907 buildCounterListBasesResponse++;
908 if (buildCounterListBasesResponse < 3) { 908 if (buildCounterListBasesResponse < 3) {
909 unittest.expect(o.nextPageToken, unittest.equals('foo')); 909 unittest.expect(o.nextPageToken, unittest.equals('foo'));
910 unittest.expect(o.offset, unittest.equals('foo')); 910 unittest.expect(o.offset, unittest.equals('foo'));
911 unittest.expect(o.sequence, unittest.equals('foo')); 911 unittest.expect(o.sequence, unittest.equals('foo'));
912 } 912 }
913 buildCounterListBasesResponse--; 913 buildCounterListBasesResponse--;
914 } 914 }
915 915
916 buildUnnamed2340() { 916 buildUnnamed2520() {
917 var o = new core.List<api.CoverageBucket>(); 917 var o = new core.List<api.CoverageBucket>();
918 o.add(buildCoverageBucket()); 918 o.add(buildCoverageBucket());
919 o.add(buildCoverageBucket()); 919 o.add(buildCoverageBucket());
920 return o; 920 return o;
921 } 921 }
922 922
923 checkUnnamed2340(core.List<api.CoverageBucket> o) { 923 checkUnnamed2520(core.List<api.CoverageBucket> o) {
924 unittest.expect(o, unittest.hasLength(2)); 924 unittest.expect(o, unittest.hasLength(2));
925 checkCoverageBucket(o[0]); 925 checkCoverageBucket(o[0]);
926 checkCoverageBucket(o[1]); 926 checkCoverageBucket(o[1]);
927 } 927 }
928 928
929 core.int buildCounterListCoverageBucketsResponse = 0; 929 core.int buildCounterListCoverageBucketsResponse = 0;
930 buildListCoverageBucketsResponse() { 930 buildListCoverageBucketsResponse() {
931 var o = new api.ListCoverageBucketsResponse(); 931 var o = new api.ListCoverageBucketsResponse();
932 buildCounterListCoverageBucketsResponse++; 932 buildCounterListCoverageBucketsResponse++;
933 if (buildCounterListCoverageBucketsResponse < 3) { 933 if (buildCounterListCoverageBucketsResponse < 3) {
934 o.bucketWidth = "foo"; 934 o.bucketWidth = "foo";
935 o.coverageBuckets = buildUnnamed2340(); 935 o.coverageBuckets = buildUnnamed2520();
936 o.nextPageToken = "foo"; 936 o.nextPageToken = "foo";
937 } 937 }
938 buildCounterListCoverageBucketsResponse--; 938 buildCounterListCoverageBucketsResponse--;
939 return o; 939 return o;
940 } 940 }
941 941
942 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { 942 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) {
943 buildCounterListCoverageBucketsResponse++; 943 buildCounterListCoverageBucketsResponse++;
944 if (buildCounterListCoverageBucketsResponse < 3) { 944 if (buildCounterListCoverageBucketsResponse < 3) {
945 unittest.expect(o.bucketWidth, unittest.equals('foo')); 945 unittest.expect(o.bucketWidth, unittest.equals('foo'));
946 checkUnnamed2340(o.coverageBuckets); 946 checkUnnamed2520(o.coverageBuckets);
947 unittest.expect(o.nextPageToken, unittest.equals('foo')); 947 unittest.expect(o.nextPageToken, unittest.equals('foo'));
948 } 948 }
949 buildCounterListCoverageBucketsResponse--; 949 buildCounterListCoverageBucketsResponse--;
950 } 950 }
951 951
952 buildUnnamed2341() { 952 buildUnnamed2521() {
953 var o = new core.List<api.Dataset>(); 953 var o = new core.List<api.Dataset>();
954 o.add(buildDataset()); 954 o.add(buildDataset());
955 o.add(buildDataset()); 955 o.add(buildDataset());
956 return o; 956 return o;
957 } 957 }
958 958
959 checkUnnamed2341(core.List<api.Dataset> o) { 959 checkUnnamed2521(core.List<api.Dataset> o) {
960 unittest.expect(o, unittest.hasLength(2)); 960 unittest.expect(o, unittest.hasLength(2));
961 checkDataset(o[0]); 961 checkDataset(o[0]);
962 checkDataset(o[1]); 962 checkDataset(o[1]);
963 } 963 }
964 964
965 core.int buildCounterListDatasetsResponse = 0; 965 core.int buildCounterListDatasetsResponse = 0;
966 buildListDatasetsResponse() { 966 buildListDatasetsResponse() {
967 var o = new api.ListDatasetsResponse(); 967 var o = new api.ListDatasetsResponse();
968 buildCounterListDatasetsResponse++; 968 buildCounterListDatasetsResponse++;
969 if (buildCounterListDatasetsResponse < 3) { 969 if (buildCounterListDatasetsResponse < 3) {
970 o.datasets = buildUnnamed2341(); 970 o.datasets = buildUnnamed2521();
971 o.nextPageToken = "foo"; 971 o.nextPageToken = "foo";
972 } 972 }
973 buildCounterListDatasetsResponse--; 973 buildCounterListDatasetsResponse--;
974 return o; 974 return o;
975 } 975 }
976 976
977 checkListDatasetsResponse(api.ListDatasetsResponse o) { 977 checkListDatasetsResponse(api.ListDatasetsResponse o) {
978 buildCounterListDatasetsResponse++; 978 buildCounterListDatasetsResponse++;
979 if (buildCounterListDatasetsResponse < 3) { 979 if (buildCounterListDatasetsResponse < 3) {
980 checkUnnamed2341(o.datasets); 980 checkUnnamed2521(o.datasets);
981 unittest.expect(o.nextPageToken, unittest.equals('foo')); 981 unittest.expect(o.nextPageToken, unittest.equals('foo'));
982 } 982 }
983 buildCounterListDatasetsResponse--; 983 buildCounterListDatasetsResponse--;
984 } 984 }
985 985
986 buildUnnamed2342() { 986 buildUnnamed2522() {
987 var o = new core.List<api.Operation>(); 987 var o = new core.List<api.Operation>();
988 o.add(buildOperation()); 988 o.add(buildOperation());
989 o.add(buildOperation()); 989 o.add(buildOperation());
990 return o; 990 return o;
991 } 991 }
992 992
993 checkUnnamed2342(core.List<api.Operation> o) { 993 checkUnnamed2522(core.List<api.Operation> o) {
994 unittest.expect(o, unittest.hasLength(2)); 994 unittest.expect(o, unittest.hasLength(2));
995 checkOperation(o[0]); 995 checkOperation(o[0]);
996 checkOperation(o[1]); 996 checkOperation(o[1]);
997 } 997 }
998 998
999 core.int buildCounterListOperationsResponse = 0; 999 core.int buildCounterListOperationsResponse = 0;
1000 buildListOperationsResponse() { 1000 buildListOperationsResponse() {
1001 var o = new api.ListOperationsResponse(); 1001 var o = new api.ListOperationsResponse();
1002 buildCounterListOperationsResponse++; 1002 buildCounterListOperationsResponse++;
1003 if (buildCounterListOperationsResponse < 3) { 1003 if (buildCounterListOperationsResponse < 3) {
1004 o.nextPageToken = "foo"; 1004 o.nextPageToken = "foo";
1005 o.operations = buildUnnamed2342(); 1005 o.operations = buildUnnamed2522();
1006 } 1006 }
1007 buildCounterListOperationsResponse--; 1007 buildCounterListOperationsResponse--;
1008 return o; 1008 return o;
1009 } 1009 }
1010 1010
1011 checkListOperationsResponse(api.ListOperationsResponse o) { 1011 checkListOperationsResponse(api.ListOperationsResponse o) {
1012 buildCounterListOperationsResponse++; 1012 buildCounterListOperationsResponse++;
1013 if (buildCounterListOperationsResponse < 3) { 1013 if (buildCounterListOperationsResponse < 3) {
1014 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1014 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1015 checkUnnamed2342(o.operations); 1015 checkUnnamed2522(o.operations);
1016 } 1016 }
1017 buildCounterListOperationsResponse--; 1017 buildCounterListOperationsResponse--;
1018 } 1018 }
1019 1019
1020 buildUnnamed2343() { 1020 buildUnnamed2523() {
1021 var o = new core.Map<core.String, core.String>(); 1021 var o = new core.Map<core.String, core.String>();
1022 o["x"] = "foo"; 1022 o["x"] = "foo";
1023 o["y"] = "foo"; 1023 o["y"] = "foo";
1024 return o; 1024 return o;
1025 } 1025 }
1026 1026
1027 checkUnnamed2343(core.Map<core.String, core.String> o) { 1027 checkUnnamed2523(core.Map<core.String, core.String> o) {
1028 unittest.expect(o, unittest.hasLength(2)); 1028 unittest.expect(o, unittest.hasLength(2));
1029 unittest.expect(o["x"], unittest.equals('foo')); 1029 unittest.expect(o["x"], unittest.equals('foo'));
1030 unittest.expect(o["y"], unittest.equals('foo')); 1030 unittest.expect(o["y"], unittest.equals('foo'));
1031 } 1031 }
1032 1032
1033 buildUnnamed2344() { 1033 buildUnnamed2524() {
1034 var o = new core.List<api.Variant>(); 1034 var o = new core.List<api.Variant>();
1035 o.add(buildVariant()); 1035 o.add(buildVariant());
1036 o.add(buildVariant()); 1036 o.add(buildVariant());
1037 return o; 1037 return o;
1038 } 1038 }
1039 1039
1040 checkUnnamed2344(core.List<api.Variant> o) { 1040 checkUnnamed2524(core.List<api.Variant> o) {
1041 unittest.expect(o, unittest.hasLength(2)); 1041 unittest.expect(o, unittest.hasLength(2));
1042 checkVariant(o[0]); 1042 checkVariant(o[0]);
1043 checkVariant(o[1]); 1043 checkVariant(o[1]);
1044 } 1044 }
1045 1045
1046 core.int buildCounterMergeVariantsRequest = 0; 1046 core.int buildCounterMergeVariantsRequest = 0;
1047 buildMergeVariantsRequest() { 1047 buildMergeVariantsRequest() {
1048 var o = new api.MergeVariantsRequest(); 1048 var o = new api.MergeVariantsRequest();
1049 buildCounterMergeVariantsRequest++; 1049 buildCounterMergeVariantsRequest++;
1050 if (buildCounterMergeVariantsRequest < 3) { 1050 if (buildCounterMergeVariantsRequest < 3) {
1051 o.infoMergeConfig = buildUnnamed2343(); 1051 o.infoMergeConfig = buildUnnamed2523();
1052 o.variantSetId = "foo"; 1052 o.variantSetId = "foo";
1053 o.variants = buildUnnamed2344(); 1053 o.variants = buildUnnamed2524();
1054 } 1054 }
1055 buildCounterMergeVariantsRequest--; 1055 buildCounterMergeVariantsRequest--;
1056 return o; 1056 return o;
1057 } 1057 }
1058 1058
1059 checkMergeVariantsRequest(api.MergeVariantsRequest o) { 1059 checkMergeVariantsRequest(api.MergeVariantsRequest o) {
1060 buildCounterMergeVariantsRequest++; 1060 buildCounterMergeVariantsRequest++;
1061 if (buildCounterMergeVariantsRequest < 3) { 1061 if (buildCounterMergeVariantsRequest < 3) {
1062 checkUnnamed2343(o.infoMergeConfig); 1062 checkUnnamed2523(o.infoMergeConfig);
1063 unittest.expect(o.variantSetId, unittest.equals('foo')); 1063 unittest.expect(o.variantSetId, unittest.equals('foo'));
1064 checkUnnamed2344(o.variants); 1064 checkUnnamed2524(o.variants);
1065 } 1065 }
1066 buildCounterMergeVariantsRequest--; 1066 buildCounterMergeVariantsRequest--;
1067 } 1067 }
1068 1068
1069 buildUnnamed2345() { 1069 buildUnnamed2525() {
1070 var o = new core.Map<core.String, core.Object>(); 1070 var o = new core.Map<core.String, core.Object>();
1071 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; 1071 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'};
1072 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; 1072 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'};
1073 return o; 1073 return o;
1074 } 1074 }
1075 1075
1076 checkUnnamed2345(core.Map<core.String, core.Object> o) { 1076 checkUnnamed2525(core.Map<core.String, core.Object> o) {
1077 unittest.expect(o, unittest.hasLength(2)); 1077 unittest.expect(o, unittest.hasLength(2));
1078 var casted7 = (o["x"]) as core.Map; unittest.expect(casted7, unittest.hasLengt h(3)); unittest.expect(casted7["list"], unittest.equals([1, 2, 3])); unittest.ex pect(casted7["bool"], unittest.equals(true)); unittest.expect(casted7["string"], unittest.equals('foo')); 1078 var casted7 = (o["x"]) as core.Map; unittest.expect(casted7, unittest.hasLengt h(3)); unittest.expect(casted7["list"], unittest.equals([1, 2, 3])); unittest.ex pect(casted7["bool"], unittest.equals(true)); unittest.expect(casted7["string"], unittest.equals('foo'));
1079 var casted8 = (o["y"]) as core.Map; unittest.expect(casted8, unittest.hasLengt h(3)); unittest.expect(casted8["list"], unittest.equals([1, 2, 3])); unittest.ex pect(casted8["bool"], unittest.equals(true)); unittest.expect(casted8["string"], unittest.equals('foo')); 1079 var casted8 = (o["y"]) as core.Map; unittest.expect(casted8, unittest.hasLengt h(3)); unittest.expect(casted8["list"], unittest.equals([1, 2, 3])); unittest.ex pect(casted8["bool"], unittest.equals(true)); unittest.expect(casted8["string"], unittest.equals('foo'));
1080 } 1080 }
1081 1081
1082 buildUnnamed2346() { 1082 buildUnnamed2526() {
1083 var o = new core.Map<core.String, core.Object>(); 1083 var o = new core.Map<core.String, core.Object>();
1084 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; 1084 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'};
1085 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; 1085 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'};
1086 return o; 1086 return o;
1087 } 1087 }
1088 1088
1089 checkUnnamed2346(core.Map<core.String, core.Object> o) { 1089 checkUnnamed2526(core.Map<core.String, core.Object> o) {
1090 unittest.expect(o, unittest.hasLength(2)); 1090 unittest.expect(o, unittest.hasLength(2));
1091 var casted9 = (o["x"]) as core.Map; unittest.expect(casted9, unittest.hasLengt h(3)); unittest.expect(casted9["list"], unittest.equals([1, 2, 3])); unittest.ex pect(casted9["bool"], unittest.equals(true)); unittest.expect(casted9["string"], unittest.equals('foo')); 1091 var casted9 = (o["x"]) as core.Map; unittest.expect(casted9, unittest.hasLengt h(3)); unittest.expect(casted9["list"], unittest.equals([1, 2, 3])); unittest.ex pect(casted9["bool"], unittest.equals(true)); unittest.expect(casted9["string"], unittest.equals('foo'));
1092 var casted10 = (o["y"]) as core.Map; unittest.expect(casted10, unittest.hasLen gth(3)); unittest.expect(casted10["list"], unittest.equals([1, 2, 3])); unittest .expect(casted10["bool"], unittest.equals(true)); unittest.expect(casted10["stri ng"], unittest.equals('foo')); 1092 var casted10 = (o["y"]) as core.Map; unittest.expect(casted10, unittest.hasLen gth(3)); unittest.expect(casted10["list"], unittest.equals([1, 2, 3])); unittest .expect(casted10["bool"], unittest.equals(true)); unittest.expect(casted10["stri ng"], unittest.equals('foo'));
1093 } 1093 }
1094 1094
1095 core.int buildCounterOperation = 0; 1095 core.int buildCounterOperation = 0;
1096 buildOperation() { 1096 buildOperation() {
1097 var o = new api.Operation(); 1097 var o = new api.Operation();
1098 buildCounterOperation++; 1098 buildCounterOperation++;
1099 if (buildCounterOperation < 3) { 1099 if (buildCounterOperation < 3) {
1100 o.done = true; 1100 o.done = true;
1101 o.error = buildStatus(); 1101 o.error = buildStatus();
1102 o.metadata = buildUnnamed2345(); 1102 o.metadata = buildUnnamed2525();
1103 o.name = "foo"; 1103 o.name = "foo";
1104 o.response = buildUnnamed2346(); 1104 o.response = buildUnnamed2526();
1105 } 1105 }
1106 buildCounterOperation--; 1106 buildCounterOperation--;
1107 return o; 1107 return o;
1108 } 1108 }
1109 1109
1110 checkOperation(api.Operation o) { 1110 checkOperation(api.Operation o) {
1111 buildCounterOperation++; 1111 buildCounterOperation++;
1112 if (buildCounterOperation < 3) { 1112 if (buildCounterOperation < 3) {
1113 unittest.expect(o.done, unittest.isTrue); 1113 unittest.expect(o.done, unittest.isTrue);
1114 checkStatus(o.error); 1114 checkStatus(o.error);
1115 checkUnnamed2345(o.metadata); 1115 checkUnnamed2525(o.metadata);
1116 unittest.expect(o.name, unittest.equals('foo')); 1116 unittest.expect(o.name, unittest.equals('foo'));
1117 checkUnnamed2346(o.response); 1117 checkUnnamed2526(o.response);
1118 } 1118 }
1119 buildCounterOperation--; 1119 buildCounterOperation--;
1120 } 1120 }
1121 1121
1122 core.int buildCounterOperationEvent = 0; 1122 core.int buildCounterOperationEvent = 0;
1123 buildOperationEvent() { 1123 buildOperationEvent() {
1124 var o = new api.OperationEvent(); 1124 var o = new api.OperationEvent();
1125 buildCounterOperationEvent++; 1125 buildCounterOperationEvent++;
1126 if (buildCounterOperationEvent < 3) { 1126 if (buildCounterOperationEvent < 3) {
1127 o.description = "foo"; 1127 o.description = "foo";
1128 } 1128 }
1129 buildCounterOperationEvent--; 1129 buildCounterOperationEvent--;
1130 return o; 1130 return o;
1131 } 1131 }
1132 1132
1133 checkOperationEvent(api.OperationEvent o) { 1133 checkOperationEvent(api.OperationEvent o) {
1134 buildCounterOperationEvent++; 1134 buildCounterOperationEvent++;
1135 if (buildCounterOperationEvent < 3) { 1135 if (buildCounterOperationEvent < 3) {
1136 unittest.expect(o.description, unittest.equals('foo')); 1136 unittest.expect(o.description, unittest.equals('foo'));
1137 } 1137 }
1138 buildCounterOperationEvent--; 1138 buildCounterOperationEvent--;
1139 } 1139 }
1140 1140
1141 buildUnnamed2347() { 1141 buildUnnamed2527() {
1142 var o = new core.List<api.OperationEvent>(); 1142 var o = new core.List<api.OperationEvent>();
1143 o.add(buildOperationEvent()); 1143 o.add(buildOperationEvent());
1144 o.add(buildOperationEvent()); 1144 o.add(buildOperationEvent());
1145 return o; 1145 return o;
1146 } 1146 }
1147 1147
1148 checkUnnamed2347(core.List<api.OperationEvent> o) { 1148 checkUnnamed2527(core.List<api.OperationEvent> o) {
1149 unittest.expect(o, unittest.hasLength(2)); 1149 unittest.expect(o, unittest.hasLength(2));
1150 checkOperationEvent(o[0]); 1150 checkOperationEvent(o[0]);
1151 checkOperationEvent(o[1]); 1151 checkOperationEvent(o[1]);
1152 } 1152 }
1153 1153
1154 buildUnnamed2348() { 1154 buildUnnamed2528() {
1155 var o = new core.Map<core.String, core.Object>(); 1155 var o = new core.Map<core.String, core.Object>();
1156 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; 1156 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'};
1157 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; 1157 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'};
1158 return o; 1158 return o;
1159 } 1159 }
1160 1160
1161 checkUnnamed2348(core.Map<core.String, core.Object> o) { 1161 checkUnnamed2528(core.Map<core.String, core.Object> o) {
1162 unittest.expect(o, unittest.hasLength(2)); 1162 unittest.expect(o, unittest.hasLength(2));
1163 var casted11 = (o["x"]) as core.Map; unittest.expect(casted11, unittest.hasLen gth(3)); unittest.expect(casted11["list"], unittest.equals([1, 2, 3])); unittest .expect(casted11["bool"], unittest.equals(true)); unittest.expect(casted11["stri ng"], unittest.equals('foo')); 1163 var casted11 = (o["x"]) as core.Map; unittest.expect(casted11, unittest.hasLen gth(3)); unittest.expect(casted11["list"], unittest.equals([1, 2, 3])); unittest .expect(casted11["bool"], unittest.equals(true)); unittest.expect(casted11["stri ng"], unittest.equals('foo'));
1164 var casted12 = (o["y"]) as core.Map; unittest.expect(casted12, unittest.hasLen gth(3)); unittest.expect(casted12["list"], unittest.equals([1, 2, 3])); unittest .expect(casted12["bool"], unittest.equals(true)); unittest.expect(casted12["stri ng"], unittest.equals('foo')); 1164 var casted12 = (o["y"]) as core.Map; unittest.expect(casted12, unittest.hasLen gth(3)); unittest.expect(casted12["list"], unittest.equals([1, 2, 3])); unittest .expect(casted12["bool"], unittest.equals(true)); unittest.expect(casted12["stri ng"], unittest.equals('foo'));
1165 } 1165 }
1166 1166
1167 core.int buildCounterOperationMetadata = 0; 1167 core.int buildCounterOperationMetadata = 0;
1168 buildOperationMetadata() { 1168 buildOperationMetadata() {
1169 var o = new api.OperationMetadata(); 1169 var o = new api.OperationMetadata();
1170 buildCounterOperationMetadata++; 1170 buildCounterOperationMetadata++;
1171 if (buildCounterOperationMetadata < 3) { 1171 if (buildCounterOperationMetadata < 3) {
1172 o.createTime = "foo"; 1172 o.createTime = "foo";
1173 o.endTime = "foo"; 1173 o.endTime = "foo";
1174 o.events = buildUnnamed2347(); 1174 o.events = buildUnnamed2527();
1175 o.projectId = "foo"; 1175 o.projectId = "foo";
1176 o.request = buildUnnamed2348(); 1176 o.request = buildUnnamed2528();
1177 } 1177 }
1178 buildCounterOperationMetadata--; 1178 buildCounterOperationMetadata--;
1179 return o; 1179 return o;
1180 } 1180 }
1181 1181
1182 checkOperationMetadata(api.OperationMetadata o) { 1182 checkOperationMetadata(api.OperationMetadata o) {
1183 buildCounterOperationMetadata++; 1183 buildCounterOperationMetadata++;
1184 if (buildCounterOperationMetadata < 3) { 1184 if (buildCounterOperationMetadata < 3) {
1185 unittest.expect(o.createTime, unittest.equals('foo')); 1185 unittest.expect(o.createTime, unittest.equals('foo'));
1186 unittest.expect(o.endTime, unittest.equals('foo')); 1186 unittest.expect(o.endTime, unittest.equals('foo'));
1187 checkUnnamed2347(o.events); 1187 checkUnnamed2527(o.events);
1188 unittest.expect(o.projectId, unittest.equals('foo')); 1188 unittest.expect(o.projectId, unittest.equals('foo'));
1189 checkUnnamed2348(o.request); 1189 checkUnnamed2528(o.request);
1190 } 1190 }
1191 buildCounterOperationMetadata--; 1191 buildCounterOperationMetadata--;
1192 } 1192 }
1193 1193
1194 buildUnnamed2349() { 1194 buildUnnamed2529() {
1195 var o = new core.List<api.Binding>(); 1195 var o = new core.List<api.Binding>();
1196 o.add(buildBinding()); 1196 o.add(buildBinding());
1197 o.add(buildBinding()); 1197 o.add(buildBinding());
1198 return o; 1198 return o;
1199 } 1199 }
1200 1200
1201 checkUnnamed2349(core.List<api.Binding> o) { 1201 checkUnnamed2529(core.List<api.Binding> o) {
1202 unittest.expect(o, unittest.hasLength(2)); 1202 unittest.expect(o, unittest.hasLength(2));
1203 checkBinding(o[0]); 1203 checkBinding(o[0]);
1204 checkBinding(o[1]); 1204 checkBinding(o[1]);
1205 } 1205 }
1206 1206
1207 core.int buildCounterPolicy = 0; 1207 core.int buildCounterPolicy = 0;
1208 buildPolicy() { 1208 buildPolicy() {
1209 var o = new api.Policy(); 1209 var o = new api.Policy();
1210 buildCounterPolicy++; 1210 buildCounterPolicy++;
1211 if (buildCounterPolicy < 3) { 1211 if (buildCounterPolicy < 3) {
1212 o.bindings = buildUnnamed2349(); 1212 o.bindings = buildUnnamed2529();
1213 o.etag = "foo"; 1213 o.etag = "foo";
1214 o.version = 42; 1214 o.version = 42;
1215 } 1215 }
1216 buildCounterPolicy--; 1216 buildCounterPolicy--;
1217 return o; 1217 return o;
1218 } 1218 }
1219 1219
1220 checkPolicy(api.Policy o) { 1220 checkPolicy(api.Policy o) {
1221 buildCounterPolicy++; 1221 buildCounterPolicy++;
1222 if (buildCounterPolicy < 3) { 1222 if (buildCounterPolicy < 3) {
1223 checkUnnamed2349(o.bindings); 1223 checkUnnamed2529(o.bindings);
1224 unittest.expect(o.etag, unittest.equals('foo')); 1224 unittest.expect(o.etag, unittest.equals('foo'));
1225 unittest.expect(o.version, unittest.equals(42)); 1225 unittest.expect(o.version, unittest.equals(42));
1226 } 1226 }
1227 buildCounterPolicy--; 1227 buildCounterPolicy--;
1228 } 1228 }
1229 1229
1230 core.int buildCounterPosition = 0; 1230 core.int buildCounterPosition = 0;
1231 buildPosition() { 1231 buildPosition() {
1232 var o = new api.Position(); 1232 var o = new api.Position();
1233 buildCounterPosition++; 1233 buildCounterPosition++;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 checkRange(api.Range o) { 1293 checkRange(api.Range o) {
1294 buildCounterRange++; 1294 buildCounterRange++;
1295 if (buildCounterRange < 3) { 1295 if (buildCounterRange < 3) {
1296 unittest.expect(o.end, unittest.equals('foo')); 1296 unittest.expect(o.end, unittest.equals('foo'));
1297 unittest.expect(o.referenceName, unittest.equals('foo')); 1297 unittest.expect(o.referenceName, unittest.equals('foo'));
1298 unittest.expect(o.start, unittest.equals('foo')); 1298 unittest.expect(o.start, unittest.equals('foo'));
1299 } 1299 }
1300 buildCounterRange--; 1300 buildCounterRange--;
1301 } 1301 }
1302 1302
1303 buildUnnamed2350() { 1303 buildUnnamed2530() {
1304 var o = new core.List<core.int>(); 1304 var o = new core.List<core.int>();
1305 o.add(42); 1305 o.add(42);
1306 o.add(42); 1306 o.add(42);
1307 return o; 1307 return o;
1308 } 1308 }
1309 1309
1310 checkUnnamed2350(core.List<core.int> o) { 1310 checkUnnamed2530(core.List<core.int> o) {
1311 unittest.expect(o, unittest.hasLength(2)); 1311 unittest.expect(o, unittest.hasLength(2));
1312 unittest.expect(o[0], unittest.equals(42)); 1312 unittest.expect(o[0], unittest.equals(42));
1313 unittest.expect(o[1], unittest.equals(42)); 1313 unittest.expect(o[1], unittest.equals(42));
1314 } 1314 }
1315 1315
1316 buildUnnamed2351() { 1316 buildUnnamed2531() {
1317 var o = new core.List<core.Object>(); 1317 var o = new core.List<core.Object>();
1318 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 1318 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
1319 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 1319 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
1320 return o; 1320 return o;
1321 } 1321 }
1322 1322
1323 checkUnnamed2351(core.List<core.Object> o) { 1323 checkUnnamed2531(core.List<core.Object> o) {
1324 unittest.expect(o, unittest.hasLength(2)); 1324 unittest.expect(o, unittest.hasLength(2));
1325 var casted13 = (o[0]) as core.Map; unittest.expect(casted13, unittest.hasLengt h(3)); unittest.expect(casted13["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted13["bool"], unittest.equals(true)); unittest.expect(casted13["string "], unittest.equals('foo')); 1325 var casted13 = (o[0]) as core.Map; unittest.expect(casted13, unittest.hasLengt h(3)); unittest.expect(casted13["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted13["bool"], unittest.equals(true)); unittest.expect(casted13["string "], unittest.equals('foo'));
1326 var casted14 = (o[1]) as core.Map; unittest.expect(casted14, unittest.hasLengt h(3)); unittest.expect(casted14["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted14["bool"], unittest.equals(true)); unittest.expect(casted14["string "], unittest.equals('foo')); 1326 var casted14 = (o[1]) as core.Map; unittest.expect(casted14, unittest.hasLengt h(3)); unittest.expect(casted14["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted14["bool"], unittest.equals(true)); unittest.expect(casted14["string "], unittest.equals('foo'));
1327 } 1327 }
1328 1328
1329 buildUnnamed2352() { 1329 buildUnnamed2532() {
1330 var o = new core.Map<core.String, core.List<core.Object>>(); 1330 var o = new core.Map<core.String, core.List<core.Object>>();
1331 o["x"] = buildUnnamed2351(); 1331 o["x"] = buildUnnamed2531();
1332 o["y"] = buildUnnamed2351(); 1332 o["y"] = buildUnnamed2531();
1333 return o; 1333 return o;
1334 } 1334 }
1335 1335
1336 checkUnnamed2352(core.Map<core.String, core.List<core.Object>> o) { 1336 checkUnnamed2532(core.Map<core.String, core.List<core.Object>> o) {
1337 unittest.expect(o, unittest.hasLength(2)); 1337 unittest.expect(o, unittest.hasLength(2));
1338 checkUnnamed2351(o["x"]); 1338 checkUnnamed2531(o["x"]);
1339 checkUnnamed2351(o["y"]); 1339 checkUnnamed2531(o["y"]);
1340 } 1340 }
1341 1341
1342 core.int buildCounterRead = 0; 1342 core.int buildCounterRead = 0;
1343 buildRead() { 1343 buildRead() {
1344 var o = new api.Read(); 1344 var o = new api.Read();
1345 buildCounterRead++; 1345 buildCounterRead++;
1346 if (buildCounterRead < 3) { 1346 if (buildCounterRead < 3) {
1347 o.alignedQuality = buildUnnamed2350(); 1347 o.alignedQuality = buildUnnamed2530();
1348 o.alignedSequence = "foo"; 1348 o.alignedSequence = "foo";
1349 o.alignment = buildLinearAlignment(); 1349 o.alignment = buildLinearAlignment();
1350 o.duplicateFragment = true; 1350 o.duplicateFragment = true;
1351 o.failedVendorQualityChecks = true; 1351 o.failedVendorQualityChecks = true;
1352 o.fragmentLength = 42; 1352 o.fragmentLength = 42;
1353 o.fragmentName = "foo"; 1353 o.fragmentName = "foo";
1354 o.id = "foo"; 1354 o.id = "foo";
1355 o.info = buildUnnamed2352(); 1355 o.info = buildUnnamed2532();
1356 o.nextMatePosition = buildPosition(); 1356 o.nextMatePosition = buildPosition();
1357 o.numberReads = 42; 1357 o.numberReads = 42;
1358 o.properPlacement = true; 1358 o.properPlacement = true;
1359 o.readGroupId = "foo"; 1359 o.readGroupId = "foo";
1360 o.readGroupSetId = "foo"; 1360 o.readGroupSetId = "foo";
1361 o.readNumber = 42; 1361 o.readNumber = 42;
1362 o.secondaryAlignment = true; 1362 o.secondaryAlignment = true;
1363 o.supplementaryAlignment = true; 1363 o.supplementaryAlignment = true;
1364 } 1364 }
1365 buildCounterRead--; 1365 buildCounterRead--;
1366 return o; 1366 return o;
1367 } 1367 }
1368 1368
1369 checkRead(api.Read o) { 1369 checkRead(api.Read o) {
1370 buildCounterRead++; 1370 buildCounterRead++;
1371 if (buildCounterRead < 3) { 1371 if (buildCounterRead < 3) {
1372 checkUnnamed2350(o.alignedQuality); 1372 checkUnnamed2530(o.alignedQuality);
1373 unittest.expect(o.alignedSequence, unittest.equals('foo')); 1373 unittest.expect(o.alignedSequence, unittest.equals('foo'));
1374 checkLinearAlignment(o.alignment); 1374 checkLinearAlignment(o.alignment);
1375 unittest.expect(o.duplicateFragment, unittest.isTrue); 1375 unittest.expect(o.duplicateFragment, unittest.isTrue);
1376 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); 1376 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue);
1377 unittest.expect(o.fragmentLength, unittest.equals(42)); 1377 unittest.expect(o.fragmentLength, unittest.equals(42));
1378 unittest.expect(o.fragmentName, unittest.equals('foo')); 1378 unittest.expect(o.fragmentName, unittest.equals('foo'));
1379 unittest.expect(o.id, unittest.equals('foo')); 1379 unittest.expect(o.id, unittest.equals('foo'));
1380 checkUnnamed2352(o.info); 1380 checkUnnamed2532(o.info);
1381 checkPosition(o.nextMatePosition); 1381 checkPosition(o.nextMatePosition);
1382 unittest.expect(o.numberReads, unittest.equals(42)); 1382 unittest.expect(o.numberReads, unittest.equals(42));
1383 unittest.expect(o.properPlacement, unittest.isTrue); 1383 unittest.expect(o.properPlacement, unittest.isTrue);
1384 unittest.expect(o.readGroupId, unittest.equals('foo')); 1384 unittest.expect(o.readGroupId, unittest.equals('foo'));
1385 unittest.expect(o.readGroupSetId, unittest.equals('foo')); 1385 unittest.expect(o.readGroupSetId, unittest.equals('foo'));
1386 unittest.expect(o.readNumber, unittest.equals(42)); 1386 unittest.expect(o.readNumber, unittest.equals(42));
1387 unittest.expect(o.secondaryAlignment, unittest.isTrue); 1387 unittest.expect(o.secondaryAlignment, unittest.isTrue);
1388 unittest.expect(o.supplementaryAlignment, unittest.isTrue); 1388 unittest.expect(o.supplementaryAlignment, unittest.isTrue);
1389 } 1389 }
1390 buildCounterRead--; 1390 buildCounterRead--;
1391 } 1391 }
1392 1392
1393 buildUnnamed2353() { 1393 buildUnnamed2533() {
1394 var o = new core.List<core.Object>(); 1394 var o = new core.List<core.Object>();
1395 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 1395 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
1396 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 1396 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
1397 return o; 1397 return o;
1398 } 1398 }
1399 1399
1400 checkUnnamed2353(core.List<core.Object> o) { 1400 checkUnnamed2533(core.List<core.Object> o) {
1401 unittest.expect(o, unittest.hasLength(2)); 1401 unittest.expect(o, unittest.hasLength(2));
1402 var casted15 = (o[0]) as core.Map; unittest.expect(casted15, unittest.hasLengt h(3)); unittest.expect(casted15["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted15["bool"], unittest.equals(true)); unittest.expect(casted15["string "], unittest.equals('foo')); 1402 var casted15 = (o[0]) as core.Map; unittest.expect(casted15, unittest.hasLengt h(3)); unittest.expect(casted15["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted15["bool"], unittest.equals(true)); unittest.expect(casted15["string "], unittest.equals('foo'));
1403 var casted16 = (o[1]) as core.Map; unittest.expect(casted16, unittest.hasLengt h(3)); unittest.expect(casted16["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted16["bool"], unittest.equals(true)); unittest.expect(casted16["string "], unittest.equals('foo')); 1403 var casted16 = (o[1]) as core.Map; unittest.expect(casted16, unittest.hasLengt h(3)); unittest.expect(casted16["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted16["bool"], unittest.equals(true)); unittest.expect(casted16["string "], unittest.equals('foo'));
1404 } 1404 }
1405 1405
1406 buildUnnamed2354() { 1406 buildUnnamed2534() {
1407 var o = new core.Map<core.String, core.List<core.Object>>(); 1407 var o = new core.Map<core.String, core.List<core.Object>>();
1408 o["x"] = buildUnnamed2353(); 1408 o["x"] = buildUnnamed2533();
1409 o["y"] = buildUnnamed2353(); 1409 o["y"] = buildUnnamed2533();
1410 return o; 1410 return o;
1411 } 1411 }
1412 1412
1413 checkUnnamed2354(core.Map<core.String, core.List<core.Object>> o) { 1413 checkUnnamed2534(core.Map<core.String, core.List<core.Object>> o) {
1414 unittest.expect(o, unittest.hasLength(2)); 1414 unittest.expect(o, unittest.hasLength(2));
1415 checkUnnamed2353(o["x"]); 1415 checkUnnamed2533(o["x"]);
1416 checkUnnamed2353(o["y"]); 1416 checkUnnamed2533(o["y"]);
1417 } 1417 }
1418 1418
1419 buildUnnamed2355() { 1419 buildUnnamed2535() {
1420 var o = new core.List<api.Program>(); 1420 var o = new core.List<api.Program>();
1421 o.add(buildProgram()); 1421 o.add(buildProgram());
1422 o.add(buildProgram()); 1422 o.add(buildProgram());
1423 return o; 1423 return o;
1424 } 1424 }
1425 1425
1426 checkUnnamed2355(core.List<api.Program> o) { 1426 checkUnnamed2535(core.List<api.Program> o) {
1427 unittest.expect(o, unittest.hasLength(2)); 1427 unittest.expect(o, unittest.hasLength(2));
1428 checkProgram(o[0]); 1428 checkProgram(o[0]);
1429 checkProgram(o[1]); 1429 checkProgram(o[1]);
1430 } 1430 }
1431 1431
1432 core.int buildCounterReadGroup = 0; 1432 core.int buildCounterReadGroup = 0;
1433 buildReadGroup() { 1433 buildReadGroup() {
1434 var o = new api.ReadGroup(); 1434 var o = new api.ReadGroup();
1435 buildCounterReadGroup++; 1435 buildCounterReadGroup++;
1436 if (buildCounterReadGroup < 3) { 1436 if (buildCounterReadGroup < 3) {
1437 o.datasetId = "foo"; 1437 o.datasetId = "foo";
1438 o.description = "foo"; 1438 o.description = "foo";
1439 o.experiment = buildExperiment(); 1439 o.experiment = buildExperiment();
1440 o.id = "foo"; 1440 o.id = "foo";
1441 o.info = buildUnnamed2354(); 1441 o.info = buildUnnamed2534();
1442 o.name = "foo"; 1442 o.name = "foo";
1443 o.predictedInsertSize = 42; 1443 o.predictedInsertSize = 42;
1444 o.programs = buildUnnamed2355(); 1444 o.programs = buildUnnamed2535();
1445 o.referenceSetId = "foo"; 1445 o.referenceSetId = "foo";
1446 o.sampleId = "foo"; 1446 o.sampleId = "foo";
1447 } 1447 }
1448 buildCounterReadGroup--; 1448 buildCounterReadGroup--;
1449 return o; 1449 return o;
1450 } 1450 }
1451 1451
1452 checkReadGroup(api.ReadGroup o) { 1452 checkReadGroup(api.ReadGroup o) {
1453 buildCounterReadGroup++; 1453 buildCounterReadGroup++;
1454 if (buildCounterReadGroup < 3) { 1454 if (buildCounterReadGroup < 3) {
1455 unittest.expect(o.datasetId, unittest.equals('foo')); 1455 unittest.expect(o.datasetId, unittest.equals('foo'));
1456 unittest.expect(o.description, unittest.equals('foo')); 1456 unittest.expect(o.description, unittest.equals('foo'));
1457 checkExperiment(o.experiment); 1457 checkExperiment(o.experiment);
1458 unittest.expect(o.id, unittest.equals('foo')); 1458 unittest.expect(o.id, unittest.equals('foo'));
1459 checkUnnamed2354(o.info); 1459 checkUnnamed2534(o.info);
1460 unittest.expect(o.name, unittest.equals('foo')); 1460 unittest.expect(o.name, unittest.equals('foo'));
1461 unittest.expect(o.predictedInsertSize, unittest.equals(42)); 1461 unittest.expect(o.predictedInsertSize, unittest.equals(42));
1462 checkUnnamed2355(o.programs); 1462 checkUnnamed2535(o.programs);
1463 unittest.expect(o.referenceSetId, unittest.equals('foo')); 1463 unittest.expect(o.referenceSetId, unittest.equals('foo'));
1464 unittest.expect(o.sampleId, unittest.equals('foo')); 1464 unittest.expect(o.sampleId, unittest.equals('foo'));
1465 } 1465 }
1466 buildCounterReadGroup--; 1466 buildCounterReadGroup--;
1467 } 1467 }
1468 1468
1469 buildUnnamed2356() { 1469 buildUnnamed2536() {
1470 var o = new core.List<core.Object>(); 1470 var o = new core.List<core.Object>();
1471 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 1471 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
1472 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 1472 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
1473 return o; 1473 return o;
1474 } 1474 }
1475 1475
1476 checkUnnamed2356(core.List<core.Object> o) { 1476 checkUnnamed2536(core.List<core.Object> o) {
1477 unittest.expect(o, unittest.hasLength(2)); 1477 unittest.expect(o, unittest.hasLength(2));
1478 var casted17 = (o[0]) as core.Map; unittest.expect(casted17, unittest.hasLengt h(3)); unittest.expect(casted17["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted17["bool"], unittest.equals(true)); unittest.expect(casted17["string "], unittest.equals('foo')); 1478 var casted17 = (o[0]) as core.Map; unittest.expect(casted17, unittest.hasLengt h(3)); unittest.expect(casted17["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted17["bool"], unittest.equals(true)); unittest.expect(casted17["string "], unittest.equals('foo'));
1479 var casted18 = (o[1]) as core.Map; unittest.expect(casted18, unittest.hasLengt h(3)); unittest.expect(casted18["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted18["bool"], unittest.equals(true)); unittest.expect(casted18["string "], unittest.equals('foo')); 1479 var casted18 = (o[1]) as core.Map; unittest.expect(casted18, unittest.hasLengt h(3)); unittest.expect(casted18["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted18["bool"], unittest.equals(true)); unittest.expect(casted18["string "], unittest.equals('foo'));
1480 } 1480 }
1481 1481
1482 buildUnnamed2357() { 1482 buildUnnamed2537() {
1483 var o = new core.Map<core.String, core.List<core.Object>>(); 1483 var o = new core.Map<core.String, core.List<core.Object>>();
1484 o["x"] = buildUnnamed2356(); 1484 o["x"] = buildUnnamed2536();
1485 o["y"] = buildUnnamed2356(); 1485 o["y"] = buildUnnamed2536();
1486 return o; 1486 return o;
1487 } 1487 }
1488 1488
1489 checkUnnamed2357(core.Map<core.String, core.List<core.Object>> o) { 1489 checkUnnamed2537(core.Map<core.String, core.List<core.Object>> o) {
1490 unittest.expect(o, unittest.hasLength(2)); 1490 unittest.expect(o, unittest.hasLength(2));
1491 checkUnnamed2356(o["x"]); 1491 checkUnnamed2536(o["x"]);
1492 checkUnnamed2356(o["y"]); 1492 checkUnnamed2536(o["y"]);
1493 } 1493 }
1494 1494
1495 buildUnnamed2358() { 1495 buildUnnamed2538() {
1496 var o = new core.List<api.ReadGroup>(); 1496 var o = new core.List<api.ReadGroup>();
1497 o.add(buildReadGroup()); 1497 o.add(buildReadGroup());
1498 o.add(buildReadGroup()); 1498 o.add(buildReadGroup());
1499 return o; 1499 return o;
1500 } 1500 }
1501 1501
1502 checkUnnamed2358(core.List<api.ReadGroup> o) { 1502 checkUnnamed2538(core.List<api.ReadGroup> o) {
1503 unittest.expect(o, unittest.hasLength(2)); 1503 unittest.expect(o, unittest.hasLength(2));
1504 checkReadGroup(o[0]); 1504 checkReadGroup(o[0]);
1505 checkReadGroup(o[1]); 1505 checkReadGroup(o[1]);
1506 } 1506 }
1507 1507
1508 core.int buildCounterReadGroupSet = 0; 1508 core.int buildCounterReadGroupSet = 0;
1509 buildReadGroupSet() { 1509 buildReadGroupSet() {
1510 var o = new api.ReadGroupSet(); 1510 var o = new api.ReadGroupSet();
1511 buildCounterReadGroupSet++; 1511 buildCounterReadGroupSet++;
1512 if (buildCounterReadGroupSet < 3) { 1512 if (buildCounterReadGroupSet < 3) {
1513 o.datasetId = "foo"; 1513 o.datasetId = "foo";
1514 o.filename = "foo"; 1514 o.filename = "foo";
1515 o.id = "foo"; 1515 o.id = "foo";
1516 o.info = buildUnnamed2357(); 1516 o.info = buildUnnamed2537();
1517 o.name = "foo"; 1517 o.name = "foo";
1518 o.readGroups = buildUnnamed2358(); 1518 o.readGroups = buildUnnamed2538();
1519 o.referenceSetId = "foo"; 1519 o.referenceSetId = "foo";
1520 } 1520 }
1521 buildCounterReadGroupSet--; 1521 buildCounterReadGroupSet--;
1522 return o; 1522 return o;
1523 } 1523 }
1524 1524
1525 checkReadGroupSet(api.ReadGroupSet o) { 1525 checkReadGroupSet(api.ReadGroupSet o) {
1526 buildCounterReadGroupSet++; 1526 buildCounterReadGroupSet++;
1527 if (buildCounterReadGroupSet < 3) { 1527 if (buildCounterReadGroupSet < 3) {
1528 unittest.expect(o.datasetId, unittest.equals('foo')); 1528 unittest.expect(o.datasetId, unittest.equals('foo'));
1529 unittest.expect(o.filename, unittest.equals('foo')); 1529 unittest.expect(o.filename, unittest.equals('foo'));
1530 unittest.expect(o.id, unittest.equals('foo')); 1530 unittest.expect(o.id, unittest.equals('foo'));
1531 checkUnnamed2357(o.info); 1531 checkUnnamed2537(o.info);
1532 unittest.expect(o.name, unittest.equals('foo')); 1532 unittest.expect(o.name, unittest.equals('foo'));
1533 checkUnnamed2358(o.readGroups); 1533 checkUnnamed2538(o.readGroups);
1534 unittest.expect(o.referenceSetId, unittest.equals('foo')); 1534 unittest.expect(o.referenceSetId, unittest.equals('foo'));
1535 } 1535 }
1536 buildCounterReadGroupSet--; 1536 buildCounterReadGroupSet--;
1537 } 1537 }
1538 1538
1539 buildUnnamed2359() { 1539 buildUnnamed2539() {
1540 var o = new core.List<core.String>(); 1540 var o = new core.List<core.String>();
1541 o.add("foo"); 1541 o.add("foo");
1542 o.add("foo"); 1542 o.add("foo");
1543 return o; 1543 return o;
1544 } 1544 }
1545 1545
1546 checkUnnamed2359(core.List<core.String> o) { 1546 checkUnnamed2539(core.List<core.String> o) {
1547 unittest.expect(o, unittest.hasLength(2)); 1547 unittest.expect(o, unittest.hasLength(2));
1548 unittest.expect(o[0], unittest.equals('foo')); 1548 unittest.expect(o[0], unittest.equals('foo'));
1549 unittest.expect(o[1], unittest.equals('foo')); 1549 unittest.expect(o[1], unittest.equals('foo'));
1550 } 1550 }
1551 1551
1552 core.int buildCounterReference = 0; 1552 core.int buildCounterReference = 0;
1553 buildReference() { 1553 buildReference() {
1554 var o = new api.Reference(); 1554 var o = new api.Reference();
1555 buildCounterReference++; 1555 buildCounterReference++;
1556 if (buildCounterReference < 3) { 1556 if (buildCounterReference < 3) {
1557 o.id = "foo"; 1557 o.id = "foo";
1558 o.length = "foo"; 1558 o.length = "foo";
1559 o.md5checksum = "foo"; 1559 o.md5checksum = "foo";
1560 o.name = "foo"; 1560 o.name = "foo";
1561 o.ncbiTaxonId = 42; 1561 o.ncbiTaxonId = 42;
1562 o.sourceAccessions = buildUnnamed2359(); 1562 o.sourceAccessions = buildUnnamed2539();
1563 o.sourceUri = "foo"; 1563 o.sourceUri = "foo";
1564 } 1564 }
1565 buildCounterReference--; 1565 buildCounterReference--;
1566 return o; 1566 return o;
1567 } 1567 }
1568 1568
1569 checkReference(api.Reference o) { 1569 checkReference(api.Reference o) {
1570 buildCounterReference++; 1570 buildCounterReference++;
1571 if (buildCounterReference < 3) { 1571 if (buildCounterReference < 3) {
1572 unittest.expect(o.id, unittest.equals('foo')); 1572 unittest.expect(o.id, unittest.equals('foo'));
1573 unittest.expect(o.length, unittest.equals('foo')); 1573 unittest.expect(o.length, unittest.equals('foo'));
1574 unittest.expect(o.md5checksum, unittest.equals('foo')); 1574 unittest.expect(o.md5checksum, unittest.equals('foo'));
1575 unittest.expect(o.name, unittest.equals('foo')); 1575 unittest.expect(o.name, unittest.equals('foo'));
1576 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); 1576 unittest.expect(o.ncbiTaxonId, unittest.equals(42));
1577 checkUnnamed2359(o.sourceAccessions); 1577 checkUnnamed2539(o.sourceAccessions);
1578 unittest.expect(o.sourceUri, unittest.equals('foo')); 1578 unittest.expect(o.sourceUri, unittest.equals('foo'));
1579 } 1579 }
1580 buildCounterReference--; 1580 buildCounterReference--;
1581 } 1581 }
1582 1582
1583 core.int buildCounterReferenceBound = 0; 1583 core.int buildCounterReferenceBound = 0;
1584 buildReferenceBound() { 1584 buildReferenceBound() {
1585 var o = new api.ReferenceBound(); 1585 var o = new api.ReferenceBound();
1586 buildCounterReferenceBound++; 1586 buildCounterReferenceBound++;
1587 if (buildCounterReferenceBound < 3) { 1587 if (buildCounterReferenceBound < 3) {
1588 o.referenceName = "foo"; 1588 o.referenceName = "foo";
1589 o.upperBound = "foo"; 1589 o.upperBound = "foo";
1590 } 1590 }
1591 buildCounterReferenceBound--; 1591 buildCounterReferenceBound--;
1592 return o; 1592 return o;
1593 } 1593 }
1594 1594
1595 checkReferenceBound(api.ReferenceBound o) { 1595 checkReferenceBound(api.ReferenceBound o) {
1596 buildCounterReferenceBound++; 1596 buildCounterReferenceBound++;
1597 if (buildCounterReferenceBound < 3) { 1597 if (buildCounterReferenceBound < 3) {
1598 unittest.expect(o.referenceName, unittest.equals('foo')); 1598 unittest.expect(o.referenceName, unittest.equals('foo'));
1599 unittest.expect(o.upperBound, unittest.equals('foo')); 1599 unittest.expect(o.upperBound, unittest.equals('foo'));
1600 } 1600 }
1601 buildCounterReferenceBound--; 1601 buildCounterReferenceBound--;
1602 } 1602 }
1603 1603
1604 buildUnnamed2360() { 1604 buildUnnamed2540() {
1605 var o = new core.List<core.String>(); 1605 var o = new core.List<core.String>();
1606 o.add("foo"); 1606 o.add("foo");
1607 o.add("foo"); 1607 o.add("foo");
1608 return o; 1608 return o;
1609 } 1609 }
1610 1610
1611 checkUnnamed2360(core.List<core.String> o) { 1611 checkUnnamed2540(core.List<core.String> o) {
1612 unittest.expect(o, unittest.hasLength(2)); 1612 unittest.expect(o, unittest.hasLength(2));
1613 unittest.expect(o[0], unittest.equals('foo')); 1613 unittest.expect(o[0], unittest.equals('foo'));
1614 unittest.expect(o[1], unittest.equals('foo')); 1614 unittest.expect(o[1], unittest.equals('foo'));
1615 } 1615 }
1616 1616
1617 buildUnnamed2361() { 1617 buildUnnamed2541() {
1618 var o = new core.List<core.String>(); 1618 var o = new core.List<core.String>();
1619 o.add("foo"); 1619 o.add("foo");
1620 o.add("foo"); 1620 o.add("foo");
1621 return o; 1621 return o;
1622 } 1622 }
1623 1623
1624 checkUnnamed2361(core.List<core.String> o) { 1624 checkUnnamed2541(core.List<core.String> o) {
1625 unittest.expect(o, unittest.hasLength(2)); 1625 unittest.expect(o, unittest.hasLength(2));
1626 unittest.expect(o[0], unittest.equals('foo')); 1626 unittest.expect(o[0], unittest.equals('foo'));
1627 unittest.expect(o[1], unittest.equals('foo')); 1627 unittest.expect(o[1], unittest.equals('foo'));
1628 } 1628 }
1629 1629
1630 core.int buildCounterReferenceSet = 0; 1630 core.int buildCounterReferenceSet = 0;
1631 buildReferenceSet() { 1631 buildReferenceSet() {
1632 var o = new api.ReferenceSet(); 1632 var o = new api.ReferenceSet();
1633 buildCounterReferenceSet++; 1633 buildCounterReferenceSet++;
1634 if (buildCounterReferenceSet < 3) { 1634 if (buildCounterReferenceSet < 3) {
1635 o.assemblyId = "foo"; 1635 o.assemblyId = "foo";
1636 o.description = "foo"; 1636 o.description = "foo";
1637 o.id = "foo"; 1637 o.id = "foo";
1638 o.md5checksum = "foo"; 1638 o.md5checksum = "foo";
1639 o.ncbiTaxonId = 42; 1639 o.ncbiTaxonId = 42;
1640 o.referenceIds = buildUnnamed2360(); 1640 o.referenceIds = buildUnnamed2540();
1641 o.sourceAccessions = buildUnnamed2361(); 1641 o.sourceAccessions = buildUnnamed2541();
1642 o.sourceUri = "foo"; 1642 o.sourceUri = "foo";
1643 } 1643 }
1644 buildCounterReferenceSet--; 1644 buildCounterReferenceSet--;
1645 return o; 1645 return o;
1646 } 1646 }
1647 1647
1648 checkReferenceSet(api.ReferenceSet o) { 1648 checkReferenceSet(api.ReferenceSet o) {
1649 buildCounterReferenceSet++; 1649 buildCounterReferenceSet++;
1650 if (buildCounterReferenceSet < 3) { 1650 if (buildCounterReferenceSet < 3) {
1651 unittest.expect(o.assemblyId, unittest.equals('foo')); 1651 unittest.expect(o.assemblyId, unittest.equals('foo'));
1652 unittest.expect(o.description, unittest.equals('foo')); 1652 unittest.expect(o.description, unittest.equals('foo'));
1653 unittest.expect(o.id, unittest.equals('foo')); 1653 unittest.expect(o.id, unittest.equals('foo'));
1654 unittest.expect(o.md5checksum, unittest.equals('foo')); 1654 unittest.expect(o.md5checksum, unittest.equals('foo'));
1655 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); 1655 unittest.expect(o.ncbiTaxonId, unittest.equals(42));
1656 checkUnnamed2360(o.referenceIds); 1656 checkUnnamed2540(o.referenceIds);
1657 checkUnnamed2361(o.sourceAccessions); 1657 checkUnnamed2541(o.sourceAccessions);
1658 unittest.expect(o.sourceUri, unittest.equals('foo')); 1658 unittest.expect(o.sourceUri, unittest.equals('foo'));
1659 } 1659 }
1660 buildCounterReferenceSet--; 1660 buildCounterReferenceSet--;
1661 } 1661 }
1662 1662
1663 buildUnnamed2362() { 1663 buildUnnamed2542() {
1664 var o = new core.List<core.String>(); 1664 var o = new core.List<core.String>();
1665 o.add("foo"); 1665 o.add("foo");
1666 o.add("foo"); 1666 o.add("foo");
1667 return o; 1667 return o;
1668 } 1668 }
1669 1669
1670 checkUnnamed2362(core.List<core.String> o) { 1670 checkUnnamed2542(core.List<core.String> o) {
1671 unittest.expect(o, unittest.hasLength(2)); 1671 unittest.expect(o, unittest.hasLength(2));
1672 unittest.expect(o[0], unittest.equals('foo')); 1672 unittest.expect(o[0], unittest.equals('foo'));
1673 unittest.expect(o[1], unittest.equals('foo')); 1673 unittest.expect(o[1], unittest.equals('foo'));
1674 } 1674 }
1675 1675
1676 buildUnnamed2363() { 1676 buildUnnamed2543() {
1677 var o = new core.List<core.String>(); 1677 var o = new core.List<core.String>();
1678 o.add("foo"); 1678 o.add("foo");
1679 o.add("foo"); 1679 o.add("foo");
1680 return o; 1680 return o;
1681 } 1681 }
1682 1682
1683 checkUnnamed2363(core.List<core.String> o) { 1683 checkUnnamed2543(core.List<core.String> o) {
1684 unittest.expect(o, unittest.hasLength(2)); 1684 unittest.expect(o, unittest.hasLength(2));
1685 unittest.expect(o[0], unittest.equals('foo')); 1685 unittest.expect(o[0], unittest.equals('foo'));
1686 unittest.expect(o[1], unittest.equals('foo')); 1686 unittest.expect(o[1], unittest.equals('foo'));
1687 } 1687 }
1688 1688
1689 core.int buildCounterSearchAnnotationSetsRequest = 0; 1689 core.int buildCounterSearchAnnotationSetsRequest = 0;
1690 buildSearchAnnotationSetsRequest() { 1690 buildSearchAnnotationSetsRequest() {
1691 var o = new api.SearchAnnotationSetsRequest(); 1691 var o = new api.SearchAnnotationSetsRequest();
1692 buildCounterSearchAnnotationSetsRequest++; 1692 buildCounterSearchAnnotationSetsRequest++;
1693 if (buildCounterSearchAnnotationSetsRequest < 3) { 1693 if (buildCounterSearchAnnotationSetsRequest < 3) {
1694 o.datasetIds = buildUnnamed2362(); 1694 o.datasetIds = buildUnnamed2542();
1695 o.name = "foo"; 1695 o.name = "foo";
1696 o.pageSize = 42; 1696 o.pageSize = 42;
1697 o.pageToken = "foo"; 1697 o.pageToken = "foo";
1698 o.referenceSetId = "foo"; 1698 o.referenceSetId = "foo";
1699 o.types = buildUnnamed2363(); 1699 o.types = buildUnnamed2543();
1700 } 1700 }
1701 buildCounterSearchAnnotationSetsRequest--; 1701 buildCounterSearchAnnotationSetsRequest--;
1702 return o; 1702 return o;
1703 } 1703 }
1704 1704
1705 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { 1705 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) {
1706 buildCounterSearchAnnotationSetsRequest++; 1706 buildCounterSearchAnnotationSetsRequest++;
1707 if (buildCounterSearchAnnotationSetsRequest < 3) { 1707 if (buildCounterSearchAnnotationSetsRequest < 3) {
1708 checkUnnamed2362(o.datasetIds); 1708 checkUnnamed2542(o.datasetIds);
1709 unittest.expect(o.name, unittest.equals('foo')); 1709 unittest.expect(o.name, unittest.equals('foo'));
1710 unittest.expect(o.pageSize, unittest.equals(42)); 1710 unittest.expect(o.pageSize, unittest.equals(42));
1711 unittest.expect(o.pageToken, unittest.equals('foo')); 1711 unittest.expect(o.pageToken, unittest.equals('foo'));
1712 unittest.expect(o.referenceSetId, unittest.equals('foo')); 1712 unittest.expect(o.referenceSetId, unittest.equals('foo'));
1713 checkUnnamed2363(o.types); 1713 checkUnnamed2543(o.types);
1714 } 1714 }
1715 buildCounterSearchAnnotationSetsRequest--; 1715 buildCounterSearchAnnotationSetsRequest--;
1716 } 1716 }
1717 1717
1718 buildUnnamed2364() { 1718 buildUnnamed2544() {
1719 var o = new core.List<api.AnnotationSet>(); 1719 var o = new core.List<api.AnnotationSet>();
1720 o.add(buildAnnotationSet()); 1720 o.add(buildAnnotationSet());
1721 o.add(buildAnnotationSet()); 1721 o.add(buildAnnotationSet());
1722 return o; 1722 return o;
1723 } 1723 }
1724 1724
1725 checkUnnamed2364(core.List<api.AnnotationSet> o) { 1725 checkUnnamed2544(core.List<api.AnnotationSet> o) {
1726 unittest.expect(o, unittest.hasLength(2)); 1726 unittest.expect(o, unittest.hasLength(2));
1727 checkAnnotationSet(o[0]); 1727 checkAnnotationSet(o[0]);
1728 checkAnnotationSet(o[1]); 1728 checkAnnotationSet(o[1]);
1729 } 1729 }
1730 1730
1731 core.int buildCounterSearchAnnotationSetsResponse = 0; 1731 core.int buildCounterSearchAnnotationSetsResponse = 0;
1732 buildSearchAnnotationSetsResponse() { 1732 buildSearchAnnotationSetsResponse() {
1733 var o = new api.SearchAnnotationSetsResponse(); 1733 var o = new api.SearchAnnotationSetsResponse();
1734 buildCounterSearchAnnotationSetsResponse++; 1734 buildCounterSearchAnnotationSetsResponse++;
1735 if (buildCounterSearchAnnotationSetsResponse < 3) { 1735 if (buildCounterSearchAnnotationSetsResponse < 3) {
1736 o.annotationSets = buildUnnamed2364(); 1736 o.annotationSets = buildUnnamed2544();
1737 o.nextPageToken = "foo"; 1737 o.nextPageToken = "foo";
1738 } 1738 }
1739 buildCounterSearchAnnotationSetsResponse--; 1739 buildCounterSearchAnnotationSetsResponse--;
1740 return o; 1740 return o;
1741 } 1741 }
1742 1742
1743 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { 1743 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) {
1744 buildCounterSearchAnnotationSetsResponse++; 1744 buildCounterSearchAnnotationSetsResponse++;
1745 if (buildCounterSearchAnnotationSetsResponse < 3) { 1745 if (buildCounterSearchAnnotationSetsResponse < 3) {
1746 checkUnnamed2364(o.annotationSets); 1746 checkUnnamed2544(o.annotationSets);
1747 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1747 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1748 } 1748 }
1749 buildCounterSearchAnnotationSetsResponse--; 1749 buildCounterSearchAnnotationSetsResponse--;
1750 } 1750 }
1751 1751
1752 buildUnnamed2365() { 1752 buildUnnamed2545() {
1753 var o = new core.List<core.String>(); 1753 var o = new core.List<core.String>();
1754 o.add("foo"); 1754 o.add("foo");
1755 o.add("foo"); 1755 o.add("foo");
1756 return o; 1756 return o;
1757 } 1757 }
1758 1758
1759 checkUnnamed2365(core.List<core.String> o) { 1759 checkUnnamed2545(core.List<core.String> o) {
1760 unittest.expect(o, unittest.hasLength(2)); 1760 unittest.expect(o, unittest.hasLength(2));
1761 unittest.expect(o[0], unittest.equals('foo')); 1761 unittest.expect(o[0], unittest.equals('foo'));
1762 unittest.expect(o[1], unittest.equals('foo')); 1762 unittest.expect(o[1], unittest.equals('foo'));
1763 } 1763 }
1764 1764
1765 core.int buildCounterSearchAnnotationsRequest = 0; 1765 core.int buildCounterSearchAnnotationsRequest = 0;
1766 buildSearchAnnotationsRequest() { 1766 buildSearchAnnotationsRequest() {
1767 var o = new api.SearchAnnotationsRequest(); 1767 var o = new api.SearchAnnotationsRequest();
1768 buildCounterSearchAnnotationsRequest++; 1768 buildCounterSearchAnnotationsRequest++;
1769 if (buildCounterSearchAnnotationsRequest < 3) { 1769 if (buildCounterSearchAnnotationsRequest < 3) {
1770 o.annotationSetIds = buildUnnamed2365(); 1770 o.annotationSetIds = buildUnnamed2545();
1771 o.end = "foo"; 1771 o.end = "foo";
1772 o.pageSize = 42; 1772 o.pageSize = 42;
1773 o.pageToken = "foo"; 1773 o.pageToken = "foo";
1774 o.referenceId = "foo"; 1774 o.referenceId = "foo";
1775 o.referenceName = "foo"; 1775 o.referenceName = "foo";
1776 o.start = "foo"; 1776 o.start = "foo";
1777 } 1777 }
1778 buildCounterSearchAnnotationsRequest--; 1778 buildCounterSearchAnnotationsRequest--;
1779 return o; 1779 return o;
1780 } 1780 }
1781 1781
1782 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { 1782 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) {
1783 buildCounterSearchAnnotationsRequest++; 1783 buildCounterSearchAnnotationsRequest++;
1784 if (buildCounterSearchAnnotationsRequest < 3) { 1784 if (buildCounterSearchAnnotationsRequest < 3) {
1785 checkUnnamed2365(o.annotationSetIds); 1785 checkUnnamed2545(o.annotationSetIds);
1786 unittest.expect(o.end, unittest.equals('foo')); 1786 unittest.expect(o.end, unittest.equals('foo'));
1787 unittest.expect(o.pageSize, unittest.equals(42)); 1787 unittest.expect(o.pageSize, unittest.equals(42));
1788 unittest.expect(o.pageToken, unittest.equals('foo')); 1788 unittest.expect(o.pageToken, unittest.equals('foo'));
1789 unittest.expect(o.referenceId, unittest.equals('foo')); 1789 unittest.expect(o.referenceId, unittest.equals('foo'));
1790 unittest.expect(o.referenceName, unittest.equals('foo')); 1790 unittest.expect(o.referenceName, unittest.equals('foo'));
1791 unittest.expect(o.start, unittest.equals('foo')); 1791 unittest.expect(o.start, unittest.equals('foo'));
1792 } 1792 }
1793 buildCounterSearchAnnotationsRequest--; 1793 buildCounterSearchAnnotationsRequest--;
1794 } 1794 }
1795 1795
1796 buildUnnamed2366() { 1796 buildUnnamed2546() {
1797 var o = new core.List<api.Annotation>(); 1797 var o = new core.List<api.Annotation>();
1798 o.add(buildAnnotation()); 1798 o.add(buildAnnotation());
1799 o.add(buildAnnotation()); 1799 o.add(buildAnnotation());
1800 return o; 1800 return o;
1801 } 1801 }
1802 1802
1803 checkUnnamed2366(core.List<api.Annotation> o) { 1803 checkUnnamed2546(core.List<api.Annotation> o) {
1804 unittest.expect(o, unittest.hasLength(2)); 1804 unittest.expect(o, unittest.hasLength(2));
1805 checkAnnotation(o[0]); 1805 checkAnnotation(o[0]);
1806 checkAnnotation(o[1]); 1806 checkAnnotation(o[1]);
1807 } 1807 }
1808 1808
1809 core.int buildCounterSearchAnnotationsResponse = 0; 1809 core.int buildCounterSearchAnnotationsResponse = 0;
1810 buildSearchAnnotationsResponse() { 1810 buildSearchAnnotationsResponse() {
1811 var o = new api.SearchAnnotationsResponse(); 1811 var o = new api.SearchAnnotationsResponse();
1812 buildCounterSearchAnnotationsResponse++; 1812 buildCounterSearchAnnotationsResponse++;
1813 if (buildCounterSearchAnnotationsResponse < 3) { 1813 if (buildCounterSearchAnnotationsResponse < 3) {
1814 o.annotations = buildUnnamed2366(); 1814 o.annotations = buildUnnamed2546();
1815 o.nextPageToken = "foo"; 1815 o.nextPageToken = "foo";
1816 } 1816 }
1817 buildCounterSearchAnnotationsResponse--; 1817 buildCounterSearchAnnotationsResponse--;
1818 return o; 1818 return o;
1819 } 1819 }
1820 1820
1821 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { 1821 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) {
1822 buildCounterSearchAnnotationsResponse++; 1822 buildCounterSearchAnnotationsResponse++;
1823 if (buildCounterSearchAnnotationsResponse < 3) { 1823 if (buildCounterSearchAnnotationsResponse < 3) {
1824 checkUnnamed2366(o.annotations); 1824 checkUnnamed2546(o.annotations);
1825 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1825 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1826 } 1826 }
1827 buildCounterSearchAnnotationsResponse--; 1827 buildCounterSearchAnnotationsResponse--;
1828 } 1828 }
1829 1829
1830 buildUnnamed2367() { 1830 buildUnnamed2547() {
1831 var o = new core.List<core.String>(); 1831 var o = new core.List<core.String>();
1832 o.add("foo"); 1832 o.add("foo");
1833 o.add("foo"); 1833 o.add("foo");
1834 return o; 1834 return o;
1835 } 1835 }
1836 1836
1837 checkUnnamed2367(core.List<core.String> o) { 1837 checkUnnamed2547(core.List<core.String> o) {
1838 unittest.expect(o, unittest.hasLength(2)); 1838 unittest.expect(o, unittest.hasLength(2));
1839 unittest.expect(o[0], unittest.equals('foo')); 1839 unittest.expect(o[0], unittest.equals('foo'));
1840 unittest.expect(o[1], unittest.equals('foo')); 1840 unittest.expect(o[1], unittest.equals('foo'));
1841 } 1841 }
1842 1842
1843 core.int buildCounterSearchCallSetsRequest = 0; 1843 core.int buildCounterSearchCallSetsRequest = 0;
1844 buildSearchCallSetsRequest() { 1844 buildSearchCallSetsRequest() {
1845 var o = new api.SearchCallSetsRequest(); 1845 var o = new api.SearchCallSetsRequest();
1846 buildCounterSearchCallSetsRequest++; 1846 buildCounterSearchCallSetsRequest++;
1847 if (buildCounterSearchCallSetsRequest < 3) { 1847 if (buildCounterSearchCallSetsRequest < 3) {
1848 o.name = "foo"; 1848 o.name = "foo";
1849 o.pageSize = 42; 1849 o.pageSize = 42;
1850 o.pageToken = "foo"; 1850 o.pageToken = "foo";
1851 o.variantSetIds = buildUnnamed2367(); 1851 o.variantSetIds = buildUnnamed2547();
1852 } 1852 }
1853 buildCounterSearchCallSetsRequest--; 1853 buildCounterSearchCallSetsRequest--;
1854 return o; 1854 return o;
1855 } 1855 }
1856 1856
1857 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { 1857 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) {
1858 buildCounterSearchCallSetsRequest++; 1858 buildCounterSearchCallSetsRequest++;
1859 if (buildCounterSearchCallSetsRequest < 3) { 1859 if (buildCounterSearchCallSetsRequest < 3) {
1860 unittest.expect(o.name, unittest.equals('foo')); 1860 unittest.expect(o.name, unittest.equals('foo'));
1861 unittest.expect(o.pageSize, unittest.equals(42)); 1861 unittest.expect(o.pageSize, unittest.equals(42));
1862 unittest.expect(o.pageToken, unittest.equals('foo')); 1862 unittest.expect(o.pageToken, unittest.equals('foo'));
1863 checkUnnamed2367(o.variantSetIds); 1863 checkUnnamed2547(o.variantSetIds);
1864 } 1864 }
1865 buildCounterSearchCallSetsRequest--; 1865 buildCounterSearchCallSetsRequest--;
1866 } 1866 }
1867 1867
1868 buildUnnamed2368() { 1868 buildUnnamed2548() {
1869 var o = new core.List<api.CallSet>(); 1869 var o = new core.List<api.CallSet>();
1870 o.add(buildCallSet()); 1870 o.add(buildCallSet());
1871 o.add(buildCallSet()); 1871 o.add(buildCallSet());
1872 return o; 1872 return o;
1873 } 1873 }
1874 1874
1875 checkUnnamed2368(core.List<api.CallSet> o) { 1875 checkUnnamed2548(core.List<api.CallSet> o) {
1876 unittest.expect(o, unittest.hasLength(2)); 1876 unittest.expect(o, unittest.hasLength(2));
1877 checkCallSet(o[0]); 1877 checkCallSet(o[0]);
1878 checkCallSet(o[1]); 1878 checkCallSet(o[1]);
1879 } 1879 }
1880 1880
1881 core.int buildCounterSearchCallSetsResponse = 0; 1881 core.int buildCounterSearchCallSetsResponse = 0;
1882 buildSearchCallSetsResponse() { 1882 buildSearchCallSetsResponse() {
1883 var o = new api.SearchCallSetsResponse(); 1883 var o = new api.SearchCallSetsResponse();
1884 buildCounterSearchCallSetsResponse++; 1884 buildCounterSearchCallSetsResponse++;
1885 if (buildCounterSearchCallSetsResponse < 3) { 1885 if (buildCounterSearchCallSetsResponse < 3) {
1886 o.callSets = buildUnnamed2368(); 1886 o.callSets = buildUnnamed2548();
1887 o.nextPageToken = "foo"; 1887 o.nextPageToken = "foo";
1888 } 1888 }
1889 buildCounterSearchCallSetsResponse--; 1889 buildCounterSearchCallSetsResponse--;
1890 return o; 1890 return o;
1891 } 1891 }
1892 1892
1893 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { 1893 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) {
1894 buildCounterSearchCallSetsResponse++; 1894 buildCounterSearchCallSetsResponse++;
1895 if (buildCounterSearchCallSetsResponse < 3) { 1895 if (buildCounterSearchCallSetsResponse < 3) {
1896 checkUnnamed2368(o.callSets); 1896 checkUnnamed2548(o.callSets);
1897 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1897 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1898 } 1898 }
1899 buildCounterSearchCallSetsResponse--; 1899 buildCounterSearchCallSetsResponse--;
1900 } 1900 }
1901 1901
1902 buildUnnamed2369() { 1902 buildUnnamed2549() {
1903 var o = new core.List<core.String>(); 1903 var o = new core.List<core.String>();
1904 o.add("foo"); 1904 o.add("foo");
1905 o.add("foo"); 1905 o.add("foo");
1906 return o; 1906 return o;
1907 } 1907 }
1908 1908
1909 checkUnnamed2369(core.List<core.String> o) { 1909 checkUnnamed2549(core.List<core.String> o) {
1910 unittest.expect(o, unittest.hasLength(2)); 1910 unittest.expect(o, unittest.hasLength(2));
1911 unittest.expect(o[0], unittest.equals('foo')); 1911 unittest.expect(o[0], unittest.equals('foo'));
1912 unittest.expect(o[1], unittest.equals('foo')); 1912 unittest.expect(o[1], unittest.equals('foo'));
1913 } 1913 }
1914 1914
1915 core.int buildCounterSearchReadGroupSetsRequest = 0; 1915 core.int buildCounterSearchReadGroupSetsRequest = 0;
1916 buildSearchReadGroupSetsRequest() { 1916 buildSearchReadGroupSetsRequest() {
1917 var o = new api.SearchReadGroupSetsRequest(); 1917 var o = new api.SearchReadGroupSetsRequest();
1918 buildCounterSearchReadGroupSetsRequest++; 1918 buildCounterSearchReadGroupSetsRequest++;
1919 if (buildCounterSearchReadGroupSetsRequest < 3) { 1919 if (buildCounterSearchReadGroupSetsRequest < 3) {
1920 o.datasetIds = buildUnnamed2369(); 1920 o.datasetIds = buildUnnamed2549();
1921 o.name = "foo"; 1921 o.name = "foo";
1922 o.pageSize = 42; 1922 o.pageSize = 42;
1923 o.pageToken = "foo"; 1923 o.pageToken = "foo";
1924 } 1924 }
1925 buildCounterSearchReadGroupSetsRequest--; 1925 buildCounterSearchReadGroupSetsRequest--;
1926 return o; 1926 return o;
1927 } 1927 }
1928 1928
1929 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { 1929 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) {
1930 buildCounterSearchReadGroupSetsRequest++; 1930 buildCounterSearchReadGroupSetsRequest++;
1931 if (buildCounterSearchReadGroupSetsRequest < 3) { 1931 if (buildCounterSearchReadGroupSetsRequest < 3) {
1932 checkUnnamed2369(o.datasetIds); 1932 checkUnnamed2549(o.datasetIds);
1933 unittest.expect(o.name, unittest.equals('foo')); 1933 unittest.expect(o.name, unittest.equals('foo'));
1934 unittest.expect(o.pageSize, unittest.equals(42)); 1934 unittest.expect(o.pageSize, unittest.equals(42));
1935 unittest.expect(o.pageToken, unittest.equals('foo')); 1935 unittest.expect(o.pageToken, unittest.equals('foo'));
1936 } 1936 }
1937 buildCounterSearchReadGroupSetsRequest--; 1937 buildCounterSearchReadGroupSetsRequest--;
1938 } 1938 }
1939 1939
1940 buildUnnamed2370() { 1940 buildUnnamed2550() {
1941 var o = new core.List<api.ReadGroupSet>(); 1941 var o = new core.List<api.ReadGroupSet>();
1942 o.add(buildReadGroupSet()); 1942 o.add(buildReadGroupSet());
1943 o.add(buildReadGroupSet()); 1943 o.add(buildReadGroupSet());
1944 return o; 1944 return o;
1945 } 1945 }
1946 1946
1947 checkUnnamed2370(core.List<api.ReadGroupSet> o) { 1947 checkUnnamed2550(core.List<api.ReadGroupSet> o) {
1948 unittest.expect(o, unittest.hasLength(2)); 1948 unittest.expect(o, unittest.hasLength(2));
1949 checkReadGroupSet(o[0]); 1949 checkReadGroupSet(o[0]);
1950 checkReadGroupSet(o[1]); 1950 checkReadGroupSet(o[1]);
1951 } 1951 }
1952 1952
1953 core.int buildCounterSearchReadGroupSetsResponse = 0; 1953 core.int buildCounterSearchReadGroupSetsResponse = 0;
1954 buildSearchReadGroupSetsResponse() { 1954 buildSearchReadGroupSetsResponse() {
1955 var o = new api.SearchReadGroupSetsResponse(); 1955 var o = new api.SearchReadGroupSetsResponse();
1956 buildCounterSearchReadGroupSetsResponse++; 1956 buildCounterSearchReadGroupSetsResponse++;
1957 if (buildCounterSearchReadGroupSetsResponse < 3) { 1957 if (buildCounterSearchReadGroupSetsResponse < 3) {
1958 o.nextPageToken = "foo"; 1958 o.nextPageToken = "foo";
1959 o.readGroupSets = buildUnnamed2370(); 1959 o.readGroupSets = buildUnnamed2550();
1960 } 1960 }
1961 buildCounterSearchReadGroupSetsResponse--; 1961 buildCounterSearchReadGroupSetsResponse--;
1962 return o; 1962 return o;
1963 } 1963 }
1964 1964
1965 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { 1965 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) {
1966 buildCounterSearchReadGroupSetsResponse++; 1966 buildCounterSearchReadGroupSetsResponse++;
1967 if (buildCounterSearchReadGroupSetsResponse < 3) { 1967 if (buildCounterSearchReadGroupSetsResponse < 3) {
1968 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1968 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1969 checkUnnamed2370(o.readGroupSets); 1969 checkUnnamed2550(o.readGroupSets);
1970 } 1970 }
1971 buildCounterSearchReadGroupSetsResponse--; 1971 buildCounterSearchReadGroupSetsResponse--;
1972 } 1972 }
1973 1973
1974 buildUnnamed2371() { 1974 buildUnnamed2551() {
1975 var o = new core.List<core.String>(); 1975 var o = new core.List<core.String>();
1976 o.add("foo"); 1976 o.add("foo");
1977 o.add("foo"); 1977 o.add("foo");
1978 return o; 1978 return o;
1979 } 1979 }
1980 1980
1981 checkUnnamed2371(core.List<core.String> o) { 1981 checkUnnamed2551(core.List<core.String> o) {
1982 unittest.expect(o, unittest.hasLength(2)); 1982 unittest.expect(o, unittest.hasLength(2));
1983 unittest.expect(o[0], unittest.equals('foo')); 1983 unittest.expect(o[0], unittest.equals('foo'));
1984 unittest.expect(o[1], unittest.equals('foo')); 1984 unittest.expect(o[1], unittest.equals('foo'));
1985 } 1985 }
1986 1986
1987 buildUnnamed2372() { 1987 buildUnnamed2552() {
1988 var o = new core.List<core.String>(); 1988 var o = new core.List<core.String>();
1989 o.add("foo"); 1989 o.add("foo");
1990 o.add("foo"); 1990 o.add("foo");
1991 return o; 1991 return o;
1992 } 1992 }
1993 1993
1994 checkUnnamed2372(core.List<core.String> o) { 1994 checkUnnamed2552(core.List<core.String> o) {
1995 unittest.expect(o, unittest.hasLength(2)); 1995 unittest.expect(o, unittest.hasLength(2));
1996 unittest.expect(o[0], unittest.equals('foo')); 1996 unittest.expect(o[0], unittest.equals('foo'));
1997 unittest.expect(o[1], unittest.equals('foo')); 1997 unittest.expect(o[1], unittest.equals('foo'));
1998 } 1998 }
1999 1999
2000 core.int buildCounterSearchReadsRequest = 0; 2000 core.int buildCounterSearchReadsRequest = 0;
2001 buildSearchReadsRequest() { 2001 buildSearchReadsRequest() {
2002 var o = new api.SearchReadsRequest(); 2002 var o = new api.SearchReadsRequest();
2003 buildCounterSearchReadsRequest++; 2003 buildCounterSearchReadsRequest++;
2004 if (buildCounterSearchReadsRequest < 3) { 2004 if (buildCounterSearchReadsRequest < 3) {
2005 o.end = "foo"; 2005 o.end = "foo";
2006 o.pageSize = 42; 2006 o.pageSize = 42;
2007 o.pageToken = "foo"; 2007 o.pageToken = "foo";
2008 o.readGroupIds = buildUnnamed2371(); 2008 o.readGroupIds = buildUnnamed2551();
2009 o.readGroupSetIds = buildUnnamed2372(); 2009 o.readGroupSetIds = buildUnnamed2552();
2010 o.referenceName = "foo"; 2010 o.referenceName = "foo";
2011 o.start = "foo"; 2011 o.start = "foo";
2012 } 2012 }
2013 buildCounterSearchReadsRequest--; 2013 buildCounterSearchReadsRequest--;
2014 return o; 2014 return o;
2015 } 2015 }
2016 2016
2017 checkSearchReadsRequest(api.SearchReadsRequest o) { 2017 checkSearchReadsRequest(api.SearchReadsRequest o) {
2018 buildCounterSearchReadsRequest++; 2018 buildCounterSearchReadsRequest++;
2019 if (buildCounterSearchReadsRequest < 3) { 2019 if (buildCounterSearchReadsRequest < 3) {
2020 unittest.expect(o.end, unittest.equals('foo')); 2020 unittest.expect(o.end, unittest.equals('foo'));
2021 unittest.expect(o.pageSize, unittest.equals(42)); 2021 unittest.expect(o.pageSize, unittest.equals(42));
2022 unittest.expect(o.pageToken, unittest.equals('foo')); 2022 unittest.expect(o.pageToken, unittest.equals('foo'));
2023 checkUnnamed2371(o.readGroupIds); 2023 checkUnnamed2551(o.readGroupIds);
2024 checkUnnamed2372(o.readGroupSetIds); 2024 checkUnnamed2552(o.readGroupSetIds);
2025 unittest.expect(o.referenceName, unittest.equals('foo')); 2025 unittest.expect(o.referenceName, unittest.equals('foo'));
2026 unittest.expect(o.start, unittest.equals('foo')); 2026 unittest.expect(o.start, unittest.equals('foo'));
2027 } 2027 }
2028 buildCounterSearchReadsRequest--; 2028 buildCounterSearchReadsRequest--;
2029 } 2029 }
2030 2030
2031 buildUnnamed2373() { 2031 buildUnnamed2553() {
2032 var o = new core.List<api.Read>(); 2032 var o = new core.List<api.Read>();
2033 o.add(buildRead()); 2033 o.add(buildRead());
2034 o.add(buildRead()); 2034 o.add(buildRead());
2035 return o; 2035 return o;
2036 } 2036 }
2037 2037
2038 checkUnnamed2373(core.List<api.Read> o) { 2038 checkUnnamed2553(core.List<api.Read> o) {
2039 unittest.expect(o, unittest.hasLength(2)); 2039 unittest.expect(o, unittest.hasLength(2));
2040 checkRead(o[0]); 2040 checkRead(o[0]);
2041 checkRead(o[1]); 2041 checkRead(o[1]);
2042 } 2042 }
2043 2043
2044 core.int buildCounterSearchReadsResponse = 0; 2044 core.int buildCounterSearchReadsResponse = 0;
2045 buildSearchReadsResponse() { 2045 buildSearchReadsResponse() {
2046 var o = new api.SearchReadsResponse(); 2046 var o = new api.SearchReadsResponse();
2047 buildCounterSearchReadsResponse++; 2047 buildCounterSearchReadsResponse++;
2048 if (buildCounterSearchReadsResponse < 3) { 2048 if (buildCounterSearchReadsResponse < 3) {
2049 o.alignments = buildUnnamed2373(); 2049 o.alignments = buildUnnamed2553();
2050 o.nextPageToken = "foo"; 2050 o.nextPageToken = "foo";
2051 } 2051 }
2052 buildCounterSearchReadsResponse--; 2052 buildCounterSearchReadsResponse--;
2053 return o; 2053 return o;
2054 } 2054 }
2055 2055
2056 checkSearchReadsResponse(api.SearchReadsResponse o) { 2056 checkSearchReadsResponse(api.SearchReadsResponse o) {
2057 buildCounterSearchReadsResponse++; 2057 buildCounterSearchReadsResponse++;
2058 if (buildCounterSearchReadsResponse < 3) { 2058 if (buildCounterSearchReadsResponse < 3) {
2059 checkUnnamed2373(o.alignments); 2059 checkUnnamed2553(o.alignments);
2060 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2060 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2061 } 2061 }
2062 buildCounterSearchReadsResponse--; 2062 buildCounterSearchReadsResponse--;
2063 } 2063 }
2064 2064
2065 buildUnnamed2374() { 2065 buildUnnamed2554() {
2066 var o = new core.List<core.String>(); 2066 var o = new core.List<core.String>();
2067 o.add("foo"); 2067 o.add("foo");
2068 o.add("foo"); 2068 o.add("foo");
2069 return o; 2069 return o;
2070 } 2070 }
2071 2071
2072 checkUnnamed2374(core.List<core.String> o) { 2072 checkUnnamed2554(core.List<core.String> o) {
2073 unittest.expect(o, unittest.hasLength(2)); 2073 unittest.expect(o, unittest.hasLength(2));
2074 unittest.expect(o[0], unittest.equals('foo')); 2074 unittest.expect(o[0], unittest.equals('foo'));
2075 unittest.expect(o[1], unittest.equals('foo')); 2075 unittest.expect(o[1], unittest.equals('foo'));
2076 } 2076 }
2077 2077
2078 buildUnnamed2375() { 2078 buildUnnamed2555() {
2079 var o = new core.List<core.String>(); 2079 var o = new core.List<core.String>();
2080 o.add("foo"); 2080 o.add("foo");
2081 o.add("foo"); 2081 o.add("foo");
2082 return o; 2082 return o;
2083 } 2083 }
2084 2084
2085 checkUnnamed2375(core.List<core.String> o) { 2085 checkUnnamed2555(core.List<core.String> o) {
2086 unittest.expect(o, unittest.hasLength(2)); 2086 unittest.expect(o, unittest.hasLength(2));
2087 unittest.expect(o[0], unittest.equals('foo')); 2087 unittest.expect(o[0], unittest.equals('foo'));
2088 unittest.expect(o[1], unittest.equals('foo')); 2088 unittest.expect(o[1], unittest.equals('foo'));
2089 } 2089 }
2090 2090
2091 core.int buildCounterSearchReferenceSetsRequest = 0; 2091 core.int buildCounterSearchReferenceSetsRequest = 0;
2092 buildSearchReferenceSetsRequest() { 2092 buildSearchReferenceSetsRequest() {
2093 var o = new api.SearchReferenceSetsRequest(); 2093 var o = new api.SearchReferenceSetsRequest();
2094 buildCounterSearchReferenceSetsRequest++; 2094 buildCounterSearchReferenceSetsRequest++;
2095 if (buildCounterSearchReferenceSetsRequest < 3) { 2095 if (buildCounterSearchReferenceSetsRequest < 3) {
2096 o.accessions = buildUnnamed2374(); 2096 o.accessions = buildUnnamed2554();
2097 o.assemblyId = "foo"; 2097 o.assemblyId = "foo";
2098 o.md5checksums = buildUnnamed2375(); 2098 o.md5checksums = buildUnnamed2555();
2099 o.pageSize = 42; 2099 o.pageSize = 42;
2100 o.pageToken = "foo"; 2100 o.pageToken = "foo";
2101 } 2101 }
2102 buildCounterSearchReferenceSetsRequest--; 2102 buildCounterSearchReferenceSetsRequest--;
2103 return o; 2103 return o;
2104 } 2104 }
2105 2105
2106 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { 2106 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) {
2107 buildCounterSearchReferenceSetsRequest++; 2107 buildCounterSearchReferenceSetsRequest++;
2108 if (buildCounterSearchReferenceSetsRequest < 3) { 2108 if (buildCounterSearchReferenceSetsRequest < 3) {
2109 checkUnnamed2374(o.accessions); 2109 checkUnnamed2554(o.accessions);
2110 unittest.expect(o.assemblyId, unittest.equals('foo')); 2110 unittest.expect(o.assemblyId, unittest.equals('foo'));
2111 checkUnnamed2375(o.md5checksums); 2111 checkUnnamed2555(o.md5checksums);
2112 unittest.expect(o.pageSize, unittest.equals(42)); 2112 unittest.expect(o.pageSize, unittest.equals(42));
2113 unittest.expect(o.pageToken, unittest.equals('foo')); 2113 unittest.expect(o.pageToken, unittest.equals('foo'));
2114 } 2114 }
2115 buildCounterSearchReferenceSetsRequest--; 2115 buildCounterSearchReferenceSetsRequest--;
2116 } 2116 }
2117 2117
2118 buildUnnamed2376() { 2118 buildUnnamed2556() {
2119 var o = new core.List<api.ReferenceSet>(); 2119 var o = new core.List<api.ReferenceSet>();
2120 o.add(buildReferenceSet()); 2120 o.add(buildReferenceSet());
2121 o.add(buildReferenceSet()); 2121 o.add(buildReferenceSet());
2122 return o; 2122 return o;
2123 } 2123 }
2124 2124
2125 checkUnnamed2376(core.List<api.ReferenceSet> o) { 2125 checkUnnamed2556(core.List<api.ReferenceSet> o) {
2126 unittest.expect(o, unittest.hasLength(2)); 2126 unittest.expect(o, unittest.hasLength(2));
2127 checkReferenceSet(o[0]); 2127 checkReferenceSet(o[0]);
2128 checkReferenceSet(o[1]); 2128 checkReferenceSet(o[1]);
2129 } 2129 }
2130 2130
2131 core.int buildCounterSearchReferenceSetsResponse = 0; 2131 core.int buildCounterSearchReferenceSetsResponse = 0;
2132 buildSearchReferenceSetsResponse() { 2132 buildSearchReferenceSetsResponse() {
2133 var o = new api.SearchReferenceSetsResponse(); 2133 var o = new api.SearchReferenceSetsResponse();
2134 buildCounterSearchReferenceSetsResponse++; 2134 buildCounterSearchReferenceSetsResponse++;
2135 if (buildCounterSearchReferenceSetsResponse < 3) { 2135 if (buildCounterSearchReferenceSetsResponse < 3) {
2136 o.nextPageToken = "foo"; 2136 o.nextPageToken = "foo";
2137 o.referenceSets = buildUnnamed2376(); 2137 o.referenceSets = buildUnnamed2556();
2138 } 2138 }
2139 buildCounterSearchReferenceSetsResponse--; 2139 buildCounterSearchReferenceSetsResponse--;
2140 return o; 2140 return o;
2141 } 2141 }
2142 2142
2143 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { 2143 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) {
2144 buildCounterSearchReferenceSetsResponse++; 2144 buildCounterSearchReferenceSetsResponse++;
2145 if (buildCounterSearchReferenceSetsResponse < 3) { 2145 if (buildCounterSearchReferenceSetsResponse < 3) {
2146 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2146 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2147 checkUnnamed2376(o.referenceSets); 2147 checkUnnamed2556(o.referenceSets);
2148 } 2148 }
2149 buildCounterSearchReferenceSetsResponse--; 2149 buildCounterSearchReferenceSetsResponse--;
2150 } 2150 }
2151 2151
2152 buildUnnamed2377() { 2152 buildUnnamed2557() {
2153 var o = new core.List<core.String>(); 2153 var o = new core.List<core.String>();
2154 o.add("foo"); 2154 o.add("foo");
2155 o.add("foo"); 2155 o.add("foo");
2156 return o; 2156 return o;
2157 } 2157 }
2158 2158
2159 checkUnnamed2377(core.List<core.String> o) { 2159 checkUnnamed2557(core.List<core.String> o) {
2160 unittest.expect(o, unittest.hasLength(2)); 2160 unittest.expect(o, unittest.hasLength(2));
2161 unittest.expect(o[0], unittest.equals('foo')); 2161 unittest.expect(o[0], unittest.equals('foo'));
2162 unittest.expect(o[1], unittest.equals('foo')); 2162 unittest.expect(o[1], unittest.equals('foo'));
2163 } 2163 }
2164 2164
2165 buildUnnamed2378() { 2165 buildUnnamed2558() {
2166 var o = new core.List<core.String>(); 2166 var o = new core.List<core.String>();
2167 o.add("foo"); 2167 o.add("foo");
2168 o.add("foo"); 2168 o.add("foo");
2169 return o; 2169 return o;
2170 } 2170 }
2171 2171
2172 checkUnnamed2378(core.List<core.String> o) { 2172 checkUnnamed2558(core.List<core.String> o) {
2173 unittest.expect(o, unittest.hasLength(2)); 2173 unittest.expect(o, unittest.hasLength(2));
2174 unittest.expect(o[0], unittest.equals('foo')); 2174 unittest.expect(o[0], unittest.equals('foo'));
2175 unittest.expect(o[1], unittest.equals('foo')); 2175 unittest.expect(o[1], unittest.equals('foo'));
2176 } 2176 }
2177 2177
2178 core.int buildCounterSearchReferencesRequest = 0; 2178 core.int buildCounterSearchReferencesRequest = 0;
2179 buildSearchReferencesRequest() { 2179 buildSearchReferencesRequest() {
2180 var o = new api.SearchReferencesRequest(); 2180 var o = new api.SearchReferencesRequest();
2181 buildCounterSearchReferencesRequest++; 2181 buildCounterSearchReferencesRequest++;
2182 if (buildCounterSearchReferencesRequest < 3) { 2182 if (buildCounterSearchReferencesRequest < 3) {
2183 o.accessions = buildUnnamed2377(); 2183 o.accessions = buildUnnamed2557();
2184 o.md5checksums = buildUnnamed2378(); 2184 o.md5checksums = buildUnnamed2558();
2185 o.pageSize = 42; 2185 o.pageSize = 42;
2186 o.pageToken = "foo"; 2186 o.pageToken = "foo";
2187 o.referenceSetId = "foo"; 2187 o.referenceSetId = "foo";
2188 } 2188 }
2189 buildCounterSearchReferencesRequest--; 2189 buildCounterSearchReferencesRequest--;
2190 return o; 2190 return o;
2191 } 2191 }
2192 2192
2193 checkSearchReferencesRequest(api.SearchReferencesRequest o) { 2193 checkSearchReferencesRequest(api.SearchReferencesRequest o) {
2194 buildCounterSearchReferencesRequest++; 2194 buildCounterSearchReferencesRequest++;
2195 if (buildCounterSearchReferencesRequest < 3) { 2195 if (buildCounterSearchReferencesRequest < 3) {
2196 checkUnnamed2377(o.accessions); 2196 checkUnnamed2557(o.accessions);
2197 checkUnnamed2378(o.md5checksums); 2197 checkUnnamed2558(o.md5checksums);
2198 unittest.expect(o.pageSize, unittest.equals(42)); 2198 unittest.expect(o.pageSize, unittest.equals(42));
2199 unittest.expect(o.pageToken, unittest.equals('foo')); 2199 unittest.expect(o.pageToken, unittest.equals('foo'));
2200 unittest.expect(o.referenceSetId, unittest.equals('foo')); 2200 unittest.expect(o.referenceSetId, unittest.equals('foo'));
2201 } 2201 }
2202 buildCounterSearchReferencesRequest--; 2202 buildCounterSearchReferencesRequest--;
2203 } 2203 }
2204 2204
2205 buildUnnamed2379() { 2205 buildUnnamed2559() {
2206 var o = new core.List<api.Reference>(); 2206 var o = new core.List<api.Reference>();
2207 o.add(buildReference()); 2207 o.add(buildReference());
2208 o.add(buildReference()); 2208 o.add(buildReference());
2209 return o; 2209 return o;
2210 } 2210 }
2211 2211
2212 checkUnnamed2379(core.List<api.Reference> o) { 2212 checkUnnamed2559(core.List<api.Reference> o) {
2213 unittest.expect(o, unittest.hasLength(2)); 2213 unittest.expect(o, unittest.hasLength(2));
2214 checkReference(o[0]); 2214 checkReference(o[0]);
2215 checkReference(o[1]); 2215 checkReference(o[1]);
2216 } 2216 }
2217 2217
2218 core.int buildCounterSearchReferencesResponse = 0; 2218 core.int buildCounterSearchReferencesResponse = 0;
2219 buildSearchReferencesResponse() { 2219 buildSearchReferencesResponse() {
2220 var o = new api.SearchReferencesResponse(); 2220 var o = new api.SearchReferencesResponse();
2221 buildCounterSearchReferencesResponse++; 2221 buildCounterSearchReferencesResponse++;
2222 if (buildCounterSearchReferencesResponse < 3) { 2222 if (buildCounterSearchReferencesResponse < 3) {
2223 o.nextPageToken = "foo"; 2223 o.nextPageToken = "foo";
2224 o.references = buildUnnamed2379(); 2224 o.references = buildUnnamed2559();
2225 } 2225 }
2226 buildCounterSearchReferencesResponse--; 2226 buildCounterSearchReferencesResponse--;
2227 return o; 2227 return o;
2228 } 2228 }
2229 2229
2230 checkSearchReferencesResponse(api.SearchReferencesResponse o) { 2230 checkSearchReferencesResponse(api.SearchReferencesResponse o) {
2231 buildCounterSearchReferencesResponse++; 2231 buildCounterSearchReferencesResponse++;
2232 if (buildCounterSearchReferencesResponse < 3) { 2232 if (buildCounterSearchReferencesResponse < 3) {
2233 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2233 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2234 checkUnnamed2379(o.references); 2234 checkUnnamed2559(o.references);
2235 } 2235 }
2236 buildCounterSearchReferencesResponse--; 2236 buildCounterSearchReferencesResponse--;
2237 } 2237 }
2238 2238
2239 buildUnnamed2380() { 2239 buildUnnamed2560() {
2240 var o = new core.List<core.String>(); 2240 var o = new core.List<core.String>();
2241 o.add("foo"); 2241 o.add("foo");
2242 o.add("foo"); 2242 o.add("foo");
2243 return o; 2243 return o;
2244 } 2244 }
2245 2245
2246 checkUnnamed2380(core.List<core.String> o) { 2246 checkUnnamed2560(core.List<core.String> o) {
2247 unittest.expect(o, unittest.hasLength(2)); 2247 unittest.expect(o, unittest.hasLength(2));
2248 unittest.expect(o[0], unittest.equals('foo')); 2248 unittest.expect(o[0], unittest.equals('foo'));
2249 unittest.expect(o[1], unittest.equals('foo')); 2249 unittest.expect(o[1], unittest.equals('foo'));
2250 } 2250 }
2251 2251
2252 core.int buildCounterSearchVariantSetsRequest = 0; 2252 core.int buildCounterSearchVariantSetsRequest = 0;
2253 buildSearchVariantSetsRequest() { 2253 buildSearchVariantSetsRequest() {
2254 var o = new api.SearchVariantSetsRequest(); 2254 var o = new api.SearchVariantSetsRequest();
2255 buildCounterSearchVariantSetsRequest++; 2255 buildCounterSearchVariantSetsRequest++;
2256 if (buildCounterSearchVariantSetsRequest < 3) { 2256 if (buildCounterSearchVariantSetsRequest < 3) {
2257 o.datasetIds = buildUnnamed2380(); 2257 o.datasetIds = buildUnnamed2560();
2258 o.pageSize = 42; 2258 o.pageSize = 42;
2259 o.pageToken = "foo"; 2259 o.pageToken = "foo";
2260 } 2260 }
2261 buildCounterSearchVariantSetsRequest--; 2261 buildCounterSearchVariantSetsRequest--;
2262 return o; 2262 return o;
2263 } 2263 }
2264 2264
2265 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { 2265 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) {
2266 buildCounterSearchVariantSetsRequest++; 2266 buildCounterSearchVariantSetsRequest++;
2267 if (buildCounterSearchVariantSetsRequest < 3) { 2267 if (buildCounterSearchVariantSetsRequest < 3) {
2268 checkUnnamed2380(o.datasetIds); 2268 checkUnnamed2560(o.datasetIds);
2269 unittest.expect(o.pageSize, unittest.equals(42)); 2269 unittest.expect(o.pageSize, unittest.equals(42));
2270 unittest.expect(o.pageToken, unittest.equals('foo')); 2270 unittest.expect(o.pageToken, unittest.equals('foo'));
2271 } 2271 }
2272 buildCounterSearchVariantSetsRequest--; 2272 buildCounterSearchVariantSetsRequest--;
2273 } 2273 }
2274 2274
2275 buildUnnamed2381() { 2275 buildUnnamed2561() {
2276 var o = new core.List<api.VariantSet>(); 2276 var o = new core.List<api.VariantSet>();
2277 o.add(buildVariantSet()); 2277 o.add(buildVariantSet());
2278 o.add(buildVariantSet()); 2278 o.add(buildVariantSet());
2279 return o; 2279 return o;
2280 } 2280 }
2281 2281
2282 checkUnnamed2381(core.List<api.VariantSet> o) { 2282 checkUnnamed2561(core.List<api.VariantSet> o) {
2283 unittest.expect(o, unittest.hasLength(2)); 2283 unittest.expect(o, unittest.hasLength(2));
2284 checkVariantSet(o[0]); 2284 checkVariantSet(o[0]);
2285 checkVariantSet(o[1]); 2285 checkVariantSet(o[1]);
2286 } 2286 }
2287 2287
2288 core.int buildCounterSearchVariantSetsResponse = 0; 2288 core.int buildCounterSearchVariantSetsResponse = 0;
2289 buildSearchVariantSetsResponse() { 2289 buildSearchVariantSetsResponse() {
2290 var o = new api.SearchVariantSetsResponse(); 2290 var o = new api.SearchVariantSetsResponse();
2291 buildCounterSearchVariantSetsResponse++; 2291 buildCounterSearchVariantSetsResponse++;
2292 if (buildCounterSearchVariantSetsResponse < 3) { 2292 if (buildCounterSearchVariantSetsResponse < 3) {
2293 o.nextPageToken = "foo"; 2293 o.nextPageToken = "foo";
2294 o.variantSets = buildUnnamed2381(); 2294 o.variantSets = buildUnnamed2561();
2295 } 2295 }
2296 buildCounterSearchVariantSetsResponse--; 2296 buildCounterSearchVariantSetsResponse--;
2297 return o; 2297 return o;
2298 } 2298 }
2299 2299
2300 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { 2300 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) {
2301 buildCounterSearchVariantSetsResponse++; 2301 buildCounterSearchVariantSetsResponse++;
2302 if (buildCounterSearchVariantSetsResponse < 3) { 2302 if (buildCounterSearchVariantSetsResponse < 3) {
2303 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2303 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2304 checkUnnamed2381(o.variantSets); 2304 checkUnnamed2561(o.variantSets);
2305 } 2305 }
2306 buildCounterSearchVariantSetsResponse--; 2306 buildCounterSearchVariantSetsResponse--;
2307 } 2307 }
2308 2308
2309 buildUnnamed2382() { 2309 buildUnnamed2562() {
2310 var o = new core.List<core.String>(); 2310 var o = new core.List<core.String>();
2311 o.add("foo"); 2311 o.add("foo");
2312 o.add("foo"); 2312 o.add("foo");
2313 return o; 2313 return o;
2314 } 2314 }
2315 2315
2316 checkUnnamed2382(core.List<core.String> o) { 2316 checkUnnamed2562(core.List<core.String> o) {
2317 unittest.expect(o, unittest.hasLength(2)); 2317 unittest.expect(o, unittest.hasLength(2));
2318 unittest.expect(o[0], unittest.equals('foo')); 2318 unittest.expect(o[0], unittest.equals('foo'));
2319 unittest.expect(o[1], unittest.equals('foo')); 2319 unittest.expect(o[1], unittest.equals('foo'));
2320 } 2320 }
2321 2321
2322 buildUnnamed2383() { 2322 buildUnnamed2563() {
2323 var o = new core.List<core.String>(); 2323 var o = new core.List<core.String>();
2324 o.add("foo"); 2324 o.add("foo");
2325 o.add("foo"); 2325 o.add("foo");
2326 return o; 2326 return o;
2327 } 2327 }
2328 2328
2329 checkUnnamed2383(core.List<core.String> o) { 2329 checkUnnamed2563(core.List<core.String> o) {
2330 unittest.expect(o, unittest.hasLength(2)); 2330 unittest.expect(o, unittest.hasLength(2));
2331 unittest.expect(o[0], unittest.equals('foo')); 2331 unittest.expect(o[0], unittest.equals('foo'));
2332 unittest.expect(o[1], unittest.equals('foo')); 2332 unittest.expect(o[1], unittest.equals('foo'));
2333 } 2333 }
2334 2334
2335 core.int buildCounterSearchVariantsRequest = 0; 2335 core.int buildCounterSearchVariantsRequest = 0;
2336 buildSearchVariantsRequest() { 2336 buildSearchVariantsRequest() {
2337 var o = new api.SearchVariantsRequest(); 2337 var o = new api.SearchVariantsRequest();
2338 buildCounterSearchVariantsRequest++; 2338 buildCounterSearchVariantsRequest++;
2339 if (buildCounterSearchVariantsRequest < 3) { 2339 if (buildCounterSearchVariantsRequest < 3) {
2340 o.callSetIds = buildUnnamed2382(); 2340 o.callSetIds = buildUnnamed2562();
2341 o.end = "foo"; 2341 o.end = "foo";
2342 o.maxCalls = 42; 2342 o.maxCalls = 42;
2343 o.pageSize = 42; 2343 o.pageSize = 42;
2344 o.pageToken = "foo"; 2344 o.pageToken = "foo";
2345 o.referenceName = "foo"; 2345 o.referenceName = "foo";
2346 o.start = "foo"; 2346 o.start = "foo";
2347 o.variantName = "foo"; 2347 o.variantName = "foo";
2348 o.variantSetIds = buildUnnamed2383(); 2348 o.variantSetIds = buildUnnamed2563();
2349 } 2349 }
2350 buildCounterSearchVariantsRequest--; 2350 buildCounterSearchVariantsRequest--;
2351 return o; 2351 return o;
2352 } 2352 }
2353 2353
2354 checkSearchVariantsRequest(api.SearchVariantsRequest o) { 2354 checkSearchVariantsRequest(api.SearchVariantsRequest o) {
2355 buildCounterSearchVariantsRequest++; 2355 buildCounterSearchVariantsRequest++;
2356 if (buildCounterSearchVariantsRequest < 3) { 2356 if (buildCounterSearchVariantsRequest < 3) {
2357 checkUnnamed2382(o.callSetIds); 2357 checkUnnamed2562(o.callSetIds);
2358 unittest.expect(o.end, unittest.equals('foo')); 2358 unittest.expect(o.end, unittest.equals('foo'));
2359 unittest.expect(o.maxCalls, unittest.equals(42)); 2359 unittest.expect(o.maxCalls, unittest.equals(42));
2360 unittest.expect(o.pageSize, unittest.equals(42)); 2360 unittest.expect(o.pageSize, unittest.equals(42));
2361 unittest.expect(o.pageToken, unittest.equals('foo')); 2361 unittest.expect(o.pageToken, unittest.equals('foo'));
2362 unittest.expect(o.referenceName, unittest.equals('foo')); 2362 unittest.expect(o.referenceName, unittest.equals('foo'));
2363 unittest.expect(o.start, unittest.equals('foo')); 2363 unittest.expect(o.start, unittest.equals('foo'));
2364 unittest.expect(o.variantName, unittest.equals('foo')); 2364 unittest.expect(o.variantName, unittest.equals('foo'));
2365 checkUnnamed2383(o.variantSetIds); 2365 checkUnnamed2563(o.variantSetIds);
2366 } 2366 }
2367 buildCounterSearchVariantsRequest--; 2367 buildCounterSearchVariantsRequest--;
2368 } 2368 }
2369 2369
2370 buildUnnamed2384() { 2370 buildUnnamed2564() {
2371 var o = new core.List<api.Variant>(); 2371 var o = new core.List<api.Variant>();
2372 o.add(buildVariant()); 2372 o.add(buildVariant());
2373 o.add(buildVariant()); 2373 o.add(buildVariant());
2374 return o; 2374 return o;
2375 } 2375 }
2376 2376
2377 checkUnnamed2384(core.List<api.Variant> o) { 2377 checkUnnamed2564(core.List<api.Variant> o) {
2378 unittest.expect(o, unittest.hasLength(2)); 2378 unittest.expect(o, unittest.hasLength(2));
2379 checkVariant(o[0]); 2379 checkVariant(o[0]);
2380 checkVariant(o[1]); 2380 checkVariant(o[1]);
2381 } 2381 }
2382 2382
2383 core.int buildCounterSearchVariantsResponse = 0; 2383 core.int buildCounterSearchVariantsResponse = 0;
2384 buildSearchVariantsResponse() { 2384 buildSearchVariantsResponse() {
2385 var o = new api.SearchVariantsResponse(); 2385 var o = new api.SearchVariantsResponse();
2386 buildCounterSearchVariantsResponse++; 2386 buildCounterSearchVariantsResponse++;
2387 if (buildCounterSearchVariantsResponse < 3) { 2387 if (buildCounterSearchVariantsResponse < 3) {
2388 o.nextPageToken = "foo"; 2388 o.nextPageToken = "foo";
2389 o.variants = buildUnnamed2384(); 2389 o.variants = buildUnnamed2564();
2390 } 2390 }
2391 buildCounterSearchVariantsResponse--; 2391 buildCounterSearchVariantsResponse--;
2392 return o; 2392 return o;
2393 } 2393 }
2394 2394
2395 checkSearchVariantsResponse(api.SearchVariantsResponse o) { 2395 checkSearchVariantsResponse(api.SearchVariantsResponse o) {
2396 buildCounterSearchVariantsResponse++; 2396 buildCounterSearchVariantsResponse++;
2397 if (buildCounterSearchVariantsResponse < 3) { 2397 if (buildCounterSearchVariantsResponse < 3) {
2398 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2398 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2399 checkUnnamed2384(o.variants); 2399 checkUnnamed2564(o.variants);
2400 } 2400 }
2401 buildCounterSearchVariantsResponse--; 2401 buildCounterSearchVariantsResponse--;
2402 } 2402 }
2403 2403
2404 core.int buildCounterSetIamPolicyRequest = 0; 2404 core.int buildCounterSetIamPolicyRequest = 0;
2405 buildSetIamPolicyRequest() { 2405 buildSetIamPolicyRequest() {
2406 var o = new api.SetIamPolicyRequest(); 2406 var o = new api.SetIamPolicyRequest();
2407 buildCounterSetIamPolicyRequest++; 2407 buildCounterSetIamPolicyRequest++;
2408 if (buildCounterSetIamPolicyRequest < 3) { 2408 if (buildCounterSetIamPolicyRequest < 3) {
2409 o.policy = buildPolicy(); 2409 o.policy = buildPolicy();
2410 } 2410 }
2411 buildCounterSetIamPolicyRequest--; 2411 buildCounterSetIamPolicyRequest--;
2412 return o; 2412 return o;
2413 } 2413 }
2414 2414
2415 checkSetIamPolicyRequest(api.SetIamPolicyRequest o) { 2415 checkSetIamPolicyRequest(api.SetIamPolicyRequest o) {
2416 buildCounterSetIamPolicyRequest++; 2416 buildCounterSetIamPolicyRequest++;
2417 if (buildCounterSetIamPolicyRequest < 3) { 2417 if (buildCounterSetIamPolicyRequest < 3) {
2418 checkPolicy(o.policy); 2418 checkPolicy(o.policy);
2419 } 2419 }
2420 buildCounterSetIamPolicyRequest--; 2420 buildCounterSetIamPolicyRequest--;
2421 } 2421 }
2422 2422
2423 buildUnnamed2385() { 2423 buildUnnamed2565() {
2424 var o = new core.Map<core.String, core.Object>(); 2424 var o = new core.Map<core.String, core.Object>();
2425 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; 2425 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'};
2426 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; 2426 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'};
2427 return o; 2427 return o;
2428 } 2428 }
2429 2429
2430 checkUnnamed2385(core.Map<core.String, core.Object> o) { 2430 checkUnnamed2565(core.Map<core.String, core.Object> o) {
2431 unittest.expect(o, unittest.hasLength(2)); 2431 unittest.expect(o, unittest.hasLength(2));
2432 var casted19 = (o["x"]) as core.Map; unittest.expect(casted19, unittest.hasLen gth(3)); unittest.expect(casted19["list"], unittest.equals([1, 2, 3])); unittest .expect(casted19["bool"], unittest.equals(true)); unittest.expect(casted19["stri ng"], unittest.equals('foo')); 2432 var casted19 = (o["x"]) as core.Map; unittest.expect(casted19, unittest.hasLen gth(3)); unittest.expect(casted19["list"], unittest.equals([1, 2, 3])); unittest .expect(casted19["bool"], unittest.equals(true)); unittest.expect(casted19["stri ng"], unittest.equals('foo'));
2433 var casted20 = (o["y"]) as core.Map; unittest.expect(casted20, unittest.hasLen gth(3)); unittest.expect(casted20["list"], unittest.equals([1, 2, 3])); unittest .expect(casted20["bool"], unittest.equals(true)); unittest.expect(casted20["stri ng"], unittest.equals('foo')); 2433 var casted20 = (o["y"]) as core.Map; unittest.expect(casted20, unittest.hasLen gth(3)); unittest.expect(casted20["list"], unittest.equals([1, 2, 3])); unittest .expect(casted20["bool"], unittest.equals(true)); unittest.expect(casted20["stri ng"], unittest.equals('foo'));
2434 } 2434 }
2435 2435
2436 buildUnnamed2386() { 2436 buildUnnamed2566() {
2437 var o = new core.List<core.Map<core.String, core.Object>>(); 2437 var o = new core.List<core.Map<core.String, core.Object>>();
2438 o.add(buildUnnamed2385()); 2438 o.add(buildUnnamed2565());
2439 o.add(buildUnnamed2385()); 2439 o.add(buildUnnamed2565());
2440 return o; 2440 return o;
2441 } 2441 }
2442 2442
2443 checkUnnamed2386(core.List<core.Map<core.String, core.Object>> o) { 2443 checkUnnamed2566(core.List<core.Map<core.String, core.Object>> o) {
2444 unittest.expect(o, unittest.hasLength(2)); 2444 unittest.expect(o, unittest.hasLength(2));
2445 checkUnnamed2385(o[0]); 2445 checkUnnamed2565(o[0]);
2446 checkUnnamed2385(o[1]); 2446 checkUnnamed2565(o[1]);
2447 } 2447 }
2448 2448
2449 core.int buildCounterStatus = 0; 2449 core.int buildCounterStatus = 0;
2450 buildStatus() { 2450 buildStatus() {
2451 var o = new api.Status(); 2451 var o = new api.Status();
2452 buildCounterStatus++; 2452 buildCounterStatus++;
2453 if (buildCounterStatus < 3) { 2453 if (buildCounterStatus < 3) {
2454 o.code = 42; 2454 o.code = 42;
2455 o.details = buildUnnamed2386(); 2455 o.details = buildUnnamed2566();
2456 o.message = "foo"; 2456 o.message = "foo";
2457 } 2457 }
2458 buildCounterStatus--; 2458 buildCounterStatus--;
2459 return o; 2459 return o;
2460 } 2460 }
2461 2461
2462 checkStatus(api.Status o) { 2462 checkStatus(api.Status o) {
2463 buildCounterStatus++; 2463 buildCounterStatus++;
2464 if (buildCounterStatus < 3) { 2464 if (buildCounterStatus < 3) {
2465 unittest.expect(o.code, unittest.equals(42)); 2465 unittest.expect(o.code, unittest.equals(42));
2466 checkUnnamed2386(o.details); 2466 checkUnnamed2566(o.details);
2467 unittest.expect(o.message, unittest.equals('foo')); 2467 unittest.expect(o.message, unittest.equals('foo'));
2468 } 2468 }
2469 buildCounterStatus--; 2469 buildCounterStatus--;
2470 } 2470 }
2471 2471
2472 core.int buildCounterStreamReadsRequest = 0; 2472 core.int buildCounterStreamReadsRequest = 0;
2473 buildStreamReadsRequest() { 2473 buildStreamReadsRequest() {
2474 var o = new api.StreamReadsRequest(); 2474 var o = new api.StreamReadsRequest();
2475 buildCounterStreamReadsRequest++; 2475 buildCounterStreamReadsRequest++;
2476 if (buildCounterStreamReadsRequest < 3) { 2476 if (buildCounterStreamReadsRequest < 3) {
(...skipping 16 matching lines...) Expand all
2493 unittest.expect(o.projectId, unittest.equals('foo')); 2493 unittest.expect(o.projectId, unittest.equals('foo'));
2494 unittest.expect(o.readGroupSetId, unittest.equals('foo')); 2494 unittest.expect(o.readGroupSetId, unittest.equals('foo'));
2495 unittest.expect(o.referenceName, unittest.equals('foo')); 2495 unittest.expect(o.referenceName, unittest.equals('foo'));
2496 unittest.expect(o.shard, unittest.equals(42)); 2496 unittest.expect(o.shard, unittest.equals(42));
2497 unittest.expect(o.start, unittest.equals('foo')); 2497 unittest.expect(o.start, unittest.equals('foo'));
2498 unittest.expect(o.totalShards, unittest.equals(42)); 2498 unittest.expect(o.totalShards, unittest.equals(42));
2499 } 2499 }
2500 buildCounterStreamReadsRequest--; 2500 buildCounterStreamReadsRequest--;
2501 } 2501 }
2502 2502
2503 buildUnnamed2387() { 2503 buildUnnamed2567() {
2504 var o = new core.List<api.Read>(); 2504 var o = new core.List<api.Read>();
2505 o.add(buildRead()); 2505 o.add(buildRead());
2506 o.add(buildRead()); 2506 o.add(buildRead());
2507 return o; 2507 return o;
2508 } 2508 }
2509 2509
2510 checkUnnamed2387(core.List<api.Read> o) { 2510 checkUnnamed2567(core.List<api.Read> o) {
2511 unittest.expect(o, unittest.hasLength(2)); 2511 unittest.expect(o, unittest.hasLength(2));
2512 checkRead(o[0]); 2512 checkRead(o[0]);
2513 checkRead(o[1]); 2513 checkRead(o[1]);
2514 } 2514 }
2515 2515
2516 core.int buildCounterStreamReadsResponse = 0; 2516 core.int buildCounterStreamReadsResponse = 0;
2517 buildStreamReadsResponse() { 2517 buildStreamReadsResponse() {
2518 var o = new api.StreamReadsResponse(); 2518 var o = new api.StreamReadsResponse();
2519 buildCounterStreamReadsResponse++; 2519 buildCounterStreamReadsResponse++;
2520 if (buildCounterStreamReadsResponse < 3) { 2520 if (buildCounterStreamReadsResponse < 3) {
2521 o.alignments = buildUnnamed2387(); 2521 o.alignments = buildUnnamed2567();
2522 } 2522 }
2523 buildCounterStreamReadsResponse--; 2523 buildCounterStreamReadsResponse--;
2524 return o; 2524 return o;
2525 } 2525 }
2526 2526
2527 checkStreamReadsResponse(api.StreamReadsResponse o) { 2527 checkStreamReadsResponse(api.StreamReadsResponse o) {
2528 buildCounterStreamReadsResponse++; 2528 buildCounterStreamReadsResponse++;
2529 if (buildCounterStreamReadsResponse < 3) { 2529 if (buildCounterStreamReadsResponse < 3) {
2530 checkUnnamed2387(o.alignments); 2530 checkUnnamed2567(o.alignments);
2531 } 2531 }
2532 buildCounterStreamReadsResponse--; 2532 buildCounterStreamReadsResponse--;
2533 } 2533 }
2534 2534
2535 buildUnnamed2388() { 2535 buildUnnamed2568() {
2536 var o = new core.List<core.String>(); 2536 var o = new core.List<core.String>();
2537 o.add("foo"); 2537 o.add("foo");
2538 o.add("foo"); 2538 o.add("foo");
2539 return o; 2539 return o;
2540 } 2540 }
2541 2541
2542 checkUnnamed2388(core.List<core.String> o) { 2542 checkUnnamed2568(core.List<core.String> o) {
2543 unittest.expect(o, unittest.hasLength(2)); 2543 unittest.expect(o, unittest.hasLength(2));
2544 unittest.expect(o[0], unittest.equals('foo')); 2544 unittest.expect(o[0], unittest.equals('foo'));
2545 unittest.expect(o[1], unittest.equals('foo')); 2545 unittest.expect(o[1], unittest.equals('foo'));
2546 } 2546 }
2547 2547
2548 core.int buildCounterStreamVariantsRequest = 0; 2548 core.int buildCounterStreamVariantsRequest = 0;
2549 buildStreamVariantsRequest() { 2549 buildStreamVariantsRequest() {
2550 var o = new api.StreamVariantsRequest(); 2550 var o = new api.StreamVariantsRequest();
2551 buildCounterStreamVariantsRequest++; 2551 buildCounterStreamVariantsRequest++;
2552 if (buildCounterStreamVariantsRequest < 3) { 2552 if (buildCounterStreamVariantsRequest < 3) {
2553 o.callSetIds = buildUnnamed2388(); 2553 o.callSetIds = buildUnnamed2568();
2554 o.end = "foo"; 2554 o.end = "foo";
2555 o.projectId = "foo"; 2555 o.projectId = "foo";
2556 o.referenceName = "foo"; 2556 o.referenceName = "foo";
2557 o.start = "foo"; 2557 o.start = "foo";
2558 o.variantSetId = "foo"; 2558 o.variantSetId = "foo";
2559 } 2559 }
2560 buildCounterStreamVariantsRequest--; 2560 buildCounterStreamVariantsRequest--;
2561 return o; 2561 return o;
2562 } 2562 }
2563 2563
2564 checkStreamVariantsRequest(api.StreamVariantsRequest o) { 2564 checkStreamVariantsRequest(api.StreamVariantsRequest o) {
2565 buildCounterStreamVariantsRequest++; 2565 buildCounterStreamVariantsRequest++;
2566 if (buildCounterStreamVariantsRequest < 3) { 2566 if (buildCounterStreamVariantsRequest < 3) {
2567 checkUnnamed2388(o.callSetIds); 2567 checkUnnamed2568(o.callSetIds);
2568 unittest.expect(o.end, unittest.equals('foo')); 2568 unittest.expect(o.end, unittest.equals('foo'));
2569 unittest.expect(o.projectId, unittest.equals('foo')); 2569 unittest.expect(o.projectId, unittest.equals('foo'));
2570 unittest.expect(o.referenceName, unittest.equals('foo')); 2570 unittest.expect(o.referenceName, unittest.equals('foo'));
2571 unittest.expect(o.start, unittest.equals('foo')); 2571 unittest.expect(o.start, unittest.equals('foo'));
2572 unittest.expect(o.variantSetId, unittest.equals('foo')); 2572 unittest.expect(o.variantSetId, unittest.equals('foo'));
2573 } 2573 }
2574 buildCounterStreamVariantsRequest--; 2574 buildCounterStreamVariantsRequest--;
2575 } 2575 }
2576 2576
2577 buildUnnamed2389() { 2577 buildUnnamed2569() {
2578 var o = new core.List<api.Variant>(); 2578 var o = new core.List<api.Variant>();
2579 o.add(buildVariant()); 2579 o.add(buildVariant());
2580 o.add(buildVariant()); 2580 o.add(buildVariant());
2581 return o; 2581 return o;
2582 } 2582 }
2583 2583
2584 checkUnnamed2389(core.List<api.Variant> o) { 2584 checkUnnamed2569(core.List<api.Variant> o) {
2585 unittest.expect(o, unittest.hasLength(2)); 2585 unittest.expect(o, unittest.hasLength(2));
2586 checkVariant(o[0]); 2586 checkVariant(o[0]);
2587 checkVariant(o[1]); 2587 checkVariant(o[1]);
2588 } 2588 }
2589 2589
2590 core.int buildCounterStreamVariantsResponse = 0; 2590 core.int buildCounterStreamVariantsResponse = 0;
2591 buildStreamVariantsResponse() { 2591 buildStreamVariantsResponse() {
2592 var o = new api.StreamVariantsResponse(); 2592 var o = new api.StreamVariantsResponse();
2593 buildCounterStreamVariantsResponse++; 2593 buildCounterStreamVariantsResponse++;
2594 if (buildCounterStreamVariantsResponse < 3) { 2594 if (buildCounterStreamVariantsResponse < 3) {
2595 o.variants = buildUnnamed2389(); 2595 o.variants = buildUnnamed2569();
2596 } 2596 }
2597 buildCounterStreamVariantsResponse--; 2597 buildCounterStreamVariantsResponse--;
2598 return o; 2598 return o;
2599 } 2599 }
2600 2600
2601 checkStreamVariantsResponse(api.StreamVariantsResponse o) { 2601 checkStreamVariantsResponse(api.StreamVariantsResponse o) {
2602 buildCounterStreamVariantsResponse++; 2602 buildCounterStreamVariantsResponse++;
2603 if (buildCounterStreamVariantsResponse < 3) { 2603 if (buildCounterStreamVariantsResponse < 3) {
2604 checkUnnamed2389(o.variants); 2604 checkUnnamed2569(o.variants);
2605 } 2605 }
2606 buildCounterStreamVariantsResponse--; 2606 buildCounterStreamVariantsResponse--;
2607 } 2607 }
2608 2608
2609 buildUnnamed2390() { 2609 buildUnnamed2570() {
2610 var o = new core.List<core.String>(); 2610 var o = new core.List<core.String>();
2611 o.add("foo"); 2611 o.add("foo");
2612 o.add("foo"); 2612 o.add("foo");
2613 return o; 2613 return o;
2614 } 2614 }
2615 2615
2616 checkUnnamed2390(core.List<core.String> o) { 2616 checkUnnamed2570(core.List<core.String> o) {
2617 unittest.expect(o, unittest.hasLength(2)); 2617 unittest.expect(o, unittest.hasLength(2));
2618 unittest.expect(o[0], unittest.equals('foo')); 2618 unittest.expect(o[0], unittest.equals('foo'));
2619 unittest.expect(o[1], unittest.equals('foo')); 2619 unittest.expect(o[1], unittest.equals('foo'));
2620 } 2620 }
2621 2621
2622 core.int buildCounterTestIamPermissionsRequest = 0; 2622 core.int buildCounterTestIamPermissionsRequest = 0;
2623 buildTestIamPermissionsRequest() { 2623 buildTestIamPermissionsRequest() {
2624 var o = new api.TestIamPermissionsRequest(); 2624 var o = new api.TestIamPermissionsRequest();
2625 buildCounterTestIamPermissionsRequest++; 2625 buildCounterTestIamPermissionsRequest++;
2626 if (buildCounterTestIamPermissionsRequest < 3) { 2626 if (buildCounterTestIamPermissionsRequest < 3) {
2627 o.permissions = buildUnnamed2390(); 2627 o.permissions = buildUnnamed2570();
2628 } 2628 }
2629 buildCounterTestIamPermissionsRequest--; 2629 buildCounterTestIamPermissionsRequest--;
2630 return o; 2630 return o;
2631 } 2631 }
2632 2632
2633 checkTestIamPermissionsRequest(api.TestIamPermissionsRequest o) { 2633 checkTestIamPermissionsRequest(api.TestIamPermissionsRequest o) {
2634 buildCounterTestIamPermissionsRequest++; 2634 buildCounterTestIamPermissionsRequest++;
2635 if (buildCounterTestIamPermissionsRequest < 3) { 2635 if (buildCounterTestIamPermissionsRequest < 3) {
2636 checkUnnamed2390(o.permissions); 2636 checkUnnamed2570(o.permissions);
2637 } 2637 }
2638 buildCounterTestIamPermissionsRequest--; 2638 buildCounterTestIamPermissionsRequest--;
2639 } 2639 }
2640 2640
2641 buildUnnamed2391() { 2641 buildUnnamed2571() {
2642 var o = new core.List<core.String>(); 2642 var o = new core.List<core.String>();
2643 o.add("foo"); 2643 o.add("foo");
2644 o.add("foo"); 2644 o.add("foo");
2645 return o; 2645 return o;
2646 } 2646 }
2647 2647
2648 checkUnnamed2391(core.List<core.String> o) { 2648 checkUnnamed2571(core.List<core.String> o) {
2649 unittest.expect(o, unittest.hasLength(2)); 2649 unittest.expect(o, unittest.hasLength(2));
2650 unittest.expect(o[0], unittest.equals('foo')); 2650 unittest.expect(o[0], unittest.equals('foo'));
2651 unittest.expect(o[1], unittest.equals('foo')); 2651 unittest.expect(o[1], unittest.equals('foo'));
2652 } 2652 }
2653 2653
2654 core.int buildCounterTestIamPermissionsResponse = 0; 2654 core.int buildCounterTestIamPermissionsResponse = 0;
2655 buildTestIamPermissionsResponse() { 2655 buildTestIamPermissionsResponse() {
2656 var o = new api.TestIamPermissionsResponse(); 2656 var o = new api.TestIamPermissionsResponse();
2657 buildCounterTestIamPermissionsResponse++; 2657 buildCounterTestIamPermissionsResponse++;
2658 if (buildCounterTestIamPermissionsResponse < 3) { 2658 if (buildCounterTestIamPermissionsResponse < 3) {
2659 o.permissions = buildUnnamed2391(); 2659 o.permissions = buildUnnamed2571();
2660 } 2660 }
2661 buildCounterTestIamPermissionsResponse--; 2661 buildCounterTestIamPermissionsResponse--;
2662 return o; 2662 return o;
2663 } 2663 }
2664 2664
2665 checkTestIamPermissionsResponse(api.TestIamPermissionsResponse o) { 2665 checkTestIamPermissionsResponse(api.TestIamPermissionsResponse o) {
2666 buildCounterTestIamPermissionsResponse++; 2666 buildCounterTestIamPermissionsResponse++;
2667 if (buildCounterTestIamPermissionsResponse < 3) { 2667 if (buildCounterTestIamPermissionsResponse < 3) {
2668 checkUnnamed2391(o.permissions); 2668 checkUnnamed2571(o.permissions);
2669 } 2669 }
2670 buildCounterTestIamPermissionsResponse--; 2670 buildCounterTestIamPermissionsResponse--;
2671 } 2671 }
2672 2672
2673 buildUnnamed2392() { 2673 buildUnnamed2572() {
2674 var o = new core.List<api.Exon>(); 2674 var o = new core.List<api.Exon>();
2675 o.add(buildExon()); 2675 o.add(buildExon());
2676 o.add(buildExon()); 2676 o.add(buildExon());
2677 return o; 2677 return o;
2678 } 2678 }
2679 2679
2680 checkUnnamed2392(core.List<api.Exon> o) { 2680 checkUnnamed2572(core.List<api.Exon> o) {
2681 unittest.expect(o, unittest.hasLength(2)); 2681 unittest.expect(o, unittest.hasLength(2));
2682 checkExon(o[0]); 2682 checkExon(o[0]);
2683 checkExon(o[1]); 2683 checkExon(o[1]);
2684 } 2684 }
2685 2685
2686 core.int buildCounterTranscript = 0; 2686 core.int buildCounterTranscript = 0;
2687 buildTranscript() { 2687 buildTranscript() {
2688 var o = new api.Transcript(); 2688 var o = new api.Transcript();
2689 buildCounterTranscript++; 2689 buildCounterTranscript++;
2690 if (buildCounterTranscript < 3) { 2690 if (buildCounterTranscript < 3) {
2691 o.codingSequence = buildCodingSequence(); 2691 o.codingSequence = buildCodingSequence();
2692 o.exons = buildUnnamed2392(); 2692 o.exons = buildUnnamed2572();
2693 o.geneId = "foo"; 2693 o.geneId = "foo";
2694 } 2694 }
2695 buildCounterTranscript--; 2695 buildCounterTranscript--;
2696 return o; 2696 return o;
2697 } 2697 }
2698 2698
2699 checkTranscript(api.Transcript o) { 2699 checkTranscript(api.Transcript o) {
2700 buildCounterTranscript++; 2700 buildCounterTranscript++;
2701 if (buildCounterTranscript < 3) { 2701 if (buildCounterTranscript < 3) {
2702 checkCodingSequence(o.codingSequence); 2702 checkCodingSequence(o.codingSequence);
2703 checkUnnamed2392(o.exons); 2703 checkUnnamed2572(o.exons);
2704 unittest.expect(o.geneId, unittest.equals('foo')); 2704 unittest.expect(o.geneId, unittest.equals('foo'));
2705 } 2705 }
2706 buildCounterTranscript--; 2706 buildCounterTranscript--;
2707 } 2707 }
2708 2708
2709 core.int buildCounterUndeleteDatasetRequest = 0; 2709 core.int buildCounterUndeleteDatasetRequest = 0;
2710 buildUndeleteDatasetRequest() { 2710 buildUndeleteDatasetRequest() {
2711 var o = new api.UndeleteDatasetRequest(); 2711 var o = new api.UndeleteDatasetRequest();
2712 buildCounterUndeleteDatasetRequest++; 2712 buildCounterUndeleteDatasetRequest++;
2713 if (buildCounterUndeleteDatasetRequest < 3) { 2713 if (buildCounterUndeleteDatasetRequest < 3) {
2714 } 2714 }
2715 buildCounterUndeleteDatasetRequest--; 2715 buildCounterUndeleteDatasetRequest--;
2716 return o; 2716 return o;
2717 } 2717 }
2718 2718
2719 checkUndeleteDatasetRequest(api.UndeleteDatasetRequest o) { 2719 checkUndeleteDatasetRequest(api.UndeleteDatasetRequest o) {
2720 buildCounterUndeleteDatasetRequest++; 2720 buildCounterUndeleteDatasetRequest++;
2721 if (buildCounterUndeleteDatasetRequest < 3) { 2721 if (buildCounterUndeleteDatasetRequest < 3) {
2722 } 2722 }
2723 buildCounterUndeleteDatasetRequest--; 2723 buildCounterUndeleteDatasetRequest--;
2724 } 2724 }
2725 2725
2726 buildUnnamed2393() { 2726 buildUnnamed2573() {
2727 var o = new core.List<core.String>(); 2727 var o = new core.List<core.String>();
2728 o.add("foo"); 2728 o.add("foo");
2729 o.add("foo"); 2729 o.add("foo");
2730 return o; 2730 return o;
2731 } 2731 }
2732 2732
2733 checkUnnamed2393(core.List<core.String> o) { 2733 checkUnnamed2573(core.List<core.String> o) {
2734 unittest.expect(o, unittest.hasLength(2)); 2734 unittest.expect(o, unittest.hasLength(2));
2735 unittest.expect(o[0], unittest.equals('foo')); 2735 unittest.expect(o[0], unittest.equals('foo'));
2736 unittest.expect(o[1], unittest.equals('foo')); 2736 unittest.expect(o[1], unittest.equals('foo'));
2737 } 2737 }
2738 2738
2739 buildUnnamed2394() { 2739 buildUnnamed2574() {
2740 var o = new core.List<api.VariantCall>(); 2740 var o = new core.List<api.VariantCall>();
2741 o.add(buildVariantCall()); 2741 o.add(buildVariantCall());
2742 o.add(buildVariantCall()); 2742 o.add(buildVariantCall());
2743 return o; 2743 return o;
2744 } 2744 }
2745 2745
2746 checkUnnamed2394(core.List<api.VariantCall> o) { 2746 checkUnnamed2574(core.List<api.VariantCall> o) {
2747 unittest.expect(o, unittest.hasLength(2)); 2747 unittest.expect(o, unittest.hasLength(2));
2748 checkVariantCall(o[0]); 2748 checkVariantCall(o[0]);
2749 checkVariantCall(o[1]); 2749 checkVariantCall(o[1]);
2750 } 2750 }
2751 2751
2752 buildUnnamed2395() { 2752 buildUnnamed2575() {
2753 var o = new core.List<core.String>(); 2753 var o = new core.List<core.String>();
2754 o.add("foo"); 2754 o.add("foo");
2755 o.add("foo"); 2755 o.add("foo");
2756 return o; 2756 return o;
2757 } 2757 }
2758 2758
2759 checkUnnamed2395(core.List<core.String> o) { 2759 checkUnnamed2575(core.List<core.String> o) {
2760 unittest.expect(o, unittest.hasLength(2)); 2760 unittest.expect(o, unittest.hasLength(2));
2761 unittest.expect(o[0], unittest.equals('foo')); 2761 unittest.expect(o[0], unittest.equals('foo'));
2762 unittest.expect(o[1], unittest.equals('foo')); 2762 unittest.expect(o[1], unittest.equals('foo'));
2763 } 2763 }
2764 2764
2765 buildUnnamed2396() { 2765 buildUnnamed2576() {
2766 var o = new core.List<core.Object>(); 2766 var o = new core.List<core.Object>();
2767 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 2767 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
2768 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 2768 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
2769 return o; 2769 return o;
2770 } 2770 }
2771 2771
2772 checkUnnamed2396(core.List<core.Object> o) { 2772 checkUnnamed2576(core.List<core.Object> o) {
2773 unittest.expect(o, unittest.hasLength(2)); 2773 unittest.expect(o, unittest.hasLength(2));
2774 var casted21 = (o[0]) as core.Map; unittest.expect(casted21, unittest.hasLengt h(3)); unittest.expect(casted21["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted21["bool"], unittest.equals(true)); unittest.expect(casted21["string "], unittest.equals('foo')); 2774 var casted21 = (o[0]) as core.Map; unittest.expect(casted21, unittest.hasLengt h(3)); unittest.expect(casted21["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted21["bool"], unittest.equals(true)); unittest.expect(casted21["string "], unittest.equals('foo'));
2775 var casted22 = (o[1]) as core.Map; unittest.expect(casted22, unittest.hasLengt h(3)); unittest.expect(casted22["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted22["bool"], unittest.equals(true)); unittest.expect(casted22["string "], unittest.equals('foo')); 2775 var casted22 = (o[1]) as core.Map; unittest.expect(casted22, unittest.hasLengt h(3)); unittest.expect(casted22["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted22["bool"], unittest.equals(true)); unittest.expect(casted22["string "], unittest.equals('foo'));
2776 } 2776 }
2777 2777
2778 buildUnnamed2397() { 2778 buildUnnamed2577() {
2779 var o = new core.Map<core.String, core.List<core.Object>>(); 2779 var o = new core.Map<core.String, core.List<core.Object>>();
2780 o["x"] = buildUnnamed2396(); 2780 o["x"] = buildUnnamed2576();
2781 o["y"] = buildUnnamed2396(); 2781 o["y"] = buildUnnamed2576();
2782 return o; 2782 return o;
2783 } 2783 }
2784 2784
2785 checkUnnamed2397(core.Map<core.String, core.List<core.Object>> o) { 2785 checkUnnamed2577(core.Map<core.String, core.List<core.Object>> o) {
2786 unittest.expect(o, unittest.hasLength(2)); 2786 unittest.expect(o, unittest.hasLength(2));
2787 checkUnnamed2396(o["x"]); 2787 checkUnnamed2576(o["x"]);
2788 checkUnnamed2396(o["y"]); 2788 checkUnnamed2576(o["y"]);
2789 } 2789 }
2790 2790
2791 buildUnnamed2398() { 2791 buildUnnamed2578() {
2792 var o = new core.List<core.String>(); 2792 var o = new core.List<core.String>();
2793 o.add("foo"); 2793 o.add("foo");
2794 o.add("foo"); 2794 o.add("foo");
2795 return o; 2795 return o;
2796 } 2796 }
2797 2797
2798 checkUnnamed2398(core.List<core.String> o) { 2798 checkUnnamed2578(core.List<core.String> o) {
2799 unittest.expect(o, unittest.hasLength(2)); 2799 unittest.expect(o, unittest.hasLength(2));
2800 unittest.expect(o[0], unittest.equals('foo')); 2800 unittest.expect(o[0], unittest.equals('foo'));
2801 unittest.expect(o[1], unittest.equals('foo')); 2801 unittest.expect(o[1], unittest.equals('foo'));
2802 } 2802 }
2803 2803
2804 core.int buildCounterVariant = 0; 2804 core.int buildCounterVariant = 0;
2805 buildVariant() { 2805 buildVariant() {
2806 var o = new api.Variant(); 2806 var o = new api.Variant();
2807 buildCounterVariant++; 2807 buildCounterVariant++;
2808 if (buildCounterVariant < 3) { 2808 if (buildCounterVariant < 3) {
2809 o.alternateBases = buildUnnamed2393(); 2809 o.alternateBases = buildUnnamed2573();
2810 o.calls = buildUnnamed2394(); 2810 o.calls = buildUnnamed2574();
2811 o.created = "foo"; 2811 o.created = "foo";
2812 o.end = "foo"; 2812 o.end = "foo";
2813 o.filter = buildUnnamed2395(); 2813 o.filter = buildUnnamed2575();
2814 o.id = "foo"; 2814 o.id = "foo";
2815 o.info = buildUnnamed2397(); 2815 o.info = buildUnnamed2577();
2816 o.names = buildUnnamed2398(); 2816 o.names = buildUnnamed2578();
2817 o.quality = 42.0; 2817 o.quality = 42.0;
2818 o.referenceBases = "foo"; 2818 o.referenceBases = "foo";
2819 o.referenceName = "foo"; 2819 o.referenceName = "foo";
2820 o.start = "foo"; 2820 o.start = "foo";
2821 o.variantSetId = "foo"; 2821 o.variantSetId = "foo";
2822 } 2822 }
2823 buildCounterVariant--; 2823 buildCounterVariant--;
2824 return o; 2824 return o;
2825 } 2825 }
2826 2826
2827 checkVariant(api.Variant o) { 2827 checkVariant(api.Variant o) {
2828 buildCounterVariant++; 2828 buildCounterVariant++;
2829 if (buildCounterVariant < 3) { 2829 if (buildCounterVariant < 3) {
2830 checkUnnamed2393(o.alternateBases); 2830 checkUnnamed2573(o.alternateBases);
2831 checkUnnamed2394(o.calls); 2831 checkUnnamed2574(o.calls);
2832 unittest.expect(o.created, unittest.equals('foo')); 2832 unittest.expect(o.created, unittest.equals('foo'));
2833 unittest.expect(o.end, unittest.equals('foo')); 2833 unittest.expect(o.end, unittest.equals('foo'));
2834 checkUnnamed2395(o.filter); 2834 checkUnnamed2575(o.filter);
2835 unittest.expect(o.id, unittest.equals('foo')); 2835 unittest.expect(o.id, unittest.equals('foo'));
2836 checkUnnamed2397(o.info); 2836 checkUnnamed2577(o.info);
2837 checkUnnamed2398(o.names); 2837 checkUnnamed2578(o.names);
2838 unittest.expect(o.quality, unittest.equals(42.0)); 2838 unittest.expect(o.quality, unittest.equals(42.0));
2839 unittest.expect(o.referenceBases, unittest.equals('foo')); 2839 unittest.expect(o.referenceBases, unittest.equals('foo'));
2840 unittest.expect(o.referenceName, unittest.equals('foo')); 2840 unittest.expect(o.referenceName, unittest.equals('foo'));
2841 unittest.expect(o.start, unittest.equals('foo')); 2841 unittest.expect(o.start, unittest.equals('foo'));
2842 unittest.expect(o.variantSetId, unittest.equals('foo')); 2842 unittest.expect(o.variantSetId, unittest.equals('foo'));
2843 } 2843 }
2844 buildCounterVariant--; 2844 buildCounterVariant--;
2845 } 2845 }
2846 2846
2847 buildUnnamed2399() { 2847 buildUnnamed2579() {
2848 var o = new core.List<api.ClinicalCondition>(); 2848 var o = new core.List<api.ClinicalCondition>();
2849 o.add(buildClinicalCondition()); 2849 o.add(buildClinicalCondition());
2850 o.add(buildClinicalCondition()); 2850 o.add(buildClinicalCondition());
2851 return o; 2851 return o;
2852 } 2852 }
2853 2853
2854 checkUnnamed2399(core.List<api.ClinicalCondition> o) { 2854 checkUnnamed2579(core.List<api.ClinicalCondition> o) {
2855 unittest.expect(o, unittest.hasLength(2)); 2855 unittest.expect(o, unittest.hasLength(2));
2856 checkClinicalCondition(o[0]); 2856 checkClinicalCondition(o[0]);
2857 checkClinicalCondition(o[1]); 2857 checkClinicalCondition(o[1]);
2858 } 2858 }
2859 2859
2860 buildUnnamed2400() { 2860 buildUnnamed2580() {
2861 var o = new core.List<core.String>(); 2861 var o = new core.List<core.String>();
2862 o.add("foo"); 2862 o.add("foo");
2863 o.add("foo"); 2863 o.add("foo");
2864 return o; 2864 return o;
2865 } 2865 }
2866 2866
2867 checkUnnamed2400(core.List<core.String> o) { 2867 checkUnnamed2580(core.List<core.String> o) {
2868 unittest.expect(o, unittest.hasLength(2)); 2868 unittest.expect(o, unittest.hasLength(2));
2869 unittest.expect(o[0], unittest.equals('foo')); 2869 unittest.expect(o[0], unittest.equals('foo'));
2870 unittest.expect(o[1], unittest.equals('foo')); 2870 unittest.expect(o[1], unittest.equals('foo'));
2871 } 2871 }
2872 2872
2873 core.int buildCounterVariantAnnotation = 0; 2873 core.int buildCounterVariantAnnotation = 0;
2874 buildVariantAnnotation() { 2874 buildVariantAnnotation() {
2875 var o = new api.VariantAnnotation(); 2875 var o = new api.VariantAnnotation();
2876 buildCounterVariantAnnotation++; 2876 buildCounterVariantAnnotation++;
2877 if (buildCounterVariantAnnotation < 3) { 2877 if (buildCounterVariantAnnotation < 3) {
2878 o.alternateBases = "foo"; 2878 o.alternateBases = "foo";
2879 o.clinicalSignificance = "foo"; 2879 o.clinicalSignificance = "foo";
2880 o.conditions = buildUnnamed2399(); 2880 o.conditions = buildUnnamed2579();
2881 o.effect = "foo"; 2881 o.effect = "foo";
2882 o.geneId = "foo"; 2882 o.geneId = "foo";
2883 o.transcriptIds = buildUnnamed2400(); 2883 o.transcriptIds = buildUnnamed2580();
2884 o.type = "foo"; 2884 o.type = "foo";
2885 } 2885 }
2886 buildCounterVariantAnnotation--; 2886 buildCounterVariantAnnotation--;
2887 return o; 2887 return o;
2888 } 2888 }
2889 2889
2890 checkVariantAnnotation(api.VariantAnnotation o) { 2890 checkVariantAnnotation(api.VariantAnnotation o) {
2891 buildCounterVariantAnnotation++; 2891 buildCounterVariantAnnotation++;
2892 if (buildCounterVariantAnnotation < 3) { 2892 if (buildCounterVariantAnnotation < 3) {
2893 unittest.expect(o.alternateBases, unittest.equals('foo')); 2893 unittest.expect(o.alternateBases, unittest.equals('foo'));
2894 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); 2894 unittest.expect(o.clinicalSignificance, unittest.equals('foo'));
2895 checkUnnamed2399(o.conditions); 2895 checkUnnamed2579(o.conditions);
2896 unittest.expect(o.effect, unittest.equals('foo')); 2896 unittest.expect(o.effect, unittest.equals('foo'));
2897 unittest.expect(o.geneId, unittest.equals('foo')); 2897 unittest.expect(o.geneId, unittest.equals('foo'));
2898 checkUnnamed2400(o.transcriptIds); 2898 checkUnnamed2580(o.transcriptIds);
2899 unittest.expect(o.type, unittest.equals('foo')); 2899 unittest.expect(o.type, unittest.equals('foo'));
2900 } 2900 }
2901 buildCounterVariantAnnotation--; 2901 buildCounterVariantAnnotation--;
2902 } 2902 }
2903 2903
2904 buildUnnamed2401() { 2904 buildUnnamed2581() {
2905 var o = new core.List<core.int>(); 2905 var o = new core.List<core.int>();
2906 o.add(42); 2906 o.add(42);
2907 o.add(42); 2907 o.add(42);
2908 return o; 2908 return o;
2909 } 2909 }
2910 2910
2911 checkUnnamed2401(core.List<core.int> o) { 2911 checkUnnamed2581(core.List<core.int> o) {
2912 unittest.expect(o, unittest.hasLength(2)); 2912 unittest.expect(o, unittest.hasLength(2));
2913 unittest.expect(o[0], unittest.equals(42)); 2913 unittest.expect(o[0], unittest.equals(42));
2914 unittest.expect(o[1], unittest.equals(42)); 2914 unittest.expect(o[1], unittest.equals(42));
2915 } 2915 }
2916 2916
2917 buildUnnamed2402() { 2917 buildUnnamed2582() {
2918 var o = new core.List<core.double>(); 2918 var o = new core.List<core.double>();
2919 o.add(42.0); 2919 o.add(42.0);
2920 o.add(42.0); 2920 o.add(42.0);
2921 return o; 2921 return o;
2922 } 2922 }
2923 2923
2924 checkUnnamed2402(core.List<core.double> o) { 2924 checkUnnamed2582(core.List<core.double> o) {
2925 unittest.expect(o, unittest.hasLength(2)); 2925 unittest.expect(o, unittest.hasLength(2));
2926 unittest.expect(o[0], unittest.equals(42.0)); 2926 unittest.expect(o[0], unittest.equals(42.0));
2927 unittest.expect(o[1], unittest.equals(42.0)); 2927 unittest.expect(o[1], unittest.equals(42.0));
2928 } 2928 }
2929 2929
2930 buildUnnamed2403() { 2930 buildUnnamed2583() {
2931 var o = new core.List<core.Object>(); 2931 var o = new core.List<core.Object>();
2932 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 2932 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
2933 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 2933 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
2934 return o; 2934 return o;
2935 } 2935 }
2936 2936
2937 checkUnnamed2403(core.List<core.Object> o) { 2937 checkUnnamed2583(core.List<core.Object> o) {
2938 unittest.expect(o, unittest.hasLength(2)); 2938 unittest.expect(o, unittest.hasLength(2));
2939 var casted23 = (o[0]) as core.Map; unittest.expect(casted23, unittest.hasLengt h(3)); unittest.expect(casted23["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted23["bool"], unittest.equals(true)); unittest.expect(casted23["string "], unittest.equals('foo')); 2939 var casted23 = (o[0]) as core.Map; unittest.expect(casted23, unittest.hasLengt h(3)); unittest.expect(casted23["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted23["bool"], unittest.equals(true)); unittest.expect(casted23["string "], unittest.equals('foo'));
2940 var casted24 = (o[1]) as core.Map; unittest.expect(casted24, unittest.hasLengt h(3)); unittest.expect(casted24["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted24["bool"], unittest.equals(true)); unittest.expect(casted24["string "], unittest.equals('foo')); 2940 var casted24 = (o[1]) as core.Map; unittest.expect(casted24, unittest.hasLengt h(3)); unittest.expect(casted24["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted24["bool"], unittest.equals(true)); unittest.expect(casted24["string "], unittest.equals('foo'));
2941 } 2941 }
2942 2942
2943 buildUnnamed2404() { 2943 buildUnnamed2584() {
2944 var o = new core.Map<core.String, core.List<core.Object>>(); 2944 var o = new core.Map<core.String, core.List<core.Object>>();
2945 o["x"] = buildUnnamed2403(); 2945 o["x"] = buildUnnamed2583();
2946 o["y"] = buildUnnamed2403(); 2946 o["y"] = buildUnnamed2583();
2947 return o; 2947 return o;
2948 } 2948 }
2949 2949
2950 checkUnnamed2404(core.Map<core.String, core.List<core.Object>> o) { 2950 checkUnnamed2584(core.Map<core.String, core.List<core.Object>> o) {
2951 unittest.expect(o, unittest.hasLength(2)); 2951 unittest.expect(o, unittest.hasLength(2));
2952 checkUnnamed2403(o["x"]); 2952 checkUnnamed2583(o["x"]);
2953 checkUnnamed2403(o["y"]); 2953 checkUnnamed2583(o["y"]);
2954 } 2954 }
2955 2955
2956 core.int buildCounterVariantCall = 0; 2956 core.int buildCounterVariantCall = 0;
2957 buildVariantCall() { 2957 buildVariantCall() {
2958 var o = new api.VariantCall(); 2958 var o = new api.VariantCall();
2959 buildCounterVariantCall++; 2959 buildCounterVariantCall++;
2960 if (buildCounterVariantCall < 3) { 2960 if (buildCounterVariantCall < 3) {
2961 o.callSetId = "foo"; 2961 o.callSetId = "foo";
2962 o.callSetName = "foo"; 2962 o.callSetName = "foo";
2963 o.genotype = buildUnnamed2401(); 2963 o.genotype = buildUnnamed2581();
2964 o.genotypeLikelihood = buildUnnamed2402(); 2964 o.genotypeLikelihood = buildUnnamed2582();
2965 o.info = buildUnnamed2404(); 2965 o.info = buildUnnamed2584();
2966 o.phaseset = "foo"; 2966 o.phaseset = "foo";
2967 } 2967 }
2968 buildCounterVariantCall--; 2968 buildCounterVariantCall--;
2969 return o; 2969 return o;
2970 } 2970 }
2971 2971
2972 checkVariantCall(api.VariantCall o) { 2972 checkVariantCall(api.VariantCall o) {
2973 buildCounterVariantCall++; 2973 buildCounterVariantCall++;
2974 if (buildCounterVariantCall < 3) { 2974 if (buildCounterVariantCall < 3) {
2975 unittest.expect(o.callSetId, unittest.equals('foo')); 2975 unittest.expect(o.callSetId, unittest.equals('foo'));
2976 unittest.expect(o.callSetName, unittest.equals('foo')); 2976 unittest.expect(o.callSetName, unittest.equals('foo'));
2977 checkUnnamed2401(o.genotype); 2977 checkUnnamed2581(o.genotype);
2978 checkUnnamed2402(o.genotypeLikelihood); 2978 checkUnnamed2582(o.genotypeLikelihood);
2979 checkUnnamed2404(o.info); 2979 checkUnnamed2584(o.info);
2980 unittest.expect(o.phaseset, unittest.equals('foo')); 2980 unittest.expect(o.phaseset, unittest.equals('foo'));
2981 } 2981 }
2982 buildCounterVariantCall--; 2982 buildCounterVariantCall--;
2983 } 2983 }
2984 2984
2985 buildUnnamed2405() { 2985 buildUnnamed2585() {
2986 var o = new core.List<api.VariantSetMetadata>(); 2986 var o = new core.List<api.VariantSetMetadata>();
2987 o.add(buildVariantSetMetadata()); 2987 o.add(buildVariantSetMetadata());
2988 o.add(buildVariantSetMetadata()); 2988 o.add(buildVariantSetMetadata());
2989 return o; 2989 return o;
2990 } 2990 }
2991 2991
2992 checkUnnamed2405(core.List<api.VariantSetMetadata> o) { 2992 checkUnnamed2585(core.List<api.VariantSetMetadata> o) {
2993 unittest.expect(o, unittest.hasLength(2)); 2993 unittest.expect(o, unittest.hasLength(2));
2994 checkVariantSetMetadata(o[0]); 2994 checkVariantSetMetadata(o[0]);
2995 checkVariantSetMetadata(o[1]); 2995 checkVariantSetMetadata(o[1]);
2996 } 2996 }
2997 2997
2998 buildUnnamed2406() { 2998 buildUnnamed2586() {
2999 var o = new core.List<api.ReferenceBound>(); 2999 var o = new core.List<api.ReferenceBound>();
3000 o.add(buildReferenceBound()); 3000 o.add(buildReferenceBound());
3001 o.add(buildReferenceBound()); 3001 o.add(buildReferenceBound());
3002 return o; 3002 return o;
3003 } 3003 }
3004 3004
3005 checkUnnamed2406(core.List<api.ReferenceBound> o) { 3005 checkUnnamed2586(core.List<api.ReferenceBound> o) {
3006 unittest.expect(o, unittest.hasLength(2)); 3006 unittest.expect(o, unittest.hasLength(2));
3007 checkReferenceBound(o[0]); 3007 checkReferenceBound(o[0]);
3008 checkReferenceBound(o[1]); 3008 checkReferenceBound(o[1]);
3009 } 3009 }
3010 3010
3011 core.int buildCounterVariantSet = 0; 3011 core.int buildCounterVariantSet = 0;
3012 buildVariantSet() { 3012 buildVariantSet() {
3013 var o = new api.VariantSet(); 3013 var o = new api.VariantSet();
3014 buildCounterVariantSet++; 3014 buildCounterVariantSet++;
3015 if (buildCounterVariantSet < 3) { 3015 if (buildCounterVariantSet < 3) {
3016 o.datasetId = "foo"; 3016 o.datasetId = "foo";
3017 o.description = "foo"; 3017 o.description = "foo";
3018 o.id = "foo"; 3018 o.id = "foo";
3019 o.metadata = buildUnnamed2405(); 3019 o.metadata = buildUnnamed2585();
3020 o.name = "foo"; 3020 o.name = "foo";
3021 o.referenceBounds = buildUnnamed2406(); 3021 o.referenceBounds = buildUnnamed2586();
3022 o.referenceSetId = "foo"; 3022 o.referenceSetId = "foo";
3023 } 3023 }
3024 buildCounterVariantSet--; 3024 buildCounterVariantSet--;
3025 return o; 3025 return o;
3026 } 3026 }
3027 3027
3028 checkVariantSet(api.VariantSet o) { 3028 checkVariantSet(api.VariantSet o) {
3029 buildCounterVariantSet++; 3029 buildCounterVariantSet++;
3030 if (buildCounterVariantSet < 3) { 3030 if (buildCounterVariantSet < 3) {
3031 unittest.expect(o.datasetId, unittest.equals('foo')); 3031 unittest.expect(o.datasetId, unittest.equals('foo'));
3032 unittest.expect(o.description, unittest.equals('foo')); 3032 unittest.expect(o.description, unittest.equals('foo'));
3033 unittest.expect(o.id, unittest.equals('foo')); 3033 unittest.expect(o.id, unittest.equals('foo'));
3034 checkUnnamed2405(o.metadata); 3034 checkUnnamed2585(o.metadata);
3035 unittest.expect(o.name, unittest.equals('foo')); 3035 unittest.expect(o.name, unittest.equals('foo'));
3036 checkUnnamed2406(o.referenceBounds); 3036 checkUnnamed2586(o.referenceBounds);
3037 unittest.expect(o.referenceSetId, unittest.equals('foo')); 3037 unittest.expect(o.referenceSetId, unittest.equals('foo'));
3038 } 3038 }
3039 buildCounterVariantSet--; 3039 buildCounterVariantSet--;
3040 } 3040 }
3041 3041
3042 buildUnnamed2407() { 3042 buildUnnamed2587() {
3043 var o = new core.List<core.Object>(); 3043 var o = new core.List<core.Object>();
3044 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 3044 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
3045 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); 3045 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'});
3046 return o; 3046 return o;
3047 } 3047 }
3048 3048
3049 checkUnnamed2407(core.List<core.Object> o) { 3049 checkUnnamed2587(core.List<core.Object> o) {
3050 unittest.expect(o, unittest.hasLength(2)); 3050 unittest.expect(o, unittest.hasLength(2));
3051 var casted25 = (o[0]) as core.Map; unittest.expect(casted25, unittest.hasLengt h(3)); unittest.expect(casted25["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted25["bool"], unittest.equals(true)); unittest.expect(casted25["string "], unittest.equals('foo')); 3051 var casted25 = (o[0]) as core.Map; unittest.expect(casted25, unittest.hasLengt h(3)); unittest.expect(casted25["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted25["bool"], unittest.equals(true)); unittest.expect(casted25["string "], unittest.equals('foo'));
3052 var casted26 = (o[1]) as core.Map; unittest.expect(casted26, unittest.hasLengt h(3)); unittest.expect(casted26["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted26["bool"], unittest.equals(true)); unittest.expect(casted26["string "], unittest.equals('foo')); 3052 var casted26 = (o[1]) as core.Map; unittest.expect(casted26, unittest.hasLengt h(3)); unittest.expect(casted26["list"], unittest.equals([1, 2, 3])); unittest.e xpect(casted26["bool"], unittest.equals(true)); unittest.expect(casted26["string "], unittest.equals('foo'));
3053 } 3053 }
3054 3054
3055 buildUnnamed2408() { 3055 buildUnnamed2588() {
3056 var o = new core.Map<core.String, core.List<core.Object>>(); 3056 var o = new core.Map<core.String, core.List<core.Object>>();
3057 o["x"] = buildUnnamed2407(); 3057 o["x"] = buildUnnamed2587();
3058 o["y"] = buildUnnamed2407(); 3058 o["y"] = buildUnnamed2587();
3059 return o; 3059 return o;
3060 } 3060 }
3061 3061
3062 checkUnnamed2408(core.Map<core.String, core.List<core.Object>> o) { 3062 checkUnnamed2588(core.Map<core.String, core.List<core.Object>> o) {
3063 unittest.expect(o, unittest.hasLength(2)); 3063 unittest.expect(o, unittest.hasLength(2));
3064 checkUnnamed2407(o["x"]); 3064 checkUnnamed2587(o["x"]);
3065 checkUnnamed2407(o["y"]); 3065 checkUnnamed2587(o["y"]);
3066 } 3066 }
3067 3067
3068 core.int buildCounterVariantSetMetadata = 0; 3068 core.int buildCounterVariantSetMetadata = 0;
3069 buildVariantSetMetadata() { 3069 buildVariantSetMetadata() {
3070 var o = new api.VariantSetMetadata(); 3070 var o = new api.VariantSetMetadata();
3071 buildCounterVariantSetMetadata++; 3071 buildCounterVariantSetMetadata++;
3072 if (buildCounterVariantSetMetadata < 3) { 3072 if (buildCounterVariantSetMetadata < 3) {
3073 o.description = "foo"; 3073 o.description = "foo";
3074 o.id = "foo"; 3074 o.id = "foo";
3075 o.info = buildUnnamed2408(); 3075 o.info = buildUnnamed2588();
3076 o.key = "foo"; 3076 o.key = "foo";
3077 o.number = "foo"; 3077 o.number = "foo";
3078 o.type = "foo"; 3078 o.type = "foo";
3079 o.value = "foo"; 3079 o.value = "foo";
3080 } 3080 }
3081 buildCounterVariantSetMetadata--; 3081 buildCounterVariantSetMetadata--;
3082 return o; 3082 return o;
3083 } 3083 }
3084 3084
3085 checkVariantSetMetadata(api.VariantSetMetadata o) { 3085 checkVariantSetMetadata(api.VariantSetMetadata o) {
3086 buildCounterVariantSetMetadata++; 3086 buildCounterVariantSetMetadata++;
3087 if (buildCounterVariantSetMetadata < 3) { 3087 if (buildCounterVariantSetMetadata < 3) {
3088 unittest.expect(o.description, unittest.equals('foo')); 3088 unittest.expect(o.description, unittest.equals('foo'));
3089 unittest.expect(o.id, unittest.equals('foo')); 3089 unittest.expect(o.id, unittest.equals('foo'));
3090 checkUnnamed2408(o.info); 3090 checkUnnamed2588(o.info);
3091 unittest.expect(o.key, unittest.equals('foo')); 3091 unittest.expect(o.key, unittest.equals('foo'));
3092 unittest.expect(o.number, unittest.equals('foo')); 3092 unittest.expect(o.number, unittest.equals('foo'));
3093 unittest.expect(o.type, unittest.equals('foo')); 3093 unittest.expect(o.type, unittest.equals('foo'));
3094 unittest.expect(o.value, unittest.equals('foo')); 3094 unittest.expect(o.value, unittest.equals('foo'));
3095 } 3095 }
3096 buildCounterVariantSetMetadata--; 3096 buildCounterVariantSetMetadata--;
3097 } 3097 }
3098 3098
3099 3099
3100 main() { 3100 main() {
(...skipping 3466 matching lines...) Expand 10 before | Expand all | Expand 10 after
6567 res.search(arg_request).then(unittest.expectAsync(((api.SearchVariantSetsR esponse response) { 6567 res.search(arg_request).then(unittest.expectAsync(((api.SearchVariantSetsR esponse response) {
6568 checkSearchVariantSetsResponse(response); 6568 checkSearchVariantSetsResponse(response);
6569 }))); 6569 })));
6570 }); 6570 });
6571 6571
6572 }); 6572 });
6573 6573
6574 6574
6575 } 6575 }
6576 6576
OLDNEW
« no previous file with comments | « generated/googleapis/test/gamesmanagement/v1management_test.dart ('k') | generated/googleapis/test/gmail/v1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698