| OLD | NEW |
| 1 library googleapis_beta.genomics.v1beta.test; | 1 library googleapis_beta.genomics.v1beta.test; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
| 9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
| 10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 } | 28 } |
| 29 | 29 |
| 30 checkBeacon(api.Beacon o) { | 30 checkBeacon(api.Beacon o) { |
| 31 buildCounterBeacon++; | 31 buildCounterBeacon++; |
| 32 if (buildCounterBeacon < 3) { | 32 if (buildCounterBeacon < 3) { |
| 33 unittest.expect(o.exists, unittest.isTrue); | 33 unittest.expect(o.exists, unittest.isTrue); |
| 34 } | 34 } |
| 35 buildCounterBeacon--; | 35 buildCounterBeacon--; |
| 36 } | 36 } |
| 37 | 37 |
| 38 buildUnnamed1172() { | 38 buildUnnamed1150() { |
| 39 var o = new core.List<core.int>(); | 39 var o = new core.List<core.int>(); |
| 40 o.add(42); | 40 o.add(42); |
| 41 o.add(42); | 41 o.add(42); |
| 42 return o; | 42 return o; |
| 43 } | 43 } |
| 44 | 44 |
| 45 checkUnnamed1172(core.List<core.int> o) { | 45 checkUnnamed1150(core.List<core.int> o) { |
| 46 unittest.expect(o, unittest.hasLength(2)); | 46 unittest.expect(o, unittest.hasLength(2)); |
| 47 unittest.expect(o[0], unittest.equals(42)); | 47 unittest.expect(o[0], unittest.equals(42)); |
| 48 unittest.expect(o[1], unittest.equals(42)); | 48 unittest.expect(o[1], unittest.equals(42)); |
| 49 } | 49 } |
| 50 | 50 |
| 51 buildUnnamed1173() { | 51 buildUnnamed1151() { |
| 52 var o = new core.List<core.double>(); | 52 var o = new core.List<core.double>(); |
| 53 o.add(42.0); | 53 o.add(42.0); |
| 54 o.add(42.0); | 54 o.add(42.0); |
| 55 return o; | 55 return o; |
| 56 } | 56 } |
| 57 | 57 |
| 58 checkUnnamed1173(core.List<core.double> o) { | 58 checkUnnamed1151(core.List<core.double> o) { |
| 59 unittest.expect(o, unittest.hasLength(2)); | 59 unittest.expect(o, unittest.hasLength(2)); |
| 60 unittest.expect(o[0], unittest.equals(42.0)); | 60 unittest.expect(o[0], unittest.equals(42.0)); |
| 61 unittest.expect(o[1], unittest.equals(42.0)); | 61 unittest.expect(o[1], unittest.equals(42.0)); |
| 62 } | 62 } |
| 63 | 63 |
| 64 buildUnnamed1174() { | 64 buildUnnamed1152() { |
| 65 var o = new core.List<core.String>(); | 65 var o = new core.List<core.String>(); |
| 66 o.add("foo"); | 66 o.add("foo"); |
| 67 o.add("foo"); | 67 o.add("foo"); |
| 68 return o; | 68 return o; |
| 69 } | 69 } |
| 70 | 70 |
| 71 checkUnnamed1174(core.List<core.String> o) { | 71 checkUnnamed1152(core.List<core.String> o) { |
| 72 unittest.expect(o, unittest.hasLength(2)); | 72 unittest.expect(o, unittest.hasLength(2)); |
| 73 unittest.expect(o[0], unittest.equals('foo')); | 73 unittest.expect(o[0], unittest.equals('foo')); |
| 74 unittest.expect(o[1], unittest.equals('foo')); | 74 unittest.expect(o[1], unittest.equals('foo')); |
| 75 } | 75 } |
| 76 | 76 |
| 77 buildUnnamed1175() { | 77 buildUnnamed1153() { |
| 78 var o = new core.Map<core.String, core.List<core.String>>(); | 78 var o = new core.Map<core.String, core.List<core.String>>(); |
| 79 o["x"] = buildUnnamed1174(); | 79 o["x"] = buildUnnamed1152(); |
| 80 o["y"] = buildUnnamed1174(); | 80 o["y"] = buildUnnamed1152(); |
| 81 return o; | 81 return o; |
| 82 } | 82 } |
| 83 | 83 |
| 84 checkUnnamed1175(core.Map<core.String, core.List<core.String>> o) { | 84 checkUnnamed1153(core.Map<core.String, core.List<core.String>> o) { |
| 85 unittest.expect(o, unittest.hasLength(2)); | 85 unittest.expect(o, unittest.hasLength(2)); |
| 86 checkUnnamed1174(o["x"]); | 86 checkUnnamed1152(o["x"]); |
| 87 checkUnnamed1174(o["y"]); | 87 checkUnnamed1152(o["y"]); |
| 88 } | 88 } |
| 89 | 89 |
| 90 core.int buildCounterCall = 0; | 90 core.int buildCounterCall = 0; |
| 91 buildCall() { | 91 buildCall() { |
| 92 var o = new api.Call(); | 92 var o = new api.Call(); |
| 93 buildCounterCall++; | 93 buildCounterCall++; |
| 94 if (buildCounterCall < 3) { | 94 if (buildCounterCall < 3) { |
| 95 o.callSetId = "foo"; | 95 o.callSetId = "foo"; |
| 96 o.callSetName = "foo"; | 96 o.callSetName = "foo"; |
| 97 o.genotype = buildUnnamed1172(); | 97 o.genotype = buildUnnamed1150(); |
| 98 o.genotypeLikelihood = buildUnnamed1173(); | 98 o.genotypeLikelihood = buildUnnamed1151(); |
| 99 o.info = buildUnnamed1175(); | 99 o.info = buildUnnamed1153(); |
| 100 o.phaseset = "foo"; | 100 o.phaseset = "foo"; |
| 101 } | 101 } |
| 102 buildCounterCall--; | 102 buildCounterCall--; |
| 103 return o; | 103 return o; |
| 104 } | 104 } |
| 105 | 105 |
| 106 checkCall(api.Call o) { | 106 checkCall(api.Call o) { |
| 107 buildCounterCall++; | 107 buildCounterCall++; |
| 108 if (buildCounterCall < 3) { | 108 if (buildCounterCall < 3) { |
| 109 unittest.expect(o.callSetId, unittest.equals('foo')); | 109 unittest.expect(o.callSetId, unittest.equals('foo')); |
| 110 unittest.expect(o.callSetName, unittest.equals('foo')); | 110 unittest.expect(o.callSetName, unittest.equals('foo')); |
| 111 checkUnnamed1172(o.genotype); | 111 checkUnnamed1150(o.genotype); |
| 112 checkUnnamed1173(o.genotypeLikelihood); | 112 checkUnnamed1151(o.genotypeLikelihood); |
| 113 checkUnnamed1175(o.info); | 113 checkUnnamed1153(o.info); |
| 114 unittest.expect(o.phaseset, unittest.equals('foo')); | 114 unittest.expect(o.phaseset, unittest.equals('foo')); |
| 115 } | 115 } |
| 116 buildCounterCall--; | 116 buildCounterCall--; |
| 117 } | 117 } |
| 118 | 118 |
| 119 buildUnnamed1176() { | 119 buildUnnamed1154() { |
| 120 var o = new core.List<core.String>(); | 120 var o = new core.List<core.String>(); |
| 121 o.add("foo"); | 121 o.add("foo"); |
| 122 o.add("foo"); | 122 o.add("foo"); |
| 123 return o; | 123 return o; |
| 124 } | 124 } |
| 125 | 125 |
| 126 checkUnnamed1176(core.List<core.String> o) { | 126 checkUnnamed1154(core.List<core.String> o) { |
| 127 unittest.expect(o, unittest.hasLength(2)); | 127 unittest.expect(o, unittest.hasLength(2)); |
| 128 unittest.expect(o[0], unittest.equals('foo')); | 128 unittest.expect(o[0], unittest.equals('foo')); |
| 129 unittest.expect(o[1], unittest.equals('foo')); | 129 unittest.expect(o[1], unittest.equals('foo')); |
| 130 } | 130 } |
| 131 | 131 |
| 132 buildUnnamed1177() { | 132 buildUnnamed1155() { |
| 133 var o = new core.Map<core.String, core.List<core.String>>(); | 133 var o = new core.Map<core.String, core.List<core.String>>(); |
| 134 o["x"] = buildUnnamed1176(); | 134 o["x"] = buildUnnamed1154(); |
| 135 o["y"] = buildUnnamed1176(); | 135 o["y"] = buildUnnamed1154(); |
| 136 return o; | 136 return o; |
| 137 } | 137 } |
| 138 | 138 |
| 139 checkUnnamed1177(core.Map<core.String, core.List<core.String>> o) { | 139 checkUnnamed1155(core.Map<core.String, core.List<core.String>> o) { |
| 140 unittest.expect(o, unittest.hasLength(2)); | 140 unittest.expect(o, unittest.hasLength(2)); |
| 141 checkUnnamed1176(o["x"]); | 141 checkUnnamed1154(o["x"]); |
| 142 checkUnnamed1176(o["y"]); | 142 checkUnnamed1154(o["y"]); |
| 143 } | 143 } |
| 144 | 144 |
| 145 buildUnnamed1178() { | 145 buildUnnamed1156() { |
| 146 var o = new core.List<core.String>(); | 146 var o = new core.List<core.String>(); |
| 147 o.add("foo"); | 147 o.add("foo"); |
| 148 o.add("foo"); | 148 o.add("foo"); |
| 149 return o; | 149 return o; |
| 150 } | 150 } |
| 151 | 151 |
| 152 checkUnnamed1178(core.List<core.String> o) { | 152 checkUnnamed1156(core.List<core.String> o) { |
| 153 unittest.expect(o, unittest.hasLength(2)); | 153 unittest.expect(o, unittest.hasLength(2)); |
| 154 unittest.expect(o[0], unittest.equals('foo')); | 154 unittest.expect(o[0], unittest.equals('foo')); |
| 155 unittest.expect(o[1], unittest.equals('foo')); | 155 unittest.expect(o[1], unittest.equals('foo')); |
| 156 } | 156 } |
| 157 | 157 |
| 158 core.int buildCounterCallSet = 0; | 158 core.int buildCounterCallSet = 0; |
| 159 buildCallSet() { | 159 buildCallSet() { |
| 160 var o = new api.CallSet(); | 160 var o = new api.CallSet(); |
| 161 buildCounterCallSet++; | 161 buildCounterCallSet++; |
| 162 if (buildCounterCallSet < 3) { | 162 if (buildCounterCallSet < 3) { |
| 163 o.created = "foo"; | 163 o.created = "foo"; |
| 164 o.id = "foo"; | 164 o.id = "foo"; |
| 165 o.info = buildUnnamed1177(); | 165 o.info = buildUnnamed1155(); |
| 166 o.name = "foo"; | 166 o.name = "foo"; |
| 167 o.sampleId = "foo"; | 167 o.sampleId = "foo"; |
| 168 o.variantSetIds = buildUnnamed1178(); | 168 o.variantSetIds = buildUnnamed1156(); |
| 169 } | 169 } |
| 170 buildCounterCallSet--; | 170 buildCounterCallSet--; |
| 171 return o; | 171 return o; |
| 172 } | 172 } |
| 173 | 173 |
| 174 checkCallSet(api.CallSet o) { | 174 checkCallSet(api.CallSet o) { |
| 175 buildCounterCallSet++; | 175 buildCounterCallSet++; |
| 176 if (buildCounterCallSet < 3) { | 176 if (buildCounterCallSet < 3) { |
| 177 unittest.expect(o.created, unittest.equals('foo')); | 177 unittest.expect(o.created, unittest.equals('foo')); |
| 178 unittest.expect(o.id, unittest.equals('foo')); | 178 unittest.expect(o.id, unittest.equals('foo')); |
| 179 checkUnnamed1177(o.info); | 179 checkUnnamed1155(o.info); |
| 180 unittest.expect(o.name, unittest.equals('foo')); | 180 unittest.expect(o.name, unittest.equals('foo')); |
| 181 unittest.expect(o.sampleId, unittest.equals('foo')); | 181 unittest.expect(o.sampleId, unittest.equals('foo')); |
| 182 checkUnnamed1178(o.variantSetIds); | 182 checkUnnamed1156(o.variantSetIds); |
| 183 } | 183 } |
| 184 buildCounterCallSet--; | 184 buildCounterCallSet--; |
| 185 } | 185 } |
| 186 | 186 |
| 187 core.int buildCounterCoverageBucket = 0; | 187 core.int buildCounterCoverageBucket = 0; |
| 188 buildCoverageBucket() { | 188 buildCoverageBucket() { |
| 189 var o = new api.CoverageBucket(); | 189 var o = new api.CoverageBucket(); |
| 190 buildCounterCoverageBucket++; | 190 buildCounterCoverageBucket++; |
| 191 if (buildCounterCoverageBucket < 3) { | 191 if (buildCounterCoverageBucket < 3) { |
| 192 o.meanCoverage = 42.0; | 192 o.meanCoverage = 42.0; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 223 buildCounterDataset++; | 223 buildCounterDataset++; |
| 224 if (buildCounterDataset < 3) { | 224 if (buildCounterDataset < 3) { |
| 225 unittest.expect(o.id, unittest.equals('foo')); | 225 unittest.expect(o.id, unittest.equals('foo')); |
| 226 unittest.expect(o.isPublic, unittest.isTrue); | 226 unittest.expect(o.isPublic, unittest.isTrue); |
| 227 unittest.expect(o.name, unittest.equals('foo')); | 227 unittest.expect(o.name, unittest.equals('foo')); |
| 228 unittest.expect(o.projectId, unittest.equals('foo')); | 228 unittest.expect(o.projectId, unittest.equals('foo')); |
| 229 } | 229 } |
| 230 buildCounterDataset--; | 230 buildCounterDataset--; |
| 231 } | 231 } |
| 232 | 232 |
| 233 buildUnnamed1179() { | 233 buildUnnamed1157() { |
| 234 var o = new core.List<core.String>(); | 234 var o = new core.List<core.String>(); |
| 235 o.add("foo"); | 235 o.add("foo"); |
| 236 o.add("foo"); | 236 o.add("foo"); |
| 237 return o; | 237 return o; |
| 238 } | 238 } |
| 239 | 239 |
| 240 checkUnnamed1179(core.List<core.String> o) { | 240 checkUnnamed1157(core.List<core.String> o) { |
| 241 unittest.expect(o, unittest.hasLength(2)); | 241 unittest.expect(o, unittest.hasLength(2)); |
| 242 unittest.expect(o[0], unittest.equals('foo')); | 242 unittest.expect(o[0], unittest.equals('foo')); |
| 243 unittest.expect(o[1], unittest.equals('foo')); | 243 unittest.expect(o[1], unittest.equals('foo')); |
| 244 } | 244 } |
| 245 | 245 |
| 246 buildUnnamed1180() { | 246 buildUnnamed1158() { |
| 247 var o = new core.List<core.String>(); | 247 var o = new core.List<core.String>(); |
| 248 o.add("foo"); | 248 o.add("foo"); |
| 249 o.add("foo"); | 249 o.add("foo"); |
| 250 return o; | 250 return o; |
| 251 } | 251 } |
| 252 | 252 |
| 253 checkUnnamed1180(core.List<core.String> o) { | 253 checkUnnamed1158(core.List<core.String> o) { |
| 254 unittest.expect(o, unittest.hasLength(2)); | 254 unittest.expect(o, unittest.hasLength(2)); |
| 255 unittest.expect(o[0], unittest.equals('foo')); | 255 unittest.expect(o[0], unittest.equals('foo')); |
| 256 unittest.expect(o[1], unittest.equals('foo')); | 256 unittest.expect(o[1], unittest.equals('foo')); |
| 257 } | 257 } |
| 258 | 258 |
| 259 core.int buildCounterExperimentalCreateJobRequest = 0; | 259 core.int buildCounterExperimentalCreateJobRequest = 0; |
| 260 buildExperimentalCreateJobRequest() { | 260 buildExperimentalCreateJobRequest() { |
| 261 var o = new api.ExperimentalCreateJobRequest(); | 261 var o = new api.ExperimentalCreateJobRequest(); |
| 262 buildCounterExperimentalCreateJobRequest++; | 262 buildCounterExperimentalCreateJobRequest++; |
| 263 if (buildCounterExperimentalCreateJobRequest < 3) { | 263 if (buildCounterExperimentalCreateJobRequest < 3) { |
| 264 o.align = true; | 264 o.align = true; |
| 265 o.callVariants = true; | 265 o.callVariants = true; |
| 266 o.gcsOutputPath = "foo"; | 266 o.gcsOutputPath = "foo"; |
| 267 o.libraryName = "foo"; | 267 o.libraryName = "foo"; |
| 268 o.pairedSourceUris = buildUnnamed1179(); | 268 o.pairedSourceUris = buildUnnamed1157(); |
| 269 o.platformName = "foo"; | 269 o.platformName = "foo"; |
| 270 o.platformUnit = "foo"; | 270 o.platformUnit = "foo"; |
| 271 o.projectId = "foo"; | 271 o.projectId = "foo"; |
| 272 o.readGroupId = "foo"; | 272 o.readGroupId = "foo"; |
| 273 o.sampleName = "foo"; | 273 o.sampleName = "foo"; |
| 274 o.sourceUris = buildUnnamed1180(); | 274 o.sourceUris = buildUnnamed1158(); |
| 275 } | 275 } |
| 276 buildCounterExperimentalCreateJobRequest--; | 276 buildCounterExperimentalCreateJobRequest--; |
| 277 return o; | 277 return o; |
| 278 } | 278 } |
| 279 | 279 |
| 280 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { | 280 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { |
| 281 buildCounterExperimentalCreateJobRequest++; | 281 buildCounterExperimentalCreateJobRequest++; |
| 282 if (buildCounterExperimentalCreateJobRequest < 3) { | 282 if (buildCounterExperimentalCreateJobRequest < 3) { |
| 283 unittest.expect(o.align, unittest.isTrue); | 283 unittest.expect(o.align, unittest.isTrue); |
| 284 unittest.expect(o.callVariants, unittest.isTrue); | 284 unittest.expect(o.callVariants, unittest.isTrue); |
| 285 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); | 285 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); |
| 286 unittest.expect(o.libraryName, unittest.equals('foo')); | 286 unittest.expect(o.libraryName, unittest.equals('foo')); |
| 287 checkUnnamed1179(o.pairedSourceUris); | 287 checkUnnamed1157(o.pairedSourceUris); |
| 288 unittest.expect(o.platformName, unittest.equals('foo')); | 288 unittest.expect(o.platformName, unittest.equals('foo')); |
| 289 unittest.expect(o.platformUnit, unittest.equals('foo')); | 289 unittest.expect(o.platformUnit, unittest.equals('foo')); |
| 290 unittest.expect(o.projectId, unittest.equals('foo')); | 290 unittest.expect(o.projectId, unittest.equals('foo')); |
| 291 unittest.expect(o.readGroupId, unittest.equals('foo')); | 291 unittest.expect(o.readGroupId, unittest.equals('foo')); |
| 292 unittest.expect(o.sampleName, unittest.equals('foo')); | 292 unittest.expect(o.sampleName, unittest.equals('foo')); |
| 293 checkUnnamed1180(o.sourceUris); | 293 checkUnnamed1158(o.sourceUris); |
| 294 } | 294 } |
| 295 buildCounterExperimentalCreateJobRequest--; | 295 buildCounterExperimentalCreateJobRequest--; |
| 296 } | 296 } |
| 297 | 297 |
| 298 core.int buildCounterExperimentalCreateJobResponse = 0; | 298 core.int buildCounterExperimentalCreateJobResponse = 0; |
| 299 buildExperimentalCreateJobResponse() { | 299 buildExperimentalCreateJobResponse() { |
| 300 var o = new api.ExperimentalCreateJobResponse(); | 300 var o = new api.ExperimentalCreateJobResponse(); |
| 301 buildCounterExperimentalCreateJobResponse++; | 301 buildCounterExperimentalCreateJobResponse++; |
| 302 if (buildCounterExperimentalCreateJobResponse < 3) { | 302 if (buildCounterExperimentalCreateJobResponse < 3) { |
| 303 o.jobId = "foo"; | 303 o.jobId = "foo"; |
| 304 } | 304 } |
| 305 buildCounterExperimentalCreateJobResponse--; | 305 buildCounterExperimentalCreateJobResponse--; |
| 306 return o; | 306 return o; |
| 307 } | 307 } |
| 308 | 308 |
| 309 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { | 309 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { |
| 310 buildCounterExperimentalCreateJobResponse++; | 310 buildCounterExperimentalCreateJobResponse++; |
| 311 if (buildCounterExperimentalCreateJobResponse < 3) { | 311 if (buildCounterExperimentalCreateJobResponse < 3) { |
| 312 unittest.expect(o.jobId, unittest.equals('foo')); | 312 unittest.expect(o.jobId, unittest.equals('foo')); |
| 313 } | 313 } |
| 314 buildCounterExperimentalCreateJobResponse--; | 314 buildCounterExperimentalCreateJobResponse--; |
| 315 } | 315 } |
| 316 | 316 |
| 317 buildUnnamed1181() { | 317 buildUnnamed1159() { |
| 318 var o = new core.List<core.String>(); | 318 var o = new core.List<core.String>(); |
| 319 o.add("foo"); | 319 o.add("foo"); |
| 320 o.add("foo"); | 320 o.add("foo"); |
| 321 return o; | 321 return o; |
| 322 } | 322 } |
| 323 | 323 |
| 324 checkUnnamed1181(core.List<core.String> o) { | 324 checkUnnamed1159(core.List<core.String> o) { |
| 325 unittest.expect(o, unittest.hasLength(2)); | 325 unittest.expect(o, unittest.hasLength(2)); |
| 326 unittest.expect(o[0], unittest.equals('foo')); | 326 unittest.expect(o[0], unittest.equals('foo')); |
| 327 unittest.expect(o[1], unittest.equals('foo')); | 327 unittest.expect(o[1], unittest.equals('foo')); |
| 328 } | 328 } |
| 329 | 329 |
| 330 buildUnnamed1182() { | 330 buildUnnamed1160() { |
| 331 var o = new core.List<core.String>(); | 331 var o = new core.List<core.String>(); |
| 332 o.add("foo"); | 332 o.add("foo"); |
| 333 o.add("foo"); | 333 o.add("foo"); |
| 334 return o; | 334 return o; |
| 335 } | 335 } |
| 336 | 336 |
| 337 checkUnnamed1182(core.List<core.String> o) { | 337 checkUnnamed1160(core.List<core.String> o) { |
| 338 unittest.expect(o, unittest.hasLength(2)); | 338 unittest.expect(o, unittest.hasLength(2)); |
| 339 unittest.expect(o[0], unittest.equals('foo')); | 339 unittest.expect(o[0], unittest.equals('foo')); |
| 340 unittest.expect(o[1], unittest.equals('foo')); | 340 unittest.expect(o[1], unittest.equals('foo')); |
| 341 } | 341 } |
| 342 | 342 |
| 343 core.int buildCounterExportReadsetsRequest = 0; | 343 core.int buildCounterExportReadsetsRequest = 0; |
| 344 buildExportReadsetsRequest() { | 344 buildExportReadsetsRequest() { |
| 345 var o = new api.ExportReadsetsRequest(); | 345 var o = new api.ExportReadsetsRequest(); |
| 346 buildCounterExportReadsetsRequest++; | 346 buildCounterExportReadsetsRequest++; |
| 347 if (buildCounterExportReadsetsRequest < 3) { | 347 if (buildCounterExportReadsetsRequest < 3) { |
| 348 o.exportUri = "foo"; | 348 o.exportUri = "foo"; |
| 349 o.projectId = "foo"; | 349 o.projectId = "foo"; |
| 350 o.readsetIds = buildUnnamed1181(); | 350 o.readsetIds = buildUnnamed1159(); |
| 351 o.referenceNames = buildUnnamed1182(); | 351 o.referenceNames = buildUnnamed1160(); |
| 352 } | 352 } |
| 353 buildCounterExportReadsetsRequest--; | 353 buildCounterExportReadsetsRequest--; |
| 354 return o; | 354 return o; |
| 355 } | 355 } |
| 356 | 356 |
| 357 checkExportReadsetsRequest(api.ExportReadsetsRequest o) { | 357 checkExportReadsetsRequest(api.ExportReadsetsRequest o) { |
| 358 buildCounterExportReadsetsRequest++; | 358 buildCounterExportReadsetsRequest++; |
| 359 if (buildCounterExportReadsetsRequest < 3) { | 359 if (buildCounterExportReadsetsRequest < 3) { |
| 360 unittest.expect(o.exportUri, unittest.equals('foo')); | 360 unittest.expect(o.exportUri, unittest.equals('foo')); |
| 361 unittest.expect(o.projectId, unittest.equals('foo')); | 361 unittest.expect(o.projectId, unittest.equals('foo')); |
| 362 checkUnnamed1181(o.readsetIds); | 362 checkUnnamed1159(o.readsetIds); |
| 363 checkUnnamed1182(o.referenceNames); | 363 checkUnnamed1160(o.referenceNames); |
| 364 } | 364 } |
| 365 buildCounterExportReadsetsRequest--; | 365 buildCounterExportReadsetsRequest--; |
| 366 } | 366 } |
| 367 | 367 |
| 368 core.int buildCounterExportReadsetsResponse = 0; | 368 core.int buildCounterExportReadsetsResponse = 0; |
| 369 buildExportReadsetsResponse() { | 369 buildExportReadsetsResponse() { |
| 370 var o = new api.ExportReadsetsResponse(); | 370 var o = new api.ExportReadsetsResponse(); |
| 371 buildCounterExportReadsetsResponse++; | 371 buildCounterExportReadsetsResponse++; |
| 372 if (buildCounterExportReadsetsResponse < 3) { | 372 if (buildCounterExportReadsetsResponse < 3) { |
| 373 o.jobId = "foo"; | 373 o.jobId = "foo"; |
| 374 } | 374 } |
| 375 buildCounterExportReadsetsResponse--; | 375 buildCounterExportReadsetsResponse--; |
| 376 return o; | 376 return o; |
| 377 } | 377 } |
| 378 | 378 |
| 379 checkExportReadsetsResponse(api.ExportReadsetsResponse o) { | 379 checkExportReadsetsResponse(api.ExportReadsetsResponse o) { |
| 380 buildCounterExportReadsetsResponse++; | 380 buildCounterExportReadsetsResponse++; |
| 381 if (buildCounterExportReadsetsResponse < 3) { | 381 if (buildCounterExportReadsetsResponse < 3) { |
| 382 unittest.expect(o.jobId, unittest.equals('foo')); | 382 unittest.expect(o.jobId, unittest.equals('foo')); |
| 383 } | 383 } |
| 384 buildCounterExportReadsetsResponse--; | 384 buildCounterExportReadsetsResponse--; |
| 385 } | 385 } |
| 386 | 386 |
| 387 buildUnnamed1183() { | 387 buildUnnamed1161() { |
| 388 var o = new core.List<core.String>(); | 388 var o = new core.List<core.String>(); |
| 389 o.add("foo"); | 389 o.add("foo"); |
| 390 o.add("foo"); | 390 o.add("foo"); |
| 391 return o; | 391 return o; |
| 392 } | 392 } |
| 393 | 393 |
| 394 checkUnnamed1183(core.List<core.String> o) { | 394 checkUnnamed1161(core.List<core.String> o) { |
| 395 unittest.expect(o, unittest.hasLength(2)); | 395 unittest.expect(o, unittest.hasLength(2)); |
| 396 unittest.expect(o[0], unittest.equals('foo')); | 396 unittest.expect(o[0], unittest.equals('foo')); |
| 397 unittest.expect(o[1], unittest.equals('foo')); | 397 unittest.expect(o[1], unittest.equals('foo')); |
| 398 } | 398 } |
| 399 | 399 |
| 400 core.int buildCounterExportVariantsRequest = 0; | 400 core.int buildCounterExportVariantsRequest = 0; |
| 401 buildExportVariantsRequest() { | 401 buildExportVariantsRequest() { |
| 402 var o = new api.ExportVariantsRequest(); | 402 var o = new api.ExportVariantsRequest(); |
| 403 buildCounterExportVariantsRequest++; | 403 buildCounterExportVariantsRequest++; |
| 404 if (buildCounterExportVariantsRequest < 3) { | 404 if (buildCounterExportVariantsRequest < 3) { |
| 405 o.bigqueryDataset = "foo"; | 405 o.bigqueryDataset = "foo"; |
| 406 o.bigqueryTable = "foo"; | 406 o.bigqueryTable = "foo"; |
| 407 o.callSetIds = buildUnnamed1183(); | 407 o.callSetIds = buildUnnamed1161(); |
| 408 o.format = "foo"; | 408 o.format = "foo"; |
| 409 o.projectId = "foo"; | 409 o.projectId = "foo"; |
| 410 o.variantSetId = "foo"; | 410 o.variantSetId = "foo"; |
| 411 } | 411 } |
| 412 buildCounterExportVariantsRequest--; | 412 buildCounterExportVariantsRequest--; |
| 413 return o; | 413 return o; |
| 414 } | 414 } |
| 415 | 415 |
| 416 checkExportVariantsRequest(api.ExportVariantsRequest o) { | 416 checkExportVariantsRequest(api.ExportVariantsRequest o) { |
| 417 buildCounterExportVariantsRequest++; | 417 buildCounterExportVariantsRequest++; |
| 418 if (buildCounterExportVariantsRequest < 3) { | 418 if (buildCounterExportVariantsRequest < 3) { |
| 419 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); | 419 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); |
| 420 unittest.expect(o.bigqueryTable, unittest.equals('foo')); | 420 unittest.expect(o.bigqueryTable, unittest.equals('foo')); |
| 421 checkUnnamed1183(o.callSetIds); | 421 checkUnnamed1161(o.callSetIds); |
| 422 unittest.expect(o.format, unittest.equals('foo')); | 422 unittest.expect(o.format, unittest.equals('foo')); |
| 423 unittest.expect(o.projectId, unittest.equals('foo')); | 423 unittest.expect(o.projectId, unittest.equals('foo')); |
| 424 unittest.expect(o.variantSetId, unittest.equals('foo')); | 424 unittest.expect(o.variantSetId, unittest.equals('foo')); |
| 425 } | 425 } |
| 426 buildCounterExportVariantsRequest--; | 426 buildCounterExportVariantsRequest--; |
| 427 } | 427 } |
| 428 | 428 |
| 429 core.int buildCounterExportVariantsResponse = 0; | 429 core.int buildCounterExportVariantsResponse = 0; |
| 430 buildExportVariantsResponse() { | 430 buildExportVariantsResponse() { |
| 431 var o = new api.ExportVariantsResponse(); | 431 var o = new api.ExportVariantsResponse(); |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 | 482 |
| 483 checkHeader(api.Header o) { | 483 checkHeader(api.Header o) { |
| 484 buildCounterHeader++; | 484 buildCounterHeader++; |
| 485 if (buildCounterHeader < 3) { | 485 if (buildCounterHeader < 3) { |
| 486 unittest.expect(o.sortingOrder, unittest.equals('foo')); | 486 unittest.expect(o.sortingOrder, unittest.equals('foo')); |
| 487 unittest.expect(o.version, unittest.equals('foo')); | 487 unittest.expect(o.version, unittest.equals('foo')); |
| 488 } | 488 } |
| 489 buildCounterHeader--; | 489 buildCounterHeader--; |
| 490 } | 490 } |
| 491 | 491 |
| 492 buildUnnamed1184() { | 492 buildUnnamed1162() { |
| 493 var o = new core.List<core.String>(); | 493 var o = new core.List<core.String>(); |
| 494 o.add("foo"); | 494 o.add("foo"); |
| 495 o.add("foo"); | 495 o.add("foo"); |
| 496 return o; | 496 return o; |
| 497 } | 497 } |
| 498 | 498 |
| 499 checkUnnamed1184(core.List<core.String> o) { | 499 checkUnnamed1162(core.List<core.String> o) { |
| 500 unittest.expect(o, unittest.hasLength(2)); | 500 unittest.expect(o, unittest.hasLength(2)); |
| 501 unittest.expect(o[0], unittest.equals('foo')); | 501 unittest.expect(o[0], unittest.equals('foo')); |
| 502 unittest.expect(o[1], unittest.equals('foo')); | 502 unittest.expect(o[1], unittest.equals('foo')); |
| 503 } | 503 } |
| 504 | 504 |
| 505 buildUnnamed1185() { | 505 buildUnnamed1163() { |
| 506 var o = new core.List<api.Header>(); | 506 var o = new core.List<api.Header>(); |
| 507 o.add(buildHeader()); | 507 o.add(buildHeader()); |
| 508 o.add(buildHeader()); | 508 o.add(buildHeader()); |
| 509 return o; | 509 return o; |
| 510 } | 510 } |
| 511 | 511 |
| 512 checkUnnamed1185(core.List<api.Header> o) { | 512 checkUnnamed1163(core.List<api.Header> o) { |
| 513 unittest.expect(o, unittest.hasLength(2)); | 513 unittest.expect(o, unittest.hasLength(2)); |
| 514 checkHeader(o[0]); | 514 checkHeader(o[0]); |
| 515 checkHeader(o[1]); | 515 checkHeader(o[1]); |
| 516 } | 516 } |
| 517 | 517 |
| 518 buildUnnamed1186() { | 518 buildUnnamed1164() { |
| 519 var o = new core.List<api.Program>(); | 519 var o = new core.List<api.Program>(); |
| 520 o.add(buildProgram()); | 520 o.add(buildProgram()); |
| 521 o.add(buildProgram()); | 521 o.add(buildProgram()); |
| 522 return o; | 522 return o; |
| 523 } | 523 } |
| 524 | 524 |
| 525 checkUnnamed1186(core.List<api.Program> o) { | 525 checkUnnamed1164(core.List<api.Program> o) { |
| 526 unittest.expect(o, unittest.hasLength(2)); | 526 unittest.expect(o, unittest.hasLength(2)); |
| 527 checkProgram(o[0]); | 527 checkProgram(o[0]); |
| 528 checkProgram(o[1]); | 528 checkProgram(o[1]); |
| 529 } | 529 } |
| 530 | 530 |
| 531 buildUnnamed1187() { | 531 buildUnnamed1165() { |
| 532 var o = new core.List<api.ReadGroup>(); | 532 var o = new core.List<api.ReadGroup>(); |
| 533 o.add(buildReadGroup()); | 533 o.add(buildReadGroup()); |
| 534 o.add(buildReadGroup()); | 534 o.add(buildReadGroup()); |
| 535 return o; | 535 return o; |
| 536 } | 536 } |
| 537 | 537 |
| 538 checkUnnamed1187(core.List<api.ReadGroup> o) { | 538 checkUnnamed1165(core.List<api.ReadGroup> o) { |
| 539 unittest.expect(o, unittest.hasLength(2)); | 539 unittest.expect(o, unittest.hasLength(2)); |
| 540 checkReadGroup(o[0]); | 540 checkReadGroup(o[0]); |
| 541 checkReadGroup(o[1]); | 541 checkReadGroup(o[1]); |
| 542 } | 542 } |
| 543 | 543 |
| 544 buildUnnamed1188() { | 544 buildUnnamed1166() { |
| 545 var o = new core.List<api.ReferenceSequence>(); | 545 var o = new core.List<api.ReferenceSequence>(); |
| 546 o.add(buildReferenceSequence()); | 546 o.add(buildReferenceSequence()); |
| 547 o.add(buildReferenceSequence()); | 547 o.add(buildReferenceSequence()); |
| 548 return o; | 548 return o; |
| 549 } | 549 } |
| 550 | 550 |
| 551 checkUnnamed1188(core.List<api.ReferenceSequence> o) { | 551 checkUnnamed1166(core.List<api.ReferenceSequence> o) { |
| 552 unittest.expect(o, unittest.hasLength(2)); | 552 unittest.expect(o, unittest.hasLength(2)); |
| 553 checkReferenceSequence(o[0]); | 553 checkReferenceSequence(o[0]); |
| 554 checkReferenceSequence(o[1]); | 554 checkReferenceSequence(o[1]); |
| 555 } | 555 } |
| 556 | 556 |
| 557 core.int buildCounterHeaderSection = 0; | 557 core.int buildCounterHeaderSection = 0; |
| 558 buildHeaderSection() { | 558 buildHeaderSection() { |
| 559 var o = new api.HeaderSection(); | 559 var o = new api.HeaderSection(); |
| 560 buildCounterHeaderSection++; | 560 buildCounterHeaderSection++; |
| 561 if (buildCounterHeaderSection < 3) { | 561 if (buildCounterHeaderSection < 3) { |
| 562 o.comments = buildUnnamed1184(); | 562 o.comments = buildUnnamed1162(); |
| 563 o.fileUri = "foo"; | 563 o.fileUri = "foo"; |
| 564 o.filename = "foo"; | 564 o.filename = "foo"; |
| 565 o.headers = buildUnnamed1185(); | 565 o.headers = buildUnnamed1163(); |
| 566 o.programs = buildUnnamed1186(); | 566 o.programs = buildUnnamed1164(); |
| 567 o.readGroups = buildUnnamed1187(); | 567 o.readGroups = buildUnnamed1165(); |
| 568 o.refSequences = buildUnnamed1188(); | 568 o.refSequences = buildUnnamed1166(); |
| 569 } | 569 } |
| 570 buildCounterHeaderSection--; | 570 buildCounterHeaderSection--; |
| 571 return o; | 571 return o; |
| 572 } | 572 } |
| 573 | 573 |
| 574 checkHeaderSection(api.HeaderSection o) { | 574 checkHeaderSection(api.HeaderSection o) { |
| 575 buildCounterHeaderSection++; | 575 buildCounterHeaderSection++; |
| 576 if (buildCounterHeaderSection < 3) { | 576 if (buildCounterHeaderSection < 3) { |
| 577 checkUnnamed1184(o.comments); | 577 checkUnnamed1162(o.comments); |
| 578 unittest.expect(o.fileUri, unittest.equals('foo')); | 578 unittest.expect(o.fileUri, unittest.equals('foo')); |
| 579 unittest.expect(o.filename, unittest.equals('foo')); | 579 unittest.expect(o.filename, unittest.equals('foo')); |
| 580 checkUnnamed1185(o.headers); | 580 checkUnnamed1163(o.headers); |
| 581 checkUnnamed1186(o.programs); | 581 checkUnnamed1164(o.programs); |
| 582 checkUnnamed1187(o.readGroups); | 582 checkUnnamed1165(o.readGroups); |
| 583 checkUnnamed1188(o.refSequences); | 583 checkUnnamed1166(o.refSequences); |
| 584 } | 584 } |
| 585 buildCounterHeaderSection--; | 585 buildCounterHeaderSection--; |
| 586 } | 586 } |
| 587 | 587 |
| 588 buildUnnamed1189() { | 588 buildUnnamed1167() { |
| 589 var o = new core.List<core.String>(); | 589 var o = new core.List<core.String>(); |
| 590 o.add("foo"); | 590 o.add("foo"); |
| 591 o.add("foo"); | 591 o.add("foo"); |
| 592 return o; | 592 return o; |
| 593 } | 593 } |
| 594 | 594 |
| 595 checkUnnamed1189(core.List<core.String> o) { | 595 checkUnnamed1167(core.List<core.String> o) { |
| 596 unittest.expect(o, unittest.hasLength(2)); | 596 unittest.expect(o, unittest.hasLength(2)); |
| 597 unittest.expect(o[0], unittest.equals('foo')); | 597 unittest.expect(o[0], unittest.equals('foo')); |
| 598 unittest.expect(o[1], unittest.equals('foo')); | 598 unittest.expect(o[1], unittest.equals('foo')); |
| 599 } | 599 } |
| 600 | 600 |
| 601 core.int buildCounterImportReadsetsRequest = 0; | 601 core.int buildCounterImportReadsetsRequest = 0; |
| 602 buildImportReadsetsRequest() { | 602 buildImportReadsetsRequest() { |
| 603 var o = new api.ImportReadsetsRequest(); | 603 var o = new api.ImportReadsetsRequest(); |
| 604 buildCounterImportReadsetsRequest++; | 604 buildCounterImportReadsetsRequest++; |
| 605 if (buildCounterImportReadsetsRequest < 3) { | 605 if (buildCounterImportReadsetsRequest < 3) { |
| 606 o.datasetId = "foo"; | 606 o.datasetId = "foo"; |
| 607 o.sourceUris = buildUnnamed1189(); | 607 o.sourceUris = buildUnnamed1167(); |
| 608 } | 608 } |
| 609 buildCounterImportReadsetsRequest--; | 609 buildCounterImportReadsetsRequest--; |
| 610 return o; | 610 return o; |
| 611 } | 611 } |
| 612 | 612 |
| 613 checkImportReadsetsRequest(api.ImportReadsetsRequest o) { | 613 checkImportReadsetsRequest(api.ImportReadsetsRequest o) { |
| 614 buildCounterImportReadsetsRequest++; | 614 buildCounterImportReadsetsRequest++; |
| 615 if (buildCounterImportReadsetsRequest < 3) { | 615 if (buildCounterImportReadsetsRequest < 3) { |
| 616 unittest.expect(o.datasetId, unittest.equals('foo')); | 616 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 617 checkUnnamed1189(o.sourceUris); | 617 checkUnnamed1167(o.sourceUris); |
| 618 } | 618 } |
| 619 buildCounterImportReadsetsRequest--; | 619 buildCounterImportReadsetsRequest--; |
| 620 } | 620 } |
| 621 | 621 |
| 622 core.int buildCounterImportReadsetsResponse = 0; | 622 core.int buildCounterImportReadsetsResponse = 0; |
| 623 buildImportReadsetsResponse() { | 623 buildImportReadsetsResponse() { |
| 624 var o = new api.ImportReadsetsResponse(); | 624 var o = new api.ImportReadsetsResponse(); |
| 625 buildCounterImportReadsetsResponse++; | 625 buildCounterImportReadsetsResponse++; |
| 626 if (buildCounterImportReadsetsResponse < 3) { | 626 if (buildCounterImportReadsetsResponse < 3) { |
| 627 o.jobId = "foo"; | 627 o.jobId = "foo"; |
| 628 } | 628 } |
| 629 buildCounterImportReadsetsResponse--; | 629 buildCounterImportReadsetsResponse--; |
| 630 return o; | 630 return o; |
| 631 } | 631 } |
| 632 | 632 |
| 633 checkImportReadsetsResponse(api.ImportReadsetsResponse o) { | 633 checkImportReadsetsResponse(api.ImportReadsetsResponse o) { |
| 634 buildCounterImportReadsetsResponse++; | 634 buildCounterImportReadsetsResponse++; |
| 635 if (buildCounterImportReadsetsResponse < 3) { | 635 if (buildCounterImportReadsetsResponse < 3) { |
| 636 unittest.expect(o.jobId, unittest.equals('foo')); | 636 unittest.expect(o.jobId, unittest.equals('foo')); |
| 637 } | 637 } |
| 638 buildCounterImportReadsetsResponse--; | 638 buildCounterImportReadsetsResponse--; |
| 639 } | 639 } |
| 640 | 640 |
| 641 buildUnnamed1190() { | 641 buildUnnamed1168() { |
| 642 var o = new core.List<core.String>(); | 642 var o = new core.List<core.String>(); |
| 643 o.add("foo"); | 643 o.add("foo"); |
| 644 o.add("foo"); | 644 o.add("foo"); |
| 645 return o; | 645 return o; |
| 646 } | 646 } |
| 647 | 647 |
| 648 checkUnnamed1190(core.List<core.String> o) { | 648 checkUnnamed1168(core.List<core.String> o) { |
| 649 unittest.expect(o, unittest.hasLength(2)); | 649 unittest.expect(o, unittest.hasLength(2)); |
| 650 unittest.expect(o[0], unittest.equals('foo')); | 650 unittest.expect(o[0], unittest.equals('foo')); |
| 651 unittest.expect(o[1], unittest.equals('foo')); | 651 unittest.expect(o[1], unittest.equals('foo')); |
| 652 } | 652 } |
| 653 | 653 |
| 654 core.int buildCounterImportVariantsRequest = 0; | 654 core.int buildCounterImportVariantsRequest = 0; |
| 655 buildImportVariantsRequest() { | 655 buildImportVariantsRequest() { |
| 656 var o = new api.ImportVariantsRequest(); | 656 var o = new api.ImportVariantsRequest(); |
| 657 buildCounterImportVariantsRequest++; | 657 buildCounterImportVariantsRequest++; |
| 658 if (buildCounterImportVariantsRequest < 3) { | 658 if (buildCounterImportVariantsRequest < 3) { |
| 659 o.format = "foo"; | 659 o.format = "foo"; |
| 660 o.sourceUris = buildUnnamed1190(); | 660 o.sourceUris = buildUnnamed1168(); |
| 661 o.variantSetId = "foo"; | 661 o.variantSetId = "foo"; |
| 662 } | 662 } |
| 663 buildCounterImportVariantsRequest--; | 663 buildCounterImportVariantsRequest--; |
| 664 return o; | 664 return o; |
| 665 } | 665 } |
| 666 | 666 |
| 667 checkImportVariantsRequest(api.ImportVariantsRequest o) { | 667 checkImportVariantsRequest(api.ImportVariantsRequest o) { |
| 668 buildCounterImportVariantsRequest++; | 668 buildCounterImportVariantsRequest++; |
| 669 if (buildCounterImportVariantsRequest < 3) { | 669 if (buildCounterImportVariantsRequest < 3) { |
| 670 unittest.expect(o.format, unittest.equals('foo')); | 670 unittest.expect(o.format, unittest.equals('foo')); |
| 671 checkUnnamed1190(o.sourceUris); | 671 checkUnnamed1168(o.sourceUris); |
| 672 unittest.expect(o.variantSetId, unittest.equals('foo')); | 672 unittest.expect(o.variantSetId, unittest.equals('foo')); |
| 673 } | 673 } |
| 674 buildCounterImportVariantsRequest--; | 674 buildCounterImportVariantsRequest--; |
| 675 } | 675 } |
| 676 | 676 |
| 677 core.int buildCounterImportVariantsResponse = 0; | 677 core.int buildCounterImportVariantsResponse = 0; |
| 678 buildImportVariantsResponse() { | 678 buildImportVariantsResponse() { |
| 679 var o = new api.ImportVariantsResponse(); | 679 var o = new api.ImportVariantsResponse(); |
| 680 buildCounterImportVariantsResponse++; | 680 buildCounterImportVariantsResponse++; |
| 681 if (buildCounterImportVariantsResponse < 3) { | 681 if (buildCounterImportVariantsResponse < 3) { |
| 682 o.jobId = "foo"; | 682 o.jobId = "foo"; |
| 683 } | 683 } |
| 684 buildCounterImportVariantsResponse--; | 684 buildCounterImportVariantsResponse--; |
| 685 return o; | 685 return o; |
| 686 } | 686 } |
| 687 | 687 |
| 688 checkImportVariantsResponse(api.ImportVariantsResponse o) { | 688 checkImportVariantsResponse(api.ImportVariantsResponse o) { |
| 689 buildCounterImportVariantsResponse++; | 689 buildCounterImportVariantsResponse++; |
| 690 if (buildCounterImportVariantsResponse < 3) { | 690 if (buildCounterImportVariantsResponse < 3) { |
| 691 unittest.expect(o.jobId, unittest.equals('foo')); | 691 unittest.expect(o.jobId, unittest.equals('foo')); |
| 692 } | 692 } |
| 693 buildCounterImportVariantsResponse--; | 693 buildCounterImportVariantsResponse--; |
| 694 } | 694 } |
| 695 | 695 |
| 696 buildUnnamed1191() { | 696 buildUnnamed1169() { |
| 697 var o = new core.List<core.String>(); | 697 var o = new core.List<core.String>(); |
| 698 o.add("foo"); | 698 o.add("foo"); |
| 699 o.add("foo"); | 699 o.add("foo"); |
| 700 return o; | 700 return o; |
| 701 } | 701 } |
| 702 | 702 |
| 703 checkUnnamed1191(core.List<core.String> o) { | 703 checkUnnamed1169(core.List<core.String> o) { |
| 704 unittest.expect(o, unittest.hasLength(2)); | 704 unittest.expect(o, unittest.hasLength(2)); |
| 705 unittest.expect(o[0], unittest.equals('foo')); | 705 unittest.expect(o[0], unittest.equals('foo')); |
| 706 unittest.expect(o[1], unittest.equals('foo')); | 706 unittest.expect(o[1], unittest.equals('foo')); |
| 707 } | 707 } |
| 708 | 708 |
| 709 buildUnnamed1192() { | 709 buildUnnamed1170() { |
| 710 var o = new core.List<core.String>(); | 710 var o = new core.List<core.String>(); |
| 711 o.add("foo"); | 711 o.add("foo"); |
| 712 o.add("foo"); | 712 o.add("foo"); |
| 713 return o; | 713 return o; |
| 714 } | 714 } |
| 715 | 715 |
| 716 checkUnnamed1192(core.List<core.String> o) { | 716 checkUnnamed1170(core.List<core.String> o) { |
| 717 unittest.expect(o, unittest.hasLength(2)); | 717 unittest.expect(o, unittest.hasLength(2)); |
| 718 unittest.expect(o[0], unittest.equals('foo')); | 718 unittest.expect(o[0], unittest.equals('foo')); |
| 719 unittest.expect(o[1], unittest.equals('foo')); | 719 unittest.expect(o[1], unittest.equals('foo')); |
| 720 } | 720 } |
| 721 | 721 |
| 722 buildUnnamed1193() { | 722 buildUnnamed1171() { |
| 723 var o = new core.List<core.String>(); | 723 var o = new core.List<core.String>(); |
| 724 o.add("foo"); | 724 o.add("foo"); |
| 725 o.add("foo"); | 725 o.add("foo"); |
| 726 return o; | 726 return o; |
| 727 } | 727 } |
| 728 | 728 |
| 729 checkUnnamed1193(core.List<core.String> o) { | 729 checkUnnamed1171(core.List<core.String> o) { |
| 730 unittest.expect(o, unittest.hasLength(2)); | 730 unittest.expect(o, unittest.hasLength(2)); |
| 731 unittest.expect(o[0], unittest.equals('foo')); | 731 unittest.expect(o[0], unittest.equals('foo')); |
| 732 unittest.expect(o[1], unittest.equals('foo')); | 732 unittest.expect(o[1], unittest.equals('foo')); |
| 733 } | 733 } |
| 734 | 734 |
| 735 core.int buildCounterJob = 0; | 735 core.int buildCounterJob = 0; |
| 736 buildJob() { | 736 buildJob() { |
| 737 var o = new api.Job(); | 737 var o = new api.Job(); |
| 738 buildCounterJob++; | 738 buildCounterJob++; |
| 739 if (buildCounterJob < 3) { | 739 if (buildCounterJob < 3) { |
| 740 o.created = "foo"; | 740 o.created = "foo"; |
| 741 o.description = "foo"; | 741 o.description = "foo"; |
| 742 o.errors = buildUnnamed1191(); | 742 o.errors = buildUnnamed1169(); |
| 743 o.id = "foo"; | 743 o.id = "foo"; |
| 744 o.importedIds = buildUnnamed1192(); | 744 o.importedIds = buildUnnamed1170(); |
| 745 o.projectId = "foo"; | 745 o.projectId = "foo"; |
| 746 o.request = buildJobRequest(); | 746 o.request = buildJobRequest(); |
| 747 o.status = "foo"; | 747 o.status = "foo"; |
| 748 o.warnings = buildUnnamed1193(); | 748 o.warnings = buildUnnamed1171(); |
| 749 } | 749 } |
| 750 buildCounterJob--; | 750 buildCounterJob--; |
| 751 return o; | 751 return o; |
| 752 } | 752 } |
| 753 | 753 |
| 754 checkJob(api.Job o) { | 754 checkJob(api.Job o) { |
| 755 buildCounterJob++; | 755 buildCounterJob++; |
| 756 if (buildCounterJob < 3) { | 756 if (buildCounterJob < 3) { |
| 757 unittest.expect(o.created, unittest.equals('foo')); | 757 unittest.expect(o.created, unittest.equals('foo')); |
| 758 unittest.expect(o.description, unittest.equals('foo')); | 758 unittest.expect(o.description, unittest.equals('foo')); |
| 759 checkUnnamed1191(o.errors); | 759 checkUnnamed1169(o.errors); |
| 760 unittest.expect(o.id, unittest.equals('foo')); | 760 unittest.expect(o.id, unittest.equals('foo')); |
| 761 checkUnnamed1192(o.importedIds); | 761 checkUnnamed1170(o.importedIds); |
| 762 unittest.expect(o.projectId, unittest.equals('foo')); | 762 unittest.expect(o.projectId, unittest.equals('foo')); |
| 763 checkJobRequest(o.request); | 763 checkJobRequest(o.request); |
| 764 unittest.expect(o.status, unittest.equals('foo')); | 764 unittest.expect(o.status, unittest.equals('foo')); |
| 765 checkUnnamed1193(o.warnings); | 765 checkUnnamed1171(o.warnings); |
| 766 } | 766 } |
| 767 buildCounterJob--; | 767 buildCounterJob--; |
| 768 } | 768 } |
| 769 | 769 |
| 770 buildUnnamed1194() { | 770 buildUnnamed1172() { |
| 771 var o = new core.List<core.String>(); | 771 var o = new core.List<core.String>(); |
| 772 o.add("foo"); | 772 o.add("foo"); |
| 773 o.add("foo"); | 773 o.add("foo"); |
| 774 return o; | 774 return o; |
| 775 } | 775 } |
| 776 | 776 |
| 777 checkUnnamed1194(core.List<core.String> o) { | 777 checkUnnamed1172(core.List<core.String> o) { |
| 778 unittest.expect(o, unittest.hasLength(2)); | 778 unittest.expect(o, unittest.hasLength(2)); |
| 779 unittest.expect(o[0], unittest.equals('foo')); | 779 unittest.expect(o[0], unittest.equals('foo')); |
| 780 unittest.expect(o[1], unittest.equals('foo')); | 780 unittest.expect(o[1], unittest.equals('foo')); |
| 781 } | 781 } |
| 782 | 782 |
| 783 buildUnnamed1195() { | 783 buildUnnamed1173() { |
| 784 var o = new core.List<core.String>(); | 784 var o = new core.List<core.String>(); |
| 785 o.add("foo"); | 785 o.add("foo"); |
| 786 o.add("foo"); | 786 o.add("foo"); |
| 787 return o; | 787 return o; |
| 788 } | 788 } |
| 789 | 789 |
| 790 checkUnnamed1195(core.List<core.String> o) { | 790 checkUnnamed1173(core.List<core.String> o) { |
| 791 unittest.expect(o, unittest.hasLength(2)); | 791 unittest.expect(o, unittest.hasLength(2)); |
| 792 unittest.expect(o[0], unittest.equals('foo')); | 792 unittest.expect(o[0], unittest.equals('foo')); |
| 793 unittest.expect(o[1], unittest.equals('foo')); | 793 unittest.expect(o[1], unittest.equals('foo')); |
| 794 } | 794 } |
| 795 | 795 |
| 796 core.int buildCounterJobRequest = 0; | 796 core.int buildCounterJobRequest = 0; |
| 797 buildJobRequest() { | 797 buildJobRequest() { |
| 798 var o = new api.JobRequest(); | 798 var o = new api.JobRequest(); |
| 799 buildCounterJobRequest++; | 799 buildCounterJobRequest++; |
| 800 if (buildCounterJobRequest < 3) { | 800 if (buildCounterJobRequest < 3) { |
| 801 o.destination = buildUnnamed1194(); | 801 o.destination = buildUnnamed1172(); |
| 802 o.source = buildUnnamed1195(); | 802 o.source = buildUnnamed1173(); |
| 803 o.type = "foo"; | 803 o.type = "foo"; |
| 804 } | 804 } |
| 805 buildCounterJobRequest--; | 805 buildCounterJobRequest--; |
| 806 return o; | 806 return o; |
| 807 } | 807 } |
| 808 | 808 |
| 809 checkJobRequest(api.JobRequest o) { | 809 checkJobRequest(api.JobRequest o) { |
| 810 buildCounterJobRequest++; | 810 buildCounterJobRequest++; |
| 811 if (buildCounterJobRequest < 3) { | 811 if (buildCounterJobRequest < 3) { |
| 812 checkUnnamed1194(o.destination); | 812 checkUnnamed1172(o.destination); |
| 813 checkUnnamed1195(o.source); | 813 checkUnnamed1173(o.source); |
| 814 unittest.expect(o.type, unittest.equals('foo')); | 814 unittest.expect(o.type, unittest.equals('foo')); |
| 815 } | 815 } |
| 816 buildCounterJobRequest--; | 816 buildCounterJobRequest--; |
| 817 } | 817 } |
| 818 | 818 |
| 819 buildUnnamed1196() { | 819 buildUnnamed1174() { |
| 820 var o = new core.List<api.CoverageBucket>(); | 820 var o = new core.List<api.CoverageBucket>(); |
| 821 o.add(buildCoverageBucket()); | 821 o.add(buildCoverageBucket()); |
| 822 o.add(buildCoverageBucket()); | 822 o.add(buildCoverageBucket()); |
| 823 return o; | 823 return o; |
| 824 } | 824 } |
| 825 | 825 |
| 826 checkUnnamed1196(core.List<api.CoverageBucket> o) { | 826 checkUnnamed1174(core.List<api.CoverageBucket> o) { |
| 827 unittest.expect(o, unittest.hasLength(2)); | 827 unittest.expect(o, unittest.hasLength(2)); |
| 828 checkCoverageBucket(o[0]); | 828 checkCoverageBucket(o[0]); |
| 829 checkCoverageBucket(o[1]); | 829 checkCoverageBucket(o[1]); |
| 830 } | 830 } |
| 831 | 831 |
| 832 core.int buildCounterListCoverageBucketsResponse = 0; | 832 core.int buildCounterListCoverageBucketsResponse = 0; |
| 833 buildListCoverageBucketsResponse() { | 833 buildListCoverageBucketsResponse() { |
| 834 var o = new api.ListCoverageBucketsResponse(); | 834 var o = new api.ListCoverageBucketsResponse(); |
| 835 buildCounterListCoverageBucketsResponse++; | 835 buildCounterListCoverageBucketsResponse++; |
| 836 if (buildCounterListCoverageBucketsResponse < 3) { | 836 if (buildCounterListCoverageBucketsResponse < 3) { |
| 837 o.bucketWidth = "foo"; | 837 o.bucketWidth = "foo"; |
| 838 o.coverageBuckets = buildUnnamed1196(); | 838 o.coverageBuckets = buildUnnamed1174(); |
| 839 o.nextPageToken = "foo"; | 839 o.nextPageToken = "foo"; |
| 840 } | 840 } |
| 841 buildCounterListCoverageBucketsResponse--; | 841 buildCounterListCoverageBucketsResponse--; |
| 842 return o; | 842 return o; |
| 843 } | 843 } |
| 844 | 844 |
| 845 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { | 845 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { |
| 846 buildCounterListCoverageBucketsResponse++; | 846 buildCounterListCoverageBucketsResponse++; |
| 847 if (buildCounterListCoverageBucketsResponse < 3) { | 847 if (buildCounterListCoverageBucketsResponse < 3) { |
| 848 unittest.expect(o.bucketWidth, unittest.equals('foo')); | 848 unittest.expect(o.bucketWidth, unittest.equals('foo')); |
| 849 checkUnnamed1196(o.coverageBuckets); | 849 checkUnnamed1174(o.coverageBuckets); |
| 850 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 850 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 851 } | 851 } |
| 852 buildCounterListCoverageBucketsResponse--; | 852 buildCounterListCoverageBucketsResponse--; |
| 853 } | 853 } |
| 854 | 854 |
| 855 buildUnnamed1197() { | 855 buildUnnamed1175() { |
| 856 var o = new core.List<api.Dataset>(); | 856 var o = new core.List<api.Dataset>(); |
| 857 o.add(buildDataset()); | 857 o.add(buildDataset()); |
| 858 o.add(buildDataset()); | 858 o.add(buildDataset()); |
| 859 return o; | 859 return o; |
| 860 } | 860 } |
| 861 | 861 |
| 862 checkUnnamed1197(core.List<api.Dataset> o) { | 862 checkUnnamed1175(core.List<api.Dataset> o) { |
| 863 unittest.expect(o, unittest.hasLength(2)); | 863 unittest.expect(o, unittest.hasLength(2)); |
| 864 checkDataset(o[0]); | 864 checkDataset(o[0]); |
| 865 checkDataset(o[1]); | 865 checkDataset(o[1]); |
| 866 } | 866 } |
| 867 | 867 |
| 868 core.int buildCounterListDatasetsResponse = 0; | 868 core.int buildCounterListDatasetsResponse = 0; |
| 869 buildListDatasetsResponse() { | 869 buildListDatasetsResponse() { |
| 870 var o = new api.ListDatasetsResponse(); | 870 var o = new api.ListDatasetsResponse(); |
| 871 buildCounterListDatasetsResponse++; | 871 buildCounterListDatasetsResponse++; |
| 872 if (buildCounterListDatasetsResponse < 3) { | 872 if (buildCounterListDatasetsResponse < 3) { |
| 873 o.datasets = buildUnnamed1197(); | 873 o.datasets = buildUnnamed1175(); |
| 874 o.nextPageToken = "foo"; | 874 o.nextPageToken = "foo"; |
| 875 } | 875 } |
| 876 buildCounterListDatasetsResponse--; | 876 buildCounterListDatasetsResponse--; |
| 877 return o; | 877 return o; |
| 878 } | 878 } |
| 879 | 879 |
| 880 checkListDatasetsResponse(api.ListDatasetsResponse o) { | 880 checkListDatasetsResponse(api.ListDatasetsResponse o) { |
| 881 buildCounterListDatasetsResponse++; | 881 buildCounterListDatasetsResponse++; |
| 882 if (buildCounterListDatasetsResponse < 3) { | 882 if (buildCounterListDatasetsResponse < 3) { |
| 883 checkUnnamed1197(o.datasets); | 883 checkUnnamed1175(o.datasets); |
| 884 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 884 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 885 } | 885 } |
| 886 buildCounterListDatasetsResponse--; | 886 buildCounterListDatasetsResponse--; |
| 887 } | 887 } |
| 888 | 888 |
| 889 buildUnnamed1198() { | 889 buildUnnamed1176() { |
| 890 var o = new core.List<api.Variant>(); |
| 891 o.add(buildVariant()); |
| 892 o.add(buildVariant()); |
| 893 return o; |
| 894 } |
| 895 |
| 896 checkUnnamed1176(core.List<api.Variant> o) { |
| 897 unittest.expect(o, unittest.hasLength(2)); |
| 898 checkVariant(o[0]); |
| 899 checkVariant(o[1]); |
| 900 } |
| 901 |
| 902 core.int buildCounterMergeVariantsRequest = 0; |
| 903 buildMergeVariantsRequest() { |
| 904 var o = new api.MergeVariantsRequest(); |
| 905 buildCounterMergeVariantsRequest++; |
| 906 if (buildCounterMergeVariantsRequest < 3) { |
| 907 o.variants = buildUnnamed1176(); |
| 908 } |
| 909 buildCounterMergeVariantsRequest--; |
| 910 return o; |
| 911 } |
| 912 |
| 913 checkMergeVariantsRequest(api.MergeVariantsRequest o) { |
| 914 buildCounterMergeVariantsRequest++; |
| 915 if (buildCounterMergeVariantsRequest < 3) { |
| 916 checkUnnamed1176(o.variants); |
| 917 } |
| 918 buildCounterMergeVariantsRequest--; |
| 919 } |
| 920 |
| 921 buildUnnamed1177() { |
| 890 var o = new core.List<core.String>(); | 922 var o = new core.List<core.String>(); |
| 891 o.add("foo"); | 923 o.add("foo"); |
| 892 o.add("foo"); | 924 o.add("foo"); |
| 893 return o; | 925 return o; |
| 894 } | 926 } |
| 895 | 927 |
| 896 checkUnnamed1198(core.List<core.String> o) { | 928 checkUnnamed1177(core.List<core.String> o) { |
| 897 unittest.expect(o, unittest.hasLength(2)); | 929 unittest.expect(o, unittest.hasLength(2)); |
| 898 unittest.expect(o[0], unittest.equals('foo')); | 930 unittest.expect(o[0], unittest.equals('foo')); |
| 899 unittest.expect(o[1], unittest.equals('foo')); | 931 unittest.expect(o[1], unittest.equals('foo')); |
| 900 } | 932 } |
| 901 | 933 |
| 902 buildUnnamed1199() { | 934 buildUnnamed1178() { |
| 903 var o = new core.Map<core.String, core.List<core.String>>(); | 935 var o = new core.Map<core.String, core.List<core.String>>(); |
| 904 o["x"] = buildUnnamed1198(); | 936 o["x"] = buildUnnamed1177(); |
| 905 o["y"] = buildUnnamed1198(); | 937 o["y"] = buildUnnamed1177(); |
| 906 return o; | 938 return o; |
| 907 } | 939 } |
| 908 | 940 |
| 909 checkUnnamed1199(core.Map<core.String, core.List<core.String>> o) { | 941 checkUnnamed1178(core.Map<core.String, core.List<core.String>> o) { |
| 910 unittest.expect(o, unittest.hasLength(2)); | 942 unittest.expect(o, unittest.hasLength(2)); |
| 911 checkUnnamed1198(o["x"]); | 943 checkUnnamed1177(o["x"]); |
| 912 checkUnnamed1198(o["y"]); | 944 checkUnnamed1177(o["y"]); |
| 913 } | 945 } |
| 914 | 946 |
| 915 core.int buildCounterMetadata = 0; | 947 core.int buildCounterMetadata = 0; |
| 916 buildMetadata() { | 948 buildMetadata() { |
| 917 var o = new api.Metadata(); | 949 var o = new api.Metadata(); |
| 918 buildCounterMetadata++; | 950 buildCounterMetadata++; |
| 919 if (buildCounterMetadata < 3) { | 951 if (buildCounterMetadata < 3) { |
| 920 o.description = "foo"; | 952 o.description = "foo"; |
| 921 o.id = "foo"; | 953 o.id = "foo"; |
| 922 o.info = buildUnnamed1199(); | 954 o.info = buildUnnamed1178(); |
| 923 o.key = "foo"; | 955 o.key = "foo"; |
| 924 o.number = "foo"; | 956 o.number = "foo"; |
| 925 o.type = "foo"; | 957 o.type = "foo"; |
| 926 o.value = "foo"; | 958 o.value = "foo"; |
| 927 } | 959 } |
| 928 buildCounterMetadata--; | 960 buildCounterMetadata--; |
| 929 return o; | 961 return o; |
| 930 } | 962 } |
| 931 | 963 |
| 932 checkMetadata(api.Metadata o) { | 964 checkMetadata(api.Metadata o) { |
| 933 buildCounterMetadata++; | 965 buildCounterMetadata++; |
| 934 if (buildCounterMetadata < 3) { | 966 if (buildCounterMetadata < 3) { |
| 935 unittest.expect(o.description, unittest.equals('foo')); | 967 unittest.expect(o.description, unittest.equals('foo')); |
| 936 unittest.expect(o.id, unittest.equals('foo')); | 968 unittest.expect(o.id, unittest.equals('foo')); |
| 937 checkUnnamed1199(o.info); | 969 checkUnnamed1178(o.info); |
| 938 unittest.expect(o.key, unittest.equals('foo')); | 970 unittest.expect(o.key, unittest.equals('foo')); |
| 939 unittest.expect(o.number, unittest.equals('foo')); | 971 unittest.expect(o.number, unittest.equals('foo')); |
| 940 unittest.expect(o.type, unittest.equals('foo')); | 972 unittest.expect(o.type, unittest.equals('foo')); |
| 941 unittest.expect(o.value, unittest.equals('foo')); | 973 unittest.expect(o.value, unittest.equals('foo')); |
| 942 } | 974 } |
| 943 buildCounterMetadata--; | 975 buildCounterMetadata--; |
| 944 } | 976 } |
| 945 | 977 |
| 946 core.int buildCounterProgram = 0; | 978 core.int buildCounterProgram = 0; |
| 947 buildProgram() { | 979 buildProgram() { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 963 if (buildCounterProgram < 3) { | 995 if (buildCounterProgram < 3) { |
| 964 unittest.expect(o.commandLine, unittest.equals('foo')); | 996 unittest.expect(o.commandLine, unittest.equals('foo')); |
| 965 unittest.expect(o.id, unittest.equals('foo')); | 997 unittest.expect(o.id, unittest.equals('foo')); |
| 966 unittest.expect(o.name, unittest.equals('foo')); | 998 unittest.expect(o.name, unittest.equals('foo')); |
| 967 unittest.expect(o.prevProgramId, unittest.equals('foo')); | 999 unittest.expect(o.prevProgramId, unittest.equals('foo')); |
| 968 unittest.expect(o.version, unittest.equals('foo')); | 1000 unittest.expect(o.version, unittest.equals('foo')); |
| 969 } | 1001 } |
| 970 buildCounterProgram--; | 1002 buildCounterProgram--; |
| 971 } | 1003 } |
| 972 | 1004 |
| 973 buildUnnamed1200() { | 1005 buildUnnamed1179() { |
| 974 var o = new core.List<core.String>(); | 1006 var o = new core.List<core.String>(); |
| 975 o.add("foo"); | 1007 o.add("foo"); |
| 976 o.add("foo"); | 1008 o.add("foo"); |
| 977 return o; | 1009 return o; |
| 978 } | 1010 } |
| 979 | 1011 |
| 980 checkUnnamed1200(core.List<core.String> o) { | 1012 checkUnnamed1179(core.List<core.String> o) { |
| 981 unittest.expect(o, unittest.hasLength(2)); | 1013 unittest.expect(o, unittest.hasLength(2)); |
| 982 unittest.expect(o[0], unittest.equals('foo')); | 1014 unittest.expect(o[0], unittest.equals('foo')); |
| 983 unittest.expect(o[1], unittest.equals('foo')); | 1015 unittest.expect(o[1], unittest.equals('foo')); |
| 984 } | 1016 } |
| 985 | 1017 |
| 986 buildUnnamed1201() { | 1018 buildUnnamed1180() { |
| 987 var o = new core.Map<core.String, core.List<core.String>>(); | 1019 var o = new core.Map<core.String, core.List<core.String>>(); |
| 988 o["x"] = buildUnnamed1200(); | 1020 o["x"] = buildUnnamed1179(); |
| 989 o["y"] = buildUnnamed1200(); | 1021 o["y"] = buildUnnamed1179(); |
| 990 return o; | 1022 return o; |
| 991 } | 1023 } |
| 992 | 1024 |
| 993 checkUnnamed1201(core.Map<core.String, core.List<core.String>> o) { | 1025 checkUnnamed1180(core.Map<core.String, core.List<core.String>> o) { |
| 994 unittest.expect(o, unittest.hasLength(2)); | 1026 unittest.expect(o, unittest.hasLength(2)); |
| 995 checkUnnamed1200(o["x"]); | 1027 checkUnnamed1179(o["x"]); |
| 996 checkUnnamed1200(o["y"]); | 1028 checkUnnamed1179(o["y"]); |
| 997 } | 1029 } |
| 998 | 1030 |
| 999 core.int buildCounterRead = 0; | 1031 core.int buildCounterRead = 0; |
| 1000 buildRead() { | 1032 buildRead() { |
| 1001 var o = new api.Read(); | 1033 var o = new api.Read(); |
| 1002 buildCounterRead++; | 1034 buildCounterRead++; |
| 1003 if (buildCounterRead < 3) { | 1035 if (buildCounterRead < 3) { |
| 1004 o.alignedBases = "foo"; | 1036 o.alignedBases = "foo"; |
| 1005 o.baseQuality = "foo"; | 1037 o.baseQuality = "foo"; |
| 1006 o.cigar = "foo"; | 1038 o.cigar = "foo"; |
| 1007 o.flags = 42; | 1039 o.flags = 42; |
| 1008 o.id = "foo"; | 1040 o.id = "foo"; |
| 1009 o.mappingQuality = 42; | 1041 o.mappingQuality = 42; |
| 1010 o.matePosition = 42; | 1042 o.matePosition = 42; |
| 1011 o.mateReferenceSequenceName = "foo"; | 1043 o.mateReferenceSequenceName = "foo"; |
| 1012 o.name = "foo"; | 1044 o.name = "foo"; |
| 1013 o.originalBases = "foo"; | 1045 o.originalBases = "foo"; |
| 1014 o.position = 42; | 1046 o.position = 42; |
| 1015 o.readsetId = "foo"; | 1047 o.readsetId = "foo"; |
| 1016 o.referenceSequenceName = "foo"; | 1048 o.referenceSequenceName = "foo"; |
| 1017 o.tags = buildUnnamed1201(); | 1049 o.tags = buildUnnamed1180(); |
| 1018 o.templateLength = 42; | 1050 o.templateLength = 42; |
| 1019 } | 1051 } |
| 1020 buildCounterRead--; | 1052 buildCounterRead--; |
| 1021 return o; | 1053 return o; |
| 1022 } | 1054 } |
| 1023 | 1055 |
| 1024 checkRead(api.Read o) { | 1056 checkRead(api.Read o) { |
| 1025 buildCounterRead++; | 1057 buildCounterRead++; |
| 1026 if (buildCounterRead < 3) { | 1058 if (buildCounterRead < 3) { |
| 1027 unittest.expect(o.alignedBases, unittest.equals('foo')); | 1059 unittest.expect(o.alignedBases, unittest.equals('foo')); |
| 1028 unittest.expect(o.baseQuality, unittest.equals('foo')); | 1060 unittest.expect(o.baseQuality, unittest.equals('foo')); |
| 1029 unittest.expect(o.cigar, unittest.equals('foo')); | 1061 unittest.expect(o.cigar, unittest.equals('foo')); |
| 1030 unittest.expect(o.flags, unittest.equals(42)); | 1062 unittest.expect(o.flags, unittest.equals(42)); |
| 1031 unittest.expect(o.id, unittest.equals('foo')); | 1063 unittest.expect(o.id, unittest.equals('foo')); |
| 1032 unittest.expect(o.mappingQuality, unittest.equals(42)); | 1064 unittest.expect(o.mappingQuality, unittest.equals(42)); |
| 1033 unittest.expect(o.matePosition, unittest.equals(42)); | 1065 unittest.expect(o.matePosition, unittest.equals(42)); |
| 1034 unittest.expect(o.mateReferenceSequenceName, unittest.equals('foo')); | 1066 unittest.expect(o.mateReferenceSequenceName, unittest.equals('foo')); |
| 1035 unittest.expect(o.name, unittest.equals('foo')); | 1067 unittest.expect(o.name, unittest.equals('foo')); |
| 1036 unittest.expect(o.originalBases, unittest.equals('foo')); | 1068 unittest.expect(o.originalBases, unittest.equals('foo')); |
| 1037 unittest.expect(o.position, unittest.equals(42)); | 1069 unittest.expect(o.position, unittest.equals(42)); |
| 1038 unittest.expect(o.readsetId, unittest.equals('foo')); | 1070 unittest.expect(o.readsetId, unittest.equals('foo')); |
| 1039 unittest.expect(o.referenceSequenceName, unittest.equals('foo')); | 1071 unittest.expect(o.referenceSequenceName, unittest.equals('foo')); |
| 1040 checkUnnamed1201(o.tags); | 1072 checkUnnamed1180(o.tags); |
| 1041 unittest.expect(o.templateLength, unittest.equals(42)); | 1073 unittest.expect(o.templateLength, unittest.equals(42)); |
| 1042 } | 1074 } |
| 1043 buildCounterRead--; | 1075 buildCounterRead--; |
| 1044 } | 1076 } |
| 1045 | 1077 |
| 1046 core.int buildCounterReadGroup = 0; | 1078 core.int buildCounterReadGroup = 0; |
| 1047 buildReadGroup() { | 1079 buildReadGroup() { |
| 1048 var o = new api.ReadGroup(); | 1080 var o = new api.ReadGroup(); |
| 1049 buildCounterReadGroup++; | 1081 buildCounterReadGroup++; |
| 1050 if (buildCounterReadGroup < 3) { | 1082 if (buildCounterReadGroup < 3) { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 1077 unittest.expect(o.platformUnit, unittest.equals('foo')); | 1109 unittest.expect(o.platformUnit, unittest.equals('foo')); |
| 1078 unittest.expect(o.predictedInsertSize, unittest.equals(42)); | 1110 unittest.expect(o.predictedInsertSize, unittest.equals(42)); |
| 1079 unittest.expect(o.processingProgram, unittest.equals('foo')); | 1111 unittest.expect(o.processingProgram, unittest.equals('foo')); |
| 1080 unittest.expect(o.sample, unittest.equals('foo')); | 1112 unittest.expect(o.sample, unittest.equals('foo')); |
| 1081 unittest.expect(o.sequencingCenterName, unittest.equals('foo')); | 1113 unittest.expect(o.sequencingCenterName, unittest.equals('foo')); |
| 1082 unittest.expect(o.sequencingTechnology, unittest.equals('foo')); | 1114 unittest.expect(o.sequencingTechnology, unittest.equals('foo')); |
| 1083 } | 1115 } |
| 1084 buildCounterReadGroup--; | 1116 buildCounterReadGroup--; |
| 1085 } | 1117 } |
| 1086 | 1118 |
| 1087 buildUnnamed1202() { | 1119 buildUnnamed1181() { |
| 1088 var o = new core.List<api.HeaderSection>(); | 1120 var o = new core.List<api.HeaderSection>(); |
| 1089 o.add(buildHeaderSection()); | 1121 o.add(buildHeaderSection()); |
| 1090 o.add(buildHeaderSection()); | 1122 o.add(buildHeaderSection()); |
| 1091 return o; | 1123 return o; |
| 1092 } | 1124 } |
| 1093 | 1125 |
| 1094 checkUnnamed1202(core.List<api.HeaderSection> o) { | 1126 checkUnnamed1181(core.List<api.HeaderSection> o) { |
| 1095 unittest.expect(o, unittest.hasLength(2)); | 1127 unittest.expect(o, unittest.hasLength(2)); |
| 1096 checkHeaderSection(o[0]); | 1128 checkHeaderSection(o[0]); |
| 1097 checkHeaderSection(o[1]); | 1129 checkHeaderSection(o[1]); |
| 1098 } | 1130 } |
| 1099 | 1131 |
| 1100 core.int buildCounterReadset = 0; | 1132 core.int buildCounterReadset = 0; |
| 1101 buildReadset() { | 1133 buildReadset() { |
| 1102 var o = new api.Readset(); | 1134 var o = new api.Readset(); |
| 1103 buildCounterReadset++; | 1135 buildCounterReadset++; |
| 1104 if (buildCounterReadset < 3) { | 1136 if (buildCounterReadset < 3) { |
| 1105 o.datasetId = "foo"; | 1137 o.datasetId = "foo"; |
| 1106 o.fileData = buildUnnamed1202(); | 1138 o.fileData = buildUnnamed1181(); |
| 1107 o.id = "foo"; | 1139 o.id = "foo"; |
| 1108 o.name = "foo"; | 1140 o.name = "foo"; |
| 1109 } | 1141 } |
| 1110 buildCounterReadset--; | 1142 buildCounterReadset--; |
| 1111 return o; | 1143 return o; |
| 1112 } | 1144 } |
| 1113 | 1145 |
| 1114 checkReadset(api.Readset o) { | 1146 checkReadset(api.Readset o) { |
| 1115 buildCounterReadset++; | 1147 buildCounterReadset++; |
| 1116 if (buildCounterReadset < 3) { | 1148 if (buildCounterReadset < 3) { |
| 1117 unittest.expect(o.datasetId, unittest.equals('foo')); | 1149 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 1118 checkUnnamed1202(o.fileData); | 1150 checkUnnamed1181(o.fileData); |
| 1119 unittest.expect(o.id, unittest.equals('foo')); | 1151 unittest.expect(o.id, unittest.equals('foo')); |
| 1120 unittest.expect(o.name, unittest.equals('foo')); | 1152 unittest.expect(o.name, unittest.equals('foo')); |
| 1121 } | 1153 } |
| 1122 buildCounterReadset--; | 1154 buildCounterReadset--; |
| 1123 } | 1155 } |
| 1124 | 1156 |
| 1125 core.int buildCounterReferenceBound = 0; | 1157 core.int buildCounterReferenceBound = 0; |
| 1126 buildReferenceBound() { | 1158 buildReferenceBound() { |
| 1127 var o = new api.ReferenceBound(); | 1159 var o = new api.ReferenceBound(); |
| 1128 buildCounterReferenceBound++; | 1160 buildCounterReferenceBound++; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1165 unittest.expect(o.assemblyId, unittest.equals('foo')); | 1197 unittest.expect(o.assemblyId, unittest.equals('foo')); |
| 1166 unittest.expect(o.length, unittest.equals(42)); | 1198 unittest.expect(o.length, unittest.equals(42)); |
| 1167 unittest.expect(o.md5Checksum, unittest.equals('foo')); | 1199 unittest.expect(o.md5Checksum, unittest.equals('foo')); |
| 1168 unittest.expect(o.name, unittest.equals('foo')); | 1200 unittest.expect(o.name, unittest.equals('foo')); |
| 1169 unittest.expect(o.species, unittest.equals('foo')); | 1201 unittest.expect(o.species, unittest.equals('foo')); |
| 1170 unittest.expect(o.uri, unittest.equals('foo')); | 1202 unittest.expect(o.uri, unittest.equals('foo')); |
| 1171 } | 1203 } |
| 1172 buildCounterReferenceSequence--; | 1204 buildCounterReferenceSequence--; |
| 1173 } | 1205 } |
| 1174 | 1206 |
| 1175 buildUnnamed1203() { | 1207 buildUnnamed1182() { |
| 1176 var o = new core.List<core.String>(); | 1208 var o = new core.List<core.String>(); |
| 1177 o.add("foo"); | 1209 o.add("foo"); |
| 1178 o.add("foo"); | 1210 o.add("foo"); |
| 1179 return o; | 1211 return o; |
| 1180 } | 1212 } |
| 1181 | 1213 |
| 1182 checkUnnamed1203(core.List<core.String> o) { | 1214 checkUnnamed1182(core.List<core.String> o) { |
| 1183 unittest.expect(o, unittest.hasLength(2)); | 1215 unittest.expect(o, unittest.hasLength(2)); |
| 1184 unittest.expect(o[0], unittest.equals('foo')); | 1216 unittest.expect(o[0], unittest.equals('foo')); |
| 1185 unittest.expect(o[1], unittest.equals('foo')); | 1217 unittest.expect(o[1], unittest.equals('foo')); |
| 1186 } | 1218 } |
| 1187 | 1219 |
| 1188 core.int buildCounterSearchCallSetsRequest = 0; | 1220 core.int buildCounterSearchCallSetsRequest = 0; |
| 1189 buildSearchCallSetsRequest() { | 1221 buildSearchCallSetsRequest() { |
| 1190 var o = new api.SearchCallSetsRequest(); | 1222 var o = new api.SearchCallSetsRequest(); |
| 1191 buildCounterSearchCallSetsRequest++; | 1223 buildCounterSearchCallSetsRequest++; |
| 1192 if (buildCounterSearchCallSetsRequest < 3) { | 1224 if (buildCounterSearchCallSetsRequest < 3) { |
| 1193 o.name = "foo"; | 1225 o.name = "foo"; |
| 1194 o.pageSize = 42; | 1226 o.pageSize = 42; |
| 1195 o.pageToken = "foo"; | 1227 o.pageToken = "foo"; |
| 1196 o.variantSetIds = buildUnnamed1203(); | 1228 o.variantSetIds = buildUnnamed1182(); |
| 1197 } | 1229 } |
| 1198 buildCounterSearchCallSetsRequest--; | 1230 buildCounterSearchCallSetsRequest--; |
| 1199 return o; | 1231 return o; |
| 1200 } | 1232 } |
| 1201 | 1233 |
| 1202 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { | 1234 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { |
| 1203 buildCounterSearchCallSetsRequest++; | 1235 buildCounterSearchCallSetsRequest++; |
| 1204 if (buildCounterSearchCallSetsRequest < 3) { | 1236 if (buildCounterSearchCallSetsRequest < 3) { |
| 1205 unittest.expect(o.name, unittest.equals('foo')); | 1237 unittest.expect(o.name, unittest.equals('foo')); |
| 1206 unittest.expect(o.pageSize, unittest.equals(42)); | 1238 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1207 unittest.expect(o.pageToken, unittest.equals('foo')); | 1239 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1208 checkUnnamed1203(o.variantSetIds); | 1240 checkUnnamed1182(o.variantSetIds); |
| 1209 } | 1241 } |
| 1210 buildCounterSearchCallSetsRequest--; | 1242 buildCounterSearchCallSetsRequest--; |
| 1211 } | 1243 } |
| 1212 | 1244 |
| 1213 buildUnnamed1204() { | 1245 buildUnnamed1183() { |
| 1214 var o = new core.List<api.CallSet>(); | 1246 var o = new core.List<api.CallSet>(); |
| 1215 o.add(buildCallSet()); | 1247 o.add(buildCallSet()); |
| 1216 o.add(buildCallSet()); | 1248 o.add(buildCallSet()); |
| 1217 return o; | 1249 return o; |
| 1218 } | 1250 } |
| 1219 | 1251 |
| 1220 checkUnnamed1204(core.List<api.CallSet> o) { | 1252 checkUnnamed1183(core.List<api.CallSet> o) { |
| 1221 unittest.expect(o, unittest.hasLength(2)); | 1253 unittest.expect(o, unittest.hasLength(2)); |
| 1222 checkCallSet(o[0]); | 1254 checkCallSet(o[0]); |
| 1223 checkCallSet(o[1]); | 1255 checkCallSet(o[1]); |
| 1224 } | 1256 } |
| 1225 | 1257 |
| 1226 core.int buildCounterSearchCallSetsResponse = 0; | 1258 core.int buildCounterSearchCallSetsResponse = 0; |
| 1227 buildSearchCallSetsResponse() { | 1259 buildSearchCallSetsResponse() { |
| 1228 var o = new api.SearchCallSetsResponse(); | 1260 var o = new api.SearchCallSetsResponse(); |
| 1229 buildCounterSearchCallSetsResponse++; | 1261 buildCounterSearchCallSetsResponse++; |
| 1230 if (buildCounterSearchCallSetsResponse < 3) { | 1262 if (buildCounterSearchCallSetsResponse < 3) { |
| 1231 o.callSets = buildUnnamed1204(); | 1263 o.callSets = buildUnnamed1183(); |
| 1232 o.nextPageToken = "foo"; | 1264 o.nextPageToken = "foo"; |
| 1233 } | 1265 } |
| 1234 buildCounterSearchCallSetsResponse--; | 1266 buildCounterSearchCallSetsResponse--; |
| 1235 return o; | 1267 return o; |
| 1236 } | 1268 } |
| 1237 | 1269 |
| 1238 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { | 1270 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { |
| 1239 buildCounterSearchCallSetsResponse++; | 1271 buildCounterSearchCallSetsResponse++; |
| 1240 if (buildCounterSearchCallSetsResponse < 3) { | 1272 if (buildCounterSearchCallSetsResponse < 3) { |
| 1241 checkUnnamed1204(o.callSets); | 1273 checkUnnamed1183(o.callSets); |
| 1242 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1274 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1243 } | 1275 } |
| 1244 buildCounterSearchCallSetsResponse--; | 1276 buildCounterSearchCallSetsResponse--; |
| 1245 } | 1277 } |
| 1246 | 1278 |
| 1247 buildUnnamed1205() { | 1279 buildUnnamed1184() { |
| 1248 var o = new core.List<core.String>(); | 1280 var o = new core.List<core.String>(); |
| 1249 o.add("foo"); | 1281 o.add("foo"); |
| 1250 o.add("foo"); | 1282 o.add("foo"); |
| 1251 return o; | 1283 return o; |
| 1252 } | 1284 } |
| 1253 | 1285 |
| 1254 checkUnnamed1205(core.List<core.String> o) { | 1286 checkUnnamed1184(core.List<core.String> o) { |
| 1255 unittest.expect(o, unittest.hasLength(2)); | 1287 unittest.expect(o, unittest.hasLength(2)); |
| 1256 unittest.expect(o[0], unittest.equals('foo')); | 1288 unittest.expect(o[0], unittest.equals('foo')); |
| 1257 unittest.expect(o[1], unittest.equals('foo')); | 1289 unittest.expect(o[1], unittest.equals('foo')); |
| 1258 } | 1290 } |
| 1259 | 1291 |
| 1260 core.int buildCounterSearchJobsRequest = 0; | 1292 core.int buildCounterSearchJobsRequest = 0; |
| 1261 buildSearchJobsRequest() { | 1293 buildSearchJobsRequest() { |
| 1262 var o = new api.SearchJobsRequest(); | 1294 var o = new api.SearchJobsRequest(); |
| 1263 buildCounterSearchJobsRequest++; | 1295 buildCounterSearchJobsRequest++; |
| 1264 if (buildCounterSearchJobsRequest < 3) { | 1296 if (buildCounterSearchJobsRequest < 3) { |
| 1265 o.createdAfter = "foo"; | 1297 o.createdAfter = "foo"; |
| 1266 o.createdBefore = "foo"; | 1298 o.createdBefore = "foo"; |
| 1267 o.maxResults = "foo"; | 1299 o.maxResults = "foo"; |
| 1268 o.pageToken = "foo"; | 1300 o.pageToken = "foo"; |
| 1269 o.projectId = "foo"; | 1301 o.projectId = "foo"; |
| 1270 o.status = buildUnnamed1205(); | 1302 o.status = buildUnnamed1184(); |
| 1271 } | 1303 } |
| 1272 buildCounterSearchJobsRequest--; | 1304 buildCounterSearchJobsRequest--; |
| 1273 return o; | 1305 return o; |
| 1274 } | 1306 } |
| 1275 | 1307 |
| 1276 checkSearchJobsRequest(api.SearchJobsRequest o) { | 1308 checkSearchJobsRequest(api.SearchJobsRequest o) { |
| 1277 buildCounterSearchJobsRequest++; | 1309 buildCounterSearchJobsRequest++; |
| 1278 if (buildCounterSearchJobsRequest < 3) { | 1310 if (buildCounterSearchJobsRequest < 3) { |
| 1279 unittest.expect(o.createdAfter, unittest.equals('foo')); | 1311 unittest.expect(o.createdAfter, unittest.equals('foo')); |
| 1280 unittest.expect(o.createdBefore, unittest.equals('foo')); | 1312 unittest.expect(o.createdBefore, unittest.equals('foo')); |
| 1281 unittest.expect(o.maxResults, unittest.equals('foo')); | 1313 unittest.expect(o.maxResults, unittest.equals('foo')); |
| 1282 unittest.expect(o.pageToken, unittest.equals('foo')); | 1314 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1283 unittest.expect(o.projectId, unittest.equals('foo')); | 1315 unittest.expect(o.projectId, unittest.equals('foo')); |
| 1284 checkUnnamed1205(o.status); | 1316 checkUnnamed1184(o.status); |
| 1285 } | 1317 } |
| 1286 buildCounterSearchJobsRequest--; | 1318 buildCounterSearchJobsRequest--; |
| 1287 } | 1319 } |
| 1288 | 1320 |
| 1289 buildUnnamed1206() { | 1321 buildUnnamed1185() { |
| 1290 var o = new core.List<api.Job>(); | 1322 var o = new core.List<api.Job>(); |
| 1291 o.add(buildJob()); | 1323 o.add(buildJob()); |
| 1292 o.add(buildJob()); | 1324 o.add(buildJob()); |
| 1293 return o; | 1325 return o; |
| 1294 } | 1326 } |
| 1295 | 1327 |
| 1296 checkUnnamed1206(core.List<api.Job> o) { | 1328 checkUnnamed1185(core.List<api.Job> o) { |
| 1297 unittest.expect(o, unittest.hasLength(2)); | 1329 unittest.expect(o, unittest.hasLength(2)); |
| 1298 checkJob(o[0]); | 1330 checkJob(o[0]); |
| 1299 checkJob(o[1]); | 1331 checkJob(o[1]); |
| 1300 } | 1332 } |
| 1301 | 1333 |
| 1302 core.int buildCounterSearchJobsResponse = 0; | 1334 core.int buildCounterSearchJobsResponse = 0; |
| 1303 buildSearchJobsResponse() { | 1335 buildSearchJobsResponse() { |
| 1304 var o = new api.SearchJobsResponse(); | 1336 var o = new api.SearchJobsResponse(); |
| 1305 buildCounterSearchJobsResponse++; | 1337 buildCounterSearchJobsResponse++; |
| 1306 if (buildCounterSearchJobsResponse < 3) { | 1338 if (buildCounterSearchJobsResponse < 3) { |
| 1307 o.jobs = buildUnnamed1206(); | 1339 o.jobs = buildUnnamed1185(); |
| 1308 o.nextPageToken = "foo"; | 1340 o.nextPageToken = "foo"; |
| 1309 } | 1341 } |
| 1310 buildCounterSearchJobsResponse--; | 1342 buildCounterSearchJobsResponse--; |
| 1311 return o; | 1343 return o; |
| 1312 } | 1344 } |
| 1313 | 1345 |
| 1314 checkSearchJobsResponse(api.SearchJobsResponse o) { | 1346 checkSearchJobsResponse(api.SearchJobsResponse o) { |
| 1315 buildCounterSearchJobsResponse++; | 1347 buildCounterSearchJobsResponse++; |
| 1316 if (buildCounterSearchJobsResponse < 3) { | 1348 if (buildCounterSearchJobsResponse < 3) { |
| 1317 checkUnnamed1206(o.jobs); | 1349 checkUnnamed1185(o.jobs); |
| 1318 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1350 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1319 } | 1351 } |
| 1320 buildCounterSearchJobsResponse--; | 1352 buildCounterSearchJobsResponse--; |
| 1321 } | 1353 } |
| 1322 | 1354 |
| 1323 buildUnnamed1207() { | 1355 buildUnnamed1186() { |
| 1324 var o = new core.List<core.String>(); | 1356 var o = new core.List<core.String>(); |
| 1325 o.add("foo"); | 1357 o.add("foo"); |
| 1326 o.add("foo"); | 1358 o.add("foo"); |
| 1327 return o; | 1359 return o; |
| 1328 } | 1360 } |
| 1329 | 1361 |
| 1330 checkUnnamed1207(core.List<core.String> o) { | 1362 checkUnnamed1186(core.List<core.String> o) { |
| 1331 unittest.expect(o, unittest.hasLength(2)); | 1363 unittest.expect(o, unittest.hasLength(2)); |
| 1332 unittest.expect(o[0], unittest.equals('foo')); | 1364 unittest.expect(o[0], unittest.equals('foo')); |
| 1333 unittest.expect(o[1], unittest.equals('foo')); | 1365 unittest.expect(o[1], unittest.equals('foo')); |
| 1334 } | 1366 } |
| 1335 | 1367 |
| 1336 core.int buildCounterSearchReadsRequest = 0; | 1368 core.int buildCounterSearchReadsRequest = 0; |
| 1337 buildSearchReadsRequest() { | 1369 buildSearchReadsRequest() { |
| 1338 var o = new api.SearchReadsRequest(); | 1370 var o = new api.SearchReadsRequest(); |
| 1339 buildCounterSearchReadsRequest++; | 1371 buildCounterSearchReadsRequest++; |
| 1340 if (buildCounterSearchReadsRequest < 3) { | 1372 if (buildCounterSearchReadsRequest < 3) { |
| 1341 o.maxResults = "foo"; | 1373 o.maxResults = "foo"; |
| 1342 o.pageToken = "foo"; | 1374 o.pageToken = "foo"; |
| 1343 o.readsetIds = buildUnnamed1207(); | 1375 o.readsetIds = buildUnnamed1186(); |
| 1344 o.sequenceEnd = "foo"; | 1376 o.sequenceEnd = "foo"; |
| 1345 o.sequenceName = "foo"; | 1377 o.sequenceName = "foo"; |
| 1346 o.sequenceStart = "foo"; | 1378 o.sequenceStart = "foo"; |
| 1347 } | 1379 } |
| 1348 buildCounterSearchReadsRequest--; | 1380 buildCounterSearchReadsRequest--; |
| 1349 return o; | 1381 return o; |
| 1350 } | 1382 } |
| 1351 | 1383 |
| 1352 checkSearchReadsRequest(api.SearchReadsRequest o) { | 1384 checkSearchReadsRequest(api.SearchReadsRequest o) { |
| 1353 buildCounterSearchReadsRequest++; | 1385 buildCounterSearchReadsRequest++; |
| 1354 if (buildCounterSearchReadsRequest < 3) { | 1386 if (buildCounterSearchReadsRequest < 3) { |
| 1355 unittest.expect(o.maxResults, unittest.equals('foo')); | 1387 unittest.expect(o.maxResults, unittest.equals('foo')); |
| 1356 unittest.expect(o.pageToken, unittest.equals('foo')); | 1388 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1357 checkUnnamed1207(o.readsetIds); | 1389 checkUnnamed1186(o.readsetIds); |
| 1358 unittest.expect(o.sequenceEnd, unittest.equals('foo')); | 1390 unittest.expect(o.sequenceEnd, unittest.equals('foo')); |
| 1359 unittest.expect(o.sequenceName, unittest.equals('foo')); | 1391 unittest.expect(o.sequenceName, unittest.equals('foo')); |
| 1360 unittest.expect(o.sequenceStart, unittest.equals('foo')); | 1392 unittest.expect(o.sequenceStart, unittest.equals('foo')); |
| 1361 } | 1393 } |
| 1362 buildCounterSearchReadsRequest--; | 1394 buildCounterSearchReadsRequest--; |
| 1363 } | 1395 } |
| 1364 | 1396 |
| 1365 buildUnnamed1208() { | 1397 buildUnnamed1187() { |
| 1366 var o = new core.List<api.Read>(); | 1398 var o = new core.List<api.Read>(); |
| 1367 o.add(buildRead()); | 1399 o.add(buildRead()); |
| 1368 o.add(buildRead()); | 1400 o.add(buildRead()); |
| 1369 return o; | 1401 return o; |
| 1370 } | 1402 } |
| 1371 | 1403 |
| 1372 checkUnnamed1208(core.List<api.Read> o) { | 1404 checkUnnamed1187(core.List<api.Read> o) { |
| 1373 unittest.expect(o, unittest.hasLength(2)); | 1405 unittest.expect(o, unittest.hasLength(2)); |
| 1374 checkRead(o[0]); | 1406 checkRead(o[0]); |
| 1375 checkRead(o[1]); | 1407 checkRead(o[1]); |
| 1376 } | 1408 } |
| 1377 | 1409 |
| 1378 core.int buildCounterSearchReadsResponse = 0; | 1410 core.int buildCounterSearchReadsResponse = 0; |
| 1379 buildSearchReadsResponse() { | 1411 buildSearchReadsResponse() { |
| 1380 var o = new api.SearchReadsResponse(); | 1412 var o = new api.SearchReadsResponse(); |
| 1381 buildCounterSearchReadsResponse++; | 1413 buildCounterSearchReadsResponse++; |
| 1382 if (buildCounterSearchReadsResponse < 3) { | 1414 if (buildCounterSearchReadsResponse < 3) { |
| 1383 o.nextPageToken = "foo"; | 1415 o.nextPageToken = "foo"; |
| 1384 o.reads = buildUnnamed1208(); | 1416 o.reads = buildUnnamed1187(); |
| 1385 } | 1417 } |
| 1386 buildCounterSearchReadsResponse--; | 1418 buildCounterSearchReadsResponse--; |
| 1387 return o; | 1419 return o; |
| 1388 } | 1420 } |
| 1389 | 1421 |
| 1390 checkSearchReadsResponse(api.SearchReadsResponse o) { | 1422 checkSearchReadsResponse(api.SearchReadsResponse o) { |
| 1391 buildCounterSearchReadsResponse++; | 1423 buildCounterSearchReadsResponse++; |
| 1392 if (buildCounterSearchReadsResponse < 3) { | 1424 if (buildCounterSearchReadsResponse < 3) { |
| 1393 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1425 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1394 checkUnnamed1208(o.reads); | 1426 checkUnnamed1187(o.reads); |
| 1395 } | 1427 } |
| 1396 buildCounterSearchReadsResponse--; | 1428 buildCounterSearchReadsResponse--; |
| 1397 } | 1429 } |
| 1398 | 1430 |
| 1399 buildUnnamed1209() { | 1431 buildUnnamed1188() { |
| 1400 var o = new core.List<core.String>(); | 1432 var o = new core.List<core.String>(); |
| 1401 o.add("foo"); | 1433 o.add("foo"); |
| 1402 o.add("foo"); | 1434 o.add("foo"); |
| 1403 return o; | 1435 return o; |
| 1404 } | 1436 } |
| 1405 | 1437 |
| 1406 checkUnnamed1209(core.List<core.String> o) { | 1438 checkUnnamed1188(core.List<core.String> o) { |
| 1407 unittest.expect(o, unittest.hasLength(2)); | 1439 unittest.expect(o, unittest.hasLength(2)); |
| 1408 unittest.expect(o[0], unittest.equals('foo')); | 1440 unittest.expect(o[0], unittest.equals('foo')); |
| 1409 unittest.expect(o[1], unittest.equals('foo')); | 1441 unittest.expect(o[1], unittest.equals('foo')); |
| 1410 } | 1442 } |
| 1411 | 1443 |
| 1412 core.int buildCounterSearchReadsetsRequest = 0; | 1444 core.int buildCounterSearchReadsetsRequest = 0; |
| 1413 buildSearchReadsetsRequest() { | 1445 buildSearchReadsetsRequest() { |
| 1414 var o = new api.SearchReadsetsRequest(); | 1446 var o = new api.SearchReadsetsRequest(); |
| 1415 buildCounterSearchReadsetsRequest++; | 1447 buildCounterSearchReadsetsRequest++; |
| 1416 if (buildCounterSearchReadsetsRequest < 3) { | 1448 if (buildCounterSearchReadsetsRequest < 3) { |
| 1417 o.datasetIds = buildUnnamed1209(); | 1449 o.datasetIds = buildUnnamed1188(); |
| 1418 o.maxResults = "foo"; | 1450 o.maxResults = "foo"; |
| 1419 o.name = "foo"; | 1451 o.name = "foo"; |
| 1420 o.pageToken = "foo"; | 1452 o.pageToken = "foo"; |
| 1421 } | 1453 } |
| 1422 buildCounterSearchReadsetsRequest--; | 1454 buildCounterSearchReadsetsRequest--; |
| 1423 return o; | 1455 return o; |
| 1424 } | 1456 } |
| 1425 | 1457 |
| 1426 checkSearchReadsetsRequest(api.SearchReadsetsRequest o) { | 1458 checkSearchReadsetsRequest(api.SearchReadsetsRequest o) { |
| 1427 buildCounterSearchReadsetsRequest++; | 1459 buildCounterSearchReadsetsRequest++; |
| 1428 if (buildCounterSearchReadsetsRequest < 3) { | 1460 if (buildCounterSearchReadsetsRequest < 3) { |
| 1429 checkUnnamed1209(o.datasetIds); | 1461 checkUnnamed1188(o.datasetIds); |
| 1430 unittest.expect(o.maxResults, unittest.equals('foo')); | 1462 unittest.expect(o.maxResults, unittest.equals('foo')); |
| 1431 unittest.expect(o.name, unittest.equals('foo')); | 1463 unittest.expect(o.name, unittest.equals('foo')); |
| 1432 unittest.expect(o.pageToken, unittest.equals('foo')); | 1464 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1433 } | 1465 } |
| 1434 buildCounterSearchReadsetsRequest--; | 1466 buildCounterSearchReadsetsRequest--; |
| 1435 } | 1467 } |
| 1436 | 1468 |
| 1437 buildUnnamed1210() { | 1469 buildUnnamed1189() { |
| 1438 var o = new core.List<api.Readset>(); | 1470 var o = new core.List<api.Readset>(); |
| 1439 o.add(buildReadset()); | 1471 o.add(buildReadset()); |
| 1440 o.add(buildReadset()); | 1472 o.add(buildReadset()); |
| 1441 return o; | 1473 return o; |
| 1442 } | 1474 } |
| 1443 | 1475 |
| 1444 checkUnnamed1210(core.List<api.Readset> o) { | 1476 checkUnnamed1189(core.List<api.Readset> o) { |
| 1445 unittest.expect(o, unittest.hasLength(2)); | 1477 unittest.expect(o, unittest.hasLength(2)); |
| 1446 checkReadset(o[0]); | 1478 checkReadset(o[0]); |
| 1447 checkReadset(o[1]); | 1479 checkReadset(o[1]); |
| 1448 } | 1480 } |
| 1449 | 1481 |
| 1450 core.int buildCounterSearchReadsetsResponse = 0; | 1482 core.int buildCounterSearchReadsetsResponse = 0; |
| 1451 buildSearchReadsetsResponse() { | 1483 buildSearchReadsetsResponse() { |
| 1452 var o = new api.SearchReadsetsResponse(); | 1484 var o = new api.SearchReadsetsResponse(); |
| 1453 buildCounterSearchReadsetsResponse++; | 1485 buildCounterSearchReadsetsResponse++; |
| 1454 if (buildCounterSearchReadsetsResponse < 3) { | 1486 if (buildCounterSearchReadsetsResponse < 3) { |
| 1455 o.nextPageToken = "foo"; | 1487 o.nextPageToken = "foo"; |
| 1456 o.readsets = buildUnnamed1210(); | 1488 o.readsets = buildUnnamed1189(); |
| 1457 } | 1489 } |
| 1458 buildCounterSearchReadsetsResponse--; | 1490 buildCounterSearchReadsetsResponse--; |
| 1459 return o; | 1491 return o; |
| 1460 } | 1492 } |
| 1461 | 1493 |
| 1462 checkSearchReadsetsResponse(api.SearchReadsetsResponse o) { | 1494 checkSearchReadsetsResponse(api.SearchReadsetsResponse o) { |
| 1463 buildCounterSearchReadsetsResponse++; | 1495 buildCounterSearchReadsetsResponse++; |
| 1464 if (buildCounterSearchReadsetsResponse < 3) { | 1496 if (buildCounterSearchReadsetsResponse < 3) { |
| 1465 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1497 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1466 checkUnnamed1210(o.readsets); | 1498 checkUnnamed1189(o.readsets); |
| 1467 } | 1499 } |
| 1468 buildCounterSearchReadsetsResponse--; | 1500 buildCounterSearchReadsetsResponse--; |
| 1469 } | 1501 } |
| 1470 | 1502 |
| 1471 buildUnnamed1211() { | 1503 buildUnnamed1190() { |
| 1472 var o = new core.List<core.String>(); | 1504 var o = new core.List<core.String>(); |
| 1473 o.add("foo"); | 1505 o.add("foo"); |
| 1474 o.add("foo"); | 1506 o.add("foo"); |
| 1475 return o; | 1507 return o; |
| 1476 } | 1508 } |
| 1477 | 1509 |
| 1478 checkUnnamed1211(core.List<core.String> o) { | 1510 checkUnnamed1190(core.List<core.String> o) { |
| 1479 unittest.expect(o, unittest.hasLength(2)); | 1511 unittest.expect(o, unittest.hasLength(2)); |
| 1480 unittest.expect(o[0], unittest.equals('foo')); | 1512 unittest.expect(o[0], unittest.equals('foo')); |
| 1481 unittest.expect(o[1], unittest.equals('foo')); | 1513 unittest.expect(o[1], unittest.equals('foo')); |
| 1482 } | 1514 } |
| 1483 | 1515 |
| 1484 core.int buildCounterSearchVariantSetsRequest = 0; | 1516 core.int buildCounterSearchVariantSetsRequest = 0; |
| 1485 buildSearchVariantSetsRequest() { | 1517 buildSearchVariantSetsRequest() { |
| 1486 var o = new api.SearchVariantSetsRequest(); | 1518 var o = new api.SearchVariantSetsRequest(); |
| 1487 buildCounterSearchVariantSetsRequest++; | 1519 buildCounterSearchVariantSetsRequest++; |
| 1488 if (buildCounterSearchVariantSetsRequest < 3) { | 1520 if (buildCounterSearchVariantSetsRequest < 3) { |
| 1489 o.datasetIds = buildUnnamed1211(); | 1521 o.datasetIds = buildUnnamed1190(); |
| 1490 o.pageSize = 42; | 1522 o.pageSize = 42; |
| 1491 o.pageToken = "foo"; | 1523 o.pageToken = "foo"; |
| 1492 } | 1524 } |
| 1493 buildCounterSearchVariantSetsRequest--; | 1525 buildCounterSearchVariantSetsRequest--; |
| 1494 return o; | 1526 return o; |
| 1495 } | 1527 } |
| 1496 | 1528 |
| 1497 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { | 1529 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { |
| 1498 buildCounterSearchVariantSetsRequest++; | 1530 buildCounterSearchVariantSetsRequest++; |
| 1499 if (buildCounterSearchVariantSetsRequest < 3) { | 1531 if (buildCounterSearchVariantSetsRequest < 3) { |
| 1500 checkUnnamed1211(o.datasetIds); | 1532 checkUnnamed1190(o.datasetIds); |
| 1501 unittest.expect(o.pageSize, unittest.equals(42)); | 1533 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1502 unittest.expect(o.pageToken, unittest.equals('foo')); | 1534 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1503 } | 1535 } |
| 1504 buildCounterSearchVariantSetsRequest--; | 1536 buildCounterSearchVariantSetsRequest--; |
| 1505 } | 1537 } |
| 1506 | 1538 |
| 1507 buildUnnamed1212() { | 1539 buildUnnamed1191() { |
| 1508 var o = new core.List<api.VariantSet>(); | 1540 var o = new core.List<api.VariantSet>(); |
| 1509 o.add(buildVariantSet()); | 1541 o.add(buildVariantSet()); |
| 1510 o.add(buildVariantSet()); | 1542 o.add(buildVariantSet()); |
| 1511 return o; | 1543 return o; |
| 1512 } | 1544 } |
| 1513 | 1545 |
| 1514 checkUnnamed1212(core.List<api.VariantSet> o) { | 1546 checkUnnamed1191(core.List<api.VariantSet> o) { |
| 1515 unittest.expect(o, unittest.hasLength(2)); | 1547 unittest.expect(o, unittest.hasLength(2)); |
| 1516 checkVariantSet(o[0]); | 1548 checkVariantSet(o[0]); |
| 1517 checkVariantSet(o[1]); | 1549 checkVariantSet(o[1]); |
| 1518 } | 1550 } |
| 1519 | 1551 |
| 1520 core.int buildCounterSearchVariantSetsResponse = 0; | 1552 core.int buildCounterSearchVariantSetsResponse = 0; |
| 1521 buildSearchVariantSetsResponse() { | 1553 buildSearchVariantSetsResponse() { |
| 1522 var o = new api.SearchVariantSetsResponse(); | 1554 var o = new api.SearchVariantSetsResponse(); |
| 1523 buildCounterSearchVariantSetsResponse++; | 1555 buildCounterSearchVariantSetsResponse++; |
| 1524 if (buildCounterSearchVariantSetsResponse < 3) { | 1556 if (buildCounterSearchVariantSetsResponse < 3) { |
| 1525 o.nextPageToken = "foo"; | 1557 o.nextPageToken = "foo"; |
| 1526 o.variantSets = buildUnnamed1212(); | 1558 o.variantSets = buildUnnamed1191(); |
| 1527 } | 1559 } |
| 1528 buildCounterSearchVariantSetsResponse--; | 1560 buildCounterSearchVariantSetsResponse--; |
| 1529 return o; | 1561 return o; |
| 1530 } | 1562 } |
| 1531 | 1563 |
| 1532 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { | 1564 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { |
| 1533 buildCounterSearchVariantSetsResponse++; | 1565 buildCounterSearchVariantSetsResponse++; |
| 1534 if (buildCounterSearchVariantSetsResponse < 3) { | 1566 if (buildCounterSearchVariantSetsResponse < 3) { |
| 1535 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1567 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1536 checkUnnamed1212(o.variantSets); | 1568 checkUnnamed1191(o.variantSets); |
| 1537 } | 1569 } |
| 1538 buildCounterSearchVariantSetsResponse--; | 1570 buildCounterSearchVariantSetsResponse--; |
| 1539 } | 1571 } |
| 1540 | 1572 |
| 1541 buildUnnamed1213() { | 1573 buildUnnamed1192() { |
| 1542 var o = new core.List<core.String>(); | 1574 var o = new core.List<core.String>(); |
| 1543 o.add("foo"); | 1575 o.add("foo"); |
| 1544 o.add("foo"); | 1576 o.add("foo"); |
| 1545 return o; | 1577 return o; |
| 1546 } | 1578 } |
| 1547 | 1579 |
| 1548 checkUnnamed1213(core.List<core.String> o) { | 1580 checkUnnamed1192(core.List<core.String> o) { |
| 1549 unittest.expect(o, unittest.hasLength(2)); | 1581 unittest.expect(o, unittest.hasLength(2)); |
| 1550 unittest.expect(o[0], unittest.equals('foo')); | 1582 unittest.expect(o[0], unittest.equals('foo')); |
| 1551 unittest.expect(o[1], unittest.equals('foo')); | 1583 unittest.expect(o[1], unittest.equals('foo')); |
| 1552 } | 1584 } |
| 1553 | 1585 |
| 1554 buildUnnamed1214() { | 1586 buildUnnamed1193() { |
| 1555 var o = new core.List<core.String>(); | 1587 var o = new core.List<core.String>(); |
| 1556 o.add("foo"); | 1588 o.add("foo"); |
| 1557 o.add("foo"); | 1589 o.add("foo"); |
| 1558 return o; | 1590 return o; |
| 1559 } | 1591 } |
| 1560 | 1592 |
| 1561 checkUnnamed1214(core.List<core.String> o) { | 1593 checkUnnamed1193(core.List<core.String> o) { |
| 1562 unittest.expect(o, unittest.hasLength(2)); | 1594 unittest.expect(o, unittest.hasLength(2)); |
| 1563 unittest.expect(o[0], unittest.equals('foo')); | 1595 unittest.expect(o[0], unittest.equals('foo')); |
| 1564 unittest.expect(o[1], unittest.equals('foo')); | 1596 unittest.expect(o[1], unittest.equals('foo')); |
| 1565 } | 1597 } |
| 1566 | 1598 |
| 1567 core.int buildCounterSearchVariantsRequest = 0; | 1599 core.int buildCounterSearchVariantsRequest = 0; |
| 1568 buildSearchVariantsRequest() { | 1600 buildSearchVariantsRequest() { |
| 1569 var o = new api.SearchVariantsRequest(); | 1601 var o = new api.SearchVariantsRequest(); |
| 1570 buildCounterSearchVariantsRequest++; | 1602 buildCounterSearchVariantsRequest++; |
| 1571 if (buildCounterSearchVariantsRequest < 3) { | 1603 if (buildCounterSearchVariantsRequest < 3) { |
| 1572 o.callSetIds = buildUnnamed1213(); | 1604 o.callSetIds = buildUnnamed1192(); |
| 1573 o.end = "foo"; | 1605 o.end = "foo"; |
| 1574 o.maxCalls = 42; | 1606 o.maxCalls = 42; |
| 1575 o.pageSize = 42; | 1607 o.pageSize = 42; |
| 1576 o.pageToken = "foo"; | 1608 o.pageToken = "foo"; |
| 1577 o.referenceName = "foo"; | 1609 o.referenceName = "foo"; |
| 1578 o.start = "foo"; | 1610 o.start = "foo"; |
| 1579 o.variantName = "foo"; | 1611 o.variantName = "foo"; |
| 1580 o.variantSetIds = buildUnnamed1214(); | 1612 o.variantSetIds = buildUnnamed1193(); |
| 1581 } | 1613 } |
| 1582 buildCounterSearchVariantsRequest--; | 1614 buildCounterSearchVariantsRequest--; |
| 1583 return o; | 1615 return o; |
| 1584 } | 1616 } |
| 1585 | 1617 |
| 1586 checkSearchVariantsRequest(api.SearchVariantsRequest o) { | 1618 checkSearchVariantsRequest(api.SearchVariantsRequest o) { |
| 1587 buildCounterSearchVariantsRequest++; | 1619 buildCounterSearchVariantsRequest++; |
| 1588 if (buildCounterSearchVariantsRequest < 3) { | 1620 if (buildCounterSearchVariantsRequest < 3) { |
| 1589 checkUnnamed1213(o.callSetIds); | 1621 checkUnnamed1192(o.callSetIds); |
| 1590 unittest.expect(o.end, unittest.equals('foo')); | 1622 unittest.expect(o.end, unittest.equals('foo')); |
| 1591 unittest.expect(o.maxCalls, unittest.equals(42)); | 1623 unittest.expect(o.maxCalls, unittest.equals(42)); |
| 1592 unittest.expect(o.pageSize, unittest.equals(42)); | 1624 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1593 unittest.expect(o.pageToken, unittest.equals('foo')); | 1625 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1594 unittest.expect(o.referenceName, unittest.equals('foo')); | 1626 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 1595 unittest.expect(o.start, unittest.equals('foo')); | 1627 unittest.expect(o.start, unittest.equals('foo')); |
| 1596 unittest.expect(o.variantName, unittest.equals('foo')); | 1628 unittest.expect(o.variantName, unittest.equals('foo')); |
| 1597 checkUnnamed1214(o.variantSetIds); | 1629 checkUnnamed1193(o.variantSetIds); |
| 1598 } | 1630 } |
| 1599 buildCounterSearchVariantsRequest--; | 1631 buildCounterSearchVariantsRequest--; |
| 1600 } | 1632 } |
| 1601 | 1633 |
| 1602 buildUnnamed1215() { | 1634 buildUnnamed1194() { |
| 1603 var o = new core.List<api.Variant>(); | 1635 var o = new core.List<api.Variant>(); |
| 1604 o.add(buildVariant()); | 1636 o.add(buildVariant()); |
| 1605 o.add(buildVariant()); | 1637 o.add(buildVariant()); |
| 1606 return o; | 1638 return o; |
| 1607 } | 1639 } |
| 1608 | 1640 |
| 1609 checkUnnamed1215(core.List<api.Variant> o) { | 1641 checkUnnamed1194(core.List<api.Variant> o) { |
| 1610 unittest.expect(o, unittest.hasLength(2)); | 1642 unittest.expect(o, unittest.hasLength(2)); |
| 1611 checkVariant(o[0]); | 1643 checkVariant(o[0]); |
| 1612 checkVariant(o[1]); | 1644 checkVariant(o[1]); |
| 1613 } | 1645 } |
| 1614 | 1646 |
| 1615 core.int buildCounterSearchVariantsResponse = 0; | 1647 core.int buildCounterSearchVariantsResponse = 0; |
| 1616 buildSearchVariantsResponse() { | 1648 buildSearchVariantsResponse() { |
| 1617 var o = new api.SearchVariantsResponse(); | 1649 var o = new api.SearchVariantsResponse(); |
| 1618 buildCounterSearchVariantsResponse++; | 1650 buildCounterSearchVariantsResponse++; |
| 1619 if (buildCounterSearchVariantsResponse < 3) { | 1651 if (buildCounterSearchVariantsResponse < 3) { |
| 1620 o.nextPageToken = "foo"; | 1652 o.nextPageToken = "foo"; |
| 1621 o.variants = buildUnnamed1215(); | 1653 o.variants = buildUnnamed1194(); |
| 1622 } | 1654 } |
| 1623 buildCounterSearchVariantsResponse--; | 1655 buildCounterSearchVariantsResponse--; |
| 1624 return o; | 1656 return o; |
| 1625 } | 1657 } |
| 1626 | 1658 |
| 1627 checkSearchVariantsResponse(api.SearchVariantsResponse o) { | 1659 checkSearchVariantsResponse(api.SearchVariantsResponse o) { |
| 1628 buildCounterSearchVariantsResponse++; | 1660 buildCounterSearchVariantsResponse++; |
| 1629 if (buildCounterSearchVariantsResponse < 3) { | 1661 if (buildCounterSearchVariantsResponse < 3) { |
| 1630 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1662 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1631 checkUnnamed1215(o.variants); | 1663 checkUnnamed1194(o.variants); |
| 1632 } | 1664 } |
| 1633 buildCounterSearchVariantsResponse--; | 1665 buildCounterSearchVariantsResponse--; |
| 1634 } | 1666 } |
| 1635 | 1667 |
| 1636 buildUnnamed1216() { | 1668 buildUnnamed1195() { |
| 1637 var o = new core.List<core.String>(); | 1669 var o = new core.List<core.String>(); |
| 1638 o.add("foo"); | 1670 o.add("foo"); |
| 1639 o.add("foo"); | 1671 o.add("foo"); |
| 1640 return o; | 1672 return o; |
| 1641 } | 1673 } |
| 1642 | 1674 |
| 1643 checkUnnamed1216(core.List<core.String> o) { | 1675 checkUnnamed1195(core.List<core.String> o) { |
| 1644 unittest.expect(o, unittest.hasLength(2)); | 1676 unittest.expect(o, unittest.hasLength(2)); |
| 1645 unittest.expect(o[0], unittest.equals('foo')); | 1677 unittest.expect(o[0], unittest.equals('foo')); |
| 1646 unittest.expect(o[1], unittest.equals('foo')); | 1678 unittest.expect(o[1], unittest.equals('foo')); |
| 1647 } | 1679 } |
| 1648 | 1680 |
| 1649 buildUnnamed1217() { | 1681 buildUnnamed1196() { |
| 1650 var o = new core.List<api.Call>(); | 1682 var o = new core.List<api.Call>(); |
| 1651 o.add(buildCall()); | 1683 o.add(buildCall()); |
| 1652 o.add(buildCall()); | 1684 o.add(buildCall()); |
| 1653 return o; | 1685 return o; |
| 1654 } | 1686 } |
| 1655 | 1687 |
| 1656 checkUnnamed1217(core.List<api.Call> o) { | 1688 checkUnnamed1196(core.List<api.Call> o) { |
| 1657 unittest.expect(o, unittest.hasLength(2)); | 1689 unittest.expect(o, unittest.hasLength(2)); |
| 1658 checkCall(o[0]); | 1690 checkCall(o[0]); |
| 1659 checkCall(o[1]); | 1691 checkCall(o[1]); |
| 1660 } | 1692 } |
| 1661 | 1693 |
| 1662 buildUnnamed1218() { | 1694 buildUnnamed1197() { |
| 1663 var o = new core.List<core.String>(); | 1695 var o = new core.List<core.String>(); |
| 1664 o.add("foo"); | 1696 o.add("foo"); |
| 1665 o.add("foo"); | 1697 o.add("foo"); |
| 1666 return o; | 1698 return o; |
| 1667 } | 1699 } |
| 1668 | 1700 |
| 1669 checkUnnamed1218(core.List<core.String> o) { | 1701 checkUnnamed1197(core.List<core.String> o) { |
| 1670 unittest.expect(o, unittest.hasLength(2)); | 1702 unittest.expect(o, unittest.hasLength(2)); |
| 1671 unittest.expect(o[0], unittest.equals('foo')); | 1703 unittest.expect(o[0], unittest.equals('foo')); |
| 1672 unittest.expect(o[1], unittest.equals('foo')); | 1704 unittest.expect(o[1], unittest.equals('foo')); |
| 1673 } | 1705 } |
| 1674 | 1706 |
| 1675 buildUnnamed1219() { | 1707 buildUnnamed1198() { |
| 1676 var o = new core.List<core.String>(); | 1708 var o = new core.List<core.String>(); |
| 1677 o.add("foo"); | 1709 o.add("foo"); |
| 1678 o.add("foo"); | 1710 o.add("foo"); |
| 1679 return o; | 1711 return o; |
| 1680 } | 1712 } |
| 1681 | 1713 |
| 1682 checkUnnamed1219(core.List<core.String> o) { | 1714 checkUnnamed1198(core.List<core.String> o) { |
| 1683 unittest.expect(o, unittest.hasLength(2)); | 1715 unittest.expect(o, unittest.hasLength(2)); |
| 1684 unittest.expect(o[0], unittest.equals('foo')); | 1716 unittest.expect(o[0], unittest.equals('foo')); |
| 1685 unittest.expect(o[1], unittest.equals('foo')); | 1717 unittest.expect(o[1], unittest.equals('foo')); |
| 1686 } | 1718 } |
| 1687 | 1719 |
| 1688 buildUnnamed1220() { | 1720 buildUnnamed1199() { |
| 1689 var o = new core.Map<core.String, core.List<core.String>>(); | 1721 var o = new core.Map<core.String, core.List<core.String>>(); |
| 1690 o["x"] = buildUnnamed1219(); | 1722 o["x"] = buildUnnamed1198(); |
| 1691 o["y"] = buildUnnamed1219(); | 1723 o["y"] = buildUnnamed1198(); |
| 1692 return o; | 1724 return o; |
| 1693 } | 1725 } |
| 1694 | 1726 |
| 1695 checkUnnamed1220(core.Map<core.String, core.List<core.String>> o) { | 1727 checkUnnamed1199(core.Map<core.String, core.List<core.String>> o) { |
| 1696 unittest.expect(o, unittest.hasLength(2)); | 1728 unittest.expect(o, unittest.hasLength(2)); |
| 1697 checkUnnamed1219(o["x"]); | 1729 checkUnnamed1198(o["x"]); |
| 1698 checkUnnamed1219(o["y"]); | 1730 checkUnnamed1198(o["y"]); |
| 1699 } | 1731 } |
| 1700 | 1732 |
| 1701 buildUnnamed1221() { | 1733 buildUnnamed1200() { |
| 1702 var o = new core.List<core.String>(); | 1734 var o = new core.List<core.String>(); |
| 1703 o.add("foo"); | 1735 o.add("foo"); |
| 1704 o.add("foo"); | 1736 o.add("foo"); |
| 1705 return o; | 1737 return o; |
| 1706 } | 1738 } |
| 1707 | 1739 |
| 1708 checkUnnamed1221(core.List<core.String> o) { | 1740 checkUnnamed1200(core.List<core.String> o) { |
| 1709 unittest.expect(o, unittest.hasLength(2)); | 1741 unittest.expect(o, unittest.hasLength(2)); |
| 1710 unittest.expect(o[0], unittest.equals('foo')); | 1742 unittest.expect(o[0], unittest.equals('foo')); |
| 1711 unittest.expect(o[1], unittest.equals('foo')); | 1743 unittest.expect(o[1], unittest.equals('foo')); |
| 1712 } | 1744 } |
| 1713 | 1745 |
| 1714 core.int buildCounterVariant = 0; | 1746 core.int buildCounterVariant = 0; |
| 1715 buildVariant() { | 1747 buildVariant() { |
| 1716 var o = new api.Variant(); | 1748 var o = new api.Variant(); |
| 1717 buildCounterVariant++; | 1749 buildCounterVariant++; |
| 1718 if (buildCounterVariant < 3) { | 1750 if (buildCounterVariant < 3) { |
| 1719 o.alternateBases = buildUnnamed1216(); | 1751 o.alternateBases = buildUnnamed1195(); |
| 1720 o.calls = buildUnnamed1217(); | 1752 o.calls = buildUnnamed1196(); |
| 1721 o.created = "foo"; | 1753 o.created = "foo"; |
| 1722 o.end = "foo"; | 1754 o.end = "foo"; |
| 1723 o.filter = buildUnnamed1218(); | 1755 o.filter = buildUnnamed1197(); |
| 1724 o.id = "foo"; | 1756 o.id = "foo"; |
| 1725 o.info = buildUnnamed1220(); | 1757 o.info = buildUnnamed1199(); |
| 1726 o.names = buildUnnamed1221(); | 1758 o.names = buildUnnamed1200(); |
| 1727 o.quality = 42.0; | 1759 o.quality = 42.0; |
| 1728 o.referenceBases = "foo"; | 1760 o.referenceBases = "foo"; |
| 1729 o.referenceName = "foo"; | 1761 o.referenceName = "foo"; |
| 1730 o.start = "foo"; | 1762 o.start = "foo"; |
| 1731 o.variantSetId = "foo"; | 1763 o.variantSetId = "foo"; |
| 1732 } | 1764 } |
| 1733 buildCounterVariant--; | 1765 buildCounterVariant--; |
| 1734 return o; | 1766 return o; |
| 1735 } | 1767 } |
| 1736 | 1768 |
| 1737 checkVariant(api.Variant o) { | 1769 checkVariant(api.Variant o) { |
| 1738 buildCounterVariant++; | 1770 buildCounterVariant++; |
| 1739 if (buildCounterVariant < 3) { | 1771 if (buildCounterVariant < 3) { |
| 1740 checkUnnamed1216(o.alternateBases); | 1772 checkUnnamed1195(o.alternateBases); |
| 1741 checkUnnamed1217(o.calls); | 1773 checkUnnamed1196(o.calls); |
| 1742 unittest.expect(o.created, unittest.equals('foo')); | 1774 unittest.expect(o.created, unittest.equals('foo')); |
| 1743 unittest.expect(o.end, unittest.equals('foo')); | 1775 unittest.expect(o.end, unittest.equals('foo')); |
| 1744 checkUnnamed1218(o.filter); | 1776 checkUnnamed1197(o.filter); |
| 1745 unittest.expect(o.id, unittest.equals('foo')); | 1777 unittest.expect(o.id, unittest.equals('foo')); |
| 1746 checkUnnamed1220(o.info); | 1778 checkUnnamed1199(o.info); |
| 1747 checkUnnamed1221(o.names); | 1779 checkUnnamed1200(o.names); |
| 1748 unittest.expect(o.quality, unittest.equals(42.0)); | 1780 unittest.expect(o.quality, unittest.equals(42.0)); |
| 1749 unittest.expect(o.referenceBases, unittest.equals('foo')); | 1781 unittest.expect(o.referenceBases, unittest.equals('foo')); |
| 1750 unittest.expect(o.referenceName, unittest.equals('foo')); | 1782 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 1751 unittest.expect(o.start, unittest.equals('foo')); | 1783 unittest.expect(o.start, unittest.equals('foo')); |
| 1752 unittest.expect(o.variantSetId, unittest.equals('foo')); | 1784 unittest.expect(o.variantSetId, unittest.equals('foo')); |
| 1753 } | 1785 } |
| 1754 buildCounterVariant--; | 1786 buildCounterVariant--; |
| 1755 } | 1787 } |
| 1756 | 1788 |
| 1757 buildUnnamed1222() { | 1789 buildUnnamed1201() { |
| 1758 var o = new core.List<api.Metadata>(); | 1790 var o = new core.List<api.Metadata>(); |
| 1759 o.add(buildMetadata()); | 1791 o.add(buildMetadata()); |
| 1760 o.add(buildMetadata()); | 1792 o.add(buildMetadata()); |
| 1761 return o; | 1793 return o; |
| 1762 } | 1794 } |
| 1763 | 1795 |
| 1764 checkUnnamed1222(core.List<api.Metadata> o) { | 1796 checkUnnamed1201(core.List<api.Metadata> o) { |
| 1765 unittest.expect(o, unittest.hasLength(2)); | 1797 unittest.expect(o, unittest.hasLength(2)); |
| 1766 checkMetadata(o[0]); | 1798 checkMetadata(o[0]); |
| 1767 checkMetadata(o[1]); | 1799 checkMetadata(o[1]); |
| 1768 } | 1800 } |
| 1769 | 1801 |
| 1770 buildUnnamed1223() { | 1802 buildUnnamed1202() { |
| 1771 var o = new core.List<api.ReferenceBound>(); | 1803 var o = new core.List<api.ReferenceBound>(); |
| 1772 o.add(buildReferenceBound()); | 1804 o.add(buildReferenceBound()); |
| 1773 o.add(buildReferenceBound()); | 1805 o.add(buildReferenceBound()); |
| 1774 return o; | 1806 return o; |
| 1775 } | 1807 } |
| 1776 | 1808 |
| 1777 checkUnnamed1223(core.List<api.ReferenceBound> o) { | 1809 checkUnnamed1202(core.List<api.ReferenceBound> o) { |
| 1778 unittest.expect(o, unittest.hasLength(2)); | 1810 unittest.expect(o, unittest.hasLength(2)); |
| 1779 checkReferenceBound(o[0]); | 1811 checkReferenceBound(o[0]); |
| 1780 checkReferenceBound(o[1]); | 1812 checkReferenceBound(o[1]); |
| 1781 } | 1813 } |
| 1782 | 1814 |
| 1783 core.int buildCounterVariantSet = 0; | 1815 core.int buildCounterVariantSet = 0; |
| 1784 buildVariantSet() { | 1816 buildVariantSet() { |
| 1785 var o = new api.VariantSet(); | 1817 var o = new api.VariantSet(); |
| 1786 buildCounterVariantSet++; | 1818 buildCounterVariantSet++; |
| 1787 if (buildCounterVariantSet < 3) { | 1819 if (buildCounterVariantSet < 3) { |
| 1788 o.datasetId = "foo"; | 1820 o.datasetId = "foo"; |
| 1789 o.id = "foo"; | 1821 o.id = "foo"; |
| 1790 o.metadata = buildUnnamed1222(); | 1822 o.metadata = buildUnnamed1201(); |
| 1791 o.referenceBounds = buildUnnamed1223(); | 1823 o.referenceBounds = buildUnnamed1202(); |
| 1792 } | 1824 } |
| 1793 buildCounterVariantSet--; | 1825 buildCounterVariantSet--; |
| 1794 return o; | 1826 return o; |
| 1795 } | 1827 } |
| 1796 | 1828 |
| 1797 checkVariantSet(api.VariantSet o) { | 1829 checkVariantSet(api.VariantSet o) { |
| 1798 buildCounterVariantSet++; | 1830 buildCounterVariantSet++; |
| 1799 if (buildCounterVariantSet < 3) { | 1831 if (buildCounterVariantSet < 3) { |
| 1800 unittest.expect(o.datasetId, unittest.equals('foo')); | 1832 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 1801 unittest.expect(o.id, unittest.equals('foo')); | 1833 unittest.expect(o.id, unittest.equals('foo')); |
| 1802 checkUnnamed1222(o.metadata); | 1834 checkUnnamed1201(o.metadata); |
| 1803 checkUnnamed1223(o.referenceBounds); | 1835 checkUnnamed1202(o.referenceBounds); |
| 1804 } | 1836 } |
| 1805 buildCounterVariantSet--; | 1837 buildCounterVariantSet--; |
| 1806 } | 1838 } |
| 1807 | 1839 |
| 1808 | 1840 |
| 1809 main() { | 1841 main() { |
| 1810 unittest.group("obj-schema-Beacon", () { | 1842 unittest.group("obj-schema-Beacon", () { |
| 1811 unittest.test("to-json--from-json", () { | 1843 unittest.test("to-json--from-json", () { |
| 1812 var o = buildBeacon(); | 1844 var o = buildBeacon(); |
| 1813 var od = new api.Beacon.fromJson(o.toJson()); | 1845 var od = new api.Beacon.fromJson(o.toJson()); |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1998 | 2030 |
| 1999 unittest.group("obj-schema-ListDatasetsResponse", () { | 2031 unittest.group("obj-schema-ListDatasetsResponse", () { |
| 2000 unittest.test("to-json--from-json", () { | 2032 unittest.test("to-json--from-json", () { |
| 2001 var o = buildListDatasetsResponse(); | 2033 var o = buildListDatasetsResponse(); |
| 2002 var od = new api.ListDatasetsResponse.fromJson(o.toJson()); | 2034 var od = new api.ListDatasetsResponse.fromJson(o.toJson()); |
| 2003 checkListDatasetsResponse(od); | 2035 checkListDatasetsResponse(od); |
| 2004 }); | 2036 }); |
| 2005 }); | 2037 }); |
| 2006 | 2038 |
| 2007 | 2039 |
| 2040 unittest.group("obj-schema-MergeVariantsRequest", () { |
| 2041 unittest.test("to-json--from-json", () { |
| 2042 var o = buildMergeVariantsRequest(); |
| 2043 var od = new api.MergeVariantsRequest.fromJson(o.toJson()); |
| 2044 checkMergeVariantsRequest(od); |
| 2045 }); |
| 2046 }); |
| 2047 |
| 2048 |
| 2008 unittest.group("obj-schema-Metadata", () { | 2049 unittest.group("obj-schema-Metadata", () { |
| 2009 unittest.test("to-json--from-json", () { | 2050 unittest.test("to-json--from-json", () { |
| 2010 var o = buildMetadata(); | 2051 var o = buildMetadata(); |
| 2011 var od = new api.Metadata.fromJson(o.toJson()); | 2052 var od = new api.Metadata.fromJson(o.toJson()); |
| 2012 checkMetadata(od); | 2053 checkMetadata(od); |
| 2013 }); | 2054 }); |
| 2014 }); | 2055 }); |
| 2015 | 2056 |
| 2016 | 2057 |
| 2017 unittest.group("obj-schema-Program", () { | 2058 unittest.group("obj-schema-Program", () { |
| (...skipping 2022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4040 }), true); | 4081 }), true); |
| 4041 res.get(arg_variantSetId).then(unittest.expectAsync(((api.VariantSet respo
nse) { | 4082 res.get(arg_variantSetId).then(unittest.expectAsync(((api.VariantSet respo
nse) { |
| 4042 checkVariantSet(response); | 4083 checkVariantSet(response); |
| 4043 }))); | 4084 }))); |
| 4044 }); | 4085 }); |
| 4045 | 4086 |
| 4046 unittest.test("method--mergeVariants", () { | 4087 unittest.test("method--mergeVariants", () { |
| 4047 | 4088 |
| 4048 var mock = new common_test.HttpServerMock(); | 4089 var mock = new common_test.HttpServerMock(); |
| 4049 api.VariantsetsResourceApi res = new api.GenomicsApi(mock).variantsets; | 4090 api.VariantsetsResourceApi res = new api.GenomicsApi(mock).variantsets; |
| 4050 var arg_request = buildVariant(); | 4091 var arg_request = buildMergeVariantsRequest(); |
| 4051 var arg_variantSetId = "foo"; | 4092 var arg_variantSetId = "foo"; |
| 4052 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 4093 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 4053 var obj = new api.Variant.fromJson(json); | 4094 var obj = new api.MergeVariantsRequest.fromJson(json); |
| 4054 checkVariant(obj); | 4095 checkMergeVariantsRequest(obj); |
| 4055 | 4096 |
| 4056 var path = (req.url).path; | 4097 var path = (req.url).path; |
| 4057 var pathOffset = 0; | 4098 var pathOffset = 0; |
| 4058 var index; | 4099 var index; |
| 4059 var subPart; | 4100 var subPart; |
| 4060 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 4101 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 4061 pathOffset += 1; | 4102 pathOffset += 1; |
| 4062 unittest.expect(path.substring(pathOffset, pathOffset + 16), unittest.eq
uals("genomics/v1beta/")); | 4103 unittest.expect(path.substring(pathOffset, pathOffset + 16), unittest.eq
uals("genomics/v1beta/")); |
| 4063 pathOffset += 16; | 4104 pathOffset += 16; |
| 4064 unittest.expect(path.substring(pathOffset, pathOffset + 12), unittest.eq
uals("variantsets/")); | 4105 unittest.expect(path.substring(pathOffset, pathOffset + 12), unittest.eq
uals("variantsets/")); |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4145 res.search(arg_request).then(unittest.expectAsync(((api.SearchVariantSetsR
esponse response) { | 4186 res.search(arg_request).then(unittest.expectAsync(((api.SearchVariantSetsR
esponse response) { |
| 4146 checkSearchVariantSetsResponse(response); | 4187 checkSearchVariantSetsResponse(response); |
| 4147 }))); | 4188 }))); |
| 4148 }); | 4189 }); |
| 4149 | 4190 |
| 4150 }); | 4191 }); |
| 4151 | 4192 |
| 4152 | 4193 |
| 4153 } | 4194 } |
| 4154 | 4195 |
| OLD | NEW |