| OLD | NEW |
| 1 library googleapis_beta.genomics.v1beta2.test; | 1 library googleapis_beta.genomics.v1beta2.test; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
| 9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
| 10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 } | 44 } |
| 45 } | 45 } |
| 46 } | 46 } |
| 47 | 47 |
| 48 http.StreamedResponse stringResponse( | 48 http.StreamedResponse stringResponse( |
| 49 core.int status, core.Map headers, core.String body) { | 49 core.int status, core.Map headers, core.String body) { |
| 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); | 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); |
| 51 return new http.StreamedResponse(stream, status, headers: headers); | 51 return new http.StreamedResponse(stream, status, headers: headers); |
| 52 } | 52 } |
| 53 | 53 |
| 54 buildUnnamed3458() { | 54 buildUnnamed3272() { |
| 55 var o = new core.List<core.String>(); | 55 var o = new core.List<core.String>(); |
| 56 o.add("foo"); | 56 o.add("foo"); |
| 57 o.add("foo"); | 57 o.add("foo"); |
| 58 return o; | 58 return o; |
| 59 } | 59 } |
| 60 | 60 |
| 61 checkUnnamed3458(core.List<core.String> o) { | 61 checkUnnamed3272(core.List<core.String> o) { |
| 62 unittest.expect(o, unittest.hasLength(2)); | 62 unittest.expect(o, unittest.hasLength(2)); |
| 63 unittest.expect(o[0], unittest.equals('foo')); | 63 unittest.expect(o[0], unittest.equals('foo')); |
| 64 unittest.expect(o[1], unittest.equals('foo')); | 64 unittest.expect(o[1], unittest.equals('foo')); |
| 65 } | 65 } |
| 66 | 66 |
| 67 buildUnnamed3459() { | 67 buildUnnamed3273() { |
| 68 var o = new core.Map<core.String, core.List<core.String>>(); | 68 var o = new core.Map<core.String, core.List<core.String>>(); |
| 69 o["x"] = buildUnnamed3458(); | 69 o["x"] = buildUnnamed3272(); |
| 70 o["y"] = buildUnnamed3458(); | 70 o["y"] = buildUnnamed3272(); |
| 71 return o; | 71 return o; |
| 72 } | 72 } |
| 73 | 73 |
| 74 checkUnnamed3459(core.Map<core.String, core.List<core.String>> o) { | 74 checkUnnamed3273(core.Map<core.String, core.List<core.String>> o) { |
| 75 unittest.expect(o, unittest.hasLength(2)); | 75 unittest.expect(o, unittest.hasLength(2)); |
| 76 checkUnnamed3458(o["x"]); | 76 checkUnnamed3272(o["x"]); |
| 77 checkUnnamed3458(o["y"]); | 77 checkUnnamed3272(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.id = "foo"; | 86 o.id = "foo"; |
| 87 o.info = buildUnnamed3459(); | 87 o.info = buildUnnamed3273(); |
| 88 o.name = "foo"; | 88 o.name = "foo"; |
| 89 o.position = buildRangePosition(); | 89 o.position = buildRangePosition(); |
| 90 o.transcript = buildTranscript(); | 90 o.transcript = buildTranscript(); |
| 91 o.type = "foo"; | 91 o.type = "foo"; |
| 92 o.variant = buildVariantAnnotation(); | 92 o.variant = buildVariantAnnotation(); |
| 93 } | 93 } |
| 94 buildCounterAnnotation--; | 94 buildCounterAnnotation--; |
| 95 return o; | 95 return o; |
| 96 } | 96 } |
| 97 | 97 |
| 98 checkAnnotation(api.Annotation o) { | 98 checkAnnotation(api.Annotation o) { |
| 99 buildCounterAnnotation++; | 99 buildCounterAnnotation++; |
| 100 if (buildCounterAnnotation < 3) { | 100 if (buildCounterAnnotation < 3) { |
| 101 unittest.expect(o.annotationSetId, unittest.equals('foo')); | 101 unittest.expect(o.annotationSetId, unittest.equals('foo')); |
| 102 unittest.expect(o.id, unittest.equals('foo')); | 102 unittest.expect(o.id, unittest.equals('foo')); |
| 103 checkUnnamed3459(o.info); | 103 checkUnnamed3273(o.info); |
| 104 unittest.expect(o.name, unittest.equals('foo')); | 104 unittest.expect(o.name, unittest.equals('foo')); |
| 105 checkRangePosition(o.position); | 105 checkRangePosition(o.position); |
| 106 checkTranscript(o.transcript); | 106 checkTranscript(o.transcript); |
| 107 unittest.expect(o.type, unittest.equals('foo')); | 107 unittest.expect(o.type, unittest.equals('foo')); |
| 108 checkVariantAnnotation(o.variant); | 108 checkVariantAnnotation(o.variant); |
| 109 } | 109 } |
| 110 buildCounterAnnotation--; | 110 buildCounterAnnotation--; |
| 111 } | 111 } |
| 112 | 112 |
| 113 buildUnnamed3460() { | 113 buildUnnamed3274() { |
| 114 var o = new core.List<core.String>(); | 114 var o = new core.List<core.String>(); |
| 115 o.add("foo"); | 115 o.add("foo"); |
| 116 o.add("foo"); | 116 o.add("foo"); |
| 117 return o; | 117 return o; |
| 118 } | 118 } |
| 119 | 119 |
| 120 checkUnnamed3460(core.List<core.String> o) { | 120 checkUnnamed3274(core.List<core.String> o) { |
| 121 unittest.expect(o, unittest.hasLength(2)); | 121 unittest.expect(o, unittest.hasLength(2)); |
| 122 unittest.expect(o[0], unittest.equals('foo')); | 122 unittest.expect(o[0], unittest.equals('foo')); |
| 123 unittest.expect(o[1], unittest.equals('foo')); | 123 unittest.expect(o[1], unittest.equals('foo')); |
| 124 } | 124 } |
| 125 | 125 |
| 126 buildUnnamed3461() { | 126 buildUnnamed3275() { |
| 127 var o = new core.Map<core.String, core.List<core.String>>(); | 127 var o = new core.Map<core.String, core.List<core.String>>(); |
| 128 o["x"] = buildUnnamed3460(); | 128 o["x"] = buildUnnamed3274(); |
| 129 o["y"] = buildUnnamed3460(); | 129 o["y"] = buildUnnamed3274(); |
| 130 return o; | 130 return o; |
| 131 } | 131 } |
| 132 | 132 |
| 133 checkUnnamed3461(core.Map<core.String, core.List<core.String>> o) { | 133 checkUnnamed3275(core.Map<core.String, core.List<core.String>> o) { |
| 134 unittest.expect(o, unittest.hasLength(2)); | 134 unittest.expect(o, unittest.hasLength(2)); |
| 135 checkUnnamed3460(o["x"]); | 135 checkUnnamed3274(o["x"]); |
| 136 checkUnnamed3460(o["y"]); | 136 checkUnnamed3274(o["y"]); |
| 137 } | 137 } |
| 138 | 138 |
| 139 core.int buildCounterAnnotationSet = 0; | 139 core.int buildCounterAnnotationSet = 0; |
| 140 buildAnnotationSet() { | 140 buildAnnotationSet() { |
| 141 var o = new api.AnnotationSet(); | 141 var o = new api.AnnotationSet(); |
| 142 buildCounterAnnotationSet++; | 142 buildCounterAnnotationSet++; |
| 143 if (buildCounterAnnotationSet < 3) { | 143 if (buildCounterAnnotationSet < 3) { |
| 144 o.datasetId = "foo"; | 144 o.datasetId = "foo"; |
| 145 o.id = "foo"; | 145 o.id = "foo"; |
| 146 o.info = buildUnnamed3461(); | 146 o.info = buildUnnamed3275(); |
| 147 o.name = "foo"; | 147 o.name = "foo"; |
| 148 o.referenceSetId = "foo"; | 148 o.referenceSetId = "foo"; |
| 149 o.sourceUri = "foo"; | 149 o.sourceUri = "foo"; |
| 150 o.type = "foo"; | 150 o.type = "foo"; |
| 151 } | 151 } |
| 152 buildCounterAnnotationSet--; | 152 buildCounterAnnotationSet--; |
| 153 return o; | 153 return o; |
| 154 } | 154 } |
| 155 | 155 |
| 156 checkAnnotationSet(api.AnnotationSet o) { | 156 checkAnnotationSet(api.AnnotationSet o) { |
| 157 buildCounterAnnotationSet++; | 157 buildCounterAnnotationSet++; |
| 158 if (buildCounterAnnotationSet < 3) { | 158 if (buildCounterAnnotationSet < 3) { |
| 159 unittest.expect(o.datasetId, unittest.equals('foo')); | 159 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 160 unittest.expect(o.id, unittest.equals('foo')); | 160 unittest.expect(o.id, unittest.equals('foo')); |
| 161 checkUnnamed3461(o.info); | 161 checkUnnamed3275(o.info); |
| 162 unittest.expect(o.name, unittest.equals('foo')); | 162 unittest.expect(o.name, unittest.equals('foo')); |
| 163 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 163 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 164 unittest.expect(o.sourceUri, unittest.equals('foo')); | 164 unittest.expect(o.sourceUri, unittest.equals('foo')); |
| 165 unittest.expect(o.type, unittest.equals('foo')); | 165 unittest.expect(o.type, unittest.equals('foo')); |
| 166 } | 166 } |
| 167 buildCounterAnnotationSet--; | 167 buildCounterAnnotationSet--; |
| 168 } | 168 } |
| 169 | 169 |
| 170 buildUnnamed3462() { | 170 buildUnnamed3276() { |
| 171 var o = new core.List<api.BatchAnnotationsResponseEntry>(); | 171 var o = new core.List<api.BatchAnnotationsResponseEntry>(); |
| 172 o.add(buildBatchAnnotationsResponseEntry()); | 172 o.add(buildBatchAnnotationsResponseEntry()); |
| 173 o.add(buildBatchAnnotationsResponseEntry()); | 173 o.add(buildBatchAnnotationsResponseEntry()); |
| 174 return o; | 174 return o; |
| 175 } | 175 } |
| 176 | 176 |
| 177 checkUnnamed3462(core.List<api.BatchAnnotationsResponseEntry> o) { | 177 checkUnnamed3276(core.List<api.BatchAnnotationsResponseEntry> o) { |
| 178 unittest.expect(o, unittest.hasLength(2)); | 178 unittest.expect(o, unittest.hasLength(2)); |
| 179 checkBatchAnnotationsResponseEntry(o[0]); | 179 checkBatchAnnotationsResponseEntry(o[0]); |
| 180 checkBatchAnnotationsResponseEntry(o[1]); | 180 checkBatchAnnotationsResponseEntry(o[1]); |
| 181 } | 181 } |
| 182 | 182 |
| 183 core.int buildCounterBatchAnnotationsResponse = 0; | 183 core.int buildCounterBatchAnnotationsResponse = 0; |
| 184 buildBatchAnnotationsResponse() { | 184 buildBatchAnnotationsResponse() { |
| 185 var o = new api.BatchAnnotationsResponse(); | 185 var o = new api.BatchAnnotationsResponse(); |
| 186 buildCounterBatchAnnotationsResponse++; | 186 buildCounterBatchAnnotationsResponse++; |
| 187 if (buildCounterBatchAnnotationsResponse < 3) { | 187 if (buildCounterBatchAnnotationsResponse < 3) { |
| 188 o.entries = buildUnnamed3462(); | 188 o.entries = buildUnnamed3276(); |
| 189 } | 189 } |
| 190 buildCounterBatchAnnotationsResponse--; | 190 buildCounterBatchAnnotationsResponse--; |
| 191 return o; | 191 return o; |
| 192 } | 192 } |
| 193 | 193 |
| 194 checkBatchAnnotationsResponse(api.BatchAnnotationsResponse o) { | 194 checkBatchAnnotationsResponse(api.BatchAnnotationsResponse o) { |
| 195 buildCounterBatchAnnotationsResponse++; | 195 buildCounterBatchAnnotationsResponse++; |
| 196 if (buildCounterBatchAnnotationsResponse < 3) { | 196 if (buildCounterBatchAnnotationsResponse < 3) { |
| 197 checkUnnamed3462(o.entries); | 197 checkUnnamed3276(o.entries); |
| 198 } | 198 } |
| 199 buildCounterBatchAnnotationsResponse--; | 199 buildCounterBatchAnnotationsResponse--; |
| 200 } | 200 } |
| 201 | 201 |
| 202 core.int buildCounterBatchAnnotationsResponseEntry = 0; | 202 core.int buildCounterBatchAnnotationsResponseEntry = 0; |
| 203 buildBatchAnnotationsResponseEntry() { | 203 buildBatchAnnotationsResponseEntry() { |
| 204 var o = new api.BatchAnnotationsResponseEntry(); | 204 var o = new api.BatchAnnotationsResponseEntry(); |
| 205 buildCounterBatchAnnotationsResponseEntry++; | 205 buildCounterBatchAnnotationsResponseEntry++; |
| 206 if (buildCounterBatchAnnotationsResponseEntry < 3) { | 206 if (buildCounterBatchAnnotationsResponseEntry < 3) { |
| 207 o.annotation = buildAnnotation(); | 207 o.annotation = buildAnnotation(); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 234 | 234 |
| 235 checkBatchAnnotationsResponseEntryStatus(api.BatchAnnotationsResponseEntryStatus
o) { | 235 checkBatchAnnotationsResponseEntryStatus(api.BatchAnnotationsResponseEntryStatus
o) { |
| 236 buildCounterBatchAnnotationsResponseEntryStatus++; | 236 buildCounterBatchAnnotationsResponseEntryStatus++; |
| 237 if (buildCounterBatchAnnotationsResponseEntryStatus < 3) { | 237 if (buildCounterBatchAnnotationsResponseEntryStatus < 3) { |
| 238 unittest.expect(o.code, unittest.equals(42)); | 238 unittest.expect(o.code, unittest.equals(42)); |
| 239 unittest.expect(o.message, unittest.equals('foo')); | 239 unittest.expect(o.message, unittest.equals('foo')); |
| 240 } | 240 } |
| 241 buildCounterBatchAnnotationsResponseEntryStatus--; | 241 buildCounterBatchAnnotationsResponseEntryStatus--; |
| 242 } | 242 } |
| 243 | 243 |
| 244 buildUnnamed3463() { | 244 buildUnnamed3277() { |
| 245 var o = new core.List<api.Annotation>(); | 245 var o = new core.List<api.Annotation>(); |
| 246 o.add(buildAnnotation()); | 246 o.add(buildAnnotation()); |
| 247 o.add(buildAnnotation()); | 247 o.add(buildAnnotation()); |
| 248 return o; | 248 return o; |
| 249 } | 249 } |
| 250 | 250 |
| 251 checkUnnamed3463(core.List<api.Annotation> o) { | 251 checkUnnamed3277(core.List<api.Annotation> o) { |
| 252 unittest.expect(o, unittest.hasLength(2)); | 252 unittest.expect(o, unittest.hasLength(2)); |
| 253 checkAnnotation(o[0]); | 253 checkAnnotation(o[0]); |
| 254 checkAnnotation(o[1]); | 254 checkAnnotation(o[1]); |
| 255 } | 255 } |
| 256 | 256 |
| 257 core.int buildCounterBatchCreateAnnotationsRequest = 0; | 257 core.int buildCounterBatchCreateAnnotationsRequest = 0; |
| 258 buildBatchCreateAnnotationsRequest() { | 258 buildBatchCreateAnnotationsRequest() { |
| 259 var o = new api.BatchCreateAnnotationsRequest(); | 259 var o = new api.BatchCreateAnnotationsRequest(); |
| 260 buildCounterBatchCreateAnnotationsRequest++; | 260 buildCounterBatchCreateAnnotationsRequest++; |
| 261 if (buildCounterBatchCreateAnnotationsRequest < 3) { | 261 if (buildCounterBatchCreateAnnotationsRequest < 3) { |
| 262 o.annotations = buildUnnamed3463(); | 262 o.annotations = buildUnnamed3277(); |
| 263 } | 263 } |
| 264 buildCounterBatchCreateAnnotationsRequest--; | 264 buildCounterBatchCreateAnnotationsRequest--; |
| 265 return o; | 265 return o; |
| 266 } | 266 } |
| 267 | 267 |
| 268 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) { | 268 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) { |
| 269 buildCounterBatchCreateAnnotationsRequest++; | 269 buildCounterBatchCreateAnnotationsRequest++; |
| 270 if (buildCounterBatchCreateAnnotationsRequest < 3) { | 270 if (buildCounterBatchCreateAnnotationsRequest < 3) { |
| 271 checkUnnamed3463(o.annotations); | 271 checkUnnamed3277(o.annotations); |
| 272 } | 272 } |
| 273 buildCounterBatchCreateAnnotationsRequest--; | 273 buildCounterBatchCreateAnnotationsRequest--; |
| 274 } | 274 } |
| 275 | 275 |
| 276 buildUnnamed3464() { | 276 buildUnnamed3278() { |
| 277 var o = new core.List<core.int>(); | 277 var o = new core.List<core.int>(); |
| 278 o.add(42); | 278 o.add(42); |
| 279 o.add(42); | 279 o.add(42); |
| 280 return o; | 280 return o; |
| 281 } | 281 } |
| 282 | 282 |
| 283 checkUnnamed3464(core.List<core.int> o) { | 283 checkUnnamed3278(core.List<core.int> o) { |
| 284 unittest.expect(o, unittest.hasLength(2)); | 284 unittest.expect(o, unittest.hasLength(2)); |
| 285 unittest.expect(o[0], unittest.equals(42)); | 285 unittest.expect(o[0], unittest.equals(42)); |
| 286 unittest.expect(o[1], unittest.equals(42)); | 286 unittest.expect(o[1], unittest.equals(42)); |
| 287 } | 287 } |
| 288 | 288 |
| 289 buildUnnamed3465() { | 289 buildUnnamed3279() { |
| 290 var o = new core.List<core.double>(); | 290 var o = new core.List<core.double>(); |
| 291 o.add(42.0); | 291 o.add(42.0); |
| 292 o.add(42.0); | 292 o.add(42.0); |
| 293 return o; | 293 return o; |
| 294 } | 294 } |
| 295 | 295 |
| 296 checkUnnamed3465(core.List<core.double> o) { | 296 checkUnnamed3279(core.List<core.double> o) { |
| 297 unittest.expect(o, unittest.hasLength(2)); | 297 unittest.expect(o, unittest.hasLength(2)); |
| 298 unittest.expect(o[0], unittest.equals(42.0)); | 298 unittest.expect(o[0], unittest.equals(42.0)); |
| 299 unittest.expect(o[1], unittest.equals(42.0)); | 299 unittest.expect(o[1], unittest.equals(42.0)); |
| 300 } | 300 } |
| 301 | 301 |
| 302 buildUnnamed3466() { | 302 buildUnnamed3280() { |
| 303 var o = new core.List<core.String>(); | 303 var o = new core.List<core.String>(); |
| 304 o.add("foo"); | 304 o.add("foo"); |
| 305 o.add("foo"); | 305 o.add("foo"); |
| 306 return o; | 306 return o; |
| 307 } | 307 } |
| 308 | 308 |
| 309 checkUnnamed3466(core.List<core.String> o) { | 309 checkUnnamed3280(core.List<core.String> o) { |
| 310 unittest.expect(o, unittest.hasLength(2)); | 310 unittest.expect(o, unittest.hasLength(2)); |
| 311 unittest.expect(o[0], unittest.equals('foo')); | 311 unittest.expect(o[0], unittest.equals('foo')); |
| 312 unittest.expect(o[1], unittest.equals('foo')); | 312 unittest.expect(o[1], unittest.equals('foo')); |
| 313 } | 313 } |
| 314 | 314 |
| 315 buildUnnamed3467() { | 315 buildUnnamed3281() { |
| 316 var o = new core.Map<core.String, core.List<core.String>>(); | 316 var o = new core.Map<core.String, core.List<core.String>>(); |
| 317 o["x"] = buildUnnamed3466(); | 317 o["x"] = buildUnnamed3280(); |
| 318 o["y"] = buildUnnamed3466(); | 318 o["y"] = buildUnnamed3280(); |
| 319 return o; | 319 return o; |
| 320 } | 320 } |
| 321 | 321 |
| 322 checkUnnamed3467(core.Map<core.String, core.List<core.String>> o) { | 322 checkUnnamed3281(core.Map<core.String, core.List<core.String>> o) { |
| 323 unittest.expect(o, unittest.hasLength(2)); | 323 unittest.expect(o, unittest.hasLength(2)); |
| 324 checkUnnamed3466(o["x"]); | 324 checkUnnamed3280(o["x"]); |
| 325 checkUnnamed3466(o["y"]); | 325 checkUnnamed3280(o["y"]); |
| 326 } | 326 } |
| 327 | 327 |
| 328 core.int buildCounterCall = 0; | 328 core.int buildCounterCall = 0; |
| 329 buildCall() { | 329 buildCall() { |
| 330 var o = new api.Call(); | 330 var o = new api.Call(); |
| 331 buildCounterCall++; | 331 buildCounterCall++; |
| 332 if (buildCounterCall < 3) { | 332 if (buildCounterCall < 3) { |
| 333 o.callSetId = "foo"; | 333 o.callSetId = "foo"; |
| 334 o.callSetName = "foo"; | 334 o.callSetName = "foo"; |
| 335 o.genotype = buildUnnamed3464(); | 335 o.genotype = buildUnnamed3278(); |
| 336 o.genotypeLikelihood = buildUnnamed3465(); | 336 o.genotypeLikelihood = buildUnnamed3279(); |
| 337 o.info = buildUnnamed3467(); | 337 o.info = buildUnnamed3281(); |
| 338 o.phaseset = "foo"; | 338 o.phaseset = "foo"; |
| 339 } | 339 } |
| 340 buildCounterCall--; | 340 buildCounterCall--; |
| 341 return o; | 341 return o; |
| 342 } | 342 } |
| 343 | 343 |
| 344 checkCall(api.Call o) { | 344 checkCall(api.Call o) { |
| 345 buildCounterCall++; | 345 buildCounterCall++; |
| 346 if (buildCounterCall < 3) { | 346 if (buildCounterCall < 3) { |
| 347 unittest.expect(o.callSetId, unittest.equals('foo')); | 347 unittest.expect(o.callSetId, unittest.equals('foo')); |
| 348 unittest.expect(o.callSetName, unittest.equals('foo')); | 348 unittest.expect(o.callSetName, unittest.equals('foo')); |
| 349 checkUnnamed3464(o.genotype); | 349 checkUnnamed3278(o.genotype); |
| 350 checkUnnamed3465(o.genotypeLikelihood); | 350 checkUnnamed3279(o.genotypeLikelihood); |
| 351 checkUnnamed3467(o.info); | 351 checkUnnamed3281(o.info); |
| 352 unittest.expect(o.phaseset, unittest.equals('foo')); | 352 unittest.expect(o.phaseset, unittest.equals('foo')); |
| 353 } | 353 } |
| 354 buildCounterCall--; | 354 buildCounterCall--; |
| 355 } | 355 } |
| 356 | 356 |
| 357 buildUnnamed3468() { | 357 buildUnnamed3282() { |
| 358 var o = new core.List<core.String>(); | 358 var o = new core.List<core.String>(); |
| 359 o.add("foo"); | 359 o.add("foo"); |
| 360 o.add("foo"); | 360 o.add("foo"); |
| 361 return o; | 361 return o; |
| 362 } | 362 } |
| 363 | 363 |
| 364 checkUnnamed3468(core.List<core.String> o) { | 364 checkUnnamed3282(core.List<core.String> o) { |
| 365 unittest.expect(o, unittest.hasLength(2)); | 365 unittest.expect(o, unittest.hasLength(2)); |
| 366 unittest.expect(o[0], unittest.equals('foo')); | 366 unittest.expect(o[0], unittest.equals('foo')); |
| 367 unittest.expect(o[1], unittest.equals('foo')); | 367 unittest.expect(o[1], unittest.equals('foo')); |
| 368 } | 368 } |
| 369 | 369 |
| 370 buildUnnamed3469() { | 370 buildUnnamed3283() { |
| 371 var o = new core.Map<core.String, core.List<core.String>>(); | 371 var o = new core.Map<core.String, core.List<core.String>>(); |
| 372 o["x"] = buildUnnamed3468(); | 372 o["x"] = buildUnnamed3282(); |
| 373 o["y"] = buildUnnamed3468(); | 373 o["y"] = buildUnnamed3282(); |
| 374 return o; | 374 return o; |
| 375 } | 375 } |
| 376 | 376 |
| 377 checkUnnamed3469(core.Map<core.String, core.List<core.String>> o) { | 377 checkUnnamed3283(core.Map<core.String, core.List<core.String>> o) { |
| 378 unittest.expect(o, unittest.hasLength(2)); | 378 unittest.expect(o, unittest.hasLength(2)); |
| 379 checkUnnamed3468(o["x"]); | 379 checkUnnamed3282(o["x"]); |
| 380 checkUnnamed3468(o["y"]); | 380 checkUnnamed3282(o["y"]); |
| 381 } | 381 } |
| 382 | 382 |
| 383 buildUnnamed3470() { | 383 buildUnnamed3284() { |
| 384 var o = new core.List<core.String>(); | 384 var o = new core.List<core.String>(); |
| 385 o.add("foo"); | 385 o.add("foo"); |
| 386 o.add("foo"); | 386 o.add("foo"); |
| 387 return o; | 387 return o; |
| 388 } | 388 } |
| 389 | 389 |
| 390 checkUnnamed3470(core.List<core.String> o) { | 390 checkUnnamed3284(core.List<core.String> o) { |
| 391 unittest.expect(o, unittest.hasLength(2)); | 391 unittest.expect(o, unittest.hasLength(2)); |
| 392 unittest.expect(o[0], unittest.equals('foo')); | 392 unittest.expect(o[0], unittest.equals('foo')); |
| 393 unittest.expect(o[1], unittest.equals('foo')); | 393 unittest.expect(o[1], unittest.equals('foo')); |
| 394 } | 394 } |
| 395 | 395 |
| 396 core.int buildCounterCallSet = 0; | 396 core.int buildCounterCallSet = 0; |
| 397 buildCallSet() { | 397 buildCallSet() { |
| 398 var o = new api.CallSet(); | 398 var o = new api.CallSet(); |
| 399 buildCounterCallSet++; | 399 buildCounterCallSet++; |
| 400 if (buildCounterCallSet < 3) { | 400 if (buildCounterCallSet < 3) { |
| 401 o.created = "foo"; | 401 o.created = "foo"; |
| 402 o.id = "foo"; | 402 o.id = "foo"; |
| 403 o.info = buildUnnamed3469(); | 403 o.info = buildUnnamed3283(); |
| 404 o.name = "foo"; | 404 o.name = "foo"; |
| 405 o.sampleId = "foo"; | 405 o.sampleId = "foo"; |
| 406 o.variantSetIds = buildUnnamed3470(); | 406 o.variantSetIds = buildUnnamed3284(); |
| 407 } | 407 } |
| 408 buildCounterCallSet--; | 408 buildCounterCallSet--; |
| 409 return o; | 409 return o; |
| 410 } | 410 } |
| 411 | 411 |
| 412 checkCallSet(api.CallSet o) { | 412 checkCallSet(api.CallSet o) { |
| 413 buildCounterCallSet++; | 413 buildCounterCallSet++; |
| 414 if (buildCounterCallSet < 3) { | 414 if (buildCounterCallSet < 3) { |
| 415 unittest.expect(o.created, unittest.equals('foo')); | 415 unittest.expect(o.created, unittest.equals('foo')); |
| 416 unittest.expect(o.id, unittest.equals('foo')); | 416 unittest.expect(o.id, unittest.equals('foo')); |
| 417 checkUnnamed3469(o.info); | 417 checkUnnamed3283(o.info); |
| 418 unittest.expect(o.name, unittest.equals('foo')); | 418 unittest.expect(o.name, unittest.equals('foo')); |
| 419 unittest.expect(o.sampleId, unittest.equals('foo')); | 419 unittest.expect(o.sampleId, unittest.equals('foo')); |
| 420 checkUnnamed3470(o.variantSetIds); | 420 checkUnnamed3284(o.variantSetIds); |
| 421 } | 421 } |
| 422 buildCounterCallSet--; | 422 buildCounterCallSet--; |
| 423 } | 423 } |
| 424 | 424 |
| 425 core.int buildCounterCigarUnit = 0; | 425 core.int buildCounterCigarUnit = 0; |
| 426 buildCigarUnit() { | 426 buildCigarUnit() { |
| 427 var o = new api.CigarUnit(); | 427 var o = new api.CigarUnit(); |
| 428 buildCounterCigarUnit++; | 428 buildCounterCigarUnit++; |
| 429 if (buildCounterCigarUnit < 3) { | 429 if (buildCounterCigarUnit < 3) { |
| 430 o.operation = "foo"; | 430 o.operation = "foo"; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 if (buildCounterDataset < 3) { | 486 if (buildCounterDataset < 3) { |
| 487 unittest.expect(o.createTime, unittest.equals('foo')); | 487 unittest.expect(o.createTime, unittest.equals('foo')); |
| 488 unittest.expect(o.id, unittest.equals('foo')); | 488 unittest.expect(o.id, unittest.equals('foo')); |
| 489 unittest.expect(o.isPublic, unittest.isTrue); | 489 unittest.expect(o.isPublic, unittest.isTrue); |
| 490 unittest.expect(o.name, unittest.equals('foo')); | 490 unittest.expect(o.name, unittest.equals('foo')); |
| 491 unittest.expect(o.projectNumber, unittest.equals('foo')); | 491 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 492 } | 492 } |
| 493 buildCounterDataset--; | 493 buildCounterDataset--; |
| 494 } | 494 } |
| 495 | 495 |
| 496 buildUnnamed3471() { | 496 buildUnnamed3285() { |
| 497 var o = new core.List<core.String>(); | 497 var o = new core.List<core.String>(); |
| 498 o.add("foo"); | 498 o.add("foo"); |
| 499 o.add("foo"); | 499 o.add("foo"); |
| 500 return o; | 500 return o; |
| 501 } | 501 } |
| 502 | 502 |
| 503 checkUnnamed3471(core.List<core.String> o) { | 503 checkUnnamed3285(core.List<core.String> o) { |
| 504 unittest.expect(o, unittest.hasLength(2)); | 504 unittest.expect(o, unittest.hasLength(2)); |
| 505 unittest.expect(o[0], unittest.equals('foo')); | 505 unittest.expect(o[0], unittest.equals('foo')); |
| 506 unittest.expect(o[1], unittest.equals('foo')); | 506 unittest.expect(o[1], unittest.equals('foo')); |
| 507 } | 507 } |
| 508 | 508 |
| 509 buildUnnamed3472() { | 509 buildUnnamed3286() { |
| 510 var o = new core.List<core.String>(); | 510 var o = new core.List<core.String>(); |
| 511 o.add("foo"); | 511 o.add("foo"); |
| 512 o.add("foo"); | 512 o.add("foo"); |
| 513 return o; | 513 return o; |
| 514 } | 514 } |
| 515 | 515 |
| 516 checkUnnamed3472(core.List<core.String> o) { | 516 checkUnnamed3286(core.List<core.String> o) { |
| 517 unittest.expect(o, unittest.hasLength(2)); | 517 unittest.expect(o, unittest.hasLength(2)); |
| 518 unittest.expect(o[0], unittest.equals('foo')); | 518 unittest.expect(o[0], unittest.equals('foo')); |
| 519 unittest.expect(o[1], unittest.equals('foo')); | 519 unittest.expect(o[1], unittest.equals('foo')); |
| 520 } | 520 } |
| 521 | 521 |
| 522 core.int buildCounterExperimentalCreateJobRequest = 0; | 522 core.int buildCounterExperimentalCreateJobRequest = 0; |
| 523 buildExperimentalCreateJobRequest() { | 523 buildExperimentalCreateJobRequest() { |
| 524 var o = new api.ExperimentalCreateJobRequest(); | 524 var o = new api.ExperimentalCreateJobRequest(); |
| 525 buildCounterExperimentalCreateJobRequest++; | 525 buildCounterExperimentalCreateJobRequest++; |
| 526 if (buildCounterExperimentalCreateJobRequest < 3) { | 526 if (buildCounterExperimentalCreateJobRequest < 3) { |
| 527 o.align = true; | 527 o.align = true; |
| 528 o.callVariants = true; | 528 o.callVariants = true; |
| 529 o.gcsOutputPath = "foo"; | 529 o.gcsOutputPath = "foo"; |
| 530 o.pairedSourceUris = buildUnnamed3471(); | 530 o.pairedSourceUris = buildUnnamed3285(); |
| 531 o.projectNumber = "foo"; | 531 o.projectNumber = "foo"; |
| 532 o.sourceUris = buildUnnamed3472(); | 532 o.sourceUris = buildUnnamed3286(); |
| 533 } | 533 } |
| 534 buildCounterExperimentalCreateJobRequest--; | 534 buildCounterExperimentalCreateJobRequest--; |
| 535 return o; | 535 return o; |
| 536 } | 536 } |
| 537 | 537 |
| 538 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { | 538 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { |
| 539 buildCounterExperimentalCreateJobRequest++; | 539 buildCounterExperimentalCreateJobRequest++; |
| 540 if (buildCounterExperimentalCreateJobRequest < 3) { | 540 if (buildCounterExperimentalCreateJobRequest < 3) { |
| 541 unittest.expect(o.align, unittest.isTrue); | 541 unittest.expect(o.align, unittest.isTrue); |
| 542 unittest.expect(o.callVariants, unittest.isTrue); | 542 unittest.expect(o.callVariants, unittest.isTrue); |
| 543 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); | 543 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); |
| 544 checkUnnamed3471(o.pairedSourceUris); | 544 checkUnnamed3285(o.pairedSourceUris); |
| 545 unittest.expect(o.projectNumber, unittest.equals('foo')); | 545 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 546 checkUnnamed3472(o.sourceUris); | 546 checkUnnamed3286(o.sourceUris); |
| 547 } | 547 } |
| 548 buildCounterExperimentalCreateJobRequest--; | 548 buildCounterExperimentalCreateJobRequest--; |
| 549 } | 549 } |
| 550 | 550 |
| 551 core.int buildCounterExperimentalCreateJobResponse = 0; | 551 core.int buildCounterExperimentalCreateJobResponse = 0; |
| 552 buildExperimentalCreateJobResponse() { | 552 buildExperimentalCreateJobResponse() { |
| 553 var o = new api.ExperimentalCreateJobResponse(); | 553 var o = new api.ExperimentalCreateJobResponse(); |
| 554 buildCounterExperimentalCreateJobResponse++; | 554 buildCounterExperimentalCreateJobResponse++; |
| 555 if (buildCounterExperimentalCreateJobResponse < 3) { | 555 if (buildCounterExperimentalCreateJobResponse < 3) { |
| 556 o.jobId = "foo"; | 556 o.jobId = "foo"; |
| 557 } | 557 } |
| 558 buildCounterExperimentalCreateJobResponse--; | 558 buildCounterExperimentalCreateJobResponse--; |
| 559 return o; | 559 return o; |
| 560 } | 560 } |
| 561 | 561 |
| 562 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { | 562 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { |
| 563 buildCounterExperimentalCreateJobResponse++; | 563 buildCounterExperimentalCreateJobResponse++; |
| 564 if (buildCounterExperimentalCreateJobResponse < 3) { | 564 if (buildCounterExperimentalCreateJobResponse < 3) { |
| 565 unittest.expect(o.jobId, unittest.equals('foo')); | 565 unittest.expect(o.jobId, unittest.equals('foo')); |
| 566 } | 566 } |
| 567 buildCounterExperimentalCreateJobResponse--; | 567 buildCounterExperimentalCreateJobResponse--; |
| 568 } | 568 } |
| 569 | 569 |
| 570 buildUnnamed3473() { | 570 buildUnnamed3287() { |
| 571 var o = new core.List<core.String>(); | 571 var o = new core.List<core.String>(); |
| 572 o.add("foo"); | 572 o.add("foo"); |
| 573 o.add("foo"); | 573 o.add("foo"); |
| 574 return o; | 574 return o; |
| 575 } | 575 } |
| 576 | 576 |
| 577 checkUnnamed3473(core.List<core.String> o) { | 577 checkUnnamed3287(core.List<core.String> o) { |
| 578 unittest.expect(o, unittest.hasLength(2)); | 578 unittest.expect(o, unittest.hasLength(2)); |
| 579 unittest.expect(o[0], unittest.equals('foo')); | 579 unittest.expect(o[0], unittest.equals('foo')); |
| 580 unittest.expect(o[1], unittest.equals('foo')); | 580 unittest.expect(o[1], unittest.equals('foo')); |
| 581 } | 581 } |
| 582 | 582 |
| 583 buildUnnamed3474() { | 583 buildUnnamed3288() { |
| 584 var o = new core.List<core.String>(); | 584 var o = new core.List<core.String>(); |
| 585 o.add("foo"); | 585 o.add("foo"); |
| 586 o.add("foo"); | 586 o.add("foo"); |
| 587 return o; | 587 return o; |
| 588 } | 588 } |
| 589 | 589 |
| 590 checkUnnamed3474(core.List<core.String> o) { | 590 checkUnnamed3288(core.List<core.String> o) { |
| 591 unittest.expect(o, unittest.hasLength(2)); | 591 unittest.expect(o, unittest.hasLength(2)); |
| 592 unittest.expect(o[0], unittest.equals('foo')); | 592 unittest.expect(o[0], unittest.equals('foo')); |
| 593 unittest.expect(o[1], unittest.equals('foo')); | 593 unittest.expect(o[1], unittest.equals('foo')); |
| 594 } | 594 } |
| 595 | 595 |
| 596 core.int buildCounterExportReadGroupSetsRequest = 0; | 596 core.int buildCounterExportReadGroupSetsRequest = 0; |
| 597 buildExportReadGroupSetsRequest() { | 597 buildExportReadGroupSetsRequest() { |
| 598 var o = new api.ExportReadGroupSetsRequest(); | 598 var o = new api.ExportReadGroupSetsRequest(); |
| 599 buildCounterExportReadGroupSetsRequest++; | 599 buildCounterExportReadGroupSetsRequest++; |
| 600 if (buildCounterExportReadGroupSetsRequest < 3) { | 600 if (buildCounterExportReadGroupSetsRequest < 3) { |
| 601 o.exportUri = "foo"; | 601 o.exportUri = "foo"; |
| 602 o.projectNumber = "foo"; | 602 o.projectNumber = "foo"; |
| 603 o.readGroupSetIds = buildUnnamed3473(); | 603 o.readGroupSetIds = buildUnnamed3287(); |
| 604 o.referenceNames = buildUnnamed3474(); | 604 o.referenceNames = buildUnnamed3288(); |
| 605 } | 605 } |
| 606 buildCounterExportReadGroupSetsRequest--; | 606 buildCounterExportReadGroupSetsRequest--; |
| 607 return o; | 607 return o; |
| 608 } | 608 } |
| 609 | 609 |
| 610 checkExportReadGroupSetsRequest(api.ExportReadGroupSetsRequest o) { | 610 checkExportReadGroupSetsRequest(api.ExportReadGroupSetsRequest o) { |
| 611 buildCounterExportReadGroupSetsRequest++; | 611 buildCounterExportReadGroupSetsRequest++; |
| 612 if (buildCounterExportReadGroupSetsRequest < 3) { | 612 if (buildCounterExportReadGroupSetsRequest < 3) { |
| 613 unittest.expect(o.exportUri, unittest.equals('foo')); | 613 unittest.expect(o.exportUri, unittest.equals('foo')); |
| 614 unittest.expect(o.projectNumber, unittest.equals('foo')); | 614 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 615 checkUnnamed3473(o.readGroupSetIds); | 615 checkUnnamed3287(o.readGroupSetIds); |
| 616 checkUnnamed3474(o.referenceNames); | 616 checkUnnamed3288(o.referenceNames); |
| 617 } | 617 } |
| 618 buildCounterExportReadGroupSetsRequest--; | 618 buildCounterExportReadGroupSetsRequest--; |
| 619 } | 619 } |
| 620 | 620 |
| 621 core.int buildCounterExportReadGroupSetsResponse = 0; | 621 core.int buildCounterExportReadGroupSetsResponse = 0; |
| 622 buildExportReadGroupSetsResponse() { | 622 buildExportReadGroupSetsResponse() { |
| 623 var o = new api.ExportReadGroupSetsResponse(); | 623 var o = new api.ExportReadGroupSetsResponse(); |
| 624 buildCounterExportReadGroupSetsResponse++; | 624 buildCounterExportReadGroupSetsResponse++; |
| 625 if (buildCounterExportReadGroupSetsResponse < 3) { | 625 if (buildCounterExportReadGroupSetsResponse < 3) { |
| 626 o.jobId = "foo"; | 626 o.jobId = "foo"; |
| 627 } | 627 } |
| 628 buildCounterExportReadGroupSetsResponse--; | 628 buildCounterExportReadGroupSetsResponse--; |
| 629 return o; | 629 return o; |
| 630 } | 630 } |
| 631 | 631 |
| 632 checkExportReadGroupSetsResponse(api.ExportReadGroupSetsResponse o) { | 632 checkExportReadGroupSetsResponse(api.ExportReadGroupSetsResponse o) { |
| 633 buildCounterExportReadGroupSetsResponse++; | 633 buildCounterExportReadGroupSetsResponse++; |
| 634 if (buildCounterExportReadGroupSetsResponse < 3) { | 634 if (buildCounterExportReadGroupSetsResponse < 3) { |
| 635 unittest.expect(o.jobId, unittest.equals('foo')); | 635 unittest.expect(o.jobId, unittest.equals('foo')); |
| 636 } | 636 } |
| 637 buildCounterExportReadGroupSetsResponse--; | 637 buildCounterExportReadGroupSetsResponse--; |
| 638 } | 638 } |
| 639 | 639 |
| 640 buildUnnamed3475() { | 640 buildUnnamed3289() { |
| 641 var o = new core.List<core.String>(); | 641 var o = new core.List<core.String>(); |
| 642 o.add("foo"); | 642 o.add("foo"); |
| 643 o.add("foo"); | 643 o.add("foo"); |
| 644 return o; | 644 return o; |
| 645 } | 645 } |
| 646 | 646 |
| 647 checkUnnamed3475(core.List<core.String> o) { | 647 checkUnnamed3289(core.List<core.String> o) { |
| 648 unittest.expect(o, unittest.hasLength(2)); | 648 unittest.expect(o, unittest.hasLength(2)); |
| 649 unittest.expect(o[0], unittest.equals('foo')); | 649 unittest.expect(o[0], unittest.equals('foo')); |
| 650 unittest.expect(o[1], unittest.equals('foo')); | 650 unittest.expect(o[1], unittest.equals('foo')); |
| 651 } | 651 } |
| 652 | 652 |
| 653 core.int buildCounterExportVariantSetRequest = 0; | 653 core.int buildCounterExportVariantSetRequest = 0; |
| 654 buildExportVariantSetRequest() { | 654 buildExportVariantSetRequest() { |
| 655 var o = new api.ExportVariantSetRequest(); | 655 var o = new api.ExportVariantSetRequest(); |
| 656 buildCounterExportVariantSetRequest++; | 656 buildCounterExportVariantSetRequest++; |
| 657 if (buildCounterExportVariantSetRequest < 3) { | 657 if (buildCounterExportVariantSetRequest < 3) { |
| 658 o.bigqueryDataset = "foo"; | 658 o.bigqueryDataset = "foo"; |
| 659 o.bigqueryTable = "foo"; | 659 o.bigqueryTable = "foo"; |
| 660 o.callSetIds = buildUnnamed3475(); | 660 o.callSetIds = buildUnnamed3289(); |
| 661 o.format = "foo"; | 661 o.format = "foo"; |
| 662 o.projectNumber = "foo"; | 662 o.projectNumber = "foo"; |
| 663 } | 663 } |
| 664 buildCounterExportVariantSetRequest--; | 664 buildCounterExportVariantSetRequest--; |
| 665 return o; | 665 return o; |
| 666 } | 666 } |
| 667 | 667 |
| 668 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { | 668 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { |
| 669 buildCounterExportVariantSetRequest++; | 669 buildCounterExportVariantSetRequest++; |
| 670 if (buildCounterExportVariantSetRequest < 3) { | 670 if (buildCounterExportVariantSetRequest < 3) { |
| 671 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); | 671 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); |
| 672 unittest.expect(o.bigqueryTable, unittest.equals('foo')); | 672 unittest.expect(o.bigqueryTable, unittest.equals('foo')); |
| 673 checkUnnamed3475(o.callSetIds); | 673 checkUnnamed3289(o.callSetIds); |
| 674 unittest.expect(o.format, unittest.equals('foo')); | 674 unittest.expect(o.format, unittest.equals('foo')); |
| 675 unittest.expect(o.projectNumber, unittest.equals('foo')); | 675 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 676 } | 676 } |
| 677 buildCounterExportVariantSetRequest--; | 677 buildCounterExportVariantSetRequest--; |
| 678 } | 678 } |
| 679 | 679 |
| 680 core.int buildCounterExportVariantSetResponse = 0; | 680 core.int buildCounterExportVariantSetResponse = 0; |
| 681 buildExportVariantSetResponse() { | 681 buildExportVariantSetResponse() { |
| 682 var o = new api.ExportVariantSetResponse(); | 682 var o = new api.ExportVariantSetResponse(); |
| 683 buildCounterExportVariantSetResponse++; | 683 buildCounterExportVariantSetResponse++; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 710 | 710 |
| 711 checkExternalId(api.ExternalId o) { | 711 checkExternalId(api.ExternalId o) { |
| 712 buildCounterExternalId++; | 712 buildCounterExternalId++; |
| 713 if (buildCounterExternalId < 3) { | 713 if (buildCounterExternalId < 3) { |
| 714 unittest.expect(o.id, unittest.equals('foo')); | 714 unittest.expect(o.id, unittest.equals('foo')); |
| 715 unittest.expect(o.sourceName, unittest.equals('foo')); | 715 unittest.expect(o.sourceName, unittest.equals('foo')); |
| 716 } | 716 } |
| 717 buildCounterExternalId--; | 717 buildCounterExternalId--; |
| 718 } | 718 } |
| 719 | 719 |
| 720 buildUnnamed3476() { | 720 buildUnnamed3290() { |
| 721 var o = new core.List<core.String>(); | 721 var o = new core.List<core.String>(); |
| 722 o.add("foo"); | 722 o.add("foo"); |
| 723 o.add("foo"); | 723 o.add("foo"); |
| 724 return o; | 724 return o; |
| 725 } | 725 } |
| 726 | 726 |
| 727 checkUnnamed3476(core.List<core.String> o) { | 727 checkUnnamed3290(core.List<core.String> o) { |
| 728 unittest.expect(o, unittest.hasLength(2)); | 728 unittest.expect(o, unittest.hasLength(2)); |
| 729 unittest.expect(o[0], unittest.equals('foo')); | 729 unittest.expect(o[0], unittest.equals('foo')); |
| 730 unittest.expect(o[1], unittest.equals('foo')); | 730 unittest.expect(o[1], unittest.equals('foo')); |
| 731 } | 731 } |
| 732 | 732 |
| 733 core.int buildCounterImportReadGroupSetsRequest = 0; | 733 core.int buildCounterImportReadGroupSetsRequest = 0; |
| 734 buildImportReadGroupSetsRequest() { | 734 buildImportReadGroupSetsRequest() { |
| 735 var o = new api.ImportReadGroupSetsRequest(); | 735 var o = new api.ImportReadGroupSetsRequest(); |
| 736 buildCounterImportReadGroupSetsRequest++; | 736 buildCounterImportReadGroupSetsRequest++; |
| 737 if (buildCounterImportReadGroupSetsRequest < 3) { | 737 if (buildCounterImportReadGroupSetsRequest < 3) { |
| 738 o.datasetId = "foo"; | 738 o.datasetId = "foo"; |
| 739 o.partitionStrategy = "foo"; | 739 o.partitionStrategy = "foo"; |
| 740 o.referenceSetId = "foo"; | 740 o.referenceSetId = "foo"; |
| 741 o.sourceUris = buildUnnamed3476(); | 741 o.sourceUris = buildUnnamed3290(); |
| 742 } | 742 } |
| 743 buildCounterImportReadGroupSetsRequest--; | 743 buildCounterImportReadGroupSetsRequest--; |
| 744 return o; | 744 return o; |
| 745 } | 745 } |
| 746 | 746 |
| 747 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { | 747 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { |
| 748 buildCounterImportReadGroupSetsRequest++; | 748 buildCounterImportReadGroupSetsRequest++; |
| 749 if (buildCounterImportReadGroupSetsRequest < 3) { | 749 if (buildCounterImportReadGroupSetsRequest < 3) { |
| 750 unittest.expect(o.datasetId, unittest.equals('foo')); | 750 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 751 unittest.expect(o.partitionStrategy, unittest.equals('foo')); | 751 unittest.expect(o.partitionStrategy, unittest.equals('foo')); |
| 752 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 752 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 753 checkUnnamed3476(o.sourceUris); | 753 checkUnnamed3290(o.sourceUris); |
| 754 } | 754 } |
| 755 buildCounterImportReadGroupSetsRequest--; | 755 buildCounterImportReadGroupSetsRequest--; |
| 756 } | 756 } |
| 757 | 757 |
| 758 core.int buildCounterImportReadGroupSetsResponse = 0; | 758 core.int buildCounterImportReadGroupSetsResponse = 0; |
| 759 buildImportReadGroupSetsResponse() { | 759 buildImportReadGroupSetsResponse() { |
| 760 var o = new api.ImportReadGroupSetsResponse(); | 760 var o = new api.ImportReadGroupSetsResponse(); |
| 761 buildCounterImportReadGroupSetsResponse++; | 761 buildCounterImportReadGroupSetsResponse++; |
| 762 if (buildCounterImportReadGroupSetsResponse < 3) { | 762 if (buildCounterImportReadGroupSetsResponse < 3) { |
| 763 o.jobId = "foo"; | 763 o.jobId = "foo"; |
| 764 } | 764 } |
| 765 buildCounterImportReadGroupSetsResponse--; | 765 buildCounterImportReadGroupSetsResponse--; |
| 766 return o; | 766 return o; |
| 767 } | 767 } |
| 768 | 768 |
| 769 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { | 769 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { |
| 770 buildCounterImportReadGroupSetsResponse++; | 770 buildCounterImportReadGroupSetsResponse++; |
| 771 if (buildCounterImportReadGroupSetsResponse < 3) { | 771 if (buildCounterImportReadGroupSetsResponse < 3) { |
| 772 unittest.expect(o.jobId, unittest.equals('foo')); | 772 unittest.expect(o.jobId, unittest.equals('foo')); |
| 773 } | 773 } |
| 774 buildCounterImportReadGroupSetsResponse--; | 774 buildCounterImportReadGroupSetsResponse--; |
| 775 } | 775 } |
| 776 | 776 |
| 777 buildUnnamed3477() { | 777 buildUnnamed3291() { |
| 778 var o = new core.List<core.String>(); | 778 var o = new core.List<core.String>(); |
| 779 o.add("foo"); | 779 o.add("foo"); |
| 780 o.add("foo"); | 780 o.add("foo"); |
| 781 return o; | 781 return o; |
| 782 } | 782 } |
| 783 | 783 |
| 784 checkUnnamed3477(core.List<core.String> o) { | 784 checkUnnamed3291(core.List<core.String> o) { |
| 785 unittest.expect(o, unittest.hasLength(2)); | 785 unittest.expect(o, unittest.hasLength(2)); |
| 786 unittest.expect(o[0], unittest.equals('foo')); | 786 unittest.expect(o[0], unittest.equals('foo')); |
| 787 unittest.expect(o[1], unittest.equals('foo')); | 787 unittest.expect(o[1], unittest.equals('foo')); |
| 788 } | 788 } |
| 789 | 789 |
| 790 core.int buildCounterImportVariantsRequest = 0; | 790 core.int buildCounterImportVariantsRequest = 0; |
| 791 buildImportVariantsRequest() { | 791 buildImportVariantsRequest() { |
| 792 var o = new api.ImportVariantsRequest(); | 792 var o = new api.ImportVariantsRequest(); |
| 793 buildCounterImportVariantsRequest++; | 793 buildCounterImportVariantsRequest++; |
| 794 if (buildCounterImportVariantsRequest < 3) { | 794 if (buildCounterImportVariantsRequest < 3) { |
| 795 o.format = "foo"; | 795 o.format = "foo"; |
| 796 o.normalizeReferenceNames = true; | 796 o.normalizeReferenceNames = true; |
| 797 o.sourceUris = buildUnnamed3477(); | 797 o.sourceUris = buildUnnamed3291(); |
| 798 } | 798 } |
| 799 buildCounterImportVariantsRequest--; | 799 buildCounterImportVariantsRequest--; |
| 800 return o; | 800 return o; |
| 801 } | 801 } |
| 802 | 802 |
| 803 checkImportVariantsRequest(api.ImportVariantsRequest o) { | 803 checkImportVariantsRequest(api.ImportVariantsRequest o) { |
| 804 buildCounterImportVariantsRequest++; | 804 buildCounterImportVariantsRequest++; |
| 805 if (buildCounterImportVariantsRequest < 3) { | 805 if (buildCounterImportVariantsRequest < 3) { |
| 806 unittest.expect(o.format, unittest.equals('foo')); | 806 unittest.expect(o.format, unittest.equals('foo')); |
| 807 unittest.expect(o.normalizeReferenceNames, unittest.isTrue); | 807 unittest.expect(o.normalizeReferenceNames, unittest.isTrue); |
| 808 checkUnnamed3477(o.sourceUris); | 808 checkUnnamed3291(o.sourceUris); |
| 809 } | 809 } |
| 810 buildCounterImportVariantsRequest--; | 810 buildCounterImportVariantsRequest--; |
| 811 } | 811 } |
| 812 | 812 |
| 813 core.int buildCounterImportVariantsResponse = 0; | 813 core.int buildCounterImportVariantsResponse = 0; |
| 814 buildImportVariantsResponse() { | 814 buildImportVariantsResponse() { |
| 815 var o = new api.ImportVariantsResponse(); | 815 var o = new api.ImportVariantsResponse(); |
| 816 buildCounterImportVariantsResponse++; | 816 buildCounterImportVariantsResponse++; |
| 817 if (buildCounterImportVariantsResponse < 3) { | 817 if (buildCounterImportVariantsResponse < 3) { |
| 818 o.jobId = "foo"; | 818 o.jobId = "foo"; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 841 } | 841 } |
| 842 | 842 |
| 843 checkInt32Value(api.Int32Value o) { | 843 checkInt32Value(api.Int32Value o) { |
| 844 buildCounterInt32Value++; | 844 buildCounterInt32Value++; |
| 845 if (buildCounterInt32Value < 3) { | 845 if (buildCounterInt32Value < 3) { |
| 846 unittest.expect(o.value, unittest.equals(42)); | 846 unittest.expect(o.value, unittest.equals(42)); |
| 847 } | 847 } |
| 848 buildCounterInt32Value--; | 848 buildCounterInt32Value--; |
| 849 } | 849 } |
| 850 | 850 |
| 851 buildUnnamed3478() { | 851 buildUnnamed3292() { |
| 852 var o = new core.List<core.String>(); | 852 var o = new core.List<core.String>(); |
| 853 o.add("foo"); | 853 o.add("foo"); |
| 854 o.add("foo"); | 854 o.add("foo"); |
| 855 return o; | 855 return o; |
| 856 } | 856 } |
| 857 | 857 |
| 858 checkUnnamed3478(core.List<core.String> o) { | 858 checkUnnamed3292(core.List<core.String> o) { |
| 859 unittest.expect(o, unittest.hasLength(2)); | 859 unittest.expect(o, unittest.hasLength(2)); |
| 860 unittest.expect(o[0], unittest.equals('foo')); | 860 unittest.expect(o[0], unittest.equals('foo')); |
| 861 unittest.expect(o[1], unittest.equals('foo')); | 861 unittest.expect(o[1], unittest.equals('foo')); |
| 862 } | 862 } |
| 863 | 863 |
| 864 buildUnnamed3479() { | 864 buildUnnamed3293() { |
| 865 var o = new core.List<core.String>(); | 865 var o = new core.List<core.String>(); |
| 866 o.add("foo"); | 866 o.add("foo"); |
| 867 o.add("foo"); | 867 o.add("foo"); |
| 868 return o; | 868 return o; |
| 869 } | 869 } |
| 870 | 870 |
| 871 checkUnnamed3479(core.List<core.String> o) { | 871 checkUnnamed3293(core.List<core.String> o) { |
| 872 unittest.expect(o, unittest.hasLength(2)); | 872 unittest.expect(o, unittest.hasLength(2)); |
| 873 unittest.expect(o[0], unittest.equals('foo')); | 873 unittest.expect(o[0], unittest.equals('foo')); |
| 874 unittest.expect(o[1], unittest.equals('foo')); | 874 unittest.expect(o[1], unittest.equals('foo')); |
| 875 } | 875 } |
| 876 | 876 |
| 877 buildUnnamed3480() { | 877 buildUnnamed3294() { |
| 878 var o = new core.List<core.String>(); | 878 var o = new core.List<core.String>(); |
| 879 o.add("foo"); | 879 o.add("foo"); |
| 880 o.add("foo"); | 880 o.add("foo"); |
| 881 return o; | 881 return o; |
| 882 } | 882 } |
| 883 | 883 |
| 884 checkUnnamed3480(core.List<core.String> o) { | 884 checkUnnamed3294(core.List<core.String> o) { |
| 885 unittest.expect(o, unittest.hasLength(2)); | 885 unittest.expect(o, unittest.hasLength(2)); |
| 886 unittest.expect(o[0], unittest.equals('foo')); | 886 unittest.expect(o[0], unittest.equals('foo')); |
| 887 unittest.expect(o[1], unittest.equals('foo')); | 887 unittest.expect(o[1], unittest.equals('foo')); |
| 888 } | 888 } |
| 889 | 889 |
| 890 core.int buildCounterJob = 0; | 890 core.int buildCounterJob = 0; |
| 891 buildJob() { | 891 buildJob() { |
| 892 var o = new api.Job(); | 892 var o = new api.Job(); |
| 893 buildCounterJob++; | 893 buildCounterJob++; |
| 894 if (buildCounterJob < 3) { | 894 if (buildCounterJob < 3) { |
| 895 o.created = "foo"; | 895 o.created = "foo"; |
| 896 o.detailedStatus = "foo"; | 896 o.detailedStatus = "foo"; |
| 897 o.errors = buildUnnamed3478(); | 897 o.errors = buildUnnamed3292(); |
| 898 o.id = "foo"; | 898 o.id = "foo"; |
| 899 o.importedIds = buildUnnamed3479(); | 899 o.importedIds = buildUnnamed3293(); |
| 900 o.projectNumber = "foo"; | 900 o.projectNumber = "foo"; |
| 901 o.request = buildJobRequest(); | 901 o.request = buildJobRequest(); |
| 902 o.status = "foo"; | 902 o.status = "foo"; |
| 903 o.warnings = buildUnnamed3480(); | 903 o.warnings = buildUnnamed3294(); |
| 904 } | 904 } |
| 905 buildCounterJob--; | 905 buildCounterJob--; |
| 906 return o; | 906 return o; |
| 907 } | 907 } |
| 908 | 908 |
| 909 checkJob(api.Job o) { | 909 checkJob(api.Job o) { |
| 910 buildCounterJob++; | 910 buildCounterJob++; |
| 911 if (buildCounterJob < 3) { | 911 if (buildCounterJob < 3) { |
| 912 unittest.expect(o.created, unittest.equals('foo')); | 912 unittest.expect(o.created, unittest.equals('foo')); |
| 913 unittest.expect(o.detailedStatus, unittest.equals('foo')); | 913 unittest.expect(o.detailedStatus, unittest.equals('foo')); |
| 914 checkUnnamed3478(o.errors); | 914 checkUnnamed3292(o.errors); |
| 915 unittest.expect(o.id, unittest.equals('foo')); | 915 unittest.expect(o.id, unittest.equals('foo')); |
| 916 checkUnnamed3479(o.importedIds); | 916 checkUnnamed3293(o.importedIds); |
| 917 unittest.expect(o.projectNumber, unittest.equals('foo')); | 917 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 918 checkJobRequest(o.request); | 918 checkJobRequest(o.request); |
| 919 unittest.expect(o.status, unittest.equals('foo')); | 919 unittest.expect(o.status, unittest.equals('foo')); |
| 920 checkUnnamed3480(o.warnings); | 920 checkUnnamed3294(o.warnings); |
| 921 } | 921 } |
| 922 buildCounterJob--; | 922 buildCounterJob--; |
| 923 } | 923 } |
| 924 | 924 |
| 925 buildUnnamed3481() { | 925 buildUnnamed3295() { |
| 926 var o = new core.List<core.String>(); | 926 var o = new core.List<core.String>(); |
| 927 o.add("foo"); | 927 o.add("foo"); |
| 928 o.add("foo"); | 928 o.add("foo"); |
| 929 return o; | 929 return o; |
| 930 } | 930 } |
| 931 | 931 |
| 932 checkUnnamed3481(core.List<core.String> o) { | 932 checkUnnamed3295(core.List<core.String> o) { |
| 933 unittest.expect(o, unittest.hasLength(2)); | 933 unittest.expect(o, unittest.hasLength(2)); |
| 934 unittest.expect(o[0], unittest.equals('foo')); | 934 unittest.expect(o[0], unittest.equals('foo')); |
| 935 unittest.expect(o[1], unittest.equals('foo')); | 935 unittest.expect(o[1], unittest.equals('foo')); |
| 936 } | 936 } |
| 937 | 937 |
| 938 buildUnnamed3482() { | 938 buildUnnamed3296() { |
| 939 var o = new core.List<core.String>(); | 939 var o = new core.List<core.String>(); |
| 940 o.add("foo"); | 940 o.add("foo"); |
| 941 o.add("foo"); | 941 o.add("foo"); |
| 942 return o; | 942 return o; |
| 943 } | 943 } |
| 944 | 944 |
| 945 checkUnnamed3482(core.List<core.String> o) { | 945 checkUnnamed3296(core.List<core.String> o) { |
| 946 unittest.expect(o, unittest.hasLength(2)); | 946 unittest.expect(o, unittest.hasLength(2)); |
| 947 unittest.expect(o[0], unittest.equals('foo')); | 947 unittest.expect(o[0], unittest.equals('foo')); |
| 948 unittest.expect(o[1], unittest.equals('foo')); | 948 unittest.expect(o[1], unittest.equals('foo')); |
| 949 } | 949 } |
| 950 | 950 |
| 951 core.int buildCounterJobRequest = 0; | 951 core.int buildCounterJobRequest = 0; |
| 952 buildJobRequest() { | 952 buildJobRequest() { |
| 953 var o = new api.JobRequest(); | 953 var o = new api.JobRequest(); |
| 954 buildCounterJobRequest++; | 954 buildCounterJobRequest++; |
| 955 if (buildCounterJobRequest < 3) { | 955 if (buildCounterJobRequest < 3) { |
| 956 o.destination = buildUnnamed3481(); | 956 o.destination = buildUnnamed3295(); |
| 957 o.source = buildUnnamed3482(); | 957 o.source = buildUnnamed3296(); |
| 958 o.type = "foo"; | 958 o.type = "foo"; |
| 959 } | 959 } |
| 960 buildCounterJobRequest--; | 960 buildCounterJobRequest--; |
| 961 return o; | 961 return o; |
| 962 } | 962 } |
| 963 | 963 |
| 964 checkJobRequest(api.JobRequest o) { | 964 checkJobRequest(api.JobRequest o) { |
| 965 buildCounterJobRequest++; | 965 buildCounterJobRequest++; |
| 966 if (buildCounterJobRequest < 3) { | 966 if (buildCounterJobRequest < 3) { |
| 967 checkUnnamed3481(o.destination); | 967 checkUnnamed3295(o.destination); |
| 968 checkUnnamed3482(o.source); | 968 checkUnnamed3296(o.source); |
| 969 unittest.expect(o.type, unittest.equals('foo')); | 969 unittest.expect(o.type, unittest.equals('foo')); |
| 970 } | 970 } |
| 971 buildCounterJobRequest--; | 971 buildCounterJobRequest--; |
| 972 } | 972 } |
| 973 | 973 |
| 974 buildUnnamed3483() { | 974 buildUnnamed3297() { |
| 975 var o = new core.List<core.String>(); | 975 var o = new core.List<core.String>(); |
| 976 o.add("foo"); | 976 o.add("foo"); |
| 977 o.add("foo"); | 977 o.add("foo"); |
| 978 return o; | 978 return o; |
| 979 } | 979 } |
| 980 | 980 |
| 981 checkUnnamed3483(core.List<core.String> o) { | 981 checkUnnamed3297(core.List<core.String> o) { |
| 982 unittest.expect(o, unittest.hasLength(2)); | 982 unittest.expect(o, unittest.hasLength(2)); |
| 983 unittest.expect(o[0], unittest.equals('foo')); | 983 unittest.expect(o[0], unittest.equals('foo')); |
| 984 unittest.expect(o[1], unittest.equals('foo')); | 984 unittest.expect(o[1], unittest.equals('foo')); |
| 985 } | 985 } |
| 986 | 986 |
| 987 core.int buildCounterKeyValue = 0; | 987 core.int buildCounterKeyValue = 0; |
| 988 buildKeyValue() { | 988 buildKeyValue() { |
| 989 var o = new api.KeyValue(); | 989 var o = new api.KeyValue(); |
| 990 buildCounterKeyValue++; | 990 buildCounterKeyValue++; |
| 991 if (buildCounterKeyValue < 3) { | 991 if (buildCounterKeyValue < 3) { |
| 992 o.key = "foo"; | 992 o.key = "foo"; |
| 993 o.value = buildUnnamed3483(); | 993 o.value = buildUnnamed3297(); |
| 994 } | 994 } |
| 995 buildCounterKeyValue--; | 995 buildCounterKeyValue--; |
| 996 return o; | 996 return o; |
| 997 } | 997 } |
| 998 | 998 |
| 999 checkKeyValue(api.KeyValue o) { | 999 checkKeyValue(api.KeyValue o) { |
| 1000 buildCounterKeyValue++; | 1000 buildCounterKeyValue++; |
| 1001 if (buildCounterKeyValue < 3) { | 1001 if (buildCounterKeyValue < 3) { |
| 1002 unittest.expect(o.key, unittest.equals('foo')); | 1002 unittest.expect(o.key, unittest.equals('foo')); |
| 1003 checkUnnamed3483(o.value); | 1003 checkUnnamed3297(o.value); |
| 1004 } | 1004 } |
| 1005 buildCounterKeyValue--; | 1005 buildCounterKeyValue--; |
| 1006 } | 1006 } |
| 1007 | 1007 |
| 1008 buildUnnamed3484() { | 1008 buildUnnamed3298() { |
| 1009 var o = new core.List<api.CigarUnit>(); | 1009 var o = new core.List<api.CigarUnit>(); |
| 1010 o.add(buildCigarUnit()); | 1010 o.add(buildCigarUnit()); |
| 1011 o.add(buildCigarUnit()); | 1011 o.add(buildCigarUnit()); |
| 1012 return o; | 1012 return o; |
| 1013 } | 1013 } |
| 1014 | 1014 |
| 1015 checkUnnamed3484(core.List<api.CigarUnit> o) { | 1015 checkUnnamed3298(core.List<api.CigarUnit> o) { |
| 1016 unittest.expect(o, unittest.hasLength(2)); | 1016 unittest.expect(o, unittest.hasLength(2)); |
| 1017 checkCigarUnit(o[0]); | 1017 checkCigarUnit(o[0]); |
| 1018 checkCigarUnit(o[1]); | 1018 checkCigarUnit(o[1]); |
| 1019 } | 1019 } |
| 1020 | 1020 |
| 1021 core.int buildCounterLinearAlignment = 0; | 1021 core.int buildCounterLinearAlignment = 0; |
| 1022 buildLinearAlignment() { | 1022 buildLinearAlignment() { |
| 1023 var o = new api.LinearAlignment(); | 1023 var o = new api.LinearAlignment(); |
| 1024 buildCounterLinearAlignment++; | 1024 buildCounterLinearAlignment++; |
| 1025 if (buildCounterLinearAlignment < 3) { | 1025 if (buildCounterLinearAlignment < 3) { |
| 1026 o.cigar = buildUnnamed3484(); | 1026 o.cigar = buildUnnamed3298(); |
| 1027 o.mappingQuality = 42; | 1027 o.mappingQuality = 42; |
| 1028 o.position = buildPosition(); | 1028 o.position = buildPosition(); |
| 1029 } | 1029 } |
| 1030 buildCounterLinearAlignment--; | 1030 buildCounterLinearAlignment--; |
| 1031 return o; | 1031 return o; |
| 1032 } | 1032 } |
| 1033 | 1033 |
| 1034 checkLinearAlignment(api.LinearAlignment o) { | 1034 checkLinearAlignment(api.LinearAlignment o) { |
| 1035 buildCounterLinearAlignment++; | 1035 buildCounterLinearAlignment++; |
| 1036 if (buildCounterLinearAlignment < 3) { | 1036 if (buildCounterLinearAlignment < 3) { |
| 1037 checkUnnamed3484(o.cigar); | 1037 checkUnnamed3298(o.cigar); |
| 1038 unittest.expect(o.mappingQuality, unittest.equals(42)); | 1038 unittest.expect(o.mappingQuality, unittest.equals(42)); |
| 1039 checkPosition(o.position); | 1039 checkPosition(o.position); |
| 1040 } | 1040 } |
| 1041 buildCounterLinearAlignment--; | 1041 buildCounterLinearAlignment--; |
| 1042 } | 1042 } |
| 1043 | 1043 |
| 1044 core.int buildCounterListBasesResponse = 0; | 1044 core.int buildCounterListBasesResponse = 0; |
| 1045 buildListBasesResponse() { | 1045 buildListBasesResponse() { |
| 1046 var o = new api.ListBasesResponse(); | 1046 var o = new api.ListBasesResponse(); |
| 1047 buildCounterListBasesResponse++; | 1047 buildCounterListBasesResponse++; |
| 1048 if (buildCounterListBasesResponse < 3) { | 1048 if (buildCounterListBasesResponse < 3) { |
| 1049 o.nextPageToken = "foo"; | 1049 o.nextPageToken = "foo"; |
| 1050 o.offset = "foo"; | 1050 o.offset = "foo"; |
| 1051 o.sequence = "foo"; | 1051 o.sequence = "foo"; |
| 1052 } | 1052 } |
| 1053 buildCounterListBasesResponse--; | 1053 buildCounterListBasesResponse--; |
| 1054 return o; | 1054 return o; |
| 1055 } | 1055 } |
| 1056 | 1056 |
| 1057 checkListBasesResponse(api.ListBasesResponse o) { | 1057 checkListBasesResponse(api.ListBasesResponse o) { |
| 1058 buildCounterListBasesResponse++; | 1058 buildCounterListBasesResponse++; |
| 1059 if (buildCounterListBasesResponse < 3) { | 1059 if (buildCounterListBasesResponse < 3) { |
| 1060 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1060 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1061 unittest.expect(o.offset, unittest.equals('foo')); | 1061 unittest.expect(o.offset, unittest.equals('foo')); |
| 1062 unittest.expect(o.sequence, unittest.equals('foo')); | 1062 unittest.expect(o.sequence, unittest.equals('foo')); |
| 1063 } | 1063 } |
| 1064 buildCounterListBasesResponse--; | 1064 buildCounterListBasesResponse--; |
| 1065 } | 1065 } |
| 1066 | 1066 |
| 1067 buildUnnamed3485() { | 1067 buildUnnamed3299() { |
| 1068 var o = new core.List<api.CoverageBucket>(); | 1068 var o = new core.List<api.CoverageBucket>(); |
| 1069 o.add(buildCoverageBucket()); | 1069 o.add(buildCoverageBucket()); |
| 1070 o.add(buildCoverageBucket()); | 1070 o.add(buildCoverageBucket()); |
| 1071 return o; | 1071 return o; |
| 1072 } | 1072 } |
| 1073 | 1073 |
| 1074 checkUnnamed3485(core.List<api.CoverageBucket> o) { | 1074 checkUnnamed3299(core.List<api.CoverageBucket> o) { |
| 1075 unittest.expect(o, unittest.hasLength(2)); | 1075 unittest.expect(o, unittest.hasLength(2)); |
| 1076 checkCoverageBucket(o[0]); | 1076 checkCoverageBucket(o[0]); |
| 1077 checkCoverageBucket(o[1]); | 1077 checkCoverageBucket(o[1]); |
| 1078 } | 1078 } |
| 1079 | 1079 |
| 1080 core.int buildCounterListCoverageBucketsResponse = 0; | 1080 core.int buildCounterListCoverageBucketsResponse = 0; |
| 1081 buildListCoverageBucketsResponse() { | 1081 buildListCoverageBucketsResponse() { |
| 1082 var o = new api.ListCoverageBucketsResponse(); | 1082 var o = new api.ListCoverageBucketsResponse(); |
| 1083 buildCounterListCoverageBucketsResponse++; | 1083 buildCounterListCoverageBucketsResponse++; |
| 1084 if (buildCounterListCoverageBucketsResponse < 3) { | 1084 if (buildCounterListCoverageBucketsResponse < 3) { |
| 1085 o.bucketWidth = "foo"; | 1085 o.bucketWidth = "foo"; |
| 1086 o.coverageBuckets = buildUnnamed3485(); | 1086 o.coverageBuckets = buildUnnamed3299(); |
| 1087 o.nextPageToken = "foo"; | 1087 o.nextPageToken = "foo"; |
| 1088 } | 1088 } |
| 1089 buildCounterListCoverageBucketsResponse--; | 1089 buildCounterListCoverageBucketsResponse--; |
| 1090 return o; | 1090 return o; |
| 1091 } | 1091 } |
| 1092 | 1092 |
| 1093 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { | 1093 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { |
| 1094 buildCounterListCoverageBucketsResponse++; | 1094 buildCounterListCoverageBucketsResponse++; |
| 1095 if (buildCounterListCoverageBucketsResponse < 3) { | 1095 if (buildCounterListCoverageBucketsResponse < 3) { |
| 1096 unittest.expect(o.bucketWidth, unittest.equals('foo')); | 1096 unittest.expect(o.bucketWidth, unittest.equals('foo')); |
| 1097 checkUnnamed3485(o.coverageBuckets); | 1097 checkUnnamed3299(o.coverageBuckets); |
| 1098 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1098 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1099 } | 1099 } |
| 1100 buildCounterListCoverageBucketsResponse--; | 1100 buildCounterListCoverageBucketsResponse--; |
| 1101 } | 1101 } |
| 1102 | 1102 |
| 1103 buildUnnamed3486() { | 1103 buildUnnamed3300() { |
| 1104 var o = new core.List<api.Dataset>(); | 1104 var o = new core.List<api.Dataset>(); |
| 1105 o.add(buildDataset()); | 1105 o.add(buildDataset()); |
| 1106 o.add(buildDataset()); | 1106 o.add(buildDataset()); |
| 1107 return o; | 1107 return o; |
| 1108 } | 1108 } |
| 1109 | 1109 |
| 1110 checkUnnamed3486(core.List<api.Dataset> o) { | 1110 checkUnnamed3300(core.List<api.Dataset> o) { |
| 1111 unittest.expect(o, unittest.hasLength(2)); | 1111 unittest.expect(o, unittest.hasLength(2)); |
| 1112 checkDataset(o[0]); | 1112 checkDataset(o[0]); |
| 1113 checkDataset(o[1]); | 1113 checkDataset(o[1]); |
| 1114 } | 1114 } |
| 1115 | 1115 |
| 1116 core.int buildCounterListDatasetsResponse = 0; | 1116 core.int buildCounterListDatasetsResponse = 0; |
| 1117 buildListDatasetsResponse() { | 1117 buildListDatasetsResponse() { |
| 1118 var o = new api.ListDatasetsResponse(); | 1118 var o = new api.ListDatasetsResponse(); |
| 1119 buildCounterListDatasetsResponse++; | 1119 buildCounterListDatasetsResponse++; |
| 1120 if (buildCounterListDatasetsResponse < 3) { | 1120 if (buildCounterListDatasetsResponse < 3) { |
| 1121 o.datasets = buildUnnamed3486(); | 1121 o.datasets = buildUnnamed3300(); |
| 1122 o.nextPageToken = "foo"; | 1122 o.nextPageToken = "foo"; |
| 1123 } | 1123 } |
| 1124 buildCounterListDatasetsResponse--; | 1124 buildCounterListDatasetsResponse--; |
| 1125 return o; | 1125 return o; |
| 1126 } | 1126 } |
| 1127 | 1127 |
| 1128 checkListDatasetsResponse(api.ListDatasetsResponse o) { | 1128 checkListDatasetsResponse(api.ListDatasetsResponse o) { |
| 1129 buildCounterListDatasetsResponse++; | 1129 buildCounterListDatasetsResponse++; |
| 1130 if (buildCounterListDatasetsResponse < 3) { | 1130 if (buildCounterListDatasetsResponse < 3) { |
| 1131 checkUnnamed3486(o.datasets); | 1131 checkUnnamed3300(o.datasets); |
| 1132 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1132 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1133 } | 1133 } |
| 1134 buildCounterListDatasetsResponse--; | 1134 buildCounterListDatasetsResponse--; |
| 1135 } | 1135 } |
| 1136 | 1136 |
| 1137 buildUnnamed3487() { | 1137 buildUnnamed3301() { |
| 1138 var o = new core.List<api.Variant>(); | 1138 var o = new core.List<api.Variant>(); |
| 1139 o.add(buildVariant()); | 1139 o.add(buildVariant()); |
| 1140 o.add(buildVariant()); | 1140 o.add(buildVariant()); |
| 1141 return o; | 1141 return o; |
| 1142 } | 1142 } |
| 1143 | 1143 |
| 1144 checkUnnamed3487(core.List<api.Variant> o) { | 1144 checkUnnamed3301(core.List<api.Variant> o) { |
| 1145 unittest.expect(o, unittest.hasLength(2)); | 1145 unittest.expect(o, unittest.hasLength(2)); |
| 1146 checkVariant(o[0]); | 1146 checkVariant(o[0]); |
| 1147 checkVariant(o[1]); | 1147 checkVariant(o[1]); |
| 1148 } | 1148 } |
| 1149 | 1149 |
| 1150 core.int buildCounterMergeVariantsRequest = 0; | 1150 core.int buildCounterMergeVariantsRequest = 0; |
| 1151 buildMergeVariantsRequest() { | 1151 buildMergeVariantsRequest() { |
| 1152 var o = new api.MergeVariantsRequest(); | 1152 var o = new api.MergeVariantsRequest(); |
| 1153 buildCounterMergeVariantsRequest++; | 1153 buildCounterMergeVariantsRequest++; |
| 1154 if (buildCounterMergeVariantsRequest < 3) { | 1154 if (buildCounterMergeVariantsRequest < 3) { |
| 1155 o.variants = buildUnnamed3487(); | 1155 o.variants = buildUnnamed3301(); |
| 1156 } | 1156 } |
| 1157 buildCounterMergeVariantsRequest--; | 1157 buildCounterMergeVariantsRequest--; |
| 1158 return o; | 1158 return o; |
| 1159 } | 1159 } |
| 1160 | 1160 |
| 1161 checkMergeVariantsRequest(api.MergeVariantsRequest o) { | 1161 checkMergeVariantsRequest(api.MergeVariantsRequest o) { |
| 1162 buildCounterMergeVariantsRequest++; | 1162 buildCounterMergeVariantsRequest++; |
| 1163 if (buildCounterMergeVariantsRequest < 3) { | 1163 if (buildCounterMergeVariantsRequest < 3) { |
| 1164 checkUnnamed3487(o.variants); | 1164 checkUnnamed3301(o.variants); |
| 1165 } | 1165 } |
| 1166 buildCounterMergeVariantsRequest--; | 1166 buildCounterMergeVariantsRequest--; |
| 1167 } | 1167 } |
| 1168 | 1168 |
| 1169 buildUnnamed3488() { | 1169 buildUnnamed3302() { |
| 1170 var o = new core.List<core.String>(); | 1170 var o = new core.List<core.String>(); |
| 1171 o.add("foo"); | 1171 o.add("foo"); |
| 1172 o.add("foo"); | 1172 o.add("foo"); |
| 1173 return o; | 1173 return o; |
| 1174 } | 1174 } |
| 1175 | 1175 |
| 1176 checkUnnamed3488(core.List<core.String> o) { | 1176 checkUnnamed3302(core.List<core.String> o) { |
| 1177 unittest.expect(o, unittest.hasLength(2)); | 1177 unittest.expect(o, unittest.hasLength(2)); |
| 1178 unittest.expect(o[0], unittest.equals('foo')); | 1178 unittest.expect(o[0], unittest.equals('foo')); |
| 1179 unittest.expect(o[1], unittest.equals('foo')); | 1179 unittest.expect(o[1], unittest.equals('foo')); |
| 1180 } | 1180 } |
| 1181 | 1181 |
| 1182 buildUnnamed3489() { | 1182 buildUnnamed3303() { |
| 1183 var o = new core.Map<core.String, core.List<core.String>>(); | 1183 var o = new core.Map<core.String, core.List<core.String>>(); |
| 1184 o["x"] = buildUnnamed3488(); | 1184 o["x"] = buildUnnamed3302(); |
| 1185 o["y"] = buildUnnamed3488(); | 1185 o["y"] = buildUnnamed3302(); |
| 1186 return o; | 1186 return o; |
| 1187 } | 1187 } |
| 1188 | 1188 |
| 1189 checkUnnamed3489(core.Map<core.String, core.List<core.String>> o) { | 1189 checkUnnamed3303(core.Map<core.String, core.List<core.String>> o) { |
| 1190 unittest.expect(o, unittest.hasLength(2)); | 1190 unittest.expect(o, unittest.hasLength(2)); |
| 1191 checkUnnamed3488(o["x"]); | 1191 checkUnnamed3302(o["x"]); |
| 1192 checkUnnamed3488(o["y"]); | 1192 checkUnnamed3302(o["y"]); |
| 1193 } | 1193 } |
| 1194 | 1194 |
| 1195 core.int buildCounterMetadata = 0; | 1195 core.int buildCounterMetadata = 0; |
| 1196 buildMetadata() { | 1196 buildMetadata() { |
| 1197 var o = new api.Metadata(); | 1197 var o = new api.Metadata(); |
| 1198 buildCounterMetadata++; | 1198 buildCounterMetadata++; |
| 1199 if (buildCounterMetadata < 3) { | 1199 if (buildCounterMetadata < 3) { |
| 1200 o.description = "foo"; | 1200 o.description = "foo"; |
| 1201 o.id = "foo"; | 1201 o.id = "foo"; |
| 1202 o.info = buildUnnamed3489(); | 1202 o.info = buildUnnamed3303(); |
| 1203 o.key = "foo"; | 1203 o.key = "foo"; |
| 1204 o.number = "foo"; | 1204 o.number = "foo"; |
| 1205 o.type = "foo"; | 1205 o.type = "foo"; |
| 1206 o.value = "foo"; | 1206 o.value = "foo"; |
| 1207 } | 1207 } |
| 1208 buildCounterMetadata--; | 1208 buildCounterMetadata--; |
| 1209 return o; | 1209 return o; |
| 1210 } | 1210 } |
| 1211 | 1211 |
| 1212 checkMetadata(api.Metadata o) { | 1212 checkMetadata(api.Metadata o) { |
| 1213 buildCounterMetadata++; | 1213 buildCounterMetadata++; |
| 1214 if (buildCounterMetadata < 3) { | 1214 if (buildCounterMetadata < 3) { |
| 1215 unittest.expect(o.description, unittest.equals('foo')); | 1215 unittest.expect(o.description, unittest.equals('foo')); |
| 1216 unittest.expect(o.id, unittest.equals('foo')); | 1216 unittest.expect(o.id, unittest.equals('foo')); |
| 1217 checkUnnamed3489(o.info); | 1217 checkUnnamed3303(o.info); |
| 1218 unittest.expect(o.key, unittest.equals('foo')); | 1218 unittest.expect(o.key, unittest.equals('foo')); |
| 1219 unittest.expect(o.number, unittest.equals('foo')); | 1219 unittest.expect(o.number, unittest.equals('foo')); |
| 1220 unittest.expect(o.type, unittest.equals('foo')); | 1220 unittest.expect(o.type, unittest.equals('foo')); |
| 1221 unittest.expect(o.value, unittest.equals('foo')); | 1221 unittest.expect(o.value, unittest.equals('foo')); |
| 1222 } | 1222 } |
| 1223 buildCounterMetadata--; | 1223 buildCounterMetadata--; |
| 1224 } | 1224 } |
| 1225 | 1225 |
| 1226 core.int buildCounterPosition = 0; | 1226 core.int buildCounterPosition = 0; |
| 1227 buildPosition() { | 1227 buildPosition() { |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1314 if (buildCounterRangePosition < 3) { | 1314 if (buildCounterRangePosition < 3) { |
| 1315 unittest.expect(o.end, unittest.equals('foo')); | 1315 unittest.expect(o.end, unittest.equals('foo')); |
| 1316 unittest.expect(o.referenceId, unittest.equals('foo')); | 1316 unittest.expect(o.referenceId, unittest.equals('foo')); |
| 1317 unittest.expect(o.referenceName, unittest.equals('foo')); | 1317 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 1318 unittest.expect(o.reverseStrand, unittest.isTrue); | 1318 unittest.expect(o.reverseStrand, unittest.isTrue); |
| 1319 unittest.expect(o.start, unittest.equals('foo')); | 1319 unittest.expect(o.start, unittest.equals('foo')); |
| 1320 } | 1320 } |
| 1321 buildCounterRangePosition--; | 1321 buildCounterRangePosition--; |
| 1322 } | 1322 } |
| 1323 | 1323 |
| 1324 buildUnnamed3490() { | 1324 buildUnnamed3304() { |
| 1325 var o = new core.List<core.int>(); | 1325 var o = new core.List<core.int>(); |
| 1326 o.add(42); | 1326 o.add(42); |
| 1327 o.add(42); | 1327 o.add(42); |
| 1328 return o; | 1328 return o; |
| 1329 } | 1329 } |
| 1330 | 1330 |
| 1331 checkUnnamed3490(core.List<core.int> o) { | 1331 checkUnnamed3304(core.List<core.int> o) { |
| 1332 unittest.expect(o, unittest.hasLength(2)); | 1332 unittest.expect(o, unittest.hasLength(2)); |
| 1333 unittest.expect(o[0], unittest.equals(42)); | 1333 unittest.expect(o[0], unittest.equals(42)); |
| 1334 unittest.expect(o[1], unittest.equals(42)); | 1334 unittest.expect(o[1], unittest.equals(42)); |
| 1335 } | 1335 } |
| 1336 | 1336 |
| 1337 buildUnnamed3491() { | 1337 buildUnnamed3305() { |
| 1338 var o = new core.List<core.String>(); | 1338 var o = new core.List<core.String>(); |
| 1339 o.add("foo"); | 1339 o.add("foo"); |
| 1340 o.add("foo"); | 1340 o.add("foo"); |
| 1341 return o; | 1341 return o; |
| 1342 } | 1342 } |
| 1343 | 1343 |
| 1344 checkUnnamed3491(core.List<core.String> o) { | 1344 checkUnnamed3305(core.List<core.String> o) { |
| 1345 unittest.expect(o, unittest.hasLength(2)); | 1345 unittest.expect(o, unittest.hasLength(2)); |
| 1346 unittest.expect(o[0], unittest.equals('foo')); | 1346 unittest.expect(o[0], unittest.equals('foo')); |
| 1347 unittest.expect(o[1], unittest.equals('foo')); | 1347 unittest.expect(o[1], unittest.equals('foo')); |
| 1348 } | 1348 } |
| 1349 | 1349 |
| 1350 buildUnnamed3492() { | 1350 buildUnnamed3306() { |
| 1351 var o = new core.Map<core.String, core.List<core.String>>(); | 1351 var o = new core.Map<core.String, core.List<core.String>>(); |
| 1352 o["x"] = buildUnnamed3491(); | 1352 o["x"] = buildUnnamed3305(); |
| 1353 o["y"] = buildUnnamed3491(); | 1353 o["y"] = buildUnnamed3305(); |
| 1354 return o; | 1354 return o; |
| 1355 } | 1355 } |
| 1356 | 1356 |
| 1357 checkUnnamed3492(core.Map<core.String, core.List<core.String>> o) { | 1357 checkUnnamed3306(core.Map<core.String, core.List<core.String>> o) { |
| 1358 unittest.expect(o, unittest.hasLength(2)); | 1358 unittest.expect(o, unittest.hasLength(2)); |
| 1359 checkUnnamed3491(o["x"]); | 1359 checkUnnamed3305(o["x"]); |
| 1360 checkUnnamed3491(o["y"]); | 1360 checkUnnamed3305(o["y"]); |
| 1361 } | 1361 } |
| 1362 | 1362 |
| 1363 core.int buildCounterRead = 0; | 1363 core.int buildCounterRead = 0; |
| 1364 buildRead() { | 1364 buildRead() { |
| 1365 var o = new api.Read(); | 1365 var o = new api.Read(); |
| 1366 buildCounterRead++; | 1366 buildCounterRead++; |
| 1367 if (buildCounterRead < 3) { | 1367 if (buildCounterRead < 3) { |
| 1368 o.alignedQuality = buildUnnamed3490(); | 1368 o.alignedQuality = buildUnnamed3304(); |
| 1369 o.alignedSequence = "foo"; | 1369 o.alignedSequence = "foo"; |
| 1370 o.alignment = buildLinearAlignment(); | 1370 o.alignment = buildLinearAlignment(); |
| 1371 o.duplicateFragment = true; | 1371 o.duplicateFragment = true; |
| 1372 o.failedVendorQualityChecks = true; | 1372 o.failedVendorQualityChecks = true; |
| 1373 o.fragmentLength = 42; | 1373 o.fragmentLength = 42; |
| 1374 o.fragmentName = "foo"; | 1374 o.fragmentName = "foo"; |
| 1375 o.id = "foo"; | 1375 o.id = "foo"; |
| 1376 o.info = buildUnnamed3492(); | 1376 o.info = buildUnnamed3306(); |
| 1377 o.nextMatePosition = buildPosition(); | 1377 o.nextMatePosition = buildPosition(); |
| 1378 o.numberReads = 42; | 1378 o.numberReads = 42; |
| 1379 o.properPlacement = true; | 1379 o.properPlacement = true; |
| 1380 o.readGroupId = "foo"; | 1380 o.readGroupId = "foo"; |
| 1381 o.readGroupSetId = "foo"; | 1381 o.readGroupSetId = "foo"; |
| 1382 o.readNumber = 42; | 1382 o.readNumber = 42; |
| 1383 o.secondaryAlignment = true; | 1383 o.secondaryAlignment = true; |
| 1384 o.supplementaryAlignment = true; | 1384 o.supplementaryAlignment = true; |
| 1385 } | 1385 } |
| 1386 buildCounterRead--; | 1386 buildCounterRead--; |
| 1387 return o; | 1387 return o; |
| 1388 } | 1388 } |
| 1389 | 1389 |
| 1390 checkRead(api.Read o) { | 1390 checkRead(api.Read o) { |
| 1391 buildCounterRead++; | 1391 buildCounterRead++; |
| 1392 if (buildCounterRead < 3) { | 1392 if (buildCounterRead < 3) { |
| 1393 checkUnnamed3490(o.alignedQuality); | 1393 checkUnnamed3304(o.alignedQuality); |
| 1394 unittest.expect(o.alignedSequence, unittest.equals('foo')); | 1394 unittest.expect(o.alignedSequence, unittest.equals('foo')); |
| 1395 checkLinearAlignment(o.alignment); | 1395 checkLinearAlignment(o.alignment); |
| 1396 unittest.expect(o.duplicateFragment, unittest.isTrue); | 1396 unittest.expect(o.duplicateFragment, unittest.isTrue); |
| 1397 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); | 1397 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); |
| 1398 unittest.expect(o.fragmentLength, unittest.equals(42)); | 1398 unittest.expect(o.fragmentLength, unittest.equals(42)); |
| 1399 unittest.expect(o.fragmentName, unittest.equals('foo')); | 1399 unittest.expect(o.fragmentName, unittest.equals('foo')); |
| 1400 unittest.expect(o.id, unittest.equals('foo')); | 1400 unittest.expect(o.id, unittest.equals('foo')); |
| 1401 checkUnnamed3492(o.info); | 1401 checkUnnamed3306(o.info); |
| 1402 checkPosition(o.nextMatePosition); | 1402 checkPosition(o.nextMatePosition); |
| 1403 unittest.expect(o.numberReads, unittest.equals(42)); | 1403 unittest.expect(o.numberReads, unittest.equals(42)); |
| 1404 unittest.expect(o.properPlacement, unittest.isTrue); | 1404 unittest.expect(o.properPlacement, unittest.isTrue); |
| 1405 unittest.expect(o.readGroupId, unittest.equals('foo')); | 1405 unittest.expect(o.readGroupId, unittest.equals('foo')); |
| 1406 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 1406 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
| 1407 unittest.expect(o.readNumber, unittest.equals(42)); | 1407 unittest.expect(o.readNumber, unittest.equals(42)); |
| 1408 unittest.expect(o.secondaryAlignment, unittest.isTrue); | 1408 unittest.expect(o.secondaryAlignment, unittest.isTrue); |
| 1409 unittest.expect(o.supplementaryAlignment, unittest.isTrue); | 1409 unittest.expect(o.supplementaryAlignment, unittest.isTrue); |
| 1410 } | 1410 } |
| 1411 buildCounterRead--; | 1411 buildCounterRead--; |
| 1412 } | 1412 } |
| 1413 | 1413 |
| 1414 buildUnnamed3493() { | 1414 buildUnnamed3307() { |
| 1415 var o = new core.List<core.String>(); | 1415 var o = new core.List<core.String>(); |
| 1416 o.add("foo"); | 1416 o.add("foo"); |
| 1417 o.add("foo"); | 1417 o.add("foo"); |
| 1418 return o; | 1418 return o; |
| 1419 } | 1419 } |
| 1420 | 1420 |
| 1421 checkUnnamed3493(core.List<core.String> o) { | 1421 checkUnnamed3307(core.List<core.String> o) { |
| 1422 unittest.expect(o, unittest.hasLength(2)); | 1422 unittest.expect(o, unittest.hasLength(2)); |
| 1423 unittest.expect(o[0], unittest.equals('foo')); | 1423 unittest.expect(o[0], unittest.equals('foo')); |
| 1424 unittest.expect(o[1], unittest.equals('foo')); | 1424 unittest.expect(o[1], unittest.equals('foo')); |
| 1425 } | 1425 } |
| 1426 | 1426 |
| 1427 buildUnnamed3494() { | 1427 buildUnnamed3308() { |
| 1428 var o = new core.Map<core.String, core.List<core.String>>(); | 1428 var o = new core.Map<core.String, core.List<core.String>>(); |
| 1429 o["x"] = buildUnnamed3493(); | 1429 o["x"] = buildUnnamed3307(); |
| 1430 o["y"] = buildUnnamed3493(); | 1430 o["y"] = buildUnnamed3307(); |
| 1431 return o; | 1431 return o; |
| 1432 } | 1432 } |
| 1433 | 1433 |
| 1434 checkUnnamed3494(core.Map<core.String, core.List<core.String>> o) { | 1434 checkUnnamed3308(core.Map<core.String, core.List<core.String>> o) { |
| 1435 unittest.expect(o, unittest.hasLength(2)); | 1435 unittest.expect(o, unittest.hasLength(2)); |
| 1436 checkUnnamed3493(o["x"]); | 1436 checkUnnamed3307(o["x"]); |
| 1437 checkUnnamed3493(o["y"]); | 1437 checkUnnamed3307(o["y"]); |
| 1438 } | 1438 } |
| 1439 | 1439 |
| 1440 buildUnnamed3495() { | 1440 buildUnnamed3309() { |
| 1441 var o = new core.List<api.ReadGroupProgram>(); | 1441 var o = new core.List<api.ReadGroupProgram>(); |
| 1442 o.add(buildReadGroupProgram()); | 1442 o.add(buildReadGroupProgram()); |
| 1443 o.add(buildReadGroupProgram()); | 1443 o.add(buildReadGroupProgram()); |
| 1444 return o; | 1444 return o; |
| 1445 } | 1445 } |
| 1446 | 1446 |
| 1447 checkUnnamed3495(core.List<api.ReadGroupProgram> o) { | 1447 checkUnnamed3309(core.List<api.ReadGroupProgram> o) { |
| 1448 unittest.expect(o, unittest.hasLength(2)); | 1448 unittest.expect(o, unittest.hasLength(2)); |
| 1449 checkReadGroupProgram(o[0]); | 1449 checkReadGroupProgram(o[0]); |
| 1450 checkReadGroupProgram(o[1]); | 1450 checkReadGroupProgram(o[1]); |
| 1451 } | 1451 } |
| 1452 | 1452 |
| 1453 core.int buildCounterReadGroup = 0; | 1453 core.int buildCounterReadGroup = 0; |
| 1454 buildReadGroup() { | 1454 buildReadGroup() { |
| 1455 var o = new api.ReadGroup(); | 1455 var o = new api.ReadGroup(); |
| 1456 buildCounterReadGroup++; | 1456 buildCounterReadGroup++; |
| 1457 if (buildCounterReadGroup < 3) { | 1457 if (buildCounterReadGroup < 3) { |
| 1458 o.datasetId = "foo"; | 1458 o.datasetId = "foo"; |
| 1459 o.description = "foo"; | 1459 o.description = "foo"; |
| 1460 o.experiment = buildReadGroupExperiment(); | 1460 o.experiment = buildReadGroupExperiment(); |
| 1461 o.id = "foo"; | 1461 o.id = "foo"; |
| 1462 o.info = buildUnnamed3494(); | 1462 o.info = buildUnnamed3308(); |
| 1463 o.name = "foo"; | 1463 o.name = "foo"; |
| 1464 o.predictedInsertSize = 42; | 1464 o.predictedInsertSize = 42; |
| 1465 o.programs = buildUnnamed3495(); | 1465 o.programs = buildUnnamed3309(); |
| 1466 o.referenceSetId = "foo"; | 1466 o.referenceSetId = "foo"; |
| 1467 o.sampleId = "foo"; | 1467 o.sampleId = "foo"; |
| 1468 } | 1468 } |
| 1469 buildCounterReadGroup--; | 1469 buildCounterReadGroup--; |
| 1470 return o; | 1470 return o; |
| 1471 } | 1471 } |
| 1472 | 1472 |
| 1473 checkReadGroup(api.ReadGroup o) { | 1473 checkReadGroup(api.ReadGroup o) { |
| 1474 buildCounterReadGroup++; | 1474 buildCounterReadGroup++; |
| 1475 if (buildCounterReadGroup < 3) { | 1475 if (buildCounterReadGroup < 3) { |
| 1476 unittest.expect(o.datasetId, unittest.equals('foo')); | 1476 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 1477 unittest.expect(o.description, unittest.equals('foo')); | 1477 unittest.expect(o.description, unittest.equals('foo')); |
| 1478 checkReadGroupExperiment(o.experiment); | 1478 checkReadGroupExperiment(o.experiment); |
| 1479 unittest.expect(o.id, unittest.equals('foo')); | 1479 unittest.expect(o.id, unittest.equals('foo')); |
| 1480 checkUnnamed3494(o.info); | 1480 checkUnnamed3308(o.info); |
| 1481 unittest.expect(o.name, unittest.equals('foo')); | 1481 unittest.expect(o.name, unittest.equals('foo')); |
| 1482 unittest.expect(o.predictedInsertSize, unittest.equals(42)); | 1482 unittest.expect(o.predictedInsertSize, unittest.equals(42)); |
| 1483 checkUnnamed3495(o.programs); | 1483 checkUnnamed3309(o.programs); |
| 1484 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1484 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 1485 unittest.expect(o.sampleId, unittest.equals('foo')); | 1485 unittest.expect(o.sampleId, unittest.equals('foo')); |
| 1486 } | 1486 } |
| 1487 buildCounterReadGroup--; | 1487 buildCounterReadGroup--; |
| 1488 } | 1488 } |
| 1489 | 1489 |
| 1490 core.int buildCounterReadGroupExperiment = 0; | 1490 core.int buildCounterReadGroupExperiment = 0; |
| 1491 buildReadGroupExperiment() { | 1491 buildReadGroupExperiment() { |
| 1492 var o = new api.ReadGroupExperiment(); | 1492 var o = new api.ReadGroupExperiment(); |
| 1493 buildCounterReadGroupExperiment++; | 1493 buildCounterReadGroupExperiment++; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1532 if (buildCounterReadGroupProgram < 3) { | 1532 if (buildCounterReadGroupProgram < 3) { |
| 1533 unittest.expect(o.commandLine, unittest.equals('foo')); | 1533 unittest.expect(o.commandLine, unittest.equals('foo')); |
| 1534 unittest.expect(o.id, unittest.equals('foo')); | 1534 unittest.expect(o.id, unittest.equals('foo')); |
| 1535 unittest.expect(o.name, unittest.equals('foo')); | 1535 unittest.expect(o.name, unittest.equals('foo')); |
| 1536 unittest.expect(o.prevProgramId, unittest.equals('foo')); | 1536 unittest.expect(o.prevProgramId, unittest.equals('foo')); |
| 1537 unittest.expect(o.version, unittest.equals('foo')); | 1537 unittest.expect(o.version, unittest.equals('foo')); |
| 1538 } | 1538 } |
| 1539 buildCounterReadGroupProgram--; | 1539 buildCounterReadGroupProgram--; |
| 1540 } | 1540 } |
| 1541 | 1541 |
| 1542 buildUnnamed3496() { | 1542 buildUnnamed3310() { |
| 1543 var o = new core.List<core.String>(); | 1543 var o = new core.List<core.String>(); |
| 1544 o.add("foo"); | 1544 o.add("foo"); |
| 1545 o.add("foo"); | 1545 o.add("foo"); |
| 1546 return o; | 1546 return o; |
| 1547 } | 1547 } |
| 1548 | 1548 |
| 1549 checkUnnamed3496(core.List<core.String> o) { | 1549 checkUnnamed3310(core.List<core.String> o) { |
| 1550 unittest.expect(o, unittest.hasLength(2)); | 1550 unittest.expect(o, unittest.hasLength(2)); |
| 1551 unittest.expect(o[0], unittest.equals('foo')); | 1551 unittest.expect(o[0], unittest.equals('foo')); |
| 1552 unittest.expect(o[1], unittest.equals('foo')); | 1552 unittest.expect(o[1], unittest.equals('foo')); |
| 1553 } | 1553 } |
| 1554 | 1554 |
| 1555 buildUnnamed3497() { | 1555 buildUnnamed3311() { |
| 1556 var o = new core.Map<core.String, core.List<core.String>>(); | 1556 var o = new core.Map<core.String, core.List<core.String>>(); |
| 1557 o["x"] = buildUnnamed3496(); | 1557 o["x"] = buildUnnamed3310(); |
| 1558 o["y"] = buildUnnamed3496(); | 1558 o["y"] = buildUnnamed3310(); |
| 1559 return o; | 1559 return o; |
| 1560 } | 1560 } |
| 1561 | 1561 |
| 1562 checkUnnamed3497(core.Map<core.String, core.List<core.String>> o) { | 1562 checkUnnamed3311(core.Map<core.String, core.List<core.String>> o) { |
| 1563 unittest.expect(o, unittest.hasLength(2)); | 1563 unittest.expect(o, unittest.hasLength(2)); |
| 1564 checkUnnamed3496(o["x"]); | 1564 checkUnnamed3310(o["x"]); |
| 1565 checkUnnamed3496(o["y"]); | 1565 checkUnnamed3310(o["y"]); |
| 1566 } | 1566 } |
| 1567 | 1567 |
| 1568 buildUnnamed3498() { | 1568 buildUnnamed3312() { |
| 1569 var o = new core.List<api.ReadGroup>(); | 1569 var o = new core.List<api.ReadGroup>(); |
| 1570 o.add(buildReadGroup()); | 1570 o.add(buildReadGroup()); |
| 1571 o.add(buildReadGroup()); | 1571 o.add(buildReadGroup()); |
| 1572 return o; | 1572 return o; |
| 1573 } | 1573 } |
| 1574 | 1574 |
| 1575 checkUnnamed3498(core.List<api.ReadGroup> o) { | 1575 checkUnnamed3312(core.List<api.ReadGroup> o) { |
| 1576 unittest.expect(o, unittest.hasLength(2)); | 1576 unittest.expect(o, unittest.hasLength(2)); |
| 1577 checkReadGroup(o[0]); | 1577 checkReadGroup(o[0]); |
| 1578 checkReadGroup(o[1]); | 1578 checkReadGroup(o[1]); |
| 1579 } | 1579 } |
| 1580 | 1580 |
| 1581 core.int buildCounterReadGroupSet = 0; | 1581 core.int buildCounterReadGroupSet = 0; |
| 1582 buildReadGroupSet() { | 1582 buildReadGroupSet() { |
| 1583 var o = new api.ReadGroupSet(); | 1583 var o = new api.ReadGroupSet(); |
| 1584 buildCounterReadGroupSet++; | 1584 buildCounterReadGroupSet++; |
| 1585 if (buildCounterReadGroupSet < 3) { | 1585 if (buildCounterReadGroupSet < 3) { |
| 1586 o.datasetId = "foo"; | 1586 o.datasetId = "foo"; |
| 1587 o.filename = "foo"; | 1587 o.filename = "foo"; |
| 1588 o.id = "foo"; | 1588 o.id = "foo"; |
| 1589 o.info = buildUnnamed3497(); | 1589 o.info = buildUnnamed3311(); |
| 1590 o.name = "foo"; | 1590 o.name = "foo"; |
| 1591 o.readGroups = buildUnnamed3498(); | 1591 o.readGroups = buildUnnamed3312(); |
| 1592 o.referenceSetId = "foo"; | 1592 o.referenceSetId = "foo"; |
| 1593 } | 1593 } |
| 1594 buildCounterReadGroupSet--; | 1594 buildCounterReadGroupSet--; |
| 1595 return o; | 1595 return o; |
| 1596 } | 1596 } |
| 1597 | 1597 |
| 1598 checkReadGroupSet(api.ReadGroupSet o) { | 1598 checkReadGroupSet(api.ReadGroupSet o) { |
| 1599 buildCounterReadGroupSet++; | 1599 buildCounterReadGroupSet++; |
| 1600 if (buildCounterReadGroupSet < 3) { | 1600 if (buildCounterReadGroupSet < 3) { |
| 1601 unittest.expect(o.datasetId, unittest.equals('foo')); | 1601 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 1602 unittest.expect(o.filename, unittest.equals('foo')); | 1602 unittest.expect(o.filename, unittest.equals('foo')); |
| 1603 unittest.expect(o.id, unittest.equals('foo')); | 1603 unittest.expect(o.id, unittest.equals('foo')); |
| 1604 checkUnnamed3497(o.info); | 1604 checkUnnamed3311(o.info); |
| 1605 unittest.expect(o.name, unittest.equals('foo')); | 1605 unittest.expect(o.name, unittest.equals('foo')); |
| 1606 checkUnnamed3498(o.readGroups); | 1606 checkUnnamed3312(o.readGroups); |
| 1607 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1607 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 1608 } | 1608 } |
| 1609 buildCounterReadGroupSet--; | 1609 buildCounterReadGroupSet--; |
| 1610 } | 1610 } |
| 1611 | 1611 |
| 1612 buildUnnamed3499() { | 1612 buildUnnamed3313() { |
| 1613 var o = new core.List<core.String>(); | 1613 var o = new core.List<core.String>(); |
| 1614 o.add("foo"); | 1614 o.add("foo"); |
| 1615 o.add("foo"); | 1615 o.add("foo"); |
| 1616 return o; | 1616 return o; |
| 1617 } | 1617 } |
| 1618 | 1618 |
| 1619 checkUnnamed3499(core.List<core.String> o) { | 1619 checkUnnamed3313(core.List<core.String> o) { |
| 1620 unittest.expect(o, unittest.hasLength(2)); | 1620 unittest.expect(o, unittest.hasLength(2)); |
| 1621 unittest.expect(o[0], unittest.equals('foo')); | 1621 unittest.expect(o[0], unittest.equals('foo')); |
| 1622 unittest.expect(o[1], unittest.equals('foo')); | 1622 unittest.expect(o[1], unittest.equals('foo')); |
| 1623 } | 1623 } |
| 1624 | 1624 |
| 1625 core.int buildCounterReference = 0; | 1625 core.int buildCounterReference = 0; |
| 1626 buildReference() { | 1626 buildReference() { |
| 1627 var o = new api.Reference(); | 1627 var o = new api.Reference(); |
| 1628 buildCounterReference++; | 1628 buildCounterReference++; |
| 1629 if (buildCounterReference < 3) { | 1629 if (buildCounterReference < 3) { |
| 1630 o.id = "foo"; | 1630 o.id = "foo"; |
| 1631 o.length = "foo"; | 1631 o.length = "foo"; |
| 1632 o.md5checksum = "foo"; | 1632 o.md5checksum = "foo"; |
| 1633 o.name = "foo"; | 1633 o.name = "foo"; |
| 1634 o.ncbiTaxonId = 42; | 1634 o.ncbiTaxonId = 42; |
| 1635 o.sourceAccessions = buildUnnamed3499(); | 1635 o.sourceAccessions = buildUnnamed3313(); |
| 1636 o.sourceURI = "foo"; | 1636 o.sourceURI = "foo"; |
| 1637 } | 1637 } |
| 1638 buildCounterReference--; | 1638 buildCounterReference--; |
| 1639 return o; | 1639 return o; |
| 1640 } | 1640 } |
| 1641 | 1641 |
| 1642 checkReference(api.Reference o) { | 1642 checkReference(api.Reference o) { |
| 1643 buildCounterReference++; | 1643 buildCounterReference++; |
| 1644 if (buildCounterReference < 3) { | 1644 if (buildCounterReference < 3) { |
| 1645 unittest.expect(o.id, unittest.equals('foo')); | 1645 unittest.expect(o.id, unittest.equals('foo')); |
| 1646 unittest.expect(o.length, unittest.equals('foo')); | 1646 unittest.expect(o.length, unittest.equals('foo')); |
| 1647 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1647 unittest.expect(o.md5checksum, unittest.equals('foo')); |
| 1648 unittest.expect(o.name, unittest.equals('foo')); | 1648 unittest.expect(o.name, unittest.equals('foo')); |
| 1649 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1649 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
| 1650 checkUnnamed3499(o.sourceAccessions); | 1650 checkUnnamed3313(o.sourceAccessions); |
| 1651 unittest.expect(o.sourceURI, unittest.equals('foo')); | 1651 unittest.expect(o.sourceURI, unittest.equals('foo')); |
| 1652 } | 1652 } |
| 1653 buildCounterReference--; | 1653 buildCounterReference--; |
| 1654 } | 1654 } |
| 1655 | 1655 |
| 1656 core.int buildCounterReferenceBound = 0; | 1656 core.int buildCounterReferenceBound = 0; |
| 1657 buildReferenceBound() { | 1657 buildReferenceBound() { |
| 1658 var o = new api.ReferenceBound(); | 1658 var o = new api.ReferenceBound(); |
| 1659 buildCounterReferenceBound++; | 1659 buildCounterReferenceBound++; |
| 1660 if (buildCounterReferenceBound < 3) { | 1660 if (buildCounterReferenceBound < 3) { |
| 1661 o.referenceName = "foo"; | 1661 o.referenceName = "foo"; |
| 1662 o.upperBound = "foo"; | 1662 o.upperBound = "foo"; |
| 1663 } | 1663 } |
| 1664 buildCounterReferenceBound--; | 1664 buildCounterReferenceBound--; |
| 1665 return o; | 1665 return o; |
| 1666 } | 1666 } |
| 1667 | 1667 |
| 1668 checkReferenceBound(api.ReferenceBound o) { | 1668 checkReferenceBound(api.ReferenceBound o) { |
| 1669 buildCounterReferenceBound++; | 1669 buildCounterReferenceBound++; |
| 1670 if (buildCounterReferenceBound < 3) { | 1670 if (buildCounterReferenceBound < 3) { |
| 1671 unittest.expect(o.referenceName, unittest.equals('foo')); | 1671 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 1672 unittest.expect(o.upperBound, unittest.equals('foo')); | 1672 unittest.expect(o.upperBound, unittest.equals('foo')); |
| 1673 } | 1673 } |
| 1674 buildCounterReferenceBound--; | 1674 buildCounterReferenceBound--; |
| 1675 } | 1675 } |
| 1676 | 1676 |
| 1677 buildUnnamed3500() { | 1677 buildUnnamed3314() { |
| 1678 var o = new core.List<core.String>(); | 1678 var o = new core.List<core.String>(); |
| 1679 o.add("foo"); | 1679 o.add("foo"); |
| 1680 o.add("foo"); | 1680 o.add("foo"); |
| 1681 return o; | 1681 return o; |
| 1682 } | 1682 } |
| 1683 | 1683 |
| 1684 checkUnnamed3500(core.List<core.String> o) { | 1684 checkUnnamed3314(core.List<core.String> o) { |
| 1685 unittest.expect(o, unittest.hasLength(2)); | 1685 unittest.expect(o, unittest.hasLength(2)); |
| 1686 unittest.expect(o[0], unittest.equals('foo')); | 1686 unittest.expect(o[0], unittest.equals('foo')); |
| 1687 unittest.expect(o[1], unittest.equals('foo')); | 1687 unittest.expect(o[1], unittest.equals('foo')); |
| 1688 } | 1688 } |
| 1689 | 1689 |
| 1690 buildUnnamed3501() { | 1690 buildUnnamed3315() { |
| 1691 var o = new core.List<core.String>(); | 1691 var o = new core.List<core.String>(); |
| 1692 o.add("foo"); | 1692 o.add("foo"); |
| 1693 o.add("foo"); | 1693 o.add("foo"); |
| 1694 return o; | 1694 return o; |
| 1695 } | 1695 } |
| 1696 | 1696 |
| 1697 checkUnnamed3501(core.List<core.String> o) { | 1697 checkUnnamed3315(core.List<core.String> o) { |
| 1698 unittest.expect(o, unittest.hasLength(2)); | 1698 unittest.expect(o, unittest.hasLength(2)); |
| 1699 unittest.expect(o[0], unittest.equals('foo')); | 1699 unittest.expect(o[0], unittest.equals('foo')); |
| 1700 unittest.expect(o[1], unittest.equals('foo')); | 1700 unittest.expect(o[1], unittest.equals('foo')); |
| 1701 } | 1701 } |
| 1702 | 1702 |
| 1703 core.int buildCounterReferenceSet = 0; | 1703 core.int buildCounterReferenceSet = 0; |
| 1704 buildReferenceSet() { | 1704 buildReferenceSet() { |
| 1705 var o = new api.ReferenceSet(); | 1705 var o = new api.ReferenceSet(); |
| 1706 buildCounterReferenceSet++; | 1706 buildCounterReferenceSet++; |
| 1707 if (buildCounterReferenceSet < 3) { | 1707 if (buildCounterReferenceSet < 3) { |
| 1708 o.assemblyId = "foo"; | 1708 o.assemblyId = "foo"; |
| 1709 o.description = "foo"; | 1709 o.description = "foo"; |
| 1710 o.id = "foo"; | 1710 o.id = "foo"; |
| 1711 o.md5checksum = "foo"; | 1711 o.md5checksum = "foo"; |
| 1712 o.ncbiTaxonId = 42; | 1712 o.ncbiTaxonId = 42; |
| 1713 o.referenceIds = buildUnnamed3500(); | 1713 o.referenceIds = buildUnnamed3314(); |
| 1714 o.sourceAccessions = buildUnnamed3501(); | 1714 o.sourceAccessions = buildUnnamed3315(); |
| 1715 o.sourceURI = "foo"; | 1715 o.sourceURI = "foo"; |
| 1716 } | 1716 } |
| 1717 buildCounterReferenceSet--; | 1717 buildCounterReferenceSet--; |
| 1718 return o; | 1718 return o; |
| 1719 } | 1719 } |
| 1720 | 1720 |
| 1721 checkReferenceSet(api.ReferenceSet o) { | 1721 checkReferenceSet(api.ReferenceSet o) { |
| 1722 buildCounterReferenceSet++; | 1722 buildCounterReferenceSet++; |
| 1723 if (buildCounterReferenceSet < 3) { | 1723 if (buildCounterReferenceSet < 3) { |
| 1724 unittest.expect(o.assemblyId, unittest.equals('foo')); | 1724 unittest.expect(o.assemblyId, unittest.equals('foo')); |
| 1725 unittest.expect(o.description, unittest.equals('foo')); | 1725 unittest.expect(o.description, unittest.equals('foo')); |
| 1726 unittest.expect(o.id, unittest.equals('foo')); | 1726 unittest.expect(o.id, unittest.equals('foo')); |
| 1727 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1727 unittest.expect(o.md5checksum, unittest.equals('foo')); |
| 1728 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1728 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
| 1729 checkUnnamed3500(o.referenceIds); | 1729 checkUnnamed3314(o.referenceIds); |
| 1730 checkUnnamed3501(o.sourceAccessions); | 1730 checkUnnamed3315(o.sourceAccessions); |
| 1731 unittest.expect(o.sourceURI, unittest.equals('foo')); | 1731 unittest.expect(o.sourceURI, unittest.equals('foo')); |
| 1732 } | 1732 } |
| 1733 buildCounterReferenceSet--; | 1733 buildCounterReferenceSet--; |
| 1734 } | 1734 } |
| 1735 | 1735 |
| 1736 buildUnnamed3502() { | 1736 buildUnnamed3316() { |
| 1737 var o = new core.List<core.String>(); | 1737 var o = new core.List<core.String>(); |
| 1738 o.add("foo"); | 1738 o.add("foo"); |
| 1739 o.add("foo"); | 1739 o.add("foo"); |
| 1740 return o; | 1740 return o; |
| 1741 } | 1741 } |
| 1742 | 1742 |
| 1743 checkUnnamed3502(core.List<core.String> o) { | 1743 checkUnnamed3316(core.List<core.String> o) { |
| 1744 unittest.expect(o, unittest.hasLength(2)); | 1744 unittest.expect(o, unittest.hasLength(2)); |
| 1745 unittest.expect(o[0], unittest.equals('foo')); | 1745 unittest.expect(o[0], unittest.equals('foo')); |
| 1746 unittest.expect(o[1], unittest.equals('foo')); | 1746 unittest.expect(o[1], unittest.equals('foo')); |
| 1747 } | 1747 } |
| 1748 | 1748 |
| 1749 buildUnnamed3503() { | 1749 buildUnnamed3317() { |
| 1750 var o = new core.List<core.String>(); | 1750 var o = new core.List<core.String>(); |
| 1751 o.add("foo"); | 1751 o.add("foo"); |
| 1752 o.add("foo"); | 1752 o.add("foo"); |
| 1753 return o; | 1753 return o; |
| 1754 } | 1754 } |
| 1755 | 1755 |
| 1756 checkUnnamed3503(core.List<core.String> o) { | 1756 checkUnnamed3317(core.List<core.String> o) { |
| 1757 unittest.expect(o, unittest.hasLength(2)); | 1757 unittest.expect(o, unittest.hasLength(2)); |
| 1758 unittest.expect(o[0], unittest.equals('foo')); | 1758 unittest.expect(o[0], unittest.equals('foo')); |
| 1759 unittest.expect(o[1], unittest.equals('foo')); | 1759 unittest.expect(o[1], unittest.equals('foo')); |
| 1760 } | 1760 } |
| 1761 | 1761 |
| 1762 core.int buildCounterSearchAnnotationSetsRequest = 0; | 1762 core.int buildCounterSearchAnnotationSetsRequest = 0; |
| 1763 buildSearchAnnotationSetsRequest() { | 1763 buildSearchAnnotationSetsRequest() { |
| 1764 var o = new api.SearchAnnotationSetsRequest(); | 1764 var o = new api.SearchAnnotationSetsRequest(); |
| 1765 buildCounterSearchAnnotationSetsRequest++; | 1765 buildCounterSearchAnnotationSetsRequest++; |
| 1766 if (buildCounterSearchAnnotationSetsRequest < 3) { | 1766 if (buildCounterSearchAnnotationSetsRequest < 3) { |
| 1767 o.datasetIds = buildUnnamed3502(); | 1767 o.datasetIds = buildUnnamed3316(); |
| 1768 o.name = "foo"; | 1768 o.name = "foo"; |
| 1769 o.pageSize = 42; | 1769 o.pageSize = 42; |
| 1770 o.pageToken = "foo"; | 1770 o.pageToken = "foo"; |
| 1771 o.referenceSetId = "foo"; | 1771 o.referenceSetId = "foo"; |
| 1772 o.types = buildUnnamed3503(); | 1772 o.types = buildUnnamed3317(); |
| 1773 } | 1773 } |
| 1774 buildCounterSearchAnnotationSetsRequest--; | 1774 buildCounterSearchAnnotationSetsRequest--; |
| 1775 return o; | 1775 return o; |
| 1776 } | 1776 } |
| 1777 | 1777 |
| 1778 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { | 1778 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { |
| 1779 buildCounterSearchAnnotationSetsRequest++; | 1779 buildCounterSearchAnnotationSetsRequest++; |
| 1780 if (buildCounterSearchAnnotationSetsRequest < 3) { | 1780 if (buildCounterSearchAnnotationSetsRequest < 3) { |
| 1781 checkUnnamed3502(o.datasetIds); | 1781 checkUnnamed3316(o.datasetIds); |
| 1782 unittest.expect(o.name, unittest.equals('foo')); | 1782 unittest.expect(o.name, unittest.equals('foo')); |
| 1783 unittest.expect(o.pageSize, unittest.equals(42)); | 1783 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1784 unittest.expect(o.pageToken, unittest.equals('foo')); | 1784 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1785 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1785 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 1786 checkUnnamed3503(o.types); | 1786 checkUnnamed3317(o.types); |
| 1787 } | 1787 } |
| 1788 buildCounterSearchAnnotationSetsRequest--; | 1788 buildCounterSearchAnnotationSetsRequest--; |
| 1789 } | 1789 } |
| 1790 | 1790 |
| 1791 buildUnnamed3504() { | 1791 buildUnnamed3318() { |
| 1792 var o = new core.List<api.AnnotationSet>(); | 1792 var o = new core.List<api.AnnotationSet>(); |
| 1793 o.add(buildAnnotationSet()); | 1793 o.add(buildAnnotationSet()); |
| 1794 o.add(buildAnnotationSet()); | 1794 o.add(buildAnnotationSet()); |
| 1795 return o; | 1795 return o; |
| 1796 } | 1796 } |
| 1797 | 1797 |
| 1798 checkUnnamed3504(core.List<api.AnnotationSet> o) { | 1798 checkUnnamed3318(core.List<api.AnnotationSet> o) { |
| 1799 unittest.expect(o, unittest.hasLength(2)); | 1799 unittest.expect(o, unittest.hasLength(2)); |
| 1800 checkAnnotationSet(o[0]); | 1800 checkAnnotationSet(o[0]); |
| 1801 checkAnnotationSet(o[1]); | 1801 checkAnnotationSet(o[1]); |
| 1802 } | 1802 } |
| 1803 | 1803 |
| 1804 core.int buildCounterSearchAnnotationSetsResponse = 0; | 1804 core.int buildCounterSearchAnnotationSetsResponse = 0; |
| 1805 buildSearchAnnotationSetsResponse() { | 1805 buildSearchAnnotationSetsResponse() { |
| 1806 var o = new api.SearchAnnotationSetsResponse(); | 1806 var o = new api.SearchAnnotationSetsResponse(); |
| 1807 buildCounterSearchAnnotationSetsResponse++; | 1807 buildCounterSearchAnnotationSetsResponse++; |
| 1808 if (buildCounterSearchAnnotationSetsResponse < 3) { | 1808 if (buildCounterSearchAnnotationSetsResponse < 3) { |
| 1809 o.annotationSets = buildUnnamed3504(); | 1809 o.annotationSets = buildUnnamed3318(); |
| 1810 o.nextPageToken = "foo"; | 1810 o.nextPageToken = "foo"; |
| 1811 } | 1811 } |
| 1812 buildCounterSearchAnnotationSetsResponse--; | 1812 buildCounterSearchAnnotationSetsResponse--; |
| 1813 return o; | 1813 return o; |
| 1814 } | 1814 } |
| 1815 | 1815 |
| 1816 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { | 1816 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { |
| 1817 buildCounterSearchAnnotationSetsResponse++; | 1817 buildCounterSearchAnnotationSetsResponse++; |
| 1818 if (buildCounterSearchAnnotationSetsResponse < 3) { | 1818 if (buildCounterSearchAnnotationSetsResponse < 3) { |
| 1819 checkUnnamed3504(o.annotationSets); | 1819 checkUnnamed3318(o.annotationSets); |
| 1820 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1820 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1821 } | 1821 } |
| 1822 buildCounterSearchAnnotationSetsResponse--; | 1822 buildCounterSearchAnnotationSetsResponse--; |
| 1823 } | 1823 } |
| 1824 | 1824 |
| 1825 buildUnnamed3505() { | 1825 buildUnnamed3319() { |
| 1826 var o = new core.List<core.String>(); | 1826 var o = new core.List<core.String>(); |
| 1827 o.add("foo"); | 1827 o.add("foo"); |
| 1828 o.add("foo"); | 1828 o.add("foo"); |
| 1829 return o; | 1829 return o; |
| 1830 } | 1830 } |
| 1831 | 1831 |
| 1832 checkUnnamed3505(core.List<core.String> o) { | 1832 checkUnnamed3319(core.List<core.String> o) { |
| 1833 unittest.expect(o, unittest.hasLength(2)); | 1833 unittest.expect(o, unittest.hasLength(2)); |
| 1834 unittest.expect(o[0], unittest.equals('foo')); | 1834 unittest.expect(o[0], unittest.equals('foo')); |
| 1835 unittest.expect(o[1], unittest.equals('foo')); | 1835 unittest.expect(o[1], unittest.equals('foo')); |
| 1836 } | 1836 } |
| 1837 | 1837 |
| 1838 core.int buildCounterSearchAnnotationsRequest = 0; | 1838 core.int buildCounterSearchAnnotationsRequest = 0; |
| 1839 buildSearchAnnotationsRequest() { | 1839 buildSearchAnnotationsRequest() { |
| 1840 var o = new api.SearchAnnotationsRequest(); | 1840 var o = new api.SearchAnnotationsRequest(); |
| 1841 buildCounterSearchAnnotationsRequest++; | 1841 buildCounterSearchAnnotationsRequest++; |
| 1842 if (buildCounterSearchAnnotationsRequest < 3) { | 1842 if (buildCounterSearchAnnotationsRequest < 3) { |
| 1843 o.annotationSetIds = buildUnnamed3505(); | 1843 o.annotationSetIds = buildUnnamed3319(); |
| 1844 o.pageSize = 42; | 1844 o.pageSize = 42; |
| 1845 o.pageToken = "foo"; | 1845 o.pageToken = "foo"; |
| 1846 o.range = buildQueryRange(); | 1846 o.range = buildQueryRange(); |
| 1847 } | 1847 } |
| 1848 buildCounterSearchAnnotationsRequest--; | 1848 buildCounterSearchAnnotationsRequest--; |
| 1849 return o; | 1849 return o; |
| 1850 } | 1850 } |
| 1851 | 1851 |
| 1852 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { | 1852 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { |
| 1853 buildCounterSearchAnnotationsRequest++; | 1853 buildCounterSearchAnnotationsRequest++; |
| 1854 if (buildCounterSearchAnnotationsRequest < 3) { | 1854 if (buildCounterSearchAnnotationsRequest < 3) { |
| 1855 checkUnnamed3505(o.annotationSetIds); | 1855 checkUnnamed3319(o.annotationSetIds); |
| 1856 unittest.expect(o.pageSize, unittest.equals(42)); | 1856 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1857 unittest.expect(o.pageToken, unittest.equals('foo')); | 1857 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1858 checkQueryRange(o.range); | 1858 checkQueryRange(o.range); |
| 1859 } | 1859 } |
| 1860 buildCounterSearchAnnotationsRequest--; | 1860 buildCounterSearchAnnotationsRequest--; |
| 1861 } | 1861 } |
| 1862 | 1862 |
| 1863 buildUnnamed3506() { | 1863 buildUnnamed3320() { |
| 1864 var o = new core.List<api.Annotation>(); | 1864 var o = new core.List<api.Annotation>(); |
| 1865 o.add(buildAnnotation()); | 1865 o.add(buildAnnotation()); |
| 1866 o.add(buildAnnotation()); | 1866 o.add(buildAnnotation()); |
| 1867 return o; | 1867 return o; |
| 1868 } | 1868 } |
| 1869 | 1869 |
| 1870 checkUnnamed3506(core.List<api.Annotation> o) { | 1870 checkUnnamed3320(core.List<api.Annotation> o) { |
| 1871 unittest.expect(o, unittest.hasLength(2)); | 1871 unittest.expect(o, unittest.hasLength(2)); |
| 1872 checkAnnotation(o[0]); | 1872 checkAnnotation(o[0]); |
| 1873 checkAnnotation(o[1]); | 1873 checkAnnotation(o[1]); |
| 1874 } | 1874 } |
| 1875 | 1875 |
| 1876 core.int buildCounterSearchAnnotationsResponse = 0; | 1876 core.int buildCounterSearchAnnotationsResponse = 0; |
| 1877 buildSearchAnnotationsResponse() { | 1877 buildSearchAnnotationsResponse() { |
| 1878 var o = new api.SearchAnnotationsResponse(); | 1878 var o = new api.SearchAnnotationsResponse(); |
| 1879 buildCounterSearchAnnotationsResponse++; | 1879 buildCounterSearchAnnotationsResponse++; |
| 1880 if (buildCounterSearchAnnotationsResponse < 3) { | 1880 if (buildCounterSearchAnnotationsResponse < 3) { |
| 1881 o.annotations = buildUnnamed3506(); | 1881 o.annotations = buildUnnamed3320(); |
| 1882 o.nextPageToken = "foo"; | 1882 o.nextPageToken = "foo"; |
| 1883 } | 1883 } |
| 1884 buildCounterSearchAnnotationsResponse--; | 1884 buildCounterSearchAnnotationsResponse--; |
| 1885 return o; | 1885 return o; |
| 1886 } | 1886 } |
| 1887 | 1887 |
| 1888 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { | 1888 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { |
| 1889 buildCounterSearchAnnotationsResponse++; | 1889 buildCounterSearchAnnotationsResponse++; |
| 1890 if (buildCounterSearchAnnotationsResponse < 3) { | 1890 if (buildCounterSearchAnnotationsResponse < 3) { |
| 1891 checkUnnamed3506(o.annotations); | 1891 checkUnnamed3320(o.annotations); |
| 1892 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1892 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1893 } | 1893 } |
| 1894 buildCounterSearchAnnotationsResponse--; | 1894 buildCounterSearchAnnotationsResponse--; |
| 1895 } | 1895 } |
| 1896 | 1896 |
| 1897 buildUnnamed3507() { | 1897 buildUnnamed3321() { |
| 1898 var o = new core.List<core.String>(); | 1898 var o = new core.List<core.String>(); |
| 1899 o.add("foo"); | 1899 o.add("foo"); |
| 1900 o.add("foo"); | 1900 o.add("foo"); |
| 1901 return o; | 1901 return o; |
| 1902 } | 1902 } |
| 1903 | 1903 |
| 1904 checkUnnamed3507(core.List<core.String> o) { | 1904 checkUnnamed3321(core.List<core.String> o) { |
| 1905 unittest.expect(o, unittest.hasLength(2)); | 1905 unittest.expect(o, unittest.hasLength(2)); |
| 1906 unittest.expect(o[0], unittest.equals('foo')); | 1906 unittest.expect(o[0], unittest.equals('foo')); |
| 1907 unittest.expect(o[1], unittest.equals('foo')); | 1907 unittest.expect(o[1], unittest.equals('foo')); |
| 1908 } | 1908 } |
| 1909 | 1909 |
| 1910 core.int buildCounterSearchCallSetsRequest = 0; | 1910 core.int buildCounterSearchCallSetsRequest = 0; |
| 1911 buildSearchCallSetsRequest() { | 1911 buildSearchCallSetsRequest() { |
| 1912 var o = new api.SearchCallSetsRequest(); | 1912 var o = new api.SearchCallSetsRequest(); |
| 1913 buildCounterSearchCallSetsRequest++; | 1913 buildCounterSearchCallSetsRequest++; |
| 1914 if (buildCounterSearchCallSetsRequest < 3) { | 1914 if (buildCounterSearchCallSetsRequest < 3) { |
| 1915 o.name = "foo"; | 1915 o.name = "foo"; |
| 1916 o.pageSize = 42; | 1916 o.pageSize = 42; |
| 1917 o.pageToken = "foo"; | 1917 o.pageToken = "foo"; |
| 1918 o.variantSetIds = buildUnnamed3507(); | 1918 o.variantSetIds = buildUnnamed3321(); |
| 1919 } | 1919 } |
| 1920 buildCounterSearchCallSetsRequest--; | 1920 buildCounterSearchCallSetsRequest--; |
| 1921 return o; | 1921 return o; |
| 1922 } | 1922 } |
| 1923 | 1923 |
| 1924 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { | 1924 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { |
| 1925 buildCounterSearchCallSetsRequest++; | 1925 buildCounterSearchCallSetsRequest++; |
| 1926 if (buildCounterSearchCallSetsRequest < 3) { | 1926 if (buildCounterSearchCallSetsRequest < 3) { |
| 1927 unittest.expect(o.name, unittest.equals('foo')); | 1927 unittest.expect(o.name, unittest.equals('foo')); |
| 1928 unittest.expect(o.pageSize, unittest.equals(42)); | 1928 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1929 unittest.expect(o.pageToken, unittest.equals('foo')); | 1929 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1930 checkUnnamed3507(o.variantSetIds); | 1930 checkUnnamed3321(o.variantSetIds); |
| 1931 } | 1931 } |
| 1932 buildCounterSearchCallSetsRequest--; | 1932 buildCounterSearchCallSetsRequest--; |
| 1933 } | 1933 } |
| 1934 | 1934 |
| 1935 buildUnnamed3508() { | 1935 buildUnnamed3322() { |
| 1936 var o = new core.List<api.CallSet>(); | 1936 var o = new core.List<api.CallSet>(); |
| 1937 o.add(buildCallSet()); | 1937 o.add(buildCallSet()); |
| 1938 o.add(buildCallSet()); | 1938 o.add(buildCallSet()); |
| 1939 return o; | 1939 return o; |
| 1940 } | 1940 } |
| 1941 | 1941 |
| 1942 checkUnnamed3508(core.List<api.CallSet> o) { | 1942 checkUnnamed3322(core.List<api.CallSet> o) { |
| 1943 unittest.expect(o, unittest.hasLength(2)); | 1943 unittest.expect(o, unittest.hasLength(2)); |
| 1944 checkCallSet(o[0]); | 1944 checkCallSet(o[0]); |
| 1945 checkCallSet(o[1]); | 1945 checkCallSet(o[1]); |
| 1946 } | 1946 } |
| 1947 | 1947 |
| 1948 core.int buildCounterSearchCallSetsResponse = 0; | 1948 core.int buildCounterSearchCallSetsResponse = 0; |
| 1949 buildSearchCallSetsResponse() { | 1949 buildSearchCallSetsResponse() { |
| 1950 var o = new api.SearchCallSetsResponse(); | 1950 var o = new api.SearchCallSetsResponse(); |
| 1951 buildCounterSearchCallSetsResponse++; | 1951 buildCounterSearchCallSetsResponse++; |
| 1952 if (buildCounterSearchCallSetsResponse < 3) { | 1952 if (buildCounterSearchCallSetsResponse < 3) { |
| 1953 o.callSets = buildUnnamed3508(); | 1953 o.callSets = buildUnnamed3322(); |
| 1954 o.nextPageToken = "foo"; | 1954 o.nextPageToken = "foo"; |
| 1955 } | 1955 } |
| 1956 buildCounterSearchCallSetsResponse--; | 1956 buildCounterSearchCallSetsResponse--; |
| 1957 return o; | 1957 return o; |
| 1958 } | 1958 } |
| 1959 | 1959 |
| 1960 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { | 1960 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { |
| 1961 buildCounterSearchCallSetsResponse++; | 1961 buildCounterSearchCallSetsResponse++; |
| 1962 if (buildCounterSearchCallSetsResponse < 3) { | 1962 if (buildCounterSearchCallSetsResponse < 3) { |
| 1963 checkUnnamed3508(o.callSets); | 1963 checkUnnamed3322(o.callSets); |
| 1964 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1964 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1965 } | 1965 } |
| 1966 buildCounterSearchCallSetsResponse--; | 1966 buildCounterSearchCallSetsResponse--; |
| 1967 } | 1967 } |
| 1968 | 1968 |
| 1969 buildUnnamed3509() { | 1969 buildUnnamed3323() { |
| 1970 var o = new core.List<core.String>(); | 1970 var o = new core.List<core.String>(); |
| 1971 o.add("foo"); | 1971 o.add("foo"); |
| 1972 o.add("foo"); | 1972 o.add("foo"); |
| 1973 return o; | 1973 return o; |
| 1974 } | 1974 } |
| 1975 | 1975 |
| 1976 checkUnnamed3509(core.List<core.String> o) { | 1976 checkUnnamed3323(core.List<core.String> o) { |
| 1977 unittest.expect(o, unittest.hasLength(2)); | 1977 unittest.expect(o, unittest.hasLength(2)); |
| 1978 unittest.expect(o[0], unittest.equals('foo')); | 1978 unittest.expect(o[0], unittest.equals('foo')); |
| 1979 unittest.expect(o[1], unittest.equals('foo')); | 1979 unittest.expect(o[1], unittest.equals('foo')); |
| 1980 } | 1980 } |
| 1981 | 1981 |
| 1982 core.int buildCounterSearchJobsRequest = 0; | 1982 core.int buildCounterSearchJobsRequest = 0; |
| 1983 buildSearchJobsRequest() { | 1983 buildSearchJobsRequest() { |
| 1984 var o = new api.SearchJobsRequest(); | 1984 var o = new api.SearchJobsRequest(); |
| 1985 buildCounterSearchJobsRequest++; | 1985 buildCounterSearchJobsRequest++; |
| 1986 if (buildCounterSearchJobsRequest < 3) { | 1986 if (buildCounterSearchJobsRequest < 3) { |
| 1987 o.createdAfter = "foo"; | 1987 o.createdAfter = "foo"; |
| 1988 o.createdBefore = "foo"; | 1988 o.createdBefore = "foo"; |
| 1989 o.pageSize = 42; | 1989 o.pageSize = 42; |
| 1990 o.pageToken = "foo"; | 1990 o.pageToken = "foo"; |
| 1991 o.projectNumber = "foo"; | 1991 o.projectNumber = "foo"; |
| 1992 o.status = buildUnnamed3509(); | 1992 o.status = buildUnnamed3323(); |
| 1993 } | 1993 } |
| 1994 buildCounterSearchJobsRequest--; | 1994 buildCounterSearchJobsRequest--; |
| 1995 return o; | 1995 return o; |
| 1996 } | 1996 } |
| 1997 | 1997 |
| 1998 checkSearchJobsRequest(api.SearchJobsRequest o) { | 1998 checkSearchJobsRequest(api.SearchJobsRequest o) { |
| 1999 buildCounterSearchJobsRequest++; | 1999 buildCounterSearchJobsRequest++; |
| 2000 if (buildCounterSearchJobsRequest < 3) { | 2000 if (buildCounterSearchJobsRequest < 3) { |
| 2001 unittest.expect(o.createdAfter, unittest.equals('foo')); | 2001 unittest.expect(o.createdAfter, unittest.equals('foo')); |
| 2002 unittest.expect(o.createdBefore, unittest.equals('foo')); | 2002 unittest.expect(o.createdBefore, unittest.equals('foo')); |
| 2003 unittest.expect(o.pageSize, unittest.equals(42)); | 2003 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2004 unittest.expect(o.pageToken, unittest.equals('foo')); | 2004 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2005 unittest.expect(o.projectNumber, unittest.equals('foo')); | 2005 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 2006 checkUnnamed3509(o.status); | 2006 checkUnnamed3323(o.status); |
| 2007 } | 2007 } |
| 2008 buildCounterSearchJobsRequest--; | 2008 buildCounterSearchJobsRequest--; |
| 2009 } | 2009 } |
| 2010 | 2010 |
| 2011 buildUnnamed3510() { | 2011 buildUnnamed3324() { |
| 2012 var o = new core.List<api.Job>(); | 2012 var o = new core.List<api.Job>(); |
| 2013 o.add(buildJob()); | 2013 o.add(buildJob()); |
| 2014 o.add(buildJob()); | 2014 o.add(buildJob()); |
| 2015 return o; | 2015 return o; |
| 2016 } | 2016 } |
| 2017 | 2017 |
| 2018 checkUnnamed3510(core.List<api.Job> o) { | 2018 checkUnnamed3324(core.List<api.Job> o) { |
| 2019 unittest.expect(o, unittest.hasLength(2)); | 2019 unittest.expect(o, unittest.hasLength(2)); |
| 2020 checkJob(o[0]); | 2020 checkJob(o[0]); |
| 2021 checkJob(o[1]); | 2021 checkJob(o[1]); |
| 2022 } | 2022 } |
| 2023 | 2023 |
| 2024 core.int buildCounterSearchJobsResponse = 0; | 2024 core.int buildCounterSearchJobsResponse = 0; |
| 2025 buildSearchJobsResponse() { | 2025 buildSearchJobsResponse() { |
| 2026 var o = new api.SearchJobsResponse(); | 2026 var o = new api.SearchJobsResponse(); |
| 2027 buildCounterSearchJobsResponse++; | 2027 buildCounterSearchJobsResponse++; |
| 2028 if (buildCounterSearchJobsResponse < 3) { | 2028 if (buildCounterSearchJobsResponse < 3) { |
| 2029 o.jobs = buildUnnamed3510(); | 2029 o.jobs = buildUnnamed3324(); |
| 2030 o.nextPageToken = "foo"; | 2030 o.nextPageToken = "foo"; |
| 2031 } | 2031 } |
| 2032 buildCounterSearchJobsResponse--; | 2032 buildCounterSearchJobsResponse--; |
| 2033 return o; | 2033 return o; |
| 2034 } | 2034 } |
| 2035 | 2035 |
| 2036 checkSearchJobsResponse(api.SearchJobsResponse o) { | 2036 checkSearchJobsResponse(api.SearchJobsResponse o) { |
| 2037 buildCounterSearchJobsResponse++; | 2037 buildCounterSearchJobsResponse++; |
| 2038 if (buildCounterSearchJobsResponse < 3) { | 2038 if (buildCounterSearchJobsResponse < 3) { |
| 2039 checkUnnamed3510(o.jobs); | 2039 checkUnnamed3324(o.jobs); |
| 2040 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2040 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2041 } | 2041 } |
| 2042 buildCounterSearchJobsResponse--; | 2042 buildCounterSearchJobsResponse--; |
| 2043 } | 2043 } |
| 2044 | 2044 |
| 2045 buildUnnamed3511() { | 2045 buildUnnamed3325() { |
| 2046 var o = new core.List<core.String>(); | 2046 var o = new core.List<core.String>(); |
| 2047 o.add("foo"); | 2047 o.add("foo"); |
| 2048 o.add("foo"); | 2048 o.add("foo"); |
| 2049 return o; | 2049 return o; |
| 2050 } | 2050 } |
| 2051 | 2051 |
| 2052 checkUnnamed3511(core.List<core.String> o) { | 2052 checkUnnamed3325(core.List<core.String> o) { |
| 2053 unittest.expect(o, unittest.hasLength(2)); | 2053 unittest.expect(o, unittest.hasLength(2)); |
| 2054 unittest.expect(o[0], unittest.equals('foo')); | 2054 unittest.expect(o[0], unittest.equals('foo')); |
| 2055 unittest.expect(o[1], unittest.equals('foo')); | 2055 unittest.expect(o[1], unittest.equals('foo')); |
| 2056 } | 2056 } |
| 2057 | 2057 |
| 2058 core.int buildCounterSearchReadGroupSetsRequest = 0; | 2058 core.int buildCounterSearchReadGroupSetsRequest = 0; |
| 2059 buildSearchReadGroupSetsRequest() { | 2059 buildSearchReadGroupSetsRequest() { |
| 2060 var o = new api.SearchReadGroupSetsRequest(); | 2060 var o = new api.SearchReadGroupSetsRequest(); |
| 2061 buildCounterSearchReadGroupSetsRequest++; | 2061 buildCounterSearchReadGroupSetsRequest++; |
| 2062 if (buildCounterSearchReadGroupSetsRequest < 3) { | 2062 if (buildCounterSearchReadGroupSetsRequest < 3) { |
| 2063 o.datasetIds = buildUnnamed3511(); | 2063 o.datasetIds = buildUnnamed3325(); |
| 2064 o.name = "foo"; | 2064 o.name = "foo"; |
| 2065 o.pageSize = 42; | 2065 o.pageSize = 42; |
| 2066 o.pageToken = "foo"; | 2066 o.pageToken = "foo"; |
| 2067 } | 2067 } |
| 2068 buildCounterSearchReadGroupSetsRequest--; | 2068 buildCounterSearchReadGroupSetsRequest--; |
| 2069 return o; | 2069 return o; |
| 2070 } | 2070 } |
| 2071 | 2071 |
| 2072 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { | 2072 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { |
| 2073 buildCounterSearchReadGroupSetsRequest++; | 2073 buildCounterSearchReadGroupSetsRequest++; |
| 2074 if (buildCounterSearchReadGroupSetsRequest < 3) { | 2074 if (buildCounterSearchReadGroupSetsRequest < 3) { |
| 2075 checkUnnamed3511(o.datasetIds); | 2075 checkUnnamed3325(o.datasetIds); |
| 2076 unittest.expect(o.name, unittest.equals('foo')); | 2076 unittest.expect(o.name, unittest.equals('foo')); |
| 2077 unittest.expect(o.pageSize, unittest.equals(42)); | 2077 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2078 unittest.expect(o.pageToken, unittest.equals('foo')); | 2078 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2079 } | 2079 } |
| 2080 buildCounterSearchReadGroupSetsRequest--; | 2080 buildCounterSearchReadGroupSetsRequest--; |
| 2081 } | 2081 } |
| 2082 | 2082 |
| 2083 buildUnnamed3512() { | 2083 buildUnnamed3326() { |
| 2084 var o = new core.List<api.ReadGroupSet>(); | 2084 var o = new core.List<api.ReadGroupSet>(); |
| 2085 o.add(buildReadGroupSet()); | 2085 o.add(buildReadGroupSet()); |
| 2086 o.add(buildReadGroupSet()); | 2086 o.add(buildReadGroupSet()); |
| 2087 return o; | 2087 return o; |
| 2088 } | 2088 } |
| 2089 | 2089 |
| 2090 checkUnnamed3512(core.List<api.ReadGroupSet> o) { | 2090 checkUnnamed3326(core.List<api.ReadGroupSet> o) { |
| 2091 unittest.expect(o, unittest.hasLength(2)); | 2091 unittest.expect(o, unittest.hasLength(2)); |
| 2092 checkReadGroupSet(o[0]); | 2092 checkReadGroupSet(o[0]); |
| 2093 checkReadGroupSet(o[1]); | 2093 checkReadGroupSet(o[1]); |
| 2094 } | 2094 } |
| 2095 | 2095 |
| 2096 core.int buildCounterSearchReadGroupSetsResponse = 0; | 2096 core.int buildCounterSearchReadGroupSetsResponse = 0; |
| 2097 buildSearchReadGroupSetsResponse() { | 2097 buildSearchReadGroupSetsResponse() { |
| 2098 var o = new api.SearchReadGroupSetsResponse(); | 2098 var o = new api.SearchReadGroupSetsResponse(); |
| 2099 buildCounterSearchReadGroupSetsResponse++; | 2099 buildCounterSearchReadGroupSetsResponse++; |
| 2100 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2100 if (buildCounterSearchReadGroupSetsResponse < 3) { |
| 2101 o.nextPageToken = "foo"; | 2101 o.nextPageToken = "foo"; |
| 2102 o.readGroupSets = buildUnnamed3512(); | 2102 o.readGroupSets = buildUnnamed3326(); |
| 2103 } | 2103 } |
| 2104 buildCounterSearchReadGroupSetsResponse--; | 2104 buildCounterSearchReadGroupSetsResponse--; |
| 2105 return o; | 2105 return o; |
| 2106 } | 2106 } |
| 2107 | 2107 |
| 2108 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { | 2108 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { |
| 2109 buildCounterSearchReadGroupSetsResponse++; | 2109 buildCounterSearchReadGroupSetsResponse++; |
| 2110 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2110 if (buildCounterSearchReadGroupSetsResponse < 3) { |
| 2111 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2111 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2112 checkUnnamed3512(o.readGroupSets); | 2112 checkUnnamed3326(o.readGroupSets); |
| 2113 } | 2113 } |
| 2114 buildCounterSearchReadGroupSetsResponse--; | 2114 buildCounterSearchReadGroupSetsResponse--; |
| 2115 } | 2115 } |
| 2116 | 2116 |
| 2117 buildUnnamed3513() { | 2117 buildUnnamed3327() { |
| 2118 var o = new core.List<core.String>(); | 2118 var o = new core.List<core.String>(); |
| 2119 o.add("foo"); | 2119 o.add("foo"); |
| 2120 o.add("foo"); | 2120 o.add("foo"); |
| 2121 return o; | 2121 return o; |
| 2122 } | 2122 } |
| 2123 | 2123 |
| 2124 checkUnnamed3513(core.List<core.String> o) { | 2124 checkUnnamed3327(core.List<core.String> o) { |
| 2125 unittest.expect(o, unittest.hasLength(2)); | 2125 unittest.expect(o, unittest.hasLength(2)); |
| 2126 unittest.expect(o[0], unittest.equals('foo')); | 2126 unittest.expect(o[0], unittest.equals('foo')); |
| 2127 unittest.expect(o[1], unittest.equals('foo')); | 2127 unittest.expect(o[1], unittest.equals('foo')); |
| 2128 } | 2128 } |
| 2129 | 2129 |
| 2130 buildUnnamed3514() { | 2130 buildUnnamed3328() { |
| 2131 var o = new core.List<core.String>(); | 2131 var o = new core.List<core.String>(); |
| 2132 o.add("foo"); | 2132 o.add("foo"); |
| 2133 o.add("foo"); | 2133 o.add("foo"); |
| 2134 return o; | 2134 return o; |
| 2135 } | 2135 } |
| 2136 | 2136 |
| 2137 checkUnnamed3514(core.List<core.String> o) { | 2137 checkUnnamed3328(core.List<core.String> o) { |
| 2138 unittest.expect(o, unittest.hasLength(2)); | 2138 unittest.expect(o, unittest.hasLength(2)); |
| 2139 unittest.expect(o[0], unittest.equals('foo')); | 2139 unittest.expect(o[0], unittest.equals('foo')); |
| 2140 unittest.expect(o[1], unittest.equals('foo')); | 2140 unittest.expect(o[1], unittest.equals('foo')); |
| 2141 } | 2141 } |
| 2142 | 2142 |
| 2143 core.int buildCounterSearchReadsRequest = 0; | 2143 core.int buildCounterSearchReadsRequest = 0; |
| 2144 buildSearchReadsRequest() { | 2144 buildSearchReadsRequest() { |
| 2145 var o = new api.SearchReadsRequest(); | 2145 var o = new api.SearchReadsRequest(); |
| 2146 buildCounterSearchReadsRequest++; | 2146 buildCounterSearchReadsRequest++; |
| 2147 if (buildCounterSearchReadsRequest < 3) { | 2147 if (buildCounterSearchReadsRequest < 3) { |
| 2148 o.end = "foo"; | 2148 o.end = "foo"; |
| 2149 o.pageSize = 42; | 2149 o.pageSize = 42; |
| 2150 o.pageToken = "foo"; | 2150 o.pageToken = "foo"; |
| 2151 o.readGroupIds = buildUnnamed3513(); | 2151 o.readGroupIds = buildUnnamed3327(); |
| 2152 o.readGroupSetIds = buildUnnamed3514(); | 2152 o.readGroupSetIds = buildUnnamed3328(); |
| 2153 o.referenceName = "foo"; | 2153 o.referenceName = "foo"; |
| 2154 o.start = "foo"; | 2154 o.start = "foo"; |
| 2155 } | 2155 } |
| 2156 buildCounterSearchReadsRequest--; | 2156 buildCounterSearchReadsRequest--; |
| 2157 return o; | 2157 return o; |
| 2158 } | 2158 } |
| 2159 | 2159 |
| 2160 checkSearchReadsRequest(api.SearchReadsRequest o) { | 2160 checkSearchReadsRequest(api.SearchReadsRequest o) { |
| 2161 buildCounterSearchReadsRequest++; | 2161 buildCounterSearchReadsRequest++; |
| 2162 if (buildCounterSearchReadsRequest < 3) { | 2162 if (buildCounterSearchReadsRequest < 3) { |
| 2163 unittest.expect(o.end, unittest.equals('foo')); | 2163 unittest.expect(o.end, unittest.equals('foo')); |
| 2164 unittest.expect(o.pageSize, unittest.equals(42)); | 2164 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2165 unittest.expect(o.pageToken, unittest.equals('foo')); | 2165 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2166 checkUnnamed3513(o.readGroupIds); | 2166 checkUnnamed3327(o.readGroupIds); |
| 2167 checkUnnamed3514(o.readGroupSetIds); | 2167 checkUnnamed3328(o.readGroupSetIds); |
| 2168 unittest.expect(o.referenceName, unittest.equals('foo')); | 2168 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2169 unittest.expect(o.start, unittest.equals('foo')); | 2169 unittest.expect(o.start, unittest.equals('foo')); |
| 2170 } | 2170 } |
| 2171 buildCounterSearchReadsRequest--; | 2171 buildCounterSearchReadsRequest--; |
| 2172 } | 2172 } |
| 2173 | 2173 |
| 2174 buildUnnamed3515() { | 2174 buildUnnamed3329() { |
| 2175 var o = new core.List<api.Read>(); | 2175 var o = new core.List<api.Read>(); |
| 2176 o.add(buildRead()); | 2176 o.add(buildRead()); |
| 2177 o.add(buildRead()); | 2177 o.add(buildRead()); |
| 2178 return o; | 2178 return o; |
| 2179 } | 2179 } |
| 2180 | 2180 |
| 2181 checkUnnamed3515(core.List<api.Read> o) { | 2181 checkUnnamed3329(core.List<api.Read> o) { |
| 2182 unittest.expect(o, unittest.hasLength(2)); | 2182 unittest.expect(o, unittest.hasLength(2)); |
| 2183 checkRead(o[0]); | 2183 checkRead(o[0]); |
| 2184 checkRead(o[1]); | 2184 checkRead(o[1]); |
| 2185 } | 2185 } |
| 2186 | 2186 |
| 2187 core.int buildCounterSearchReadsResponse = 0; | 2187 core.int buildCounterSearchReadsResponse = 0; |
| 2188 buildSearchReadsResponse() { | 2188 buildSearchReadsResponse() { |
| 2189 var o = new api.SearchReadsResponse(); | 2189 var o = new api.SearchReadsResponse(); |
| 2190 buildCounterSearchReadsResponse++; | 2190 buildCounterSearchReadsResponse++; |
| 2191 if (buildCounterSearchReadsResponse < 3) { | 2191 if (buildCounterSearchReadsResponse < 3) { |
| 2192 o.alignments = buildUnnamed3515(); | 2192 o.alignments = buildUnnamed3329(); |
| 2193 o.nextPageToken = "foo"; | 2193 o.nextPageToken = "foo"; |
| 2194 } | 2194 } |
| 2195 buildCounterSearchReadsResponse--; | 2195 buildCounterSearchReadsResponse--; |
| 2196 return o; | 2196 return o; |
| 2197 } | 2197 } |
| 2198 | 2198 |
| 2199 checkSearchReadsResponse(api.SearchReadsResponse o) { | 2199 checkSearchReadsResponse(api.SearchReadsResponse o) { |
| 2200 buildCounterSearchReadsResponse++; | 2200 buildCounterSearchReadsResponse++; |
| 2201 if (buildCounterSearchReadsResponse < 3) { | 2201 if (buildCounterSearchReadsResponse < 3) { |
| 2202 checkUnnamed3515(o.alignments); | 2202 checkUnnamed3329(o.alignments); |
| 2203 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2203 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2204 } | 2204 } |
| 2205 buildCounterSearchReadsResponse--; | 2205 buildCounterSearchReadsResponse--; |
| 2206 } | 2206 } |
| 2207 | 2207 |
| 2208 buildUnnamed3516() { | 2208 buildUnnamed3330() { |
| 2209 var o = new core.List<core.String>(); | 2209 var o = new core.List<core.String>(); |
| 2210 o.add("foo"); | 2210 o.add("foo"); |
| 2211 o.add("foo"); | 2211 o.add("foo"); |
| 2212 return o; | 2212 return o; |
| 2213 } | 2213 } |
| 2214 | 2214 |
| 2215 checkUnnamed3516(core.List<core.String> o) { | 2215 checkUnnamed3330(core.List<core.String> o) { |
| 2216 unittest.expect(o, unittest.hasLength(2)); | 2216 unittest.expect(o, unittest.hasLength(2)); |
| 2217 unittest.expect(o[0], unittest.equals('foo')); | 2217 unittest.expect(o[0], unittest.equals('foo')); |
| 2218 unittest.expect(o[1], unittest.equals('foo')); | 2218 unittest.expect(o[1], unittest.equals('foo')); |
| 2219 } | 2219 } |
| 2220 | 2220 |
| 2221 buildUnnamed3517() { | 2221 buildUnnamed3331() { |
| 2222 var o = new core.List<core.String>(); | 2222 var o = new core.List<core.String>(); |
| 2223 o.add("foo"); | 2223 o.add("foo"); |
| 2224 o.add("foo"); | 2224 o.add("foo"); |
| 2225 return o; | 2225 return o; |
| 2226 } | 2226 } |
| 2227 | 2227 |
| 2228 checkUnnamed3517(core.List<core.String> o) { | 2228 checkUnnamed3331(core.List<core.String> o) { |
| 2229 unittest.expect(o, unittest.hasLength(2)); | 2229 unittest.expect(o, unittest.hasLength(2)); |
| 2230 unittest.expect(o[0], unittest.equals('foo')); | 2230 unittest.expect(o[0], unittest.equals('foo')); |
| 2231 unittest.expect(o[1], unittest.equals('foo')); | 2231 unittest.expect(o[1], unittest.equals('foo')); |
| 2232 } | 2232 } |
| 2233 | 2233 |
| 2234 core.int buildCounterSearchReferenceSetsRequest = 0; | 2234 core.int buildCounterSearchReferenceSetsRequest = 0; |
| 2235 buildSearchReferenceSetsRequest() { | 2235 buildSearchReferenceSetsRequest() { |
| 2236 var o = new api.SearchReferenceSetsRequest(); | 2236 var o = new api.SearchReferenceSetsRequest(); |
| 2237 buildCounterSearchReferenceSetsRequest++; | 2237 buildCounterSearchReferenceSetsRequest++; |
| 2238 if (buildCounterSearchReferenceSetsRequest < 3) { | 2238 if (buildCounterSearchReferenceSetsRequest < 3) { |
| 2239 o.accessions = buildUnnamed3516(); | 2239 o.accessions = buildUnnamed3330(); |
| 2240 o.assemblyId = "foo"; | 2240 o.assemblyId = "foo"; |
| 2241 o.md5checksums = buildUnnamed3517(); | 2241 o.md5checksums = buildUnnamed3331(); |
| 2242 o.pageSize = 42; | 2242 o.pageSize = 42; |
| 2243 o.pageToken = "foo"; | 2243 o.pageToken = "foo"; |
| 2244 } | 2244 } |
| 2245 buildCounterSearchReferenceSetsRequest--; | 2245 buildCounterSearchReferenceSetsRequest--; |
| 2246 return o; | 2246 return o; |
| 2247 } | 2247 } |
| 2248 | 2248 |
| 2249 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { | 2249 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { |
| 2250 buildCounterSearchReferenceSetsRequest++; | 2250 buildCounterSearchReferenceSetsRequest++; |
| 2251 if (buildCounterSearchReferenceSetsRequest < 3) { | 2251 if (buildCounterSearchReferenceSetsRequest < 3) { |
| 2252 checkUnnamed3516(o.accessions); | 2252 checkUnnamed3330(o.accessions); |
| 2253 unittest.expect(o.assemblyId, unittest.equals('foo')); | 2253 unittest.expect(o.assemblyId, unittest.equals('foo')); |
| 2254 checkUnnamed3517(o.md5checksums); | 2254 checkUnnamed3331(o.md5checksums); |
| 2255 unittest.expect(o.pageSize, unittest.equals(42)); | 2255 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2256 unittest.expect(o.pageToken, unittest.equals('foo')); | 2256 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2257 } | 2257 } |
| 2258 buildCounterSearchReferenceSetsRequest--; | 2258 buildCounterSearchReferenceSetsRequest--; |
| 2259 } | 2259 } |
| 2260 | 2260 |
| 2261 buildUnnamed3518() { | 2261 buildUnnamed3332() { |
| 2262 var o = new core.List<api.ReferenceSet>(); | 2262 var o = new core.List<api.ReferenceSet>(); |
| 2263 o.add(buildReferenceSet()); | 2263 o.add(buildReferenceSet()); |
| 2264 o.add(buildReferenceSet()); | 2264 o.add(buildReferenceSet()); |
| 2265 return o; | 2265 return o; |
| 2266 } | 2266 } |
| 2267 | 2267 |
| 2268 checkUnnamed3518(core.List<api.ReferenceSet> o) { | 2268 checkUnnamed3332(core.List<api.ReferenceSet> o) { |
| 2269 unittest.expect(o, unittest.hasLength(2)); | 2269 unittest.expect(o, unittest.hasLength(2)); |
| 2270 checkReferenceSet(o[0]); | 2270 checkReferenceSet(o[0]); |
| 2271 checkReferenceSet(o[1]); | 2271 checkReferenceSet(o[1]); |
| 2272 } | 2272 } |
| 2273 | 2273 |
| 2274 core.int buildCounterSearchReferenceSetsResponse = 0; | 2274 core.int buildCounterSearchReferenceSetsResponse = 0; |
| 2275 buildSearchReferenceSetsResponse() { | 2275 buildSearchReferenceSetsResponse() { |
| 2276 var o = new api.SearchReferenceSetsResponse(); | 2276 var o = new api.SearchReferenceSetsResponse(); |
| 2277 buildCounterSearchReferenceSetsResponse++; | 2277 buildCounterSearchReferenceSetsResponse++; |
| 2278 if (buildCounterSearchReferenceSetsResponse < 3) { | 2278 if (buildCounterSearchReferenceSetsResponse < 3) { |
| 2279 o.nextPageToken = "foo"; | 2279 o.nextPageToken = "foo"; |
| 2280 o.referenceSets = buildUnnamed3518(); | 2280 o.referenceSets = buildUnnamed3332(); |
| 2281 } | 2281 } |
| 2282 buildCounterSearchReferenceSetsResponse--; | 2282 buildCounterSearchReferenceSetsResponse--; |
| 2283 return o; | 2283 return o; |
| 2284 } | 2284 } |
| 2285 | 2285 |
| 2286 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { | 2286 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { |
| 2287 buildCounterSearchReferenceSetsResponse++; | 2287 buildCounterSearchReferenceSetsResponse++; |
| 2288 if (buildCounterSearchReferenceSetsResponse < 3) { | 2288 if (buildCounterSearchReferenceSetsResponse < 3) { |
| 2289 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2289 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2290 checkUnnamed3518(o.referenceSets); | 2290 checkUnnamed3332(o.referenceSets); |
| 2291 } | 2291 } |
| 2292 buildCounterSearchReferenceSetsResponse--; | 2292 buildCounterSearchReferenceSetsResponse--; |
| 2293 } | 2293 } |
| 2294 | 2294 |
| 2295 buildUnnamed3519() { | 2295 buildUnnamed3333() { |
| 2296 var o = new core.List<core.String>(); | 2296 var o = new core.List<core.String>(); |
| 2297 o.add("foo"); | 2297 o.add("foo"); |
| 2298 o.add("foo"); | 2298 o.add("foo"); |
| 2299 return o; | 2299 return o; |
| 2300 } | 2300 } |
| 2301 | 2301 |
| 2302 checkUnnamed3519(core.List<core.String> o) { | 2302 checkUnnamed3333(core.List<core.String> o) { |
| 2303 unittest.expect(o, unittest.hasLength(2)); | 2303 unittest.expect(o, unittest.hasLength(2)); |
| 2304 unittest.expect(o[0], unittest.equals('foo')); | 2304 unittest.expect(o[0], unittest.equals('foo')); |
| 2305 unittest.expect(o[1], unittest.equals('foo')); | 2305 unittest.expect(o[1], unittest.equals('foo')); |
| 2306 } | 2306 } |
| 2307 | 2307 |
| 2308 buildUnnamed3520() { | 2308 buildUnnamed3334() { |
| 2309 var o = new core.List<core.String>(); | 2309 var o = new core.List<core.String>(); |
| 2310 o.add("foo"); | 2310 o.add("foo"); |
| 2311 o.add("foo"); | 2311 o.add("foo"); |
| 2312 return o; | 2312 return o; |
| 2313 } | 2313 } |
| 2314 | 2314 |
| 2315 checkUnnamed3520(core.List<core.String> o) { | 2315 checkUnnamed3334(core.List<core.String> o) { |
| 2316 unittest.expect(o, unittest.hasLength(2)); | 2316 unittest.expect(o, unittest.hasLength(2)); |
| 2317 unittest.expect(o[0], unittest.equals('foo')); | 2317 unittest.expect(o[0], unittest.equals('foo')); |
| 2318 unittest.expect(o[1], unittest.equals('foo')); | 2318 unittest.expect(o[1], unittest.equals('foo')); |
| 2319 } | 2319 } |
| 2320 | 2320 |
| 2321 core.int buildCounterSearchReferencesRequest = 0; | 2321 core.int buildCounterSearchReferencesRequest = 0; |
| 2322 buildSearchReferencesRequest() { | 2322 buildSearchReferencesRequest() { |
| 2323 var o = new api.SearchReferencesRequest(); | 2323 var o = new api.SearchReferencesRequest(); |
| 2324 buildCounterSearchReferencesRequest++; | 2324 buildCounterSearchReferencesRequest++; |
| 2325 if (buildCounterSearchReferencesRequest < 3) { | 2325 if (buildCounterSearchReferencesRequest < 3) { |
| 2326 o.accessions = buildUnnamed3519(); | 2326 o.accessions = buildUnnamed3333(); |
| 2327 o.md5checksums = buildUnnamed3520(); | 2327 o.md5checksums = buildUnnamed3334(); |
| 2328 o.pageSize = 42; | 2328 o.pageSize = 42; |
| 2329 o.pageToken = "foo"; | 2329 o.pageToken = "foo"; |
| 2330 o.referenceSetId = "foo"; | 2330 o.referenceSetId = "foo"; |
| 2331 } | 2331 } |
| 2332 buildCounterSearchReferencesRequest--; | 2332 buildCounterSearchReferencesRequest--; |
| 2333 return o; | 2333 return o; |
| 2334 } | 2334 } |
| 2335 | 2335 |
| 2336 checkSearchReferencesRequest(api.SearchReferencesRequest o) { | 2336 checkSearchReferencesRequest(api.SearchReferencesRequest o) { |
| 2337 buildCounterSearchReferencesRequest++; | 2337 buildCounterSearchReferencesRequest++; |
| 2338 if (buildCounterSearchReferencesRequest < 3) { | 2338 if (buildCounterSearchReferencesRequest < 3) { |
| 2339 checkUnnamed3519(o.accessions); | 2339 checkUnnamed3333(o.accessions); |
| 2340 checkUnnamed3520(o.md5checksums); | 2340 checkUnnamed3334(o.md5checksums); |
| 2341 unittest.expect(o.pageSize, unittest.equals(42)); | 2341 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2342 unittest.expect(o.pageToken, unittest.equals('foo')); | 2342 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2343 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 2343 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 2344 } | 2344 } |
| 2345 buildCounterSearchReferencesRequest--; | 2345 buildCounterSearchReferencesRequest--; |
| 2346 } | 2346 } |
| 2347 | 2347 |
| 2348 buildUnnamed3521() { | 2348 buildUnnamed3335() { |
| 2349 var o = new core.List<api.Reference>(); | 2349 var o = new core.List<api.Reference>(); |
| 2350 o.add(buildReference()); | 2350 o.add(buildReference()); |
| 2351 o.add(buildReference()); | 2351 o.add(buildReference()); |
| 2352 return o; | 2352 return o; |
| 2353 } | 2353 } |
| 2354 | 2354 |
| 2355 checkUnnamed3521(core.List<api.Reference> o) { | 2355 checkUnnamed3335(core.List<api.Reference> o) { |
| 2356 unittest.expect(o, unittest.hasLength(2)); | 2356 unittest.expect(o, unittest.hasLength(2)); |
| 2357 checkReference(o[0]); | 2357 checkReference(o[0]); |
| 2358 checkReference(o[1]); | 2358 checkReference(o[1]); |
| 2359 } | 2359 } |
| 2360 | 2360 |
| 2361 core.int buildCounterSearchReferencesResponse = 0; | 2361 core.int buildCounterSearchReferencesResponse = 0; |
| 2362 buildSearchReferencesResponse() { | 2362 buildSearchReferencesResponse() { |
| 2363 var o = new api.SearchReferencesResponse(); | 2363 var o = new api.SearchReferencesResponse(); |
| 2364 buildCounterSearchReferencesResponse++; | 2364 buildCounterSearchReferencesResponse++; |
| 2365 if (buildCounterSearchReferencesResponse < 3) { | 2365 if (buildCounterSearchReferencesResponse < 3) { |
| 2366 o.nextPageToken = "foo"; | 2366 o.nextPageToken = "foo"; |
| 2367 o.references = buildUnnamed3521(); | 2367 o.references = buildUnnamed3335(); |
| 2368 } | 2368 } |
| 2369 buildCounterSearchReferencesResponse--; | 2369 buildCounterSearchReferencesResponse--; |
| 2370 return o; | 2370 return o; |
| 2371 } | 2371 } |
| 2372 | 2372 |
| 2373 checkSearchReferencesResponse(api.SearchReferencesResponse o) { | 2373 checkSearchReferencesResponse(api.SearchReferencesResponse o) { |
| 2374 buildCounterSearchReferencesResponse++; | 2374 buildCounterSearchReferencesResponse++; |
| 2375 if (buildCounterSearchReferencesResponse < 3) { | 2375 if (buildCounterSearchReferencesResponse < 3) { |
| 2376 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2376 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2377 checkUnnamed3521(o.references); | 2377 checkUnnamed3335(o.references); |
| 2378 } | 2378 } |
| 2379 buildCounterSearchReferencesResponse--; | 2379 buildCounterSearchReferencesResponse--; |
| 2380 } | 2380 } |
| 2381 | 2381 |
| 2382 buildUnnamed3522() { | 2382 buildUnnamed3336() { |
| 2383 var o = new core.List<core.String>(); | 2383 var o = new core.List<core.String>(); |
| 2384 o.add("foo"); | 2384 o.add("foo"); |
| 2385 o.add("foo"); | 2385 o.add("foo"); |
| 2386 return o; | 2386 return o; |
| 2387 } | 2387 } |
| 2388 | 2388 |
| 2389 checkUnnamed3522(core.List<core.String> o) { | 2389 checkUnnamed3336(core.List<core.String> o) { |
| 2390 unittest.expect(o, unittest.hasLength(2)); | 2390 unittest.expect(o, unittest.hasLength(2)); |
| 2391 unittest.expect(o[0], unittest.equals('foo')); | 2391 unittest.expect(o[0], unittest.equals('foo')); |
| 2392 unittest.expect(o[1], unittest.equals('foo')); | 2392 unittest.expect(o[1], unittest.equals('foo')); |
| 2393 } | 2393 } |
| 2394 | 2394 |
| 2395 core.int buildCounterSearchVariantSetsRequest = 0; | 2395 core.int buildCounterSearchVariantSetsRequest = 0; |
| 2396 buildSearchVariantSetsRequest() { | 2396 buildSearchVariantSetsRequest() { |
| 2397 var o = new api.SearchVariantSetsRequest(); | 2397 var o = new api.SearchVariantSetsRequest(); |
| 2398 buildCounterSearchVariantSetsRequest++; | 2398 buildCounterSearchVariantSetsRequest++; |
| 2399 if (buildCounterSearchVariantSetsRequest < 3) { | 2399 if (buildCounterSearchVariantSetsRequest < 3) { |
| 2400 o.datasetIds = buildUnnamed3522(); | 2400 o.datasetIds = buildUnnamed3336(); |
| 2401 o.pageSize = 42; | 2401 o.pageSize = 42; |
| 2402 o.pageToken = "foo"; | 2402 o.pageToken = "foo"; |
| 2403 } | 2403 } |
| 2404 buildCounterSearchVariantSetsRequest--; | 2404 buildCounterSearchVariantSetsRequest--; |
| 2405 return o; | 2405 return o; |
| 2406 } | 2406 } |
| 2407 | 2407 |
| 2408 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { | 2408 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { |
| 2409 buildCounterSearchVariantSetsRequest++; | 2409 buildCounterSearchVariantSetsRequest++; |
| 2410 if (buildCounterSearchVariantSetsRequest < 3) { | 2410 if (buildCounterSearchVariantSetsRequest < 3) { |
| 2411 checkUnnamed3522(o.datasetIds); | 2411 checkUnnamed3336(o.datasetIds); |
| 2412 unittest.expect(o.pageSize, unittest.equals(42)); | 2412 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2413 unittest.expect(o.pageToken, unittest.equals('foo')); | 2413 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2414 } | 2414 } |
| 2415 buildCounterSearchVariantSetsRequest--; | 2415 buildCounterSearchVariantSetsRequest--; |
| 2416 } | 2416 } |
| 2417 | 2417 |
| 2418 buildUnnamed3523() { | 2418 buildUnnamed3337() { |
| 2419 var o = new core.List<api.VariantSet>(); | 2419 var o = new core.List<api.VariantSet>(); |
| 2420 o.add(buildVariantSet()); | 2420 o.add(buildVariantSet()); |
| 2421 o.add(buildVariantSet()); | 2421 o.add(buildVariantSet()); |
| 2422 return o; | 2422 return o; |
| 2423 } | 2423 } |
| 2424 | 2424 |
| 2425 checkUnnamed3523(core.List<api.VariantSet> o) { | 2425 checkUnnamed3337(core.List<api.VariantSet> o) { |
| 2426 unittest.expect(o, unittest.hasLength(2)); | 2426 unittest.expect(o, unittest.hasLength(2)); |
| 2427 checkVariantSet(o[0]); | 2427 checkVariantSet(o[0]); |
| 2428 checkVariantSet(o[1]); | 2428 checkVariantSet(o[1]); |
| 2429 } | 2429 } |
| 2430 | 2430 |
| 2431 core.int buildCounterSearchVariantSetsResponse = 0; | 2431 core.int buildCounterSearchVariantSetsResponse = 0; |
| 2432 buildSearchVariantSetsResponse() { | 2432 buildSearchVariantSetsResponse() { |
| 2433 var o = new api.SearchVariantSetsResponse(); | 2433 var o = new api.SearchVariantSetsResponse(); |
| 2434 buildCounterSearchVariantSetsResponse++; | 2434 buildCounterSearchVariantSetsResponse++; |
| 2435 if (buildCounterSearchVariantSetsResponse < 3) { | 2435 if (buildCounterSearchVariantSetsResponse < 3) { |
| 2436 o.nextPageToken = "foo"; | 2436 o.nextPageToken = "foo"; |
| 2437 o.variantSets = buildUnnamed3523(); | 2437 o.variantSets = buildUnnamed3337(); |
| 2438 } | 2438 } |
| 2439 buildCounterSearchVariantSetsResponse--; | 2439 buildCounterSearchVariantSetsResponse--; |
| 2440 return o; | 2440 return o; |
| 2441 } | 2441 } |
| 2442 | 2442 |
| 2443 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { | 2443 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { |
| 2444 buildCounterSearchVariantSetsResponse++; | 2444 buildCounterSearchVariantSetsResponse++; |
| 2445 if (buildCounterSearchVariantSetsResponse < 3) { | 2445 if (buildCounterSearchVariantSetsResponse < 3) { |
| 2446 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2446 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2447 checkUnnamed3523(o.variantSets); | 2447 checkUnnamed3337(o.variantSets); |
| 2448 } | 2448 } |
| 2449 buildCounterSearchVariantSetsResponse--; | 2449 buildCounterSearchVariantSetsResponse--; |
| 2450 } | 2450 } |
| 2451 | 2451 |
| 2452 buildUnnamed3524() { | 2452 buildUnnamed3338() { |
| 2453 var o = new core.List<core.String>(); | 2453 var o = new core.List<core.String>(); |
| 2454 o.add("foo"); | 2454 o.add("foo"); |
| 2455 o.add("foo"); | 2455 o.add("foo"); |
| 2456 return o; | 2456 return o; |
| 2457 } | 2457 } |
| 2458 | 2458 |
| 2459 checkUnnamed3524(core.List<core.String> o) { | 2459 checkUnnamed3338(core.List<core.String> o) { |
| 2460 unittest.expect(o, unittest.hasLength(2)); | 2460 unittest.expect(o, unittest.hasLength(2)); |
| 2461 unittest.expect(o[0], unittest.equals('foo')); | 2461 unittest.expect(o[0], unittest.equals('foo')); |
| 2462 unittest.expect(o[1], unittest.equals('foo')); | 2462 unittest.expect(o[1], unittest.equals('foo')); |
| 2463 } | 2463 } |
| 2464 | 2464 |
| 2465 buildUnnamed3525() { | 2465 buildUnnamed3339() { |
| 2466 var o = new core.List<core.String>(); | 2466 var o = new core.List<core.String>(); |
| 2467 o.add("foo"); | 2467 o.add("foo"); |
| 2468 o.add("foo"); | 2468 o.add("foo"); |
| 2469 return o; | 2469 return o; |
| 2470 } | 2470 } |
| 2471 | 2471 |
| 2472 checkUnnamed3525(core.List<core.String> o) { | 2472 checkUnnamed3339(core.List<core.String> o) { |
| 2473 unittest.expect(o, unittest.hasLength(2)); | 2473 unittest.expect(o, unittest.hasLength(2)); |
| 2474 unittest.expect(o[0], unittest.equals('foo')); | 2474 unittest.expect(o[0], unittest.equals('foo')); |
| 2475 unittest.expect(o[1], unittest.equals('foo')); | 2475 unittest.expect(o[1], unittest.equals('foo')); |
| 2476 } | 2476 } |
| 2477 | 2477 |
| 2478 core.int buildCounterSearchVariantsRequest = 0; | 2478 core.int buildCounterSearchVariantsRequest = 0; |
| 2479 buildSearchVariantsRequest() { | 2479 buildSearchVariantsRequest() { |
| 2480 var o = new api.SearchVariantsRequest(); | 2480 var o = new api.SearchVariantsRequest(); |
| 2481 buildCounterSearchVariantsRequest++; | 2481 buildCounterSearchVariantsRequest++; |
| 2482 if (buildCounterSearchVariantsRequest < 3) { | 2482 if (buildCounterSearchVariantsRequest < 3) { |
| 2483 o.callSetIds = buildUnnamed3524(); | 2483 o.callSetIds = buildUnnamed3338(); |
| 2484 o.end = "foo"; | 2484 o.end = "foo"; |
| 2485 o.maxCalls = 42; | 2485 o.maxCalls = 42; |
| 2486 o.pageSize = 42; | 2486 o.pageSize = 42; |
| 2487 o.pageToken = "foo"; | 2487 o.pageToken = "foo"; |
| 2488 o.referenceName = "foo"; | 2488 o.referenceName = "foo"; |
| 2489 o.start = "foo"; | 2489 o.start = "foo"; |
| 2490 o.variantName = "foo"; | 2490 o.variantName = "foo"; |
| 2491 o.variantSetIds = buildUnnamed3525(); | 2491 o.variantSetIds = buildUnnamed3339(); |
| 2492 } | 2492 } |
| 2493 buildCounterSearchVariantsRequest--; | 2493 buildCounterSearchVariantsRequest--; |
| 2494 return o; | 2494 return o; |
| 2495 } | 2495 } |
| 2496 | 2496 |
| 2497 checkSearchVariantsRequest(api.SearchVariantsRequest o) { | 2497 checkSearchVariantsRequest(api.SearchVariantsRequest o) { |
| 2498 buildCounterSearchVariantsRequest++; | 2498 buildCounterSearchVariantsRequest++; |
| 2499 if (buildCounterSearchVariantsRequest < 3) { | 2499 if (buildCounterSearchVariantsRequest < 3) { |
| 2500 checkUnnamed3524(o.callSetIds); | 2500 checkUnnamed3338(o.callSetIds); |
| 2501 unittest.expect(o.end, unittest.equals('foo')); | 2501 unittest.expect(o.end, unittest.equals('foo')); |
| 2502 unittest.expect(o.maxCalls, unittest.equals(42)); | 2502 unittest.expect(o.maxCalls, unittest.equals(42)); |
| 2503 unittest.expect(o.pageSize, unittest.equals(42)); | 2503 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2504 unittest.expect(o.pageToken, unittest.equals('foo')); | 2504 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2505 unittest.expect(o.referenceName, unittest.equals('foo')); | 2505 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2506 unittest.expect(o.start, unittest.equals('foo')); | 2506 unittest.expect(o.start, unittest.equals('foo')); |
| 2507 unittest.expect(o.variantName, unittest.equals('foo')); | 2507 unittest.expect(o.variantName, unittest.equals('foo')); |
| 2508 checkUnnamed3525(o.variantSetIds); | 2508 checkUnnamed3339(o.variantSetIds); |
| 2509 } | 2509 } |
| 2510 buildCounterSearchVariantsRequest--; | 2510 buildCounterSearchVariantsRequest--; |
| 2511 } | 2511 } |
| 2512 | 2512 |
| 2513 buildUnnamed3526() { | 2513 buildUnnamed3340() { |
| 2514 var o = new core.List<api.Variant>(); | 2514 var o = new core.List<api.Variant>(); |
| 2515 o.add(buildVariant()); | 2515 o.add(buildVariant()); |
| 2516 o.add(buildVariant()); | 2516 o.add(buildVariant()); |
| 2517 return o; | 2517 return o; |
| 2518 } | 2518 } |
| 2519 | 2519 |
| 2520 checkUnnamed3526(core.List<api.Variant> o) { | 2520 checkUnnamed3340(core.List<api.Variant> o) { |
| 2521 unittest.expect(o, unittest.hasLength(2)); | 2521 unittest.expect(o, unittest.hasLength(2)); |
| 2522 checkVariant(o[0]); | 2522 checkVariant(o[0]); |
| 2523 checkVariant(o[1]); | 2523 checkVariant(o[1]); |
| 2524 } | 2524 } |
| 2525 | 2525 |
| 2526 core.int buildCounterSearchVariantsResponse = 0; | 2526 core.int buildCounterSearchVariantsResponse = 0; |
| 2527 buildSearchVariantsResponse() { | 2527 buildSearchVariantsResponse() { |
| 2528 var o = new api.SearchVariantsResponse(); | 2528 var o = new api.SearchVariantsResponse(); |
| 2529 buildCounterSearchVariantsResponse++; | 2529 buildCounterSearchVariantsResponse++; |
| 2530 if (buildCounterSearchVariantsResponse < 3) { | 2530 if (buildCounterSearchVariantsResponse < 3) { |
| 2531 o.nextPageToken = "foo"; | 2531 o.nextPageToken = "foo"; |
| 2532 o.variants = buildUnnamed3526(); | 2532 o.variants = buildUnnamed3340(); |
| 2533 } | 2533 } |
| 2534 buildCounterSearchVariantsResponse--; | 2534 buildCounterSearchVariantsResponse--; |
| 2535 return o; | 2535 return o; |
| 2536 } | 2536 } |
| 2537 | 2537 |
| 2538 checkSearchVariantsResponse(api.SearchVariantsResponse o) { | 2538 checkSearchVariantsResponse(api.SearchVariantsResponse o) { |
| 2539 buildCounterSearchVariantsResponse++; | 2539 buildCounterSearchVariantsResponse++; |
| 2540 if (buildCounterSearchVariantsResponse < 3) { | 2540 if (buildCounterSearchVariantsResponse < 3) { |
| 2541 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2541 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2542 checkUnnamed3526(o.variants); | 2542 checkUnnamed3340(o.variants); |
| 2543 } | 2543 } |
| 2544 buildCounterSearchVariantsResponse--; | 2544 buildCounterSearchVariantsResponse--; |
| 2545 } | 2545 } |
| 2546 | 2546 |
| 2547 buildUnnamed3527() { | 2547 buildUnnamed3341() { |
| 2548 var o = new core.List<api.TranscriptExon>(); | 2548 var o = new core.List<api.TranscriptExon>(); |
| 2549 o.add(buildTranscriptExon()); | 2549 o.add(buildTranscriptExon()); |
| 2550 o.add(buildTranscriptExon()); | 2550 o.add(buildTranscriptExon()); |
| 2551 return o; | 2551 return o; |
| 2552 } | 2552 } |
| 2553 | 2553 |
| 2554 checkUnnamed3527(core.List<api.TranscriptExon> o) { | 2554 checkUnnamed3341(core.List<api.TranscriptExon> o) { |
| 2555 unittest.expect(o, unittest.hasLength(2)); | 2555 unittest.expect(o, unittest.hasLength(2)); |
| 2556 checkTranscriptExon(o[0]); | 2556 checkTranscriptExon(o[0]); |
| 2557 checkTranscriptExon(o[1]); | 2557 checkTranscriptExon(o[1]); |
| 2558 } | 2558 } |
| 2559 | 2559 |
| 2560 core.int buildCounterTranscript = 0; | 2560 core.int buildCounterTranscript = 0; |
| 2561 buildTranscript() { | 2561 buildTranscript() { |
| 2562 var o = new api.Transcript(); | 2562 var o = new api.Transcript(); |
| 2563 buildCounterTranscript++; | 2563 buildCounterTranscript++; |
| 2564 if (buildCounterTranscript < 3) { | 2564 if (buildCounterTranscript < 3) { |
| 2565 o.codingSequence = buildTranscriptCodingSequence(); | 2565 o.codingSequence = buildTranscriptCodingSequence(); |
| 2566 o.exons = buildUnnamed3527(); | 2566 o.exons = buildUnnamed3341(); |
| 2567 o.geneId = "foo"; | 2567 o.geneId = "foo"; |
| 2568 } | 2568 } |
| 2569 buildCounterTranscript--; | 2569 buildCounterTranscript--; |
| 2570 return o; | 2570 return o; |
| 2571 } | 2571 } |
| 2572 | 2572 |
| 2573 checkTranscript(api.Transcript o) { | 2573 checkTranscript(api.Transcript o) { |
| 2574 buildCounterTranscript++; | 2574 buildCounterTranscript++; |
| 2575 if (buildCounterTranscript < 3) { | 2575 if (buildCounterTranscript < 3) { |
| 2576 checkTranscriptCodingSequence(o.codingSequence); | 2576 checkTranscriptCodingSequence(o.codingSequence); |
| 2577 checkUnnamed3527(o.exons); | 2577 checkUnnamed3341(o.exons); |
| 2578 unittest.expect(o.geneId, unittest.equals('foo')); | 2578 unittest.expect(o.geneId, unittest.equals('foo')); |
| 2579 } | 2579 } |
| 2580 buildCounterTranscript--; | 2580 buildCounterTranscript--; |
| 2581 } | 2581 } |
| 2582 | 2582 |
| 2583 core.int buildCounterTranscriptCodingSequence = 0; | 2583 core.int buildCounterTranscriptCodingSequence = 0; |
| 2584 buildTranscriptCodingSequence() { | 2584 buildTranscriptCodingSequence() { |
| 2585 var o = new api.TranscriptCodingSequence(); | 2585 var o = new api.TranscriptCodingSequence(); |
| 2586 buildCounterTranscriptCodingSequence++; | 2586 buildCounterTranscriptCodingSequence++; |
| 2587 if (buildCounterTranscriptCodingSequence < 3) { | 2587 if (buildCounterTranscriptCodingSequence < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 2617 checkTranscriptExon(api.TranscriptExon o) { | 2617 checkTranscriptExon(api.TranscriptExon o) { |
| 2618 buildCounterTranscriptExon++; | 2618 buildCounterTranscriptExon++; |
| 2619 if (buildCounterTranscriptExon < 3) { | 2619 if (buildCounterTranscriptExon < 3) { |
| 2620 unittest.expect(o.end, unittest.equals('foo')); | 2620 unittest.expect(o.end, unittest.equals('foo')); |
| 2621 checkInt32Value(o.frame); | 2621 checkInt32Value(o.frame); |
| 2622 unittest.expect(o.start, unittest.equals('foo')); | 2622 unittest.expect(o.start, unittest.equals('foo')); |
| 2623 } | 2623 } |
| 2624 buildCounterTranscriptExon--; | 2624 buildCounterTranscriptExon--; |
| 2625 } | 2625 } |
| 2626 | 2626 |
| 2627 buildUnnamed3528() { | 2627 buildUnnamed3342() { |
| 2628 var o = new core.List<core.String>(); | 2628 var o = new core.List<core.String>(); |
| 2629 o.add("foo"); | 2629 o.add("foo"); |
| 2630 o.add("foo"); | 2630 o.add("foo"); |
| 2631 return o; | 2631 return o; |
| 2632 } | 2632 } |
| 2633 | 2633 |
| 2634 checkUnnamed3528(core.List<core.String> o) { | 2634 checkUnnamed3342(core.List<core.String> o) { |
| 2635 unittest.expect(o, unittest.hasLength(2)); | 2635 unittest.expect(o, unittest.hasLength(2)); |
| 2636 unittest.expect(o[0], unittest.equals('foo')); | 2636 unittest.expect(o[0], unittest.equals('foo')); |
| 2637 unittest.expect(o[1], unittest.equals('foo')); | 2637 unittest.expect(o[1], unittest.equals('foo')); |
| 2638 } | 2638 } |
| 2639 | 2639 |
| 2640 buildUnnamed3529() { | 2640 buildUnnamed3343() { |
| 2641 var o = new core.List<api.Call>(); | 2641 var o = new core.List<api.Call>(); |
| 2642 o.add(buildCall()); | 2642 o.add(buildCall()); |
| 2643 o.add(buildCall()); | 2643 o.add(buildCall()); |
| 2644 return o; | 2644 return o; |
| 2645 } | 2645 } |
| 2646 | 2646 |
| 2647 checkUnnamed3529(core.List<api.Call> o) { | 2647 checkUnnamed3343(core.List<api.Call> o) { |
| 2648 unittest.expect(o, unittest.hasLength(2)); | 2648 unittest.expect(o, unittest.hasLength(2)); |
| 2649 checkCall(o[0]); | 2649 checkCall(o[0]); |
| 2650 checkCall(o[1]); | 2650 checkCall(o[1]); |
| 2651 } | 2651 } |
| 2652 | 2652 |
| 2653 buildUnnamed3530() { | 2653 buildUnnamed3344() { |
| 2654 var o = new core.List<core.String>(); | 2654 var o = new core.List<core.String>(); |
| 2655 o.add("foo"); | 2655 o.add("foo"); |
| 2656 o.add("foo"); | 2656 o.add("foo"); |
| 2657 return o; | 2657 return o; |
| 2658 } | 2658 } |
| 2659 | 2659 |
| 2660 checkUnnamed3530(core.List<core.String> o) { | 2660 checkUnnamed3344(core.List<core.String> o) { |
| 2661 unittest.expect(o, unittest.hasLength(2)); | 2661 unittest.expect(o, unittest.hasLength(2)); |
| 2662 unittest.expect(o[0], unittest.equals('foo')); | 2662 unittest.expect(o[0], unittest.equals('foo')); |
| 2663 unittest.expect(o[1], unittest.equals('foo')); | 2663 unittest.expect(o[1], unittest.equals('foo')); |
| 2664 } | 2664 } |
| 2665 | 2665 |
| 2666 buildUnnamed3531() { | 2666 buildUnnamed3345() { |
| 2667 var o = new core.List<core.String>(); | 2667 var o = new core.List<core.String>(); |
| 2668 o.add("foo"); | 2668 o.add("foo"); |
| 2669 o.add("foo"); | 2669 o.add("foo"); |
| 2670 return o; | 2670 return o; |
| 2671 } | 2671 } |
| 2672 | 2672 |
| 2673 checkUnnamed3531(core.List<core.String> o) { | 2673 checkUnnamed3345(core.List<core.String> o) { |
| 2674 unittest.expect(o, unittest.hasLength(2)); | 2674 unittest.expect(o, unittest.hasLength(2)); |
| 2675 unittest.expect(o[0], unittest.equals('foo')); | 2675 unittest.expect(o[0], unittest.equals('foo')); |
| 2676 unittest.expect(o[1], unittest.equals('foo')); | 2676 unittest.expect(o[1], unittest.equals('foo')); |
| 2677 } | 2677 } |
| 2678 | 2678 |
| 2679 buildUnnamed3532() { | 2679 buildUnnamed3346() { |
| 2680 var o = new core.Map<core.String, core.List<core.String>>(); | 2680 var o = new core.Map<core.String, core.List<core.String>>(); |
| 2681 o["x"] = buildUnnamed3531(); | 2681 o["x"] = buildUnnamed3345(); |
| 2682 o["y"] = buildUnnamed3531(); | 2682 o["y"] = buildUnnamed3345(); |
| 2683 return o; | 2683 return o; |
| 2684 } | 2684 } |
| 2685 | 2685 |
| 2686 checkUnnamed3532(core.Map<core.String, core.List<core.String>> o) { | 2686 checkUnnamed3346(core.Map<core.String, core.List<core.String>> o) { |
| 2687 unittest.expect(o, unittest.hasLength(2)); | 2687 unittest.expect(o, unittest.hasLength(2)); |
| 2688 checkUnnamed3531(o["x"]); | 2688 checkUnnamed3345(o["x"]); |
| 2689 checkUnnamed3531(o["y"]); | 2689 checkUnnamed3345(o["y"]); |
| 2690 } | 2690 } |
| 2691 | 2691 |
| 2692 buildUnnamed3533() { | 2692 buildUnnamed3347() { |
| 2693 var o = new core.List<core.String>(); | 2693 var o = new core.List<core.String>(); |
| 2694 o.add("foo"); | 2694 o.add("foo"); |
| 2695 o.add("foo"); | 2695 o.add("foo"); |
| 2696 return o; | 2696 return o; |
| 2697 } | 2697 } |
| 2698 | 2698 |
| 2699 checkUnnamed3533(core.List<core.String> o) { | 2699 checkUnnamed3347(core.List<core.String> o) { |
| 2700 unittest.expect(o, unittest.hasLength(2)); | 2700 unittest.expect(o, unittest.hasLength(2)); |
| 2701 unittest.expect(o[0], unittest.equals('foo')); | 2701 unittest.expect(o[0], unittest.equals('foo')); |
| 2702 unittest.expect(o[1], unittest.equals('foo')); | 2702 unittest.expect(o[1], unittest.equals('foo')); |
| 2703 } | 2703 } |
| 2704 | 2704 |
| 2705 core.int buildCounterVariant = 0; | 2705 core.int buildCounterVariant = 0; |
| 2706 buildVariant() { | 2706 buildVariant() { |
| 2707 var o = new api.Variant(); | 2707 var o = new api.Variant(); |
| 2708 buildCounterVariant++; | 2708 buildCounterVariant++; |
| 2709 if (buildCounterVariant < 3) { | 2709 if (buildCounterVariant < 3) { |
| 2710 o.alternateBases = buildUnnamed3528(); | 2710 o.alternateBases = buildUnnamed3342(); |
| 2711 o.calls = buildUnnamed3529(); | 2711 o.calls = buildUnnamed3343(); |
| 2712 o.created = "foo"; | 2712 o.created = "foo"; |
| 2713 o.end = "foo"; | 2713 o.end = "foo"; |
| 2714 o.filter = buildUnnamed3530(); | 2714 o.filter = buildUnnamed3344(); |
| 2715 o.id = "foo"; | 2715 o.id = "foo"; |
| 2716 o.info = buildUnnamed3532(); | 2716 o.info = buildUnnamed3346(); |
| 2717 o.names = buildUnnamed3533(); | 2717 o.names = buildUnnamed3347(); |
| 2718 o.quality = 42.0; | 2718 o.quality = 42.0; |
| 2719 o.referenceBases = "foo"; | 2719 o.referenceBases = "foo"; |
| 2720 o.referenceName = "foo"; | 2720 o.referenceName = "foo"; |
| 2721 o.start = "foo"; | 2721 o.start = "foo"; |
| 2722 o.variantSetId = "foo"; | 2722 o.variantSetId = "foo"; |
| 2723 } | 2723 } |
| 2724 buildCounterVariant--; | 2724 buildCounterVariant--; |
| 2725 return o; | 2725 return o; |
| 2726 } | 2726 } |
| 2727 | 2727 |
| 2728 checkVariant(api.Variant o) { | 2728 checkVariant(api.Variant o) { |
| 2729 buildCounterVariant++; | 2729 buildCounterVariant++; |
| 2730 if (buildCounterVariant < 3) { | 2730 if (buildCounterVariant < 3) { |
| 2731 checkUnnamed3528(o.alternateBases); | 2731 checkUnnamed3342(o.alternateBases); |
| 2732 checkUnnamed3529(o.calls); | 2732 checkUnnamed3343(o.calls); |
| 2733 unittest.expect(o.created, unittest.equals('foo')); | 2733 unittest.expect(o.created, unittest.equals('foo')); |
| 2734 unittest.expect(o.end, unittest.equals('foo')); | 2734 unittest.expect(o.end, unittest.equals('foo')); |
| 2735 checkUnnamed3530(o.filter); | 2735 checkUnnamed3344(o.filter); |
| 2736 unittest.expect(o.id, unittest.equals('foo')); | 2736 unittest.expect(o.id, unittest.equals('foo')); |
| 2737 checkUnnamed3532(o.info); | 2737 checkUnnamed3346(o.info); |
| 2738 checkUnnamed3533(o.names); | 2738 checkUnnamed3347(o.names); |
| 2739 unittest.expect(o.quality, unittest.equals(42.0)); | 2739 unittest.expect(o.quality, unittest.equals(42.0)); |
| 2740 unittest.expect(o.referenceBases, unittest.equals('foo')); | 2740 unittest.expect(o.referenceBases, unittest.equals('foo')); |
| 2741 unittest.expect(o.referenceName, unittest.equals('foo')); | 2741 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2742 unittest.expect(o.start, unittest.equals('foo')); | 2742 unittest.expect(o.start, unittest.equals('foo')); |
| 2743 unittest.expect(o.variantSetId, unittest.equals('foo')); | 2743 unittest.expect(o.variantSetId, unittest.equals('foo')); |
| 2744 } | 2744 } |
| 2745 buildCounterVariant--; | 2745 buildCounterVariant--; |
| 2746 } | 2746 } |
| 2747 | 2747 |
| 2748 buildUnnamed3534() { | 2748 buildUnnamed3348() { |
| 2749 var o = new core.List<api.VariantAnnotationCondition>(); | 2749 var o = new core.List<api.VariantAnnotationCondition>(); |
| 2750 o.add(buildVariantAnnotationCondition()); | 2750 o.add(buildVariantAnnotationCondition()); |
| 2751 o.add(buildVariantAnnotationCondition()); | 2751 o.add(buildVariantAnnotationCondition()); |
| 2752 return o; | 2752 return o; |
| 2753 } | 2753 } |
| 2754 | 2754 |
| 2755 checkUnnamed3534(core.List<api.VariantAnnotationCondition> o) { | 2755 checkUnnamed3348(core.List<api.VariantAnnotationCondition> o) { |
| 2756 unittest.expect(o, unittest.hasLength(2)); | 2756 unittest.expect(o, unittest.hasLength(2)); |
| 2757 checkVariantAnnotationCondition(o[0]); | 2757 checkVariantAnnotationCondition(o[0]); |
| 2758 checkVariantAnnotationCondition(o[1]); | 2758 checkVariantAnnotationCondition(o[1]); |
| 2759 } | 2759 } |
| 2760 | 2760 |
| 2761 buildUnnamed3535() { | 2761 buildUnnamed3349() { |
| 2762 var o = new core.List<core.String>(); | 2762 var o = new core.List<core.String>(); |
| 2763 o.add("foo"); | 2763 o.add("foo"); |
| 2764 o.add("foo"); | 2764 o.add("foo"); |
| 2765 return o; | 2765 return o; |
| 2766 } | 2766 } |
| 2767 | 2767 |
| 2768 checkUnnamed3535(core.List<core.String> o) { | 2768 checkUnnamed3349(core.List<core.String> o) { |
| 2769 unittest.expect(o, unittest.hasLength(2)); | 2769 unittest.expect(o, unittest.hasLength(2)); |
| 2770 unittest.expect(o[0], unittest.equals('foo')); | 2770 unittest.expect(o[0], unittest.equals('foo')); |
| 2771 unittest.expect(o[1], unittest.equals('foo')); | 2771 unittest.expect(o[1], unittest.equals('foo')); |
| 2772 } | 2772 } |
| 2773 | 2773 |
| 2774 core.int buildCounterVariantAnnotation = 0; | 2774 core.int buildCounterVariantAnnotation = 0; |
| 2775 buildVariantAnnotation() { | 2775 buildVariantAnnotation() { |
| 2776 var o = new api.VariantAnnotation(); | 2776 var o = new api.VariantAnnotation(); |
| 2777 buildCounterVariantAnnotation++; | 2777 buildCounterVariantAnnotation++; |
| 2778 if (buildCounterVariantAnnotation < 3) { | 2778 if (buildCounterVariantAnnotation < 3) { |
| 2779 o.alternateBases = "foo"; | 2779 o.alternateBases = "foo"; |
| 2780 o.clinicalSignificance = "foo"; | 2780 o.clinicalSignificance = "foo"; |
| 2781 o.conditions = buildUnnamed3534(); | 2781 o.conditions = buildUnnamed3348(); |
| 2782 o.effect = "foo"; | 2782 o.effect = "foo"; |
| 2783 o.geneId = "foo"; | 2783 o.geneId = "foo"; |
| 2784 o.transcriptIds = buildUnnamed3535(); | 2784 o.transcriptIds = buildUnnamed3349(); |
| 2785 o.type = "foo"; | 2785 o.type = "foo"; |
| 2786 } | 2786 } |
| 2787 buildCounterVariantAnnotation--; | 2787 buildCounterVariantAnnotation--; |
| 2788 return o; | 2788 return o; |
| 2789 } | 2789 } |
| 2790 | 2790 |
| 2791 checkVariantAnnotation(api.VariantAnnotation o) { | 2791 checkVariantAnnotation(api.VariantAnnotation o) { |
| 2792 buildCounterVariantAnnotation++; | 2792 buildCounterVariantAnnotation++; |
| 2793 if (buildCounterVariantAnnotation < 3) { | 2793 if (buildCounterVariantAnnotation < 3) { |
| 2794 unittest.expect(o.alternateBases, unittest.equals('foo')); | 2794 unittest.expect(o.alternateBases, unittest.equals('foo')); |
| 2795 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); | 2795 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); |
| 2796 checkUnnamed3534(o.conditions); | 2796 checkUnnamed3348(o.conditions); |
| 2797 unittest.expect(o.effect, unittest.equals('foo')); | 2797 unittest.expect(o.effect, unittest.equals('foo')); |
| 2798 unittest.expect(o.geneId, unittest.equals('foo')); | 2798 unittest.expect(o.geneId, unittest.equals('foo')); |
| 2799 checkUnnamed3535(o.transcriptIds); | 2799 checkUnnamed3349(o.transcriptIds); |
| 2800 unittest.expect(o.type, unittest.equals('foo')); | 2800 unittest.expect(o.type, unittest.equals('foo')); |
| 2801 } | 2801 } |
| 2802 buildCounterVariantAnnotation--; | 2802 buildCounterVariantAnnotation--; |
| 2803 } | 2803 } |
| 2804 | 2804 |
| 2805 buildUnnamed3536() { | 2805 buildUnnamed3350() { |
| 2806 var o = new core.List<api.ExternalId>(); | 2806 var o = new core.List<api.ExternalId>(); |
| 2807 o.add(buildExternalId()); | 2807 o.add(buildExternalId()); |
| 2808 o.add(buildExternalId()); | 2808 o.add(buildExternalId()); |
| 2809 return o; | 2809 return o; |
| 2810 } | 2810 } |
| 2811 | 2811 |
| 2812 checkUnnamed3536(core.List<api.ExternalId> o) { | 2812 checkUnnamed3350(core.List<api.ExternalId> o) { |
| 2813 unittest.expect(o, unittest.hasLength(2)); | 2813 unittest.expect(o, unittest.hasLength(2)); |
| 2814 checkExternalId(o[0]); | 2814 checkExternalId(o[0]); |
| 2815 checkExternalId(o[1]); | 2815 checkExternalId(o[1]); |
| 2816 } | 2816 } |
| 2817 | 2817 |
| 2818 buildUnnamed3537() { | 2818 buildUnnamed3351() { |
| 2819 var o = new core.List<core.String>(); | 2819 var o = new core.List<core.String>(); |
| 2820 o.add("foo"); | 2820 o.add("foo"); |
| 2821 o.add("foo"); | 2821 o.add("foo"); |
| 2822 return o; | 2822 return o; |
| 2823 } | 2823 } |
| 2824 | 2824 |
| 2825 checkUnnamed3537(core.List<core.String> o) { | 2825 checkUnnamed3351(core.List<core.String> o) { |
| 2826 unittest.expect(o, unittest.hasLength(2)); | 2826 unittest.expect(o, unittest.hasLength(2)); |
| 2827 unittest.expect(o[0], unittest.equals('foo')); | 2827 unittest.expect(o[0], unittest.equals('foo')); |
| 2828 unittest.expect(o[1], unittest.equals('foo')); | 2828 unittest.expect(o[1], unittest.equals('foo')); |
| 2829 } | 2829 } |
| 2830 | 2830 |
| 2831 core.int buildCounterVariantAnnotationCondition = 0; | 2831 core.int buildCounterVariantAnnotationCondition = 0; |
| 2832 buildVariantAnnotationCondition() { | 2832 buildVariantAnnotationCondition() { |
| 2833 var o = new api.VariantAnnotationCondition(); | 2833 var o = new api.VariantAnnotationCondition(); |
| 2834 buildCounterVariantAnnotationCondition++; | 2834 buildCounterVariantAnnotationCondition++; |
| 2835 if (buildCounterVariantAnnotationCondition < 3) { | 2835 if (buildCounterVariantAnnotationCondition < 3) { |
| 2836 o.conceptId = "foo"; | 2836 o.conceptId = "foo"; |
| 2837 o.externalIds = buildUnnamed3536(); | 2837 o.externalIds = buildUnnamed3350(); |
| 2838 o.names = buildUnnamed3537(); | 2838 o.names = buildUnnamed3351(); |
| 2839 o.omimId = "foo"; | 2839 o.omimId = "foo"; |
| 2840 } | 2840 } |
| 2841 buildCounterVariantAnnotationCondition--; | 2841 buildCounterVariantAnnotationCondition--; |
| 2842 return o; | 2842 return o; |
| 2843 } | 2843 } |
| 2844 | 2844 |
| 2845 checkVariantAnnotationCondition(api.VariantAnnotationCondition o) { | 2845 checkVariantAnnotationCondition(api.VariantAnnotationCondition o) { |
| 2846 buildCounterVariantAnnotationCondition++; | 2846 buildCounterVariantAnnotationCondition++; |
| 2847 if (buildCounterVariantAnnotationCondition < 3) { | 2847 if (buildCounterVariantAnnotationCondition < 3) { |
| 2848 unittest.expect(o.conceptId, unittest.equals('foo')); | 2848 unittest.expect(o.conceptId, unittest.equals('foo')); |
| 2849 checkUnnamed3536(o.externalIds); | 2849 checkUnnamed3350(o.externalIds); |
| 2850 checkUnnamed3537(o.names); | 2850 checkUnnamed3351(o.names); |
| 2851 unittest.expect(o.omimId, unittest.equals('foo')); | 2851 unittest.expect(o.omimId, unittest.equals('foo')); |
| 2852 } | 2852 } |
| 2853 buildCounterVariantAnnotationCondition--; | 2853 buildCounterVariantAnnotationCondition--; |
| 2854 } | 2854 } |
| 2855 | 2855 |
| 2856 buildUnnamed3538() { | 2856 buildUnnamed3352() { |
| 2857 var o = new core.List<api.Metadata>(); | 2857 var o = new core.List<api.Metadata>(); |
| 2858 o.add(buildMetadata()); | 2858 o.add(buildMetadata()); |
| 2859 o.add(buildMetadata()); | 2859 o.add(buildMetadata()); |
| 2860 return o; | 2860 return o; |
| 2861 } | 2861 } |
| 2862 | 2862 |
| 2863 checkUnnamed3538(core.List<api.Metadata> o) { | 2863 checkUnnamed3352(core.List<api.Metadata> o) { |
| 2864 unittest.expect(o, unittest.hasLength(2)); | 2864 unittest.expect(o, unittest.hasLength(2)); |
| 2865 checkMetadata(o[0]); | 2865 checkMetadata(o[0]); |
| 2866 checkMetadata(o[1]); | 2866 checkMetadata(o[1]); |
| 2867 } | 2867 } |
| 2868 | 2868 |
| 2869 buildUnnamed3539() { | 2869 buildUnnamed3353() { |
| 2870 var o = new core.List<api.ReferenceBound>(); | 2870 var o = new core.List<api.ReferenceBound>(); |
| 2871 o.add(buildReferenceBound()); | 2871 o.add(buildReferenceBound()); |
| 2872 o.add(buildReferenceBound()); | 2872 o.add(buildReferenceBound()); |
| 2873 return o; | 2873 return o; |
| 2874 } | 2874 } |
| 2875 | 2875 |
| 2876 checkUnnamed3539(core.List<api.ReferenceBound> o) { | 2876 checkUnnamed3353(core.List<api.ReferenceBound> o) { |
| 2877 unittest.expect(o, unittest.hasLength(2)); | 2877 unittest.expect(o, unittest.hasLength(2)); |
| 2878 checkReferenceBound(o[0]); | 2878 checkReferenceBound(o[0]); |
| 2879 checkReferenceBound(o[1]); | 2879 checkReferenceBound(o[1]); |
| 2880 } | 2880 } |
| 2881 | 2881 |
| 2882 core.int buildCounterVariantSet = 0; | 2882 core.int buildCounterVariantSet = 0; |
| 2883 buildVariantSet() { | 2883 buildVariantSet() { |
| 2884 var o = new api.VariantSet(); | 2884 var o = new api.VariantSet(); |
| 2885 buildCounterVariantSet++; | 2885 buildCounterVariantSet++; |
| 2886 if (buildCounterVariantSet < 3) { | 2886 if (buildCounterVariantSet < 3) { |
| 2887 o.datasetId = "foo"; | 2887 o.datasetId = "foo"; |
| 2888 o.description = "foo"; | 2888 o.description = "foo"; |
| 2889 o.id = "foo"; | 2889 o.id = "foo"; |
| 2890 o.metadata = buildUnnamed3538(); | 2890 o.metadata = buildUnnamed3352(); |
| 2891 o.name = "foo"; | 2891 o.name = "foo"; |
| 2892 o.referenceBounds = buildUnnamed3539(); | 2892 o.referenceBounds = buildUnnamed3353(); |
| 2893 o.referenceSetId = "foo"; | 2893 o.referenceSetId = "foo"; |
| 2894 } | 2894 } |
| 2895 buildCounterVariantSet--; | 2895 buildCounterVariantSet--; |
| 2896 return o; | 2896 return o; |
| 2897 } | 2897 } |
| 2898 | 2898 |
| 2899 checkVariantSet(api.VariantSet o) { | 2899 checkVariantSet(api.VariantSet o) { |
| 2900 buildCounterVariantSet++; | 2900 buildCounterVariantSet++; |
| 2901 if (buildCounterVariantSet < 3) { | 2901 if (buildCounterVariantSet < 3) { |
| 2902 unittest.expect(o.datasetId, unittest.equals('foo')); | 2902 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 2903 unittest.expect(o.description, unittest.equals('foo')); | 2903 unittest.expect(o.description, unittest.equals('foo')); |
| 2904 unittest.expect(o.id, unittest.equals('foo')); | 2904 unittest.expect(o.id, unittest.equals('foo')); |
| 2905 checkUnnamed3538(o.metadata); | 2905 checkUnnamed3352(o.metadata); |
| 2906 unittest.expect(o.name, unittest.equals('foo')); | 2906 unittest.expect(o.name, unittest.equals('foo')); |
| 2907 checkUnnamed3539(o.referenceBounds); | 2907 checkUnnamed3353(o.referenceBounds); |
| 2908 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 2908 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 2909 } | 2909 } |
| 2910 buildCounterVariantSet--; | 2910 buildCounterVariantSet--; |
| 2911 } | 2911 } |
| 2912 | 2912 |
| 2913 | 2913 |
| 2914 main() { | 2914 main() { |
| 2915 unittest.group("obj-schema-Annotation", () { | 2915 unittest.group("obj-schema-Annotation", () { |
| 2916 unittest.test("to-json--from-json", () { | 2916 unittest.test("to-json--from-json", () { |
| 2917 var o = buildAnnotation(); | 2917 var o = buildAnnotation(); |
| (...skipping 3622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6540 res.update(arg_request, arg_variantSetId).then(unittest.expectAsync(((api.
VariantSet response) { | 6540 res.update(arg_request, arg_variantSetId).then(unittest.expectAsync(((api.
VariantSet response) { |
| 6541 checkVariantSet(response); | 6541 checkVariantSet(response); |
| 6542 }))); | 6542 }))); |
| 6543 }); | 6543 }); |
| 6544 | 6544 |
| 6545 }); | 6545 }); |
| 6546 | 6546 |
| 6547 | 6547 |
| 6548 } | 6548 } |
| 6549 | 6549 |
| OLD | NEW |