| OLD | NEW |
| 1 library googleapis_beta.genomics.v1beta2.test; | 1 library googleapis_beta.genomics.v1beta2.test; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
| 9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
| 10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
| 11 import 'package:googleapis_beta/common/common.dart' as common; | 11 import 'package:googleapis_beta/common/common.dart' as common; |
| 12 import 'package:googleapis_beta/src/common_internal.dart' as common_internal; | 12 import 'package:googleapis_beta/src/common_internal.dart' as common_internal; |
| 13 import '../common/common_internal_test.dart' as common_test; | 13 import '../common/common_internal_test.dart' as common_test; |
| 14 | 14 |
| 15 import 'package:googleapis_beta/genomics/v1beta2.dart' as api; | 15 import 'package:googleapis_beta/genomics/v1beta2.dart' as api; |
| 16 | 16 |
| 17 | 17 |
| 18 | 18 |
| 19 buildUnnamed1618() { | 19 buildUnnamed1685() { |
| 20 var o = new core.List<core.String>(); | 20 var o = new core.List<core.String>(); |
| 21 o.add("foo"); | 21 o.add("foo"); |
| 22 o.add("foo"); | 22 o.add("foo"); |
| 23 return o; | 23 return o; |
| 24 } | 24 } |
| 25 | 25 |
| 26 checkUnnamed1618(core.List<core.String> o) { | 26 checkUnnamed1685(core.List<core.String> o) { |
| 27 unittest.expect(o, unittest.hasLength(2)); | 27 unittest.expect(o, unittest.hasLength(2)); |
| 28 unittest.expect(o[0], unittest.equals('foo')); | 28 unittest.expect(o[0], unittest.equals('foo')); |
| 29 unittest.expect(o[1], unittest.equals('foo')); | 29 unittest.expect(o[1], unittest.equals('foo')); |
| 30 } | 30 } |
| 31 | 31 |
| 32 core.int buildCounterAlignReadGroupSetsRequest = 0; | 32 core.int buildCounterAlignReadGroupSetsRequest = 0; |
| 33 buildAlignReadGroupSetsRequest() { | 33 buildAlignReadGroupSetsRequest() { |
| 34 var o = new api.AlignReadGroupSetsRequest(); | 34 var o = new api.AlignReadGroupSetsRequest(); |
| 35 buildCounterAlignReadGroupSetsRequest++; | 35 buildCounterAlignReadGroupSetsRequest++; |
| 36 if (buildCounterAlignReadGroupSetsRequest < 3) { | 36 if (buildCounterAlignReadGroupSetsRequest < 3) { |
| 37 o.bamSourceUris = buildUnnamed1618(); | 37 o.bamSourceUris = buildUnnamed1685(); |
| 38 o.datasetId = "foo"; | 38 o.datasetId = "foo"; |
| 39 o.interleavedFastqSource = buildInterleavedFastqSource(); | 39 o.interleavedFastqSource = buildInterleavedFastqSource(); |
| 40 o.pairedFastqSource = buildPairedFastqSource(); | 40 o.pairedFastqSource = buildPairedFastqSource(); |
| 41 o.readGroupSetId = "foo"; | 41 o.readGroupSetId = "foo"; |
| 42 } | 42 } |
| 43 buildCounterAlignReadGroupSetsRequest--; | 43 buildCounterAlignReadGroupSetsRequest--; |
| 44 return o; | 44 return o; |
| 45 } | 45 } |
| 46 | 46 |
| 47 checkAlignReadGroupSetsRequest(api.AlignReadGroupSetsRequest o) { | 47 checkAlignReadGroupSetsRequest(api.AlignReadGroupSetsRequest o) { |
| 48 buildCounterAlignReadGroupSetsRequest++; | 48 buildCounterAlignReadGroupSetsRequest++; |
| 49 if (buildCounterAlignReadGroupSetsRequest < 3) { | 49 if (buildCounterAlignReadGroupSetsRequest < 3) { |
| 50 checkUnnamed1618(o.bamSourceUris); | 50 checkUnnamed1685(o.bamSourceUris); |
| 51 unittest.expect(o.datasetId, unittest.equals('foo')); | 51 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 52 checkInterleavedFastqSource(o.interleavedFastqSource); | 52 checkInterleavedFastqSource(o.interleavedFastqSource); |
| 53 checkPairedFastqSource(o.pairedFastqSource); | 53 checkPairedFastqSource(o.pairedFastqSource); |
| 54 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 54 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
| 55 } | 55 } |
| 56 buildCounterAlignReadGroupSetsRequest--; | 56 buildCounterAlignReadGroupSetsRequest--; |
| 57 } | 57 } |
| 58 | 58 |
| 59 core.int buildCounterAlignReadGroupSetsResponse = 0; | 59 core.int buildCounterAlignReadGroupSetsResponse = 0; |
| 60 buildAlignReadGroupSetsResponse() { | 60 buildAlignReadGroupSetsResponse() { |
| 61 var o = new api.AlignReadGroupSetsResponse(); | 61 var o = new api.AlignReadGroupSetsResponse(); |
| 62 buildCounterAlignReadGroupSetsResponse++; | 62 buildCounterAlignReadGroupSetsResponse++; |
| 63 if (buildCounterAlignReadGroupSetsResponse < 3) { | 63 if (buildCounterAlignReadGroupSetsResponse < 3) { |
| 64 o.jobId = "foo"; | 64 o.jobId = "foo"; |
| 65 } | 65 } |
| 66 buildCounterAlignReadGroupSetsResponse--; | 66 buildCounterAlignReadGroupSetsResponse--; |
| 67 return o; | 67 return o; |
| 68 } | 68 } |
| 69 | 69 |
| 70 checkAlignReadGroupSetsResponse(api.AlignReadGroupSetsResponse o) { | 70 checkAlignReadGroupSetsResponse(api.AlignReadGroupSetsResponse o) { |
| 71 buildCounterAlignReadGroupSetsResponse++; | 71 buildCounterAlignReadGroupSetsResponse++; |
| 72 if (buildCounterAlignReadGroupSetsResponse < 3) { | 72 if (buildCounterAlignReadGroupSetsResponse < 3) { |
| 73 unittest.expect(o.jobId, unittest.equals('foo')); | 73 unittest.expect(o.jobId, unittest.equals('foo')); |
| 74 } | 74 } |
| 75 buildCounterAlignReadGroupSetsResponse--; | 75 buildCounterAlignReadGroupSetsResponse--; |
| 76 } | 76 } |
| 77 | 77 |
| 78 buildUnnamed1619() { | 78 buildUnnamed1686() { |
| 79 var o = new core.List<core.String>(); | 79 var o = new core.List<core.String>(); |
| 80 o.add("foo"); | 80 o.add("foo"); |
| 81 o.add("foo"); | 81 o.add("foo"); |
| 82 return o; | 82 return o; |
| 83 } | 83 } |
| 84 | 84 |
| 85 checkUnnamed1619(core.List<core.String> o) { | 85 checkUnnamed1686(core.List<core.String> o) { |
| 86 unittest.expect(o, unittest.hasLength(2)); | 86 unittest.expect(o, unittest.hasLength(2)); |
| 87 unittest.expect(o[0], unittest.equals('foo')); | 87 unittest.expect(o[0], unittest.equals('foo')); |
| 88 unittest.expect(o[1], unittest.equals('foo')); | 88 unittest.expect(o[1], unittest.equals('foo')); |
| 89 } | 89 } |
| 90 | 90 |
| 91 buildUnnamed1620() { | 91 buildUnnamed1687() { |
| 92 var o = new core.Map<core.String, core.List<core.String>>(); | 92 var o = new core.Map<core.String, core.List<core.String>>(); |
| 93 o["x"] = buildUnnamed1619(); | 93 o["x"] = buildUnnamed1686(); |
| 94 o["y"] = buildUnnamed1619(); | 94 o["y"] = buildUnnamed1686(); |
| 95 return o; | 95 return o; |
| 96 } | 96 } |
| 97 | 97 |
| 98 checkUnnamed1620(core.Map<core.String, core.List<core.String>> o) { | 98 checkUnnamed1687(core.Map<core.String, core.List<core.String>> o) { |
| 99 unittest.expect(o, unittest.hasLength(2)); | 99 unittest.expect(o, unittest.hasLength(2)); |
| 100 checkUnnamed1619(o["x"]); | 100 checkUnnamed1686(o["x"]); |
| 101 checkUnnamed1619(o["y"]); | 101 checkUnnamed1686(o["y"]); |
| 102 } | 102 } |
| 103 | 103 |
| 104 core.int buildCounterAnnotation = 0; | 104 core.int buildCounterAnnotation = 0; |
| 105 buildAnnotation() { | 105 buildAnnotation() { |
| 106 var o = new api.Annotation(); | 106 var o = new api.Annotation(); |
| 107 buildCounterAnnotation++; | 107 buildCounterAnnotation++; |
| 108 if (buildCounterAnnotation < 3) { | 108 if (buildCounterAnnotation < 3) { |
| 109 o.annotationSetId = "foo"; | 109 o.annotationSetId = "foo"; |
| 110 o.id = "foo"; | 110 o.id = "foo"; |
| 111 o.info = buildUnnamed1620(); | 111 o.info = buildUnnamed1687(); |
| 112 o.name = "foo"; | 112 o.name = "foo"; |
| 113 o.position = buildRangePosition(); | 113 o.position = buildRangePosition(); |
| 114 o.transcript = buildTranscript(); | 114 o.transcript = buildTranscript(); |
| 115 o.type = "foo"; | 115 o.type = "foo"; |
| 116 o.variant = buildVariantAnnotation(); | 116 o.variant = buildVariantAnnotation(); |
| 117 } | 117 } |
| 118 buildCounterAnnotation--; | 118 buildCounterAnnotation--; |
| 119 return o; | 119 return o; |
| 120 } | 120 } |
| 121 | 121 |
| 122 checkAnnotation(api.Annotation o) { | 122 checkAnnotation(api.Annotation o) { |
| 123 buildCounterAnnotation++; | 123 buildCounterAnnotation++; |
| 124 if (buildCounterAnnotation < 3) { | 124 if (buildCounterAnnotation < 3) { |
| 125 unittest.expect(o.annotationSetId, unittest.equals('foo')); | 125 unittest.expect(o.annotationSetId, unittest.equals('foo')); |
| 126 unittest.expect(o.id, unittest.equals('foo')); | 126 unittest.expect(o.id, unittest.equals('foo')); |
| 127 checkUnnamed1620(o.info); | 127 checkUnnamed1687(o.info); |
| 128 unittest.expect(o.name, unittest.equals('foo')); | 128 unittest.expect(o.name, unittest.equals('foo')); |
| 129 checkRangePosition(o.position); | 129 checkRangePosition(o.position); |
| 130 checkTranscript(o.transcript); | 130 checkTranscript(o.transcript); |
| 131 unittest.expect(o.type, unittest.equals('foo')); | 131 unittest.expect(o.type, unittest.equals('foo')); |
| 132 checkVariantAnnotation(o.variant); | 132 checkVariantAnnotation(o.variant); |
| 133 } | 133 } |
| 134 buildCounterAnnotation--; | 134 buildCounterAnnotation--; |
| 135 } | 135 } |
| 136 | 136 |
| 137 buildUnnamed1621() { | 137 buildUnnamed1688() { |
| 138 var o = new core.List<core.String>(); | 138 var o = new core.List<core.String>(); |
| 139 o.add("foo"); | 139 o.add("foo"); |
| 140 o.add("foo"); | 140 o.add("foo"); |
| 141 return o; | 141 return o; |
| 142 } | 142 } |
| 143 | 143 |
| 144 checkUnnamed1621(core.List<core.String> o) { | 144 checkUnnamed1688(core.List<core.String> o) { |
| 145 unittest.expect(o, unittest.hasLength(2)); | 145 unittest.expect(o, unittest.hasLength(2)); |
| 146 unittest.expect(o[0], unittest.equals('foo')); | 146 unittest.expect(o[0], unittest.equals('foo')); |
| 147 unittest.expect(o[1], unittest.equals('foo')); | 147 unittest.expect(o[1], unittest.equals('foo')); |
| 148 } | 148 } |
| 149 | 149 |
| 150 buildUnnamed1622() { | 150 buildUnnamed1689() { |
| 151 var o = new core.Map<core.String, core.List<core.String>>(); | 151 var o = new core.Map<core.String, core.List<core.String>>(); |
| 152 o["x"] = buildUnnamed1621(); | 152 o["x"] = buildUnnamed1688(); |
| 153 o["y"] = buildUnnamed1621(); | 153 o["y"] = buildUnnamed1688(); |
| 154 return o; | 154 return o; |
| 155 } | 155 } |
| 156 | 156 |
| 157 checkUnnamed1622(core.Map<core.String, core.List<core.String>> o) { | 157 checkUnnamed1689(core.Map<core.String, core.List<core.String>> o) { |
| 158 unittest.expect(o, unittest.hasLength(2)); | 158 unittest.expect(o, unittest.hasLength(2)); |
| 159 checkUnnamed1621(o["x"]); | 159 checkUnnamed1688(o["x"]); |
| 160 checkUnnamed1621(o["y"]); | 160 checkUnnamed1688(o["y"]); |
| 161 } | 161 } |
| 162 | 162 |
| 163 core.int buildCounterAnnotationSet = 0; | 163 core.int buildCounterAnnotationSet = 0; |
| 164 buildAnnotationSet() { | 164 buildAnnotationSet() { |
| 165 var o = new api.AnnotationSet(); | 165 var o = new api.AnnotationSet(); |
| 166 buildCounterAnnotationSet++; | 166 buildCounterAnnotationSet++; |
| 167 if (buildCounterAnnotationSet < 3) { | 167 if (buildCounterAnnotationSet < 3) { |
| 168 o.datasetId = "foo"; | 168 o.datasetId = "foo"; |
| 169 o.id = "foo"; | 169 o.id = "foo"; |
| 170 o.info = buildUnnamed1622(); | 170 o.info = buildUnnamed1689(); |
| 171 o.name = "foo"; | 171 o.name = "foo"; |
| 172 o.referenceSetId = "foo"; | 172 o.referenceSetId = "foo"; |
| 173 o.sourceUri = "foo"; | 173 o.sourceUri = "foo"; |
| 174 o.type = "foo"; | 174 o.type = "foo"; |
| 175 } | 175 } |
| 176 buildCounterAnnotationSet--; | 176 buildCounterAnnotationSet--; |
| 177 return o; | 177 return o; |
| 178 } | 178 } |
| 179 | 179 |
| 180 checkAnnotationSet(api.AnnotationSet o) { | 180 checkAnnotationSet(api.AnnotationSet o) { |
| 181 buildCounterAnnotationSet++; | 181 buildCounterAnnotationSet++; |
| 182 if (buildCounterAnnotationSet < 3) { | 182 if (buildCounterAnnotationSet < 3) { |
| 183 unittest.expect(o.datasetId, unittest.equals('foo')); | 183 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 184 unittest.expect(o.id, unittest.equals('foo')); | 184 unittest.expect(o.id, unittest.equals('foo')); |
| 185 checkUnnamed1622(o.info); | 185 checkUnnamed1689(o.info); |
| 186 unittest.expect(o.name, unittest.equals('foo')); | 186 unittest.expect(o.name, unittest.equals('foo')); |
| 187 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 187 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 188 unittest.expect(o.sourceUri, unittest.equals('foo')); | 188 unittest.expect(o.sourceUri, unittest.equals('foo')); |
| 189 unittest.expect(o.type, unittest.equals('foo')); | 189 unittest.expect(o.type, unittest.equals('foo')); |
| 190 } | 190 } |
| 191 buildCounterAnnotationSet--; | 191 buildCounterAnnotationSet--; |
| 192 } | 192 } |
| 193 | 193 |
| 194 buildUnnamed1623() { | 194 buildUnnamed1690() { |
| 195 var o = new core.List<core.int>(); | 195 var o = new core.List<core.int>(); |
| 196 o.add(42); | 196 o.add(42); |
| 197 o.add(42); | 197 o.add(42); |
| 198 return o; | 198 return o; |
| 199 } | 199 } |
| 200 | 200 |
| 201 checkUnnamed1623(core.List<core.int> o) { | 201 checkUnnamed1690(core.List<core.int> o) { |
| 202 unittest.expect(o, unittest.hasLength(2)); | 202 unittest.expect(o, unittest.hasLength(2)); |
| 203 unittest.expect(o[0], unittest.equals(42)); | 203 unittest.expect(o[0], unittest.equals(42)); |
| 204 unittest.expect(o[1], unittest.equals(42)); | 204 unittest.expect(o[1], unittest.equals(42)); |
| 205 } | 205 } |
| 206 | 206 |
| 207 buildUnnamed1624() { | 207 buildUnnamed1691() { |
| 208 var o = new core.List<core.double>(); | 208 var o = new core.List<core.double>(); |
| 209 o.add(42.0); | 209 o.add(42.0); |
| 210 o.add(42.0); | 210 o.add(42.0); |
| 211 return o; | 211 return o; |
| 212 } | 212 } |
| 213 | 213 |
| 214 checkUnnamed1624(core.List<core.double> o) { | 214 checkUnnamed1691(core.List<core.double> o) { |
| 215 unittest.expect(o, unittest.hasLength(2)); | 215 unittest.expect(o, unittest.hasLength(2)); |
| 216 unittest.expect(o[0], unittest.equals(42.0)); | 216 unittest.expect(o[0], unittest.equals(42.0)); |
| 217 unittest.expect(o[1], unittest.equals(42.0)); | 217 unittest.expect(o[1], unittest.equals(42.0)); |
| 218 } | 218 } |
| 219 | 219 |
| 220 buildUnnamed1625() { | 220 buildUnnamed1692() { |
| 221 var o = new core.List<core.String>(); | 221 var o = new core.List<core.String>(); |
| 222 o.add("foo"); | 222 o.add("foo"); |
| 223 o.add("foo"); | 223 o.add("foo"); |
| 224 return o; | 224 return o; |
| 225 } | 225 } |
| 226 | 226 |
| 227 checkUnnamed1625(core.List<core.String> o) { | 227 checkUnnamed1692(core.List<core.String> o) { |
| 228 unittest.expect(o, unittest.hasLength(2)); | 228 unittest.expect(o, unittest.hasLength(2)); |
| 229 unittest.expect(o[0], unittest.equals('foo')); | 229 unittest.expect(o[0], unittest.equals('foo')); |
| 230 unittest.expect(o[1], unittest.equals('foo')); | 230 unittest.expect(o[1], unittest.equals('foo')); |
| 231 } | 231 } |
| 232 | 232 |
| 233 buildUnnamed1626() { | 233 buildUnnamed1693() { |
| 234 var o = new core.Map<core.String, core.List<core.String>>(); | 234 var o = new core.Map<core.String, core.List<core.String>>(); |
| 235 o["x"] = buildUnnamed1625(); | 235 o["x"] = buildUnnamed1692(); |
| 236 o["y"] = buildUnnamed1625(); | 236 o["y"] = buildUnnamed1692(); |
| 237 return o; | 237 return o; |
| 238 } | 238 } |
| 239 | 239 |
| 240 checkUnnamed1626(core.Map<core.String, core.List<core.String>> o) { | 240 checkUnnamed1693(core.Map<core.String, core.List<core.String>> o) { |
| 241 unittest.expect(o, unittest.hasLength(2)); | 241 unittest.expect(o, unittest.hasLength(2)); |
| 242 checkUnnamed1625(o["x"]); | 242 checkUnnamed1692(o["x"]); |
| 243 checkUnnamed1625(o["y"]); | 243 checkUnnamed1692(o["y"]); |
| 244 } | 244 } |
| 245 | 245 |
| 246 core.int buildCounterCall = 0; | 246 core.int buildCounterCall = 0; |
| 247 buildCall() { | 247 buildCall() { |
| 248 var o = new api.Call(); | 248 var o = new api.Call(); |
| 249 buildCounterCall++; | 249 buildCounterCall++; |
| 250 if (buildCounterCall < 3) { | 250 if (buildCounterCall < 3) { |
| 251 o.callSetId = "foo"; | 251 o.callSetId = "foo"; |
| 252 o.callSetName = "foo"; | 252 o.callSetName = "foo"; |
| 253 o.genotype = buildUnnamed1623(); | 253 o.genotype = buildUnnamed1690(); |
| 254 o.genotypeLikelihood = buildUnnamed1624(); | 254 o.genotypeLikelihood = buildUnnamed1691(); |
| 255 o.info = buildUnnamed1626(); | 255 o.info = buildUnnamed1693(); |
| 256 o.phaseset = "foo"; | 256 o.phaseset = "foo"; |
| 257 } | 257 } |
| 258 buildCounterCall--; | 258 buildCounterCall--; |
| 259 return o; | 259 return o; |
| 260 } | 260 } |
| 261 | 261 |
| 262 checkCall(api.Call o) { | 262 checkCall(api.Call o) { |
| 263 buildCounterCall++; | 263 buildCounterCall++; |
| 264 if (buildCounterCall < 3) { | 264 if (buildCounterCall < 3) { |
| 265 unittest.expect(o.callSetId, unittest.equals('foo')); | 265 unittest.expect(o.callSetId, unittest.equals('foo')); |
| 266 unittest.expect(o.callSetName, unittest.equals('foo')); | 266 unittest.expect(o.callSetName, unittest.equals('foo')); |
| 267 checkUnnamed1623(o.genotype); | 267 checkUnnamed1690(o.genotype); |
| 268 checkUnnamed1624(o.genotypeLikelihood); | 268 checkUnnamed1691(o.genotypeLikelihood); |
| 269 checkUnnamed1626(o.info); | 269 checkUnnamed1693(o.info); |
| 270 unittest.expect(o.phaseset, unittest.equals('foo')); | 270 unittest.expect(o.phaseset, unittest.equals('foo')); |
| 271 } | 271 } |
| 272 buildCounterCall--; | 272 buildCounterCall--; |
| 273 } | 273 } |
| 274 | 274 |
| 275 buildUnnamed1627() { | 275 buildUnnamed1694() { |
| 276 var o = new core.List<core.String>(); | 276 var o = new core.List<core.String>(); |
| 277 o.add("foo"); | 277 o.add("foo"); |
| 278 o.add("foo"); | 278 o.add("foo"); |
| 279 return o; | 279 return o; |
| 280 } | 280 } |
| 281 | 281 |
| 282 checkUnnamed1627(core.List<core.String> o) { | 282 checkUnnamed1694(core.List<core.String> o) { |
| 283 unittest.expect(o, unittest.hasLength(2)); | 283 unittest.expect(o, unittest.hasLength(2)); |
| 284 unittest.expect(o[0], unittest.equals('foo')); | 284 unittest.expect(o[0], unittest.equals('foo')); |
| 285 unittest.expect(o[1], unittest.equals('foo')); | 285 unittest.expect(o[1], unittest.equals('foo')); |
| 286 } | 286 } |
| 287 | 287 |
| 288 core.int buildCounterCallReadGroupSetsRequest = 0; | 288 core.int buildCounterCallReadGroupSetsRequest = 0; |
| 289 buildCallReadGroupSetsRequest() { | 289 buildCallReadGroupSetsRequest() { |
| 290 var o = new api.CallReadGroupSetsRequest(); | 290 var o = new api.CallReadGroupSetsRequest(); |
| 291 buildCounterCallReadGroupSetsRequest++; | 291 buildCounterCallReadGroupSetsRequest++; |
| 292 if (buildCounterCallReadGroupSetsRequest < 3) { | 292 if (buildCounterCallReadGroupSetsRequest < 3) { |
| 293 o.datasetId = "foo"; | 293 o.datasetId = "foo"; |
| 294 o.readGroupSetId = "foo"; | 294 o.readGroupSetId = "foo"; |
| 295 o.sourceUris = buildUnnamed1627(); | 295 o.sourceUris = buildUnnamed1694(); |
| 296 } | 296 } |
| 297 buildCounterCallReadGroupSetsRequest--; | 297 buildCounterCallReadGroupSetsRequest--; |
| 298 return o; | 298 return o; |
| 299 } | 299 } |
| 300 | 300 |
| 301 checkCallReadGroupSetsRequest(api.CallReadGroupSetsRequest o) { | 301 checkCallReadGroupSetsRequest(api.CallReadGroupSetsRequest o) { |
| 302 buildCounterCallReadGroupSetsRequest++; | 302 buildCounterCallReadGroupSetsRequest++; |
| 303 if (buildCounterCallReadGroupSetsRequest < 3) { | 303 if (buildCounterCallReadGroupSetsRequest < 3) { |
| 304 unittest.expect(o.datasetId, unittest.equals('foo')); | 304 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 305 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 305 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
| 306 checkUnnamed1627(o.sourceUris); | 306 checkUnnamed1694(o.sourceUris); |
| 307 } | 307 } |
| 308 buildCounterCallReadGroupSetsRequest--; | 308 buildCounterCallReadGroupSetsRequest--; |
| 309 } | 309 } |
| 310 | 310 |
| 311 core.int buildCounterCallReadGroupSetsResponse = 0; | 311 core.int buildCounterCallReadGroupSetsResponse = 0; |
| 312 buildCallReadGroupSetsResponse() { | 312 buildCallReadGroupSetsResponse() { |
| 313 var o = new api.CallReadGroupSetsResponse(); | 313 var o = new api.CallReadGroupSetsResponse(); |
| 314 buildCounterCallReadGroupSetsResponse++; | 314 buildCounterCallReadGroupSetsResponse++; |
| 315 if (buildCounterCallReadGroupSetsResponse < 3) { | 315 if (buildCounterCallReadGroupSetsResponse < 3) { |
| 316 o.jobId = "foo"; | 316 o.jobId = "foo"; |
| 317 } | 317 } |
| 318 buildCounterCallReadGroupSetsResponse--; | 318 buildCounterCallReadGroupSetsResponse--; |
| 319 return o; | 319 return o; |
| 320 } | 320 } |
| 321 | 321 |
| 322 checkCallReadGroupSetsResponse(api.CallReadGroupSetsResponse o) { | 322 checkCallReadGroupSetsResponse(api.CallReadGroupSetsResponse o) { |
| 323 buildCounterCallReadGroupSetsResponse++; | 323 buildCounterCallReadGroupSetsResponse++; |
| 324 if (buildCounterCallReadGroupSetsResponse < 3) { | 324 if (buildCounterCallReadGroupSetsResponse < 3) { |
| 325 unittest.expect(o.jobId, unittest.equals('foo')); | 325 unittest.expect(o.jobId, unittest.equals('foo')); |
| 326 } | 326 } |
| 327 buildCounterCallReadGroupSetsResponse--; | 327 buildCounterCallReadGroupSetsResponse--; |
| 328 } | 328 } |
| 329 | 329 |
| 330 buildUnnamed1628() { | 330 buildUnnamed1695() { |
| 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 checkUnnamed1628(core.List<core.String> o) { | 337 checkUnnamed1695(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 buildUnnamed1629() { | 343 buildUnnamed1696() { |
| 344 var o = new core.Map<core.String, core.List<core.String>>(); | 344 var o = new core.Map<core.String, core.List<core.String>>(); |
| 345 o["x"] = buildUnnamed1628(); | 345 o["x"] = buildUnnamed1695(); |
| 346 o["y"] = buildUnnamed1628(); | 346 o["y"] = buildUnnamed1695(); |
| 347 return o; | 347 return o; |
| 348 } | 348 } |
| 349 | 349 |
| 350 checkUnnamed1629(core.Map<core.String, core.List<core.String>> o) { | 350 checkUnnamed1696(core.Map<core.String, core.List<core.String>> o) { |
| 351 unittest.expect(o, unittest.hasLength(2)); | 351 unittest.expect(o, unittest.hasLength(2)); |
| 352 checkUnnamed1628(o["x"]); | 352 checkUnnamed1695(o["x"]); |
| 353 checkUnnamed1628(o["y"]); | 353 checkUnnamed1695(o["y"]); |
| 354 } | 354 } |
| 355 | 355 |
| 356 buildUnnamed1630() { | 356 buildUnnamed1697() { |
| 357 var o = new core.List<core.String>(); | 357 var o = new core.List<core.String>(); |
| 358 o.add("foo"); | 358 o.add("foo"); |
| 359 o.add("foo"); | 359 o.add("foo"); |
| 360 return o; | 360 return o; |
| 361 } | 361 } |
| 362 | 362 |
| 363 checkUnnamed1630(core.List<core.String> o) { | 363 checkUnnamed1697(core.List<core.String> o) { |
| 364 unittest.expect(o, unittest.hasLength(2)); | 364 unittest.expect(o, unittest.hasLength(2)); |
| 365 unittest.expect(o[0], unittest.equals('foo')); | 365 unittest.expect(o[0], unittest.equals('foo')); |
| 366 unittest.expect(o[1], unittest.equals('foo')); | 366 unittest.expect(o[1], unittest.equals('foo')); |
| 367 } | 367 } |
| 368 | 368 |
| 369 core.int buildCounterCallSet = 0; | 369 core.int buildCounterCallSet = 0; |
| 370 buildCallSet() { | 370 buildCallSet() { |
| 371 var o = new api.CallSet(); | 371 var o = new api.CallSet(); |
| 372 buildCounterCallSet++; | 372 buildCounterCallSet++; |
| 373 if (buildCounterCallSet < 3) { | 373 if (buildCounterCallSet < 3) { |
| 374 o.created = "foo"; | 374 o.created = "foo"; |
| 375 o.id = "foo"; | 375 o.id = "foo"; |
| 376 o.info = buildUnnamed1629(); | 376 o.info = buildUnnamed1696(); |
| 377 o.name = "foo"; | 377 o.name = "foo"; |
| 378 o.sampleId = "foo"; | 378 o.sampleId = "foo"; |
| 379 o.variantSetIds = buildUnnamed1630(); | 379 o.variantSetIds = buildUnnamed1697(); |
| 380 } | 380 } |
| 381 buildCounterCallSet--; | 381 buildCounterCallSet--; |
| 382 return o; | 382 return o; |
| 383 } | 383 } |
| 384 | 384 |
| 385 checkCallSet(api.CallSet o) { | 385 checkCallSet(api.CallSet o) { |
| 386 buildCounterCallSet++; | 386 buildCounterCallSet++; |
| 387 if (buildCounterCallSet < 3) { | 387 if (buildCounterCallSet < 3) { |
| 388 unittest.expect(o.created, unittest.equals('foo')); | 388 unittest.expect(o.created, unittest.equals('foo')); |
| 389 unittest.expect(o.id, unittest.equals('foo')); | 389 unittest.expect(o.id, unittest.equals('foo')); |
| 390 checkUnnamed1629(o.info); | 390 checkUnnamed1696(o.info); |
| 391 unittest.expect(o.name, unittest.equals('foo')); | 391 unittest.expect(o.name, unittest.equals('foo')); |
| 392 unittest.expect(o.sampleId, unittest.equals('foo')); | 392 unittest.expect(o.sampleId, unittest.equals('foo')); |
| 393 checkUnnamed1630(o.variantSetIds); | 393 checkUnnamed1697(o.variantSetIds); |
| 394 } | 394 } |
| 395 buildCounterCallSet--; | 395 buildCounterCallSet--; |
| 396 } | 396 } |
| 397 | 397 |
| 398 core.int buildCounterCigarUnit = 0; | 398 core.int buildCounterCigarUnit = 0; |
| 399 buildCigarUnit() { | 399 buildCigarUnit() { |
| 400 var o = new api.CigarUnit(); | 400 var o = new api.CigarUnit(); |
| 401 buildCounterCigarUnit++; | 401 buildCounterCigarUnit++; |
| 402 if (buildCounterCigarUnit < 3) { | 402 if (buildCounterCigarUnit < 3) { |
| 403 o.operation = "foo"; | 403 o.operation = "foo"; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 buildCounterDataset++; | 457 buildCounterDataset++; |
| 458 if (buildCounterDataset < 3) { | 458 if (buildCounterDataset < 3) { |
| 459 unittest.expect(o.id, unittest.equals('foo')); | 459 unittest.expect(o.id, unittest.equals('foo')); |
| 460 unittest.expect(o.isPublic, unittest.isTrue); | 460 unittest.expect(o.isPublic, unittest.isTrue); |
| 461 unittest.expect(o.name, unittest.equals('foo')); | 461 unittest.expect(o.name, unittest.equals('foo')); |
| 462 unittest.expect(o.projectNumber, unittest.equals('foo')); | 462 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 463 } | 463 } |
| 464 buildCounterDataset--; | 464 buildCounterDataset--; |
| 465 } | 465 } |
| 466 | 466 |
| 467 buildUnnamed1631() { | 467 buildUnnamed1698() { |
| 468 var o = new core.List<core.String>(); | 468 var o = new core.List<core.String>(); |
| 469 o.add("foo"); | 469 o.add("foo"); |
| 470 o.add("foo"); | 470 o.add("foo"); |
| 471 return o; | 471 return o; |
| 472 } | 472 } |
| 473 | 473 |
| 474 checkUnnamed1631(core.List<core.String> o) { | 474 checkUnnamed1698(core.List<core.String> o) { |
| 475 unittest.expect(o, unittest.hasLength(2)); | 475 unittest.expect(o, unittest.hasLength(2)); |
| 476 unittest.expect(o[0], unittest.equals('foo')); | 476 unittest.expect(o[0], unittest.equals('foo')); |
| 477 unittest.expect(o[1], unittest.equals('foo')); | 477 unittest.expect(o[1], unittest.equals('foo')); |
| 478 } | 478 } |
| 479 | 479 |
| 480 buildUnnamed1632() { | 480 buildUnnamed1699() { |
| 481 var o = new core.List<core.String>(); | 481 var o = new core.List<core.String>(); |
| 482 o.add("foo"); | 482 o.add("foo"); |
| 483 o.add("foo"); | 483 o.add("foo"); |
| 484 return o; | 484 return o; |
| 485 } | 485 } |
| 486 | 486 |
| 487 checkUnnamed1632(core.List<core.String> o) { | 487 checkUnnamed1699(core.List<core.String> o) { |
| 488 unittest.expect(o, unittest.hasLength(2)); | 488 unittest.expect(o, unittest.hasLength(2)); |
| 489 unittest.expect(o[0], unittest.equals('foo')); | 489 unittest.expect(o[0], unittest.equals('foo')); |
| 490 unittest.expect(o[1], unittest.equals('foo')); | 490 unittest.expect(o[1], unittest.equals('foo')); |
| 491 } | 491 } |
| 492 | 492 |
| 493 core.int buildCounterExperimentalCreateJobRequest = 0; | 493 core.int buildCounterExperimentalCreateJobRequest = 0; |
| 494 buildExperimentalCreateJobRequest() { | 494 buildExperimentalCreateJobRequest() { |
| 495 var o = new api.ExperimentalCreateJobRequest(); | 495 var o = new api.ExperimentalCreateJobRequest(); |
| 496 buildCounterExperimentalCreateJobRequest++; | 496 buildCounterExperimentalCreateJobRequest++; |
| 497 if (buildCounterExperimentalCreateJobRequest < 3) { | 497 if (buildCounterExperimentalCreateJobRequest < 3) { |
| 498 o.align = true; | 498 o.align = true; |
| 499 o.callVariants = true; | 499 o.callVariants = true; |
| 500 o.gcsOutputPath = "foo"; | 500 o.gcsOutputPath = "foo"; |
| 501 o.pairedSourceUris = buildUnnamed1631(); | 501 o.pairedSourceUris = buildUnnamed1698(); |
| 502 o.projectNumber = "foo"; | 502 o.projectNumber = "foo"; |
| 503 o.sourceUris = buildUnnamed1632(); | 503 o.sourceUris = buildUnnamed1699(); |
| 504 } | 504 } |
| 505 buildCounterExperimentalCreateJobRequest--; | 505 buildCounterExperimentalCreateJobRequest--; |
| 506 return o; | 506 return o; |
| 507 } | 507 } |
| 508 | 508 |
| 509 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { | 509 checkExperimentalCreateJobRequest(api.ExperimentalCreateJobRequest o) { |
| 510 buildCounterExperimentalCreateJobRequest++; | 510 buildCounterExperimentalCreateJobRequest++; |
| 511 if (buildCounterExperimentalCreateJobRequest < 3) { | 511 if (buildCounterExperimentalCreateJobRequest < 3) { |
| 512 unittest.expect(o.align, unittest.isTrue); | 512 unittest.expect(o.align, unittest.isTrue); |
| 513 unittest.expect(o.callVariants, unittest.isTrue); | 513 unittest.expect(o.callVariants, unittest.isTrue); |
| 514 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); | 514 unittest.expect(o.gcsOutputPath, unittest.equals('foo')); |
| 515 checkUnnamed1631(o.pairedSourceUris); | 515 checkUnnamed1698(o.pairedSourceUris); |
| 516 unittest.expect(o.projectNumber, unittest.equals('foo')); | 516 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 517 checkUnnamed1632(o.sourceUris); | 517 checkUnnamed1699(o.sourceUris); |
| 518 } | 518 } |
| 519 buildCounterExperimentalCreateJobRequest--; | 519 buildCounterExperimentalCreateJobRequest--; |
| 520 } | 520 } |
| 521 | 521 |
| 522 core.int buildCounterExperimentalCreateJobResponse = 0; | 522 core.int buildCounterExperimentalCreateJobResponse = 0; |
| 523 buildExperimentalCreateJobResponse() { | 523 buildExperimentalCreateJobResponse() { |
| 524 var o = new api.ExperimentalCreateJobResponse(); | 524 var o = new api.ExperimentalCreateJobResponse(); |
| 525 buildCounterExperimentalCreateJobResponse++; | 525 buildCounterExperimentalCreateJobResponse++; |
| 526 if (buildCounterExperimentalCreateJobResponse < 3) { | 526 if (buildCounterExperimentalCreateJobResponse < 3) { |
| 527 o.jobId = "foo"; | 527 o.jobId = "foo"; |
| 528 } | 528 } |
| 529 buildCounterExperimentalCreateJobResponse--; | 529 buildCounterExperimentalCreateJobResponse--; |
| 530 return o; | 530 return o; |
| 531 } | 531 } |
| 532 | 532 |
| 533 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { | 533 checkExperimentalCreateJobResponse(api.ExperimentalCreateJobResponse o) { |
| 534 buildCounterExperimentalCreateJobResponse++; | 534 buildCounterExperimentalCreateJobResponse++; |
| 535 if (buildCounterExperimentalCreateJobResponse < 3) { | 535 if (buildCounterExperimentalCreateJobResponse < 3) { |
| 536 unittest.expect(o.jobId, unittest.equals('foo')); | 536 unittest.expect(o.jobId, unittest.equals('foo')); |
| 537 } | 537 } |
| 538 buildCounterExperimentalCreateJobResponse--; | 538 buildCounterExperimentalCreateJobResponse--; |
| 539 } | 539 } |
| 540 | 540 |
| 541 buildUnnamed1633() { | 541 buildUnnamed1700() { |
| 542 var o = new core.List<core.String>(); | 542 var o = new core.List<core.String>(); |
| 543 o.add("foo"); | 543 o.add("foo"); |
| 544 o.add("foo"); | 544 o.add("foo"); |
| 545 return o; | 545 return o; |
| 546 } | 546 } |
| 547 | 547 |
| 548 checkUnnamed1633(core.List<core.String> o) { | 548 checkUnnamed1700(core.List<core.String> o) { |
| 549 unittest.expect(o, unittest.hasLength(2)); | 549 unittest.expect(o, unittest.hasLength(2)); |
| 550 unittest.expect(o[0], unittest.equals('foo')); | 550 unittest.expect(o[0], unittest.equals('foo')); |
| 551 unittest.expect(o[1], unittest.equals('foo')); | 551 unittest.expect(o[1], unittest.equals('foo')); |
| 552 } | 552 } |
| 553 | 553 |
| 554 buildUnnamed1634() { | 554 buildUnnamed1701() { |
| 555 var o = new core.List<core.String>(); | 555 var o = new core.List<core.String>(); |
| 556 o.add("foo"); | 556 o.add("foo"); |
| 557 o.add("foo"); | 557 o.add("foo"); |
| 558 return o; | 558 return o; |
| 559 } | 559 } |
| 560 | 560 |
| 561 checkUnnamed1634(core.List<core.String> o) { | 561 checkUnnamed1701(core.List<core.String> o) { |
| 562 unittest.expect(o, unittest.hasLength(2)); | 562 unittest.expect(o, unittest.hasLength(2)); |
| 563 unittest.expect(o[0], unittest.equals('foo')); | 563 unittest.expect(o[0], unittest.equals('foo')); |
| 564 unittest.expect(o[1], unittest.equals('foo')); | 564 unittest.expect(o[1], unittest.equals('foo')); |
| 565 } | 565 } |
| 566 | 566 |
| 567 core.int buildCounterExportReadGroupSetsRequest = 0; | 567 core.int buildCounterExportReadGroupSetsRequest = 0; |
| 568 buildExportReadGroupSetsRequest() { | 568 buildExportReadGroupSetsRequest() { |
| 569 var o = new api.ExportReadGroupSetsRequest(); | 569 var o = new api.ExportReadGroupSetsRequest(); |
| 570 buildCounterExportReadGroupSetsRequest++; | 570 buildCounterExportReadGroupSetsRequest++; |
| 571 if (buildCounterExportReadGroupSetsRequest < 3) { | 571 if (buildCounterExportReadGroupSetsRequest < 3) { |
| 572 o.exportUri = "foo"; | 572 o.exportUri = "foo"; |
| 573 o.projectNumber = "foo"; | 573 o.projectNumber = "foo"; |
| 574 o.readGroupSetIds = buildUnnamed1633(); | 574 o.readGroupSetIds = buildUnnamed1700(); |
| 575 o.referenceNames = buildUnnamed1634(); | 575 o.referenceNames = buildUnnamed1701(); |
| 576 } | 576 } |
| 577 buildCounterExportReadGroupSetsRequest--; | 577 buildCounterExportReadGroupSetsRequest--; |
| 578 return o; | 578 return o; |
| 579 } | 579 } |
| 580 | 580 |
| 581 checkExportReadGroupSetsRequest(api.ExportReadGroupSetsRequest o) { | 581 checkExportReadGroupSetsRequest(api.ExportReadGroupSetsRequest o) { |
| 582 buildCounterExportReadGroupSetsRequest++; | 582 buildCounterExportReadGroupSetsRequest++; |
| 583 if (buildCounterExportReadGroupSetsRequest < 3) { | 583 if (buildCounterExportReadGroupSetsRequest < 3) { |
| 584 unittest.expect(o.exportUri, unittest.equals('foo')); | 584 unittest.expect(o.exportUri, unittest.equals('foo')); |
| 585 unittest.expect(o.projectNumber, unittest.equals('foo')); | 585 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 586 checkUnnamed1633(o.readGroupSetIds); | 586 checkUnnamed1700(o.readGroupSetIds); |
| 587 checkUnnamed1634(o.referenceNames); | 587 checkUnnamed1701(o.referenceNames); |
| 588 } | 588 } |
| 589 buildCounterExportReadGroupSetsRequest--; | 589 buildCounterExportReadGroupSetsRequest--; |
| 590 } | 590 } |
| 591 | 591 |
| 592 core.int buildCounterExportReadGroupSetsResponse = 0; | 592 core.int buildCounterExportReadGroupSetsResponse = 0; |
| 593 buildExportReadGroupSetsResponse() { | 593 buildExportReadGroupSetsResponse() { |
| 594 var o = new api.ExportReadGroupSetsResponse(); | 594 var o = new api.ExportReadGroupSetsResponse(); |
| 595 buildCounterExportReadGroupSetsResponse++; | 595 buildCounterExportReadGroupSetsResponse++; |
| 596 if (buildCounterExportReadGroupSetsResponse < 3) { | 596 if (buildCounterExportReadGroupSetsResponse < 3) { |
| 597 o.jobId = "foo"; | 597 o.jobId = "foo"; |
| 598 } | 598 } |
| 599 buildCounterExportReadGroupSetsResponse--; | 599 buildCounterExportReadGroupSetsResponse--; |
| 600 return o; | 600 return o; |
| 601 } | 601 } |
| 602 | 602 |
| 603 checkExportReadGroupSetsResponse(api.ExportReadGroupSetsResponse o) { | 603 checkExportReadGroupSetsResponse(api.ExportReadGroupSetsResponse o) { |
| 604 buildCounterExportReadGroupSetsResponse++; | 604 buildCounterExportReadGroupSetsResponse++; |
| 605 if (buildCounterExportReadGroupSetsResponse < 3) { | 605 if (buildCounterExportReadGroupSetsResponse < 3) { |
| 606 unittest.expect(o.jobId, unittest.equals('foo')); | 606 unittest.expect(o.jobId, unittest.equals('foo')); |
| 607 } | 607 } |
| 608 buildCounterExportReadGroupSetsResponse--; | 608 buildCounterExportReadGroupSetsResponse--; |
| 609 } | 609 } |
| 610 | 610 |
| 611 buildUnnamed1635() { | 611 buildUnnamed1702() { |
| 612 var o = new core.List<core.String>(); | 612 var o = new core.List<core.String>(); |
| 613 o.add("foo"); | 613 o.add("foo"); |
| 614 o.add("foo"); | 614 o.add("foo"); |
| 615 return o; | 615 return o; |
| 616 } | 616 } |
| 617 | 617 |
| 618 checkUnnamed1635(core.List<core.String> o) { | 618 checkUnnamed1702(core.List<core.String> o) { |
| 619 unittest.expect(o, unittest.hasLength(2)); | 619 unittest.expect(o, unittest.hasLength(2)); |
| 620 unittest.expect(o[0], unittest.equals('foo')); | 620 unittest.expect(o[0], unittest.equals('foo')); |
| 621 unittest.expect(o[1], unittest.equals('foo')); | 621 unittest.expect(o[1], unittest.equals('foo')); |
| 622 } | 622 } |
| 623 | 623 |
| 624 core.int buildCounterExportVariantSetRequest = 0; | 624 core.int buildCounterExportVariantSetRequest = 0; |
| 625 buildExportVariantSetRequest() { | 625 buildExportVariantSetRequest() { |
| 626 var o = new api.ExportVariantSetRequest(); | 626 var o = new api.ExportVariantSetRequest(); |
| 627 buildCounterExportVariantSetRequest++; | 627 buildCounterExportVariantSetRequest++; |
| 628 if (buildCounterExportVariantSetRequest < 3) { | 628 if (buildCounterExportVariantSetRequest < 3) { |
| 629 o.bigqueryDataset = "foo"; | 629 o.bigqueryDataset = "foo"; |
| 630 o.bigqueryTable = "foo"; | 630 o.bigqueryTable = "foo"; |
| 631 o.callSetIds = buildUnnamed1635(); | 631 o.callSetIds = buildUnnamed1702(); |
| 632 o.format = "foo"; | 632 o.format = "foo"; |
| 633 o.projectNumber = "foo"; | 633 o.projectNumber = "foo"; |
| 634 } | 634 } |
| 635 buildCounterExportVariantSetRequest--; | 635 buildCounterExportVariantSetRequest--; |
| 636 return o; | 636 return o; |
| 637 } | 637 } |
| 638 | 638 |
| 639 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { | 639 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { |
| 640 buildCounterExportVariantSetRequest++; | 640 buildCounterExportVariantSetRequest++; |
| 641 if (buildCounterExportVariantSetRequest < 3) { | 641 if (buildCounterExportVariantSetRequest < 3) { |
| 642 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); | 642 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); |
| 643 unittest.expect(o.bigqueryTable, unittest.equals('foo')); | 643 unittest.expect(o.bigqueryTable, unittest.equals('foo')); |
| 644 checkUnnamed1635(o.callSetIds); | 644 checkUnnamed1702(o.callSetIds); |
| 645 unittest.expect(o.format, unittest.equals('foo')); | 645 unittest.expect(o.format, unittest.equals('foo')); |
| 646 unittest.expect(o.projectNumber, unittest.equals('foo')); | 646 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 647 } | 647 } |
| 648 buildCounterExportVariantSetRequest--; | 648 buildCounterExportVariantSetRequest--; |
| 649 } | 649 } |
| 650 | 650 |
| 651 core.int buildCounterExportVariantSetResponse = 0; | 651 core.int buildCounterExportVariantSetResponse = 0; |
| 652 buildExportVariantSetResponse() { | 652 buildExportVariantSetResponse() { |
| 653 var o = new api.ExportVariantSetResponse(); | 653 var o = new api.ExportVariantSetResponse(); |
| 654 buildCounterExportVariantSetResponse++; | 654 buildCounterExportVariantSetResponse++; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 if (buildCounterFastqMetadata < 3) { | 708 if (buildCounterFastqMetadata < 3) { |
| 709 unittest.expect(o.libraryName, unittest.equals('foo')); | 709 unittest.expect(o.libraryName, unittest.equals('foo')); |
| 710 unittest.expect(o.platformName, unittest.equals('foo')); | 710 unittest.expect(o.platformName, unittest.equals('foo')); |
| 711 unittest.expect(o.platformUnit, unittest.equals('foo')); | 711 unittest.expect(o.platformUnit, unittest.equals('foo')); |
| 712 unittest.expect(o.readGroupName, unittest.equals('foo')); | 712 unittest.expect(o.readGroupName, unittest.equals('foo')); |
| 713 unittest.expect(o.sampleName, unittest.equals('foo')); | 713 unittest.expect(o.sampleName, unittest.equals('foo')); |
| 714 } | 714 } |
| 715 buildCounterFastqMetadata--; | 715 buildCounterFastqMetadata--; |
| 716 } | 716 } |
| 717 | 717 |
| 718 buildUnnamed1636() { | 718 buildUnnamed1703() { |
| 719 var o = new core.List<core.String>(); | 719 var o = new core.List<core.String>(); |
| 720 o.add("foo"); | 720 o.add("foo"); |
| 721 o.add("foo"); | 721 o.add("foo"); |
| 722 return o; | 722 return o; |
| 723 } | 723 } |
| 724 | 724 |
| 725 checkUnnamed1636(core.List<core.String> o) { | 725 checkUnnamed1703(core.List<core.String> o) { |
| 726 unittest.expect(o, unittest.hasLength(2)); | 726 unittest.expect(o, unittest.hasLength(2)); |
| 727 unittest.expect(o[0], unittest.equals('foo')); | 727 unittest.expect(o[0], unittest.equals('foo')); |
| 728 unittest.expect(o[1], unittest.equals('foo')); | 728 unittest.expect(o[1], unittest.equals('foo')); |
| 729 } | 729 } |
| 730 | 730 |
| 731 core.int buildCounterImportReadGroupSetsRequest = 0; | 731 core.int buildCounterImportReadGroupSetsRequest = 0; |
| 732 buildImportReadGroupSetsRequest() { | 732 buildImportReadGroupSetsRequest() { |
| 733 var o = new api.ImportReadGroupSetsRequest(); | 733 var o = new api.ImportReadGroupSetsRequest(); |
| 734 buildCounterImportReadGroupSetsRequest++; | 734 buildCounterImportReadGroupSetsRequest++; |
| 735 if (buildCounterImportReadGroupSetsRequest < 3) { | 735 if (buildCounterImportReadGroupSetsRequest < 3) { |
| 736 o.datasetId = "foo"; | 736 o.datasetId = "foo"; |
| 737 o.partitionStrategy = "foo"; | 737 o.partitionStrategy = "foo"; |
| 738 o.referenceSetId = "foo"; | 738 o.referenceSetId = "foo"; |
| 739 o.sourceUris = buildUnnamed1636(); | 739 o.sourceUris = buildUnnamed1703(); |
| 740 } | 740 } |
| 741 buildCounterImportReadGroupSetsRequest--; | 741 buildCounterImportReadGroupSetsRequest--; |
| 742 return o; | 742 return o; |
| 743 } | 743 } |
| 744 | 744 |
| 745 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { | 745 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { |
| 746 buildCounterImportReadGroupSetsRequest++; | 746 buildCounterImportReadGroupSetsRequest++; |
| 747 if (buildCounterImportReadGroupSetsRequest < 3) { | 747 if (buildCounterImportReadGroupSetsRequest < 3) { |
| 748 unittest.expect(o.datasetId, unittest.equals('foo')); | 748 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 749 unittest.expect(o.partitionStrategy, unittest.equals('foo')); | 749 unittest.expect(o.partitionStrategy, unittest.equals('foo')); |
| 750 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 750 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 751 checkUnnamed1636(o.sourceUris); | 751 checkUnnamed1703(o.sourceUris); |
| 752 } | 752 } |
| 753 buildCounterImportReadGroupSetsRequest--; | 753 buildCounterImportReadGroupSetsRequest--; |
| 754 } | 754 } |
| 755 | 755 |
| 756 core.int buildCounterImportReadGroupSetsResponse = 0; | 756 core.int buildCounterImportReadGroupSetsResponse = 0; |
| 757 buildImportReadGroupSetsResponse() { | 757 buildImportReadGroupSetsResponse() { |
| 758 var o = new api.ImportReadGroupSetsResponse(); | 758 var o = new api.ImportReadGroupSetsResponse(); |
| 759 buildCounterImportReadGroupSetsResponse++; | 759 buildCounterImportReadGroupSetsResponse++; |
| 760 if (buildCounterImportReadGroupSetsResponse < 3) { | 760 if (buildCounterImportReadGroupSetsResponse < 3) { |
| 761 o.jobId = "foo"; | 761 o.jobId = "foo"; |
| 762 } | 762 } |
| 763 buildCounterImportReadGroupSetsResponse--; | 763 buildCounterImportReadGroupSetsResponse--; |
| 764 return o; | 764 return o; |
| 765 } | 765 } |
| 766 | 766 |
| 767 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { | 767 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { |
| 768 buildCounterImportReadGroupSetsResponse++; | 768 buildCounterImportReadGroupSetsResponse++; |
| 769 if (buildCounterImportReadGroupSetsResponse < 3) { | 769 if (buildCounterImportReadGroupSetsResponse < 3) { |
| 770 unittest.expect(o.jobId, unittest.equals('foo')); | 770 unittest.expect(o.jobId, unittest.equals('foo')); |
| 771 } | 771 } |
| 772 buildCounterImportReadGroupSetsResponse--; | 772 buildCounterImportReadGroupSetsResponse--; |
| 773 } | 773 } |
| 774 | 774 |
| 775 buildUnnamed1637() { | 775 buildUnnamed1704() { |
| 776 var o = new core.List<core.String>(); | 776 var o = new core.List<core.String>(); |
| 777 o.add("foo"); | 777 o.add("foo"); |
| 778 o.add("foo"); | 778 o.add("foo"); |
| 779 return o; | 779 return o; |
| 780 } | 780 } |
| 781 | 781 |
| 782 checkUnnamed1637(core.List<core.String> o) { | 782 checkUnnamed1704(core.List<core.String> o) { |
| 783 unittest.expect(o, unittest.hasLength(2)); | 783 unittest.expect(o, unittest.hasLength(2)); |
| 784 unittest.expect(o[0], unittest.equals('foo')); | 784 unittest.expect(o[0], unittest.equals('foo')); |
| 785 unittest.expect(o[1], unittest.equals('foo')); | 785 unittest.expect(o[1], unittest.equals('foo')); |
| 786 } | 786 } |
| 787 | 787 |
| 788 core.int buildCounterImportVariantsRequest = 0; | 788 core.int buildCounterImportVariantsRequest = 0; |
| 789 buildImportVariantsRequest() { | 789 buildImportVariantsRequest() { |
| 790 var o = new api.ImportVariantsRequest(); | 790 var o = new api.ImportVariantsRequest(); |
| 791 buildCounterImportVariantsRequest++; | 791 buildCounterImportVariantsRequest++; |
| 792 if (buildCounterImportVariantsRequest < 3) { | 792 if (buildCounterImportVariantsRequest < 3) { |
| 793 o.format = "foo"; | 793 o.format = "foo"; |
| 794 o.sourceUris = buildUnnamed1637(); | 794 o.sourceUris = buildUnnamed1704(); |
| 795 } | 795 } |
| 796 buildCounterImportVariantsRequest--; | 796 buildCounterImportVariantsRequest--; |
| 797 return o; | 797 return o; |
| 798 } | 798 } |
| 799 | 799 |
| 800 checkImportVariantsRequest(api.ImportVariantsRequest o) { | 800 checkImportVariantsRequest(api.ImportVariantsRequest o) { |
| 801 buildCounterImportVariantsRequest++; | 801 buildCounterImportVariantsRequest++; |
| 802 if (buildCounterImportVariantsRequest < 3) { | 802 if (buildCounterImportVariantsRequest < 3) { |
| 803 unittest.expect(o.format, unittest.equals('foo')); | 803 unittest.expect(o.format, unittest.equals('foo')); |
| 804 checkUnnamed1637(o.sourceUris); | 804 checkUnnamed1704(o.sourceUris); |
| 805 } | 805 } |
| 806 buildCounterImportVariantsRequest--; | 806 buildCounterImportVariantsRequest--; |
| 807 } | 807 } |
| 808 | 808 |
| 809 core.int buildCounterImportVariantsResponse = 0; | 809 core.int buildCounterImportVariantsResponse = 0; |
| 810 buildImportVariantsResponse() { | 810 buildImportVariantsResponse() { |
| 811 var o = new api.ImportVariantsResponse(); | 811 var o = new api.ImportVariantsResponse(); |
| 812 buildCounterImportVariantsResponse++; | 812 buildCounterImportVariantsResponse++; |
| 813 if (buildCounterImportVariantsResponse < 3) { | 813 if (buildCounterImportVariantsResponse < 3) { |
| 814 o.jobId = "foo"; | 814 o.jobId = "foo"; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 837 } | 837 } |
| 838 | 838 |
| 839 checkInt32Value(api.Int32Value o) { | 839 checkInt32Value(api.Int32Value o) { |
| 840 buildCounterInt32Value++; | 840 buildCounterInt32Value++; |
| 841 if (buildCounterInt32Value < 3) { | 841 if (buildCounterInt32Value < 3) { |
| 842 unittest.expect(o.value, unittest.equals(42)); | 842 unittest.expect(o.value, unittest.equals(42)); |
| 843 } | 843 } |
| 844 buildCounterInt32Value--; | 844 buildCounterInt32Value--; |
| 845 } | 845 } |
| 846 | 846 |
| 847 buildUnnamed1638() { | 847 buildUnnamed1705() { |
| 848 var o = new core.List<core.String>(); | 848 var o = new core.List<core.String>(); |
| 849 o.add("foo"); | 849 o.add("foo"); |
| 850 o.add("foo"); | 850 o.add("foo"); |
| 851 return o; | 851 return o; |
| 852 } | 852 } |
| 853 | 853 |
| 854 checkUnnamed1638(core.List<core.String> o) { | 854 checkUnnamed1705(core.List<core.String> o) { |
| 855 unittest.expect(o, unittest.hasLength(2)); | 855 unittest.expect(o, unittest.hasLength(2)); |
| 856 unittest.expect(o[0], unittest.equals('foo')); | 856 unittest.expect(o[0], unittest.equals('foo')); |
| 857 unittest.expect(o[1], unittest.equals('foo')); | 857 unittest.expect(o[1], unittest.equals('foo')); |
| 858 } | 858 } |
| 859 | 859 |
| 860 core.int buildCounterInterleavedFastqSource = 0; | 860 core.int buildCounterInterleavedFastqSource = 0; |
| 861 buildInterleavedFastqSource() { | 861 buildInterleavedFastqSource() { |
| 862 var o = new api.InterleavedFastqSource(); | 862 var o = new api.InterleavedFastqSource(); |
| 863 buildCounterInterleavedFastqSource++; | 863 buildCounterInterleavedFastqSource++; |
| 864 if (buildCounterInterleavedFastqSource < 3) { | 864 if (buildCounterInterleavedFastqSource < 3) { |
| 865 o.metadata = buildFastqMetadata(); | 865 o.metadata = buildFastqMetadata(); |
| 866 o.sourceUris = buildUnnamed1638(); | 866 o.sourceUris = buildUnnamed1705(); |
| 867 } | 867 } |
| 868 buildCounterInterleavedFastqSource--; | 868 buildCounterInterleavedFastqSource--; |
| 869 return o; | 869 return o; |
| 870 } | 870 } |
| 871 | 871 |
| 872 checkInterleavedFastqSource(api.InterleavedFastqSource o) { | 872 checkInterleavedFastqSource(api.InterleavedFastqSource o) { |
| 873 buildCounterInterleavedFastqSource++; | 873 buildCounterInterleavedFastqSource++; |
| 874 if (buildCounterInterleavedFastqSource < 3) { | 874 if (buildCounterInterleavedFastqSource < 3) { |
| 875 checkFastqMetadata(o.metadata); | 875 checkFastqMetadata(o.metadata); |
| 876 checkUnnamed1638(o.sourceUris); | 876 checkUnnamed1705(o.sourceUris); |
| 877 } | 877 } |
| 878 buildCounterInterleavedFastqSource--; | 878 buildCounterInterleavedFastqSource--; |
| 879 } | 879 } |
| 880 | 880 |
| 881 buildUnnamed1639() { | 881 buildUnnamed1706() { |
| 882 var o = new core.List<core.String>(); | 882 var o = new core.List<core.String>(); |
| 883 o.add("foo"); | 883 o.add("foo"); |
| 884 o.add("foo"); | 884 o.add("foo"); |
| 885 return o; | 885 return o; |
| 886 } | 886 } |
| 887 | 887 |
| 888 checkUnnamed1639(core.List<core.String> o) { | 888 checkUnnamed1706(core.List<core.String> o) { |
| 889 unittest.expect(o, unittest.hasLength(2)); | 889 unittest.expect(o, unittest.hasLength(2)); |
| 890 unittest.expect(o[0], unittest.equals('foo')); | 890 unittest.expect(o[0], unittest.equals('foo')); |
| 891 unittest.expect(o[1], unittest.equals('foo')); | 891 unittest.expect(o[1], unittest.equals('foo')); |
| 892 } | 892 } |
| 893 | 893 |
| 894 buildUnnamed1640() { | 894 buildUnnamed1707() { |
| 895 var o = new core.List<core.String>(); | 895 var o = new core.List<core.String>(); |
| 896 o.add("foo"); | 896 o.add("foo"); |
| 897 o.add("foo"); | 897 o.add("foo"); |
| 898 return o; | 898 return o; |
| 899 } | 899 } |
| 900 | 900 |
| 901 checkUnnamed1640(core.List<core.String> o) { | 901 checkUnnamed1707(core.List<core.String> o) { |
| 902 unittest.expect(o, unittest.hasLength(2)); | 902 unittest.expect(o, unittest.hasLength(2)); |
| 903 unittest.expect(o[0], unittest.equals('foo')); | 903 unittest.expect(o[0], unittest.equals('foo')); |
| 904 unittest.expect(o[1], unittest.equals('foo')); | 904 unittest.expect(o[1], unittest.equals('foo')); |
| 905 } | 905 } |
| 906 | 906 |
| 907 buildUnnamed1641() { | 907 buildUnnamed1708() { |
| 908 var o = new core.List<core.String>(); | 908 var o = new core.List<core.String>(); |
| 909 o.add("foo"); | 909 o.add("foo"); |
| 910 o.add("foo"); | 910 o.add("foo"); |
| 911 return o; | 911 return o; |
| 912 } | 912 } |
| 913 | 913 |
| 914 checkUnnamed1641(core.List<core.String> o) { | 914 checkUnnamed1708(core.List<core.String> o) { |
| 915 unittest.expect(o, unittest.hasLength(2)); | 915 unittest.expect(o, unittest.hasLength(2)); |
| 916 unittest.expect(o[0], unittest.equals('foo')); | 916 unittest.expect(o[0], unittest.equals('foo')); |
| 917 unittest.expect(o[1], unittest.equals('foo')); | 917 unittest.expect(o[1], unittest.equals('foo')); |
| 918 } | 918 } |
| 919 | 919 |
| 920 core.int buildCounterJob = 0; | 920 core.int buildCounterJob = 0; |
| 921 buildJob() { | 921 buildJob() { |
| 922 var o = new api.Job(); | 922 var o = new api.Job(); |
| 923 buildCounterJob++; | 923 buildCounterJob++; |
| 924 if (buildCounterJob < 3) { | 924 if (buildCounterJob < 3) { |
| 925 o.created = "foo"; | 925 o.created = "foo"; |
| 926 o.detailedStatus = "foo"; | 926 o.detailedStatus = "foo"; |
| 927 o.errors = buildUnnamed1639(); | 927 o.errors = buildUnnamed1706(); |
| 928 o.id = "foo"; | 928 o.id = "foo"; |
| 929 o.importedIds = buildUnnamed1640(); | 929 o.importedIds = buildUnnamed1707(); |
| 930 o.projectNumber = "foo"; | 930 o.projectNumber = "foo"; |
| 931 o.request = buildJobRequest(); | 931 o.request = buildJobRequest(); |
| 932 o.status = "foo"; | 932 o.status = "foo"; |
| 933 o.warnings = buildUnnamed1641(); | 933 o.warnings = buildUnnamed1708(); |
| 934 } | 934 } |
| 935 buildCounterJob--; | 935 buildCounterJob--; |
| 936 return o; | 936 return o; |
| 937 } | 937 } |
| 938 | 938 |
| 939 checkJob(api.Job o) { | 939 checkJob(api.Job o) { |
| 940 buildCounterJob++; | 940 buildCounterJob++; |
| 941 if (buildCounterJob < 3) { | 941 if (buildCounterJob < 3) { |
| 942 unittest.expect(o.created, unittest.equals('foo')); | 942 unittest.expect(o.created, unittest.equals('foo')); |
| 943 unittest.expect(o.detailedStatus, unittest.equals('foo')); | 943 unittest.expect(o.detailedStatus, unittest.equals('foo')); |
| 944 checkUnnamed1639(o.errors); | 944 checkUnnamed1706(o.errors); |
| 945 unittest.expect(o.id, unittest.equals('foo')); | 945 unittest.expect(o.id, unittest.equals('foo')); |
| 946 checkUnnamed1640(o.importedIds); | 946 checkUnnamed1707(o.importedIds); |
| 947 unittest.expect(o.projectNumber, unittest.equals('foo')); | 947 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 948 checkJobRequest(o.request); | 948 checkJobRequest(o.request); |
| 949 unittest.expect(o.status, unittest.equals('foo')); | 949 unittest.expect(o.status, unittest.equals('foo')); |
| 950 checkUnnamed1641(o.warnings); | 950 checkUnnamed1708(o.warnings); |
| 951 } | 951 } |
| 952 buildCounterJob--; | 952 buildCounterJob--; |
| 953 } | 953 } |
| 954 | 954 |
| 955 buildUnnamed1642() { | 955 buildUnnamed1709() { |
| 956 var o = new core.List<core.String>(); | 956 var o = new core.List<core.String>(); |
| 957 o.add("foo"); | 957 o.add("foo"); |
| 958 o.add("foo"); | 958 o.add("foo"); |
| 959 return o; | 959 return o; |
| 960 } | 960 } |
| 961 | 961 |
| 962 checkUnnamed1642(core.List<core.String> o) { | 962 checkUnnamed1709(core.List<core.String> o) { |
| 963 unittest.expect(o, unittest.hasLength(2)); | 963 unittest.expect(o, unittest.hasLength(2)); |
| 964 unittest.expect(o[0], unittest.equals('foo')); | 964 unittest.expect(o[0], unittest.equals('foo')); |
| 965 unittest.expect(o[1], unittest.equals('foo')); | 965 unittest.expect(o[1], unittest.equals('foo')); |
| 966 } | 966 } |
| 967 | 967 |
| 968 buildUnnamed1643() { | 968 buildUnnamed1710() { |
| 969 var o = new core.List<core.String>(); | 969 var o = new core.List<core.String>(); |
| 970 o.add("foo"); | 970 o.add("foo"); |
| 971 o.add("foo"); | 971 o.add("foo"); |
| 972 return o; | 972 return o; |
| 973 } | 973 } |
| 974 | 974 |
| 975 checkUnnamed1643(core.List<core.String> o) { | 975 checkUnnamed1710(core.List<core.String> o) { |
| 976 unittest.expect(o, unittest.hasLength(2)); | 976 unittest.expect(o, unittest.hasLength(2)); |
| 977 unittest.expect(o[0], unittest.equals('foo')); | 977 unittest.expect(o[0], unittest.equals('foo')); |
| 978 unittest.expect(o[1], unittest.equals('foo')); | 978 unittest.expect(o[1], unittest.equals('foo')); |
| 979 } | 979 } |
| 980 | 980 |
| 981 core.int buildCounterJobRequest = 0; | 981 core.int buildCounterJobRequest = 0; |
| 982 buildJobRequest() { | 982 buildJobRequest() { |
| 983 var o = new api.JobRequest(); | 983 var o = new api.JobRequest(); |
| 984 buildCounterJobRequest++; | 984 buildCounterJobRequest++; |
| 985 if (buildCounterJobRequest < 3) { | 985 if (buildCounterJobRequest < 3) { |
| 986 o.destination = buildUnnamed1642(); | 986 o.destination = buildUnnamed1709(); |
| 987 o.source = buildUnnamed1643(); | 987 o.source = buildUnnamed1710(); |
| 988 o.type = "foo"; | 988 o.type = "foo"; |
| 989 } | 989 } |
| 990 buildCounterJobRequest--; | 990 buildCounterJobRequest--; |
| 991 return o; | 991 return o; |
| 992 } | 992 } |
| 993 | 993 |
| 994 checkJobRequest(api.JobRequest o) { | 994 checkJobRequest(api.JobRequest o) { |
| 995 buildCounterJobRequest++; | 995 buildCounterJobRequest++; |
| 996 if (buildCounterJobRequest < 3) { | 996 if (buildCounterJobRequest < 3) { |
| 997 checkUnnamed1642(o.destination); | 997 checkUnnamed1709(o.destination); |
| 998 checkUnnamed1643(o.source); | 998 checkUnnamed1710(o.source); |
| 999 unittest.expect(o.type, unittest.equals('foo')); | 999 unittest.expect(o.type, unittest.equals('foo')); |
| 1000 } | 1000 } |
| 1001 buildCounterJobRequest--; | 1001 buildCounterJobRequest--; |
| 1002 } | 1002 } |
| 1003 | 1003 |
| 1004 buildUnnamed1644() { | 1004 buildUnnamed1711() { |
| 1005 var o = new core.List<api.CigarUnit>(); | 1005 var o = new core.List<api.CigarUnit>(); |
| 1006 o.add(buildCigarUnit()); | 1006 o.add(buildCigarUnit()); |
| 1007 o.add(buildCigarUnit()); | 1007 o.add(buildCigarUnit()); |
| 1008 return o; | 1008 return o; |
| 1009 } | 1009 } |
| 1010 | 1010 |
| 1011 checkUnnamed1644(core.List<api.CigarUnit> o) { | 1011 checkUnnamed1711(core.List<api.CigarUnit> o) { |
| 1012 unittest.expect(o, unittest.hasLength(2)); | 1012 unittest.expect(o, unittest.hasLength(2)); |
| 1013 checkCigarUnit(o[0]); | 1013 checkCigarUnit(o[0]); |
| 1014 checkCigarUnit(o[1]); | 1014 checkCigarUnit(o[1]); |
| 1015 } | 1015 } |
| 1016 | 1016 |
| 1017 core.int buildCounterLinearAlignment = 0; | 1017 core.int buildCounterLinearAlignment = 0; |
| 1018 buildLinearAlignment() { | 1018 buildLinearAlignment() { |
| 1019 var o = new api.LinearAlignment(); | 1019 var o = new api.LinearAlignment(); |
| 1020 buildCounterLinearAlignment++; | 1020 buildCounterLinearAlignment++; |
| 1021 if (buildCounterLinearAlignment < 3) { | 1021 if (buildCounterLinearAlignment < 3) { |
| 1022 o.cigar = buildUnnamed1644(); | 1022 o.cigar = buildUnnamed1711(); |
| 1023 o.mappingQuality = 42; | 1023 o.mappingQuality = 42; |
| 1024 o.position = buildPosition(); | 1024 o.position = buildPosition(); |
| 1025 } | 1025 } |
| 1026 buildCounterLinearAlignment--; | 1026 buildCounterLinearAlignment--; |
| 1027 return o; | 1027 return o; |
| 1028 } | 1028 } |
| 1029 | 1029 |
| 1030 checkLinearAlignment(api.LinearAlignment o) { | 1030 checkLinearAlignment(api.LinearAlignment o) { |
| 1031 buildCounterLinearAlignment++; | 1031 buildCounterLinearAlignment++; |
| 1032 if (buildCounterLinearAlignment < 3) { | 1032 if (buildCounterLinearAlignment < 3) { |
| 1033 checkUnnamed1644(o.cigar); | 1033 checkUnnamed1711(o.cigar); |
| 1034 unittest.expect(o.mappingQuality, unittest.equals(42)); | 1034 unittest.expect(o.mappingQuality, unittest.equals(42)); |
| 1035 checkPosition(o.position); | 1035 checkPosition(o.position); |
| 1036 } | 1036 } |
| 1037 buildCounterLinearAlignment--; | 1037 buildCounterLinearAlignment--; |
| 1038 } | 1038 } |
| 1039 | 1039 |
| 1040 core.int buildCounterListBasesResponse = 0; | 1040 core.int buildCounterListBasesResponse = 0; |
| 1041 buildListBasesResponse() { | 1041 buildListBasesResponse() { |
| 1042 var o = new api.ListBasesResponse(); | 1042 var o = new api.ListBasesResponse(); |
| 1043 buildCounterListBasesResponse++; | 1043 buildCounterListBasesResponse++; |
| 1044 if (buildCounterListBasesResponse < 3) { | 1044 if (buildCounterListBasesResponse < 3) { |
| 1045 o.nextPageToken = "foo"; | 1045 o.nextPageToken = "foo"; |
| 1046 o.offset = "foo"; | 1046 o.offset = "foo"; |
| 1047 o.sequence = "foo"; | 1047 o.sequence = "foo"; |
| 1048 } | 1048 } |
| 1049 buildCounterListBasesResponse--; | 1049 buildCounterListBasesResponse--; |
| 1050 return o; | 1050 return o; |
| 1051 } | 1051 } |
| 1052 | 1052 |
| 1053 checkListBasesResponse(api.ListBasesResponse o) { | 1053 checkListBasesResponse(api.ListBasesResponse o) { |
| 1054 buildCounterListBasesResponse++; | 1054 buildCounterListBasesResponse++; |
| 1055 if (buildCounterListBasesResponse < 3) { | 1055 if (buildCounterListBasesResponse < 3) { |
| 1056 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1056 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1057 unittest.expect(o.offset, unittest.equals('foo')); | 1057 unittest.expect(o.offset, unittest.equals('foo')); |
| 1058 unittest.expect(o.sequence, unittest.equals('foo')); | 1058 unittest.expect(o.sequence, unittest.equals('foo')); |
| 1059 } | 1059 } |
| 1060 buildCounterListBasesResponse--; | 1060 buildCounterListBasesResponse--; |
| 1061 } | 1061 } |
| 1062 | 1062 |
| 1063 buildUnnamed1645() { | 1063 buildUnnamed1712() { |
| 1064 var o = new core.List<api.CoverageBucket>(); | 1064 var o = new core.List<api.CoverageBucket>(); |
| 1065 o.add(buildCoverageBucket()); | 1065 o.add(buildCoverageBucket()); |
| 1066 o.add(buildCoverageBucket()); | 1066 o.add(buildCoverageBucket()); |
| 1067 return o; | 1067 return o; |
| 1068 } | 1068 } |
| 1069 | 1069 |
| 1070 checkUnnamed1645(core.List<api.CoverageBucket> o) { | 1070 checkUnnamed1712(core.List<api.CoverageBucket> o) { |
| 1071 unittest.expect(o, unittest.hasLength(2)); | 1071 unittest.expect(o, unittest.hasLength(2)); |
| 1072 checkCoverageBucket(o[0]); | 1072 checkCoverageBucket(o[0]); |
| 1073 checkCoverageBucket(o[1]); | 1073 checkCoverageBucket(o[1]); |
| 1074 } | 1074 } |
| 1075 | 1075 |
| 1076 core.int buildCounterListCoverageBucketsResponse = 0; | 1076 core.int buildCounterListCoverageBucketsResponse = 0; |
| 1077 buildListCoverageBucketsResponse() { | 1077 buildListCoverageBucketsResponse() { |
| 1078 var o = new api.ListCoverageBucketsResponse(); | 1078 var o = new api.ListCoverageBucketsResponse(); |
| 1079 buildCounterListCoverageBucketsResponse++; | 1079 buildCounterListCoverageBucketsResponse++; |
| 1080 if (buildCounterListCoverageBucketsResponse < 3) { | 1080 if (buildCounterListCoverageBucketsResponse < 3) { |
| 1081 o.bucketWidth = "foo"; | 1081 o.bucketWidth = "foo"; |
| 1082 o.coverageBuckets = buildUnnamed1645(); | 1082 o.coverageBuckets = buildUnnamed1712(); |
| 1083 o.nextPageToken = "foo"; | 1083 o.nextPageToken = "foo"; |
| 1084 } | 1084 } |
| 1085 buildCounterListCoverageBucketsResponse--; | 1085 buildCounterListCoverageBucketsResponse--; |
| 1086 return o; | 1086 return o; |
| 1087 } | 1087 } |
| 1088 | 1088 |
| 1089 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { | 1089 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { |
| 1090 buildCounterListCoverageBucketsResponse++; | 1090 buildCounterListCoverageBucketsResponse++; |
| 1091 if (buildCounterListCoverageBucketsResponse < 3) { | 1091 if (buildCounterListCoverageBucketsResponse < 3) { |
| 1092 unittest.expect(o.bucketWidth, unittest.equals('foo')); | 1092 unittest.expect(o.bucketWidth, unittest.equals('foo')); |
| 1093 checkUnnamed1645(o.coverageBuckets); | 1093 checkUnnamed1712(o.coverageBuckets); |
| 1094 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1094 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1095 } | 1095 } |
| 1096 buildCounterListCoverageBucketsResponse--; | 1096 buildCounterListCoverageBucketsResponse--; |
| 1097 } | 1097 } |
| 1098 | 1098 |
| 1099 buildUnnamed1646() { | 1099 buildUnnamed1713() { |
| 1100 var o = new core.List<api.Dataset>(); | 1100 var o = new core.List<api.Dataset>(); |
| 1101 o.add(buildDataset()); | 1101 o.add(buildDataset()); |
| 1102 o.add(buildDataset()); | 1102 o.add(buildDataset()); |
| 1103 return o; | 1103 return o; |
| 1104 } | 1104 } |
| 1105 | 1105 |
| 1106 checkUnnamed1646(core.List<api.Dataset> o) { | 1106 checkUnnamed1713(core.List<api.Dataset> o) { |
| 1107 unittest.expect(o, unittest.hasLength(2)); | 1107 unittest.expect(o, unittest.hasLength(2)); |
| 1108 checkDataset(o[0]); | 1108 checkDataset(o[0]); |
| 1109 checkDataset(o[1]); | 1109 checkDataset(o[1]); |
| 1110 } | 1110 } |
| 1111 | 1111 |
| 1112 core.int buildCounterListDatasetsResponse = 0; | 1112 core.int buildCounterListDatasetsResponse = 0; |
| 1113 buildListDatasetsResponse() { | 1113 buildListDatasetsResponse() { |
| 1114 var o = new api.ListDatasetsResponse(); | 1114 var o = new api.ListDatasetsResponse(); |
| 1115 buildCounterListDatasetsResponse++; | 1115 buildCounterListDatasetsResponse++; |
| 1116 if (buildCounterListDatasetsResponse < 3) { | 1116 if (buildCounterListDatasetsResponse < 3) { |
| 1117 o.datasets = buildUnnamed1646(); | 1117 o.datasets = buildUnnamed1713(); |
| 1118 o.nextPageToken = "foo"; | 1118 o.nextPageToken = "foo"; |
| 1119 } | 1119 } |
| 1120 buildCounterListDatasetsResponse--; | 1120 buildCounterListDatasetsResponse--; |
| 1121 return o; | 1121 return o; |
| 1122 } | 1122 } |
| 1123 | 1123 |
| 1124 checkListDatasetsResponse(api.ListDatasetsResponse o) { | 1124 checkListDatasetsResponse(api.ListDatasetsResponse o) { |
| 1125 buildCounterListDatasetsResponse++; | 1125 buildCounterListDatasetsResponse++; |
| 1126 if (buildCounterListDatasetsResponse < 3) { | 1126 if (buildCounterListDatasetsResponse < 3) { |
| 1127 checkUnnamed1646(o.datasets); | 1127 checkUnnamed1713(o.datasets); |
| 1128 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1128 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1129 } | 1129 } |
| 1130 buildCounterListDatasetsResponse--; | 1130 buildCounterListDatasetsResponse--; |
| 1131 } | 1131 } |
| 1132 | 1132 |
| 1133 buildUnnamed1647() { | 1133 buildUnnamed1714() { |
| 1134 var o = new core.List<api.Variant>(); | 1134 var o = new core.List<api.Variant>(); |
| 1135 o.add(buildVariant()); | 1135 o.add(buildVariant()); |
| 1136 o.add(buildVariant()); | 1136 o.add(buildVariant()); |
| 1137 return o; | 1137 return o; |
| 1138 } | 1138 } |
| 1139 | 1139 |
| 1140 checkUnnamed1647(core.List<api.Variant> o) { | 1140 checkUnnamed1714(core.List<api.Variant> o) { |
| 1141 unittest.expect(o, unittest.hasLength(2)); | 1141 unittest.expect(o, unittest.hasLength(2)); |
| 1142 checkVariant(o[0]); | 1142 checkVariant(o[0]); |
| 1143 checkVariant(o[1]); | 1143 checkVariant(o[1]); |
| 1144 } | 1144 } |
| 1145 | 1145 |
| 1146 core.int buildCounterMergeVariantsRequest = 0; | 1146 core.int buildCounterMergeVariantsRequest = 0; |
| 1147 buildMergeVariantsRequest() { | 1147 buildMergeVariantsRequest() { |
| 1148 var o = new api.MergeVariantsRequest(); | 1148 var o = new api.MergeVariantsRequest(); |
| 1149 buildCounterMergeVariantsRequest++; | 1149 buildCounterMergeVariantsRequest++; |
| 1150 if (buildCounterMergeVariantsRequest < 3) { | 1150 if (buildCounterMergeVariantsRequest < 3) { |
| 1151 o.variants = buildUnnamed1647(); | 1151 o.variants = buildUnnamed1714(); |
| 1152 } | 1152 } |
| 1153 buildCounterMergeVariantsRequest--; | 1153 buildCounterMergeVariantsRequest--; |
| 1154 return o; | 1154 return o; |
| 1155 } | 1155 } |
| 1156 | 1156 |
| 1157 checkMergeVariantsRequest(api.MergeVariantsRequest o) { | 1157 checkMergeVariantsRequest(api.MergeVariantsRequest o) { |
| 1158 buildCounterMergeVariantsRequest++; | 1158 buildCounterMergeVariantsRequest++; |
| 1159 if (buildCounterMergeVariantsRequest < 3) { | 1159 if (buildCounterMergeVariantsRequest < 3) { |
| 1160 checkUnnamed1647(o.variants); | 1160 checkUnnamed1714(o.variants); |
| 1161 } | 1161 } |
| 1162 buildCounterMergeVariantsRequest--; | 1162 buildCounterMergeVariantsRequest--; |
| 1163 } | 1163 } |
| 1164 | 1164 |
| 1165 buildUnnamed1648() { | 1165 buildUnnamed1715() { |
| 1166 var o = new core.List<core.String>(); | 1166 var o = new core.List<core.String>(); |
| 1167 o.add("foo"); | 1167 o.add("foo"); |
| 1168 o.add("foo"); | 1168 o.add("foo"); |
| 1169 return o; | 1169 return o; |
| 1170 } | 1170 } |
| 1171 | 1171 |
| 1172 checkUnnamed1648(core.List<core.String> o) { | 1172 checkUnnamed1715(core.List<core.String> o) { |
| 1173 unittest.expect(o, unittest.hasLength(2)); | 1173 unittest.expect(o, unittest.hasLength(2)); |
| 1174 unittest.expect(o[0], unittest.equals('foo')); | 1174 unittest.expect(o[0], unittest.equals('foo')); |
| 1175 unittest.expect(o[1], unittest.equals('foo')); | 1175 unittest.expect(o[1], unittest.equals('foo')); |
| 1176 } | 1176 } |
| 1177 | 1177 |
| 1178 buildUnnamed1649() { | 1178 buildUnnamed1716() { |
| 1179 var o = new core.Map<core.String, core.List<core.String>>(); | 1179 var o = new core.Map<core.String, core.List<core.String>>(); |
| 1180 o["x"] = buildUnnamed1648(); | 1180 o["x"] = buildUnnamed1715(); |
| 1181 o["y"] = buildUnnamed1648(); | 1181 o["y"] = buildUnnamed1715(); |
| 1182 return o; | 1182 return o; |
| 1183 } | 1183 } |
| 1184 | 1184 |
| 1185 checkUnnamed1649(core.Map<core.String, core.List<core.String>> o) { | 1185 checkUnnamed1716(core.Map<core.String, core.List<core.String>> o) { |
| 1186 unittest.expect(o, unittest.hasLength(2)); | 1186 unittest.expect(o, unittest.hasLength(2)); |
| 1187 checkUnnamed1648(o["x"]); | 1187 checkUnnamed1715(o["x"]); |
| 1188 checkUnnamed1648(o["y"]); | 1188 checkUnnamed1715(o["y"]); |
| 1189 } | 1189 } |
| 1190 | 1190 |
| 1191 core.int buildCounterMetadata = 0; | 1191 core.int buildCounterMetadata = 0; |
| 1192 buildMetadata() { | 1192 buildMetadata() { |
| 1193 var o = new api.Metadata(); | 1193 var o = new api.Metadata(); |
| 1194 buildCounterMetadata++; | 1194 buildCounterMetadata++; |
| 1195 if (buildCounterMetadata < 3) { | 1195 if (buildCounterMetadata < 3) { |
| 1196 o.description = "foo"; | 1196 o.description = "foo"; |
| 1197 o.id = "foo"; | 1197 o.id = "foo"; |
| 1198 o.info = buildUnnamed1649(); | 1198 o.info = buildUnnamed1716(); |
| 1199 o.key = "foo"; | 1199 o.key = "foo"; |
| 1200 o.number = "foo"; | 1200 o.number = "foo"; |
| 1201 o.type = "foo"; | 1201 o.type = "foo"; |
| 1202 o.value = "foo"; | 1202 o.value = "foo"; |
| 1203 } | 1203 } |
| 1204 buildCounterMetadata--; | 1204 buildCounterMetadata--; |
| 1205 return o; | 1205 return o; |
| 1206 } | 1206 } |
| 1207 | 1207 |
| 1208 checkMetadata(api.Metadata o) { | 1208 checkMetadata(api.Metadata o) { |
| 1209 buildCounterMetadata++; | 1209 buildCounterMetadata++; |
| 1210 if (buildCounterMetadata < 3) { | 1210 if (buildCounterMetadata < 3) { |
| 1211 unittest.expect(o.description, unittest.equals('foo')); | 1211 unittest.expect(o.description, unittest.equals('foo')); |
| 1212 unittest.expect(o.id, unittest.equals('foo')); | 1212 unittest.expect(o.id, unittest.equals('foo')); |
| 1213 checkUnnamed1649(o.info); | 1213 checkUnnamed1716(o.info); |
| 1214 unittest.expect(o.key, unittest.equals('foo')); | 1214 unittest.expect(o.key, unittest.equals('foo')); |
| 1215 unittest.expect(o.number, unittest.equals('foo')); | 1215 unittest.expect(o.number, unittest.equals('foo')); |
| 1216 unittest.expect(o.type, unittest.equals('foo')); | 1216 unittest.expect(o.type, unittest.equals('foo')); |
| 1217 unittest.expect(o.value, unittest.equals('foo')); | 1217 unittest.expect(o.value, unittest.equals('foo')); |
| 1218 } | 1218 } |
| 1219 buildCounterMetadata--; | 1219 buildCounterMetadata--; |
| 1220 } | 1220 } |
| 1221 | 1221 |
| 1222 buildUnnamed1650() { | 1222 buildUnnamed1717() { |
| 1223 var o = new core.List<core.String>(); | 1223 var o = new core.List<core.String>(); |
| 1224 o.add("foo"); | 1224 o.add("foo"); |
| 1225 o.add("foo"); | 1225 o.add("foo"); |
| 1226 return o; | 1226 return o; |
| 1227 } | 1227 } |
| 1228 | 1228 |
| 1229 checkUnnamed1650(core.List<core.String> o) { | 1229 checkUnnamed1717(core.List<core.String> o) { |
| 1230 unittest.expect(o, unittest.hasLength(2)); | 1230 unittest.expect(o, unittest.hasLength(2)); |
| 1231 unittest.expect(o[0], unittest.equals('foo')); | 1231 unittest.expect(o[0], unittest.equals('foo')); |
| 1232 unittest.expect(o[1], unittest.equals('foo')); | 1232 unittest.expect(o[1], unittest.equals('foo')); |
| 1233 } | 1233 } |
| 1234 | 1234 |
| 1235 buildUnnamed1651() { | 1235 buildUnnamed1718() { |
| 1236 var o = new core.List<core.String>(); | 1236 var o = new core.List<core.String>(); |
| 1237 o.add("foo"); | 1237 o.add("foo"); |
| 1238 o.add("foo"); | 1238 o.add("foo"); |
| 1239 return o; | 1239 return o; |
| 1240 } | 1240 } |
| 1241 | 1241 |
| 1242 checkUnnamed1651(core.List<core.String> o) { | 1242 checkUnnamed1718(core.List<core.String> o) { |
| 1243 unittest.expect(o, unittest.hasLength(2)); | 1243 unittest.expect(o, unittest.hasLength(2)); |
| 1244 unittest.expect(o[0], unittest.equals('foo')); | 1244 unittest.expect(o[0], unittest.equals('foo')); |
| 1245 unittest.expect(o[1], unittest.equals('foo')); | 1245 unittest.expect(o[1], unittest.equals('foo')); |
| 1246 } | 1246 } |
| 1247 | 1247 |
| 1248 core.int buildCounterPairedFastqSource = 0; | 1248 core.int buildCounterPairedFastqSource = 0; |
| 1249 buildPairedFastqSource() { | 1249 buildPairedFastqSource() { |
| 1250 var o = new api.PairedFastqSource(); | 1250 var o = new api.PairedFastqSource(); |
| 1251 buildCounterPairedFastqSource++; | 1251 buildCounterPairedFastqSource++; |
| 1252 if (buildCounterPairedFastqSource < 3) { | 1252 if (buildCounterPairedFastqSource < 3) { |
| 1253 o.firstSourceUris = buildUnnamed1650(); | 1253 o.firstSourceUris = buildUnnamed1717(); |
| 1254 o.metadata = buildFastqMetadata(); | 1254 o.metadata = buildFastqMetadata(); |
| 1255 o.secondSourceUris = buildUnnamed1651(); | 1255 o.secondSourceUris = buildUnnamed1718(); |
| 1256 } | 1256 } |
| 1257 buildCounterPairedFastqSource--; | 1257 buildCounterPairedFastqSource--; |
| 1258 return o; | 1258 return o; |
| 1259 } | 1259 } |
| 1260 | 1260 |
| 1261 checkPairedFastqSource(api.PairedFastqSource o) { | 1261 checkPairedFastqSource(api.PairedFastqSource o) { |
| 1262 buildCounterPairedFastqSource++; | 1262 buildCounterPairedFastqSource++; |
| 1263 if (buildCounterPairedFastqSource < 3) { | 1263 if (buildCounterPairedFastqSource < 3) { |
| 1264 checkUnnamed1650(o.firstSourceUris); | 1264 checkUnnamed1717(o.firstSourceUris); |
| 1265 checkFastqMetadata(o.metadata); | 1265 checkFastqMetadata(o.metadata); |
| 1266 checkUnnamed1651(o.secondSourceUris); | 1266 checkUnnamed1718(o.secondSourceUris); |
| 1267 } | 1267 } |
| 1268 buildCounterPairedFastqSource--; | 1268 buildCounterPairedFastqSource--; |
| 1269 } | 1269 } |
| 1270 | 1270 |
| 1271 core.int buildCounterPosition = 0; | 1271 core.int buildCounterPosition = 0; |
| 1272 buildPosition() { | 1272 buildPosition() { |
| 1273 var o = new api.Position(); | 1273 var o = new api.Position(); |
| 1274 buildCounterPosition++; | 1274 buildCounterPosition++; |
| 1275 if (buildCounterPosition < 3) { | 1275 if (buildCounterPosition < 3) { |
| 1276 o.position = "foo"; | 1276 o.position = "foo"; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1359 if (buildCounterRangePosition < 3) { | 1359 if (buildCounterRangePosition < 3) { |
| 1360 unittest.expect(o.end, unittest.equals('foo')); | 1360 unittest.expect(o.end, unittest.equals('foo')); |
| 1361 unittest.expect(o.referenceId, unittest.equals('foo')); | 1361 unittest.expect(o.referenceId, unittest.equals('foo')); |
| 1362 unittest.expect(o.referenceName, unittest.equals('foo')); | 1362 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 1363 unittest.expect(o.reverseStrand, unittest.isTrue); | 1363 unittest.expect(o.reverseStrand, unittest.isTrue); |
| 1364 unittest.expect(o.start, unittest.equals('foo')); | 1364 unittest.expect(o.start, unittest.equals('foo')); |
| 1365 } | 1365 } |
| 1366 buildCounterRangePosition--; | 1366 buildCounterRangePosition--; |
| 1367 } | 1367 } |
| 1368 | 1368 |
| 1369 buildUnnamed1652() { | 1369 buildUnnamed1719() { |
| 1370 var o = new core.List<core.int>(); | 1370 var o = new core.List<core.int>(); |
| 1371 o.add(42); | 1371 o.add(42); |
| 1372 o.add(42); | 1372 o.add(42); |
| 1373 return o; | 1373 return o; |
| 1374 } | 1374 } |
| 1375 | 1375 |
| 1376 checkUnnamed1652(core.List<core.int> o) { | 1376 checkUnnamed1719(core.List<core.int> o) { |
| 1377 unittest.expect(o, unittest.hasLength(2)); | 1377 unittest.expect(o, unittest.hasLength(2)); |
| 1378 unittest.expect(o[0], unittest.equals(42)); | 1378 unittest.expect(o[0], unittest.equals(42)); |
| 1379 unittest.expect(o[1], unittest.equals(42)); | 1379 unittest.expect(o[1], unittest.equals(42)); |
| 1380 } | 1380 } |
| 1381 | 1381 |
| 1382 buildUnnamed1653() { | 1382 buildUnnamed1720() { |
| 1383 var o = new core.List<core.String>(); | 1383 var o = new core.List<core.String>(); |
| 1384 o.add("foo"); | 1384 o.add("foo"); |
| 1385 o.add("foo"); | 1385 o.add("foo"); |
| 1386 return o; | 1386 return o; |
| 1387 } | 1387 } |
| 1388 | 1388 |
| 1389 checkUnnamed1653(core.List<core.String> o) { | 1389 checkUnnamed1720(core.List<core.String> o) { |
| 1390 unittest.expect(o, unittest.hasLength(2)); | 1390 unittest.expect(o, unittest.hasLength(2)); |
| 1391 unittest.expect(o[0], unittest.equals('foo')); | 1391 unittest.expect(o[0], unittest.equals('foo')); |
| 1392 unittest.expect(o[1], unittest.equals('foo')); | 1392 unittest.expect(o[1], unittest.equals('foo')); |
| 1393 } | 1393 } |
| 1394 | 1394 |
| 1395 buildUnnamed1654() { | 1395 buildUnnamed1721() { |
| 1396 var o = new core.Map<core.String, core.List<core.String>>(); | 1396 var o = new core.Map<core.String, core.List<core.String>>(); |
| 1397 o["x"] = buildUnnamed1653(); | 1397 o["x"] = buildUnnamed1720(); |
| 1398 o["y"] = buildUnnamed1653(); | 1398 o["y"] = buildUnnamed1720(); |
| 1399 return o; | 1399 return o; |
| 1400 } | 1400 } |
| 1401 | 1401 |
| 1402 checkUnnamed1654(core.Map<core.String, core.List<core.String>> o) { | 1402 checkUnnamed1721(core.Map<core.String, core.List<core.String>> o) { |
| 1403 unittest.expect(o, unittest.hasLength(2)); | 1403 unittest.expect(o, unittest.hasLength(2)); |
| 1404 checkUnnamed1653(o["x"]); | 1404 checkUnnamed1720(o["x"]); |
| 1405 checkUnnamed1653(o["y"]); | 1405 checkUnnamed1720(o["y"]); |
| 1406 } | 1406 } |
| 1407 | 1407 |
| 1408 core.int buildCounterRead = 0; | 1408 core.int buildCounterRead = 0; |
| 1409 buildRead() { | 1409 buildRead() { |
| 1410 var o = new api.Read(); | 1410 var o = new api.Read(); |
| 1411 buildCounterRead++; | 1411 buildCounterRead++; |
| 1412 if (buildCounterRead < 3) { | 1412 if (buildCounterRead < 3) { |
| 1413 o.alignedQuality = buildUnnamed1652(); | 1413 o.alignedQuality = buildUnnamed1719(); |
| 1414 o.alignedSequence = "foo"; | 1414 o.alignedSequence = "foo"; |
| 1415 o.alignment = buildLinearAlignment(); | 1415 o.alignment = buildLinearAlignment(); |
| 1416 o.duplicateFragment = true; | 1416 o.duplicateFragment = true; |
| 1417 o.failedVendorQualityChecks = true; | 1417 o.failedVendorQualityChecks = true; |
| 1418 o.fragmentLength = 42; | 1418 o.fragmentLength = 42; |
| 1419 o.fragmentName = "foo"; | 1419 o.fragmentName = "foo"; |
| 1420 o.id = "foo"; | 1420 o.id = "foo"; |
| 1421 o.info = buildUnnamed1654(); | 1421 o.info = buildUnnamed1721(); |
| 1422 o.nextMatePosition = buildPosition(); | 1422 o.nextMatePosition = buildPosition(); |
| 1423 o.numberReads = 42; | 1423 o.numberReads = 42; |
| 1424 o.properPlacement = true; | 1424 o.properPlacement = true; |
| 1425 o.readGroupId = "foo"; | 1425 o.readGroupId = "foo"; |
| 1426 o.readGroupSetId = "foo"; | 1426 o.readGroupSetId = "foo"; |
| 1427 o.readNumber = 42; | 1427 o.readNumber = 42; |
| 1428 o.secondaryAlignment = true; | 1428 o.secondaryAlignment = true; |
| 1429 o.supplementaryAlignment = true; | 1429 o.supplementaryAlignment = true; |
| 1430 } | 1430 } |
| 1431 buildCounterRead--; | 1431 buildCounterRead--; |
| 1432 return o; | 1432 return o; |
| 1433 } | 1433 } |
| 1434 | 1434 |
| 1435 checkRead(api.Read o) { | 1435 checkRead(api.Read o) { |
| 1436 buildCounterRead++; | 1436 buildCounterRead++; |
| 1437 if (buildCounterRead < 3) { | 1437 if (buildCounterRead < 3) { |
| 1438 checkUnnamed1652(o.alignedQuality); | 1438 checkUnnamed1719(o.alignedQuality); |
| 1439 unittest.expect(o.alignedSequence, unittest.equals('foo')); | 1439 unittest.expect(o.alignedSequence, unittest.equals('foo')); |
| 1440 checkLinearAlignment(o.alignment); | 1440 checkLinearAlignment(o.alignment); |
| 1441 unittest.expect(o.duplicateFragment, unittest.isTrue); | 1441 unittest.expect(o.duplicateFragment, unittest.isTrue); |
| 1442 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); | 1442 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); |
| 1443 unittest.expect(o.fragmentLength, unittest.equals(42)); | 1443 unittest.expect(o.fragmentLength, unittest.equals(42)); |
| 1444 unittest.expect(o.fragmentName, unittest.equals('foo')); | 1444 unittest.expect(o.fragmentName, unittest.equals('foo')); |
| 1445 unittest.expect(o.id, unittest.equals('foo')); | 1445 unittest.expect(o.id, unittest.equals('foo')); |
| 1446 checkUnnamed1654(o.info); | 1446 checkUnnamed1721(o.info); |
| 1447 checkPosition(o.nextMatePosition); | 1447 checkPosition(o.nextMatePosition); |
| 1448 unittest.expect(o.numberReads, unittest.equals(42)); | 1448 unittest.expect(o.numberReads, unittest.equals(42)); |
| 1449 unittest.expect(o.properPlacement, unittest.isTrue); | 1449 unittest.expect(o.properPlacement, unittest.isTrue); |
| 1450 unittest.expect(o.readGroupId, unittest.equals('foo')); | 1450 unittest.expect(o.readGroupId, unittest.equals('foo')); |
| 1451 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 1451 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
| 1452 unittest.expect(o.readNumber, unittest.equals(42)); | 1452 unittest.expect(o.readNumber, unittest.equals(42)); |
| 1453 unittest.expect(o.secondaryAlignment, unittest.isTrue); | 1453 unittest.expect(o.secondaryAlignment, unittest.isTrue); |
| 1454 unittest.expect(o.supplementaryAlignment, unittest.isTrue); | 1454 unittest.expect(o.supplementaryAlignment, unittest.isTrue); |
| 1455 } | 1455 } |
| 1456 buildCounterRead--; | 1456 buildCounterRead--; |
| 1457 } | 1457 } |
| 1458 | 1458 |
| 1459 buildUnnamed1655() { | 1459 buildUnnamed1722() { |
| 1460 var o = new core.List<core.String>(); | 1460 var o = new core.List<core.String>(); |
| 1461 o.add("foo"); | 1461 o.add("foo"); |
| 1462 o.add("foo"); | 1462 o.add("foo"); |
| 1463 return o; | 1463 return o; |
| 1464 } | 1464 } |
| 1465 | 1465 |
| 1466 checkUnnamed1655(core.List<core.String> o) { | 1466 checkUnnamed1722(core.List<core.String> o) { |
| 1467 unittest.expect(o, unittest.hasLength(2)); | 1467 unittest.expect(o, unittest.hasLength(2)); |
| 1468 unittest.expect(o[0], unittest.equals('foo')); | 1468 unittest.expect(o[0], unittest.equals('foo')); |
| 1469 unittest.expect(o[1], unittest.equals('foo')); | 1469 unittest.expect(o[1], unittest.equals('foo')); |
| 1470 } | 1470 } |
| 1471 | 1471 |
| 1472 buildUnnamed1656() { | 1472 buildUnnamed1723() { |
| 1473 var o = new core.Map<core.String, core.List<core.String>>(); | 1473 var o = new core.Map<core.String, core.List<core.String>>(); |
| 1474 o["x"] = buildUnnamed1655(); | 1474 o["x"] = buildUnnamed1722(); |
| 1475 o["y"] = buildUnnamed1655(); | 1475 o["y"] = buildUnnamed1722(); |
| 1476 return o; | 1476 return o; |
| 1477 } | 1477 } |
| 1478 | 1478 |
| 1479 checkUnnamed1656(core.Map<core.String, core.List<core.String>> o) { | 1479 checkUnnamed1723(core.Map<core.String, core.List<core.String>> o) { |
| 1480 unittest.expect(o, unittest.hasLength(2)); | 1480 unittest.expect(o, unittest.hasLength(2)); |
| 1481 checkUnnamed1655(o["x"]); | 1481 checkUnnamed1722(o["x"]); |
| 1482 checkUnnamed1655(o["y"]); | 1482 checkUnnamed1722(o["y"]); |
| 1483 } | 1483 } |
| 1484 | 1484 |
| 1485 buildUnnamed1657() { | 1485 buildUnnamed1724() { |
| 1486 var o = new core.List<api.ReadGroupProgram>(); | 1486 var o = new core.List<api.ReadGroupProgram>(); |
| 1487 o.add(buildReadGroupProgram()); | 1487 o.add(buildReadGroupProgram()); |
| 1488 o.add(buildReadGroupProgram()); | 1488 o.add(buildReadGroupProgram()); |
| 1489 return o; | 1489 return o; |
| 1490 } | 1490 } |
| 1491 | 1491 |
| 1492 checkUnnamed1657(core.List<api.ReadGroupProgram> o) { | 1492 checkUnnamed1724(core.List<api.ReadGroupProgram> o) { |
| 1493 unittest.expect(o, unittest.hasLength(2)); | 1493 unittest.expect(o, unittest.hasLength(2)); |
| 1494 checkReadGroupProgram(o[0]); | 1494 checkReadGroupProgram(o[0]); |
| 1495 checkReadGroupProgram(o[1]); | 1495 checkReadGroupProgram(o[1]); |
| 1496 } | 1496 } |
| 1497 | 1497 |
| 1498 core.int buildCounterReadGroup = 0; | 1498 core.int buildCounterReadGroup = 0; |
| 1499 buildReadGroup() { | 1499 buildReadGroup() { |
| 1500 var o = new api.ReadGroup(); | 1500 var o = new api.ReadGroup(); |
| 1501 buildCounterReadGroup++; | 1501 buildCounterReadGroup++; |
| 1502 if (buildCounterReadGroup < 3) { | 1502 if (buildCounterReadGroup < 3) { |
| 1503 o.datasetId = "foo"; | 1503 o.datasetId = "foo"; |
| 1504 o.description = "foo"; | 1504 o.description = "foo"; |
| 1505 o.experiment = buildReadGroupExperiment(); | 1505 o.experiment = buildReadGroupExperiment(); |
| 1506 o.id = "foo"; | 1506 o.id = "foo"; |
| 1507 o.info = buildUnnamed1656(); | 1507 o.info = buildUnnamed1723(); |
| 1508 o.name = "foo"; | 1508 o.name = "foo"; |
| 1509 o.predictedInsertSize = 42; | 1509 o.predictedInsertSize = 42; |
| 1510 o.programs = buildUnnamed1657(); | 1510 o.programs = buildUnnamed1724(); |
| 1511 o.referenceSetId = "foo"; | 1511 o.referenceSetId = "foo"; |
| 1512 o.sampleId = "foo"; | 1512 o.sampleId = "foo"; |
| 1513 } | 1513 } |
| 1514 buildCounterReadGroup--; | 1514 buildCounterReadGroup--; |
| 1515 return o; | 1515 return o; |
| 1516 } | 1516 } |
| 1517 | 1517 |
| 1518 checkReadGroup(api.ReadGroup o) { | 1518 checkReadGroup(api.ReadGroup o) { |
| 1519 buildCounterReadGroup++; | 1519 buildCounterReadGroup++; |
| 1520 if (buildCounterReadGroup < 3) { | 1520 if (buildCounterReadGroup < 3) { |
| 1521 unittest.expect(o.datasetId, unittest.equals('foo')); | 1521 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 1522 unittest.expect(o.description, unittest.equals('foo')); | 1522 unittest.expect(o.description, unittest.equals('foo')); |
| 1523 checkReadGroupExperiment(o.experiment); | 1523 checkReadGroupExperiment(o.experiment); |
| 1524 unittest.expect(o.id, unittest.equals('foo')); | 1524 unittest.expect(o.id, unittest.equals('foo')); |
| 1525 checkUnnamed1656(o.info); | 1525 checkUnnamed1723(o.info); |
| 1526 unittest.expect(o.name, unittest.equals('foo')); | 1526 unittest.expect(o.name, unittest.equals('foo')); |
| 1527 unittest.expect(o.predictedInsertSize, unittest.equals(42)); | 1527 unittest.expect(o.predictedInsertSize, unittest.equals(42)); |
| 1528 checkUnnamed1657(o.programs); | 1528 checkUnnamed1724(o.programs); |
| 1529 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1529 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 1530 unittest.expect(o.sampleId, unittest.equals('foo')); | 1530 unittest.expect(o.sampleId, unittest.equals('foo')); |
| 1531 } | 1531 } |
| 1532 buildCounterReadGroup--; | 1532 buildCounterReadGroup--; |
| 1533 } | 1533 } |
| 1534 | 1534 |
| 1535 core.int buildCounterReadGroupExperiment = 0; | 1535 core.int buildCounterReadGroupExperiment = 0; |
| 1536 buildReadGroupExperiment() { | 1536 buildReadGroupExperiment() { |
| 1537 var o = new api.ReadGroupExperiment(); | 1537 var o = new api.ReadGroupExperiment(); |
| 1538 buildCounterReadGroupExperiment++; | 1538 buildCounterReadGroupExperiment++; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1577 if (buildCounterReadGroupProgram < 3) { | 1577 if (buildCounterReadGroupProgram < 3) { |
| 1578 unittest.expect(o.commandLine, unittest.equals('foo')); | 1578 unittest.expect(o.commandLine, unittest.equals('foo')); |
| 1579 unittest.expect(o.id, unittest.equals('foo')); | 1579 unittest.expect(o.id, unittest.equals('foo')); |
| 1580 unittest.expect(o.name, unittest.equals('foo')); | 1580 unittest.expect(o.name, unittest.equals('foo')); |
| 1581 unittest.expect(o.prevProgramId, unittest.equals('foo')); | 1581 unittest.expect(o.prevProgramId, unittest.equals('foo')); |
| 1582 unittest.expect(o.version, unittest.equals('foo')); | 1582 unittest.expect(o.version, unittest.equals('foo')); |
| 1583 } | 1583 } |
| 1584 buildCounterReadGroupProgram--; | 1584 buildCounterReadGroupProgram--; |
| 1585 } | 1585 } |
| 1586 | 1586 |
| 1587 buildUnnamed1658() { | 1587 buildUnnamed1725() { |
| 1588 var o = new core.List<core.String>(); | 1588 var o = new core.List<core.String>(); |
| 1589 o.add("foo"); | 1589 o.add("foo"); |
| 1590 o.add("foo"); | 1590 o.add("foo"); |
| 1591 return o; | 1591 return o; |
| 1592 } | 1592 } |
| 1593 | 1593 |
| 1594 checkUnnamed1658(core.List<core.String> o) { | 1594 checkUnnamed1725(core.List<core.String> o) { |
| 1595 unittest.expect(o, unittest.hasLength(2)); | 1595 unittest.expect(o, unittest.hasLength(2)); |
| 1596 unittest.expect(o[0], unittest.equals('foo')); | 1596 unittest.expect(o[0], unittest.equals('foo')); |
| 1597 unittest.expect(o[1], unittest.equals('foo')); | 1597 unittest.expect(o[1], unittest.equals('foo')); |
| 1598 } | 1598 } |
| 1599 | 1599 |
| 1600 buildUnnamed1659() { | 1600 buildUnnamed1726() { |
| 1601 var o = new core.Map<core.String, core.List<core.String>>(); | 1601 var o = new core.Map<core.String, core.List<core.String>>(); |
| 1602 o["x"] = buildUnnamed1658(); | 1602 o["x"] = buildUnnamed1725(); |
| 1603 o["y"] = buildUnnamed1658(); | 1603 o["y"] = buildUnnamed1725(); |
| 1604 return o; | 1604 return o; |
| 1605 } | 1605 } |
| 1606 | 1606 |
| 1607 checkUnnamed1659(core.Map<core.String, core.List<core.String>> o) { | 1607 checkUnnamed1726(core.Map<core.String, core.List<core.String>> o) { |
| 1608 unittest.expect(o, unittest.hasLength(2)); | 1608 unittest.expect(o, unittest.hasLength(2)); |
| 1609 checkUnnamed1658(o["x"]); | 1609 checkUnnamed1725(o["x"]); |
| 1610 checkUnnamed1658(o["y"]); | 1610 checkUnnamed1725(o["y"]); |
| 1611 } | 1611 } |
| 1612 | 1612 |
| 1613 buildUnnamed1660() { | 1613 buildUnnamed1727() { |
| 1614 var o = new core.List<api.ReadGroup>(); | 1614 var o = new core.List<api.ReadGroup>(); |
| 1615 o.add(buildReadGroup()); | 1615 o.add(buildReadGroup()); |
| 1616 o.add(buildReadGroup()); | 1616 o.add(buildReadGroup()); |
| 1617 return o; | 1617 return o; |
| 1618 } | 1618 } |
| 1619 | 1619 |
| 1620 checkUnnamed1660(core.List<api.ReadGroup> o) { | 1620 checkUnnamed1727(core.List<api.ReadGroup> o) { |
| 1621 unittest.expect(o, unittest.hasLength(2)); | 1621 unittest.expect(o, unittest.hasLength(2)); |
| 1622 checkReadGroup(o[0]); | 1622 checkReadGroup(o[0]); |
| 1623 checkReadGroup(o[1]); | 1623 checkReadGroup(o[1]); |
| 1624 } | 1624 } |
| 1625 | 1625 |
| 1626 core.int buildCounterReadGroupSet = 0; | 1626 core.int buildCounterReadGroupSet = 0; |
| 1627 buildReadGroupSet() { | 1627 buildReadGroupSet() { |
| 1628 var o = new api.ReadGroupSet(); | 1628 var o = new api.ReadGroupSet(); |
| 1629 buildCounterReadGroupSet++; | 1629 buildCounterReadGroupSet++; |
| 1630 if (buildCounterReadGroupSet < 3) { | 1630 if (buildCounterReadGroupSet < 3) { |
| 1631 o.datasetId = "foo"; | 1631 o.datasetId = "foo"; |
| 1632 o.filename = "foo"; | 1632 o.filename = "foo"; |
| 1633 o.id = "foo"; | 1633 o.id = "foo"; |
| 1634 o.info = buildUnnamed1659(); | 1634 o.info = buildUnnamed1726(); |
| 1635 o.name = "foo"; | 1635 o.name = "foo"; |
| 1636 o.readGroups = buildUnnamed1660(); | 1636 o.readGroups = buildUnnamed1727(); |
| 1637 o.referenceSetId = "foo"; | 1637 o.referenceSetId = "foo"; |
| 1638 } | 1638 } |
| 1639 buildCounterReadGroupSet--; | 1639 buildCounterReadGroupSet--; |
| 1640 return o; | 1640 return o; |
| 1641 } | 1641 } |
| 1642 | 1642 |
| 1643 checkReadGroupSet(api.ReadGroupSet o) { | 1643 checkReadGroupSet(api.ReadGroupSet o) { |
| 1644 buildCounterReadGroupSet++; | 1644 buildCounterReadGroupSet++; |
| 1645 if (buildCounterReadGroupSet < 3) { | 1645 if (buildCounterReadGroupSet < 3) { |
| 1646 unittest.expect(o.datasetId, unittest.equals('foo')); | 1646 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 1647 unittest.expect(o.filename, unittest.equals('foo')); | 1647 unittest.expect(o.filename, unittest.equals('foo')); |
| 1648 unittest.expect(o.id, unittest.equals('foo')); | 1648 unittest.expect(o.id, unittest.equals('foo')); |
| 1649 checkUnnamed1659(o.info); | 1649 checkUnnamed1726(o.info); |
| 1650 unittest.expect(o.name, unittest.equals('foo')); | 1650 unittest.expect(o.name, unittest.equals('foo')); |
| 1651 checkUnnamed1660(o.readGroups); | 1651 checkUnnamed1727(o.readGroups); |
| 1652 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1652 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 1653 } | 1653 } |
| 1654 buildCounterReadGroupSet--; | 1654 buildCounterReadGroupSet--; |
| 1655 } | 1655 } |
| 1656 | 1656 |
| 1657 buildUnnamed1661() { | 1657 buildUnnamed1728() { |
| 1658 var o = new core.List<core.String>(); | 1658 var o = new core.List<core.String>(); |
| 1659 o.add("foo"); | 1659 o.add("foo"); |
| 1660 o.add("foo"); | 1660 o.add("foo"); |
| 1661 return o; | 1661 return o; |
| 1662 } | 1662 } |
| 1663 | 1663 |
| 1664 checkUnnamed1661(core.List<core.String> o) { | 1664 checkUnnamed1728(core.List<core.String> o) { |
| 1665 unittest.expect(o, unittest.hasLength(2)); | 1665 unittest.expect(o, unittest.hasLength(2)); |
| 1666 unittest.expect(o[0], unittest.equals('foo')); | 1666 unittest.expect(o[0], unittest.equals('foo')); |
| 1667 unittest.expect(o[1], unittest.equals('foo')); | 1667 unittest.expect(o[1], unittest.equals('foo')); |
| 1668 } | 1668 } |
| 1669 | 1669 |
| 1670 core.int buildCounterReference = 0; | 1670 core.int buildCounterReference = 0; |
| 1671 buildReference() { | 1671 buildReference() { |
| 1672 var o = new api.Reference(); | 1672 var o = new api.Reference(); |
| 1673 buildCounterReference++; | 1673 buildCounterReference++; |
| 1674 if (buildCounterReference < 3) { | 1674 if (buildCounterReference < 3) { |
| 1675 o.id = "foo"; | 1675 o.id = "foo"; |
| 1676 o.length = "foo"; | 1676 o.length = "foo"; |
| 1677 o.md5checksum = "foo"; | 1677 o.md5checksum = "foo"; |
| 1678 o.name = "foo"; | 1678 o.name = "foo"; |
| 1679 o.ncbiTaxonId = 42; | 1679 o.ncbiTaxonId = 42; |
| 1680 o.sourceAccessions = buildUnnamed1661(); | 1680 o.sourceAccessions = buildUnnamed1728(); |
| 1681 o.sourceURI = "foo"; | 1681 o.sourceURI = "foo"; |
| 1682 } | 1682 } |
| 1683 buildCounterReference--; | 1683 buildCounterReference--; |
| 1684 return o; | 1684 return o; |
| 1685 } | 1685 } |
| 1686 | 1686 |
| 1687 checkReference(api.Reference o) { | 1687 checkReference(api.Reference o) { |
| 1688 buildCounterReference++; | 1688 buildCounterReference++; |
| 1689 if (buildCounterReference < 3) { | 1689 if (buildCounterReference < 3) { |
| 1690 unittest.expect(o.id, unittest.equals('foo')); | 1690 unittest.expect(o.id, unittest.equals('foo')); |
| 1691 unittest.expect(o.length, unittest.equals('foo')); | 1691 unittest.expect(o.length, unittest.equals('foo')); |
| 1692 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1692 unittest.expect(o.md5checksum, unittest.equals('foo')); |
| 1693 unittest.expect(o.name, unittest.equals('foo')); | 1693 unittest.expect(o.name, unittest.equals('foo')); |
| 1694 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1694 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
| 1695 checkUnnamed1661(o.sourceAccessions); | 1695 checkUnnamed1728(o.sourceAccessions); |
| 1696 unittest.expect(o.sourceURI, unittest.equals('foo')); | 1696 unittest.expect(o.sourceURI, unittest.equals('foo')); |
| 1697 } | 1697 } |
| 1698 buildCounterReference--; | 1698 buildCounterReference--; |
| 1699 } | 1699 } |
| 1700 | 1700 |
| 1701 core.int buildCounterReferenceBound = 0; | 1701 core.int buildCounterReferenceBound = 0; |
| 1702 buildReferenceBound() { | 1702 buildReferenceBound() { |
| 1703 var o = new api.ReferenceBound(); | 1703 var o = new api.ReferenceBound(); |
| 1704 buildCounterReferenceBound++; | 1704 buildCounterReferenceBound++; |
| 1705 if (buildCounterReferenceBound < 3) { | 1705 if (buildCounterReferenceBound < 3) { |
| 1706 o.referenceName = "foo"; | 1706 o.referenceName = "foo"; |
| 1707 o.upperBound = "foo"; | 1707 o.upperBound = "foo"; |
| 1708 } | 1708 } |
| 1709 buildCounterReferenceBound--; | 1709 buildCounterReferenceBound--; |
| 1710 return o; | 1710 return o; |
| 1711 } | 1711 } |
| 1712 | 1712 |
| 1713 checkReferenceBound(api.ReferenceBound o) { | 1713 checkReferenceBound(api.ReferenceBound o) { |
| 1714 buildCounterReferenceBound++; | 1714 buildCounterReferenceBound++; |
| 1715 if (buildCounterReferenceBound < 3) { | 1715 if (buildCounterReferenceBound < 3) { |
| 1716 unittest.expect(o.referenceName, unittest.equals('foo')); | 1716 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 1717 unittest.expect(o.upperBound, unittest.equals('foo')); | 1717 unittest.expect(o.upperBound, unittest.equals('foo')); |
| 1718 } | 1718 } |
| 1719 buildCounterReferenceBound--; | 1719 buildCounterReferenceBound--; |
| 1720 } | 1720 } |
| 1721 | 1721 |
| 1722 buildUnnamed1662() { | 1722 buildUnnamed1729() { |
| 1723 var o = new core.List<core.String>(); | 1723 var o = new core.List<core.String>(); |
| 1724 o.add("foo"); | 1724 o.add("foo"); |
| 1725 o.add("foo"); | 1725 o.add("foo"); |
| 1726 return o; | 1726 return o; |
| 1727 } | 1727 } |
| 1728 | 1728 |
| 1729 checkUnnamed1662(core.List<core.String> o) { | 1729 checkUnnamed1729(core.List<core.String> o) { |
| 1730 unittest.expect(o, unittest.hasLength(2)); | 1730 unittest.expect(o, unittest.hasLength(2)); |
| 1731 unittest.expect(o[0], unittest.equals('foo')); | 1731 unittest.expect(o[0], unittest.equals('foo')); |
| 1732 unittest.expect(o[1], unittest.equals('foo')); | 1732 unittest.expect(o[1], unittest.equals('foo')); |
| 1733 } | 1733 } |
| 1734 | 1734 |
| 1735 buildUnnamed1663() { | 1735 buildUnnamed1730() { |
| 1736 var o = new core.List<core.String>(); | 1736 var o = new core.List<core.String>(); |
| 1737 o.add("foo"); | 1737 o.add("foo"); |
| 1738 o.add("foo"); | 1738 o.add("foo"); |
| 1739 return o; | 1739 return o; |
| 1740 } | 1740 } |
| 1741 | 1741 |
| 1742 checkUnnamed1663(core.List<core.String> o) { | 1742 checkUnnamed1730(core.List<core.String> o) { |
| 1743 unittest.expect(o, unittest.hasLength(2)); | 1743 unittest.expect(o, unittest.hasLength(2)); |
| 1744 unittest.expect(o[0], unittest.equals('foo')); | 1744 unittest.expect(o[0], unittest.equals('foo')); |
| 1745 unittest.expect(o[1], unittest.equals('foo')); | 1745 unittest.expect(o[1], unittest.equals('foo')); |
| 1746 } | 1746 } |
| 1747 | 1747 |
| 1748 core.int buildCounterReferenceSet = 0; | 1748 core.int buildCounterReferenceSet = 0; |
| 1749 buildReferenceSet() { | 1749 buildReferenceSet() { |
| 1750 var o = new api.ReferenceSet(); | 1750 var o = new api.ReferenceSet(); |
| 1751 buildCounterReferenceSet++; | 1751 buildCounterReferenceSet++; |
| 1752 if (buildCounterReferenceSet < 3) { | 1752 if (buildCounterReferenceSet < 3) { |
| 1753 o.assemblyId = "foo"; | 1753 o.assemblyId = "foo"; |
| 1754 o.description = "foo"; | 1754 o.description = "foo"; |
| 1755 o.id = "foo"; | 1755 o.id = "foo"; |
| 1756 o.md5checksum = "foo"; | 1756 o.md5checksum = "foo"; |
| 1757 o.ncbiTaxonId = 42; | 1757 o.ncbiTaxonId = 42; |
| 1758 o.referenceIds = buildUnnamed1662(); | 1758 o.referenceIds = buildUnnamed1729(); |
| 1759 o.sourceAccessions = buildUnnamed1663(); | 1759 o.sourceAccessions = buildUnnamed1730(); |
| 1760 o.sourceURI = "foo"; | 1760 o.sourceURI = "foo"; |
| 1761 } | 1761 } |
| 1762 buildCounterReferenceSet--; | 1762 buildCounterReferenceSet--; |
| 1763 return o; | 1763 return o; |
| 1764 } | 1764 } |
| 1765 | 1765 |
| 1766 checkReferenceSet(api.ReferenceSet o) { | 1766 checkReferenceSet(api.ReferenceSet o) { |
| 1767 buildCounterReferenceSet++; | 1767 buildCounterReferenceSet++; |
| 1768 if (buildCounterReferenceSet < 3) { | 1768 if (buildCounterReferenceSet < 3) { |
| 1769 unittest.expect(o.assemblyId, unittest.equals('foo')); | 1769 unittest.expect(o.assemblyId, unittest.equals('foo')); |
| 1770 unittest.expect(o.description, unittest.equals('foo')); | 1770 unittest.expect(o.description, unittest.equals('foo')); |
| 1771 unittest.expect(o.id, unittest.equals('foo')); | 1771 unittest.expect(o.id, unittest.equals('foo')); |
| 1772 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1772 unittest.expect(o.md5checksum, unittest.equals('foo')); |
| 1773 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1773 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
| 1774 checkUnnamed1662(o.referenceIds); | 1774 checkUnnamed1729(o.referenceIds); |
| 1775 checkUnnamed1663(o.sourceAccessions); | 1775 checkUnnamed1730(o.sourceAccessions); |
| 1776 unittest.expect(o.sourceURI, unittest.equals('foo')); | 1776 unittest.expect(o.sourceURI, unittest.equals('foo')); |
| 1777 } | 1777 } |
| 1778 buildCounterReferenceSet--; | 1778 buildCounterReferenceSet--; |
| 1779 } | 1779 } |
| 1780 | 1780 |
| 1781 buildUnnamed1664() { | 1781 buildUnnamed1731() { |
| 1782 var o = new core.List<core.String>(); | 1782 var o = new core.List<core.String>(); |
| 1783 o.add("foo"); | 1783 o.add("foo"); |
| 1784 o.add("foo"); | 1784 o.add("foo"); |
| 1785 return o; | 1785 return o; |
| 1786 } | 1786 } |
| 1787 | 1787 |
| 1788 checkUnnamed1664(core.List<core.String> o) { | 1788 checkUnnamed1731(core.List<core.String> o) { |
| 1789 unittest.expect(o, unittest.hasLength(2)); | 1789 unittest.expect(o, unittest.hasLength(2)); |
| 1790 unittest.expect(o[0], unittest.equals('foo')); | 1790 unittest.expect(o[0], unittest.equals('foo')); |
| 1791 unittest.expect(o[1], unittest.equals('foo')); | 1791 unittest.expect(o[1], unittest.equals('foo')); |
| 1792 } | 1792 } |
| 1793 | 1793 |
| 1794 buildUnnamed1665() { | 1794 buildUnnamed1732() { |
| 1795 var o = new core.List<core.String>(); | 1795 var o = new core.List<core.String>(); |
| 1796 o.add("foo"); | 1796 o.add("foo"); |
| 1797 o.add("foo"); | 1797 o.add("foo"); |
| 1798 return o; | 1798 return o; |
| 1799 } | 1799 } |
| 1800 | 1800 |
| 1801 checkUnnamed1665(core.List<core.String> o) { | 1801 checkUnnamed1732(core.List<core.String> o) { |
| 1802 unittest.expect(o, unittest.hasLength(2)); | 1802 unittest.expect(o, unittest.hasLength(2)); |
| 1803 unittest.expect(o[0], unittest.equals('foo')); | 1803 unittest.expect(o[0], unittest.equals('foo')); |
| 1804 unittest.expect(o[1], unittest.equals('foo')); | 1804 unittest.expect(o[1], unittest.equals('foo')); |
| 1805 } | 1805 } |
| 1806 | 1806 |
| 1807 core.int buildCounterSearchAnnotationSetsRequest = 0; | 1807 core.int buildCounterSearchAnnotationSetsRequest = 0; |
| 1808 buildSearchAnnotationSetsRequest() { | 1808 buildSearchAnnotationSetsRequest() { |
| 1809 var o = new api.SearchAnnotationSetsRequest(); | 1809 var o = new api.SearchAnnotationSetsRequest(); |
| 1810 buildCounterSearchAnnotationSetsRequest++; | 1810 buildCounterSearchAnnotationSetsRequest++; |
| 1811 if (buildCounterSearchAnnotationSetsRequest < 3) { | 1811 if (buildCounterSearchAnnotationSetsRequest < 3) { |
| 1812 o.datasetIds = buildUnnamed1664(); | 1812 o.datasetIds = buildUnnamed1731(); |
| 1813 o.name = "foo"; | 1813 o.name = "foo"; |
| 1814 o.pageSize = 42; | 1814 o.pageSize = 42; |
| 1815 o.pageToken = "foo"; | 1815 o.pageToken = "foo"; |
| 1816 o.referenceSetId = "foo"; | 1816 o.referenceSetId = "foo"; |
| 1817 o.types = buildUnnamed1665(); | 1817 o.types = buildUnnamed1732(); |
| 1818 } | 1818 } |
| 1819 buildCounterSearchAnnotationSetsRequest--; | 1819 buildCounterSearchAnnotationSetsRequest--; |
| 1820 return o; | 1820 return o; |
| 1821 } | 1821 } |
| 1822 | 1822 |
| 1823 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { | 1823 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { |
| 1824 buildCounterSearchAnnotationSetsRequest++; | 1824 buildCounterSearchAnnotationSetsRequest++; |
| 1825 if (buildCounterSearchAnnotationSetsRequest < 3) { | 1825 if (buildCounterSearchAnnotationSetsRequest < 3) { |
| 1826 checkUnnamed1664(o.datasetIds); | 1826 checkUnnamed1731(o.datasetIds); |
| 1827 unittest.expect(o.name, unittest.equals('foo')); | 1827 unittest.expect(o.name, unittest.equals('foo')); |
| 1828 unittest.expect(o.pageSize, unittest.equals(42)); | 1828 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1829 unittest.expect(o.pageToken, unittest.equals('foo')); | 1829 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1830 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1830 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 1831 checkUnnamed1665(o.types); | 1831 checkUnnamed1732(o.types); |
| 1832 } | 1832 } |
| 1833 buildCounterSearchAnnotationSetsRequest--; | 1833 buildCounterSearchAnnotationSetsRequest--; |
| 1834 } | 1834 } |
| 1835 | 1835 |
| 1836 buildUnnamed1666() { | 1836 buildUnnamed1733() { |
| 1837 var o = new core.List<api.AnnotationSet>(); | 1837 var o = new core.List<api.AnnotationSet>(); |
| 1838 o.add(buildAnnotationSet()); | 1838 o.add(buildAnnotationSet()); |
| 1839 o.add(buildAnnotationSet()); | 1839 o.add(buildAnnotationSet()); |
| 1840 return o; | 1840 return o; |
| 1841 } | 1841 } |
| 1842 | 1842 |
| 1843 checkUnnamed1666(core.List<api.AnnotationSet> o) { | 1843 checkUnnamed1733(core.List<api.AnnotationSet> o) { |
| 1844 unittest.expect(o, unittest.hasLength(2)); | 1844 unittest.expect(o, unittest.hasLength(2)); |
| 1845 checkAnnotationSet(o[0]); | 1845 checkAnnotationSet(o[0]); |
| 1846 checkAnnotationSet(o[1]); | 1846 checkAnnotationSet(o[1]); |
| 1847 } | 1847 } |
| 1848 | 1848 |
| 1849 core.int buildCounterSearchAnnotationSetsResponse = 0; | 1849 core.int buildCounterSearchAnnotationSetsResponse = 0; |
| 1850 buildSearchAnnotationSetsResponse() { | 1850 buildSearchAnnotationSetsResponse() { |
| 1851 var o = new api.SearchAnnotationSetsResponse(); | 1851 var o = new api.SearchAnnotationSetsResponse(); |
| 1852 buildCounterSearchAnnotationSetsResponse++; | 1852 buildCounterSearchAnnotationSetsResponse++; |
| 1853 if (buildCounterSearchAnnotationSetsResponse < 3) { | 1853 if (buildCounterSearchAnnotationSetsResponse < 3) { |
| 1854 o.annotationSets = buildUnnamed1666(); | 1854 o.annotationSets = buildUnnamed1733(); |
| 1855 o.nextPageToken = "foo"; | 1855 o.nextPageToken = "foo"; |
| 1856 } | 1856 } |
| 1857 buildCounterSearchAnnotationSetsResponse--; | 1857 buildCounterSearchAnnotationSetsResponse--; |
| 1858 return o; | 1858 return o; |
| 1859 } | 1859 } |
| 1860 | 1860 |
| 1861 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { | 1861 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { |
| 1862 buildCounterSearchAnnotationSetsResponse++; | 1862 buildCounterSearchAnnotationSetsResponse++; |
| 1863 if (buildCounterSearchAnnotationSetsResponse < 3) { | 1863 if (buildCounterSearchAnnotationSetsResponse < 3) { |
| 1864 checkUnnamed1666(o.annotationSets); | 1864 checkUnnamed1733(o.annotationSets); |
| 1865 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1865 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1866 } | 1866 } |
| 1867 buildCounterSearchAnnotationSetsResponse--; | 1867 buildCounterSearchAnnotationSetsResponse--; |
| 1868 } | 1868 } |
| 1869 | 1869 |
| 1870 buildUnnamed1667() { | 1870 buildUnnamed1734() { |
| 1871 var o = new core.List<core.String>(); | 1871 var o = new core.List<core.String>(); |
| 1872 o.add("foo"); | 1872 o.add("foo"); |
| 1873 o.add("foo"); | 1873 o.add("foo"); |
| 1874 return o; | 1874 return o; |
| 1875 } | 1875 } |
| 1876 | 1876 |
| 1877 checkUnnamed1667(core.List<core.String> o) { | 1877 checkUnnamed1734(core.List<core.String> o) { |
| 1878 unittest.expect(o, unittest.hasLength(2)); | 1878 unittest.expect(o, unittest.hasLength(2)); |
| 1879 unittest.expect(o[0], unittest.equals('foo')); | 1879 unittest.expect(o[0], unittest.equals('foo')); |
| 1880 unittest.expect(o[1], unittest.equals('foo')); | 1880 unittest.expect(o[1], unittest.equals('foo')); |
| 1881 } | 1881 } |
| 1882 | 1882 |
| 1883 core.int buildCounterSearchAnnotationsRequest = 0; | 1883 core.int buildCounterSearchAnnotationsRequest = 0; |
| 1884 buildSearchAnnotationsRequest() { | 1884 buildSearchAnnotationsRequest() { |
| 1885 var o = new api.SearchAnnotationsRequest(); | 1885 var o = new api.SearchAnnotationsRequest(); |
| 1886 buildCounterSearchAnnotationsRequest++; | 1886 buildCounterSearchAnnotationsRequest++; |
| 1887 if (buildCounterSearchAnnotationsRequest < 3) { | 1887 if (buildCounterSearchAnnotationsRequest < 3) { |
| 1888 o.annotationSetIds = buildUnnamed1667(); | 1888 o.annotationSetIds = buildUnnamed1734(); |
| 1889 o.pageSize = 42; | 1889 o.pageSize = 42; |
| 1890 o.pageToken = "foo"; | 1890 o.pageToken = "foo"; |
| 1891 o.range = buildQueryRange(); | 1891 o.range = buildQueryRange(); |
| 1892 } | 1892 } |
| 1893 buildCounterSearchAnnotationsRequest--; | 1893 buildCounterSearchAnnotationsRequest--; |
| 1894 return o; | 1894 return o; |
| 1895 } | 1895 } |
| 1896 | 1896 |
| 1897 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { | 1897 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { |
| 1898 buildCounterSearchAnnotationsRequest++; | 1898 buildCounterSearchAnnotationsRequest++; |
| 1899 if (buildCounterSearchAnnotationsRequest < 3) { | 1899 if (buildCounterSearchAnnotationsRequest < 3) { |
| 1900 checkUnnamed1667(o.annotationSetIds); | 1900 checkUnnamed1734(o.annotationSetIds); |
| 1901 unittest.expect(o.pageSize, unittest.equals(42)); | 1901 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1902 unittest.expect(o.pageToken, unittest.equals('foo')); | 1902 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1903 checkQueryRange(o.range); | 1903 checkQueryRange(o.range); |
| 1904 } | 1904 } |
| 1905 buildCounterSearchAnnotationsRequest--; | 1905 buildCounterSearchAnnotationsRequest--; |
| 1906 } | 1906 } |
| 1907 | 1907 |
| 1908 buildUnnamed1668() { | 1908 buildUnnamed1735() { |
| 1909 var o = new core.List<api.Annotation>(); | 1909 var o = new core.List<api.Annotation>(); |
| 1910 o.add(buildAnnotation()); | 1910 o.add(buildAnnotation()); |
| 1911 o.add(buildAnnotation()); | 1911 o.add(buildAnnotation()); |
| 1912 return o; | 1912 return o; |
| 1913 } | 1913 } |
| 1914 | 1914 |
| 1915 checkUnnamed1668(core.List<api.Annotation> o) { | 1915 checkUnnamed1735(core.List<api.Annotation> o) { |
| 1916 unittest.expect(o, unittest.hasLength(2)); | 1916 unittest.expect(o, unittest.hasLength(2)); |
| 1917 checkAnnotation(o[0]); | 1917 checkAnnotation(o[0]); |
| 1918 checkAnnotation(o[1]); | 1918 checkAnnotation(o[1]); |
| 1919 } | 1919 } |
| 1920 | 1920 |
| 1921 core.int buildCounterSearchAnnotationsResponse = 0; | 1921 core.int buildCounterSearchAnnotationsResponse = 0; |
| 1922 buildSearchAnnotationsResponse() { | 1922 buildSearchAnnotationsResponse() { |
| 1923 var o = new api.SearchAnnotationsResponse(); | 1923 var o = new api.SearchAnnotationsResponse(); |
| 1924 buildCounterSearchAnnotationsResponse++; | 1924 buildCounterSearchAnnotationsResponse++; |
| 1925 if (buildCounterSearchAnnotationsResponse < 3) { | 1925 if (buildCounterSearchAnnotationsResponse < 3) { |
| 1926 o.annotations = buildUnnamed1668(); | 1926 o.annotations = buildUnnamed1735(); |
| 1927 o.nextPageToken = "foo"; | 1927 o.nextPageToken = "foo"; |
| 1928 } | 1928 } |
| 1929 buildCounterSearchAnnotationsResponse--; | 1929 buildCounterSearchAnnotationsResponse--; |
| 1930 return o; | 1930 return o; |
| 1931 } | 1931 } |
| 1932 | 1932 |
| 1933 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { | 1933 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { |
| 1934 buildCounterSearchAnnotationsResponse++; | 1934 buildCounterSearchAnnotationsResponse++; |
| 1935 if (buildCounterSearchAnnotationsResponse < 3) { | 1935 if (buildCounterSearchAnnotationsResponse < 3) { |
| 1936 checkUnnamed1668(o.annotations); | 1936 checkUnnamed1735(o.annotations); |
| 1937 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1937 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1938 } | 1938 } |
| 1939 buildCounterSearchAnnotationsResponse--; | 1939 buildCounterSearchAnnotationsResponse--; |
| 1940 } | 1940 } |
| 1941 | 1941 |
| 1942 buildUnnamed1669() { | 1942 buildUnnamed1736() { |
| 1943 var o = new core.List<core.String>(); | 1943 var o = new core.List<core.String>(); |
| 1944 o.add("foo"); | 1944 o.add("foo"); |
| 1945 o.add("foo"); | 1945 o.add("foo"); |
| 1946 return o; | 1946 return o; |
| 1947 } | 1947 } |
| 1948 | 1948 |
| 1949 checkUnnamed1669(core.List<core.String> o) { | 1949 checkUnnamed1736(core.List<core.String> o) { |
| 1950 unittest.expect(o, unittest.hasLength(2)); | 1950 unittest.expect(o, unittest.hasLength(2)); |
| 1951 unittest.expect(o[0], unittest.equals('foo')); | 1951 unittest.expect(o[0], unittest.equals('foo')); |
| 1952 unittest.expect(o[1], unittest.equals('foo')); | 1952 unittest.expect(o[1], unittest.equals('foo')); |
| 1953 } | 1953 } |
| 1954 | 1954 |
| 1955 core.int buildCounterSearchCallSetsRequest = 0; | 1955 core.int buildCounterSearchCallSetsRequest = 0; |
| 1956 buildSearchCallSetsRequest() { | 1956 buildSearchCallSetsRequest() { |
| 1957 var o = new api.SearchCallSetsRequest(); | 1957 var o = new api.SearchCallSetsRequest(); |
| 1958 buildCounterSearchCallSetsRequest++; | 1958 buildCounterSearchCallSetsRequest++; |
| 1959 if (buildCounterSearchCallSetsRequest < 3) { | 1959 if (buildCounterSearchCallSetsRequest < 3) { |
| 1960 o.name = "foo"; | 1960 o.name = "foo"; |
| 1961 o.pageSize = 42; | 1961 o.pageSize = 42; |
| 1962 o.pageToken = "foo"; | 1962 o.pageToken = "foo"; |
| 1963 o.variantSetIds = buildUnnamed1669(); | 1963 o.variantSetIds = buildUnnamed1736(); |
| 1964 } | 1964 } |
| 1965 buildCounterSearchCallSetsRequest--; | 1965 buildCounterSearchCallSetsRequest--; |
| 1966 return o; | 1966 return o; |
| 1967 } | 1967 } |
| 1968 | 1968 |
| 1969 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { | 1969 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { |
| 1970 buildCounterSearchCallSetsRequest++; | 1970 buildCounterSearchCallSetsRequest++; |
| 1971 if (buildCounterSearchCallSetsRequest < 3) { | 1971 if (buildCounterSearchCallSetsRequest < 3) { |
| 1972 unittest.expect(o.name, unittest.equals('foo')); | 1972 unittest.expect(o.name, unittest.equals('foo')); |
| 1973 unittest.expect(o.pageSize, unittest.equals(42)); | 1973 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1974 unittest.expect(o.pageToken, unittest.equals('foo')); | 1974 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1975 checkUnnamed1669(o.variantSetIds); | 1975 checkUnnamed1736(o.variantSetIds); |
| 1976 } | 1976 } |
| 1977 buildCounterSearchCallSetsRequest--; | 1977 buildCounterSearchCallSetsRequest--; |
| 1978 } | 1978 } |
| 1979 | 1979 |
| 1980 buildUnnamed1670() { | 1980 buildUnnamed1737() { |
| 1981 var o = new core.List<api.CallSet>(); | 1981 var o = new core.List<api.CallSet>(); |
| 1982 o.add(buildCallSet()); | 1982 o.add(buildCallSet()); |
| 1983 o.add(buildCallSet()); | 1983 o.add(buildCallSet()); |
| 1984 return o; | 1984 return o; |
| 1985 } | 1985 } |
| 1986 | 1986 |
| 1987 checkUnnamed1670(core.List<api.CallSet> o) { | 1987 checkUnnamed1737(core.List<api.CallSet> o) { |
| 1988 unittest.expect(o, unittest.hasLength(2)); | 1988 unittest.expect(o, unittest.hasLength(2)); |
| 1989 checkCallSet(o[0]); | 1989 checkCallSet(o[0]); |
| 1990 checkCallSet(o[1]); | 1990 checkCallSet(o[1]); |
| 1991 } | 1991 } |
| 1992 | 1992 |
| 1993 core.int buildCounterSearchCallSetsResponse = 0; | 1993 core.int buildCounterSearchCallSetsResponse = 0; |
| 1994 buildSearchCallSetsResponse() { | 1994 buildSearchCallSetsResponse() { |
| 1995 var o = new api.SearchCallSetsResponse(); | 1995 var o = new api.SearchCallSetsResponse(); |
| 1996 buildCounterSearchCallSetsResponse++; | 1996 buildCounterSearchCallSetsResponse++; |
| 1997 if (buildCounterSearchCallSetsResponse < 3) { | 1997 if (buildCounterSearchCallSetsResponse < 3) { |
| 1998 o.callSets = buildUnnamed1670(); | 1998 o.callSets = buildUnnamed1737(); |
| 1999 o.nextPageToken = "foo"; | 1999 o.nextPageToken = "foo"; |
| 2000 } | 2000 } |
| 2001 buildCounterSearchCallSetsResponse--; | 2001 buildCounterSearchCallSetsResponse--; |
| 2002 return o; | 2002 return o; |
| 2003 } | 2003 } |
| 2004 | 2004 |
| 2005 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { | 2005 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { |
| 2006 buildCounterSearchCallSetsResponse++; | 2006 buildCounterSearchCallSetsResponse++; |
| 2007 if (buildCounterSearchCallSetsResponse < 3) { | 2007 if (buildCounterSearchCallSetsResponse < 3) { |
| 2008 checkUnnamed1670(o.callSets); | 2008 checkUnnamed1737(o.callSets); |
| 2009 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2009 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2010 } | 2010 } |
| 2011 buildCounterSearchCallSetsResponse--; | 2011 buildCounterSearchCallSetsResponse--; |
| 2012 } | 2012 } |
| 2013 | 2013 |
| 2014 buildUnnamed1671() { | 2014 buildUnnamed1738() { |
| 2015 var o = new core.List<core.String>(); | 2015 var o = new core.List<core.String>(); |
| 2016 o.add("foo"); | 2016 o.add("foo"); |
| 2017 o.add("foo"); | 2017 o.add("foo"); |
| 2018 return o; | 2018 return o; |
| 2019 } | 2019 } |
| 2020 | 2020 |
| 2021 checkUnnamed1671(core.List<core.String> o) { | 2021 checkUnnamed1738(core.List<core.String> o) { |
| 2022 unittest.expect(o, unittest.hasLength(2)); | 2022 unittest.expect(o, unittest.hasLength(2)); |
| 2023 unittest.expect(o[0], unittest.equals('foo')); | 2023 unittest.expect(o[0], unittest.equals('foo')); |
| 2024 unittest.expect(o[1], unittest.equals('foo')); | 2024 unittest.expect(o[1], unittest.equals('foo')); |
| 2025 } | 2025 } |
| 2026 | 2026 |
| 2027 core.int buildCounterSearchJobsRequest = 0; | 2027 core.int buildCounterSearchJobsRequest = 0; |
| 2028 buildSearchJobsRequest() { | 2028 buildSearchJobsRequest() { |
| 2029 var o = new api.SearchJobsRequest(); | 2029 var o = new api.SearchJobsRequest(); |
| 2030 buildCounterSearchJobsRequest++; | 2030 buildCounterSearchJobsRequest++; |
| 2031 if (buildCounterSearchJobsRequest < 3) { | 2031 if (buildCounterSearchJobsRequest < 3) { |
| 2032 o.createdAfter = "foo"; | 2032 o.createdAfter = "foo"; |
| 2033 o.createdBefore = "foo"; | 2033 o.createdBefore = "foo"; |
| 2034 o.pageSize = 42; | 2034 o.pageSize = 42; |
| 2035 o.pageToken = "foo"; | 2035 o.pageToken = "foo"; |
| 2036 o.projectNumber = "foo"; | 2036 o.projectNumber = "foo"; |
| 2037 o.status = buildUnnamed1671(); | 2037 o.status = buildUnnamed1738(); |
| 2038 } | 2038 } |
| 2039 buildCounterSearchJobsRequest--; | 2039 buildCounterSearchJobsRequest--; |
| 2040 return o; | 2040 return o; |
| 2041 } | 2041 } |
| 2042 | 2042 |
| 2043 checkSearchJobsRequest(api.SearchJobsRequest o) { | 2043 checkSearchJobsRequest(api.SearchJobsRequest o) { |
| 2044 buildCounterSearchJobsRequest++; | 2044 buildCounterSearchJobsRequest++; |
| 2045 if (buildCounterSearchJobsRequest < 3) { | 2045 if (buildCounterSearchJobsRequest < 3) { |
| 2046 unittest.expect(o.createdAfter, unittest.equals('foo')); | 2046 unittest.expect(o.createdAfter, unittest.equals('foo')); |
| 2047 unittest.expect(o.createdBefore, unittest.equals('foo')); | 2047 unittest.expect(o.createdBefore, unittest.equals('foo')); |
| 2048 unittest.expect(o.pageSize, unittest.equals(42)); | 2048 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2049 unittest.expect(o.pageToken, unittest.equals('foo')); | 2049 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2050 unittest.expect(o.projectNumber, unittest.equals('foo')); | 2050 unittest.expect(o.projectNumber, unittest.equals('foo')); |
| 2051 checkUnnamed1671(o.status); | 2051 checkUnnamed1738(o.status); |
| 2052 } | 2052 } |
| 2053 buildCounterSearchJobsRequest--; | 2053 buildCounterSearchJobsRequest--; |
| 2054 } | 2054 } |
| 2055 | 2055 |
| 2056 buildUnnamed1672() { | 2056 buildUnnamed1739() { |
| 2057 var o = new core.List<api.Job>(); | 2057 var o = new core.List<api.Job>(); |
| 2058 o.add(buildJob()); | 2058 o.add(buildJob()); |
| 2059 o.add(buildJob()); | 2059 o.add(buildJob()); |
| 2060 return o; | 2060 return o; |
| 2061 } | 2061 } |
| 2062 | 2062 |
| 2063 checkUnnamed1672(core.List<api.Job> o) { | 2063 checkUnnamed1739(core.List<api.Job> o) { |
| 2064 unittest.expect(o, unittest.hasLength(2)); | 2064 unittest.expect(o, unittest.hasLength(2)); |
| 2065 checkJob(o[0]); | 2065 checkJob(o[0]); |
| 2066 checkJob(o[1]); | 2066 checkJob(o[1]); |
| 2067 } | 2067 } |
| 2068 | 2068 |
| 2069 core.int buildCounterSearchJobsResponse = 0; | 2069 core.int buildCounterSearchJobsResponse = 0; |
| 2070 buildSearchJobsResponse() { | 2070 buildSearchJobsResponse() { |
| 2071 var o = new api.SearchJobsResponse(); | 2071 var o = new api.SearchJobsResponse(); |
| 2072 buildCounterSearchJobsResponse++; | 2072 buildCounterSearchJobsResponse++; |
| 2073 if (buildCounterSearchJobsResponse < 3) { | 2073 if (buildCounterSearchJobsResponse < 3) { |
| 2074 o.jobs = buildUnnamed1672(); | 2074 o.jobs = buildUnnamed1739(); |
| 2075 o.nextPageToken = "foo"; | 2075 o.nextPageToken = "foo"; |
| 2076 } | 2076 } |
| 2077 buildCounterSearchJobsResponse--; | 2077 buildCounterSearchJobsResponse--; |
| 2078 return o; | 2078 return o; |
| 2079 } | 2079 } |
| 2080 | 2080 |
| 2081 checkSearchJobsResponse(api.SearchJobsResponse o) { | 2081 checkSearchJobsResponse(api.SearchJobsResponse o) { |
| 2082 buildCounterSearchJobsResponse++; | 2082 buildCounterSearchJobsResponse++; |
| 2083 if (buildCounterSearchJobsResponse < 3) { | 2083 if (buildCounterSearchJobsResponse < 3) { |
| 2084 checkUnnamed1672(o.jobs); | 2084 checkUnnamed1739(o.jobs); |
| 2085 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2085 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2086 } | 2086 } |
| 2087 buildCounterSearchJobsResponse--; | 2087 buildCounterSearchJobsResponse--; |
| 2088 } | 2088 } |
| 2089 | 2089 |
| 2090 buildUnnamed1673() { | 2090 buildUnnamed1740() { |
| 2091 var o = new core.List<core.String>(); | 2091 var o = new core.List<core.String>(); |
| 2092 o.add("foo"); | 2092 o.add("foo"); |
| 2093 o.add("foo"); | 2093 o.add("foo"); |
| 2094 return o; | 2094 return o; |
| 2095 } | 2095 } |
| 2096 | 2096 |
| 2097 checkUnnamed1673(core.List<core.String> o) { | 2097 checkUnnamed1740(core.List<core.String> o) { |
| 2098 unittest.expect(o, unittest.hasLength(2)); | 2098 unittest.expect(o, unittest.hasLength(2)); |
| 2099 unittest.expect(o[0], unittest.equals('foo')); | 2099 unittest.expect(o[0], unittest.equals('foo')); |
| 2100 unittest.expect(o[1], unittest.equals('foo')); | 2100 unittest.expect(o[1], unittest.equals('foo')); |
| 2101 } | 2101 } |
| 2102 | 2102 |
| 2103 core.int buildCounterSearchReadGroupSetsRequest = 0; | 2103 core.int buildCounterSearchReadGroupSetsRequest = 0; |
| 2104 buildSearchReadGroupSetsRequest() { | 2104 buildSearchReadGroupSetsRequest() { |
| 2105 var o = new api.SearchReadGroupSetsRequest(); | 2105 var o = new api.SearchReadGroupSetsRequest(); |
| 2106 buildCounterSearchReadGroupSetsRequest++; | 2106 buildCounterSearchReadGroupSetsRequest++; |
| 2107 if (buildCounterSearchReadGroupSetsRequest < 3) { | 2107 if (buildCounterSearchReadGroupSetsRequest < 3) { |
| 2108 o.datasetIds = buildUnnamed1673(); | 2108 o.datasetIds = buildUnnamed1740(); |
| 2109 o.name = "foo"; | 2109 o.name = "foo"; |
| 2110 o.pageSize = 42; | 2110 o.pageSize = 42; |
| 2111 o.pageToken = "foo"; | 2111 o.pageToken = "foo"; |
| 2112 } | 2112 } |
| 2113 buildCounterSearchReadGroupSetsRequest--; | 2113 buildCounterSearchReadGroupSetsRequest--; |
| 2114 return o; | 2114 return o; |
| 2115 } | 2115 } |
| 2116 | 2116 |
| 2117 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { | 2117 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { |
| 2118 buildCounterSearchReadGroupSetsRequest++; | 2118 buildCounterSearchReadGroupSetsRequest++; |
| 2119 if (buildCounterSearchReadGroupSetsRequest < 3) { | 2119 if (buildCounterSearchReadGroupSetsRequest < 3) { |
| 2120 checkUnnamed1673(o.datasetIds); | 2120 checkUnnamed1740(o.datasetIds); |
| 2121 unittest.expect(o.name, unittest.equals('foo')); | 2121 unittest.expect(o.name, unittest.equals('foo')); |
| 2122 unittest.expect(o.pageSize, unittest.equals(42)); | 2122 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2123 unittest.expect(o.pageToken, unittest.equals('foo')); | 2123 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2124 } | 2124 } |
| 2125 buildCounterSearchReadGroupSetsRequest--; | 2125 buildCounterSearchReadGroupSetsRequest--; |
| 2126 } | 2126 } |
| 2127 | 2127 |
| 2128 buildUnnamed1674() { | 2128 buildUnnamed1741() { |
| 2129 var o = new core.List<api.ReadGroupSet>(); | 2129 var o = new core.List<api.ReadGroupSet>(); |
| 2130 o.add(buildReadGroupSet()); | 2130 o.add(buildReadGroupSet()); |
| 2131 o.add(buildReadGroupSet()); | 2131 o.add(buildReadGroupSet()); |
| 2132 return o; | 2132 return o; |
| 2133 } | 2133 } |
| 2134 | 2134 |
| 2135 checkUnnamed1674(core.List<api.ReadGroupSet> o) { | 2135 checkUnnamed1741(core.List<api.ReadGroupSet> o) { |
| 2136 unittest.expect(o, unittest.hasLength(2)); | 2136 unittest.expect(o, unittest.hasLength(2)); |
| 2137 checkReadGroupSet(o[0]); | 2137 checkReadGroupSet(o[0]); |
| 2138 checkReadGroupSet(o[1]); | 2138 checkReadGroupSet(o[1]); |
| 2139 } | 2139 } |
| 2140 | 2140 |
| 2141 core.int buildCounterSearchReadGroupSetsResponse = 0; | 2141 core.int buildCounterSearchReadGroupSetsResponse = 0; |
| 2142 buildSearchReadGroupSetsResponse() { | 2142 buildSearchReadGroupSetsResponse() { |
| 2143 var o = new api.SearchReadGroupSetsResponse(); | 2143 var o = new api.SearchReadGroupSetsResponse(); |
| 2144 buildCounterSearchReadGroupSetsResponse++; | 2144 buildCounterSearchReadGroupSetsResponse++; |
| 2145 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2145 if (buildCounterSearchReadGroupSetsResponse < 3) { |
| 2146 o.nextPageToken = "foo"; | 2146 o.nextPageToken = "foo"; |
| 2147 o.readGroupSets = buildUnnamed1674(); | 2147 o.readGroupSets = buildUnnamed1741(); |
| 2148 } | 2148 } |
| 2149 buildCounterSearchReadGroupSetsResponse--; | 2149 buildCounterSearchReadGroupSetsResponse--; |
| 2150 return o; | 2150 return o; |
| 2151 } | 2151 } |
| 2152 | 2152 |
| 2153 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { | 2153 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { |
| 2154 buildCounterSearchReadGroupSetsResponse++; | 2154 buildCounterSearchReadGroupSetsResponse++; |
| 2155 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2155 if (buildCounterSearchReadGroupSetsResponse < 3) { |
| 2156 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2156 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2157 checkUnnamed1674(o.readGroupSets); | 2157 checkUnnamed1741(o.readGroupSets); |
| 2158 } | 2158 } |
| 2159 buildCounterSearchReadGroupSetsResponse--; | 2159 buildCounterSearchReadGroupSetsResponse--; |
| 2160 } | 2160 } |
| 2161 | 2161 |
| 2162 buildUnnamed1675() { | 2162 buildUnnamed1742() { |
| 2163 var o = new core.List<core.String>(); | 2163 var o = new core.List<core.String>(); |
| 2164 o.add("foo"); | 2164 o.add("foo"); |
| 2165 o.add("foo"); | 2165 o.add("foo"); |
| 2166 return o; | 2166 return o; |
| 2167 } | 2167 } |
| 2168 | 2168 |
| 2169 checkUnnamed1675(core.List<core.String> o) { | 2169 checkUnnamed1742(core.List<core.String> o) { |
| 2170 unittest.expect(o, unittest.hasLength(2)); | 2170 unittest.expect(o, unittest.hasLength(2)); |
| 2171 unittest.expect(o[0], unittest.equals('foo')); | 2171 unittest.expect(o[0], unittest.equals('foo')); |
| 2172 unittest.expect(o[1], unittest.equals('foo')); | 2172 unittest.expect(o[1], unittest.equals('foo')); |
| 2173 } | 2173 } |
| 2174 | 2174 |
| 2175 buildUnnamed1676() { | 2175 buildUnnamed1743() { |
| 2176 var o = new core.List<core.String>(); | 2176 var o = new core.List<core.String>(); |
| 2177 o.add("foo"); | 2177 o.add("foo"); |
| 2178 o.add("foo"); | 2178 o.add("foo"); |
| 2179 return o; | 2179 return o; |
| 2180 } | 2180 } |
| 2181 | 2181 |
| 2182 checkUnnamed1676(core.List<core.String> o) { | 2182 checkUnnamed1743(core.List<core.String> o) { |
| 2183 unittest.expect(o, unittest.hasLength(2)); | 2183 unittest.expect(o, unittest.hasLength(2)); |
| 2184 unittest.expect(o[0], unittest.equals('foo')); | 2184 unittest.expect(o[0], unittest.equals('foo')); |
| 2185 unittest.expect(o[1], unittest.equals('foo')); | 2185 unittest.expect(o[1], unittest.equals('foo')); |
| 2186 } | 2186 } |
| 2187 | 2187 |
| 2188 core.int buildCounterSearchReadsRequest = 0; | 2188 core.int buildCounterSearchReadsRequest = 0; |
| 2189 buildSearchReadsRequest() { | 2189 buildSearchReadsRequest() { |
| 2190 var o = new api.SearchReadsRequest(); | 2190 var o = new api.SearchReadsRequest(); |
| 2191 buildCounterSearchReadsRequest++; | 2191 buildCounterSearchReadsRequest++; |
| 2192 if (buildCounterSearchReadsRequest < 3) { | 2192 if (buildCounterSearchReadsRequest < 3) { |
| 2193 o.end = "foo"; | 2193 o.end = "foo"; |
| 2194 o.pageSize = 42; | 2194 o.pageSize = 42; |
| 2195 o.pageToken = "foo"; | 2195 o.pageToken = "foo"; |
| 2196 o.readGroupIds = buildUnnamed1675(); | 2196 o.readGroupIds = buildUnnamed1742(); |
| 2197 o.readGroupSetIds = buildUnnamed1676(); | 2197 o.readGroupSetIds = buildUnnamed1743(); |
| 2198 o.referenceName = "foo"; | 2198 o.referenceName = "foo"; |
| 2199 o.start = "foo"; | 2199 o.start = "foo"; |
| 2200 } | 2200 } |
| 2201 buildCounterSearchReadsRequest--; | 2201 buildCounterSearchReadsRequest--; |
| 2202 return o; | 2202 return o; |
| 2203 } | 2203 } |
| 2204 | 2204 |
| 2205 checkSearchReadsRequest(api.SearchReadsRequest o) { | 2205 checkSearchReadsRequest(api.SearchReadsRequest o) { |
| 2206 buildCounterSearchReadsRequest++; | 2206 buildCounterSearchReadsRequest++; |
| 2207 if (buildCounterSearchReadsRequest < 3) { | 2207 if (buildCounterSearchReadsRequest < 3) { |
| 2208 unittest.expect(o.end, unittest.equals('foo')); | 2208 unittest.expect(o.end, unittest.equals('foo')); |
| 2209 unittest.expect(o.pageSize, unittest.equals(42)); | 2209 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2210 unittest.expect(o.pageToken, unittest.equals('foo')); | 2210 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2211 checkUnnamed1675(o.readGroupIds); | 2211 checkUnnamed1742(o.readGroupIds); |
| 2212 checkUnnamed1676(o.readGroupSetIds); | 2212 checkUnnamed1743(o.readGroupSetIds); |
| 2213 unittest.expect(o.referenceName, unittest.equals('foo')); | 2213 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2214 unittest.expect(o.start, unittest.equals('foo')); | 2214 unittest.expect(o.start, unittest.equals('foo')); |
| 2215 } | 2215 } |
| 2216 buildCounterSearchReadsRequest--; | 2216 buildCounterSearchReadsRequest--; |
| 2217 } | 2217 } |
| 2218 | 2218 |
| 2219 buildUnnamed1677() { | 2219 buildUnnamed1744() { |
| 2220 var o = new core.List<api.Read>(); | 2220 var o = new core.List<api.Read>(); |
| 2221 o.add(buildRead()); | 2221 o.add(buildRead()); |
| 2222 o.add(buildRead()); | 2222 o.add(buildRead()); |
| 2223 return o; | 2223 return o; |
| 2224 } | 2224 } |
| 2225 | 2225 |
| 2226 checkUnnamed1677(core.List<api.Read> o) { | 2226 checkUnnamed1744(core.List<api.Read> o) { |
| 2227 unittest.expect(o, unittest.hasLength(2)); | 2227 unittest.expect(o, unittest.hasLength(2)); |
| 2228 checkRead(o[0]); | 2228 checkRead(o[0]); |
| 2229 checkRead(o[1]); | 2229 checkRead(o[1]); |
| 2230 } | 2230 } |
| 2231 | 2231 |
| 2232 core.int buildCounterSearchReadsResponse = 0; | 2232 core.int buildCounterSearchReadsResponse = 0; |
| 2233 buildSearchReadsResponse() { | 2233 buildSearchReadsResponse() { |
| 2234 var o = new api.SearchReadsResponse(); | 2234 var o = new api.SearchReadsResponse(); |
| 2235 buildCounterSearchReadsResponse++; | 2235 buildCounterSearchReadsResponse++; |
| 2236 if (buildCounterSearchReadsResponse < 3) { | 2236 if (buildCounterSearchReadsResponse < 3) { |
| 2237 o.alignments = buildUnnamed1677(); | 2237 o.alignments = buildUnnamed1744(); |
| 2238 o.nextPageToken = "foo"; | 2238 o.nextPageToken = "foo"; |
| 2239 } | 2239 } |
| 2240 buildCounterSearchReadsResponse--; | 2240 buildCounterSearchReadsResponse--; |
| 2241 return o; | 2241 return o; |
| 2242 } | 2242 } |
| 2243 | 2243 |
| 2244 checkSearchReadsResponse(api.SearchReadsResponse o) { | 2244 checkSearchReadsResponse(api.SearchReadsResponse o) { |
| 2245 buildCounterSearchReadsResponse++; | 2245 buildCounterSearchReadsResponse++; |
| 2246 if (buildCounterSearchReadsResponse < 3) { | 2246 if (buildCounterSearchReadsResponse < 3) { |
| 2247 checkUnnamed1677(o.alignments); | 2247 checkUnnamed1744(o.alignments); |
| 2248 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2248 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2249 } | 2249 } |
| 2250 buildCounterSearchReadsResponse--; | 2250 buildCounterSearchReadsResponse--; |
| 2251 } | 2251 } |
| 2252 | 2252 |
| 2253 buildUnnamed1678() { | 2253 buildUnnamed1745() { |
| 2254 var o = new core.List<core.String>(); | 2254 var o = new core.List<core.String>(); |
| 2255 o.add("foo"); | 2255 o.add("foo"); |
| 2256 o.add("foo"); | 2256 o.add("foo"); |
| 2257 return o; | 2257 return o; |
| 2258 } | 2258 } |
| 2259 | 2259 |
| 2260 checkUnnamed1678(core.List<core.String> o) { | 2260 checkUnnamed1745(core.List<core.String> o) { |
| 2261 unittest.expect(o, unittest.hasLength(2)); | 2261 unittest.expect(o, unittest.hasLength(2)); |
| 2262 unittest.expect(o[0], unittest.equals('foo')); | 2262 unittest.expect(o[0], unittest.equals('foo')); |
| 2263 unittest.expect(o[1], unittest.equals('foo')); | 2263 unittest.expect(o[1], unittest.equals('foo')); |
| 2264 } | 2264 } |
| 2265 | 2265 |
| 2266 buildUnnamed1679() { | 2266 buildUnnamed1746() { |
| 2267 var o = new core.List<core.String>(); | 2267 var o = new core.List<core.String>(); |
| 2268 o.add("foo"); | 2268 o.add("foo"); |
| 2269 o.add("foo"); | 2269 o.add("foo"); |
| 2270 return o; | 2270 return o; |
| 2271 } | 2271 } |
| 2272 | 2272 |
| 2273 checkUnnamed1679(core.List<core.String> o) { | 2273 checkUnnamed1746(core.List<core.String> o) { |
| 2274 unittest.expect(o, unittest.hasLength(2)); | 2274 unittest.expect(o, unittest.hasLength(2)); |
| 2275 unittest.expect(o[0], unittest.equals('foo')); | 2275 unittest.expect(o[0], unittest.equals('foo')); |
| 2276 unittest.expect(o[1], unittest.equals('foo')); | 2276 unittest.expect(o[1], unittest.equals('foo')); |
| 2277 } | 2277 } |
| 2278 | 2278 |
| 2279 core.int buildCounterSearchReferenceSetsRequest = 0; | 2279 core.int buildCounterSearchReferenceSetsRequest = 0; |
| 2280 buildSearchReferenceSetsRequest() { | 2280 buildSearchReferenceSetsRequest() { |
| 2281 var o = new api.SearchReferenceSetsRequest(); | 2281 var o = new api.SearchReferenceSetsRequest(); |
| 2282 buildCounterSearchReferenceSetsRequest++; | 2282 buildCounterSearchReferenceSetsRequest++; |
| 2283 if (buildCounterSearchReferenceSetsRequest < 3) { | 2283 if (buildCounterSearchReferenceSetsRequest < 3) { |
| 2284 o.accessions = buildUnnamed1678(); | 2284 o.accessions = buildUnnamed1745(); |
| 2285 o.md5checksums = buildUnnamed1679(); | 2285 o.md5checksums = buildUnnamed1746(); |
| 2286 o.pageSize = 42; | 2286 o.pageSize = 42; |
| 2287 o.pageToken = "foo"; | 2287 o.pageToken = "foo"; |
| 2288 } | 2288 } |
| 2289 buildCounterSearchReferenceSetsRequest--; | 2289 buildCounterSearchReferenceSetsRequest--; |
| 2290 return o; | 2290 return o; |
| 2291 } | 2291 } |
| 2292 | 2292 |
| 2293 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { | 2293 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { |
| 2294 buildCounterSearchReferenceSetsRequest++; | 2294 buildCounterSearchReferenceSetsRequest++; |
| 2295 if (buildCounterSearchReferenceSetsRequest < 3) { | 2295 if (buildCounterSearchReferenceSetsRequest < 3) { |
| 2296 checkUnnamed1678(o.accessions); | 2296 checkUnnamed1745(o.accessions); |
| 2297 checkUnnamed1679(o.md5checksums); | 2297 checkUnnamed1746(o.md5checksums); |
| 2298 unittest.expect(o.pageSize, unittest.equals(42)); | 2298 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2299 unittest.expect(o.pageToken, unittest.equals('foo')); | 2299 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2300 } | 2300 } |
| 2301 buildCounterSearchReferenceSetsRequest--; | 2301 buildCounterSearchReferenceSetsRequest--; |
| 2302 } | 2302 } |
| 2303 | 2303 |
| 2304 buildUnnamed1680() { | 2304 buildUnnamed1747() { |
| 2305 var o = new core.List<api.ReferenceSet>(); | 2305 var o = new core.List<api.ReferenceSet>(); |
| 2306 o.add(buildReferenceSet()); | 2306 o.add(buildReferenceSet()); |
| 2307 o.add(buildReferenceSet()); | 2307 o.add(buildReferenceSet()); |
| 2308 return o; | 2308 return o; |
| 2309 } | 2309 } |
| 2310 | 2310 |
| 2311 checkUnnamed1680(core.List<api.ReferenceSet> o) { | 2311 checkUnnamed1747(core.List<api.ReferenceSet> o) { |
| 2312 unittest.expect(o, unittest.hasLength(2)); | 2312 unittest.expect(o, unittest.hasLength(2)); |
| 2313 checkReferenceSet(o[0]); | 2313 checkReferenceSet(o[0]); |
| 2314 checkReferenceSet(o[1]); | 2314 checkReferenceSet(o[1]); |
| 2315 } | 2315 } |
| 2316 | 2316 |
| 2317 core.int buildCounterSearchReferenceSetsResponse = 0; | 2317 core.int buildCounterSearchReferenceSetsResponse = 0; |
| 2318 buildSearchReferenceSetsResponse() { | 2318 buildSearchReferenceSetsResponse() { |
| 2319 var o = new api.SearchReferenceSetsResponse(); | 2319 var o = new api.SearchReferenceSetsResponse(); |
| 2320 buildCounterSearchReferenceSetsResponse++; | 2320 buildCounterSearchReferenceSetsResponse++; |
| 2321 if (buildCounterSearchReferenceSetsResponse < 3) { | 2321 if (buildCounterSearchReferenceSetsResponse < 3) { |
| 2322 o.nextPageToken = "foo"; | 2322 o.nextPageToken = "foo"; |
| 2323 o.referenceSets = buildUnnamed1680(); | 2323 o.referenceSets = buildUnnamed1747(); |
| 2324 } | 2324 } |
| 2325 buildCounterSearchReferenceSetsResponse--; | 2325 buildCounterSearchReferenceSetsResponse--; |
| 2326 return o; | 2326 return o; |
| 2327 } | 2327 } |
| 2328 | 2328 |
| 2329 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { | 2329 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { |
| 2330 buildCounterSearchReferenceSetsResponse++; | 2330 buildCounterSearchReferenceSetsResponse++; |
| 2331 if (buildCounterSearchReferenceSetsResponse < 3) { | 2331 if (buildCounterSearchReferenceSetsResponse < 3) { |
| 2332 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2332 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2333 checkUnnamed1680(o.referenceSets); | 2333 checkUnnamed1747(o.referenceSets); |
| 2334 } | 2334 } |
| 2335 buildCounterSearchReferenceSetsResponse--; | 2335 buildCounterSearchReferenceSetsResponse--; |
| 2336 } | 2336 } |
| 2337 | 2337 |
| 2338 buildUnnamed1681() { | 2338 buildUnnamed1748() { |
| 2339 var o = new core.List<core.String>(); | 2339 var o = new core.List<core.String>(); |
| 2340 o.add("foo"); | 2340 o.add("foo"); |
| 2341 o.add("foo"); | 2341 o.add("foo"); |
| 2342 return o; | 2342 return o; |
| 2343 } | 2343 } |
| 2344 | 2344 |
| 2345 checkUnnamed1681(core.List<core.String> o) { | 2345 checkUnnamed1748(core.List<core.String> o) { |
| 2346 unittest.expect(o, unittest.hasLength(2)); | 2346 unittest.expect(o, unittest.hasLength(2)); |
| 2347 unittest.expect(o[0], unittest.equals('foo')); | 2347 unittest.expect(o[0], unittest.equals('foo')); |
| 2348 unittest.expect(o[1], unittest.equals('foo')); | 2348 unittest.expect(o[1], unittest.equals('foo')); |
| 2349 } | 2349 } |
| 2350 | 2350 |
| 2351 buildUnnamed1682() { | 2351 buildUnnamed1749() { |
| 2352 var o = new core.List<core.String>(); | 2352 var o = new core.List<core.String>(); |
| 2353 o.add("foo"); | 2353 o.add("foo"); |
| 2354 o.add("foo"); | 2354 o.add("foo"); |
| 2355 return o; | 2355 return o; |
| 2356 } | 2356 } |
| 2357 | 2357 |
| 2358 checkUnnamed1682(core.List<core.String> o) { | 2358 checkUnnamed1749(core.List<core.String> o) { |
| 2359 unittest.expect(o, unittest.hasLength(2)); | 2359 unittest.expect(o, unittest.hasLength(2)); |
| 2360 unittest.expect(o[0], unittest.equals('foo')); | 2360 unittest.expect(o[0], unittest.equals('foo')); |
| 2361 unittest.expect(o[1], unittest.equals('foo')); | 2361 unittest.expect(o[1], unittest.equals('foo')); |
| 2362 } | 2362 } |
| 2363 | 2363 |
| 2364 core.int buildCounterSearchReferencesRequest = 0; | 2364 core.int buildCounterSearchReferencesRequest = 0; |
| 2365 buildSearchReferencesRequest() { | 2365 buildSearchReferencesRequest() { |
| 2366 var o = new api.SearchReferencesRequest(); | 2366 var o = new api.SearchReferencesRequest(); |
| 2367 buildCounterSearchReferencesRequest++; | 2367 buildCounterSearchReferencesRequest++; |
| 2368 if (buildCounterSearchReferencesRequest < 3) { | 2368 if (buildCounterSearchReferencesRequest < 3) { |
| 2369 o.accessions = buildUnnamed1681(); | 2369 o.accessions = buildUnnamed1748(); |
| 2370 o.md5checksums = buildUnnamed1682(); | 2370 o.md5checksums = buildUnnamed1749(); |
| 2371 o.pageSize = 42; | 2371 o.pageSize = 42; |
| 2372 o.pageToken = "foo"; | 2372 o.pageToken = "foo"; |
| 2373 o.referenceSetId = "foo"; | 2373 o.referenceSetId = "foo"; |
| 2374 } | 2374 } |
| 2375 buildCounterSearchReferencesRequest--; | 2375 buildCounterSearchReferencesRequest--; |
| 2376 return o; | 2376 return o; |
| 2377 } | 2377 } |
| 2378 | 2378 |
| 2379 checkSearchReferencesRequest(api.SearchReferencesRequest o) { | 2379 checkSearchReferencesRequest(api.SearchReferencesRequest o) { |
| 2380 buildCounterSearchReferencesRequest++; | 2380 buildCounterSearchReferencesRequest++; |
| 2381 if (buildCounterSearchReferencesRequest < 3) { | 2381 if (buildCounterSearchReferencesRequest < 3) { |
| 2382 checkUnnamed1681(o.accessions); | 2382 checkUnnamed1748(o.accessions); |
| 2383 checkUnnamed1682(o.md5checksums); | 2383 checkUnnamed1749(o.md5checksums); |
| 2384 unittest.expect(o.pageSize, unittest.equals(42)); | 2384 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2385 unittest.expect(o.pageToken, unittest.equals('foo')); | 2385 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2386 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 2386 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 2387 } | 2387 } |
| 2388 buildCounterSearchReferencesRequest--; | 2388 buildCounterSearchReferencesRequest--; |
| 2389 } | 2389 } |
| 2390 | 2390 |
| 2391 buildUnnamed1683() { | 2391 buildUnnamed1750() { |
| 2392 var o = new core.List<api.Reference>(); | 2392 var o = new core.List<api.Reference>(); |
| 2393 o.add(buildReference()); | 2393 o.add(buildReference()); |
| 2394 o.add(buildReference()); | 2394 o.add(buildReference()); |
| 2395 return o; | 2395 return o; |
| 2396 } | 2396 } |
| 2397 | 2397 |
| 2398 checkUnnamed1683(core.List<api.Reference> o) { | 2398 checkUnnamed1750(core.List<api.Reference> o) { |
| 2399 unittest.expect(o, unittest.hasLength(2)); | 2399 unittest.expect(o, unittest.hasLength(2)); |
| 2400 checkReference(o[0]); | 2400 checkReference(o[0]); |
| 2401 checkReference(o[1]); | 2401 checkReference(o[1]); |
| 2402 } | 2402 } |
| 2403 | 2403 |
| 2404 core.int buildCounterSearchReferencesResponse = 0; | 2404 core.int buildCounterSearchReferencesResponse = 0; |
| 2405 buildSearchReferencesResponse() { | 2405 buildSearchReferencesResponse() { |
| 2406 var o = new api.SearchReferencesResponse(); | 2406 var o = new api.SearchReferencesResponse(); |
| 2407 buildCounterSearchReferencesResponse++; | 2407 buildCounterSearchReferencesResponse++; |
| 2408 if (buildCounterSearchReferencesResponse < 3) { | 2408 if (buildCounterSearchReferencesResponse < 3) { |
| 2409 o.nextPageToken = "foo"; | 2409 o.nextPageToken = "foo"; |
| 2410 o.references = buildUnnamed1683(); | 2410 o.references = buildUnnamed1750(); |
| 2411 } | 2411 } |
| 2412 buildCounterSearchReferencesResponse--; | 2412 buildCounterSearchReferencesResponse--; |
| 2413 return o; | 2413 return o; |
| 2414 } | 2414 } |
| 2415 | 2415 |
| 2416 checkSearchReferencesResponse(api.SearchReferencesResponse o) { | 2416 checkSearchReferencesResponse(api.SearchReferencesResponse o) { |
| 2417 buildCounterSearchReferencesResponse++; | 2417 buildCounterSearchReferencesResponse++; |
| 2418 if (buildCounterSearchReferencesResponse < 3) { | 2418 if (buildCounterSearchReferencesResponse < 3) { |
| 2419 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2419 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2420 checkUnnamed1683(o.references); | 2420 checkUnnamed1750(o.references); |
| 2421 } | 2421 } |
| 2422 buildCounterSearchReferencesResponse--; | 2422 buildCounterSearchReferencesResponse--; |
| 2423 } | 2423 } |
| 2424 | 2424 |
| 2425 buildUnnamed1684() { | 2425 buildUnnamed1751() { |
| 2426 var o = new core.List<core.String>(); | 2426 var o = new core.List<core.String>(); |
| 2427 o.add("foo"); | 2427 o.add("foo"); |
| 2428 o.add("foo"); | 2428 o.add("foo"); |
| 2429 return o; | 2429 return o; |
| 2430 } | 2430 } |
| 2431 | 2431 |
| 2432 checkUnnamed1684(core.List<core.String> o) { | 2432 checkUnnamed1751(core.List<core.String> o) { |
| 2433 unittest.expect(o, unittest.hasLength(2)); | 2433 unittest.expect(o, unittest.hasLength(2)); |
| 2434 unittest.expect(o[0], unittest.equals('foo')); | 2434 unittest.expect(o[0], unittest.equals('foo')); |
| 2435 unittest.expect(o[1], unittest.equals('foo')); | 2435 unittest.expect(o[1], unittest.equals('foo')); |
| 2436 } | 2436 } |
| 2437 | 2437 |
| 2438 core.int buildCounterSearchVariantSetsRequest = 0; | 2438 core.int buildCounterSearchVariantSetsRequest = 0; |
| 2439 buildSearchVariantSetsRequest() { | 2439 buildSearchVariantSetsRequest() { |
| 2440 var o = new api.SearchVariantSetsRequest(); | 2440 var o = new api.SearchVariantSetsRequest(); |
| 2441 buildCounterSearchVariantSetsRequest++; | 2441 buildCounterSearchVariantSetsRequest++; |
| 2442 if (buildCounterSearchVariantSetsRequest < 3) { | 2442 if (buildCounterSearchVariantSetsRequest < 3) { |
| 2443 o.datasetIds = buildUnnamed1684(); | 2443 o.datasetIds = buildUnnamed1751(); |
| 2444 o.pageSize = 42; | 2444 o.pageSize = 42; |
| 2445 o.pageToken = "foo"; | 2445 o.pageToken = "foo"; |
| 2446 } | 2446 } |
| 2447 buildCounterSearchVariantSetsRequest--; | 2447 buildCounterSearchVariantSetsRequest--; |
| 2448 return o; | 2448 return o; |
| 2449 } | 2449 } |
| 2450 | 2450 |
| 2451 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { | 2451 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { |
| 2452 buildCounterSearchVariantSetsRequest++; | 2452 buildCounterSearchVariantSetsRequest++; |
| 2453 if (buildCounterSearchVariantSetsRequest < 3) { | 2453 if (buildCounterSearchVariantSetsRequest < 3) { |
| 2454 checkUnnamed1684(o.datasetIds); | 2454 checkUnnamed1751(o.datasetIds); |
| 2455 unittest.expect(o.pageSize, unittest.equals(42)); | 2455 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2456 unittest.expect(o.pageToken, unittest.equals('foo')); | 2456 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2457 } | 2457 } |
| 2458 buildCounterSearchVariantSetsRequest--; | 2458 buildCounterSearchVariantSetsRequest--; |
| 2459 } | 2459 } |
| 2460 | 2460 |
| 2461 buildUnnamed1685() { | 2461 buildUnnamed1752() { |
| 2462 var o = new core.List<api.VariantSet>(); | 2462 var o = new core.List<api.VariantSet>(); |
| 2463 o.add(buildVariantSet()); | 2463 o.add(buildVariantSet()); |
| 2464 o.add(buildVariantSet()); | 2464 o.add(buildVariantSet()); |
| 2465 return o; | 2465 return o; |
| 2466 } | 2466 } |
| 2467 | 2467 |
| 2468 checkUnnamed1685(core.List<api.VariantSet> o) { | 2468 checkUnnamed1752(core.List<api.VariantSet> o) { |
| 2469 unittest.expect(o, unittest.hasLength(2)); | 2469 unittest.expect(o, unittest.hasLength(2)); |
| 2470 checkVariantSet(o[0]); | 2470 checkVariantSet(o[0]); |
| 2471 checkVariantSet(o[1]); | 2471 checkVariantSet(o[1]); |
| 2472 } | 2472 } |
| 2473 | 2473 |
| 2474 core.int buildCounterSearchVariantSetsResponse = 0; | 2474 core.int buildCounterSearchVariantSetsResponse = 0; |
| 2475 buildSearchVariantSetsResponse() { | 2475 buildSearchVariantSetsResponse() { |
| 2476 var o = new api.SearchVariantSetsResponse(); | 2476 var o = new api.SearchVariantSetsResponse(); |
| 2477 buildCounterSearchVariantSetsResponse++; | 2477 buildCounterSearchVariantSetsResponse++; |
| 2478 if (buildCounterSearchVariantSetsResponse < 3) { | 2478 if (buildCounterSearchVariantSetsResponse < 3) { |
| 2479 o.nextPageToken = "foo"; | 2479 o.nextPageToken = "foo"; |
| 2480 o.variantSets = buildUnnamed1685(); | 2480 o.variantSets = buildUnnamed1752(); |
| 2481 } | 2481 } |
| 2482 buildCounterSearchVariantSetsResponse--; | 2482 buildCounterSearchVariantSetsResponse--; |
| 2483 return o; | 2483 return o; |
| 2484 } | 2484 } |
| 2485 | 2485 |
| 2486 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { | 2486 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { |
| 2487 buildCounterSearchVariantSetsResponse++; | 2487 buildCounterSearchVariantSetsResponse++; |
| 2488 if (buildCounterSearchVariantSetsResponse < 3) { | 2488 if (buildCounterSearchVariantSetsResponse < 3) { |
| 2489 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2489 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2490 checkUnnamed1685(o.variantSets); | 2490 checkUnnamed1752(o.variantSets); |
| 2491 } | 2491 } |
| 2492 buildCounterSearchVariantSetsResponse--; | 2492 buildCounterSearchVariantSetsResponse--; |
| 2493 } | 2493 } |
| 2494 | 2494 |
| 2495 buildUnnamed1686() { | 2495 buildUnnamed1753() { |
| 2496 var o = new core.List<core.String>(); | 2496 var o = new core.List<core.String>(); |
| 2497 o.add("foo"); | 2497 o.add("foo"); |
| 2498 o.add("foo"); | 2498 o.add("foo"); |
| 2499 return o; | 2499 return o; |
| 2500 } | 2500 } |
| 2501 | 2501 |
| 2502 checkUnnamed1686(core.List<core.String> o) { | 2502 checkUnnamed1753(core.List<core.String> o) { |
| 2503 unittest.expect(o, unittest.hasLength(2)); | 2503 unittest.expect(o, unittest.hasLength(2)); |
| 2504 unittest.expect(o[0], unittest.equals('foo')); | 2504 unittest.expect(o[0], unittest.equals('foo')); |
| 2505 unittest.expect(o[1], unittest.equals('foo')); | 2505 unittest.expect(o[1], unittest.equals('foo')); |
| 2506 } | 2506 } |
| 2507 | 2507 |
| 2508 buildUnnamed1687() { | 2508 buildUnnamed1754() { |
| 2509 var o = new core.List<core.String>(); | 2509 var o = new core.List<core.String>(); |
| 2510 o.add("foo"); | 2510 o.add("foo"); |
| 2511 o.add("foo"); | 2511 o.add("foo"); |
| 2512 return o; | 2512 return o; |
| 2513 } | 2513 } |
| 2514 | 2514 |
| 2515 checkUnnamed1687(core.List<core.String> o) { | 2515 checkUnnamed1754(core.List<core.String> o) { |
| 2516 unittest.expect(o, unittest.hasLength(2)); | 2516 unittest.expect(o, unittest.hasLength(2)); |
| 2517 unittest.expect(o[0], unittest.equals('foo')); | 2517 unittest.expect(o[0], unittest.equals('foo')); |
| 2518 unittest.expect(o[1], unittest.equals('foo')); | 2518 unittest.expect(o[1], unittest.equals('foo')); |
| 2519 } | 2519 } |
| 2520 | 2520 |
| 2521 core.int buildCounterSearchVariantsRequest = 0; | 2521 core.int buildCounterSearchVariantsRequest = 0; |
| 2522 buildSearchVariantsRequest() { | 2522 buildSearchVariantsRequest() { |
| 2523 var o = new api.SearchVariantsRequest(); | 2523 var o = new api.SearchVariantsRequest(); |
| 2524 buildCounterSearchVariantsRequest++; | 2524 buildCounterSearchVariantsRequest++; |
| 2525 if (buildCounterSearchVariantsRequest < 3) { | 2525 if (buildCounterSearchVariantsRequest < 3) { |
| 2526 o.callSetIds = buildUnnamed1686(); | 2526 o.callSetIds = buildUnnamed1753(); |
| 2527 o.end = "foo"; | 2527 o.end = "foo"; |
| 2528 o.maxCalls = 42; | 2528 o.maxCalls = 42; |
| 2529 o.pageSize = 42; | 2529 o.pageSize = 42; |
| 2530 o.pageToken = "foo"; | 2530 o.pageToken = "foo"; |
| 2531 o.referenceName = "foo"; | 2531 o.referenceName = "foo"; |
| 2532 o.start = "foo"; | 2532 o.start = "foo"; |
| 2533 o.variantName = "foo"; | 2533 o.variantName = "foo"; |
| 2534 o.variantSetIds = buildUnnamed1687(); | 2534 o.variantSetIds = buildUnnamed1754(); |
| 2535 } | 2535 } |
| 2536 buildCounterSearchVariantsRequest--; | 2536 buildCounterSearchVariantsRequest--; |
| 2537 return o; | 2537 return o; |
| 2538 } | 2538 } |
| 2539 | 2539 |
| 2540 checkSearchVariantsRequest(api.SearchVariantsRequest o) { | 2540 checkSearchVariantsRequest(api.SearchVariantsRequest o) { |
| 2541 buildCounterSearchVariantsRequest++; | 2541 buildCounterSearchVariantsRequest++; |
| 2542 if (buildCounterSearchVariantsRequest < 3) { | 2542 if (buildCounterSearchVariantsRequest < 3) { |
| 2543 checkUnnamed1686(o.callSetIds); | 2543 checkUnnamed1753(o.callSetIds); |
| 2544 unittest.expect(o.end, unittest.equals('foo')); | 2544 unittest.expect(o.end, unittest.equals('foo')); |
| 2545 unittest.expect(o.maxCalls, unittest.equals(42)); | 2545 unittest.expect(o.maxCalls, unittest.equals(42)); |
| 2546 unittest.expect(o.pageSize, unittest.equals(42)); | 2546 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2547 unittest.expect(o.pageToken, unittest.equals('foo')); | 2547 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2548 unittest.expect(o.referenceName, unittest.equals('foo')); | 2548 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2549 unittest.expect(o.start, unittest.equals('foo')); | 2549 unittest.expect(o.start, unittest.equals('foo')); |
| 2550 unittest.expect(o.variantName, unittest.equals('foo')); | 2550 unittest.expect(o.variantName, unittest.equals('foo')); |
| 2551 checkUnnamed1687(o.variantSetIds); | 2551 checkUnnamed1754(o.variantSetIds); |
| 2552 } | 2552 } |
| 2553 buildCounterSearchVariantsRequest--; | 2553 buildCounterSearchVariantsRequest--; |
| 2554 } | 2554 } |
| 2555 | 2555 |
| 2556 buildUnnamed1688() { | 2556 buildUnnamed1755() { |
| 2557 var o = new core.List<api.Variant>(); | 2557 var o = new core.List<api.Variant>(); |
| 2558 o.add(buildVariant()); | 2558 o.add(buildVariant()); |
| 2559 o.add(buildVariant()); | 2559 o.add(buildVariant()); |
| 2560 return o; | 2560 return o; |
| 2561 } | 2561 } |
| 2562 | 2562 |
| 2563 checkUnnamed1688(core.List<api.Variant> o) { | 2563 checkUnnamed1755(core.List<api.Variant> o) { |
| 2564 unittest.expect(o, unittest.hasLength(2)); | 2564 unittest.expect(o, unittest.hasLength(2)); |
| 2565 checkVariant(o[0]); | 2565 checkVariant(o[0]); |
| 2566 checkVariant(o[1]); | 2566 checkVariant(o[1]); |
| 2567 } | 2567 } |
| 2568 | 2568 |
| 2569 core.int buildCounterSearchVariantsResponse = 0; | 2569 core.int buildCounterSearchVariantsResponse = 0; |
| 2570 buildSearchVariantsResponse() { | 2570 buildSearchVariantsResponse() { |
| 2571 var o = new api.SearchVariantsResponse(); | 2571 var o = new api.SearchVariantsResponse(); |
| 2572 buildCounterSearchVariantsResponse++; | 2572 buildCounterSearchVariantsResponse++; |
| 2573 if (buildCounterSearchVariantsResponse < 3) { | 2573 if (buildCounterSearchVariantsResponse < 3) { |
| 2574 o.nextPageToken = "foo"; | 2574 o.nextPageToken = "foo"; |
| 2575 o.variants = buildUnnamed1688(); | 2575 o.variants = buildUnnamed1755(); |
| 2576 } | 2576 } |
| 2577 buildCounterSearchVariantsResponse--; | 2577 buildCounterSearchVariantsResponse--; |
| 2578 return o; | 2578 return o; |
| 2579 } | 2579 } |
| 2580 | 2580 |
| 2581 checkSearchVariantsResponse(api.SearchVariantsResponse o) { | 2581 checkSearchVariantsResponse(api.SearchVariantsResponse o) { |
| 2582 buildCounterSearchVariantsResponse++; | 2582 buildCounterSearchVariantsResponse++; |
| 2583 if (buildCounterSearchVariantsResponse < 3) { | 2583 if (buildCounterSearchVariantsResponse < 3) { |
| 2584 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2584 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2585 checkUnnamed1688(o.variants); | 2585 checkUnnamed1755(o.variants); |
| 2586 } | 2586 } |
| 2587 buildCounterSearchVariantsResponse--; | 2587 buildCounterSearchVariantsResponse--; |
| 2588 } | 2588 } |
| 2589 | 2589 |
| 2590 buildUnnamed1689() { | 2590 buildUnnamed1756() { |
| 2591 var o = new core.List<api.TranscriptExon>(); | 2591 var o = new core.List<api.TranscriptExon>(); |
| 2592 o.add(buildTranscriptExon()); | 2592 o.add(buildTranscriptExon()); |
| 2593 o.add(buildTranscriptExon()); | 2593 o.add(buildTranscriptExon()); |
| 2594 return o; | 2594 return o; |
| 2595 } | 2595 } |
| 2596 | 2596 |
| 2597 checkUnnamed1689(core.List<api.TranscriptExon> o) { | 2597 checkUnnamed1756(core.List<api.TranscriptExon> o) { |
| 2598 unittest.expect(o, unittest.hasLength(2)); | 2598 unittest.expect(o, unittest.hasLength(2)); |
| 2599 checkTranscriptExon(o[0]); | 2599 checkTranscriptExon(o[0]); |
| 2600 checkTranscriptExon(o[1]); | 2600 checkTranscriptExon(o[1]); |
| 2601 } | 2601 } |
| 2602 | 2602 |
| 2603 core.int buildCounterTranscript = 0; | 2603 core.int buildCounterTranscript = 0; |
| 2604 buildTranscript() { | 2604 buildTranscript() { |
| 2605 var o = new api.Transcript(); | 2605 var o = new api.Transcript(); |
| 2606 buildCounterTranscript++; | 2606 buildCounterTranscript++; |
| 2607 if (buildCounterTranscript < 3) { | 2607 if (buildCounterTranscript < 3) { |
| 2608 o.codingSequence = buildTranscriptCodingSequence(); | 2608 o.codingSequence = buildTranscriptCodingSequence(); |
| 2609 o.exons = buildUnnamed1689(); | 2609 o.exons = buildUnnamed1756(); |
| 2610 o.geneId = "foo"; | 2610 o.geneId = "foo"; |
| 2611 } | 2611 } |
| 2612 buildCounterTranscript--; | 2612 buildCounterTranscript--; |
| 2613 return o; | 2613 return o; |
| 2614 } | 2614 } |
| 2615 | 2615 |
| 2616 checkTranscript(api.Transcript o) { | 2616 checkTranscript(api.Transcript o) { |
| 2617 buildCounterTranscript++; | 2617 buildCounterTranscript++; |
| 2618 if (buildCounterTranscript < 3) { | 2618 if (buildCounterTranscript < 3) { |
| 2619 checkTranscriptCodingSequence(o.codingSequence); | 2619 checkTranscriptCodingSequence(o.codingSequence); |
| 2620 checkUnnamed1689(o.exons); | 2620 checkUnnamed1756(o.exons); |
| 2621 unittest.expect(o.geneId, unittest.equals('foo')); | 2621 unittest.expect(o.geneId, unittest.equals('foo')); |
| 2622 } | 2622 } |
| 2623 buildCounterTranscript--; | 2623 buildCounterTranscript--; |
| 2624 } | 2624 } |
| 2625 | 2625 |
| 2626 core.int buildCounterTranscriptCodingSequence = 0; | 2626 core.int buildCounterTranscriptCodingSequence = 0; |
| 2627 buildTranscriptCodingSequence() { | 2627 buildTranscriptCodingSequence() { |
| 2628 var o = new api.TranscriptCodingSequence(); | 2628 var o = new api.TranscriptCodingSequence(); |
| 2629 buildCounterTranscriptCodingSequence++; | 2629 buildCounterTranscriptCodingSequence++; |
| 2630 if (buildCounterTranscriptCodingSequence < 3) { | 2630 if (buildCounterTranscriptCodingSequence < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 2660 checkTranscriptExon(api.TranscriptExon o) { | 2660 checkTranscriptExon(api.TranscriptExon o) { |
| 2661 buildCounterTranscriptExon++; | 2661 buildCounterTranscriptExon++; |
| 2662 if (buildCounterTranscriptExon < 3) { | 2662 if (buildCounterTranscriptExon < 3) { |
| 2663 unittest.expect(o.end, unittest.equals('foo')); | 2663 unittest.expect(o.end, unittest.equals('foo')); |
| 2664 checkInt32Value(o.frame); | 2664 checkInt32Value(o.frame); |
| 2665 unittest.expect(o.start, unittest.equals('foo')); | 2665 unittest.expect(o.start, unittest.equals('foo')); |
| 2666 } | 2666 } |
| 2667 buildCounterTranscriptExon--; | 2667 buildCounterTranscriptExon--; |
| 2668 } | 2668 } |
| 2669 | 2669 |
| 2670 buildUnnamed1690() { | 2670 buildUnnamed1757() { |
| 2671 var o = new core.List<core.String>(); | 2671 var o = new core.List<core.String>(); |
| 2672 o.add("foo"); | 2672 o.add("foo"); |
| 2673 o.add("foo"); | 2673 o.add("foo"); |
| 2674 return o; | 2674 return o; |
| 2675 } | 2675 } |
| 2676 | 2676 |
| 2677 checkUnnamed1690(core.List<core.String> o) { | 2677 checkUnnamed1757(core.List<core.String> o) { |
| 2678 unittest.expect(o, unittest.hasLength(2)); | 2678 unittest.expect(o, unittest.hasLength(2)); |
| 2679 unittest.expect(o[0], unittest.equals('foo')); | 2679 unittest.expect(o[0], unittest.equals('foo')); |
| 2680 unittest.expect(o[1], unittest.equals('foo')); | 2680 unittest.expect(o[1], unittest.equals('foo')); |
| 2681 } | 2681 } |
| 2682 | 2682 |
| 2683 buildUnnamed1691() { | 2683 buildUnnamed1758() { |
| 2684 var o = new core.List<api.Call>(); | 2684 var o = new core.List<api.Call>(); |
| 2685 o.add(buildCall()); | 2685 o.add(buildCall()); |
| 2686 o.add(buildCall()); | 2686 o.add(buildCall()); |
| 2687 return o; | 2687 return o; |
| 2688 } | 2688 } |
| 2689 | 2689 |
| 2690 checkUnnamed1691(core.List<api.Call> o) { | 2690 checkUnnamed1758(core.List<api.Call> o) { |
| 2691 unittest.expect(o, unittest.hasLength(2)); | 2691 unittest.expect(o, unittest.hasLength(2)); |
| 2692 checkCall(o[0]); | 2692 checkCall(o[0]); |
| 2693 checkCall(o[1]); | 2693 checkCall(o[1]); |
| 2694 } | 2694 } |
| 2695 | 2695 |
| 2696 buildUnnamed1692() { | 2696 buildUnnamed1759() { |
| 2697 var o = new core.List<core.String>(); | 2697 var o = new core.List<core.String>(); |
| 2698 o.add("foo"); | 2698 o.add("foo"); |
| 2699 o.add("foo"); | 2699 o.add("foo"); |
| 2700 return o; | 2700 return o; |
| 2701 } | 2701 } |
| 2702 | 2702 |
| 2703 checkUnnamed1692(core.List<core.String> o) { | 2703 checkUnnamed1759(core.List<core.String> o) { |
| 2704 unittest.expect(o, unittest.hasLength(2)); | 2704 unittest.expect(o, unittest.hasLength(2)); |
| 2705 unittest.expect(o[0], unittest.equals('foo')); | 2705 unittest.expect(o[0], unittest.equals('foo')); |
| 2706 unittest.expect(o[1], unittest.equals('foo')); | 2706 unittest.expect(o[1], unittest.equals('foo')); |
| 2707 } | 2707 } |
| 2708 | 2708 |
| 2709 buildUnnamed1693() { | 2709 buildUnnamed1760() { |
| 2710 var o = new core.List<core.String>(); | 2710 var o = new core.List<core.String>(); |
| 2711 o.add("foo"); | 2711 o.add("foo"); |
| 2712 o.add("foo"); | 2712 o.add("foo"); |
| 2713 return o; | 2713 return o; |
| 2714 } | 2714 } |
| 2715 | 2715 |
| 2716 checkUnnamed1693(core.List<core.String> o) { | 2716 checkUnnamed1760(core.List<core.String> o) { |
| 2717 unittest.expect(o, unittest.hasLength(2)); | 2717 unittest.expect(o, unittest.hasLength(2)); |
| 2718 unittest.expect(o[0], unittest.equals('foo')); | 2718 unittest.expect(o[0], unittest.equals('foo')); |
| 2719 unittest.expect(o[1], unittest.equals('foo')); | 2719 unittest.expect(o[1], unittest.equals('foo')); |
| 2720 } | 2720 } |
| 2721 | 2721 |
| 2722 buildUnnamed1694() { | 2722 buildUnnamed1761() { |
| 2723 var o = new core.Map<core.String, core.List<core.String>>(); | 2723 var o = new core.Map<core.String, core.List<core.String>>(); |
| 2724 o["x"] = buildUnnamed1693(); | 2724 o["x"] = buildUnnamed1760(); |
| 2725 o["y"] = buildUnnamed1693(); | 2725 o["y"] = buildUnnamed1760(); |
| 2726 return o; | 2726 return o; |
| 2727 } | 2727 } |
| 2728 | 2728 |
| 2729 checkUnnamed1694(core.Map<core.String, core.List<core.String>> o) { | 2729 checkUnnamed1761(core.Map<core.String, core.List<core.String>> o) { |
| 2730 unittest.expect(o, unittest.hasLength(2)); | 2730 unittest.expect(o, unittest.hasLength(2)); |
| 2731 checkUnnamed1693(o["x"]); | 2731 checkUnnamed1760(o["x"]); |
| 2732 checkUnnamed1693(o["y"]); | 2732 checkUnnamed1760(o["y"]); |
| 2733 } | 2733 } |
| 2734 | 2734 |
| 2735 buildUnnamed1695() { | 2735 buildUnnamed1762() { |
| 2736 var o = new core.List<core.String>(); | 2736 var o = new core.List<core.String>(); |
| 2737 o.add("foo"); | 2737 o.add("foo"); |
| 2738 o.add("foo"); | 2738 o.add("foo"); |
| 2739 return o; | 2739 return o; |
| 2740 } | 2740 } |
| 2741 | 2741 |
| 2742 checkUnnamed1695(core.List<core.String> o) { | 2742 checkUnnamed1762(core.List<core.String> o) { |
| 2743 unittest.expect(o, unittest.hasLength(2)); | 2743 unittest.expect(o, unittest.hasLength(2)); |
| 2744 unittest.expect(o[0], unittest.equals('foo')); | 2744 unittest.expect(o[0], unittest.equals('foo')); |
| 2745 unittest.expect(o[1], unittest.equals('foo')); | 2745 unittest.expect(o[1], unittest.equals('foo')); |
| 2746 } | 2746 } |
| 2747 | 2747 |
| 2748 core.int buildCounterVariant = 0; | 2748 core.int buildCounterVariant = 0; |
| 2749 buildVariant() { | 2749 buildVariant() { |
| 2750 var o = new api.Variant(); | 2750 var o = new api.Variant(); |
| 2751 buildCounterVariant++; | 2751 buildCounterVariant++; |
| 2752 if (buildCounterVariant < 3) { | 2752 if (buildCounterVariant < 3) { |
| 2753 o.alternateBases = buildUnnamed1690(); | 2753 o.alternateBases = buildUnnamed1757(); |
| 2754 o.calls = buildUnnamed1691(); | 2754 o.calls = buildUnnamed1758(); |
| 2755 o.created = "foo"; | 2755 o.created = "foo"; |
| 2756 o.end = "foo"; | 2756 o.end = "foo"; |
| 2757 o.filter = buildUnnamed1692(); | 2757 o.filter = buildUnnamed1759(); |
| 2758 o.id = "foo"; | 2758 o.id = "foo"; |
| 2759 o.info = buildUnnamed1694(); | 2759 o.info = buildUnnamed1761(); |
| 2760 o.names = buildUnnamed1695(); | 2760 o.names = buildUnnamed1762(); |
| 2761 o.quality = 42.0; | 2761 o.quality = 42.0; |
| 2762 o.referenceBases = "foo"; | 2762 o.referenceBases = "foo"; |
| 2763 o.referenceName = "foo"; | 2763 o.referenceName = "foo"; |
| 2764 o.start = "foo"; | 2764 o.start = "foo"; |
| 2765 o.variantSetId = "foo"; | 2765 o.variantSetId = "foo"; |
| 2766 } | 2766 } |
| 2767 buildCounterVariant--; | 2767 buildCounterVariant--; |
| 2768 return o; | 2768 return o; |
| 2769 } | 2769 } |
| 2770 | 2770 |
| 2771 checkVariant(api.Variant o) { | 2771 checkVariant(api.Variant o) { |
| 2772 buildCounterVariant++; | 2772 buildCounterVariant++; |
| 2773 if (buildCounterVariant < 3) { | 2773 if (buildCounterVariant < 3) { |
| 2774 checkUnnamed1690(o.alternateBases); | 2774 checkUnnamed1757(o.alternateBases); |
| 2775 checkUnnamed1691(o.calls); | 2775 checkUnnamed1758(o.calls); |
| 2776 unittest.expect(o.created, unittest.equals('foo')); | 2776 unittest.expect(o.created, unittest.equals('foo')); |
| 2777 unittest.expect(o.end, unittest.equals('foo')); | 2777 unittest.expect(o.end, unittest.equals('foo')); |
| 2778 checkUnnamed1692(o.filter); | 2778 checkUnnamed1759(o.filter); |
| 2779 unittest.expect(o.id, unittest.equals('foo')); | 2779 unittest.expect(o.id, unittest.equals('foo')); |
| 2780 checkUnnamed1694(o.info); | 2780 checkUnnamed1761(o.info); |
| 2781 checkUnnamed1695(o.names); | 2781 checkUnnamed1762(o.names); |
| 2782 unittest.expect(o.quality, unittest.equals(42.0)); | 2782 unittest.expect(o.quality, unittest.equals(42.0)); |
| 2783 unittest.expect(o.referenceBases, unittest.equals('foo')); | 2783 unittest.expect(o.referenceBases, unittest.equals('foo')); |
| 2784 unittest.expect(o.referenceName, unittest.equals('foo')); | 2784 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2785 unittest.expect(o.start, unittest.equals('foo')); | 2785 unittest.expect(o.start, unittest.equals('foo')); |
| 2786 unittest.expect(o.variantSetId, unittest.equals('foo')); | 2786 unittest.expect(o.variantSetId, unittest.equals('foo')); |
| 2787 } | 2787 } |
| 2788 buildCounterVariant--; | 2788 buildCounterVariant--; |
| 2789 } | 2789 } |
| 2790 | 2790 |
| 2791 buildUnnamed1696() { | 2791 buildUnnamed1763() { |
| 2792 var o = new core.List<api.VariantAnnotationCondition>(); | 2792 var o = new core.List<api.VariantAnnotationCondition>(); |
| 2793 o.add(buildVariantAnnotationCondition()); | 2793 o.add(buildVariantAnnotationCondition()); |
| 2794 o.add(buildVariantAnnotationCondition()); | 2794 o.add(buildVariantAnnotationCondition()); |
| 2795 return o; | 2795 return o; |
| 2796 } | 2796 } |
| 2797 | 2797 |
| 2798 checkUnnamed1696(core.List<api.VariantAnnotationCondition> o) { | 2798 checkUnnamed1763(core.List<api.VariantAnnotationCondition> o) { |
| 2799 unittest.expect(o, unittest.hasLength(2)); | 2799 unittest.expect(o, unittest.hasLength(2)); |
| 2800 checkVariantAnnotationCondition(o[0]); | 2800 checkVariantAnnotationCondition(o[0]); |
| 2801 checkVariantAnnotationCondition(o[1]); | 2801 checkVariantAnnotationCondition(o[1]); |
| 2802 } | 2802 } |
| 2803 | 2803 |
| 2804 buildUnnamed1697() { | 2804 buildUnnamed1764() { |
| 2805 var o = new core.List<core.String>(); | 2805 var o = new core.List<core.String>(); |
| 2806 o.add("foo"); | 2806 o.add("foo"); |
| 2807 o.add("foo"); | 2807 o.add("foo"); |
| 2808 return o; | 2808 return o; |
| 2809 } | 2809 } |
| 2810 | 2810 |
| 2811 checkUnnamed1697(core.List<core.String> o) { | 2811 checkUnnamed1764(core.List<core.String> o) { |
| 2812 unittest.expect(o, unittest.hasLength(2)); | 2812 unittest.expect(o, unittest.hasLength(2)); |
| 2813 unittest.expect(o[0], unittest.equals('foo')); | 2813 unittest.expect(o[0], unittest.equals('foo')); |
| 2814 unittest.expect(o[1], unittest.equals('foo')); | 2814 unittest.expect(o[1], unittest.equals('foo')); |
| 2815 } | 2815 } |
| 2816 | 2816 |
| 2817 core.int buildCounterVariantAnnotation = 0; | 2817 core.int buildCounterVariantAnnotation = 0; |
| 2818 buildVariantAnnotation() { | 2818 buildVariantAnnotation() { |
| 2819 var o = new api.VariantAnnotation(); | 2819 var o = new api.VariantAnnotation(); |
| 2820 buildCounterVariantAnnotation++; | 2820 buildCounterVariantAnnotation++; |
| 2821 if (buildCounterVariantAnnotation < 3) { | 2821 if (buildCounterVariantAnnotation < 3) { |
| 2822 o.alternateBases = "foo"; | 2822 o.alternateBases = "foo"; |
| 2823 o.clinicalSignificance = "foo"; | 2823 o.clinicalSignificance = "foo"; |
| 2824 o.conditions = buildUnnamed1696(); | 2824 o.conditions = buildUnnamed1763(); |
| 2825 o.effect = "foo"; | 2825 o.effect = "foo"; |
| 2826 o.geneId = "foo"; | 2826 o.geneId = "foo"; |
| 2827 o.transcriptIds = buildUnnamed1697(); | 2827 o.transcriptIds = buildUnnamed1764(); |
| 2828 o.type = "foo"; | 2828 o.type = "foo"; |
| 2829 } | 2829 } |
| 2830 buildCounterVariantAnnotation--; | 2830 buildCounterVariantAnnotation--; |
| 2831 return o; | 2831 return o; |
| 2832 } | 2832 } |
| 2833 | 2833 |
| 2834 checkVariantAnnotation(api.VariantAnnotation o) { | 2834 checkVariantAnnotation(api.VariantAnnotation o) { |
| 2835 buildCounterVariantAnnotation++; | 2835 buildCounterVariantAnnotation++; |
| 2836 if (buildCounterVariantAnnotation < 3) { | 2836 if (buildCounterVariantAnnotation < 3) { |
| 2837 unittest.expect(o.alternateBases, unittest.equals('foo')); | 2837 unittest.expect(o.alternateBases, unittest.equals('foo')); |
| 2838 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); | 2838 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); |
| 2839 checkUnnamed1696(o.conditions); | 2839 checkUnnamed1763(o.conditions); |
| 2840 unittest.expect(o.effect, unittest.equals('foo')); | 2840 unittest.expect(o.effect, unittest.equals('foo')); |
| 2841 unittest.expect(o.geneId, unittest.equals('foo')); | 2841 unittest.expect(o.geneId, unittest.equals('foo')); |
| 2842 checkUnnamed1697(o.transcriptIds); | 2842 checkUnnamed1764(o.transcriptIds); |
| 2843 unittest.expect(o.type, unittest.equals('foo')); | 2843 unittest.expect(o.type, unittest.equals('foo')); |
| 2844 } | 2844 } |
| 2845 buildCounterVariantAnnotation--; | 2845 buildCounterVariantAnnotation--; |
| 2846 } | 2846 } |
| 2847 | 2847 |
| 2848 buildUnnamed1698() { | 2848 buildUnnamed1765() { |
| 2849 var o = new core.List<api.ExternalId>(); | 2849 var o = new core.List<api.ExternalId>(); |
| 2850 o.add(buildExternalId()); | 2850 o.add(buildExternalId()); |
| 2851 o.add(buildExternalId()); | 2851 o.add(buildExternalId()); |
| 2852 return o; | 2852 return o; |
| 2853 } | 2853 } |
| 2854 | 2854 |
| 2855 checkUnnamed1698(core.List<api.ExternalId> o) { | 2855 checkUnnamed1765(core.List<api.ExternalId> o) { |
| 2856 unittest.expect(o, unittest.hasLength(2)); | 2856 unittest.expect(o, unittest.hasLength(2)); |
| 2857 checkExternalId(o[0]); | 2857 checkExternalId(o[0]); |
| 2858 checkExternalId(o[1]); | 2858 checkExternalId(o[1]); |
| 2859 } | 2859 } |
| 2860 | 2860 |
| 2861 buildUnnamed1699() { | 2861 buildUnnamed1766() { |
| 2862 var o = new core.List<core.String>(); | 2862 var o = new core.List<core.String>(); |
| 2863 o.add("foo"); | 2863 o.add("foo"); |
| 2864 o.add("foo"); | 2864 o.add("foo"); |
| 2865 return o; | 2865 return o; |
| 2866 } | 2866 } |
| 2867 | 2867 |
| 2868 checkUnnamed1699(core.List<core.String> o) { | 2868 checkUnnamed1766(core.List<core.String> o) { |
| 2869 unittest.expect(o, unittest.hasLength(2)); | 2869 unittest.expect(o, unittest.hasLength(2)); |
| 2870 unittest.expect(o[0], unittest.equals('foo')); | 2870 unittest.expect(o[0], unittest.equals('foo')); |
| 2871 unittest.expect(o[1], unittest.equals('foo')); | 2871 unittest.expect(o[1], unittest.equals('foo')); |
| 2872 } | 2872 } |
| 2873 | 2873 |
| 2874 core.int buildCounterVariantAnnotationCondition = 0; | 2874 core.int buildCounterVariantAnnotationCondition = 0; |
| 2875 buildVariantAnnotationCondition() { | 2875 buildVariantAnnotationCondition() { |
| 2876 var o = new api.VariantAnnotationCondition(); | 2876 var o = new api.VariantAnnotationCondition(); |
| 2877 buildCounterVariantAnnotationCondition++; | 2877 buildCounterVariantAnnotationCondition++; |
| 2878 if (buildCounterVariantAnnotationCondition < 3) { | 2878 if (buildCounterVariantAnnotationCondition < 3) { |
| 2879 o.conceptId = "foo"; | 2879 o.conceptId = "foo"; |
| 2880 o.externalIds = buildUnnamed1698(); | 2880 o.externalIds = buildUnnamed1765(); |
| 2881 o.names = buildUnnamed1699(); | 2881 o.names = buildUnnamed1766(); |
| 2882 o.omimId = "foo"; | 2882 o.omimId = "foo"; |
| 2883 } | 2883 } |
| 2884 buildCounterVariantAnnotationCondition--; | 2884 buildCounterVariantAnnotationCondition--; |
| 2885 return o; | 2885 return o; |
| 2886 } | 2886 } |
| 2887 | 2887 |
| 2888 checkVariantAnnotationCondition(api.VariantAnnotationCondition o) { | 2888 checkVariantAnnotationCondition(api.VariantAnnotationCondition o) { |
| 2889 buildCounterVariantAnnotationCondition++; | 2889 buildCounterVariantAnnotationCondition++; |
| 2890 if (buildCounterVariantAnnotationCondition < 3) { | 2890 if (buildCounterVariantAnnotationCondition < 3) { |
| 2891 unittest.expect(o.conceptId, unittest.equals('foo')); | 2891 unittest.expect(o.conceptId, unittest.equals('foo')); |
| 2892 checkUnnamed1698(o.externalIds); | 2892 checkUnnamed1765(o.externalIds); |
| 2893 checkUnnamed1699(o.names); | 2893 checkUnnamed1766(o.names); |
| 2894 unittest.expect(o.omimId, unittest.equals('foo')); | 2894 unittest.expect(o.omimId, unittest.equals('foo')); |
| 2895 } | 2895 } |
| 2896 buildCounterVariantAnnotationCondition--; | 2896 buildCounterVariantAnnotationCondition--; |
| 2897 } | 2897 } |
| 2898 | 2898 |
| 2899 buildUnnamed1700() { | 2899 buildUnnamed1767() { |
| 2900 var o = new core.List<api.Metadata>(); | 2900 var o = new core.List<api.Metadata>(); |
| 2901 o.add(buildMetadata()); | 2901 o.add(buildMetadata()); |
| 2902 o.add(buildMetadata()); | 2902 o.add(buildMetadata()); |
| 2903 return o; | 2903 return o; |
| 2904 } | 2904 } |
| 2905 | 2905 |
| 2906 checkUnnamed1700(core.List<api.Metadata> o) { | 2906 checkUnnamed1767(core.List<api.Metadata> o) { |
| 2907 unittest.expect(o, unittest.hasLength(2)); | 2907 unittest.expect(o, unittest.hasLength(2)); |
| 2908 checkMetadata(o[0]); | 2908 checkMetadata(o[0]); |
| 2909 checkMetadata(o[1]); | 2909 checkMetadata(o[1]); |
| 2910 } | 2910 } |
| 2911 | 2911 |
| 2912 buildUnnamed1701() { | 2912 buildUnnamed1768() { |
| 2913 var o = new core.List<api.ReferenceBound>(); | 2913 var o = new core.List<api.ReferenceBound>(); |
| 2914 o.add(buildReferenceBound()); | 2914 o.add(buildReferenceBound()); |
| 2915 o.add(buildReferenceBound()); | 2915 o.add(buildReferenceBound()); |
| 2916 return o; | 2916 return o; |
| 2917 } | 2917 } |
| 2918 | 2918 |
| 2919 checkUnnamed1701(core.List<api.ReferenceBound> o) { | 2919 checkUnnamed1768(core.List<api.ReferenceBound> o) { |
| 2920 unittest.expect(o, unittest.hasLength(2)); | 2920 unittest.expect(o, unittest.hasLength(2)); |
| 2921 checkReferenceBound(o[0]); | 2921 checkReferenceBound(o[0]); |
| 2922 checkReferenceBound(o[1]); | 2922 checkReferenceBound(o[1]); |
| 2923 } | 2923 } |
| 2924 | 2924 |
| 2925 core.int buildCounterVariantSet = 0; | 2925 core.int buildCounterVariantSet = 0; |
| 2926 buildVariantSet() { | 2926 buildVariantSet() { |
| 2927 var o = new api.VariantSet(); | 2927 var o = new api.VariantSet(); |
| 2928 buildCounterVariantSet++; | 2928 buildCounterVariantSet++; |
| 2929 if (buildCounterVariantSet < 3) { | 2929 if (buildCounterVariantSet < 3) { |
| 2930 o.datasetId = "foo"; | 2930 o.datasetId = "foo"; |
| 2931 o.id = "foo"; | 2931 o.id = "foo"; |
| 2932 o.metadata = buildUnnamed1700(); | 2932 o.metadata = buildUnnamed1767(); |
| 2933 o.referenceBounds = buildUnnamed1701(); | 2933 o.referenceBounds = buildUnnamed1768(); |
| 2934 } | 2934 } |
| 2935 buildCounterVariantSet--; | 2935 buildCounterVariantSet--; |
| 2936 return o; | 2936 return o; |
| 2937 } | 2937 } |
| 2938 | 2938 |
| 2939 checkVariantSet(api.VariantSet o) { | 2939 checkVariantSet(api.VariantSet o) { |
| 2940 buildCounterVariantSet++; | 2940 buildCounterVariantSet++; |
| 2941 if (buildCounterVariantSet < 3) { | 2941 if (buildCounterVariantSet < 3) { |
| 2942 unittest.expect(o.datasetId, unittest.equals('foo')); | 2942 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 2943 unittest.expect(o.id, unittest.equals('foo')); | 2943 unittest.expect(o.id, unittest.equals('foo')); |
| 2944 checkUnnamed1700(o.metadata); | 2944 checkUnnamed1767(o.metadata); |
| 2945 checkUnnamed1701(o.referenceBounds); | 2945 checkUnnamed1768(o.referenceBounds); |
| 2946 } | 2946 } |
| 2947 buildCounterVariantSet--; | 2947 buildCounterVariantSet--; |
| 2948 } | 2948 } |
| 2949 | 2949 |
| 2950 | 2950 |
| 2951 main() { | 2951 main() { |
| 2952 unittest.group("obj-schema-AlignReadGroupSetsRequest", () { | 2952 unittest.group("obj-schema-AlignReadGroupSetsRequest", () { |
| 2953 unittest.test("to-json--from-json", () { | 2953 unittest.test("to-json--from-json", () { |
| 2954 var o = buildAlignReadGroupSetsRequest(); | 2954 var o = buildAlignReadGroupSetsRequest(); |
| 2955 var od = new api.AlignReadGroupSetsRequest.fromJson(o.toJson()); | 2955 var od = new api.AlignReadGroupSetsRequest.fromJson(o.toJson()); |
| (...skipping 3639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6595 res.update(arg_request, arg_variantSetId).then(unittest.expectAsync(((api.
VariantSet response) { | 6595 res.update(arg_request, arg_variantSetId).then(unittest.expectAsync(((api.
VariantSet response) { |
| 6596 checkVariantSet(response); | 6596 checkVariantSet(response); |
| 6597 }))); | 6597 }))); |
| 6598 }); | 6598 }); |
| 6599 | 6599 |
| 6600 }); | 6600 }); |
| 6601 | 6601 |
| 6602 | 6602 |
| 6603 } | 6603 } |
| 6604 | 6604 |
| OLD | NEW |