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

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

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