| OLD | NEW |
| 1 library googleapis.genomics.v1.test; | 1 library googleapis.genomics.v1.test; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
| 9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
| 10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 } | 44 } |
| 45 } | 45 } |
| 46 } | 46 } |
| 47 | 47 |
| 48 http.StreamedResponse stringResponse( | 48 http.StreamedResponse stringResponse( |
| 49 core.int status, core.Map headers, core.String body) { | 49 core.int status, core.Map headers, core.String body) { |
| 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); | 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); |
| 51 return new http.StreamedResponse(stream, status, headers: headers); | 51 return new http.StreamedResponse(stream, status, headers: headers); |
| 52 } | 52 } |
| 53 | 53 |
| 54 buildUnnamed2523() { | 54 buildUnnamed2649() { |
| 55 var o = new core.List<core.Object>(); | 55 var o = new core.List<core.Object>(); |
| 56 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 56 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 57 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 57 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 58 return o; | 58 return o; |
| 59 } | 59 } |
| 60 | 60 |
| 61 checkUnnamed2523(core.List<core.Object> o) { | 61 checkUnnamed2649(core.List<core.Object> o) { |
| 62 unittest.expect(o, unittest.hasLength(2)); | 62 unittest.expect(o, unittest.hasLength(2)); |
| 63 var casted1 = (o[0]) as core.Map; unittest.expect(casted1, unittest.hasLength(
3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"], u
nittest.equals('foo')); | 63 var casted1 = (o[0]) as core.Map; unittest.expect(casted1, unittest.hasLength(
3)); unittest.expect(casted1["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted1["bool"], unittest.equals(true)); unittest.expect(casted1["string"], u
nittest.equals('foo')); |
| 64 var casted2 = (o[1]) as core.Map; unittest.expect(casted2, unittest.hasLength(
3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"], u
nittest.equals('foo')); | 64 var casted2 = (o[1]) as core.Map; unittest.expect(casted2, unittest.hasLength(
3)); unittest.expect(casted2["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted2["bool"], unittest.equals(true)); unittest.expect(casted2["string"], u
nittest.equals('foo')); |
| 65 } | 65 } |
| 66 | 66 |
| 67 buildUnnamed2524() { | 67 buildUnnamed2650() { |
| 68 var o = new core.Map<core.String, core.List<core.Object>>(); | 68 var o = new core.Map<core.String, core.List<core.Object>>(); |
| 69 o["x"] = buildUnnamed2523(); | 69 o["x"] = buildUnnamed2649(); |
| 70 o["y"] = buildUnnamed2523(); | 70 o["y"] = buildUnnamed2649(); |
| 71 return o; | 71 return o; |
| 72 } | 72 } |
| 73 | 73 |
| 74 checkUnnamed2524(core.Map<core.String, core.List<core.Object>> o) { | 74 checkUnnamed2650(core.Map<core.String, core.List<core.Object>> o) { |
| 75 unittest.expect(o, unittest.hasLength(2)); | 75 unittest.expect(o, unittest.hasLength(2)); |
| 76 checkUnnamed2523(o["x"]); | 76 checkUnnamed2649(o["x"]); |
| 77 checkUnnamed2523(o["y"]); | 77 checkUnnamed2649(o["y"]); |
| 78 } | 78 } |
| 79 | 79 |
| 80 core.int buildCounterAnnotation = 0; | 80 core.int buildCounterAnnotation = 0; |
| 81 buildAnnotation() { | 81 buildAnnotation() { |
| 82 var o = new api.Annotation(); | 82 var o = new api.Annotation(); |
| 83 buildCounterAnnotation++; | 83 buildCounterAnnotation++; |
| 84 if (buildCounterAnnotation < 3) { | 84 if (buildCounterAnnotation < 3) { |
| 85 o.annotationSetId = "foo"; | 85 o.annotationSetId = "foo"; |
| 86 o.end = "foo"; | 86 o.end = "foo"; |
| 87 o.id = "foo"; | 87 o.id = "foo"; |
| 88 o.info = buildUnnamed2524(); | 88 o.info = buildUnnamed2650(); |
| 89 o.name = "foo"; | 89 o.name = "foo"; |
| 90 o.referenceId = "foo"; | 90 o.referenceId = "foo"; |
| 91 o.referenceName = "foo"; | 91 o.referenceName = "foo"; |
| 92 o.reverseStrand = true; | 92 o.reverseStrand = true; |
| 93 o.start = "foo"; | 93 o.start = "foo"; |
| 94 o.transcript = buildTranscript(); | 94 o.transcript = buildTranscript(); |
| 95 o.type = "foo"; | 95 o.type = "foo"; |
| 96 o.variant = buildVariantAnnotation(); | 96 o.variant = buildVariantAnnotation(); |
| 97 } | 97 } |
| 98 buildCounterAnnotation--; | 98 buildCounterAnnotation--; |
| 99 return o; | 99 return o; |
| 100 } | 100 } |
| 101 | 101 |
| 102 checkAnnotation(api.Annotation o) { | 102 checkAnnotation(api.Annotation o) { |
| 103 buildCounterAnnotation++; | 103 buildCounterAnnotation++; |
| 104 if (buildCounterAnnotation < 3) { | 104 if (buildCounterAnnotation < 3) { |
| 105 unittest.expect(o.annotationSetId, unittest.equals('foo')); | 105 unittest.expect(o.annotationSetId, unittest.equals('foo')); |
| 106 unittest.expect(o.end, unittest.equals('foo')); | 106 unittest.expect(o.end, unittest.equals('foo')); |
| 107 unittest.expect(o.id, unittest.equals('foo')); | 107 unittest.expect(o.id, unittest.equals('foo')); |
| 108 checkUnnamed2524(o.info); | 108 checkUnnamed2650(o.info); |
| 109 unittest.expect(o.name, unittest.equals('foo')); | 109 unittest.expect(o.name, unittest.equals('foo')); |
| 110 unittest.expect(o.referenceId, unittest.equals('foo')); | 110 unittest.expect(o.referenceId, unittest.equals('foo')); |
| 111 unittest.expect(o.referenceName, unittest.equals('foo')); | 111 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 112 unittest.expect(o.reverseStrand, unittest.isTrue); | 112 unittest.expect(o.reverseStrand, unittest.isTrue); |
| 113 unittest.expect(o.start, unittest.equals('foo')); | 113 unittest.expect(o.start, unittest.equals('foo')); |
| 114 checkTranscript(o.transcript); | 114 checkTranscript(o.transcript); |
| 115 unittest.expect(o.type, unittest.equals('foo')); | 115 unittest.expect(o.type, unittest.equals('foo')); |
| 116 checkVariantAnnotation(o.variant); | 116 checkVariantAnnotation(o.variant); |
| 117 } | 117 } |
| 118 buildCounterAnnotation--; | 118 buildCounterAnnotation--; |
| 119 } | 119 } |
| 120 | 120 |
| 121 buildUnnamed2525() { | 121 buildUnnamed2651() { |
| 122 var o = new core.List<core.Object>(); | 122 var o = new core.List<core.Object>(); |
| 123 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 123 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 124 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 124 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 125 return o; | 125 return o; |
| 126 } | 126 } |
| 127 | 127 |
| 128 checkUnnamed2525(core.List<core.Object> o) { | 128 checkUnnamed2651(core.List<core.Object> o) { |
| 129 unittest.expect(o, unittest.hasLength(2)); | 129 unittest.expect(o, unittest.hasLength(2)); |
| 130 var casted3 = (o[0]) as core.Map; unittest.expect(casted3, unittest.hasLength(
3)); unittest.expect(casted3["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted3["bool"], unittest.equals(true)); unittest.expect(casted3["string"], u
nittest.equals('foo')); | 130 var casted3 = (o[0]) as core.Map; unittest.expect(casted3, unittest.hasLength(
3)); unittest.expect(casted3["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted3["bool"], unittest.equals(true)); unittest.expect(casted3["string"], u
nittest.equals('foo')); |
| 131 var casted4 = (o[1]) as core.Map; unittest.expect(casted4, unittest.hasLength(
3)); unittest.expect(casted4["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted4["bool"], unittest.equals(true)); unittest.expect(casted4["string"], u
nittest.equals('foo')); | 131 var casted4 = (o[1]) as core.Map; unittest.expect(casted4, unittest.hasLength(
3)); unittest.expect(casted4["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted4["bool"], unittest.equals(true)); unittest.expect(casted4["string"], u
nittest.equals('foo')); |
| 132 } | 132 } |
| 133 | 133 |
| 134 buildUnnamed2526() { | 134 buildUnnamed2652() { |
| 135 var o = new core.Map<core.String, core.List<core.Object>>(); | 135 var o = new core.Map<core.String, core.List<core.Object>>(); |
| 136 o["x"] = buildUnnamed2525(); | 136 o["x"] = buildUnnamed2651(); |
| 137 o["y"] = buildUnnamed2525(); | 137 o["y"] = buildUnnamed2651(); |
| 138 return o; | 138 return o; |
| 139 } | 139 } |
| 140 | 140 |
| 141 checkUnnamed2526(core.Map<core.String, core.List<core.Object>> o) { | 141 checkUnnamed2652(core.Map<core.String, core.List<core.Object>> o) { |
| 142 unittest.expect(o, unittest.hasLength(2)); | 142 unittest.expect(o, unittest.hasLength(2)); |
| 143 checkUnnamed2525(o["x"]); | 143 checkUnnamed2651(o["x"]); |
| 144 checkUnnamed2525(o["y"]); | 144 checkUnnamed2651(o["y"]); |
| 145 } | 145 } |
| 146 | 146 |
| 147 core.int buildCounterAnnotationSet = 0; | 147 core.int buildCounterAnnotationSet = 0; |
| 148 buildAnnotationSet() { | 148 buildAnnotationSet() { |
| 149 var o = new api.AnnotationSet(); | 149 var o = new api.AnnotationSet(); |
| 150 buildCounterAnnotationSet++; | 150 buildCounterAnnotationSet++; |
| 151 if (buildCounterAnnotationSet < 3) { | 151 if (buildCounterAnnotationSet < 3) { |
| 152 o.datasetId = "foo"; | 152 o.datasetId = "foo"; |
| 153 o.id = "foo"; | 153 o.id = "foo"; |
| 154 o.info = buildUnnamed2526(); | 154 o.info = buildUnnamed2652(); |
| 155 o.name = "foo"; | 155 o.name = "foo"; |
| 156 o.referenceSetId = "foo"; | 156 o.referenceSetId = "foo"; |
| 157 o.sourceUri = "foo"; | 157 o.sourceUri = "foo"; |
| 158 o.type = "foo"; | 158 o.type = "foo"; |
| 159 } | 159 } |
| 160 buildCounterAnnotationSet--; | 160 buildCounterAnnotationSet--; |
| 161 return o; | 161 return o; |
| 162 } | 162 } |
| 163 | 163 |
| 164 checkAnnotationSet(api.AnnotationSet o) { | 164 checkAnnotationSet(api.AnnotationSet o) { |
| 165 buildCounterAnnotationSet++; | 165 buildCounterAnnotationSet++; |
| 166 if (buildCounterAnnotationSet < 3) { | 166 if (buildCounterAnnotationSet < 3) { |
| 167 unittest.expect(o.datasetId, unittest.equals('foo')); | 167 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 168 unittest.expect(o.id, unittest.equals('foo')); | 168 unittest.expect(o.id, unittest.equals('foo')); |
| 169 checkUnnamed2526(o.info); | 169 checkUnnamed2652(o.info); |
| 170 unittest.expect(o.name, unittest.equals('foo')); | 170 unittest.expect(o.name, unittest.equals('foo')); |
| 171 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 171 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 172 unittest.expect(o.sourceUri, unittest.equals('foo')); | 172 unittest.expect(o.sourceUri, unittest.equals('foo')); |
| 173 unittest.expect(o.type, unittest.equals('foo')); | 173 unittest.expect(o.type, unittest.equals('foo')); |
| 174 } | 174 } |
| 175 buildCounterAnnotationSet--; | 175 buildCounterAnnotationSet--; |
| 176 } | 176 } |
| 177 | 177 |
| 178 buildUnnamed2527() { | 178 buildUnnamed2653() { |
| 179 var o = new core.List<api.Annotation>(); | 179 var o = new core.List<api.Annotation>(); |
| 180 o.add(buildAnnotation()); | 180 o.add(buildAnnotation()); |
| 181 o.add(buildAnnotation()); | 181 o.add(buildAnnotation()); |
| 182 return o; | 182 return o; |
| 183 } | 183 } |
| 184 | 184 |
| 185 checkUnnamed2527(core.List<api.Annotation> o) { | 185 checkUnnamed2653(core.List<api.Annotation> o) { |
| 186 unittest.expect(o, unittest.hasLength(2)); | 186 unittest.expect(o, unittest.hasLength(2)); |
| 187 checkAnnotation(o[0]); | 187 checkAnnotation(o[0]); |
| 188 checkAnnotation(o[1]); | 188 checkAnnotation(o[1]); |
| 189 } | 189 } |
| 190 | 190 |
| 191 core.int buildCounterBatchCreateAnnotationsRequest = 0; | 191 core.int buildCounterBatchCreateAnnotationsRequest = 0; |
| 192 buildBatchCreateAnnotationsRequest() { | 192 buildBatchCreateAnnotationsRequest() { |
| 193 var o = new api.BatchCreateAnnotationsRequest(); | 193 var o = new api.BatchCreateAnnotationsRequest(); |
| 194 buildCounterBatchCreateAnnotationsRequest++; | 194 buildCounterBatchCreateAnnotationsRequest++; |
| 195 if (buildCounterBatchCreateAnnotationsRequest < 3) { | 195 if (buildCounterBatchCreateAnnotationsRequest < 3) { |
| 196 o.annotations = buildUnnamed2527(); | 196 o.annotations = buildUnnamed2653(); |
| 197 } | 197 } |
| 198 buildCounterBatchCreateAnnotationsRequest--; | 198 buildCounterBatchCreateAnnotationsRequest--; |
| 199 return o; | 199 return o; |
| 200 } | 200 } |
| 201 | 201 |
| 202 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) { | 202 checkBatchCreateAnnotationsRequest(api.BatchCreateAnnotationsRequest o) { |
| 203 buildCounterBatchCreateAnnotationsRequest++; | 203 buildCounterBatchCreateAnnotationsRequest++; |
| 204 if (buildCounterBatchCreateAnnotationsRequest < 3) { | 204 if (buildCounterBatchCreateAnnotationsRequest < 3) { |
| 205 checkUnnamed2527(o.annotations); | 205 checkUnnamed2653(o.annotations); |
| 206 } | 206 } |
| 207 buildCounterBatchCreateAnnotationsRequest--; | 207 buildCounterBatchCreateAnnotationsRequest--; |
| 208 } | 208 } |
| 209 | 209 |
| 210 buildUnnamed2528() { | 210 buildUnnamed2654() { |
| 211 var o = new core.List<api.Entry>(); | 211 var o = new core.List<api.Entry>(); |
| 212 o.add(buildEntry()); | 212 o.add(buildEntry()); |
| 213 o.add(buildEntry()); | 213 o.add(buildEntry()); |
| 214 return o; | 214 return o; |
| 215 } | 215 } |
| 216 | 216 |
| 217 checkUnnamed2528(core.List<api.Entry> o) { | 217 checkUnnamed2654(core.List<api.Entry> o) { |
| 218 unittest.expect(o, unittest.hasLength(2)); | 218 unittest.expect(o, unittest.hasLength(2)); |
| 219 checkEntry(o[0]); | 219 checkEntry(o[0]); |
| 220 checkEntry(o[1]); | 220 checkEntry(o[1]); |
| 221 } | 221 } |
| 222 | 222 |
| 223 core.int buildCounterBatchCreateAnnotationsResponse = 0; | 223 core.int buildCounterBatchCreateAnnotationsResponse = 0; |
| 224 buildBatchCreateAnnotationsResponse() { | 224 buildBatchCreateAnnotationsResponse() { |
| 225 var o = new api.BatchCreateAnnotationsResponse(); | 225 var o = new api.BatchCreateAnnotationsResponse(); |
| 226 buildCounterBatchCreateAnnotationsResponse++; | 226 buildCounterBatchCreateAnnotationsResponse++; |
| 227 if (buildCounterBatchCreateAnnotationsResponse < 3) { | 227 if (buildCounterBatchCreateAnnotationsResponse < 3) { |
| 228 o.entries = buildUnnamed2528(); | 228 o.entries = buildUnnamed2654(); |
| 229 } | 229 } |
| 230 buildCounterBatchCreateAnnotationsResponse--; | 230 buildCounterBatchCreateAnnotationsResponse--; |
| 231 return o; | 231 return o; |
| 232 } | 232 } |
| 233 | 233 |
| 234 checkBatchCreateAnnotationsResponse(api.BatchCreateAnnotationsResponse o) { | 234 checkBatchCreateAnnotationsResponse(api.BatchCreateAnnotationsResponse o) { |
| 235 buildCounterBatchCreateAnnotationsResponse++; | 235 buildCounterBatchCreateAnnotationsResponse++; |
| 236 if (buildCounterBatchCreateAnnotationsResponse < 3) { | 236 if (buildCounterBatchCreateAnnotationsResponse < 3) { |
| 237 checkUnnamed2528(o.entries); | 237 checkUnnamed2654(o.entries); |
| 238 } | 238 } |
| 239 buildCounterBatchCreateAnnotationsResponse--; | 239 buildCounterBatchCreateAnnotationsResponse--; |
| 240 } | 240 } |
| 241 | 241 |
| 242 buildUnnamed2529() { | 242 buildUnnamed2655() { |
| 243 var o = new core.List<core.String>(); | 243 var o = new core.List<core.String>(); |
| 244 o.add("foo"); | 244 o.add("foo"); |
| 245 o.add("foo"); | 245 o.add("foo"); |
| 246 return o; | 246 return o; |
| 247 } | 247 } |
| 248 | 248 |
| 249 checkUnnamed2529(core.List<core.String> o) { | 249 checkUnnamed2655(core.List<core.String> o) { |
| 250 unittest.expect(o, unittest.hasLength(2)); | 250 unittest.expect(o, unittest.hasLength(2)); |
| 251 unittest.expect(o[0], unittest.equals('foo')); | 251 unittest.expect(o[0], unittest.equals('foo')); |
| 252 unittest.expect(o[1], unittest.equals('foo')); | 252 unittest.expect(o[1], unittest.equals('foo')); |
| 253 } | 253 } |
| 254 | 254 |
| 255 core.int buildCounterBinding = 0; | 255 core.int buildCounterBinding = 0; |
| 256 buildBinding() { | 256 buildBinding() { |
| 257 var o = new api.Binding(); | 257 var o = new api.Binding(); |
| 258 buildCounterBinding++; | 258 buildCounterBinding++; |
| 259 if (buildCounterBinding < 3) { | 259 if (buildCounterBinding < 3) { |
| 260 o.members = buildUnnamed2529(); | 260 o.members = buildUnnamed2655(); |
| 261 o.role = "foo"; | 261 o.role = "foo"; |
| 262 } | 262 } |
| 263 buildCounterBinding--; | 263 buildCounterBinding--; |
| 264 return o; | 264 return o; |
| 265 } | 265 } |
| 266 | 266 |
| 267 checkBinding(api.Binding o) { | 267 checkBinding(api.Binding o) { |
| 268 buildCounterBinding++; | 268 buildCounterBinding++; |
| 269 if (buildCounterBinding < 3) { | 269 if (buildCounterBinding < 3) { |
| 270 checkUnnamed2529(o.members); | 270 checkUnnamed2655(o.members); |
| 271 unittest.expect(o.role, unittest.equals('foo')); | 271 unittest.expect(o.role, unittest.equals('foo')); |
| 272 } | 272 } |
| 273 buildCounterBinding--; | 273 buildCounterBinding--; |
| 274 } | 274 } |
| 275 | 275 |
| 276 buildUnnamed2530() { | 276 buildUnnamed2656() { |
| 277 var o = new core.List<core.Object>(); | 277 var o = new core.List<core.Object>(); |
| 278 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 278 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 279 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 279 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 280 return o; | 280 return o; |
| 281 } | 281 } |
| 282 | 282 |
| 283 checkUnnamed2530(core.List<core.Object> o) { | 283 checkUnnamed2656(core.List<core.Object> o) { |
| 284 unittest.expect(o, unittest.hasLength(2)); | 284 unittest.expect(o, unittest.hasLength(2)); |
| 285 var casted5 = (o[0]) as core.Map; unittest.expect(casted5, unittest.hasLength(
3)); unittest.expect(casted5["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted5["bool"], unittest.equals(true)); unittest.expect(casted5["string"], u
nittest.equals('foo')); | 285 var casted5 = (o[0]) as core.Map; unittest.expect(casted5, unittest.hasLength(
3)); unittest.expect(casted5["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted5["bool"], unittest.equals(true)); unittest.expect(casted5["string"], u
nittest.equals('foo')); |
| 286 var casted6 = (o[1]) as core.Map; unittest.expect(casted6, unittest.hasLength(
3)); unittest.expect(casted6["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted6["bool"], unittest.equals(true)); unittest.expect(casted6["string"], u
nittest.equals('foo')); | 286 var casted6 = (o[1]) as core.Map; unittest.expect(casted6, unittest.hasLength(
3)); unittest.expect(casted6["list"], unittest.equals([1, 2, 3])); unittest.expe
ct(casted6["bool"], unittest.equals(true)); unittest.expect(casted6["string"], u
nittest.equals('foo')); |
| 287 } | 287 } |
| 288 | 288 |
| 289 buildUnnamed2531() { | 289 buildUnnamed2657() { |
| 290 var o = new core.Map<core.String, core.List<core.Object>>(); | 290 var o = new core.Map<core.String, core.List<core.Object>>(); |
| 291 o["x"] = buildUnnamed2530(); | 291 o["x"] = buildUnnamed2656(); |
| 292 o["y"] = buildUnnamed2530(); | 292 o["y"] = buildUnnamed2656(); |
| 293 return o; | 293 return o; |
| 294 } | 294 } |
| 295 | 295 |
| 296 checkUnnamed2531(core.Map<core.String, core.List<core.Object>> o) { | 296 checkUnnamed2657(core.Map<core.String, core.List<core.Object>> o) { |
| 297 unittest.expect(o, unittest.hasLength(2)); | 297 unittest.expect(o, unittest.hasLength(2)); |
| 298 checkUnnamed2530(o["x"]); | 298 checkUnnamed2656(o["x"]); |
| 299 checkUnnamed2530(o["y"]); | 299 checkUnnamed2656(o["y"]); |
| 300 } | 300 } |
| 301 | 301 |
| 302 buildUnnamed2532() { | 302 buildUnnamed2658() { |
| 303 var o = new core.List<core.String>(); | 303 var o = new core.List<core.String>(); |
| 304 o.add("foo"); | 304 o.add("foo"); |
| 305 o.add("foo"); | 305 o.add("foo"); |
| 306 return o; | 306 return o; |
| 307 } | 307 } |
| 308 | 308 |
| 309 checkUnnamed2532(core.List<core.String> o) { | 309 checkUnnamed2658(core.List<core.String> o) { |
| 310 unittest.expect(o, unittest.hasLength(2)); | 310 unittest.expect(o, unittest.hasLength(2)); |
| 311 unittest.expect(o[0], unittest.equals('foo')); | 311 unittest.expect(o[0], unittest.equals('foo')); |
| 312 unittest.expect(o[1], unittest.equals('foo')); | 312 unittest.expect(o[1], unittest.equals('foo')); |
| 313 } | 313 } |
| 314 | 314 |
| 315 core.int buildCounterCallSet = 0; | 315 core.int buildCounterCallSet = 0; |
| 316 buildCallSet() { | 316 buildCallSet() { |
| 317 var o = new api.CallSet(); | 317 var o = new api.CallSet(); |
| 318 buildCounterCallSet++; | 318 buildCounterCallSet++; |
| 319 if (buildCounterCallSet < 3) { | 319 if (buildCounterCallSet < 3) { |
| 320 o.created = "foo"; | 320 o.created = "foo"; |
| 321 o.id = "foo"; | 321 o.id = "foo"; |
| 322 o.info = buildUnnamed2531(); | 322 o.info = buildUnnamed2657(); |
| 323 o.name = "foo"; | 323 o.name = "foo"; |
| 324 o.sampleId = "foo"; | 324 o.sampleId = "foo"; |
| 325 o.variantSetIds = buildUnnamed2532(); | 325 o.variantSetIds = buildUnnamed2658(); |
| 326 } | 326 } |
| 327 buildCounterCallSet--; | 327 buildCounterCallSet--; |
| 328 return o; | 328 return o; |
| 329 } | 329 } |
| 330 | 330 |
| 331 checkCallSet(api.CallSet o) { | 331 checkCallSet(api.CallSet o) { |
| 332 buildCounterCallSet++; | 332 buildCounterCallSet++; |
| 333 if (buildCounterCallSet < 3) { | 333 if (buildCounterCallSet < 3) { |
| 334 unittest.expect(o.created, unittest.equals('foo')); | 334 unittest.expect(o.created, unittest.equals('foo')); |
| 335 unittest.expect(o.id, unittest.equals('foo')); | 335 unittest.expect(o.id, unittest.equals('foo')); |
| 336 checkUnnamed2531(o.info); | 336 checkUnnamed2657(o.info); |
| 337 unittest.expect(o.name, unittest.equals('foo')); | 337 unittest.expect(o.name, unittest.equals('foo')); |
| 338 unittest.expect(o.sampleId, unittest.equals('foo')); | 338 unittest.expect(o.sampleId, unittest.equals('foo')); |
| 339 checkUnnamed2532(o.variantSetIds); | 339 checkUnnamed2658(o.variantSetIds); |
| 340 } | 340 } |
| 341 buildCounterCallSet--; | 341 buildCounterCallSet--; |
| 342 } | 342 } |
| 343 | 343 |
| 344 core.int buildCounterCancelOperationRequest = 0; | 344 core.int buildCounterCancelOperationRequest = 0; |
| 345 buildCancelOperationRequest() { | 345 buildCancelOperationRequest() { |
| 346 var o = new api.CancelOperationRequest(); | 346 var o = new api.CancelOperationRequest(); |
| 347 buildCounterCancelOperationRequest++; | 347 buildCounterCancelOperationRequest++; |
| 348 if (buildCounterCancelOperationRequest < 3) { | 348 if (buildCounterCancelOperationRequest < 3) { |
| 349 } | 349 } |
| (...skipping 24 matching lines...) Expand all Loading... |
| 374 checkCigarUnit(api.CigarUnit o) { | 374 checkCigarUnit(api.CigarUnit o) { |
| 375 buildCounterCigarUnit++; | 375 buildCounterCigarUnit++; |
| 376 if (buildCounterCigarUnit < 3) { | 376 if (buildCounterCigarUnit < 3) { |
| 377 unittest.expect(o.operation, unittest.equals('foo')); | 377 unittest.expect(o.operation, unittest.equals('foo')); |
| 378 unittest.expect(o.operationLength, unittest.equals('foo')); | 378 unittest.expect(o.operationLength, unittest.equals('foo')); |
| 379 unittest.expect(o.referenceSequence, unittest.equals('foo')); | 379 unittest.expect(o.referenceSequence, unittest.equals('foo')); |
| 380 } | 380 } |
| 381 buildCounterCigarUnit--; | 381 buildCounterCigarUnit--; |
| 382 } | 382 } |
| 383 | 383 |
| 384 buildUnnamed2533() { | 384 buildUnnamed2659() { |
| 385 var o = new core.List<api.ExternalId>(); | 385 var o = new core.List<api.ExternalId>(); |
| 386 o.add(buildExternalId()); | 386 o.add(buildExternalId()); |
| 387 o.add(buildExternalId()); | 387 o.add(buildExternalId()); |
| 388 return o; | 388 return o; |
| 389 } | 389 } |
| 390 | 390 |
| 391 checkUnnamed2533(core.List<api.ExternalId> o) { | 391 checkUnnamed2659(core.List<api.ExternalId> o) { |
| 392 unittest.expect(o, unittest.hasLength(2)); | 392 unittest.expect(o, unittest.hasLength(2)); |
| 393 checkExternalId(o[0]); | 393 checkExternalId(o[0]); |
| 394 checkExternalId(o[1]); | 394 checkExternalId(o[1]); |
| 395 } | 395 } |
| 396 | 396 |
| 397 buildUnnamed2534() { | 397 buildUnnamed2660() { |
| 398 var o = new core.List<core.String>(); | 398 var o = new core.List<core.String>(); |
| 399 o.add("foo"); | 399 o.add("foo"); |
| 400 o.add("foo"); | 400 o.add("foo"); |
| 401 return o; | 401 return o; |
| 402 } | 402 } |
| 403 | 403 |
| 404 checkUnnamed2534(core.List<core.String> o) { | 404 checkUnnamed2660(core.List<core.String> o) { |
| 405 unittest.expect(o, unittest.hasLength(2)); | 405 unittest.expect(o, unittest.hasLength(2)); |
| 406 unittest.expect(o[0], unittest.equals('foo')); | 406 unittest.expect(o[0], unittest.equals('foo')); |
| 407 unittest.expect(o[1], unittest.equals('foo')); | 407 unittest.expect(o[1], unittest.equals('foo')); |
| 408 } | 408 } |
| 409 | 409 |
| 410 core.int buildCounterClinicalCondition = 0; | 410 core.int buildCounterClinicalCondition = 0; |
| 411 buildClinicalCondition() { | 411 buildClinicalCondition() { |
| 412 var o = new api.ClinicalCondition(); | 412 var o = new api.ClinicalCondition(); |
| 413 buildCounterClinicalCondition++; | 413 buildCounterClinicalCondition++; |
| 414 if (buildCounterClinicalCondition < 3) { | 414 if (buildCounterClinicalCondition < 3) { |
| 415 o.conceptId = "foo"; | 415 o.conceptId = "foo"; |
| 416 o.externalIds = buildUnnamed2533(); | 416 o.externalIds = buildUnnamed2659(); |
| 417 o.names = buildUnnamed2534(); | 417 o.names = buildUnnamed2660(); |
| 418 o.omimId = "foo"; | 418 o.omimId = "foo"; |
| 419 } | 419 } |
| 420 buildCounterClinicalCondition--; | 420 buildCounterClinicalCondition--; |
| 421 return o; | 421 return o; |
| 422 } | 422 } |
| 423 | 423 |
| 424 checkClinicalCondition(api.ClinicalCondition o) { | 424 checkClinicalCondition(api.ClinicalCondition o) { |
| 425 buildCounterClinicalCondition++; | 425 buildCounterClinicalCondition++; |
| 426 if (buildCounterClinicalCondition < 3) { | 426 if (buildCounterClinicalCondition < 3) { |
| 427 unittest.expect(o.conceptId, unittest.equals('foo')); | 427 unittest.expect(o.conceptId, unittest.equals('foo')); |
| 428 checkUnnamed2533(o.externalIds); | 428 checkUnnamed2659(o.externalIds); |
| 429 checkUnnamed2534(o.names); | 429 checkUnnamed2660(o.names); |
| 430 unittest.expect(o.omimId, unittest.equals('foo')); | 430 unittest.expect(o.omimId, unittest.equals('foo')); |
| 431 } | 431 } |
| 432 buildCounterClinicalCondition--; | 432 buildCounterClinicalCondition--; |
| 433 } | 433 } |
| 434 | 434 |
| 435 core.int buildCounterCodingSequence = 0; | 435 core.int buildCounterCodingSequence = 0; |
| 436 buildCodingSequence() { | 436 buildCodingSequence() { |
| 437 var o = new api.CodingSequence(); | 437 var o = new api.CodingSequence(); |
| 438 buildCounterCodingSequence++; | 438 buildCounterCodingSequence++; |
| 439 if (buildCounterCodingSequence < 3) { | 439 if (buildCounterCodingSequence < 3) { |
| 440 o.end = "foo"; | 440 o.end = "foo"; |
| 441 o.start = "foo"; | 441 o.start = "foo"; |
| 442 } | 442 } |
| 443 buildCounterCodingSequence--; | 443 buildCounterCodingSequence--; |
| 444 return o; | 444 return o; |
| 445 } | 445 } |
| 446 | 446 |
| 447 checkCodingSequence(api.CodingSequence o) { | 447 checkCodingSequence(api.CodingSequence o) { |
| 448 buildCounterCodingSequence++; | 448 buildCounterCodingSequence++; |
| 449 if (buildCounterCodingSequence < 3) { | 449 if (buildCounterCodingSequence < 3) { |
| 450 unittest.expect(o.end, unittest.equals('foo')); | 450 unittest.expect(o.end, unittest.equals('foo')); |
| 451 unittest.expect(o.start, unittest.equals('foo')); | 451 unittest.expect(o.start, unittest.equals('foo')); |
| 452 } | 452 } |
| 453 buildCounterCodingSequence--; | 453 buildCounterCodingSequence--; |
| 454 } | 454 } |
| 455 | 455 |
| 456 buildUnnamed2535() { | 456 buildUnnamed2661() { |
| 457 var o = new core.List<core.String>(); | 457 var o = new core.List<core.String>(); |
| 458 o.add("foo"); | 458 o.add("foo"); |
| 459 o.add("foo"); | 459 o.add("foo"); |
| 460 return o; | 460 return o; |
| 461 } | 461 } |
| 462 | 462 |
| 463 checkUnnamed2535(core.List<core.String> o) { | 463 checkUnnamed2661(core.List<core.String> o) { |
| 464 unittest.expect(o, unittest.hasLength(2)); | 464 unittest.expect(o, unittest.hasLength(2)); |
| 465 unittest.expect(o[0], unittest.equals('foo')); | 465 unittest.expect(o[0], unittest.equals('foo')); |
| 466 unittest.expect(o[1], unittest.equals('foo')); | 466 unittest.expect(o[1], unittest.equals('foo')); |
| 467 } | 467 } |
| 468 | 468 |
| 469 core.int buildCounterComputeEngine = 0; | 469 core.int buildCounterComputeEngine = 0; |
| 470 buildComputeEngine() { | 470 buildComputeEngine() { |
| 471 var o = new api.ComputeEngine(); | 471 var o = new api.ComputeEngine(); |
| 472 buildCounterComputeEngine++; | 472 buildCounterComputeEngine++; |
| 473 if (buildCounterComputeEngine < 3) { | 473 if (buildCounterComputeEngine < 3) { |
| 474 o.diskNames = buildUnnamed2535(); | 474 o.diskNames = buildUnnamed2661(); |
| 475 o.instanceName = "foo"; | 475 o.instanceName = "foo"; |
| 476 o.machineType = "foo"; | 476 o.machineType = "foo"; |
| 477 o.zone = "foo"; | 477 o.zone = "foo"; |
| 478 } | 478 } |
| 479 buildCounterComputeEngine--; | 479 buildCounterComputeEngine--; |
| 480 return o; | 480 return o; |
| 481 } | 481 } |
| 482 | 482 |
| 483 checkComputeEngine(api.ComputeEngine o) { | 483 checkComputeEngine(api.ComputeEngine o) { |
| 484 buildCounterComputeEngine++; | 484 buildCounterComputeEngine++; |
| 485 if (buildCounterComputeEngine < 3) { | 485 if (buildCounterComputeEngine < 3) { |
| 486 checkUnnamed2535(o.diskNames); | 486 checkUnnamed2661(o.diskNames); |
| 487 unittest.expect(o.instanceName, unittest.equals('foo')); | 487 unittest.expect(o.instanceName, unittest.equals('foo')); |
| 488 unittest.expect(o.machineType, unittest.equals('foo')); | 488 unittest.expect(o.machineType, unittest.equals('foo')); |
| 489 unittest.expect(o.zone, unittest.equals('foo')); | 489 unittest.expect(o.zone, unittest.equals('foo')); |
| 490 } | 490 } |
| 491 buildCounterComputeEngine--; | 491 buildCounterComputeEngine--; |
| 492 } | 492 } |
| 493 | 493 |
| 494 core.int buildCounterCoverageBucket = 0; | 494 core.int buildCounterCoverageBucket = 0; |
| 495 buildCoverageBucket() { | 495 buildCoverageBucket() { |
| 496 var o = new api.CoverageBucket(); | 496 var o = new api.CoverageBucket(); |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 buildCounterExperiment++; | 616 buildCounterExperiment++; |
| 617 if (buildCounterExperiment < 3) { | 617 if (buildCounterExperiment < 3) { |
| 618 unittest.expect(o.instrumentModel, unittest.equals('foo')); | 618 unittest.expect(o.instrumentModel, unittest.equals('foo')); |
| 619 unittest.expect(o.libraryId, unittest.equals('foo')); | 619 unittest.expect(o.libraryId, unittest.equals('foo')); |
| 620 unittest.expect(o.platformUnit, unittest.equals('foo')); | 620 unittest.expect(o.platformUnit, unittest.equals('foo')); |
| 621 unittest.expect(o.sequencingCenter, unittest.equals('foo')); | 621 unittest.expect(o.sequencingCenter, unittest.equals('foo')); |
| 622 } | 622 } |
| 623 buildCounterExperiment--; | 623 buildCounterExperiment--; |
| 624 } | 624 } |
| 625 | 625 |
| 626 buildUnnamed2536() { | 626 buildUnnamed2662() { |
| 627 var o = new core.List<core.String>(); | 627 var o = new core.List<core.String>(); |
| 628 o.add("foo"); | 628 o.add("foo"); |
| 629 o.add("foo"); | 629 o.add("foo"); |
| 630 return o; | 630 return o; |
| 631 } | 631 } |
| 632 | 632 |
| 633 checkUnnamed2536(core.List<core.String> o) { | 633 checkUnnamed2662(core.List<core.String> o) { |
| 634 unittest.expect(o, unittest.hasLength(2)); | 634 unittest.expect(o, unittest.hasLength(2)); |
| 635 unittest.expect(o[0], unittest.equals('foo')); | 635 unittest.expect(o[0], unittest.equals('foo')); |
| 636 unittest.expect(o[1], unittest.equals('foo')); | 636 unittest.expect(o[1], unittest.equals('foo')); |
| 637 } | 637 } |
| 638 | 638 |
| 639 core.int buildCounterExportReadGroupSetRequest = 0; | 639 core.int buildCounterExportReadGroupSetRequest = 0; |
| 640 buildExportReadGroupSetRequest() { | 640 buildExportReadGroupSetRequest() { |
| 641 var o = new api.ExportReadGroupSetRequest(); | 641 var o = new api.ExportReadGroupSetRequest(); |
| 642 buildCounterExportReadGroupSetRequest++; | 642 buildCounterExportReadGroupSetRequest++; |
| 643 if (buildCounterExportReadGroupSetRequest < 3) { | 643 if (buildCounterExportReadGroupSetRequest < 3) { |
| 644 o.exportUri = "foo"; | 644 o.exportUri = "foo"; |
| 645 o.projectId = "foo"; | 645 o.projectId = "foo"; |
| 646 o.referenceNames = buildUnnamed2536(); | 646 o.referenceNames = buildUnnamed2662(); |
| 647 } | 647 } |
| 648 buildCounterExportReadGroupSetRequest--; | 648 buildCounterExportReadGroupSetRequest--; |
| 649 return o; | 649 return o; |
| 650 } | 650 } |
| 651 | 651 |
| 652 checkExportReadGroupSetRequest(api.ExportReadGroupSetRequest o) { | 652 checkExportReadGroupSetRequest(api.ExportReadGroupSetRequest o) { |
| 653 buildCounterExportReadGroupSetRequest++; | 653 buildCounterExportReadGroupSetRequest++; |
| 654 if (buildCounterExportReadGroupSetRequest < 3) { | 654 if (buildCounterExportReadGroupSetRequest < 3) { |
| 655 unittest.expect(o.exportUri, unittest.equals('foo')); | 655 unittest.expect(o.exportUri, unittest.equals('foo')); |
| 656 unittest.expect(o.projectId, unittest.equals('foo')); | 656 unittest.expect(o.projectId, unittest.equals('foo')); |
| 657 checkUnnamed2536(o.referenceNames); | 657 checkUnnamed2662(o.referenceNames); |
| 658 } | 658 } |
| 659 buildCounterExportReadGroupSetRequest--; | 659 buildCounterExportReadGroupSetRequest--; |
| 660 } | 660 } |
| 661 | 661 |
| 662 buildUnnamed2537() { | 662 buildUnnamed2663() { |
| 663 var o = new core.List<core.String>(); | 663 var o = new core.List<core.String>(); |
| 664 o.add("foo"); | 664 o.add("foo"); |
| 665 o.add("foo"); | 665 o.add("foo"); |
| 666 return o; | 666 return o; |
| 667 } | 667 } |
| 668 | 668 |
| 669 checkUnnamed2537(core.List<core.String> o) { | 669 checkUnnamed2663(core.List<core.String> o) { |
| 670 unittest.expect(o, unittest.hasLength(2)); | 670 unittest.expect(o, unittest.hasLength(2)); |
| 671 unittest.expect(o[0], unittest.equals('foo')); | 671 unittest.expect(o[0], unittest.equals('foo')); |
| 672 unittest.expect(o[1], unittest.equals('foo')); | 672 unittest.expect(o[1], unittest.equals('foo')); |
| 673 } | 673 } |
| 674 | 674 |
| 675 core.int buildCounterExportVariantSetRequest = 0; | 675 core.int buildCounterExportVariantSetRequest = 0; |
| 676 buildExportVariantSetRequest() { | 676 buildExportVariantSetRequest() { |
| 677 var o = new api.ExportVariantSetRequest(); | 677 var o = new api.ExportVariantSetRequest(); |
| 678 buildCounterExportVariantSetRequest++; | 678 buildCounterExportVariantSetRequest++; |
| 679 if (buildCounterExportVariantSetRequest < 3) { | 679 if (buildCounterExportVariantSetRequest < 3) { |
| 680 o.bigqueryDataset = "foo"; | 680 o.bigqueryDataset = "foo"; |
| 681 o.bigqueryTable = "foo"; | 681 o.bigqueryTable = "foo"; |
| 682 o.callSetIds = buildUnnamed2537(); | 682 o.callSetIds = buildUnnamed2663(); |
| 683 o.format = "foo"; | 683 o.format = "foo"; |
| 684 o.projectId = "foo"; | 684 o.projectId = "foo"; |
| 685 } | 685 } |
| 686 buildCounterExportVariantSetRequest--; | 686 buildCounterExportVariantSetRequest--; |
| 687 return o; | 687 return o; |
| 688 } | 688 } |
| 689 | 689 |
| 690 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { | 690 checkExportVariantSetRequest(api.ExportVariantSetRequest o) { |
| 691 buildCounterExportVariantSetRequest++; | 691 buildCounterExportVariantSetRequest++; |
| 692 if (buildCounterExportVariantSetRequest < 3) { | 692 if (buildCounterExportVariantSetRequest < 3) { |
| 693 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); | 693 unittest.expect(o.bigqueryDataset, unittest.equals('foo')); |
| 694 unittest.expect(o.bigqueryTable, unittest.equals('foo')); | 694 unittest.expect(o.bigqueryTable, unittest.equals('foo')); |
| 695 checkUnnamed2537(o.callSetIds); | 695 checkUnnamed2663(o.callSetIds); |
| 696 unittest.expect(o.format, unittest.equals('foo')); | 696 unittest.expect(o.format, unittest.equals('foo')); |
| 697 unittest.expect(o.projectId, unittest.equals('foo')); | 697 unittest.expect(o.projectId, unittest.equals('foo')); |
| 698 } | 698 } |
| 699 buildCounterExportVariantSetRequest--; | 699 buildCounterExportVariantSetRequest--; |
| 700 } | 700 } |
| 701 | 701 |
| 702 core.int buildCounterExternalId = 0; | 702 core.int buildCounterExternalId = 0; |
| 703 buildExternalId() { | 703 buildExternalId() { |
| 704 var o = new api.ExternalId(); | 704 var o = new api.ExternalId(); |
| 705 buildCounterExternalId++; | 705 buildCounterExternalId++; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 730 return o; | 730 return o; |
| 731 } | 731 } |
| 732 | 732 |
| 733 checkGetIamPolicyRequest(api.GetIamPolicyRequest o) { | 733 checkGetIamPolicyRequest(api.GetIamPolicyRequest o) { |
| 734 buildCounterGetIamPolicyRequest++; | 734 buildCounterGetIamPolicyRequest++; |
| 735 if (buildCounterGetIamPolicyRequest < 3) { | 735 if (buildCounterGetIamPolicyRequest < 3) { |
| 736 } | 736 } |
| 737 buildCounterGetIamPolicyRequest--; | 737 buildCounterGetIamPolicyRequest--; |
| 738 } | 738 } |
| 739 | 739 |
| 740 buildUnnamed2538() { | 740 buildUnnamed2664() { |
| 741 var o = new core.List<core.String>(); | 741 var o = new core.List<core.String>(); |
| 742 o.add("foo"); | 742 o.add("foo"); |
| 743 o.add("foo"); | 743 o.add("foo"); |
| 744 return o; | 744 return o; |
| 745 } | 745 } |
| 746 | 746 |
| 747 checkUnnamed2538(core.List<core.String> o) { | 747 checkUnnamed2664(core.List<core.String> o) { |
| 748 unittest.expect(o, unittest.hasLength(2)); | 748 unittest.expect(o, unittest.hasLength(2)); |
| 749 unittest.expect(o[0], unittest.equals('foo')); | 749 unittest.expect(o[0], unittest.equals('foo')); |
| 750 unittest.expect(o[1], unittest.equals('foo')); | 750 unittest.expect(o[1], unittest.equals('foo')); |
| 751 } | 751 } |
| 752 | 752 |
| 753 core.int buildCounterImportReadGroupSetsRequest = 0; | 753 core.int buildCounterImportReadGroupSetsRequest = 0; |
| 754 buildImportReadGroupSetsRequest() { | 754 buildImportReadGroupSetsRequest() { |
| 755 var o = new api.ImportReadGroupSetsRequest(); | 755 var o = new api.ImportReadGroupSetsRequest(); |
| 756 buildCounterImportReadGroupSetsRequest++; | 756 buildCounterImportReadGroupSetsRequest++; |
| 757 if (buildCounterImportReadGroupSetsRequest < 3) { | 757 if (buildCounterImportReadGroupSetsRequest < 3) { |
| 758 o.datasetId = "foo"; | 758 o.datasetId = "foo"; |
| 759 o.partitionStrategy = "foo"; | 759 o.partitionStrategy = "foo"; |
| 760 o.referenceSetId = "foo"; | 760 o.referenceSetId = "foo"; |
| 761 o.sourceUris = buildUnnamed2538(); | 761 o.sourceUris = buildUnnamed2664(); |
| 762 } | 762 } |
| 763 buildCounterImportReadGroupSetsRequest--; | 763 buildCounterImportReadGroupSetsRequest--; |
| 764 return o; | 764 return o; |
| 765 } | 765 } |
| 766 | 766 |
| 767 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { | 767 checkImportReadGroupSetsRequest(api.ImportReadGroupSetsRequest o) { |
| 768 buildCounterImportReadGroupSetsRequest++; | 768 buildCounterImportReadGroupSetsRequest++; |
| 769 if (buildCounterImportReadGroupSetsRequest < 3) { | 769 if (buildCounterImportReadGroupSetsRequest < 3) { |
| 770 unittest.expect(o.datasetId, unittest.equals('foo')); | 770 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 771 unittest.expect(o.partitionStrategy, unittest.equals('foo')); | 771 unittest.expect(o.partitionStrategy, unittest.equals('foo')); |
| 772 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 772 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 773 checkUnnamed2538(o.sourceUris); | 773 checkUnnamed2664(o.sourceUris); |
| 774 } | 774 } |
| 775 buildCounterImportReadGroupSetsRequest--; | 775 buildCounterImportReadGroupSetsRequest--; |
| 776 } | 776 } |
| 777 | 777 |
| 778 buildUnnamed2539() { | 778 buildUnnamed2665() { |
| 779 var o = new core.List<core.String>(); | 779 var o = new core.List<core.String>(); |
| 780 o.add("foo"); | 780 o.add("foo"); |
| 781 o.add("foo"); | 781 o.add("foo"); |
| 782 return o; | 782 return o; |
| 783 } | 783 } |
| 784 | 784 |
| 785 checkUnnamed2539(core.List<core.String> o) { | 785 checkUnnamed2665(core.List<core.String> o) { |
| 786 unittest.expect(o, unittest.hasLength(2)); | 786 unittest.expect(o, unittest.hasLength(2)); |
| 787 unittest.expect(o[0], unittest.equals('foo')); | 787 unittest.expect(o[0], unittest.equals('foo')); |
| 788 unittest.expect(o[1], unittest.equals('foo')); | 788 unittest.expect(o[1], unittest.equals('foo')); |
| 789 } | 789 } |
| 790 | 790 |
| 791 core.int buildCounterImportReadGroupSetsResponse = 0; | 791 core.int buildCounterImportReadGroupSetsResponse = 0; |
| 792 buildImportReadGroupSetsResponse() { | 792 buildImportReadGroupSetsResponse() { |
| 793 var o = new api.ImportReadGroupSetsResponse(); | 793 var o = new api.ImportReadGroupSetsResponse(); |
| 794 buildCounterImportReadGroupSetsResponse++; | 794 buildCounterImportReadGroupSetsResponse++; |
| 795 if (buildCounterImportReadGroupSetsResponse < 3) { | 795 if (buildCounterImportReadGroupSetsResponse < 3) { |
| 796 o.readGroupSetIds = buildUnnamed2539(); | 796 o.readGroupSetIds = buildUnnamed2665(); |
| 797 } | 797 } |
| 798 buildCounterImportReadGroupSetsResponse--; | 798 buildCounterImportReadGroupSetsResponse--; |
| 799 return o; | 799 return o; |
| 800 } | 800 } |
| 801 | 801 |
| 802 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { | 802 checkImportReadGroupSetsResponse(api.ImportReadGroupSetsResponse o) { |
| 803 buildCounterImportReadGroupSetsResponse++; | 803 buildCounterImportReadGroupSetsResponse++; |
| 804 if (buildCounterImportReadGroupSetsResponse < 3) { | 804 if (buildCounterImportReadGroupSetsResponse < 3) { |
| 805 checkUnnamed2539(o.readGroupSetIds); | 805 checkUnnamed2665(o.readGroupSetIds); |
| 806 } | 806 } |
| 807 buildCounterImportReadGroupSetsResponse--; | 807 buildCounterImportReadGroupSetsResponse--; |
| 808 } | 808 } |
| 809 | 809 |
| 810 buildUnnamed2540() { | 810 buildUnnamed2666() { |
| 811 var o = new core.Map<core.String, core.String>(); | 811 var o = new core.Map<core.String, core.String>(); |
| 812 o["x"] = "foo"; | 812 o["x"] = "foo"; |
| 813 o["y"] = "foo"; | 813 o["y"] = "foo"; |
| 814 return o; | 814 return o; |
| 815 } | 815 } |
| 816 | 816 |
| 817 checkUnnamed2540(core.Map<core.String, core.String> o) { | 817 checkUnnamed2666(core.Map<core.String, core.String> o) { |
| 818 unittest.expect(o, unittest.hasLength(2)); | 818 unittest.expect(o, unittest.hasLength(2)); |
| 819 unittest.expect(o["x"], unittest.equals('foo')); | 819 unittest.expect(o["x"], unittest.equals('foo')); |
| 820 unittest.expect(o["y"], unittest.equals('foo')); | 820 unittest.expect(o["y"], unittest.equals('foo')); |
| 821 } | 821 } |
| 822 | 822 |
| 823 buildUnnamed2541() { | 823 buildUnnamed2667() { |
| 824 var o = new core.List<core.String>(); | 824 var o = new core.List<core.String>(); |
| 825 o.add("foo"); | 825 o.add("foo"); |
| 826 o.add("foo"); | 826 o.add("foo"); |
| 827 return o; | 827 return o; |
| 828 } | 828 } |
| 829 | 829 |
| 830 checkUnnamed2541(core.List<core.String> o) { | 830 checkUnnamed2667(core.List<core.String> o) { |
| 831 unittest.expect(o, unittest.hasLength(2)); | 831 unittest.expect(o, unittest.hasLength(2)); |
| 832 unittest.expect(o[0], unittest.equals('foo')); | 832 unittest.expect(o[0], unittest.equals('foo')); |
| 833 unittest.expect(o[1], unittest.equals('foo')); | 833 unittest.expect(o[1], unittest.equals('foo')); |
| 834 } | 834 } |
| 835 | 835 |
| 836 core.int buildCounterImportVariantsRequest = 0; | 836 core.int buildCounterImportVariantsRequest = 0; |
| 837 buildImportVariantsRequest() { | 837 buildImportVariantsRequest() { |
| 838 var o = new api.ImportVariantsRequest(); | 838 var o = new api.ImportVariantsRequest(); |
| 839 buildCounterImportVariantsRequest++; | 839 buildCounterImportVariantsRequest++; |
| 840 if (buildCounterImportVariantsRequest < 3) { | 840 if (buildCounterImportVariantsRequest < 3) { |
| 841 o.format = "foo"; | 841 o.format = "foo"; |
| 842 o.infoMergeConfig = buildUnnamed2540(); | 842 o.infoMergeConfig = buildUnnamed2666(); |
| 843 o.normalizeReferenceNames = true; | 843 o.normalizeReferenceNames = true; |
| 844 o.sourceUris = buildUnnamed2541(); | 844 o.sourceUris = buildUnnamed2667(); |
| 845 o.variantSetId = "foo"; | 845 o.variantSetId = "foo"; |
| 846 } | 846 } |
| 847 buildCounterImportVariantsRequest--; | 847 buildCounterImportVariantsRequest--; |
| 848 return o; | 848 return o; |
| 849 } | 849 } |
| 850 | 850 |
| 851 checkImportVariantsRequest(api.ImportVariantsRequest o) { | 851 checkImportVariantsRequest(api.ImportVariantsRequest o) { |
| 852 buildCounterImportVariantsRequest++; | 852 buildCounterImportVariantsRequest++; |
| 853 if (buildCounterImportVariantsRequest < 3) { | 853 if (buildCounterImportVariantsRequest < 3) { |
| 854 unittest.expect(o.format, unittest.equals('foo')); | 854 unittest.expect(o.format, unittest.equals('foo')); |
| 855 checkUnnamed2540(o.infoMergeConfig); | 855 checkUnnamed2666(o.infoMergeConfig); |
| 856 unittest.expect(o.normalizeReferenceNames, unittest.isTrue); | 856 unittest.expect(o.normalizeReferenceNames, unittest.isTrue); |
| 857 checkUnnamed2541(o.sourceUris); | 857 checkUnnamed2667(o.sourceUris); |
| 858 unittest.expect(o.variantSetId, unittest.equals('foo')); | 858 unittest.expect(o.variantSetId, unittest.equals('foo')); |
| 859 } | 859 } |
| 860 buildCounterImportVariantsRequest--; | 860 buildCounterImportVariantsRequest--; |
| 861 } | 861 } |
| 862 | 862 |
| 863 buildUnnamed2542() { | 863 buildUnnamed2668() { |
| 864 var o = new core.List<core.String>(); | 864 var o = new core.List<core.String>(); |
| 865 o.add("foo"); | 865 o.add("foo"); |
| 866 o.add("foo"); | 866 o.add("foo"); |
| 867 return o; | 867 return o; |
| 868 } | 868 } |
| 869 | 869 |
| 870 checkUnnamed2542(core.List<core.String> o) { | 870 checkUnnamed2668(core.List<core.String> o) { |
| 871 unittest.expect(o, unittest.hasLength(2)); | 871 unittest.expect(o, unittest.hasLength(2)); |
| 872 unittest.expect(o[0], unittest.equals('foo')); | 872 unittest.expect(o[0], unittest.equals('foo')); |
| 873 unittest.expect(o[1], unittest.equals('foo')); | 873 unittest.expect(o[1], unittest.equals('foo')); |
| 874 } | 874 } |
| 875 | 875 |
| 876 core.int buildCounterImportVariantsResponse = 0; | 876 core.int buildCounterImportVariantsResponse = 0; |
| 877 buildImportVariantsResponse() { | 877 buildImportVariantsResponse() { |
| 878 var o = new api.ImportVariantsResponse(); | 878 var o = new api.ImportVariantsResponse(); |
| 879 buildCounterImportVariantsResponse++; | 879 buildCounterImportVariantsResponse++; |
| 880 if (buildCounterImportVariantsResponse < 3) { | 880 if (buildCounterImportVariantsResponse < 3) { |
| 881 o.callSetIds = buildUnnamed2542(); | 881 o.callSetIds = buildUnnamed2668(); |
| 882 } | 882 } |
| 883 buildCounterImportVariantsResponse--; | 883 buildCounterImportVariantsResponse--; |
| 884 return o; | 884 return o; |
| 885 } | 885 } |
| 886 | 886 |
| 887 checkImportVariantsResponse(api.ImportVariantsResponse o) { | 887 checkImportVariantsResponse(api.ImportVariantsResponse o) { |
| 888 buildCounterImportVariantsResponse++; | 888 buildCounterImportVariantsResponse++; |
| 889 if (buildCounterImportVariantsResponse < 3) { | 889 if (buildCounterImportVariantsResponse < 3) { |
| 890 checkUnnamed2542(o.callSetIds); | 890 checkUnnamed2668(o.callSetIds); |
| 891 } | 891 } |
| 892 buildCounterImportVariantsResponse--; | 892 buildCounterImportVariantsResponse--; |
| 893 } | 893 } |
| 894 | 894 |
| 895 buildUnnamed2543() { | 895 buildUnnamed2669() { |
| 896 var o = new core.List<api.CigarUnit>(); | 896 var o = new core.List<api.CigarUnit>(); |
| 897 o.add(buildCigarUnit()); | 897 o.add(buildCigarUnit()); |
| 898 o.add(buildCigarUnit()); | 898 o.add(buildCigarUnit()); |
| 899 return o; | 899 return o; |
| 900 } | 900 } |
| 901 | 901 |
| 902 checkUnnamed2543(core.List<api.CigarUnit> o) { | 902 checkUnnamed2669(core.List<api.CigarUnit> o) { |
| 903 unittest.expect(o, unittest.hasLength(2)); | 903 unittest.expect(o, unittest.hasLength(2)); |
| 904 checkCigarUnit(o[0]); | 904 checkCigarUnit(o[0]); |
| 905 checkCigarUnit(o[1]); | 905 checkCigarUnit(o[1]); |
| 906 } | 906 } |
| 907 | 907 |
| 908 core.int buildCounterLinearAlignment = 0; | 908 core.int buildCounterLinearAlignment = 0; |
| 909 buildLinearAlignment() { | 909 buildLinearAlignment() { |
| 910 var o = new api.LinearAlignment(); | 910 var o = new api.LinearAlignment(); |
| 911 buildCounterLinearAlignment++; | 911 buildCounterLinearAlignment++; |
| 912 if (buildCounterLinearAlignment < 3) { | 912 if (buildCounterLinearAlignment < 3) { |
| 913 o.cigar = buildUnnamed2543(); | 913 o.cigar = buildUnnamed2669(); |
| 914 o.mappingQuality = 42; | 914 o.mappingQuality = 42; |
| 915 o.position = buildPosition(); | 915 o.position = buildPosition(); |
| 916 } | 916 } |
| 917 buildCounterLinearAlignment--; | 917 buildCounterLinearAlignment--; |
| 918 return o; | 918 return o; |
| 919 } | 919 } |
| 920 | 920 |
| 921 checkLinearAlignment(api.LinearAlignment o) { | 921 checkLinearAlignment(api.LinearAlignment o) { |
| 922 buildCounterLinearAlignment++; | 922 buildCounterLinearAlignment++; |
| 923 if (buildCounterLinearAlignment < 3) { | 923 if (buildCounterLinearAlignment < 3) { |
| 924 checkUnnamed2543(o.cigar); | 924 checkUnnamed2669(o.cigar); |
| 925 unittest.expect(o.mappingQuality, unittest.equals(42)); | 925 unittest.expect(o.mappingQuality, unittest.equals(42)); |
| 926 checkPosition(o.position); | 926 checkPosition(o.position); |
| 927 } | 927 } |
| 928 buildCounterLinearAlignment--; | 928 buildCounterLinearAlignment--; |
| 929 } | 929 } |
| 930 | 930 |
| 931 core.int buildCounterListBasesResponse = 0; | 931 core.int buildCounterListBasesResponse = 0; |
| 932 buildListBasesResponse() { | 932 buildListBasesResponse() { |
| 933 var o = new api.ListBasesResponse(); | 933 var o = new api.ListBasesResponse(); |
| 934 buildCounterListBasesResponse++; | 934 buildCounterListBasesResponse++; |
| 935 if (buildCounterListBasesResponse < 3) { | 935 if (buildCounterListBasesResponse < 3) { |
| 936 o.nextPageToken = "foo"; | 936 o.nextPageToken = "foo"; |
| 937 o.offset = "foo"; | 937 o.offset = "foo"; |
| 938 o.sequence = "foo"; | 938 o.sequence = "foo"; |
| 939 } | 939 } |
| 940 buildCounterListBasesResponse--; | 940 buildCounterListBasesResponse--; |
| 941 return o; | 941 return o; |
| 942 } | 942 } |
| 943 | 943 |
| 944 checkListBasesResponse(api.ListBasesResponse o) { | 944 checkListBasesResponse(api.ListBasesResponse o) { |
| 945 buildCounterListBasesResponse++; | 945 buildCounterListBasesResponse++; |
| 946 if (buildCounterListBasesResponse < 3) { | 946 if (buildCounterListBasesResponse < 3) { |
| 947 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 947 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 948 unittest.expect(o.offset, unittest.equals('foo')); | 948 unittest.expect(o.offset, unittest.equals('foo')); |
| 949 unittest.expect(o.sequence, unittest.equals('foo')); | 949 unittest.expect(o.sequence, unittest.equals('foo')); |
| 950 } | 950 } |
| 951 buildCounterListBasesResponse--; | 951 buildCounterListBasesResponse--; |
| 952 } | 952 } |
| 953 | 953 |
| 954 buildUnnamed2544() { | 954 buildUnnamed2670() { |
| 955 var o = new core.List<api.CoverageBucket>(); | 955 var o = new core.List<api.CoverageBucket>(); |
| 956 o.add(buildCoverageBucket()); | 956 o.add(buildCoverageBucket()); |
| 957 o.add(buildCoverageBucket()); | 957 o.add(buildCoverageBucket()); |
| 958 return o; | 958 return o; |
| 959 } | 959 } |
| 960 | 960 |
| 961 checkUnnamed2544(core.List<api.CoverageBucket> o) { | 961 checkUnnamed2670(core.List<api.CoverageBucket> o) { |
| 962 unittest.expect(o, unittest.hasLength(2)); | 962 unittest.expect(o, unittest.hasLength(2)); |
| 963 checkCoverageBucket(o[0]); | 963 checkCoverageBucket(o[0]); |
| 964 checkCoverageBucket(o[1]); | 964 checkCoverageBucket(o[1]); |
| 965 } | 965 } |
| 966 | 966 |
| 967 core.int buildCounterListCoverageBucketsResponse = 0; | 967 core.int buildCounterListCoverageBucketsResponse = 0; |
| 968 buildListCoverageBucketsResponse() { | 968 buildListCoverageBucketsResponse() { |
| 969 var o = new api.ListCoverageBucketsResponse(); | 969 var o = new api.ListCoverageBucketsResponse(); |
| 970 buildCounterListCoverageBucketsResponse++; | 970 buildCounterListCoverageBucketsResponse++; |
| 971 if (buildCounterListCoverageBucketsResponse < 3) { | 971 if (buildCounterListCoverageBucketsResponse < 3) { |
| 972 o.bucketWidth = "foo"; | 972 o.bucketWidth = "foo"; |
| 973 o.coverageBuckets = buildUnnamed2544(); | 973 o.coverageBuckets = buildUnnamed2670(); |
| 974 o.nextPageToken = "foo"; | 974 o.nextPageToken = "foo"; |
| 975 } | 975 } |
| 976 buildCounterListCoverageBucketsResponse--; | 976 buildCounterListCoverageBucketsResponse--; |
| 977 return o; | 977 return o; |
| 978 } | 978 } |
| 979 | 979 |
| 980 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { | 980 checkListCoverageBucketsResponse(api.ListCoverageBucketsResponse o) { |
| 981 buildCounterListCoverageBucketsResponse++; | 981 buildCounterListCoverageBucketsResponse++; |
| 982 if (buildCounterListCoverageBucketsResponse < 3) { | 982 if (buildCounterListCoverageBucketsResponse < 3) { |
| 983 unittest.expect(o.bucketWidth, unittest.equals('foo')); | 983 unittest.expect(o.bucketWidth, unittest.equals('foo')); |
| 984 checkUnnamed2544(o.coverageBuckets); | 984 checkUnnamed2670(o.coverageBuckets); |
| 985 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 985 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 986 } | 986 } |
| 987 buildCounterListCoverageBucketsResponse--; | 987 buildCounterListCoverageBucketsResponse--; |
| 988 } | 988 } |
| 989 | 989 |
| 990 buildUnnamed2545() { | 990 buildUnnamed2671() { |
| 991 var o = new core.List<api.Dataset>(); | 991 var o = new core.List<api.Dataset>(); |
| 992 o.add(buildDataset()); | 992 o.add(buildDataset()); |
| 993 o.add(buildDataset()); | 993 o.add(buildDataset()); |
| 994 return o; | 994 return o; |
| 995 } | 995 } |
| 996 | 996 |
| 997 checkUnnamed2545(core.List<api.Dataset> o) { | 997 checkUnnamed2671(core.List<api.Dataset> o) { |
| 998 unittest.expect(o, unittest.hasLength(2)); | 998 unittest.expect(o, unittest.hasLength(2)); |
| 999 checkDataset(o[0]); | 999 checkDataset(o[0]); |
| 1000 checkDataset(o[1]); | 1000 checkDataset(o[1]); |
| 1001 } | 1001 } |
| 1002 | 1002 |
| 1003 core.int buildCounterListDatasetsResponse = 0; | 1003 core.int buildCounterListDatasetsResponse = 0; |
| 1004 buildListDatasetsResponse() { | 1004 buildListDatasetsResponse() { |
| 1005 var o = new api.ListDatasetsResponse(); | 1005 var o = new api.ListDatasetsResponse(); |
| 1006 buildCounterListDatasetsResponse++; | 1006 buildCounterListDatasetsResponse++; |
| 1007 if (buildCounterListDatasetsResponse < 3) { | 1007 if (buildCounterListDatasetsResponse < 3) { |
| 1008 o.datasets = buildUnnamed2545(); | 1008 o.datasets = buildUnnamed2671(); |
| 1009 o.nextPageToken = "foo"; | 1009 o.nextPageToken = "foo"; |
| 1010 } | 1010 } |
| 1011 buildCounterListDatasetsResponse--; | 1011 buildCounterListDatasetsResponse--; |
| 1012 return o; | 1012 return o; |
| 1013 } | 1013 } |
| 1014 | 1014 |
| 1015 checkListDatasetsResponse(api.ListDatasetsResponse o) { | 1015 checkListDatasetsResponse(api.ListDatasetsResponse o) { |
| 1016 buildCounterListDatasetsResponse++; | 1016 buildCounterListDatasetsResponse++; |
| 1017 if (buildCounterListDatasetsResponse < 3) { | 1017 if (buildCounterListDatasetsResponse < 3) { |
| 1018 checkUnnamed2545(o.datasets); | 1018 checkUnnamed2671(o.datasets); |
| 1019 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1019 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1020 } | 1020 } |
| 1021 buildCounterListDatasetsResponse--; | 1021 buildCounterListDatasetsResponse--; |
| 1022 } | 1022 } |
| 1023 | 1023 |
| 1024 buildUnnamed2546() { | 1024 buildUnnamed2672() { |
| 1025 var o = new core.List<api.Operation>(); | 1025 var o = new core.List<api.Operation>(); |
| 1026 o.add(buildOperation()); | 1026 o.add(buildOperation()); |
| 1027 o.add(buildOperation()); | 1027 o.add(buildOperation()); |
| 1028 return o; | 1028 return o; |
| 1029 } | 1029 } |
| 1030 | 1030 |
| 1031 checkUnnamed2546(core.List<api.Operation> o) { | 1031 checkUnnamed2672(core.List<api.Operation> o) { |
| 1032 unittest.expect(o, unittest.hasLength(2)); | 1032 unittest.expect(o, unittest.hasLength(2)); |
| 1033 checkOperation(o[0]); | 1033 checkOperation(o[0]); |
| 1034 checkOperation(o[1]); | 1034 checkOperation(o[1]); |
| 1035 } | 1035 } |
| 1036 | 1036 |
| 1037 core.int buildCounterListOperationsResponse = 0; | 1037 core.int buildCounterListOperationsResponse = 0; |
| 1038 buildListOperationsResponse() { | 1038 buildListOperationsResponse() { |
| 1039 var o = new api.ListOperationsResponse(); | 1039 var o = new api.ListOperationsResponse(); |
| 1040 buildCounterListOperationsResponse++; | 1040 buildCounterListOperationsResponse++; |
| 1041 if (buildCounterListOperationsResponse < 3) { | 1041 if (buildCounterListOperationsResponse < 3) { |
| 1042 o.nextPageToken = "foo"; | 1042 o.nextPageToken = "foo"; |
| 1043 o.operations = buildUnnamed2546(); | 1043 o.operations = buildUnnamed2672(); |
| 1044 } | 1044 } |
| 1045 buildCounterListOperationsResponse--; | 1045 buildCounterListOperationsResponse--; |
| 1046 return o; | 1046 return o; |
| 1047 } | 1047 } |
| 1048 | 1048 |
| 1049 checkListOperationsResponse(api.ListOperationsResponse o) { | 1049 checkListOperationsResponse(api.ListOperationsResponse o) { |
| 1050 buildCounterListOperationsResponse++; | 1050 buildCounterListOperationsResponse++; |
| 1051 if (buildCounterListOperationsResponse < 3) { | 1051 if (buildCounterListOperationsResponse < 3) { |
| 1052 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1052 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1053 checkUnnamed2546(o.operations); | 1053 checkUnnamed2672(o.operations); |
| 1054 } | 1054 } |
| 1055 buildCounterListOperationsResponse--; | 1055 buildCounterListOperationsResponse--; |
| 1056 } | 1056 } |
| 1057 | 1057 |
| 1058 buildUnnamed2547() { | 1058 buildUnnamed2673() { |
| 1059 var o = new core.Map<core.String, core.String>(); | 1059 var o = new core.Map<core.String, core.String>(); |
| 1060 o["x"] = "foo"; | 1060 o["x"] = "foo"; |
| 1061 o["y"] = "foo"; | 1061 o["y"] = "foo"; |
| 1062 return o; | 1062 return o; |
| 1063 } | 1063 } |
| 1064 | 1064 |
| 1065 checkUnnamed2547(core.Map<core.String, core.String> o) { | 1065 checkUnnamed2673(core.Map<core.String, core.String> o) { |
| 1066 unittest.expect(o, unittest.hasLength(2)); | 1066 unittest.expect(o, unittest.hasLength(2)); |
| 1067 unittest.expect(o["x"], unittest.equals('foo')); | 1067 unittest.expect(o["x"], unittest.equals('foo')); |
| 1068 unittest.expect(o["y"], unittest.equals('foo')); | 1068 unittest.expect(o["y"], unittest.equals('foo')); |
| 1069 } | 1069 } |
| 1070 | 1070 |
| 1071 buildUnnamed2548() { | 1071 buildUnnamed2674() { |
| 1072 var o = new core.List<api.Variant>(); | 1072 var o = new core.List<api.Variant>(); |
| 1073 o.add(buildVariant()); | 1073 o.add(buildVariant()); |
| 1074 o.add(buildVariant()); | 1074 o.add(buildVariant()); |
| 1075 return o; | 1075 return o; |
| 1076 } | 1076 } |
| 1077 | 1077 |
| 1078 checkUnnamed2548(core.List<api.Variant> o) { | 1078 checkUnnamed2674(core.List<api.Variant> o) { |
| 1079 unittest.expect(o, unittest.hasLength(2)); | 1079 unittest.expect(o, unittest.hasLength(2)); |
| 1080 checkVariant(o[0]); | 1080 checkVariant(o[0]); |
| 1081 checkVariant(o[1]); | 1081 checkVariant(o[1]); |
| 1082 } | 1082 } |
| 1083 | 1083 |
| 1084 core.int buildCounterMergeVariantsRequest = 0; | 1084 core.int buildCounterMergeVariantsRequest = 0; |
| 1085 buildMergeVariantsRequest() { | 1085 buildMergeVariantsRequest() { |
| 1086 var o = new api.MergeVariantsRequest(); | 1086 var o = new api.MergeVariantsRequest(); |
| 1087 buildCounterMergeVariantsRequest++; | 1087 buildCounterMergeVariantsRequest++; |
| 1088 if (buildCounterMergeVariantsRequest < 3) { | 1088 if (buildCounterMergeVariantsRequest < 3) { |
| 1089 o.infoMergeConfig = buildUnnamed2547(); | 1089 o.infoMergeConfig = buildUnnamed2673(); |
| 1090 o.variantSetId = "foo"; | 1090 o.variantSetId = "foo"; |
| 1091 o.variants = buildUnnamed2548(); | 1091 o.variants = buildUnnamed2674(); |
| 1092 } | 1092 } |
| 1093 buildCounterMergeVariantsRequest--; | 1093 buildCounterMergeVariantsRequest--; |
| 1094 return o; | 1094 return o; |
| 1095 } | 1095 } |
| 1096 | 1096 |
| 1097 checkMergeVariantsRequest(api.MergeVariantsRequest o) { | 1097 checkMergeVariantsRequest(api.MergeVariantsRequest o) { |
| 1098 buildCounterMergeVariantsRequest++; | 1098 buildCounterMergeVariantsRequest++; |
| 1099 if (buildCounterMergeVariantsRequest < 3) { | 1099 if (buildCounterMergeVariantsRequest < 3) { |
| 1100 checkUnnamed2547(o.infoMergeConfig); | 1100 checkUnnamed2673(o.infoMergeConfig); |
| 1101 unittest.expect(o.variantSetId, unittest.equals('foo')); | 1101 unittest.expect(o.variantSetId, unittest.equals('foo')); |
| 1102 checkUnnamed2548(o.variants); | 1102 checkUnnamed2674(o.variants); |
| 1103 } | 1103 } |
| 1104 buildCounterMergeVariantsRequest--; | 1104 buildCounterMergeVariantsRequest--; |
| 1105 } | 1105 } |
| 1106 | 1106 |
| 1107 buildUnnamed2549() { | 1107 buildUnnamed2675() { |
| 1108 var o = new core.Map<core.String, core.Object>(); | 1108 var o = new core.Map<core.String, core.Object>(); |
| 1109 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1109 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 1110 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1110 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 1111 return o; | 1111 return o; |
| 1112 } | 1112 } |
| 1113 | 1113 |
| 1114 checkUnnamed2549(core.Map<core.String, core.Object> o) { | 1114 checkUnnamed2675(core.Map<core.String, core.Object> o) { |
| 1115 unittest.expect(o, unittest.hasLength(2)); | 1115 unittest.expect(o, unittest.hasLength(2)); |
| 1116 var casted7 = (o["x"]) as core.Map; unittest.expect(casted7, unittest.hasLengt
h(3)); unittest.expect(casted7["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted7["bool"], unittest.equals(true)); unittest.expect(casted7["string"],
unittest.equals('foo')); | 1116 var casted7 = (o["x"]) as core.Map; unittest.expect(casted7, unittest.hasLengt
h(3)); unittest.expect(casted7["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted7["bool"], unittest.equals(true)); unittest.expect(casted7["string"],
unittest.equals('foo')); |
| 1117 var casted8 = (o["y"]) as core.Map; unittest.expect(casted8, unittest.hasLengt
h(3)); unittest.expect(casted8["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted8["bool"], unittest.equals(true)); unittest.expect(casted8["string"],
unittest.equals('foo')); | 1117 var casted8 = (o["y"]) as core.Map; unittest.expect(casted8, unittest.hasLengt
h(3)); unittest.expect(casted8["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted8["bool"], unittest.equals(true)); unittest.expect(casted8["string"],
unittest.equals('foo')); |
| 1118 } | 1118 } |
| 1119 | 1119 |
| 1120 buildUnnamed2550() { | 1120 buildUnnamed2676() { |
| 1121 var o = new core.Map<core.String, core.Object>(); | 1121 var o = new core.Map<core.String, core.Object>(); |
| 1122 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1122 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 1123 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1123 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 1124 return o; | 1124 return o; |
| 1125 } | 1125 } |
| 1126 | 1126 |
| 1127 checkUnnamed2550(core.Map<core.String, core.Object> o) { | 1127 checkUnnamed2676(core.Map<core.String, core.Object> o) { |
| 1128 unittest.expect(o, unittest.hasLength(2)); | 1128 unittest.expect(o, unittest.hasLength(2)); |
| 1129 var casted9 = (o["x"]) as core.Map; unittest.expect(casted9, unittest.hasLengt
h(3)); unittest.expect(casted9["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted9["bool"], unittest.equals(true)); unittest.expect(casted9["string"],
unittest.equals('foo')); | 1129 var casted9 = (o["x"]) as core.Map; unittest.expect(casted9, unittest.hasLengt
h(3)); unittest.expect(casted9["list"], unittest.equals([1, 2, 3])); unittest.ex
pect(casted9["bool"], unittest.equals(true)); unittest.expect(casted9["string"],
unittest.equals('foo')); |
| 1130 var casted10 = (o["y"]) as core.Map; unittest.expect(casted10, unittest.hasLen
gth(3)); unittest.expect(casted10["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted10["bool"], unittest.equals(true)); unittest.expect(casted10["stri
ng"], unittest.equals('foo')); | 1130 var casted10 = (o["y"]) as core.Map; unittest.expect(casted10, unittest.hasLen
gth(3)); unittest.expect(casted10["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted10["bool"], unittest.equals(true)); unittest.expect(casted10["stri
ng"], unittest.equals('foo')); |
| 1131 } | 1131 } |
| 1132 | 1132 |
| 1133 core.int buildCounterOperation = 0; | 1133 core.int buildCounterOperation = 0; |
| 1134 buildOperation() { | 1134 buildOperation() { |
| 1135 var o = new api.Operation(); | 1135 var o = new api.Operation(); |
| 1136 buildCounterOperation++; | 1136 buildCounterOperation++; |
| 1137 if (buildCounterOperation < 3) { | 1137 if (buildCounterOperation < 3) { |
| 1138 o.done = true; | 1138 o.done = true; |
| 1139 o.error = buildStatus(); | 1139 o.error = buildStatus(); |
| 1140 o.metadata = buildUnnamed2549(); | 1140 o.metadata = buildUnnamed2675(); |
| 1141 o.name = "foo"; | 1141 o.name = "foo"; |
| 1142 o.response = buildUnnamed2550(); | 1142 o.response = buildUnnamed2676(); |
| 1143 } | 1143 } |
| 1144 buildCounterOperation--; | 1144 buildCounterOperation--; |
| 1145 return o; | 1145 return o; |
| 1146 } | 1146 } |
| 1147 | 1147 |
| 1148 checkOperation(api.Operation o) { | 1148 checkOperation(api.Operation o) { |
| 1149 buildCounterOperation++; | 1149 buildCounterOperation++; |
| 1150 if (buildCounterOperation < 3) { | 1150 if (buildCounterOperation < 3) { |
| 1151 unittest.expect(o.done, unittest.isTrue); | 1151 unittest.expect(o.done, unittest.isTrue); |
| 1152 checkStatus(o.error); | 1152 checkStatus(o.error); |
| 1153 checkUnnamed2549(o.metadata); | 1153 checkUnnamed2675(o.metadata); |
| 1154 unittest.expect(o.name, unittest.equals('foo')); | 1154 unittest.expect(o.name, unittest.equals('foo')); |
| 1155 checkUnnamed2550(o.response); | 1155 checkUnnamed2676(o.response); |
| 1156 } | 1156 } |
| 1157 buildCounterOperation--; | 1157 buildCounterOperation--; |
| 1158 } | 1158 } |
| 1159 | 1159 |
| 1160 core.int buildCounterOperationEvent = 0; | 1160 core.int buildCounterOperationEvent = 0; |
| 1161 buildOperationEvent() { | 1161 buildOperationEvent() { |
| 1162 var o = new api.OperationEvent(); | 1162 var o = new api.OperationEvent(); |
| 1163 buildCounterOperationEvent++; | 1163 buildCounterOperationEvent++; |
| 1164 if (buildCounterOperationEvent < 3) { | 1164 if (buildCounterOperationEvent < 3) { |
| 1165 o.description = "foo"; | 1165 o.description = "foo"; |
| 1166 o.endTime = "foo"; | 1166 o.endTime = "foo"; |
| 1167 o.startTime = "foo"; | 1167 o.startTime = "foo"; |
| 1168 } | 1168 } |
| 1169 buildCounterOperationEvent--; | 1169 buildCounterOperationEvent--; |
| 1170 return o; | 1170 return o; |
| 1171 } | 1171 } |
| 1172 | 1172 |
| 1173 checkOperationEvent(api.OperationEvent o) { | 1173 checkOperationEvent(api.OperationEvent o) { |
| 1174 buildCounterOperationEvent++; | 1174 buildCounterOperationEvent++; |
| 1175 if (buildCounterOperationEvent < 3) { | 1175 if (buildCounterOperationEvent < 3) { |
| 1176 unittest.expect(o.description, unittest.equals('foo')); | 1176 unittest.expect(o.description, unittest.equals('foo')); |
| 1177 unittest.expect(o.endTime, unittest.equals('foo')); | 1177 unittest.expect(o.endTime, unittest.equals('foo')); |
| 1178 unittest.expect(o.startTime, unittest.equals('foo')); | 1178 unittest.expect(o.startTime, unittest.equals('foo')); |
| 1179 } | 1179 } |
| 1180 buildCounterOperationEvent--; | 1180 buildCounterOperationEvent--; |
| 1181 } | 1181 } |
| 1182 | 1182 |
| 1183 buildUnnamed2551() { | 1183 buildUnnamed2677() { |
| 1184 var o = new core.List<api.OperationEvent>(); | 1184 var o = new core.List<api.OperationEvent>(); |
| 1185 o.add(buildOperationEvent()); | 1185 o.add(buildOperationEvent()); |
| 1186 o.add(buildOperationEvent()); | 1186 o.add(buildOperationEvent()); |
| 1187 return o; | 1187 return o; |
| 1188 } | 1188 } |
| 1189 | 1189 |
| 1190 checkUnnamed2551(core.List<api.OperationEvent> o) { | 1190 checkUnnamed2677(core.List<api.OperationEvent> o) { |
| 1191 unittest.expect(o, unittest.hasLength(2)); | 1191 unittest.expect(o, unittest.hasLength(2)); |
| 1192 checkOperationEvent(o[0]); | 1192 checkOperationEvent(o[0]); |
| 1193 checkOperationEvent(o[1]); | 1193 checkOperationEvent(o[1]); |
| 1194 } | 1194 } |
| 1195 | 1195 |
| 1196 buildUnnamed2552() { | 1196 buildUnnamed2678() { |
| 1197 var o = new core.Map<core.String, core.Object>(); | 1197 var o = new core.Map<core.String, core.Object>(); |
| 1198 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1198 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 1199 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1199 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 1200 return o; | 1200 return o; |
| 1201 } | 1201 } |
| 1202 | 1202 |
| 1203 checkUnnamed2552(core.Map<core.String, core.Object> o) { | 1203 checkUnnamed2678(core.Map<core.String, core.Object> o) { |
| 1204 unittest.expect(o, unittest.hasLength(2)); | 1204 unittest.expect(o, unittest.hasLength(2)); |
| 1205 var casted11 = (o["x"]) as core.Map; unittest.expect(casted11, unittest.hasLen
gth(3)); unittest.expect(casted11["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted11["bool"], unittest.equals(true)); unittest.expect(casted11["stri
ng"], unittest.equals('foo')); | 1205 var casted11 = (o["x"]) as core.Map; unittest.expect(casted11, unittest.hasLen
gth(3)); unittest.expect(casted11["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted11["bool"], unittest.equals(true)); unittest.expect(casted11["stri
ng"], unittest.equals('foo')); |
| 1206 var casted12 = (o["y"]) as core.Map; unittest.expect(casted12, unittest.hasLen
gth(3)); unittest.expect(casted12["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted12["bool"], unittest.equals(true)); unittest.expect(casted12["stri
ng"], unittest.equals('foo')); | 1206 var casted12 = (o["y"]) as core.Map; unittest.expect(casted12, unittest.hasLen
gth(3)); unittest.expect(casted12["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted12["bool"], unittest.equals(true)); unittest.expect(casted12["stri
ng"], unittest.equals('foo')); |
| 1207 } | 1207 } |
| 1208 | 1208 |
| 1209 buildUnnamed2553() { | 1209 buildUnnamed2679() { |
| 1210 var o = new core.Map<core.String, core.Object>(); | 1210 var o = new core.Map<core.String, core.Object>(); |
| 1211 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1211 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 1212 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 1212 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 1213 return o; | 1213 return o; |
| 1214 } | 1214 } |
| 1215 | 1215 |
| 1216 checkUnnamed2553(core.Map<core.String, core.Object> o) { | 1216 checkUnnamed2679(core.Map<core.String, core.Object> o) { |
| 1217 unittest.expect(o, unittest.hasLength(2)); | 1217 unittest.expect(o, unittest.hasLength(2)); |
| 1218 var casted13 = (o["x"]) as core.Map; unittest.expect(casted13, unittest.hasLen
gth(3)); unittest.expect(casted13["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted13["bool"], unittest.equals(true)); unittest.expect(casted13["stri
ng"], unittest.equals('foo')); | 1218 var casted13 = (o["x"]) as core.Map; unittest.expect(casted13, unittest.hasLen
gth(3)); unittest.expect(casted13["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted13["bool"], unittest.equals(true)); unittest.expect(casted13["stri
ng"], unittest.equals('foo')); |
| 1219 var casted14 = (o["y"]) as core.Map; unittest.expect(casted14, unittest.hasLen
gth(3)); unittest.expect(casted14["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted14["bool"], unittest.equals(true)); unittest.expect(casted14["stri
ng"], unittest.equals('foo')); | 1219 var casted14 = (o["y"]) as core.Map; unittest.expect(casted14, unittest.hasLen
gth(3)); unittest.expect(casted14["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted14["bool"], unittest.equals(true)); unittest.expect(casted14["stri
ng"], unittest.equals('foo')); |
| 1220 } | 1220 } |
| 1221 | 1221 |
| 1222 core.int buildCounterOperationMetadata = 0; | 1222 core.int buildCounterOperationMetadata = 0; |
| 1223 buildOperationMetadata() { | 1223 buildOperationMetadata() { |
| 1224 var o = new api.OperationMetadata(); | 1224 var o = new api.OperationMetadata(); |
| 1225 buildCounterOperationMetadata++; | 1225 buildCounterOperationMetadata++; |
| 1226 if (buildCounterOperationMetadata < 3) { | 1226 if (buildCounterOperationMetadata < 3) { |
| 1227 o.clientId = "foo"; | 1227 o.clientId = "foo"; |
| 1228 o.createTime = "foo"; | 1228 o.createTime = "foo"; |
| 1229 o.endTime = "foo"; | 1229 o.endTime = "foo"; |
| 1230 o.events = buildUnnamed2551(); | 1230 o.events = buildUnnamed2677(); |
| 1231 o.projectId = "foo"; | 1231 o.projectId = "foo"; |
| 1232 o.request = buildUnnamed2552(); | 1232 o.request = buildUnnamed2678(); |
| 1233 o.runtimeMetadata = buildUnnamed2553(); | 1233 o.runtimeMetadata = buildUnnamed2679(); |
| 1234 o.startTime = "foo"; | 1234 o.startTime = "foo"; |
| 1235 } | 1235 } |
| 1236 buildCounterOperationMetadata--; | 1236 buildCounterOperationMetadata--; |
| 1237 return o; | 1237 return o; |
| 1238 } | 1238 } |
| 1239 | 1239 |
| 1240 checkOperationMetadata(api.OperationMetadata o) { | 1240 checkOperationMetadata(api.OperationMetadata o) { |
| 1241 buildCounterOperationMetadata++; | 1241 buildCounterOperationMetadata++; |
| 1242 if (buildCounterOperationMetadata < 3) { | 1242 if (buildCounterOperationMetadata < 3) { |
| 1243 unittest.expect(o.clientId, unittest.equals('foo')); | 1243 unittest.expect(o.clientId, unittest.equals('foo')); |
| 1244 unittest.expect(o.createTime, unittest.equals('foo')); | 1244 unittest.expect(o.createTime, unittest.equals('foo')); |
| 1245 unittest.expect(o.endTime, unittest.equals('foo')); | 1245 unittest.expect(o.endTime, unittest.equals('foo')); |
| 1246 checkUnnamed2551(o.events); | 1246 checkUnnamed2677(o.events); |
| 1247 unittest.expect(o.projectId, unittest.equals('foo')); | 1247 unittest.expect(o.projectId, unittest.equals('foo')); |
| 1248 checkUnnamed2552(o.request); | 1248 checkUnnamed2678(o.request); |
| 1249 checkUnnamed2553(o.runtimeMetadata); | 1249 checkUnnamed2679(o.runtimeMetadata); |
| 1250 unittest.expect(o.startTime, unittest.equals('foo')); | 1250 unittest.expect(o.startTime, unittest.equals('foo')); |
| 1251 } | 1251 } |
| 1252 buildCounterOperationMetadata--; | 1252 buildCounterOperationMetadata--; |
| 1253 } | 1253 } |
| 1254 | 1254 |
| 1255 buildUnnamed2554() { | 1255 buildUnnamed2680() { |
| 1256 var o = new core.List<api.Binding>(); | 1256 var o = new core.List<api.Binding>(); |
| 1257 o.add(buildBinding()); | 1257 o.add(buildBinding()); |
| 1258 o.add(buildBinding()); | 1258 o.add(buildBinding()); |
| 1259 return o; | 1259 return o; |
| 1260 } | 1260 } |
| 1261 | 1261 |
| 1262 checkUnnamed2554(core.List<api.Binding> o) { | 1262 checkUnnamed2680(core.List<api.Binding> o) { |
| 1263 unittest.expect(o, unittest.hasLength(2)); | 1263 unittest.expect(o, unittest.hasLength(2)); |
| 1264 checkBinding(o[0]); | 1264 checkBinding(o[0]); |
| 1265 checkBinding(o[1]); | 1265 checkBinding(o[1]); |
| 1266 } | 1266 } |
| 1267 | 1267 |
| 1268 core.int buildCounterPolicy = 0; | 1268 core.int buildCounterPolicy = 0; |
| 1269 buildPolicy() { | 1269 buildPolicy() { |
| 1270 var o = new api.Policy(); | 1270 var o = new api.Policy(); |
| 1271 buildCounterPolicy++; | 1271 buildCounterPolicy++; |
| 1272 if (buildCounterPolicy < 3) { | 1272 if (buildCounterPolicy < 3) { |
| 1273 o.bindings = buildUnnamed2554(); | 1273 o.bindings = buildUnnamed2680(); |
| 1274 o.etag = "foo"; | 1274 o.etag = "foo"; |
| 1275 o.version = 42; | 1275 o.version = 42; |
| 1276 } | 1276 } |
| 1277 buildCounterPolicy--; | 1277 buildCounterPolicy--; |
| 1278 return o; | 1278 return o; |
| 1279 } | 1279 } |
| 1280 | 1280 |
| 1281 checkPolicy(api.Policy o) { | 1281 checkPolicy(api.Policy o) { |
| 1282 buildCounterPolicy++; | 1282 buildCounterPolicy++; |
| 1283 if (buildCounterPolicy < 3) { | 1283 if (buildCounterPolicy < 3) { |
| 1284 checkUnnamed2554(o.bindings); | 1284 checkUnnamed2680(o.bindings); |
| 1285 unittest.expect(o.etag, unittest.equals('foo')); | 1285 unittest.expect(o.etag, unittest.equals('foo')); |
| 1286 unittest.expect(o.version, unittest.equals(42)); | 1286 unittest.expect(o.version, unittest.equals(42)); |
| 1287 } | 1287 } |
| 1288 buildCounterPolicy--; | 1288 buildCounterPolicy--; |
| 1289 } | 1289 } |
| 1290 | 1290 |
| 1291 core.int buildCounterPosition = 0; | 1291 core.int buildCounterPosition = 0; |
| 1292 buildPosition() { | 1292 buildPosition() { |
| 1293 var o = new api.Position(); | 1293 var o = new api.Position(); |
| 1294 buildCounterPosition++; | 1294 buildCounterPosition++; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1354 checkRange(api.Range o) { | 1354 checkRange(api.Range o) { |
| 1355 buildCounterRange++; | 1355 buildCounterRange++; |
| 1356 if (buildCounterRange < 3) { | 1356 if (buildCounterRange < 3) { |
| 1357 unittest.expect(o.end, unittest.equals('foo')); | 1357 unittest.expect(o.end, unittest.equals('foo')); |
| 1358 unittest.expect(o.referenceName, unittest.equals('foo')); | 1358 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 1359 unittest.expect(o.start, unittest.equals('foo')); | 1359 unittest.expect(o.start, unittest.equals('foo')); |
| 1360 } | 1360 } |
| 1361 buildCounterRange--; | 1361 buildCounterRange--; |
| 1362 } | 1362 } |
| 1363 | 1363 |
| 1364 buildUnnamed2555() { | 1364 buildUnnamed2681() { |
| 1365 var o = new core.List<core.int>(); | 1365 var o = new core.List<core.int>(); |
| 1366 o.add(42); | 1366 o.add(42); |
| 1367 o.add(42); | 1367 o.add(42); |
| 1368 return o; | 1368 return o; |
| 1369 } | 1369 } |
| 1370 | 1370 |
| 1371 checkUnnamed2555(core.List<core.int> o) { | 1371 checkUnnamed2681(core.List<core.int> o) { |
| 1372 unittest.expect(o, unittest.hasLength(2)); | 1372 unittest.expect(o, unittest.hasLength(2)); |
| 1373 unittest.expect(o[0], unittest.equals(42)); | 1373 unittest.expect(o[0], unittest.equals(42)); |
| 1374 unittest.expect(o[1], unittest.equals(42)); | 1374 unittest.expect(o[1], unittest.equals(42)); |
| 1375 } | 1375 } |
| 1376 | 1376 |
| 1377 buildUnnamed2556() { | 1377 buildUnnamed2682() { |
| 1378 var o = new core.List<core.Object>(); | 1378 var o = new core.List<core.Object>(); |
| 1379 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1379 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 1380 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1380 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 1381 return o; | 1381 return o; |
| 1382 } | 1382 } |
| 1383 | 1383 |
| 1384 checkUnnamed2556(core.List<core.Object> o) { | 1384 checkUnnamed2682(core.List<core.Object> o) { |
| 1385 unittest.expect(o, unittest.hasLength(2)); | 1385 unittest.expect(o, unittest.hasLength(2)); |
| 1386 var casted15 = (o[0]) as core.Map; unittest.expect(casted15, unittest.hasLengt
h(3)); unittest.expect(casted15["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted15["bool"], unittest.equals(true)); unittest.expect(casted15["string
"], unittest.equals('foo')); | 1386 var casted15 = (o[0]) as core.Map; unittest.expect(casted15, unittest.hasLengt
h(3)); unittest.expect(casted15["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted15["bool"], unittest.equals(true)); unittest.expect(casted15["string
"], unittest.equals('foo')); |
| 1387 var casted16 = (o[1]) as core.Map; unittest.expect(casted16, unittest.hasLengt
h(3)); unittest.expect(casted16["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted16["bool"], unittest.equals(true)); unittest.expect(casted16["string
"], unittest.equals('foo')); | 1387 var casted16 = (o[1]) as core.Map; unittest.expect(casted16, unittest.hasLengt
h(3)); unittest.expect(casted16["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted16["bool"], unittest.equals(true)); unittest.expect(casted16["string
"], unittest.equals('foo')); |
| 1388 } | 1388 } |
| 1389 | 1389 |
| 1390 buildUnnamed2557() { | 1390 buildUnnamed2683() { |
| 1391 var o = new core.Map<core.String, core.List<core.Object>>(); | 1391 var o = new core.Map<core.String, core.List<core.Object>>(); |
| 1392 o["x"] = buildUnnamed2556(); | 1392 o["x"] = buildUnnamed2682(); |
| 1393 o["y"] = buildUnnamed2556(); | 1393 o["y"] = buildUnnamed2682(); |
| 1394 return o; | 1394 return o; |
| 1395 } | 1395 } |
| 1396 | 1396 |
| 1397 checkUnnamed2557(core.Map<core.String, core.List<core.Object>> o) { | 1397 checkUnnamed2683(core.Map<core.String, core.List<core.Object>> o) { |
| 1398 unittest.expect(o, unittest.hasLength(2)); | 1398 unittest.expect(o, unittest.hasLength(2)); |
| 1399 checkUnnamed2556(o["x"]); | 1399 checkUnnamed2682(o["x"]); |
| 1400 checkUnnamed2556(o["y"]); | 1400 checkUnnamed2682(o["y"]); |
| 1401 } | 1401 } |
| 1402 | 1402 |
| 1403 core.int buildCounterRead = 0; | 1403 core.int buildCounterRead = 0; |
| 1404 buildRead() { | 1404 buildRead() { |
| 1405 var o = new api.Read(); | 1405 var o = new api.Read(); |
| 1406 buildCounterRead++; | 1406 buildCounterRead++; |
| 1407 if (buildCounterRead < 3) { | 1407 if (buildCounterRead < 3) { |
| 1408 o.alignedQuality = buildUnnamed2555(); | 1408 o.alignedQuality = buildUnnamed2681(); |
| 1409 o.alignedSequence = "foo"; | 1409 o.alignedSequence = "foo"; |
| 1410 o.alignment = buildLinearAlignment(); | 1410 o.alignment = buildLinearAlignment(); |
| 1411 o.duplicateFragment = true; | 1411 o.duplicateFragment = true; |
| 1412 o.failedVendorQualityChecks = true; | 1412 o.failedVendorQualityChecks = true; |
| 1413 o.fragmentLength = 42; | 1413 o.fragmentLength = 42; |
| 1414 o.fragmentName = "foo"; | 1414 o.fragmentName = "foo"; |
| 1415 o.id = "foo"; | 1415 o.id = "foo"; |
| 1416 o.info = buildUnnamed2557(); | 1416 o.info = buildUnnamed2683(); |
| 1417 o.nextMatePosition = buildPosition(); | 1417 o.nextMatePosition = buildPosition(); |
| 1418 o.numberReads = 42; | 1418 o.numberReads = 42; |
| 1419 o.properPlacement = true; | 1419 o.properPlacement = true; |
| 1420 o.readGroupId = "foo"; | 1420 o.readGroupId = "foo"; |
| 1421 o.readGroupSetId = "foo"; | 1421 o.readGroupSetId = "foo"; |
| 1422 o.readNumber = 42; | 1422 o.readNumber = 42; |
| 1423 o.secondaryAlignment = true; | 1423 o.secondaryAlignment = true; |
| 1424 o.supplementaryAlignment = true; | 1424 o.supplementaryAlignment = true; |
| 1425 } | 1425 } |
| 1426 buildCounterRead--; | 1426 buildCounterRead--; |
| 1427 return o; | 1427 return o; |
| 1428 } | 1428 } |
| 1429 | 1429 |
| 1430 checkRead(api.Read o) { | 1430 checkRead(api.Read o) { |
| 1431 buildCounterRead++; | 1431 buildCounterRead++; |
| 1432 if (buildCounterRead < 3) { | 1432 if (buildCounterRead < 3) { |
| 1433 checkUnnamed2555(o.alignedQuality); | 1433 checkUnnamed2681(o.alignedQuality); |
| 1434 unittest.expect(o.alignedSequence, unittest.equals('foo')); | 1434 unittest.expect(o.alignedSequence, unittest.equals('foo')); |
| 1435 checkLinearAlignment(o.alignment); | 1435 checkLinearAlignment(o.alignment); |
| 1436 unittest.expect(o.duplicateFragment, unittest.isTrue); | 1436 unittest.expect(o.duplicateFragment, unittest.isTrue); |
| 1437 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); | 1437 unittest.expect(o.failedVendorQualityChecks, unittest.isTrue); |
| 1438 unittest.expect(o.fragmentLength, unittest.equals(42)); | 1438 unittest.expect(o.fragmentLength, unittest.equals(42)); |
| 1439 unittest.expect(o.fragmentName, unittest.equals('foo')); | 1439 unittest.expect(o.fragmentName, unittest.equals('foo')); |
| 1440 unittest.expect(o.id, unittest.equals('foo')); | 1440 unittest.expect(o.id, unittest.equals('foo')); |
| 1441 checkUnnamed2557(o.info); | 1441 checkUnnamed2683(o.info); |
| 1442 checkPosition(o.nextMatePosition); | 1442 checkPosition(o.nextMatePosition); |
| 1443 unittest.expect(o.numberReads, unittest.equals(42)); | 1443 unittest.expect(o.numberReads, unittest.equals(42)); |
| 1444 unittest.expect(o.properPlacement, unittest.isTrue); | 1444 unittest.expect(o.properPlacement, unittest.isTrue); |
| 1445 unittest.expect(o.readGroupId, unittest.equals('foo')); | 1445 unittest.expect(o.readGroupId, unittest.equals('foo')); |
| 1446 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 1446 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
| 1447 unittest.expect(o.readNumber, unittest.equals(42)); | 1447 unittest.expect(o.readNumber, unittest.equals(42)); |
| 1448 unittest.expect(o.secondaryAlignment, unittest.isTrue); | 1448 unittest.expect(o.secondaryAlignment, unittest.isTrue); |
| 1449 unittest.expect(o.supplementaryAlignment, unittest.isTrue); | 1449 unittest.expect(o.supplementaryAlignment, unittest.isTrue); |
| 1450 } | 1450 } |
| 1451 buildCounterRead--; | 1451 buildCounterRead--; |
| 1452 } | 1452 } |
| 1453 | 1453 |
| 1454 buildUnnamed2558() { | 1454 buildUnnamed2684() { |
| 1455 var o = new core.List<core.Object>(); | 1455 var o = new core.List<core.Object>(); |
| 1456 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1456 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 1457 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1457 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 1458 return o; | 1458 return o; |
| 1459 } | 1459 } |
| 1460 | 1460 |
| 1461 checkUnnamed2558(core.List<core.Object> o) { | 1461 checkUnnamed2684(core.List<core.Object> o) { |
| 1462 unittest.expect(o, unittest.hasLength(2)); | 1462 unittest.expect(o, unittest.hasLength(2)); |
| 1463 var casted17 = (o[0]) as core.Map; unittest.expect(casted17, unittest.hasLengt
h(3)); unittest.expect(casted17["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted17["bool"], unittest.equals(true)); unittest.expect(casted17["string
"], unittest.equals('foo')); | 1463 var casted17 = (o[0]) as core.Map; unittest.expect(casted17, unittest.hasLengt
h(3)); unittest.expect(casted17["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted17["bool"], unittest.equals(true)); unittest.expect(casted17["string
"], unittest.equals('foo')); |
| 1464 var casted18 = (o[1]) as core.Map; unittest.expect(casted18, unittest.hasLengt
h(3)); unittest.expect(casted18["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted18["bool"], unittest.equals(true)); unittest.expect(casted18["string
"], unittest.equals('foo')); | 1464 var casted18 = (o[1]) as core.Map; unittest.expect(casted18, unittest.hasLengt
h(3)); unittest.expect(casted18["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted18["bool"], unittest.equals(true)); unittest.expect(casted18["string
"], unittest.equals('foo')); |
| 1465 } | 1465 } |
| 1466 | 1466 |
| 1467 buildUnnamed2559() { | 1467 buildUnnamed2685() { |
| 1468 var o = new core.Map<core.String, core.List<core.Object>>(); | 1468 var o = new core.Map<core.String, core.List<core.Object>>(); |
| 1469 o["x"] = buildUnnamed2558(); | 1469 o["x"] = buildUnnamed2684(); |
| 1470 o["y"] = buildUnnamed2558(); | 1470 o["y"] = buildUnnamed2684(); |
| 1471 return o; | 1471 return o; |
| 1472 } | 1472 } |
| 1473 | 1473 |
| 1474 checkUnnamed2559(core.Map<core.String, core.List<core.Object>> o) { | 1474 checkUnnamed2685(core.Map<core.String, core.List<core.Object>> o) { |
| 1475 unittest.expect(o, unittest.hasLength(2)); | 1475 unittest.expect(o, unittest.hasLength(2)); |
| 1476 checkUnnamed2558(o["x"]); | 1476 checkUnnamed2684(o["x"]); |
| 1477 checkUnnamed2558(o["y"]); | 1477 checkUnnamed2684(o["y"]); |
| 1478 } | 1478 } |
| 1479 | 1479 |
| 1480 buildUnnamed2560() { | 1480 buildUnnamed2686() { |
| 1481 var o = new core.List<api.Program>(); | 1481 var o = new core.List<api.Program>(); |
| 1482 o.add(buildProgram()); | 1482 o.add(buildProgram()); |
| 1483 o.add(buildProgram()); | 1483 o.add(buildProgram()); |
| 1484 return o; | 1484 return o; |
| 1485 } | 1485 } |
| 1486 | 1486 |
| 1487 checkUnnamed2560(core.List<api.Program> o) { | 1487 checkUnnamed2686(core.List<api.Program> o) { |
| 1488 unittest.expect(o, unittest.hasLength(2)); | 1488 unittest.expect(o, unittest.hasLength(2)); |
| 1489 checkProgram(o[0]); | 1489 checkProgram(o[0]); |
| 1490 checkProgram(o[1]); | 1490 checkProgram(o[1]); |
| 1491 } | 1491 } |
| 1492 | 1492 |
| 1493 core.int buildCounterReadGroup = 0; | 1493 core.int buildCounterReadGroup = 0; |
| 1494 buildReadGroup() { | 1494 buildReadGroup() { |
| 1495 var o = new api.ReadGroup(); | 1495 var o = new api.ReadGroup(); |
| 1496 buildCounterReadGroup++; | 1496 buildCounterReadGroup++; |
| 1497 if (buildCounterReadGroup < 3) { | 1497 if (buildCounterReadGroup < 3) { |
| 1498 o.datasetId = "foo"; | 1498 o.datasetId = "foo"; |
| 1499 o.description = "foo"; | 1499 o.description = "foo"; |
| 1500 o.experiment = buildExperiment(); | 1500 o.experiment = buildExperiment(); |
| 1501 o.id = "foo"; | 1501 o.id = "foo"; |
| 1502 o.info = buildUnnamed2559(); | 1502 o.info = buildUnnamed2685(); |
| 1503 o.name = "foo"; | 1503 o.name = "foo"; |
| 1504 o.predictedInsertSize = 42; | 1504 o.predictedInsertSize = 42; |
| 1505 o.programs = buildUnnamed2560(); | 1505 o.programs = buildUnnamed2686(); |
| 1506 o.referenceSetId = "foo"; | 1506 o.referenceSetId = "foo"; |
| 1507 o.sampleId = "foo"; | 1507 o.sampleId = "foo"; |
| 1508 } | 1508 } |
| 1509 buildCounterReadGroup--; | 1509 buildCounterReadGroup--; |
| 1510 return o; | 1510 return o; |
| 1511 } | 1511 } |
| 1512 | 1512 |
| 1513 checkReadGroup(api.ReadGroup o) { | 1513 checkReadGroup(api.ReadGroup o) { |
| 1514 buildCounterReadGroup++; | 1514 buildCounterReadGroup++; |
| 1515 if (buildCounterReadGroup < 3) { | 1515 if (buildCounterReadGroup < 3) { |
| 1516 unittest.expect(o.datasetId, unittest.equals('foo')); | 1516 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 1517 unittest.expect(o.description, unittest.equals('foo')); | 1517 unittest.expect(o.description, unittest.equals('foo')); |
| 1518 checkExperiment(o.experiment); | 1518 checkExperiment(o.experiment); |
| 1519 unittest.expect(o.id, unittest.equals('foo')); | 1519 unittest.expect(o.id, unittest.equals('foo')); |
| 1520 checkUnnamed2559(o.info); | 1520 checkUnnamed2685(o.info); |
| 1521 unittest.expect(o.name, unittest.equals('foo')); | 1521 unittest.expect(o.name, unittest.equals('foo')); |
| 1522 unittest.expect(o.predictedInsertSize, unittest.equals(42)); | 1522 unittest.expect(o.predictedInsertSize, unittest.equals(42)); |
| 1523 checkUnnamed2560(o.programs); | 1523 checkUnnamed2686(o.programs); |
| 1524 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1524 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 1525 unittest.expect(o.sampleId, unittest.equals('foo')); | 1525 unittest.expect(o.sampleId, unittest.equals('foo')); |
| 1526 } | 1526 } |
| 1527 buildCounterReadGroup--; | 1527 buildCounterReadGroup--; |
| 1528 } | 1528 } |
| 1529 | 1529 |
| 1530 buildUnnamed2561() { | 1530 buildUnnamed2687() { |
| 1531 var o = new core.List<core.Object>(); | 1531 var o = new core.List<core.Object>(); |
| 1532 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1532 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 1533 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 1533 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 1534 return o; | 1534 return o; |
| 1535 } | 1535 } |
| 1536 | 1536 |
| 1537 checkUnnamed2561(core.List<core.Object> o) { | 1537 checkUnnamed2687(core.List<core.Object> o) { |
| 1538 unittest.expect(o, unittest.hasLength(2)); | 1538 unittest.expect(o, unittest.hasLength(2)); |
| 1539 var casted19 = (o[0]) as core.Map; unittest.expect(casted19, unittest.hasLengt
h(3)); unittest.expect(casted19["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted19["bool"], unittest.equals(true)); unittest.expect(casted19["string
"], unittest.equals('foo')); | 1539 var casted19 = (o[0]) as core.Map; unittest.expect(casted19, unittest.hasLengt
h(3)); unittest.expect(casted19["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted19["bool"], unittest.equals(true)); unittest.expect(casted19["string
"], unittest.equals('foo')); |
| 1540 var casted20 = (o[1]) as core.Map; unittest.expect(casted20, unittest.hasLengt
h(3)); unittest.expect(casted20["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted20["bool"], unittest.equals(true)); unittest.expect(casted20["string
"], unittest.equals('foo')); | 1540 var casted20 = (o[1]) as core.Map; unittest.expect(casted20, unittest.hasLengt
h(3)); unittest.expect(casted20["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted20["bool"], unittest.equals(true)); unittest.expect(casted20["string
"], unittest.equals('foo')); |
| 1541 } | 1541 } |
| 1542 | 1542 |
| 1543 buildUnnamed2562() { | 1543 buildUnnamed2688() { |
| 1544 var o = new core.Map<core.String, core.List<core.Object>>(); | 1544 var o = new core.Map<core.String, core.List<core.Object>>(); |
| 1545 o["x"] = buildUnnamed2561(); | 1545 o["x"] = buildUnnamed2687(); |
| 1546 o["y"] = buildUnnamed2561(); | 1546 o["y"] = buildUnnamed2687(); |
| 1547 return o; | 1547 return o; |
| 1548 } | 1548 } |
| 1549 | 1549 |
| 1550 checkUnnamed2562(core.Map<core.String, core.List<core.Object>> o) { | 1550 checkUnnamed2688(core.Map<core.String, core.List<core.Object>> o) { |
| 1551 unittest.expect(o, unittest.hasLength(2)); | 1551 unittest.expect(o, unittest.hasLength(2)); |
| 1552 checkUnnamed2561(o["x"]); | 1552 checkUnnamed2687(o["x"]); |
| 1553 checkUnnamed2561(o["y"]); | 1553 checkUnnamed2687(o["y"]); |
| 1554 } | 1554 } |
| 1555 | 1555 |
| 1556 buildUnnamed2563() { | 1556 buildUnnamed2689() { |
| 1557 var o = new core.List<api.ReadGroup>(); | 1557 var o = new core.List<api.ReadGroup>(); |
| 1558 o.add(buildReadGroup()); | 1558 o.add(buildReadGroup()); |
| 1559 o.add(buildReadGroup()); | 1559 o.add(buildReadGroup()); |
| 1560 return o; | 1560 return o; |
| 1561 } | 1561 } |
| 1562 | 1562 |
| 1563 checkUnnamed2563(core.List<api.ReadGroup> o) { | 1563 checkUnnamed2689(core.List<api.ReadGroup> o) { |
| 1564 unittest.expect(o, unittest.hasLength(2)); | 1564 unittest.expect(o, unittest.hasLength(2)); |
| 1565 checkReadGroup(o[0]); | 1565 checkReadGroup(o[0]); |
| 1566 checkReadGroup(o[1]); | 1566 checkReadGroup(o[1]); |
| 1567 } | 1567 } |
| 1568 | 1568 |
| 1569 core.int buildCounterReadGroupSet = 0; | 1569 core.int buildCounterReadGroupSet = 0; |
| 1570 buildReadGroupSet() { | 1570 buildReadGroupSet() { |
| 1571 var o = new api.ReadGroupSet(); | 1571 var o = new api.ReadGroupSet(); |
| 1572 buildCounterReadGroupSet++; | 1572 buildCounterReadGroupSet++; |
| 1573 if (buildCounterReadGroupSet < 3) { | 1573 if (buildCounterReadGroupSet < 3) { |
| 1574 o.datasetId = "foo"; | 1574 o.datasetId = "foo"; |
| 1575 o.filename = "foo"; | 1575 o.filename = "foo"; |
| 1576 o.id = "foo"; | 1576 o.id = "foo"; |
| 1577 o.info = buildUnnamed2562(); | 1577 o.info = buildUnnamed2688(); |
| 1578 o.name = "foo"; | 1578 o.name = "foo"; |
| 1579 o.readGroups = buildUnnamed2563(); | 1579 o.readGroups = buildUnnamed2689(); |
| 1580 o.referenceSetId = "foo"; | 1580 o.referenceSetId = "foo"; |
| 1581 } | 1581 } |
| 1582 buildCounterReadGroupSet--; | 1582 buildCounterReadGroupSet--; |
| 1583 return o; | 1583 return o; |
| 1584 } | 1584 } |
| 1585 | 1585 |
| 1586 checkReadGroupSet(api.ReadGroupSet o) { | 1586 checkReadGroupSet(api.ReadGroupSet o) { |
| 1587 buildCounterReadGroupSet++; | 1587 buildCounterReadGroupSet++; |
| 1588 if (buildCounterReadGroupSet < 3) { | 1588 if (buildCounterReadGroupSet < 3) { |
| 1589 unittest.expect(o.datasetId, unittest.equals('foo')); | 1589 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 1590 unittest.expect(o.filename, unittest.equals('foo')); | 1590 unittest.expect(o.filename, unittest.equals('foo')); |
| 1591 unittest.expect(o.id, unittest.equals('foo')); | 1591 unittest.expect(o.id, unittest.equals('foo')); |
| 1592 checkUnnamed2562(o.info); | 1592 checkUnnamed2688(o.info); |
| 1593 unittest.expect(o.name, unittest.equals('foo')); | 1593 unittest.expect(o.name, unittest.equals('foo')); |
| 1594 checkUnnamed2563(o.readGroups); | 1594 checkUnnamed2689(o.readGroups); |
| 1595 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1595 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 1596 } | 1596 } |
| 1597 buildCounterReadGroupSet--; | 1597 buildCounterReadGroupSet--; |
| 1598 } | 1598 } |
| 1599 | 1599 |
| 1600 buildUnnamed2564() { | 1600 buildUnnamed2690() { |
| 1601 var o = new core.List<core.String>(); | 1601 var o = new core.List<core.String>(); |
| 1602 o.add("foo"); | 1602 o.add("foo"); |
| 1603 o.add("foo"); | 1603 o.add("foo"); |
| 1604 return o; | 1604 return o; |
| 1605 } | 1605 } |
| 1606 | 1606 |
| 1607 checkUnnamed2564(core.List<core.String> o) { | 1607 checkUnnamed2690(core.List<core.String> o) { |
| 1608 unittest.expect(o, unittest.hasLength(2)); | 1608 unittest.expect(o, unittest.hasLength(2)); |
| 1609 unittest.expect(o[0], unittest.equals('foo')); | 1609 unittest.expect(o[0], unittest.equals('foo')); |
| 1610 unittest.expect(o[1], unittest.equals('foo')); | 1610 unittest.expect(o[1], unittest.equals('foo')); |
| 1611 } | 1611 } |
| 1612 | 1612 |
| 1613 core.int buildCounterReference = 0; | 1613 core.int buildCounterReference = 0; |
| 1614 buildReference() { | 1614 buildReference() { |
| 1615 var o = new api.Reference(); | 1615 var o = new api.Reference(); |
| 1616 buildCounterReference++; | 1616 buildCounterReference++; |
| 1617 if (buildCounterReference < 3) { | 1617 if (buildCounterReference < 3) { |
| 1618 o.id = "foo"; | 1618 o.id = "foo"; |
| 1619 o.length = "foo"; | 1619 o.length = "foo"; |
| 1620 o.md5checksum = "foo"; | 1620 o.md5checksum = "foo"; |
| 1621 o.name = "foo"; | 1621 o.name = "foo"; |
| 1622 o.ncbiTaxonId = 42; | 1622 o.ncbiTaxonId = 42; |
| 1623 o.sourceAccessions = buildUnnamed2564(); | 1623 o.sourceAccessions = buildUnnamed2690(); |
| 1624 o.sourceUri = "foo"; | 1624 o.sourceUri = "foo"; |
| 1625 } | 1625 } |
| 1626 buildCounterReference--; | 1626 buildCounterReference--; |
| 1627 return o; | 1627 return o; |
| 1628 } | 1628 } |
| 1629 | 1629 |
| 1630 checkReference(api.Reference o) { | 1630 checkReference(api.Reference o) { |
| 1631 buildCounterReference++; | 1631 buildCounterReference++; |
| 1632 if (buildCounterReference < 3) { | 1632 if (buildCounterReference < 3) { |
| 1633 unittest.expect(o.id, unittest.equals('foo')); | 1633 unittest.expect(o.id, unittest.equals('foo')); |
| 1634 unittest.expect(o.length, unittest.equals('foo')); | 1634 unittest.expect(o.length, unittest.equals('foo')); |
| 1635 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1635 unittest.expect(o.md5checksum, unittest.equals('foo')); |
| 1636 unittest.expect(o.name, unittest.equals('foo')); | 1636 unittest.expect(o.name, unittest.equals('foo')); |
| 1637 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1637 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
| 1638 checkUnnamed2564(o.sourceAccessions); | 1638 checkUnnamed2690(o.sourceAccessions); |
| 1639 unittest.expect(o.sourceUri, unittest.equals('foo')); | 1639 unittest.expect(o.sourceUri, unittest.equals('foo')); |
| 1640 } | 1640 } |
| 1641 buildCounterReference--; | 1641 buildCounterReference--; |
| 1642 } | 1642 } |
| 1643 | 1643 |
| 1644 core.int buildCounterReferenceBound = 0; | 1644 core.int buildCounterReferenceBound = 0; |
| 1645 buildReferenceBound() { | 1645 buildReferenceBound() { |
| 1646 var o = new api.ReferenceBound(); | 1646 var o = new api.ReferenceBound(); |
| 1647 buildCounterReferenceBound++; | 1647 buildCounterReferenceBound++; |
| 1648 if (buildCounterReferenceBound < 3) { | 1648 if (buildCounterReferenceBound < 3) { |
| 1649 o.referenceName = "foo"; | 1649 o.referenceName = "foo"; |
| 1650 o.upperBound = "foo"; | 1650 o.upperBound = "foo"; |
| 1651 } | 1651 } |
| 1652 buildCounterReferenceBound--; | 1652 buildCounterReferenceBound--; |
| 1653 return o; | 1653 return o; |
| 1654 } | 1654 } |
| 1655 | 1655 |
| 1656 checkReferenceBound(api.ReferenceBound o) { | 1656 checkReferenceBound(api.ReferenceBound o) { |
| 1657 buildCounterReferenceBound++; | 1657 buildCounterReferenceBound++; |
| 1658 if (buildCounterReferenceBound < 3) { | 1658 if (buildCounterReferenceBound < 3) { |
| 1659 unittest.expect(o.referenceName, unittest.equals('foo')); | 1659 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 1660 unittest.expect(o.upperBound, unittest.equals('foo')); | 1660 unittest.expect(o.upperBound, unittest.equals('foo')); |
| 1661 } | 1661 } |
| 1662 buildCounterReferenceBound--; | 1662 buildCounterReferenceBound--; |
| 1663 } | 1663 } |
| 1664 | 1664 |
| 1665 buildUnnamed2565() { | 1665 buildUnnamed2691() { |
| 1666 var o = new core.List<core.String>(); | 1666 var o = new core.List<core.String>(); |
| 1667 o.add("foo"); | 1667 o.add("foo"); |
| 1668 o.add("foo"); | 1668 o.add("foo"); |
| 1669 return o; | 1669 return o; |
| 1670 } | 1670 } |
| 1671 | 1671 |
| 1672 checkUnnamed2565(core.List<core.String> o) { | 1672 checkUnnamed2691(core.List<core.String> o) { |
| 1673 unittest.expect(o, unittest.hasLength(2)); | 1673 unittest.expect(o, unittest.hasLength(2)); |
| 1674 unittest.expect(o[0], unittest.equals('foo')); | 1674 unittest.expect(o[0], unittest.equals('foo')); |
| 1675 unittest.expect(o[1], unittest.equals('foo')); | 1675 unittest.expect(o[1], unittest.equals('foo')); |
| 1676 } | 1676 } |
| 1677 | 1677 |
| 1678 buildUnnamed2566() { | 1678 buildUnnamed2692() { |
| 1679 var o = new core.List<core.String>(); | 1679 var o = new core.List<core.String>(); |
| 1680 o.add("foo"); | 1680 o.add("foo"); |
| 1681 o.add("foo"); | 1681 o.add("foo"); |
| 1682 return o; | 1682 return o; |
| 1683 } | 1683 } |
| 1684 | 1684 |
| 1685 checkUnnamed2566(core.List<core.String> o) { | 1685 checkUnnamed2692(core.List<core.String> o) { |
| 1686 unittest.expect(o, unittest.hasLength(2)); | 1686 unittest.expect(o, unittest.hasLength(2)); |
| 1687 unittest.expect(o[0], unittest.equals('foo')); | 1687 unittest.expect(o[0], unittest.equals('foo')); |
| 1688 unittest.expect(o[1], unittest.equals('foo')); | 1688 unittest.expect(o[1], unittest.equals('foo')); |
| 1689 } | 1689 } |
| 1690 | 1690 |
| 1691 core.int buildCounterReferenceSet = 0; | 1691 core.int buildCounterReferenceSet = 0; |
| 1692 buildReferenceSet() { | 1692 buildReferenceSet() { |
| 1693 var o = new api.ReferenceSet(); | 1693 var o = new api.ReferenceSet(); |
| 1694 buildCounterReferenceSet++; | 1694 buildCounterReferenceSet++; |
| 1695 if (buildCounterReferenceSet < 3) { | 1695 if (buildCounterReferenceSet < 3) { |
| 1696 o.assemblyId = "foo"; | 1696 o.assemblyId = "foo"; |
| 1697 o.description = "foo"; | 1697 o.description = "foo"; |
| 1698 o.id = "foo"; | 1698 o.id = "foo"; |
| 1699 o.md5checksum = "foo"; | 1699 o.md5checksum = "foo"; |
| 1700 o.ncbiTaxonId = 42; | 1700 o.ncbiTaxonId = 42; |
| 1701 o.referenceIds = buildUnnamed2565(); | 1701 o.referenceIds = buildUnnamed2691(); |
| 1702 o.sourceAccessions = buildUnnamed2566(); | 1702 o.sourceAccessions = buildUnnamed2692(); |
| 1703 o.sourceUri = "foo"; | 1703 o.sourceUri = "foo"; |
| 1704 } | 1704 } |
| 1705 buildCounterReferenceSet--; | 1705 buildCounterReferenceSet--; |
| 1706 return o; | 1706 return o; |
| 1707 } | 1707 } |
| 1708 | 1708 |
| 1709 checkReferenceSet(api.ReferenceSet o) { | 1709 checkReferenceSet(api.ReferenceSet o) { |
| 1710 buildCounterReferenceSet++; | 1710 buildCounterReferenceSet++; |
| 1711 if (buildCounterReferenceSet < 3) { | 1711 if (buildCounterReferenceSet < 3) { |
| 1712 unittest.expect(o.assemblyId, unittest.equals('foo')); | 1712 unittest.expect(o.assemblyId, unittest.equals('foo')); |
| 1713 unittest.expect(o.description, unittest.equals('foo')); | 1713 unittest.expect(o.description, unittest.equals('foo')); |
| 1714 unittest.expect(o.id, unittest.equals('foo')); | 1714 unittest.expect(o.id, unittest.equals('foo')); |
| 1715 unittest.expect(o.md5checksum, unittest.equals('foo')); | 1715 unittest.expect(o.md5checksum, unittest.equals('foo')); |
| 1716 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); | 1716 unittest.expect(o.ncbiTaxonId, unittest.equals(42)); |
| 1717 checkUnnamed2565(o.referenceIds); | 1717 checkUnnamed2691(o.referenceIds); |
| 1718 checkUnnamed2566(o.sourceAccessions); | 1718 checkUnnamed2692(o.sourceAccessions); |
| 1719 unittest.expect(o.sourceUri, unittest.equals('foo')); | 1719 unittest.expect(o.sourceUri, unittest.equals('foo')); |
| 1720 } | 1720 } |
| 1721 buildCounterReferenceSet--; | 1721 buildCounterReferenceSet--; |
| 1722 } | 1722 } |
| 1723 | 1723 |
| 1724 core.int buildCounterRuntimeMetadata = 0; | 1724 core.int buildCounterRuntimeMetadata = 0; |
| 1725 buildRuntimeMetadata() { | 1725 buildRuntimeMetadata() { |
| 1726 var o = new api.RuntimeMetadata(); | 1726 var o = new api.RuntimeMetadata(); |
| 1727 buildCounterRuntimeMetadata++; | 1727 buildCounterRuntimeMetadata++; |
| 1728 if (buildCounterRuntimeMetadata < 3) { | 1728 if (buildCounterRuntimeMetadata < 3) { |
| 1729 o.computeEngine = buildComputeEngine(); | 1729 o.computeEngine = buildComputeEngine(); |
| 1730 } | 1730 } |
| 1731 buildCounterRuntimeMetadata--; | 1731 buildCounterRuntimeMetadata--; |
| 1732 return o; | 1732 return o; |
| 1733 } | 1733 } |
| 1734 | 1734 |
| 1735 checkRuntimeMetadata(api.RuntimeMetadata o) { | 1735 checkRuntimeMetadata(api.RuntimeMetadata o) { |
| 1736 buildCounterRuntimeMetadata++; | 1736 buildCounterRuntimeMetadata++; |
| 1737 if (buildCounterRuntimeMetadata < 3) { | 1737 if (buildCounterRuntimeMetadata < 3) { |
| 1738 checkComputeEngine(o.computeEngine); | 1738 checkComputeEngine(o.computeEngine); |
| 1739 } | 1739 } |
| 1740 buildCounterRuntimeMetadata--; | 1740 buildCounterRuntimeMetadata--; |
| 1741 } | 1741 } |
| 1742 | 1742 |
| 1743 buildUnnamed2567() { | 1743 buildUnnamed2693() { |
| 1744 var o = new core.List<core.String>(); | 1744 var o = new core.List<core.String>(); |
| 1745 o.add("foo"); | 1745 o.add("foo"); |
| 1746 o.add("foo"); | 1746 o.add("foo"); |
| 1747 return o; | 1747 return o; |
| 1748 } | 1748 } |
| 1749 | 1749 |
| 1750 checkUnnamed2567(core.List<core.String> o) { | 1750 checkUnnamed2693(core.List<core.String> o) { |
| 1751 unittest.expect(o, unittest.hasLength(2)); | 1751 unittest.expect(o, unittest.hasLength(2)); |
| 1752 unittest.expect(o[0], unittest.equals('foo')); | 1752 unittest.expect(o[0], unittest.equals('foo')); |
| 1753 unittest.expect(o[1], unittest.equals('foo')); | 1753 unittest.expect(o[1], unittest.equals('foo')); |
| 1754 } | 1754 } |
| 1755 | 1755 |
| 1756 buildUnnamed2568() { | 1756 buildUnnamed2694() { |
| 1757 var o = new core.List<core.String>(); | 1757 var o = new core.List<core.String>(); |
| 1758 o.add("foo"); | 1758 o.add("foo"); |
| 1759 o.add("foo"); | 1759 o.add("foo"); |
| 1760 return o; | 1760 return o; |
| 1761 } | 1761 } |
| 1762 | 1762 |
| 1763 checkUnnamed2568(core.List<core.String> o) { | 1763 checkUnnamed2694(core.List<core.String> o) { |
| 1764 unittest.expect(o, unittest.hasLength(2)); | 1764 unittest.expect(o, unittest.hasLength(2)); |
| 1765 unittest.expect(o[0], unittest.equals('foo')); | 1765 unittest.expect(o[0], unittest.equals('foo')); |
| 1766 unittest.expect(o[1], unittest.equals('foo')); | 1766 unittest.expect(o[1], unittest.equals('foo')); |
| 1767 } | 1767 } |
| 1768 | 1768 |
| 1769 core.int buildCounterSearchAnnotationSetsRequest = 0; | 1769 core.int buildCounterSearchAnnotationSetsRequest = 0; |
| 1770 buildSearchAnnotationSetsRequest() { | 1770 buildSearchAnnotationSetsRequest() { |
| 1771 var o = new api.SearchAnnotationSetsRequest(); | 1771 var o = new api.SearchAnnotationSetsRequest(); |
| 1772 buildCounterSearchAnnotationSetsRequest++; | 1772 buildCounterSearchAnnotationSetsRequest++; |
| 1773 if (buildCounterSearchAnnotationSetsRequest < 3) { | 1773 if (buildCounterSearchAnnotationSetsRequest < 3) { |
| 1774 o.datasetIds = buildUnnamed2567(); | 1774 o.datasetIds = buildUnnamed2693(); |
| 1775 o.name = "foo"; | 1775 o.name = "foo"; |
| 1776 o.pageSize = 42; | 1776 o.pageSize = 42; |
| 1777 o.pageToken = "foo"; | 1777 o.pageToken = "foo"; |
| 1778 o.referenceSetId = "foo"; | 1778 o.referenceSetId = "foo"; |
| 1779 o.types = buildUnnamed2568(); | 1779 o.types = buildUnnamed2694(); |
| 1780 } | 1780 } |
| 1781 buildCounterSearchAnnotationSetsRequest--; | 1781 buildCounterSearchAnnotationSetsRequest--; |
| 1782 return o; | 1782 return o; |
| 1783 } | 1783 } |
| 1784 | 1784 |
| 1785 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { | 1785 checkSearchAnnotationSetsRequest(api.SearchAnnotationSetsRequest o) { |
| 1786 buildCounterSearchAnnotationSetsRequest++; | 1786 buildCounterSearchAnnotationSetsRequest++; |
| 1787 if (buildCounterSearchAnnotationSetsRequest < 3) { | 1787 if (buildCounterSearchAnnotationSetsRequest < 3) { |
| 1788 checkUnnamed2567(o.datasetIds); | 1788 checkUnnamed2693(o.datasetIds); |
| 1789 unittest.expect(o.name, unittest.equals('foo')); | 1789 unittest.expect(o.name, unittest.equals('foo')); |
| 1790 unittest.expect(o.pageSize, unittest.equals(42)); | 1790 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1791 unittest.expect(o.pageToken, unittest.equals('foo')); | 1791 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1792 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 1792 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 1793 checkUnnamed2568(o.types); | 1793 checkUnnamed2694(o.types); |
| 1794 } | 1794 } |
| 1795 buildCounterSearchAnnotationSetsRequest--; | 1795 buildCounterSearchAnnotationSetsRequest--; |
| 1796 } | 1796 } |
| 1797 | 1797 |
| 1798 buildUnnamed2569() { | 1798 buildUnnamed2695() { |
| 1799 var o = new core.List<api.AnnotationSet>(); | 1799 var o = new core.List<api.AnnotationSet>(); |
| 1800 o.add(buildAnnotationSet()); | 1800 o.add(buildAnnotationSet()); |
| 1801 o.add(buildAnnotationSet()); | 1801 o.add(buildAnnotationSet()); |
| 1802 return o; | 1802 return o; |
| 1803 } | 1803 } |
| 1804 | 1804 |
| 1805 checkUnnamed2569(core.List<api.AnnotationSet> o) { | 1805 checkUnnamed2695(core.List<api.AnnotationSet> o) { |
| 1806 unittest.expect(o, unittest.hasLength(2)); | 1806 unittest.expect(o, unittest.hasLength(2)); |
| 1807 checkAnnotationSet(o[0]); | 1807 checkAnnotationSet(o[0]); |
| 1808 checkAnnotationSet(o[1]); | 1808 checkAnnotationSet(o[1]); |
| 1809 } | 1809 } |
| 1810 | 1810 |
| 1811 core.int buildCounterSearchAnnotationSetsResponse = 0; | 1811 core.int buildCounterSearchAnnotationSetsResponse = 0; |
| 1812 buildSearchAnnotationSetsResponse() { | 1812 buildSearchAnnotationSetsResponse() { |
| 1813 var o = new api.SearchAnnotationSetsResponse(); | 1813 var o = new api.SearchAnnotationSetsResponse(); |
| 1814 buildCounterSearchAnnotationSetsResponse++; | 1814 buildCounterSearchAnnotationSetsResponse++; |
| 1815 if (buildCounterSearchAnnotationSetsResponse < 3) { | 1815 if (buildCounterSearchAnnotationSetsResponse < 3) { |
| 1816 o.annotationSets = buildUnnamed2569(); | 1816 o.annotationSets = buildUnnamed2695(); |
| 1817 o.nextPageToken = "foo"; | 1817 o.nextPageToken = "foo"; |
| 1818 } | 1818 } |
| 1819 buildCounterSearchAnnotationSetsResponse--; | 1819 buildCounterSearchAnnotationSetsResponse--; |
| 1820 return o; | 1820 return o; |
| 1821 } | 1821 } |
| 1822 | 1822 |
| 1823 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { | 1823 checkSearchAnnotationSetsResponse(api.SearchAnnotationSetsResponse o) { |
| 1824 buildCounterSearchAnnotationSetsResponse++; | 1824 buildCounterSearchAnnotationSetsResponse++; |
| 1825 if (buildCounterSearchAnnotationSetsResponse < 3) { | 1825 if (buildCounterSearchAnnotationSetsResponse < 3) { |
| 1826 checkUnnamed2569(o.annotationSets); | 1826 checkUnnamed2695(o.annotationSets); |
| 1827 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1827 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1828 } | 1828 } |
| 1829 buildCounterSearchAnnotationSetsResponse--; | 1829 buildCounterSearchAnnotationSetsResponse--; |
| 1830 } | 1830 } |
| 1831 | 1831 |
| 1832 buildUnnamed2570() { | 1832 buildUnnamed2696() { |
| 1833 var o = new core.List<core.String>(); | 1833 var o = new core.List<core.String>(); |
| 1834 o.add("foo"); | 1834 o.add("foo"); |
| 1835 o.add("foo"); | 1835 o.add("foo"); |
| 1836 return o; | 1836 return o; |
| 1837 } | 1837 } |
| 1838 | 1838 |
| 1839 checkUnnamed2570(core.List<core.String> o) { | 1839 checkUnnamed2696(core.List<core.String> o) { |
| 1840 unittest.expect(o, unittest.hasLength(2)); | 1840 unittest.expect(o, unittest.hasLength(2)); |
| 1841 unittest.expect(o[0], unittest.equals('foo')); | 1841 unittest.expect(o[0], unittest.equals('foo')); |
| 1842 unittest.expect(o[1], unittest.equals('foo')); | 1842 unittest.expect(o[1], unittest.equals('foo')); |
| 1843 } | 1843 } |
| 1844 | 1844 |
| 1845 core.int buildCounterSearchAnnotationsRequest = 0; | 1845 core.int buildCounterSearchAnnotationsRequest = 0; |
| 1846 buildSearchAnnotationsRequest() { | 1846 buildSearchAnnotationsRequest() { |
| 1847 var o = new api.SearchAnnotationsRequest(); | 1847 var o = new api.SearchAnnotationsRequest(); |
| 1848 buildCounterSearchAnnotationsRequest++; | 1848 buildCounterSearchAnnotationsRequest++; |
| 1849 if (buildCounterSearchAnnotationsRequest < 3) { | 1849 if (buildCounterSearchAnnotationsRequest < 3) { |
| 1850 o.annotationSetIds = buildUnnamed2570(); | 1850 o.annotationSetIds = buildUnnamed2696(); |
| 1851 o.end = "foo"; | 1851 o.end = "foo"; |
| 1852 o.pageSize = 42; | 1852 o.pageSize = 42; |
| 1853 o.pageToken = "foo"; | 1853 o.pageToken = "foo"; |
| 1854 o.referenceId = "foo"; | 1854 o.referenceId = "foo"; |
| 1855 o.referenceName = "foo"; | 1855 o.referenceName = "foo"; |
| 1856 o.start = "foo"; | 1856 o.start = "foo"; |
| 1857 } | 1857 } |
| 1858 buildCounterSearchAnnotationsRequest--; | 1858 buildCounterSearchAnnotationsRequest--; |
| 1859 return o; | 1859 return o; |
| 1860 } | 1860 } |
| 1861 | 1861 |
| 1862 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { | 1862 checkSearchAnnotationsRequest(api.SearchAnnotationsRequest o) { |
| 1863 buildCounterSearchAnnotationsRequest++; | 1863 buildCounterSearchAnnotationsRequest++; |
| 1864 if (buildCounterSearchAnnotationsRequest < 3) { | 1864 if (buildCounterSearchAnnotationsRequest < 3) { |
| 1865 checkUnnamed2570(o.annotationSetIds); | 1865 checkUnnamed2696(o.annotationSetIds); |
| 1866 unittest.expect(o.end, unittest.equals('foo')); | 1866 unittest.expect(o.end, unittest.equals('foo')); |
| 1867 unittest.expect(o.pageSize, unittest.equals(42)); | 1867 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1868 unittest.expect(o.pageToken, unittest.equals('foo')); | 1868 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1869 unittest.expect(o.referenceId, unittest.equals('foo')); | 1869 unittest.expect(o.referenceId, unittest.equals('foo')); |
| 1870 unittest.expect(o.referenceName, unittest.equals('foo')); | 1870 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 1871 unittest.expect(o.start, unittest.equals('foo')); | 1871 unittest.expect(o.start, unittest.equals('foo')); |
| 1872 } | 1872 } |
| 1873 buildCounterSearchAnnotationsRequest--; | 1873 buildCounterSearchAnnotationsRequest--; |
| 1874 } | 1874 } |
| 1875 | 1875 |
| 1876 buildUnnamed2571() { | 1876 buildUnnamed2697() { |
| 1877 var o = new core.List<api.Annotation>(); | 1877 var o = new core.List<api.Annotation>(); |
| 1878 o.add(buildAnnotation()); | 1878 o.add(buildAnnotation()); |
| 1879 o.add(buildAnnotation()); | 1879 o.add(buildAnnotation()); |
| 1880 return o; | 1880 return o; |
| 1881 } | 1881 } |
| 1882 | 1882 |
| 1883 checkUnnamed2571(core.List<api.Annotation> o) { | 1883 checkUnnamed2697(core.List<api.Annotation> o) { |
| 1884 unittest.expect(o, unittest.hasLength(2)); | 1884 unittest.expect(o, unittest.hasLength(2)); |
| 1885 checkAnnotation(o[0]); | 1885 checkAnnotation(o[0]); |
| 1886 checkAnnotation(o[1]); | 1886 checkAnnotation(o[1]); |
| 1887 } | 1887 } |
| 1888 | 1888 |
| 1889 core.int buildCounterSearchAnnotationsResponse = 0; | 1889 core.int buildCounterSearchAnnotationsResponse = 0; |
| 1890 buildSearchAnnotationsResponse() { | 1890 buildSearchAnnotationsResponse() { |
| 1891 var o = new api.SearchAnnotationsResponse(); | 1891 var o = new api.SearchAnnotationsResponse(); |
| 1892 buildCounterSearchAnnotationsResponse++; | 1892 buildCounterSearchAnnotationsResponse++; |
| 1893 if (buildCounterSearchAnnotationsResponse < 3) { | 1893 if (buildCounterSearchAnnotationsResponse < 3) { |
| 1894 o.annotations = buildUnnamed2571(); | 1894 o.annotations = buildUnnamed2697(); |
| 1895 o.nextPageToken = "foo"; | 1895 o.nextPageToken = "foo"; |
| 1896 } | 1896 } |
| 1897 buildCounterSearchAnnotationsResponse--; | 1897 buildCounterSearchAnnotationsResponse--; |
| 1898 return o; | 1898 return o; |
| 1899 } | 1899 } |
| 1900 | 1900 |
| 1901 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { | 1901 checkSearchAnnotationsResponse(api.SearchAnnotationsResponse o) { |
| 1902 buildCounterSearchAnnotationsResponse++; | 1902 buildCounterSearchAnnotationsResponse++; |
| 1903 if (buildCounterSearchAnnotationsResponse < 3) { | 1903 if (buildCounterSearchAnnotationsResponse < 3) { |
| 1904 checkUnnamed2571(o.annotations); | 1904 checkUnnamed2697(o.annotations); |
| 1905 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1905 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1906 } | 1906 } |
| 1907 buildCounterSearchAnnotationsResponse--; | 1907 buildCounterSearchAnnotationsResponse--; |
| 1908 } | 1908 } |
| 1909 | 1909 |
| 1910 buildUnnamed2572() { | 1910 buildUnnamed2698() { |
| 1911 var o = new core.List<core.String>(); | 1911 var o = new core.List<core.String>(); |
| 1912 o.add("foo"); | 1912 o.add("foo"); |
| 1913 o.add("foo"); | 1913 o.add("foo"); |
| 1914 return o; | 1914 return o; |
| 1915 } | 1915 } |
| 1916 | 1916 |
| 1917 checkUnnamed2572(core.List<core.String> o) { | 1917 checkUnnamed2698(core.List<core.String> o) { |
| 1918 unittest.expect(o, unittest.hasLength(2)); | 1918 unittest.expect(o, unittest.hasLength(2)); |
| 1919 unittest.expect(o[0], unittest.equals('foo')); | 1919 unittest.expect(o[0], unittest.equals('foo')); |
| 1920 unittest.expect(o[1], unittest.equals('foo')); | 1920 unittest.expect(o[1], unittest.equals('foo')); |
| 1921 } | 1921 } |
| 1922 | 1922 |
| 1923 core.int buildCounterSearchCallSetsRequest = 0; | 1923 core.int buildCounterSearchCallSetsRequest = 0; |
| 1924 buildSearchCallSetsRequest() { | 1924 buildSearchCallSetsRequest() { |
| 1925 var o = new api.SearchCallSetsRequest(); | 1925 var o = new api.SearchCallSetsRequest(); |
| 1926 buildCounterSearchCallSetsRequest++; | 1926 buildCounterSearchCallSetsRequest++; |
| 1927 if (buildCounterSearchCallSetsRequest < 3) { | 1927 if (buildCounterSearchCallSetsRequest < 3) { |
| 1928 o.name = "foo"; | 1928 o.name = "foo"; |
| 1929 o.pageSize = 42; | 1929 o.pageSize = 42; |
| 1930 o.pageToken = "foo"; | 1930 o.pageToken = "foo"; |
| 1931 o.variantSetIds = buildUnnamed2572(); | 1931 o.variantSetIds = buildUnnamed2698(); |
| 1932 } | 1932 } |
| 1933 buildCounterSearchCallSetsRequest--; | 1933 buildCounterSearchCallSetsRequest--; |
| 1934 return o; | 1934 return o; |
| 1935 } | 1935 } |
| 1936 | 1936 |
| 1937 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { | 1937 checkSearchCallSetsRequest(api.SearchCallSetsRequest o) { |
| 1938 buildCounterSearchCallSetsRequest++; | 1938 buildCounterSearchCallSetsRequest++; |
| 1939 if (buildCounterSearchCallSetsRequest < 3) { | 1939 if (buildCounterSearchCallSetsRequest < 3) { |
| 1940 unittest.expect(o.name, unittest.equals('foo')); | 1940 unittest.expect(o.name, unittest.equals('foo')); |
| 1941 unittest.expect(o.pageSize, unittest.equals(42)); | 1941 unittest.expect(o.pageSize, unittest.equals(42)); |
| 1942 unittest.expect(o.pageToken, unittest.equals('foo')); | 1942 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 1943 checkUnnamed2572(o.variantSetIds); | 1943 checkUnnamed2698(o.variantSetIds); |
| 1944 } | 1944 } |
| 1945 buildCounterSearchCallSetsRequest--; | 1945 buildCounterSearchCallSetsRequest--; |
| 1946 } | 1946 } |
| 1947 | 1947 |
| 1948 buildUnnamed2573() { | 1948 buildUnnamed2699() { |
| 1949 var o = new core.List<api.CallSet>(); | 1949 var o = new core.List<api.CallSet>(); |
| 1950 o.add(buildCallSet()); | 1950 o.add(buildCallSet()); |
| 1951 o.add(buildCallSet()); | 1951 o.add(buildCallSet()); |
| 1952 return o; | 1952 return o; |
| 1953 } | 1953 } |
| 1954 | 1954 |
| 1955 checkUnnamed2573(core.List<api.CallSet> o) { | 1955 checkUnnamed2699(core.List<api.CallSet> o) { |
| 1956 unittest.expect(o, unittest.hasLength(2)); | 1956 unittest.expect(o, unittest.hasLength(2)); |
| 1957 checkCallSet(o[0]); | 1957 checkCallSet(o[0]); |
| 1958 checkCallSet(o[1]); | 1958 checkCallSet(o[1]); |
| 1959 } | 1959 } |
| 1960 | 1960 |
| 1961 core.int buildCounterSearchCallSetsResponse = 0; | 1961 core.int buildCounterSearchCallSetsResponse = 0; |
| 1962 buildSearchCallSetsResponse() { | 1962 buildSearchCallSetsResponse() { |
| 1963 var o = new api.SearchCallSetsResponse(); | 1963 var o = new api.SearchCallSetsResponse(); |
| 1964 buildCounterSearchCallSetsResponse++; | 1964 buildCounterSearchCallSetsResponse++; |
| 1965 if (buildCounterSearchCallSetsResponse < 3) { | 1965 if (buildCounterSearchCallSetsResponse < 3) { |
| 1966 o.callSets = buildUnnamed2573(); | 1966 o.callSets = buildUnnamed2699(); |
| 1967 o.nextPageToken = "foo"; | 1967 o.nextPageToken = "foo"; |
| 1968 } | 1968 } |
| 1969 buildCounterSearchCallSetsResponse--; | 1969 buildCounterSearchCallSetsResponse--; |
| 1970 return o; | 1970 return o; |
| 1971 } | 1971 } |
| 1972 | 1972 |
| 1973 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { | 1973 checkSearchCallSetsResponse(api.SearchCallSetsResponse o) { |
| 1974 buildCounterSearchCallSetsResponse++; | 1974 buildCounterSearchCallSetsResponse++; |
| 1975 if (buildCounterSearchCallSetsResponse < 3) { | 1975 if (buildCounterSearchCallSetsResponse < 3) { |
| 1976 checkUnnamed2573(o.callSets); | 1976 checkUnnamed2699(o.callSets); |
| 1977 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1977 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1978 } | 1978 } |
| 1979 buildCounterSearchCallSetsResponse--; | 1979 buildCounterSearchCallSetsResponse--; |
| 1980 } | 1980 } |
| 1981 | 1981 |
| 1982 buildUnnamed2574() { | 1982 buildUnnamed2700() { |
| 1983 var o = new core.List<core.String>(); | 1983 var o = new core.List<core.String>(); |
| 1984 o.add("foo"); | 1984 o.add("foo"); |
| 1985 o.add("foo"); | 1985 o.add("foo"); |
| 1986 return o; | 1986 return o; |
| 1987 } | 1987 } |
| 1988 | 1988 |
| 1989 checkUnnamed2574(core.List<core.String> o) { | 1989 checkUnnamed2700(core.List<core.String> o) { |
| 1990 unittest.expect(o, unittest.hasLength(2)); | 1990 unittest.expect(o, unittest.hasLength(2)); |
| 1991 unittest.expect(o[0], unittest.equals('foo')); | 1991 unittest.expect(o[0], unittest.equals('foo')); |
| 1992 unittest.expect(o[1], unittest.equals('foo')); | 1992 unittest.expect(o[1], unittest.equals('foo')); |
| 1993 } | 1993 } |
| 1994 | 1994 |
| 1995 core.int buildCounterSearchReadGroupSetsRequest = 0; | 1995 core.int buildCounterSearchReadGroupSetsRequest = 0; |
| 1996 buildSearchReadGroupSetsRequest() { | 1996 buildSearchReadGroupSetsRequest() { |
| 1997 var o = new api.SearchReadGroupSetsRequest(); | 1997 var o = new api.SearchReadGroupSetsRequest(); |
| 1998 buildCounterSearchReadGroupSetsRequest++; | 1998 buildCounterSearchReadGroupSetsRequest++; |
| 1999 if (buildCounterSearchReadGroupSetsRequest < 3) { | 1999 if (buildCounterSearchReadGroupSetsRequest < 3) { |
| 2000 o.datasetIds = buildUnnamed2574(); | 2000 o.datasetIds = buildUnnamed2700(); |
| 2001 o.name = "foo"; | 2001 o.name = "foo"; |
| 2002 o.pageSize = 42; | 2002 o.pageSize = 42; |
| 2003 o.pageToken = "foo"; | 2003 o.pageToken = "foo"; |
| 2004 } | 2004 } |
| 2005 buildCounterSearchReadGroupSetsRequest--; | 2005 buildCounterSearchReadGroupSetsRequest--; |
| 2006 return o; | 2006 return o; |
| 2007 } | 2007 } |
| 2008 | 2008 |
| 2009 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { | 2009 checkSearchReadGroupSetsRequest(api.SearchReadGroupSetsRequest o) { |
| 2010 buildCounterSearchReadGroupSetsRequest++; | 2010 buildCounterSearchReadGroupSetsRequest++; |
| 2011 if (buildCounterSearchReadGroupSetsRequest < 3) { | 2011 if (buildCounterSearchReadGroupSetsRequest < 3) { |
| 2012 checkUnnamed2574(o.datasetIds); | 2012 checkUnnamed2700(o.datasetIds); |
| 2013 unittest.expect(o.name, unittest.equals('foo')); | 2013 unittest.expect(o.name, unittest.equals('foo')); |
| 2014 unittest.expect(o.pageSize, unittest.equals(42)); | 2014 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2015 unittest.expect(o.pageToken, unittest.equals('foo')); | 2015 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2016 } | 2016 } |
| 2017 buildCounterSearchReadGroupSetsRequest--; | 2017 buildCounterSearchReadGroupSetsRequest--; |
| 2018 } | 2018 } |
| 2019 | 2019 |
| 2020 buildUnnamed2575() { | 2020 buildUnnamed2701() { |
| 2021 var o = new core.List<api.ReadGroupSet>(); | 2021 var o = new core.List<api.ReadGroupSet>(); |
| 2022 o.add(buildReadGroupSet()); | 2022 o.add(buildReadGroupSet()); |
| 2023 o.add(buildReadGroupSet()); | 2023 o.add(buildReadGroupSet()); |
| 2024 return o; | 2024 return o; |
| 2025 } | 2025 } |
| 2026 | 2026 |
| 2027 checkUnnamed2575(core.List<api.ReadGroupSet> o) { | 2027 checkUnnamed2701(core.List<api.ReadGroupSet> o) { |
| 2028 unittest.expect(o, unittest.hasLength(2)); | 2028 unittest.expect(o, unittest.hasLength(2)); |
| 2029 checkReadGroupSet(o[0]); | 2029 checkReadGroupSet(o[0]); |
| 2030 checkReadGroupSet(o[1]); | 2030 checkReadGroupSet(o[1]); |
| 2031 } | 2031 } |
| 2032 | 2032 |
| 2033 core.int buildCounterSearchReadGroupSetsResponse = 0; | 2033 core.int buildCounterSearchReadGroupSetsResponse = 0; |
| 2034 buildSearchReadGroupSetsResponse() { | 2034 buildSearchReadGroupSetsResponse() { |
| 2035 var o = new api.SearchReadGroupSetsResponse(); | 2035 var o = new api.SearchReadGroupSetsResponse(); |
| 2036 buildCounterSearchReadGroupSetsResponse++; | 2036 buildCounterSearchReadGroupSetsResponse++; |
| 2037 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2037 if (buildCounterSearchReadGroupSetsResponse < 3) { |
| 2038 o.nextPageToken = "foo"; | 2038 o.nextPageToken = "foo"; |
| 2039 o.readGroupSets = buildUnnamed2575(); | 2039 o.readGroupSets = buildUnnamed2701(); |
| 2040 } | 2040 } |
| 2041 buildCounterSearchReadGroupSetsResponse--; | 2041 buildCounterSearchReadGroupSetsResponse--; |
| 2042 return o; | 2042 return o; |
| 2043 } | 2043 } |
| 2044 | 2044 |
| 2045 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { | 2045 checkSearchReadGroupSetsResponse(api.SearchReadGroupSetsResponse o) { |
| 2046 buildCounterSearchReadGroupSetsResponse++; | 2046 buildCounterSearchReadGroupSetsResponse++; |
| 2047 if (buildCounterSearchReadGroupSetsResponse < 3) { | 2047 if (buildCounterSearchReadGroupSetsResponse < 3) { |
| 2048 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2048 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2049 checkUnnamed2575(o.readGroupSets); | 2049 checkUnnamed2701(o.readGroupSets); |
| 2050 } | 2050 } |
| 2051 buildCounterSearchReadGroupSetsResponse--; | 2051 buildCounterSearchReadGroupSetsResponse--; |
| 2052 } | 2052 } |
| 2053 | 2053 |
| 2054 buildUnnamed2576() { | 2054 buildUnnamed2702() { |
| 2055 var o = new core.List<core.String>(); | 2055 var o = new core.List<core.String>(); |
| 2056 o.add("foo"); | 2056 o.add("foo"); |
| 2057 o.add("foo"); | 2057 o.add("foo"); |
| 2058 return o; | 2058 return o; |
| 2059 } | 2059 } |
| 2060 | 2060 |
| 2061 checkUnnamed2576(core.List<core.String> o) { | 2061 checkUnnamed2702(core.List<core.String> o) { |
| 2062 unittest.expect(o, unittest.hasLength(2)); | 2062 unittest.expect(o, unittest.hasLength(2)); |
| 2063 unittest.expect(o[0], unittest.equals('foo')); | 2063 unittest.expect(o[0], unittest.equals('foo')); |
| 2064 unittest.expect(o[1], unittest.equals('foo')); | 2064 unittest.expect(o[1], unittest.equals('foo')); |
| 2065 } | 2065 } |
| 2066 | 2066 |
| 2067 buildUnnamed2577() { | 2067 buildUnnamed2703() { |
| 2068 var o = new core.List<core.String>(); | 2068 var o = new core.List<core.String>(); |
| 2069 o.add("foo"); | 2069 o.add("foo"); |
| 2070 o.add("foo"); | 2070 o.add("foo"); |
| 2071 return o; | 2071 return o; |
| 2072 } | 2072 } |
| 2073 | 2073 |
| 2074 checkUnnamed2577(core.List<core.String> o) { | 2074 checkUnnamed2703(core.List<core.String> o) { |
| 2075 unittest.expect(o, unittest.hasLength(2)); | 2075 unittest.expect(o, unittest.hasLength(2)); |
| 2076 unittest.expect(o[0], unittest.equals('foo')); | 2076 unittest.expect(o[0], unittest.equals('foo')); |
| 2077 unittest.expect(o[1], unittest.equals('foo')); | 2077 unittest.expect(o[1], unittest.equals('foo')); |
| 2078 } | 2078 } |
| 2079 | 2079 |
| 2080 core.int buildCounterSearchReadsRequest = 0; | 2080 core.int buildCounterSearchReadsRequest = 0; |
| 2081 buildSearchReadsRequest() { | 2081 buildSearchReadsRequest() { |
| 2082 var o = new api.SearchReadsRequest(); | 2082 var o = new api.SearchReadsRequest(); |
| 2083 buildCounterSearchReadsRequest++; | 2083 buildCounterSearchReadsRequest++; |
| 2084 if (buildCounterSearchReadsRequest < 3) { | 2084 if (buildCounterSearchReadsRequest < 3) { |
| 2085 o.end = "foo"; | 2085 o.end = "foo"; |
| 2086 o.pageSize = 42; | 2086 o.pageSize = 42; |
| 2087 o.pageToken = "foo"; | 2087 o.pageToken = "foo"; |
| 2088 o.readGroupIds = buildUnnamed2576(); | 2088 o.readGroupIds = buildUnnamed2702(); |
| 2089 o.readGroupSetIds = buildUnnamed2577(); | 2089 o.readGroupSetIds = buildUnnamed2703(); |
| 2090 o.referenceName = "foo"; | 2090 o.referenceName = "foo"; |
| 2091 o.start = "foo"; | 2091 o.start = "foo"; |
| 2092 } | 2092 } |
| 2093 buildCounterSearchReadsRequest--; | 2093 buildCounterSearchReadsRequest--; |
| 2094 return o; | 2094 return o; |
| 2095 } | 2095 } |
| 2096 | 2096 |
| 2097 checkSearchReadsRequest(api.SearchReadsRequest o) { | 2097 checkSearchReadsRequest(api.SearchReadsRequest o) { |
| 2098 buildCounterSearchReadsRequest++; | 2098 buildCounterSearchReadsRequest++; |
| 2099 if (buildCounterSearchReadsRequest < 3) { | 2099 if (buildCounterSearchReadsRequest < 3) { |
| 2100 unittest.expect(o.end, unittest.equals('foo')); | 2100 unittest.expect(o.end, unittest.equals('foo')); |
| 2101 unittest.expect(o.pageSize, unittest.equals(42)); | 2101 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2102 unittest.expect(o.pageToken, unittest.equals('foo')); | 2102 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2103 checkUnnamed2576(o.readGroupIds); | 2103 checkUnnamed2702(o.readGroupIds); |
| 2104 checkUnnamed2577(o.readGroupSetIds); | 2104 checkUnnamed2703(o.readGroupSetIds); |
| 2105 unittest.expect(o.referenceName, unittest.equals('foo')); | 2105 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2106 unittest.expect(o.start, unittest.equals('foo')); | 2106 unittest.expect(o.start, unittest.equals('foo')); |
| 2107 } | 2107 } |
| 2108 buildCounterSearchReadsRequest--; | 2108 buildCounterSearchReadsRequest--; |
| 2109 } | 2109 } |
| 2110 | 2110 |
| 2111 buildUnnamed2578() { | 2111 buildUnnamed2704() { |
| 2112 var o = new core.List<api.Read>(); | 2112 var o = new core.List<api.Read>(); |
| 2113 o.add(buildRead()); | 2113 o.add(buildRead()); |
| 2114 o.add(buildRead()); | 2114 o.add(buildRead()); |
| 2115 return o; | 2115 return o; |
| 2116 } | 2116 } |
| 2117 | 2117 |
| 2118 checkUnnamed2578(core.List<api.Read> o) { | 2118 checkUnnamed2704(core.List<api.Read> o) { |
| 2119 unittest.expect(o, unittest.hasLength(2)); | 2119 unittest.expect(o, unittest.hasLength(2)); |
| 2120 checkRead(o[0]); | 2120 checkRead(o[0]); |
| 2121 checkRead(o[1]); | 2121 checkRead(o[1]); |
| 2122 } | 2122 } |
| 2123 | 2123 |
| 2124 core.int buildCounterSearchReadsResponse = 0; | 2124 core.int buildCounterSearchReadsResponse = 0; |
| 2125 buildSearchReadsResponse() { | 2125 buildSearchReadsResponse() { |
| 2126 var o = new api.SearchReadsResponse(); | 2126 var o = new api.SearchReadsResponse(); |
| 2127 buildCounterSearchReadsResponse++; | 2127 buildCounterSearchReadsResponse++; |
| 2128 if (buildCounterSearchReadsResponse < 3) { | 2128 if (buildCounterSearchReadsResponse < 3) { |
| 2129 o.alignments = buildUnnamed2578(); | 2129 o.alignments = buildUnnamed2704(); |
| 2130 o.nextPageToken = "foo"; | 2130 o.nextPageToken = "foo"; |
| 2131 } | 2131 } |
| 2132 buildCounterSearchReadsResponse--; | 2132 buildCounterSearchReadsResponse--; |
| 2133 return o; | 2133 return o; |
| 2134 } | 2134 } |
| 2135 | 2135 |
| 2136 checkSearchReadsResponse(api.SearchReadsResponse o) { | 2136 checkSearchReadsResponse(api.SearchReadsResponse o) { |
| 2137 buildCounterSearchReadsResponse++; | 2137 buildCounterSearchReadsResponse++; |
| 2138 if (buildCounterSearchReadsResponse < 3) { | 2138 if (buildCounterSearchReadsResponse < 3) { |
| 2139 checkUnnamed2578(o.alignments); | 2139 checkUnnamed2704(o.alignments); |
| 2140 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2140 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2141 } | 2141 } |
| 2142 buildCounterSearchReadsResponse--; | 2142 buildCounterSearchReadsResponse--; |
| 2143 } | 2143 } |
| 2144 | 2144 |
| 2145 buildUnnamed2579() { | 2145 buildUnnamed2705() { |
| 2146 var o = new core.List<core.String>(); | 2146 var o = new core.List<core.String>(); |
| 2147 o.add("foo"); | 2147 o.add("foo"); |
| 2148 o.add("foo"); | 2148 o.add("foo"); |
| 2149 return o; | 2149 return o; |
| 2150 } | 2150 } |
| 2151 | 2151 |
| 2152 checkUnnamed2579(core.List<core.String> o) { | 2152 checkUnnamed2705(core.List<core.String> o) { |
| 2153 unittest.expect(o, unittest.hasLength(2)); | 2153 unittest.expect(o, unittest.hasLength(2)); |
| 2154 unittest.expect(o[0], unittest.equals('foo')); | 2154 unittest.expect(o[0], unittest.equals('foo')); |
| 2155 unittest.expect(o[1], unittest.equals('foo')); | 2155 unittest.expect(o[1], unittest.equals('foo')); |
| 2156 } | 2156 } |
| 2157 | 2157 |
| 2158 buildUnnamed2580() { | 2158 buildUnnamed2706() { |
| 2159 var o = new core.List<core.String>(); | 2159 var o = new core.List<core.String>(); |
| 2160 o.add("foo"); | 2160 o.add("foo"); |
| 2161 o.add("foo"); | 2161 o.add("foo"); |
| 2162 return o; | 2162 return o; |
| 2163 } | 2163 } |
| 2164 | 2164 |
| 2165 checkUnnamed2580(core.List<core.String> o) { | 2165 checkUnnamed2706(core.List<core.String> o) { |
| 2166 unittest.expect(o, unittest.hasLength(2)); | 2166 unittest.expect(o, unittest.hasLength(2)); |
| 2167 unittest.expect(o[0], unittest.equals('foo')); | 2167 unittest.expect(o[0], unittest.equals('foo')); |
| 2168 unittest.expect(o[1], unittest.equals('foo')); | 2168 unittest.expect(o[1], unittest.equals('foo')); |
| 2169 } | 2169 } |
| 2170 | 2170 |
| 2171 core.int buildCounterSearchReferenceSetsRequest = 0; | 2171 core.int buildCounterSearchReferenceSetsRequest = 0; |
| 2172 buildSearchReferenceSetsRequest() { | 2172 buildSearchReferenceSetsRequest() { |
| 2173 var o = new api.SearchReferenceSetsRequest(); | 2173 var o = new api.SearchReferenceSetsRequest(); |
| 2174 buildCounterSearchReferenceSetsRequest++; | 2174 buildCounterSearchReferenceSetsRequest++; |
| 2175 if (buildCounterSearchReferenceSetsRequest < 3) { | 2175 if (buildCounterSearchReferenceSetsRequest < 3) { |
| 2176 o.accessions = buildUnnamed2579(); | 2176 o.accessions = buildUnnamed2705(); |
| 2177 o.assemblyId = "foo"; | 2177 o.assemblyId = "foo"; |
| 2178 o.md5checksums = buildUnnamed2580(); | 2178 o.md5checksums = buildUnnamed2706(); |
| 2179 o.pageSize = 42; | 2179 o.pageSize = 42; |
| 2180 o.pageToken = "foo"; | 2180 o.pageToken = "foo"; |
| 2181 } | 2181 } |
| 2182 buildCounterSearchReferenceSetsRequest--; | 2182 buildCounterSearchReferenceSetsRequest--; |
| 2183 return o; | 2183 return o; |
| 2184 } | 2184 } |
| 2185 | 2185 |
| 2186 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { | 2186 checkSearchReferenceSetsRequest(api.SearchReferenceSetsRequest o) { |
| 2187 buildCounterSearchReferenceSetsRequest++; | 2187 buildCounterSearchReferenceSetsRequest++; |
| 2188 if (buildCounterSearchReferenceSetsRequest < 3) { | 2188 if (buildCounterSearchReferenceSetsRequest < 3) { |
| 2189 checkUnnamed2579(o.accessions); | 2189 checkUnnamed2705(o.accessions); |
| 2190 unittest.expect(o.assemblyId, unittest.equals('foo')); | 2190 unittest.expect(o.assemblyId, unittest.equals('foo')); |
| 2191 checkUnnamed2580(o.md5checksums); | 2191 checkUnnamed2706(o.md5checksums); |
| 2192 unittest.expect(o.pageSize, unittest.equals(42)); | 2192 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2193 unittest.expect(o.pageToken, unittest.equals('foo')); | 2193 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2194 } | 2194 } |
| 2195 buildCounterSearchReferenceSetsRequest--; | 2195 buildCounterSearchReferenceSetsRequest--; |
| 2196 } | 2196 } |
| 2197 | 2197 |
| 2198 buildUnnamed2581() { | 2198 buildUnnamed2707() { |
| 2199 var o = new core.List<api.ReferenceSet>(); | 2199 var o = new core.List<api.ReferenceSet>(); |
| 2200 o.add(buildReferenceSet()); | 2200 o.add(buildReferenceSet()); |
| 2201 o.add(buildReferenceSet()); | 2201 o.add(buildReferenceSet()); |
| 2202 return o; | 2202 return o; |
| 2203 } | 2203 } |
| 2204 | 2204 |
| 2205 checkUnnamed2581(core.List<api.ReferenceSet> o) { | 2205 checkUnnamed2707(core.List<api.ReferenceSet> o) { |
| 2206 unittest.expect(o, unittest.hasLength(2)); | 2206 unittest.expect(o, unittest.hasLength(2)); |
| 2207 checkReferenceSet(o[0]); | 2207 checkReferenceSet(o[0]); |
| 2208 checkReferenceSet(o[1]); | 2208 checkReferenceSet(o[1]); |
| 2209 } | 2209 } |
| 2210 | 2210 |
| 2211 core.int buildCounterSearchReferenceSetsResponse = 0; | 2211 core.int buildCounterSearchReferenceSetsResponse = 0; |
| 2212 buildSearchReferenceSetsResponse() { | 2212 buildSearchReferenceSetsResponse() { |
| 2213 var o = new api.SearchReferenceSetsResponse(); | 2213 var o = new api.SearchReferenceSetsResponse(); |
| 2214 buildCounterSearchReferenceSetsResponse++; | 2214 buildCounterSearchReferenceSetsResponse++; |
| 2215 if (buildCounterSearchReferenceSetsResponse < 3) { | 2215 if (buildCounterSearchReferenceSetsResponse < 3) { |
| 2216 o.nextPageToken = "foo"; | 2216 o.nextPageToken = "foo"; |
| 2217 o.referenceSets = buildUnnamed2581(); | 2217 o.referenceSets = buildUnnamed2707(); |
| 2218 } | 2218 } |
| 2219 buildCounterSearchReferenceSetsResponse--; | 2219 buildCounterSearchReferenceSetsResponse--; |
| 2220 return o; | 2220 return o; |
| 2221 } | 2221 } |
| 2222 | 2222 |
| 2223 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { | 2223 checkSearchReferenceSetsResponse(api.SearchReferenceSetsResponse o) { |
| 2224 buildCounterSearchReferenceSetsResponse++; | 2224 buildCounterSearchReferenceSetsResponse++; |
| 2225 if (buildCounterSearchReferenceSetsResponse < 3) { | 2225 if (buildCounterSearchReferenceSetsResponse < 3) { |
| 2226 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2226 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2227 checkUnnamed2581(o.referenceSets); | 2227 checkUnnamed2707(o.referenceSets); |
| 2228 } | 2228 } |
| 2229 buildCounterSearchReferenceSetsResponse--; | 2229 buildCounterSearchReferenceSetsResponse--; |
| 2230 } | 2230 } |
| 2231 | 2231 |
| 2232 buildUnnamed2582() { | 2232 buildUnnamed2708() { |
| 2233 var o = new core.List<core.String>(); | 2233 var o = new core.List<core.String>(); |
| 2234 o.add("foo"); | 2234 o.add("foo"); |
| 2235 o.add("foo"); | 2235 o.add("foo"); |
| 2236 return o; | 2236 return o; |
| 2237 } | 2237 } |
| 2238 | 2238 |
| 2239 checkUnnamed2582(core.List<core.String> o) { | 2239 checkUnnamed2708(core.List<core.String> o) { |
| 2240 unittest.expect(o, unittest.hasLength(2)); | 2240 unittest.expect(o, unittest.hasLength(2)); |
| 2241 unittest.expect(o[0], unittest.equals('foo')); | 2241 unittest.expect(o[0], unittest.equals('foo')); |
| 2242 unittest.expect(o[1], unittest.equals('foo')); | 2242 unittest.expect(o[1], unittest.equals('foo')); |
| 2243 } | 2243 } |
| 2244 | 2244 |
| 2245 buildUnnamed2583() { | 2245 buildUnnamed2709() { |
| 2246 var o = new core.List<core.String>(); | 2246 var o = new core.List<core.String>(); |
| 2247 o.add("foo"); | 2247 o.add("foo"); |
| 2248 o.add("foo"); | 2248 o.add("foo"); |
| 2249 return o; | 2249 return o; |
| 2250 } | 2250 } |
| 2251 | 2251 |
| 2252 checkUnnamed2583(core.List<core.String> o) { | 2252 checkUnnamed2709(core.List<core.String> o) { |
| 2253 unittest.expect(o, unittest.hasLength(2)); | 2253 unittest.expect(o, unittest.hasLength(2)); |
| 2254 unittest.expect(o[0], unittest.equals('foo')); | 2254 unittest.expect(o[0], unittest.equals('foo')); |
| 2255 unittest.expect(o[1], unittest.equals('foo')); | 2255 unittest.expect(o[1], unittest.equals('foo')); |
| 2256 } | 2256 } |
| 2257 | 2257 |
| 2258 core.int buildCounterSearchReferencesRequest = 0; | 2258 core.int buildCounterSearchReferencesRequest = 0; |
| 2259 buildSearchReferencesRequest() { | 2259 buildSearchReferencesRequest() { |
| 2260 var o = new api.SearchReferencesRequest(); | 2260 var o = new api.SearchReferencesRequest(); |
| 2261 buildCounterSearchReferencesRequest++; | 2261 buildCounterSearchReferencesRequest++; |
| 2262 if (buildCounterSearchReferencesRequest < 3) { | 2262 if (buildCounterSearchReferencesRequest < 3) { |
| 2263 o.accessions = buildUnnamed2582(); | 2263 o.accessions = buildUnnamed2708(); |
| 2264 o.md5checksums = buildUnnamed2583(); | 2264 o.md5checksums = buildUnnamed2709(); |
| 2265 o.pageSize = 42; | 2265 o.pageSize = 42; |
| 2266 o.pageToken = "foo"; | 2266 o.pageToken = "foo"; |
| 2267 o.referenceSetId = "foo"; | 2267 o.referenceSetId = "foo"; |
| 2268 } | 2268 } |
| 2269 buildCounterSearchReferencesRequest--; | 2269 buildCounterSearchReferencesRequest--; |
| 2270 return o; | 2270 return o; |
| 2271 } | 2271 } |
| 2272 | 2272 |
| 2273 checkSearchReferencesRequest(api.SearchReferencesRequest o) { | 2273 checkSearchReferencesRequest(api.SearchReferencesRequest o) { |
| 2274 buildCounterSearchReferencesRequest++; | 2274 buildCounterSearchReferencesRequest++; |
| 2275 if (buildCounterSearchReferencesRequest < 3) { | 2275 if (buildCounterSearchReferencesRequest < 3) { |
| 2276 checkUnnamed2582(o.accessions); | 2276 checkUnnamed2708(o.accessions); |
| 2277 checkUnnamed2583(o.md5checksums); | 2277 checkUnnamed2709(o.md5checksums); |
| 2278 unittest.expect(o.pageSize, unittest.equals(42)); | 2278 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2279 unittest.expect(o.pageToken, unittest.equals('foo')); | 2279 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2280 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 2280 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 2281 } | 2281 } |
| 2282 buildCounterSearchReferencesRequest--; | 2282 buildCounterSearchReferencesRequest--; |
| 2283 } | 2283 } |
| 2284 | 2284 |
| 2285 buildUnnamed2584() { | 2285 buildUnnamed2710() { |
| 2286 var o = new core.List<api.Reference>(); | 2286 var o = new core.List<api.Reference>(); |
| 2287 o.add(buildReference()); | 2287 o.add(buildReference()); |
| 2288 o.add(buildReference()); | 2288 o.add(buildReference()); |
| 2289 return o; | 2289 return o; |
| 2290 } | 2290 } |
| 2291 | 2291 |
| 2292 checkUnnamed2584(core.List<api.Reference> o) { | 2292 checkUnnamed2710(core.List<api.Reference> o) { |
| 2293 unittest.expect(o, unittest.hasLength(2)); | 2293 unittest.expect(o, unittest.hasLength(2)); |
| 2294 checkReference(o[0]); | 2294 checkReference(o[0]); |
| 2295 checkReference(o[1]); | 2295 checkReference(o[1]); |
| 2296 } | 2296 } |
| 2297 | 2297 |
| 2298 core.int buildCounterSearchReferencesResponse = 0; | 2298 core.int buildCounterSearchReferencesResponse = 0; |
| 2299 buildSearchReferencesResponse() { | 2299 buildSearchReferencesResponse() { |
| 2300 var o = new api.SearchReferencesResponse(); | 2300 var o = new api.SearchReferencesResponse(); |
| 2301 buildCounterSearchReferencesResponse++; | 2301 buildCounterSearchReferencesResponse++; |
| 2302 if (buildCounterSearchReferencesResponse < 3) { | 2302 if (buildCounterSearchReferencesResponse < 3) { |
| 2303 o.nextPageToken = "foo"; | 2303 o.nextPageToken = "foo"; |
| 2304 o.references = buildUnnamed2584(); | 2304 o.references = buildUnnamed2710(); |
| 2305 } | 2305 } |
| 2306 buildCounterSearchReferencesResponse--; | 2306 buildCounterSearchReferencesResponse--; |
| 2307 return o; | 2307 return o; |
| 2308 } | 2308 } |
| 2309 | 2309 |
| 2310 checkSearchReferencesResponse(api.SearchReferencesResponse o) { | 2310 checkSearchReferencesResponse(api.SearchReferencesResponse o) { |
| 2311 buildCounterSearchReferencesResponse++; | 2311 buildCounterSearchReferencesResponse++; |
| 2312 if (buildCounterSearchReferencesResponse < 3) { | 2312 if (buildCounterSearchReferencesResponse < 3) { |
| 2313 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2313 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2314 checkUnnamed2584(o.references); | 2314 checkUnnamed2710(o.references); |
| 2315 } | 2315 } |
| 2316 buildCounterSearchReferencesResponse--; | 2316 buildCounterSearchReferencesResponse--; |
| 2317 } | 2317 } |
| 2318 | 2318 |
| 2319 buildUnnamed2585() { | 2319 buildUnnamed2711() { |
| 2320 var o = new core.List<core.String>(); | 2320 var o = new core.List<core.String>(); |
| 2321 o.add("foo"); | 2321 o.add("foo"); |
| 2322 o.add("foo"); | 2322 o.add("foo"); |
| 2323 return o; | 2323 return o; |
| 2324 } | 2324 } |
| 2325 | 2325 |
| 2326 checkUnnamed2585(core.List<core.String> o) { | 2326 checkUnnamed2711(core.List<core.String> o) { |
| 2327 unittest.expect(o, unittest.hasLength(2)); | 2327 unittest.expect(o, unittest.hasLength(2)); |
| 2328 unittest.expect(o[0], unittest.equals('foo')); | 2328 unittest.expect(o[0], unittest.equals('foo')); |
| 2329 unittest.expect(o[1], unittest.equals('foo')); | 2329 unittest.expect(o[1], unittest.equals('foo')); |
| 2330 } | 2330 } |
| 2331 | 2331 |
| 2332 core.int buildCounterSearchVariantSetsRequest = 0; | 2332 core.int buildCounterSearchVariantSetsRequest = 0; |
| 2333 buildSearchVariantSetsRequest() { | 2333 buildSearchVariantSetsRequest() { |
| 2334 var o = new api.SearchVariantSetsRequest(); | 2334 var o = new api.SearchVariantSetsRequest(); |
| 2335 buildCounterSearchVariantSetsRequest++; | 2335 buildCounterSearchVariantSetsRequest++; |
| 2336 if (buildCounterSearchVariantSetsRequest < 3) { | 2336 if (buildCounterSearchVariantSetsRequest < 3) { |
| 2337 o.datasetIds = buildUnnamed2585(); | 2337 o.datasetIds = buildUnnamed2711(); |
| 2338 o.pageSize = 42; | 2338 o.pageSize = 42; |
| 2339 o.pageToken = "foo"; | 2339 o.pageToken = "foo"; |
| 2340 } | 2340 } |
| 2341 buildCounterSearchVariantSetsRequest--; | 2341 buildCounterSearchVariantSetsRequest--; |
| 2342 return o; | 2342 return o; |
| 2343 } | 2343 } |
| 2344 | 2344 |
| 2345 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { | 2345 checkSearchVariantSetsRequest(api.SearchVariantSetsRequest o) { |
| 2346 buildCounterSearchVariantSetsRequest++; | 2346 buildCounterSearchVariantSetsRequest++; |
| 2347 if (buildCounterSearchVariantSetsRequest < 3) { | 2347 if (buildCounterSearchVariantSetsRequest < 3) { |
| 2348 checkUnnamed2585(o.datasetIds); | 2348 checkUnnamed2711(o.datasetIds); |
| 2349 unittest.expect(o.pageSize, unittest.equals(42)); | 2349 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2350 unittest.expect(o.pageToken, unittest.equals('foo')); | 2350 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2351 } | 2351 } |
| 2352 buildCounterSearchVariantSetsRequest--; | 2352 buildCounterSearchVariantSetsRequest--; |
| 2353 } | 2353 } |
| 2354 | 2354 |
| 2355 buildUnnamed2586() { | 2355 buildUnnamed2712() { |
| 2356 var o = new core.List<api.VariantSet>(); | 2356 var o = new core.List<api.VariantSet>(); |
| 2357 o.add(buildVariantSet()); | 2357 o.add(buildVariantSet()); |
| 2358 o.add(buildVariantSet()); | 2358 o.add(buildVariantSet()); |
| 2359 return o; | 2359 return o; |
| 2360 } | 2360 } |
| 2361 | 2361 |
| 2362 checkUnnamed2586(core.List<api.VariantSet> o) { | 2362 checkUnnamed2712(core.List<api.VariantSet> o) { |
| 2363 unittest.expect(o, unittest.hasLength(2)); | 2363 unittest.expect(o, unittest.hasLength(2)); |
| 2364 checkVariantSet(o[0]); | 2364 checkVariantSet(o[0]); |
| 2365 checkVariantSet(o[1]); | 2365 checkVariantSet(o[1]); |
| 2366 } | 2366 } |
| 2367 | 2367 |
| 2368 core.int buildCounterSearchVariantSetsResponse = 0; | 2368 core.int buildCounterSearchVariantSetsResponse = 0; |
| 2369 buildSearchVariantSetsResponse() { | 2369 buildSearchVariantSetsResponse() { |
| 2370 var o = new api.SearchVariantSetsResponse(); | 2370 var o = new api.SearchVariantSetsResponse(); |
| 2371 buildCounterSearchVariantSetsResponse++; | 2371 buildCounterSearchVariantSetsResponse++; |
| 2372 if (buildCounterSearchVariantSetsResponse < 3) { | 2372 if (buildCounterSearchVariantSetsResponse < 3) { |
| 2373 o.nextPageToken = "foo"; | 2373 o.nextPageToken = "foo"; |
| 2374 o.variantSets = buildUnnamed2586(); | 2374 o.variantSets = buildUnnamed2712(); |
| 2375 } | 2375 } |
| 2376 buildCounterSearchVariantSetsResponse--; | 2376 buildCounterSearchVariantSetsResponse--; |
| 2377 return o; | 2377 return o; |
| 2378 } | 2378 } |
| 2379 | 2379 |
| 2380 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { | 2380 checkSearchVariantSetsResponse(api.SearchVariantSetsResponse o) { |
| 2381 buildCounterSearchVariantSetsResponse++; | 2381 buildCounterSearchVariantSetsResponse++; |
| 2382 if (buildCounterSearchVariantSetsResponse < 3) { | 2382 if (buildCounterSearchVariantSetsResponse < 3) { |
| 2383 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2383 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2384 checkUnnamed2586(o.variantSets); | 2384 checkUnnamed2712(o.variantSets); |
| 2385 } | 2385 } |
| 2386 buildCounterSearchVariantSetsResponse--; | 2386 buildCounterSearchVariantSetsResponse--; |
| 2387 } | 2387 } |
| 2388 | 2388 |
| 2389 buildUnnamed2587() { | 2389 buildUnnamed2713() { |
| 2390 var o = new core.List<core.String>(); | 2390 var o = new core.List<core.String>(); |
| 2391 o.add("foo"); | 2391 o.add("foo"); |
| 2392 o.add("foo"); | 2392 o.add("foo"); |
| 2393 return o; | 2393 return o; |
| 2394 } | 2394 } |
| 2395 | 2395 |
| 2396 checkUnnamed2587(core.List<core.String> o) { | 2396 checkUnnamed2713(core.List<core.String> o) { |
| 2397 unittest.expect(o, unittest.hasLength(2)); | 2397 unittest.expect(o, unittest.hasLength(2)); |
| 2398 unittest.expect(o[0], unittest.equals('foo')); | 2398 unittest.expect(o[0], unittest.equals('foo')); |
| 2399 unittest.expect(o[1], unittest.equals('foo')); | 2399 unittest.expect(o[1], unittest.equals('foo')); |
| 2400 } | 2400 } |
| 2401 | 2401 |
| 2402 buildUnnamed2588() { | 2402 buildUnnamed2714() { |
| 2403 var o = new core.List<core.String>(); | 2403 var o = new core.List<core.String>(); |
| 2404 o.add("foo"); | 2404 o.add("foo"); |
| 2405 o.add("foo"); | 2405 o.add("foo"); |
| 2406 return o; | 2406 return o; |
| 2407 } | 2407 } |
| 2408 | 2408 |
| 2409 checkUnnamed2588(core.List<core.String> o) { | 2409 checkUnnamed2714(core.List<core.String> o) { |
| 2410 unittest.expect(o, unittest.hasLength(2)); | 2410 unittest.expect(o, unittest.hasLength(2)); |
| 2411 unittest.expect(o[0], unittest.equals('foo')); | 2411 unittest.expect(o[0], unittest.equals('foo')); |
| 2412 unittest.expect(o[1], unittest.equals('foo')); | 2412 unittest.expect(o[1], unittest.equals('foo')); |
| 2413 } | 2413 } |
| 2414 | 2414 |
| 2415 core.int buildCounterSearchVariantsRequest = 0; | 2415 core.int buildCounterSearchVariantsRequest = 0; |
| 2416 buildSearchVariantsRequest() { | 2416 buildSearchVariantsRequest() { |
| 2417 var o = new api.SearchVariantsRequest(); | 2417 var o = new api.SearchVariantsRequest(); |
| 2418 buildCounterSearchVariantsRequest++; | 2418 buildCounterSearchVariantsRequest++; |
| 2419 if (buildCounterSearchVariantsRequest < 3) { | 2419 if (buildCounterSearchVariantsRequest < 3) { |
| 2420 o.callSetIds = buildUnnamed2587(); | 2420 o.callSetIds = buildUnnamed2713(); |
| 2421 o.end = "foo"; | 2421 o.end = "foo"; |
| 2422 o.maxCalls = 42; | 2422 o.maxCalls = 42; |
| 2423 o.pageSize = 42; | 2423 o.pageSize = 42; |
| 2424 o.pageToken = "foo"; | 2424 o.pageToken = "foo"; |
| 2425 o.referenceName = "foo"; | 2425 o.referenceName = "foo"; |
| 2426 o.start = "foo"; | 2426 o.start = "foo"; |
| 2427 o.variantName = "foo"; | 2427 o.variantName = "foo"; |
| 2428 o.variantSetIds = buildUnnamed2588(); | 2428 o.variantSetIds = buildUnnamed2714(); |
| 2429 } | 2429 } |
| 2430 buildCounterSearchVariantsRequest--; | 2430 buildCounterSearchVariantsRequest--; |
| 2431 return o; | 2431 return o; |
| 2432 } | 2432 } |
| 2433 | 2433 |
| 2434 checkSearchVariantsRequest(api.SearchVariantsRequest o) { | 2434 checkSearchVariantsRequest(api.SearchVariantsRequest o) { |
| 2435 buildCounterSearchVariantsRequest++; | 2435 buildCounterSearchVariantsRequest++; |
| 2436 if (buildCounterSearchVariantsRequest < 3) { | 2436 if (buildCounterSearchVariantsRequest < 3) { |
| 2437 checkUnnamed2587(o.callSetIds); | 2437 checkUnnamed2713(o.callSetIds); |
| 2438 unittest.expect(o.end, unittest.equals('foo')); | 2438 unittest.expect(o.end, unittest.equals('foo')); |
| 2439 unittest.expect(o.maxCalls, unittest.equals(42)); | 2439 unittest.expect(o.maxCalls, unittest.equals(42)); |
| 2440 unittest.expect(o.pageSize, unittest.equals(42)); | 2440 unittest.expect(o.pageSize, unittest.equals(42)); |
| 2441 unittest.expect(o.pageToken, unittest.equals('foo')); | 2441 unittest.expect(o.pageToken, unittest.equals('foo')); |
| 2442 unittest.expect(o.referenceName, unittest.equals('foo')); | 2442 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2443 unittest.expect(o.start, unittest.equals('foo')); | 2443 unittest.expect(o.start, unittest.equals('foo')); |
| 2444 unittest.expect(o.variantName, unittest.equals('foo')); | 2444 unittest.expect(o.variantName, unittest.equals('foo')); |
| 2445 checkUnnamed2588(o.variantSetIds); | 2445 checkUnnamed2714(o.variantSetIds); |
| 2446 } | 2446 } |
| 2447 buildCounterSearchVariantsRequest--; | 2447 buildCounterSearchVariantsRequest--; |
| 2448 } | 2448 } |
| 2449 | 2449 |
| 2450 buildUnnamed2589() { | 2450 buildUnnamed2715() { |
| 2451 var o = new core.List<api.Variant>(); | 2451 var o = new core.List<api.Variant>(); |
| 2452 o.add(buildVariant()); | 2452 o.add(buildVariant()); |
| 2453 o.add(buildVariant()); | 2453 o.add(buildVariant()); |
| 2454 return o; | 2454 return o; |
| 2455 } | 2455 } |
| 2456 | 2456 |
| 2457 checkUnnamed2589(core.List<api.Variant> o) { | 2457 checkUnnamed2715(core.List<api.Variant> o) { |
| 2458 unittest.expect(o, unittest.hasLength(2)); | 2458 unittest.expect(o, unittest.hasLength(2)); |
| 2459 checkVariant(o[0]); | 2459 checkVariant(o[0]); |
| 2460 checkVariant(o[1]); | 2460 checkVariant(o[1]); |
| 2461 } | 2461 } |
| 2462 | 2462 |
| 2463 core.int buildCounterSearchVariantsResponse = 0; | 2463 core.int buildCounterSearchVariantsResponse = 0; |
| 2464 buildSearchVariantsResponse() { | 2464 buildSearchVariantsResponse() { |
| 2465 var o = new api.SearchVariantsResponse(); | 2465 var o = new api.SearchVariantsResponse(); |
| 2466 buildCounterSearchVariantsResponse++; | 2466 buildCounterSearchVariantsResponse++; |
| 2467 if (buildCounterSearchVariantsResponse < 3) { | 2467 if (buildCounterSearchVariantsResponse < 3) { |
| 2468 o.nextPageToken = "foo"; | 2468 o.nextPageToken = "foo"; |
| 2469 o.variants = buildUnnamed2589(); | 2469 o.variants = buildUnnamed2715(); |
| 2470 } | 2470 } |
| 2471 buildCounterSearchVariantsResponse--; | 2471 buildCounterSearchVariantsResponse--; |
| 2472 return o; | 2472 return o; |
| 2473 } | 2473 } |
| 2474 | 2474 |
| 2475 checkSearchVariantsResponse(api.SearchVariantsResponse o) { | 2475 checkSearchVariantsResponse(api.SearchVariantsResponse o) { |
| 2476 buildCounterSearchVariantsResponse++; | 2476 buildCounterSearchVariantsResponse++; |
| 2477 if (buildCounterSearchVariantsResponse < 3) { | 2477 if (buildCounterSearchVariantsResponse < 3) { |
| 2478 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2478 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2479 checkUnnamed2589(o.variants); | 2479 checkUnnamed2715(o.variants); |
| 2480 } | 2480 } |
| 2481 buildCounterSearchVariantsResponse--; | 2481 buildCounterSearchVariantsResponse--; |
| 2482 } | 2482 } |
| 2483 | 2483 |
| 2484 core.int buildCounterSetIamPolicyRequest = 0; | 2484 core.int buildCounterSetIamPolicyRequest = 0; |
| 2485 buildSetIamPolicyRequest() { | 2485 buildSetIamPolicyRequest() { |
| 2486 var o = new api.SetIamPolicyRequest(); | 2486 var o = new api.SetIamPolicyRequest(); |
| 2487 buildCounterSetIamPolicyRequest++; | 2487 buildCounterSetIamPolicyRequest++; |
| 2488 if (buildCounterSetIamPolicyRequest < 3) { | 2488 if (buildCounterSetIamPolicyRequest < 3) { |
| 2489 o.policy = buildPolicy(); | 2489 o.policy = buildPolicy(); |
| 2490 } | 2490 } |
| 2491 buildCounterSetIamPolicyRequest--; | 2491 buildCounterSetIamPolicyRequest--; |
| 2492 return o; | 2492 return o; |
| 2493 } | 2493 } |
| 2494 | 2494 |
| 2495 checkSetIamPolicyRequest(api.SetIamPolicyRequest o) { | 2495 checkSetIamPolicyRequest(api.SetIamPolicyRequest o) { |
| 2496 buildCounterSetIamPolicyRequest++; | 2496 buildCounterSetIamPolicyRequest++; |
| 2497 if (buildCounterSetIamPolicyRequest < 3) { | 2497 if (buildCounterSetIamPolicyRequest < 3) { |
| 2498 checkPolicy(o.policy); | 2498 checkPolicy(o.policy); |
| 2499 } | 2499 } |
| 2500 buildCounterSetIamPolicyRequest--; | 2500 buildCounterSetIamPolicyRequest--; |
| 2501 } | 2501 } |
| 2502 | 2502 |
| 2503 buildUnnamed2590() { | 2503 buildUnnamed2716() { |
| 2504 var o = new core.Map<core.String, core.Object>(); | 2504 var o = new core.Map<core.String, core.Object>(); |
| 2505 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 2505 o["x"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 2506 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; | 2506 o["y"] = {'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}; |
| 2507 return o; | 2507 return o; |
| 2508 } | 2508 } |
| 2509 | 2509 |
| 2510 checkUnnamed2590(core.Map<core.String, core.Object> o) { | 2510 checkUnnamed2716(core.Map<core.String, core.Object> o) { |
| 2511 unittest.expect(o, unittest.hasLength(2)); | 2511 unittest.expect(o, unittest.hasLength(2)); |
| 2512 var casted21 = (o["x"]) as core.Map; unittest.expect(casted21, unittest.hasLen
gth(3)); unittest.expect(casted21["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted21["bool"], unittest.equals(true)); unittest.expect(casted21["stri
ng"], unittest.equals('foo')); | 2512 var casted21 = (o["x"]) as core.Map; unittest.expect(casted21, unittest.hasLen
gth(3)); unittest.expect(casted21["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted21["bool"], unittest.equals(true)); unittest.expect(casted21["stri
ng"], unittest.equals('foo')); |
| 2513 var casted22 = (o["y"]) as core.Map; unittest.expect(casted22, unittest.hasLen
gth(3)); unittest.expect(casted22["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted22["bool"], unittest.equals(true)); unittest.expect(casted22["stri
ng"], unittest.equals('foo')); | 2513 var casted22 = (o["y"]) as core.Map; unittest.expect(casted22, unittest.hasLen
gth(3)); unittest.expect(casted22["list"], unittest.equals([1, 2, 3])); unittest
.expect(casted22["bool"], unittest.equals(true)); unittest.expect(casted22["stri
ng"], unittest.equals('foo')); |
| 2514 } | 2514 } |
| 2515 | 2515 |
| 2516 buildUnnamed2591() { | 2516 buildUnnamed2717() { |
| 2517 var o = new core.List<core.Map<core.String, core.Object>>(); | 2517 var o = new core.List<core.Map<core.String, core.Object>>(); |
| 2518 o.add(buildUnnamed2590()); | 2518 o.add(buildUnnamed2716()); |
| 2519 o.add(buildUnnamed2590()); | 2519 o.add(buildUnnamed2716()); |
| 2520 return o; | 2520 return o; |
| 2521 } | 2521 } |
| 2522 | 2522 |
| 2523 checkUnnamed2591(core.List<core.Map<core.String, core.Object>> o) { | 2523 checkUnnamed2717(core.List<core.Map<core.String, core.Object>> o) { |
| 2524 unittest.expect(o, unittest.hasLength(2)); | 2524 unittest.expect(o, unittest.hasLength(2)); |
| 2525 checkUnnamed2590(o[0]); | 2525 checkUnnamed2716(o[0]); |
| 2526 checkUnnamed2590(o[1]); | 2526 checkUnnamed2716(o[1]); |
| 2527 } | 2527 } |
| 2528 | 2528 |
| 2529 core.int buildCounterStatus = 0; | 2529 core.int buildCounterStatus = 0; |
| 2530 buildStatus() { | 2530 buildStatus() { |
| 2531 var o = new api.Status(); | 2531 var o = new api.Status(); |
| 2532 buildCounterStatus++; | 2532 buildCounterStatus++; |
| 2533 if (buildCounterStatus < 3) { | 2533 if (buildCounterStatus < 3) { |
| 2534 o.code = 42; | 2534 o.code = 42; |
| 2535 o.details = buildUnnamed2591(); | 2535 o.details = buildUnnamed2717(); |
| 2536 o.message = "foo"; | 2536 o.message = "foo"; |
| 2537 } | 2537 } |
| 2538 buildCounterStatus--; | 2538 buildCounterStatus--; |
| 2539 return o; | 2539 return o; |
| 2540 } | 2540 } |
| 2541 | 2541 |
| 2542 checkStatus(api.Status o) { | 2542 checkStatus(api.Status o) { |
| 2543 buildCounterStatus++; | 2543 buildCounterStatus++; |
| 2544 if (buildCounterStatus < 3) { | 2544 if (buildCounterStatus < 3) { |
| 2545 unittest.expect(o.code, unittest.equals(42)); | 2545 unittest.expect(o.code, unittest.equals(42)); |
| 2546 checkUnnamed2591(o.details); | 2546 checkUnnamed2717(o.details); |
| 2547 unittest.expect(o.message, unittest.equals('foo')); | 2547 unittest.expect(o.message, unittest.equals('foo')); |
| 2548 } | 2548 } |
| 2549 buildCounterStatus--; | 2549 buildCounterStatus--; |
| 2550 } | 2550 } |
| 2551 | 2551 |
| 2552 core.int buildCounterStreamReadsRequest = 0; | 2552 core.int buildCounterStreamReadsRequest = 0; |
| 2553 buildStreamReadsRequest() { | 2553 buildStreamReadsRequest() { |
| 2554 var o = new api.StreamReadsRequest(); | 2554 var o = new api.StreamReadsRequest(); |
| 2555 buildCounterStreamReadsRequest++; | 2555 buildCounterStreamReadsRequest++; |
| 2556 if (buildCounterStreamReadsRequest < 3) { | 2556 if (buildCounterStreamReadsRequest < 3) { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2573 unittest.expect(o.projectId, unittest.equals('foo')); | 2573 unittest.expect(o.projectId, unittest.equals('foo')); |
| 2574 unittest.expect(o.readGroupSetId, unittest.equals('foo')); | 2574 unittest.expect(o.readGroupSetId, unittest.equals('foo')); |
| 2575 unittest.expect(o.referenceName, unittest.equals('foo')); | 2575 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2576 unittest.expect(o.shard, unittest.equals(42)); | 2576 unittest.expect(o.shard, unittest.equals(42)); |
| 2577 unittest.expect(o.start, unittest.equals('foo')); | 2577 unittest.expect(o.start, unittest.equals('foo')); |
| 2578 unittest.expect(o.totalShards, unittest.equals(42)); | 2578 unittest.expect(o.totalShards, unittest.equals(42)); |
| 2579 } | 2579 } |
| 2580 buildCounterStreamReadsRequest--; | 2580 buildCounterStreamReadsRequest--; |
| 2581 } | 2581 } |
| 2582 | 2582 |
| 2583 buildUnnamed2592() { | 2583 buildUnnamed2718() { |
| 2584 var o = new core.List<api.Read>(); | 2584 var o = new core.List<api.Read>(); |
| 2585 o.add(buildRead()); | 2585 o.add(buildRead()); |
| 2586 o.add(buildRead()); | 2586 o.add(buildRead()); |
| 2587 return o; | 2587 return o; |
| 2588 } | 2588 } |
| 2589 | 2589 |
| 2590 checkUnnamed2592(core.List<api.Read> o) { | 2590 checkUnnamed2718(core.List<api.Read> o) { |
| 2591 unittest.expect(o, unittest.hasLength(2)); | 2591 unittest.expect(o, unittest.hasLength(2)); |
| 2592 checkRead(o[0]); | 2592 checkRead(o[0]); |
| 2593 checkRead(o[1]); | 2593 checkRead(o[1]); |
| 2594 } | 2594 } |
| 2595 | 2595 |
| 2596 core.int buildCounterStreamReadsResponse = 0; | 2596 core.int buildCounterStreamReadsResponse = 0; |
| 2597 buildStreamReadsResponse() { | 2597 buildStreamReadsResponse() { |
| 2598 var o = new api.StreamReadsResponse(); | 2598 var o = new api.StreamReadsResponse(); |
| 2599 buildCounterStreamReadsResponse++; | 2599 buildCounterStreamReadsResponse++; |
| 2600 if (buildCounterStreamReadsResponse < 3) { | 2600 if (buildCounterStreamReadsResponse < 3) { |
| 2601 o.alignments = buildUnnamed2592(); | 2601 o.alignments = buildUnnamed2718(); |
| 2602 } | 2602 } |
| 2603 buildCounterStreamReadsResponse--; | 2603 buildCounterStreamReadsResponse--; |
| 2604 return o; | 2604 return o; |
| 2605 } | 2605 } |
| 2606 | 2606 |
| 2607 checkStreamReadsResponse(api.StreamReadsResponse o) { | 2607 checkStreamReadsResponse(api.StreamReadsResponse o) { |
| 2608 buildCounterStreamReadsResponse++; | 2608 buildCounterStreamReadsResponse++; |
| 2609 if (buildCounterStreamReadsResponse < 3) { | 2609 if (buildCounterStreamReadsResponse < 3) { |
| 2610 checkUnnamed2592(o.alignments); | 2610 checkUnnamed2718(o.alignments); |
| 2611 } | 2611 } |
| 2612 buildCounterStreamReadsResponse--; | 2612 buildCounterStreamReadsResponse--; |
| 2613 } | 2613 } |
| 2614 | 2614 |
| 2615 buildUnnamed2593() { | 2615 buildUnnamed2719() { |
| 2616 var o = new core.List<core.String>(); | 2616 var o = new core.List<core.String>(); |
| 2617 o.add("foo"); | 2617 o.add("foo"); |
| 2618 o.add("foo"); | 2618 o.add("foo"); |
| 2619 return o; | 2619 return o; |
| 2620 } | 2620 } |
| 2621 | 2621 |
| 2622 checkUnnamed2593(core.List<core.String> o) { | 2622 checkUnnamed2719(core.List<core.String> o) { |
| 2623 unittest.expect(o, unittest.hasLength(2)); | 2623 unittest.expect(o, unittest.hasLength(2)); |
| 2624 unittest.expect(o[0], unittest.equals('foo')); | 2624 unittest.expect(o[0], unittest.equals('foo')); |
| 2625 unittest.expect(o[1], unittest.equals('foo')); | 2625 unittest.expect(o[1], unittest.equals('foo')); |
| 2626 } | 2626 } |
| 2627 | 2627 |
| 2628 core.int buildCounterStreamVariantsRequest = 0; | 2628 core.int buildCounterStreamVariantsRequest = 0; |
| 2629 buildStreamVariantsRequest() { | 2629 buildStreamVariantsRequest() { |
| 2630 var o = new api.StreamVariantsRequest(); | 2630 var o = new api.StreamVariantsRequest(); |
| 2631 buildCounterStreamVariantsRequest++; | 2631 buildCounterStreamVariantsRequest++; |
| 2632 if (buildCounterStreamVariantsRequest < 3) { | 2632 if (buildCounterStreamVariantsRequest < 3) { |
| 2633 o.callSetIds = buildUnnamed2593(); | 2633 o.callSetIds = buildUnnamed2719(); |
| 2634 o.end = "foo"; | 2634 o.end = "foo"; |
| 2635 o.projectId = "foo"; | 2635 o.projectId = "foo"; |
| 2636 o.referenceName = "foo"; | 2636 o.referenceName = "foo"; |
| 2637 o.start = "foo"; | 2637 o.start = "foo"; |
| 2638 o.variantSetId = "foo"; | 2638 o.variantSetId = "foo"; |
| 2639 } | 2639 } |
| 2640 buildCounterStreamVariantsRequest--; | 2640 buildCounterStreamVariantsRequest--; |
| 2641 return o; | 2641 return o; |
| 2642 } | 2642 } |
| 2643 | 2643 |
| 2644 checkStreamVariantsRequest(api.StreamVariantsRequest o) { | 2644 checkStreamVariantsRequest(api.StreamVariantsRequest o) { |
| 2645 buildCounterStreamVariantsRequest++; | 2645 buildCounterStreamVariantsRequest++; |
| 2646 if (buildCounterStreamVariantsRequest < 3) { | 2646 if (buildCounterStreamVariantsRequest < 3) { |
| 2647 checkUnnamed2593(o.callSetIds); | 2647 checkUnnamed2719(o.callSetIds); |
| 2648 unittest.expect(o.end, unittest.equals('foo')); | 2648 unittest.expect(o.end, unittest.equals('foo')); |
| 2649 unittest.expect(o.projectId, unittest.equals('foo')); | 2649 unittest.expect(o.projectId, unittest.equals('foo')); |
| 2650 unittest.expect(o.referenceName, unittest.equals('foo')); | 2650 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2651 unittest.expect(o.start, unittest.equals('foo')); | 2651 unittest.expect(o.start, unittest.equals('foo')); |
| 2652 unittest.expect(o.variantSetId, unittest.equals('foo')); | 2652 unittest.expect(o.variantSetId, unittest.equals('foo')); |
| 2653 } | 2653 } |
| 2654 buildCounterStreamVariantsRequest--; | 2654 buildCounterStreamVariantsRequest--; |
| 2655 } | 2655 } |
| 2656 | 2656 |
| 2657 buildUnnamed2594() { | 2657 buildUnnamed2720() { |
| 2658 var o = new core.List<api.Variant>(); | 2658 var o = new core.List<api.Variant>(); |
| 2659 o.add(buildVariant()); | 2659 o.add(buildVariant()); |
| 2660 o.add(buildVariant()); | 2660 o.add(buildVariant()); |
| 2661 return o; | 2661 return o; |
| 2662 } | 2662 } |
| 2663 | 2663 |
| 2664 checkUnnamed2594(core.List<api.Variant> o) { | 2664 checkUnnamed2720(core.List<api.Variant> o) { |
| 2665 unittest.expect(o, unittest.hasLength(2)); | 2665 unittest.expect(o, unittest.hasLength(2)); |
| 2666 checkVariant(o[0]); | 2666 checkVariant(o[0]); |
| 2667 checkVariant(o[1]); | 2667 checkVariant(o[1]); |
| 2668 } | 2668 } |
| 2669 | 2669 |
| 2670 core.int buildCounterStreamVariantsResponse = 0; | 2670 core.int buildCounterStreamVariantsResponse = 0; |
| 2671 buildStreamVariantsResponse() { | 2671 buildStreamVariantsResponse() { |
| 2672 var o = new api.StreamVariantsResponse(); | 2672 var o = new api.StreamVariantsResponse(); |
| 2673 buildCounterStreamVariantsResponse++; | 2673 buildCounterStreamVariantsResponse++; |
| 2674 if (buildCounterStreamVariantsResponse < 3) { | 2674 if (buildCounterStreamVariantsResponse < 3) { |
| 2675 o.variants = buildUnnamed2594(); | 2675 o.variants = buildUnnamed2720(); |
| 2676 } | 2676 } |
| 2677 buildCounterStreamVariantsResponse--; | 2677 buildCounterStreamVariantsResponse--; |
| 2678 return o; | 2678 return o; |
| 2679 } | 2679 } |
| 2680 | 2680 |
| 2681 checkStreamVariantsResponse(api.StreamVariantsResponse o) { | 2681 checkStreamVariantsResponse(api.StreamVariantsResponse o) { |
| 2682 buildCounterStreamVariantsResponse++; | 2682 buildCounterStreamVariantsResponse++; |
| 2683 if (buildCounterStreamVariantsResponse < 3) { | 2683 if (buildCounterStreamVariantsResponse < 3) { |
| 2684 checkUnnamed2594(o.variants); | 2684 checkUnnamed2720(o.variants); |
| 2685 } | 2685 } |
| 2686 buildCounterStreamVariantsResponse--; | 2686 buildCounterStreamVariantsResponse--; |
| 2687 } | 2687 } |
| 2688 | 2688 |
| 2689 buildUnnamed2595() { | 2689 buildUnnamed2721() { |
| 2690 var o = new core.List<core.String>(); | 2690 var o = new core.List<core.String>(); |
| 2691 o.add("foo"); | 2691 o.add("foo"); |
| 2692 o.add("foo"); | 2692 o.add("foo"); |
| 2693 return o; | 2693 return o; |
| 2694 } | 2694 } |
| 2695 | 2695 |
| 2696 checkUnnamed2595(core.List<core.String> o) { | 2696 checkUnnamed2721(core.List<core.String> o) { |
| 2697 unittest.expect(o, unittest.hasLength(2)); | 2697 unittest.expect(o, unittest.hasLength(2)); |
| 2698 unittest.expect(o[0], unittest.equals('foo')); | 2698 unittest.expect(o[0], unittest.equals('foo')); |
| 2699 unittest.expect(o[1], unittest.equals('foo')); | 2699 unittest.expect(o[1], unittest.equals('foo')); |
| 2700 } | 2700 } |
| 2701 | 2701 |
| 2702 core.int buildCounterTestIamPermissionsRequest = 0; | 2702 core.int buildCounterTestIamPermissionsRequest = 0; |
| 2703 buildTestIamPermissionsRequest() { | 2703 buildTestIamPermissionsRequest() { |
| 2704 var o = new api.TestIamPermissionsRequest(); | 2704 var o = new api.TestIamPermissionsRequest(); |
| 2705 buildCounterTestIamPermissionsRequest++; | 2705 buildCounterTestIamPermissionsRequest++; |
| 2706 if (buildCounterTestIamPermissionsRequest < 3) { | 2706 if (buildCounterTestIamPermissionsRequest < 3) { |
| 2707 o.permissions = buildUnnamed2595(); | 2707 o.permissions = buildUnnamed2721(); |
| 2708 } | 2708 } |
| 2709 buildCounterTestIamPermissionsRequest--; | 2709 buildCounterTestIamPermissionsRequest--; |
| 2710 return o; | 2710 return o; |
| 2711 } | 2711 } |
| 2712 | 2712 |
| 2713 checkTestIamPermissionsRequest(api.TestIamPermissionsRequest o) { | 2713 checkTestIamPermissionsRequest(api.TestIamPermissionsRequest o) { |
| 2714 buildCounterTestIamPermissionsRequest++; | 2714 buildCounterTestIamPermissionsRequest++; |
| 2715 if (buildCounterTestIamPermissionsRequest < 3) { | 2715 if (buildCounterTestIamPermissionsRequest < 3) { |
| 2716 checkUnnamed2595(o.permissions); | 2716 checkUnnamed2721(o.permissions); |
| 2717 } | 2717 } |
| 2718 buildCounterTestIamPermissionsRequest--; | 2718 buildCounterTestIamPermissionsRequest--; |
| 2719 } | 2719 } |
| 2720 | 2720 |
| 2721 buildUnnamed2596() { | 2721 buildUnnamed2722() { |
| 2722 var o = new core.List<core.String>(); | 2722 var o = new core.List<core.String>(); |
| 2723 o.add("foo"); | 2723 o.add("foo"); |
| 2724 o.add("foo"); | 2724 o.add("foo"); |
| 2725 return o; | 2725 return o; |
| 2726 } | 2726 } |
| 2727 | 2727 |
| 2728 checkUnnamed2596(core.List<core.String> o) { | 2728 checkUnnamed2722(core.List<core.String> o) { |
| 2729 unittest.expect(o, unittest.hasLength(2)); | 2729 unittest.expect(o, unittest.hasLength(2)); |
| 2730 unittest.expect(o[0], unittest.equals('foo')); | 2730 unittest.expect(o[0], unittest.equals('foo')); |
| 2731 unittest.expect(o[1], unittest.equals('foo')); | 2731 unittest.expect(o[1], unittest.equals('foo')); |
| 2732 } | 2732 } |
| 2733 | 2733 |
| 2734 core.int buildCounterTestIamPermissionsResponse = 0; | 2734 core.int buildCounterTestIamPermissionsResponse = 0; |
| 2735 buildTestIamPermissionsResponse() { | 2735 buildTestIamPermissionsResponse() { |
| 2736 var o = new api.TestIamPermissionsResponse(); | 2736 var o = new api.TestIamPermissionsResponse(); |
| 2737 buildCounterTestIamPermissionsResponse++; | 2737 buildCounterTestIamPermissionsResponse++; |
| 2738 if (buildCounterTestIamPermissionsResponse < 3) { | 2738 if (buildCounterTestIamPermissionsResponse < 3) { |
| 2739 o.permissions = buildUnnamed2596(); | 2739 o.permissions = buildUnnamed2722(); |
| 2740 } | 2740 } |
| 2741 buildCounterTestIamPermissionsResponse--; | 2741 buildCounterTestIamPermissionsResponse--; |
| 2742 return o; | 2742 return o; |
| 2743 } | 2743 } |
| 2744 | 2744 |
| 2745 checkTestIamPermissionsResponse(api.TestIamPermissionsResponse o) { | 2745 checkTestIamPermissionsResponse(api.TestIamPermissionsResponse o) { |
| 2746 buildCounterTestIamPermissionsResponse++; | 2746 buildCounterTestIamPermissionsResponse++; |
| 2747 if (buildCounterTestIamPermissionsResponse < 3) { | 2747 if (buildCounterTestIamPermissionsResponse < 3) { |
| 2748 checkUnnamed2596(o.permissions); | 2748 checkUnnamed2722(o.permissions); |
| 2749 } | 2749 } |
| 2750 buildCounterTestIamPermissionsResponse--; | 2750 buildCounterTestIamPermissionsResponse--; |
| 2751 } | 2751 } |
| 2752 | 2752 |
| 2753 buildUnnamed2597() { | 2753 buildUnnamed2723() { |
| 2754 var o = new core.List<api.Exon>(); | 2754 var o = new core.List<api.Exon>(); |
| 2755 o.add(buildExon()); | 2755 o.add(buildExon()); |
| 2756 o.add(buildExon()); | 2756 o.add(buildExon()); |
| 2757 return o; | 2757 return o; |
| 2758 } | 2758 } |
| 2759 | 2759 |
| 2760 checkUnnamed2597(core.List<api.Exon> o) { | 2760 checkUnnamed2723(core.List<api.Exon> o) { |
| 2761 unittest.expect(o, unittest.hasLength(2)); | 2761 unittest.expect(o, unittest.hasLength(2)); |
| 2762 checkExon(o[0]); | 2762 checkExon(o[0]); |
| 2763 checkExon(o[1]); | 2763 checkExon(o[1]); |
| 2764 } | 2764 } |
| 2765 | 2765 |
| 2766 core.int buildCounterTranscript = 0; | 2766 core.int buildCounterTranscript = 0; |
| 2767 buildTranscript() { | 2767 buildTranscript() { |
| 2768 var o = new api.Transcript(); | 2768 var o = new api.Transcript(); |
| 2769 buildCounterTranscript++; | 2769 buildCounterTranscript++; |
| 2770 if (buildCounterTranscript < 3) { | 2770 if (buildCounterTranscript < 3) { |
| 2771 o.codingSequence = buildCodingSequence(); | 2771 o.codingSequence = buildCodingSequence(); |
| 2772 o.exons = buildUnnamed2597(); | 2772 o.exons = buildUnnamed2723(); |
| 2773 o.geneId = "foo"; | 2773 o.geneId = "foo"; |
| 2774 } | 2774 } |
| 2775 buildCounterTranscript--; | 2775 buildCounterTranscript--; |
| 2776 return o; | 2776 return o; |
| 2777 } | 2777 } |
| 2778 | 2778 |
| 2779 checkTranscript(api.Transcript o) { | 2779 checkTranscript(api.Transcript o) { |
| 2780 buildCounterTranscript++; | 2780 buildCounterTranscript++; |
| 2781 if (buildCounterTranscript < 3) { | 2781 if (buildCounterTranscript < 3) { |
| 2782 checkCodingSequence(o.codingSequence); | 2782 checkCodingSequence(o.codingSequence); |
| 2783 checkUnnamed2597(o.exons); | 2783 checkUnnamed2723(o.exons); |
| 2784 unittest.expect(o.geneId, unittest.equals('foo')); | 2784 unittest.expect(o.geneId, unittest.equals('foo')); |
| 2785 } | 2785 } |
| 2786 buildCounterTranscript--; | 2786 buildCounterTranscript--; |
| 2787 } | 2787 } |
| 2788 | 2788 |
| 2789 core.int buildCounterUndeleteDatasetRequest = 0; | 2789 core.int buildCounterUndeleteDatasetRequest = 0; |
| 2790 buildUndeleteDatasetRequest() { | 2790 buildUndeleteDatasetRequest() { |
| 2791 var o = new api.UndeleteDatasetRequest(); | 2791 var o = new api.UndeleteDatasetRequest(); |
| 2792 buildCounterUndeleteDatasetRequest++; | 2792 buildCounterUndeleteDatasetRequest++; |
| 2793 if (buildCounterUndeleteDatasetRequest < 3) { | 2793 if (buildCounterUndeleteDatasetRequest < 3) { |
| 2794 } | 2794 } |
| 2795 buildCounterUndeleteDatasetRequest--; | 2795 buildCounterUndeleteDatasetRequest--; |
| 2796 return o; | 2796 return o; |
| 2797 } | 2797 } |
| 2798 | 2798 |
| 2799 checkUndeleteDatasetRequest(api.UndeleteDatasetRequest o) { | 2799 checkUndeleteDatasetRequest(api.UndeleteDatasetRequest o) { |
| 2800 buildCounterUndeleteDatasetRequest++; | 2800 buildCounterUndeleteDatasetRequest++; |
| 2801 if (buildCounterUndeleteDatasetRequest < 3) { | 2801 if (buildCounterUndeleteDatasetRequest < 3) { |
| 2802 } | 2802 } |
| 2803 buildCounterUndeleteDatasetRequest--; | 2803 buildCounterUndeleteDatasetRequest--; |
| 2804 } | 2804 } |
| 2805 | 2805 |
| 2806 buildUnnamed2598() { | 2806 buildUnnamed2724() { |
| 2807 var o = new core.List<core.String>(); | 2807 var o = new core.List<core.String>(); |
| 2808 o.add("foo"); | 2808 o.add("foo"); |
| 2809 o.add("foo"); | 2809 o.add("foo"); |
| 2810 return o; | 2810 return o; |
| 2811 } | 2811 } |
| 2812 | 2812 |
| 2813 checkUnnamed2598(core.List<core.String> o) { | 2813 checkUnnamed2724(core.List<core.String> o) { |
| 2814 unittest.expect(o, unittest.hasLength(2)); | 2814 unittest.expect(o, unittest.hasLength(2)); |
| 2815 unittest.expect(o[0], unittest.equals('foo')); | 2815 unittest.expect(o[0], unittest.equals('foo')); |
| 2816 unittest.expect(o[1], unittest.equals('foo')); | 2816 unittest.expect(o[1], unittest.equals('foo')); |
| 2817 } | 2817 } |
| 2818 | 2818 |
| 2819 buildUnnamed2599() { | 2819 buildUnnamed2725() { |
| 2820 var o = new core.List<api.VariantCall>(); | 2820 var o = new core.List<api.VariantCall>(); |
| 2821 o.add(buildVariantCall()); | 2821 o.add(buildVariantCall()); |
| 2822 o.add(buildVariantCall()); | 2822 o.add(buildVariantCall()); |
| 2823 return o; | 2823 return o; |
| 2824 } | 2824 } |
| 2825 | 2825 |
| 2826 checkUnnamed2599(core.List<api.VariantCall> o) { | 2826 checkUnnamed2725(core.List<api.VariantCall> o) { |
| 2827 unittest.expect(o, unittest.hasLength(2)); | 2827 unittest.expect(o, unittest.hasLength(2)); |
| 2828 checkVariantCall(o[0]); | 2828 checkVariantCall(o[0]); |
| 2829 checkVariantCall(o[1]); | 2829 checkVariantCall(o[1]); |
| 2830 } | 2830 } |
| 2831 | 2831 |
| 2832 buildUnnamed2600() { | 2832 buildUnnamed2726() { |
| 2833 var o = new core.List<core.String>(); | 2833 var o = new core.List<core.String>(); |
| 2834 o.add("foo"); | 2834 o.add("foo"); |
| 2835 o.add("foo"); | 2835 o.add("foo"); |
| 2836 return o; | 2836 return o; |
| 2837 } | 2837 } |
| 2838 | 2838 |
| 2839 checkUnnamed2600(core.List<core.String> o) { | 2839 checkUnnamed2726(core.List<core.String> o) { |
| 2840 unittest.expect(o, unittest.hasLength(2)); | 2840 unittest.expect(o, unittest.hasLength(2)); |
| 2841 unittest.expect(o[0], unittest.equals('foo')); | 2841 unittest.expect(o[0], unittest.equals('foo')); |
| 2842 unittest.expect(o[1], unittest.equals('foo')); | 2842 unittest.expect(o[1], unittest.equals('foo')); |
| 2843 } | 2843 } |
| 2844 | 2844 |
| 2845 buildUnnamed2601() { | 2845 buildUnnamed2727() { |
| 2846 var o = new core.List<core.Object>(); | 2846 var o = new core.List<core.Object>(); |
| 2847 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 2847 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 2848 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 2848 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 2849 return o; | 2849 return o; |
| 2850 } | 2850 } |
| 2851 | 2851 |
| 2852 checkUnnamed2601(core.List<core.Object> o) { | 2852 checkUnnamed2727(core.List<core.Object> o) { |
| 2853 unittest.expect(o, unittest.hasLength(2)); | 2853 unittest.expect(o, unittest.hasLength(2)); |
| 2854 var casted23 = (o[0]) as core.Map; unittest.expect(casted23, unittest.hasLengt
h(3)); unittest.expect(casted23["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted23["bool"], unittest.equals(true)); unittest.expect(casted23["string
"], unittest.equals('foo')); | 2854 var casted23 = (o[0]) as core.Map; unittest.expect(casted23, unittest.hasLengt
h(3)); unittest.expect(casted23["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted23["bool"], unittest.equals(true)); unittest.expect(casted23["string
"], unittest.equals('foo')); |
| 2855 var casted24 = (o[1]) as core.Map; unittest.expect(casted24, unittest.hasLengt
h(3)); unittest.expect(casted24["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted24["bool"], unittest.equals(true)); unittest.expect(casted24["string
"], unittest.equals('foo')); | 2855 var casted24 = (o[1]) as core.Map; unittest.expect(casted24, unittest.hasLengt
h(3)); unittest.expect(casted24["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted24["bool"], unittest.equals(true)); unittest.expect(casted24["string
"], unittest.equals('foo')); |
| 2856 } | 2856 } |
| 2857 | 2857 |
| 2858 buildUnnamed2602() { | 2858 buildUnnamed2728() { |
| 2859 var o = new core.Map<core.String, core.List<core.Object>>(); | 2859 var o = new core.Map<core.String, core.List<core.Object>>(); |
| 2860 o["x"] = buildUnnamed2601(); | 2860 o["x"] = buildUnnamed2727(); |
| 2861 o["y"] = buildUnnamed2601(); | 2861 o["y"] = buildUnnamed2727(); |
| 2862 return o; | 2862 return o; |
| 2863 } | 2863 } |
| 2864 | 2864 |
| 2865 checkUnnamed2602(core.Map<core.String, core.List<core.Object>> o) { | 2865 checkUnnamed2728(core.Map<core.String, core.List<core.Object>> o) { |
| 2866 unittest.expect(o, unittest.hasLength(2)); | 2866 unittest.expect(o, unittest.hasLength(2)); |
| 2867 checkUnnamed2601(o["x"]); | 2867 checkUnnamed2727(o["x"]); |
| 2868 checkUnnamed2601(o["y"]); | 2868 checkUnnamed2727(o["y"]); |
| 2869 } | 2869 } |
| 2870 | 2870 |
| 2871 buildUnnamed2603() { | 2871 buildUnnamed2729() { |
| 2872 var o = new core.List<core.String>(); | 2872 var o = new core.List<core.String>(); |
| 2873 o.add("foo"); | 2873 o.add("foo"); |
| 2874 o.add("foo"); | 2874 o.add("foo"); |
| 2875 return o; | 2875 return o; |
| 2876 } | 2876 } |
| 2877 | 2877 |
| 2878 checkUnnamed2603(core.List<core.String> o) { | 2878 checkUnnamed2729(core.List<core.String> o) { |
| 2879 unittest.expect(o, unittest.hasLength(2)); | 2879 unittest.expect(o, unittest.hasLength(2)); |
| 2880 unittest.expect(o[0], unittest.equals('foo')); | 2880 unittest.expect(o[0], unittest.equals('foo')); |
| 2881 unittest.expect(o[1], unittest.equals('foo')); | 2881 unittest.expect(o[1], unittest.equals('foo')); |
| 2882 } | 2882 } |
| 2883 | 2883 |
| 2884 core.int buildCounterVariant = 0; | 2884 core.int buildCounterVariant = 0; |
| 2885 buildVariant() { | 2885 buildVariant() { |
| 2886 var o = new api.Variant(); | 2886 var o = new api.Variant(); |
| 2887 buildCounterVariant++; | 2887 buildCounterVariant++; |
| 2888 if (buildCounterVariant < 3) { | 2888 if (buildCounterVariant < 3) { |
| 2889 o.alternateBases = buildUnnamed2598(); | 2889 o.alternateBases = buildUnnamed2724(); |
| 2890 o.calls = buildUnnamed2599(); | 2890 o.calls = buildUnnamed2725(); |
| 2891 o.created = "foo"; | 2891 o.created = "foo"; |
| 2892 o.end = "foo"; | 2892 o.end = "foo"; |
| 2893 o.filter = buildUnnamed2600(); | 2893 o.filter = buildUnnamed2726(); |
| 2894 o.id = "foo"; | 2894 o.id = "foo"; |
| 2895 o.info = buildUnnamed2602(); | 2895 o.info = buildUnnamed2728(); |
| 2896 o.names = buildUnnamed2603(); | 2896 o.names = buildUnnamed2729(); |
| 2897 o.quality = 42.0; | 2897 o.quality = 42.0; |
| 2898 o.referenceBases = "foo"; | 2898 o.referenceBases = "foo"; |
| 2899 o.referenceName = "foo"; | 2899 o.referenceName = "foo"; |
| 2900 o.start = "foo"; | 2900 o.start = "foo"; |
| 2901 o.variantSetId = "foo"; | 2901 o.variantSetId = "foo"; |
| 2902 } | 2902 } |
| 2903 buildCounterVariant--; | 2903 buildCounterVariant--; |
| 2904 return o; | 2904 return o; |
| 2905 } | 2905 } |
| 2906 | 2906 |
| 2907 checkVariant(api.Variant o) { | 2907 checkVariant(api.Variant o) { |
| 2908 buildCounterVariant++; | 2908 buildCounterVariant++; |
| 2909 if (buildCounterVariant < 3) { | 2909 if (buildCounterVariant < 3) { |
| 2910 checkUnnamed2598(o.alternateBases); | 2910 checkUnnamed2724(o.alternateBases); |
| 2911 checkUnnamed2599(o.calls); | 2911 checkUnnamed2725(o.calls); |
| 2912 unittest.expect(o.created, unittest.equals('foo')); | 2912 unittest.expect(o.created, unittest.equals('foo')); |
| 2913 unittest.expect(o.end, unittest.equals('foo')); | 2913 unittest.expect(o.end, unittest.equals('foo')); |
| 2914 checkUnnamed2600(o.filter); | 2914 checkUnnamed2726(o.filter); |
| 2915 unittest.expect(o.id, unittest.equals('foo')); | 2915 unittest.expect(o.id, unittest.equals('foo')); |
| 2916 checkUnnamed2602(o.info); | 2916 checkUnnamed2728(o.info); |
| 2917 checkUnnamed2603(o.names); | 2917 checkUnnamed2729(o.names); |
| 2918 unittest.expect(o.quality, unittest.equals(42.0)); | 2918 unittest.expect(o.quality, unittest.equals(42.0)); |
| 2919 unittest.expect(o.referenceBases, unittest.equals('foo')); | 2919 unittest.expect(o.referenceBases, unittest.equals('foo')); |
| 2920 unittest.expect(o.referenceName, unittest.equals('foo')); | 2920 unittest.expect(o.referenceName, unittest.equals('foo')); |
| 2921 unittest.expect(o.start, unittest.equals('foo')); | 2921 unittest.expect(o.start, unittest.equals('foo')); |
| 2922 unittest.expect(o.variantSetId, unittest.equals('foo')); | 2922 unittest.expect(o.variantSetId, unittest.equals('foo')); |
| 2923 } | 2923 } |
| 2924 buildCounterVariant--; | 2924 buildCounterVariant--; |
| 2925 } | 2925 } |
| 2926 | 2926 |
| 2927 buildUnnamed2604() { | 2927 buildUnnamed2730() { |
| 2928 var o = new core.List<api.ClinicalCondition>(); | 2928 var o = new core.List<api.ClinicalCondition>(); |
| 2929 o.add(buildClinicalCondition()); | 2929 o.add(buildClinicalCondition()); |
| 2930 o.add(buildClinicalCondition()); | 2930 o.add(buildClinicalCondition()); |
| 2931 return o; | 2931 return o; |
| 2932 } | 2932 } |
| 2933 | 2933 |
| 2934 checkUnnamed2604(core.List<api.ClinicalCondition> o) { | 2934 checkUnnamed2730(core.List<api.ClinicalCondition> o) { |
| 2935 unittest.expect(o, unittest.hasLength(2)); | 2935 unittest.expect(o, unittest.hasLength(2)); |
| 2936 checkClinicalCondition(o[0]); | 2936 checkClinicalCondition(o[0]); |
| 2937 checkClinicalCondition(o[1]); | 2937 checkClinicalCondition(o[1]); |
| 2938 } | 2938 } |
| 2939 | 2939 |
| 2940 buildUnnamed2605() { | 2940 buildUnnamed2731() { |
| 2941 var o = new core.List<core.String>(); | 2941 var o = new core.List<core.String>(); |
| 2942 o.add("foo"); | 2942 o.add("foo"); |
| 2943 o.add("foo"); | 2943 o.add("foo"); |
| 2944 return o; | 2944 return o; |
| 2945 } | 2945 } |
| 2946 | 2946 |
| 2947 checkUnnamed2605(core.List<core.String> o) { | 2947 checkUnnamed2731(core.List<core.String> o) { |
| 2948 unittest.expect(o, unittest.hasLength(2)); | 2948 unittest.expect(o, unittest.hasLength(2)); |
| 2949 unittest.expect(o[0], unittest.equals('foo')); | 2949 unittest.expect(o[0], unittest.equals('foo')); |
| 2950 unittest.expect(o[1], unittest.equals('foo')); | 2950 unittest.expect(o[1], unittest.equals('foo')); |
| 2951 } | 2951 } |
| 2952 | 2952 |
| 2953 core.int buildCounterVariantAnnotation = 0; | 2953 core.int buildCounterVariantAnnotation = 0; |
| 2954 buildVariantAnnotation() { | 2954 buildVariantAnnotation() { |
| 2955 var o = new api.VariantAnnotation(); | 2955 var o = new api.VariantAnnotation(); |
| 2956 buildCounterVariantAnnotation++; | 2956 buildCounterVariantAnnotation++; |
| 2957 if (buildCounterVariantAnnotation < 3) { | 2957 if (buildCounterVariantAnnotation < 3) { |
| 2958 o.alternateBases = "foo"; | 2958 o.alternateBases = "foo"; |
| 2959 o.clinicalSignificance = "foo"; | 2959 o.clinicalSignificance = "foo"; |
| 2960 o.conditions = buildUnnamed2604(); | 2960 o.conditions = buildUnnamed2730(); |
| 2961 o.effect = "foo"; | 2961 o.effect = "foo"; |
| 2962 o.geneId = "foo"; | 2962 o.geneId = "foo"; |
| 2963 o.transcriptIds = buildUnnamed2605(); | 2963 o.transcriptIds = buildUnnamed2731(); |
| 2964 o.type = "foo"; | 2964 o.type = "foo"; |
| 2965 } | 2965 } |
| 2966 buildCounterVariantAnnotation--; | 2966 buildCounterVariantAnnotation--; |
| 2967 return o; | 2967 return o; |
| 2968 } | 2968 } |
| 2969 | 2969 |
| 2970 checkVariantAnnotation(api.VariantAnnotation o) { | 2970 checkVariantAnnotation(api.VariantAnnotation o) { |
| 2971 buildCounterVariantAnnotation++; | 2971 buildCounterVariantAnnotation++; |
| 2972 if (buildCounterVariantAnnotation < 3) { | 2972 if (buildCounterVariantAnnotation < 3) { |
| 2973 unittest.expect(o.alternateBases, unittest.equals('foo')); | 2973 unittest.expect(o.alternateBases, unittest.equals('foo')); |
| 2974 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); | 2974 unittest.expect(o.clinicalSignificance, unittest.equals('foo')); |
| 2975 checkUnnamed2604(o.conditions); | 2975 checkUnnamed2730(o.conditions); |
| 2976 unittest.expect(o.effect, unittest.equals('foo')); | 2976 unittest.expect(o.effect, unittest.equals('foo')); |
| 2977 unittest.expect(o.geneId, unittest.equals('foo')); | 2977 unittest.expect(o.geneId, unittest.equals('foo')); |
| 2978 checkUnnamed2605(o.transcriptIds); | 2978 checkUnnamed2731(o.transcriptIds); |
| 2979 unittest.expect(o.type, unittest.equals('foo')); | 2979 unittest.expect(o.type, unittest.equals('foo')); |
| 2980 } | 2980 } |
| 2981 buildCounterVariantAnnotation--; | 2981 buildCounterVariantAnnotation--; |
| 2982 } | 2982 } |
| 2983 | 2983 |
| 2984 buildUnnamed2606() { | 2984 buildUnnamed2732() { |
| 2985 var o = new core.List<core.int>(); | 2985 var o = new core.List<core.int>(); |
| 2986 o.add(42); | 2986 o.add(42); |
| 2987 o.add(42); | 2987 o.add(42); |
| 2988 return o; | 2988 return o; |
| 2989 } | 2989 } |
| 2990 | 2990 |
| 2991 checkUnnamed2606(core.List<core.int> o) { | 2991 checkUnnamed2732(core.List<core.int> o) { |
| 2992 unittest.expect(o, unittest.hasLength(2)); | 2992 unittest.expect(o, unittest.hasLength(2)); |
| 2993 unittest.expect(o[0], unittest.equals(42)); | 2993 unittest.expect(o[0], unittest.equals(42)); |
| 2994 unittest.expect(o[1], unittest.equals(42)); | 2994 unittest.expect(o[1], unittest.equals(42)); |
| 2995 } | 2995 } |
| 2996 | 2996 |
| 2997 buildUnnamed2607() { | 2997 buildUnnamed2733() { |
| 2998 var o = new core.List<core.double>(); | 2998 var o = new core.List<core.double>(); |
| 2999 o.add(42.0); | 2999 o.add(42.0); |
| 3000 o.add(42.0); | 3000 o.add(42.0); |
| 3001 return o; | 3001 return o; |
| 3002 } | 3002 } |
| 3003 | 3003 |
| 3004 checkUnnamed2607(core.List<core.double> o) { | 3004 checkUnnamed2733(core.List<core.double> o) { |
| 3005 unittest.expect(o, unittest.hasLength(2)); | 3005 unittest.expect(o, unittest.hasLength(2)); |
| 3006 unittest.expect(o[0], unittest.equals(42.0)); | 3006 unittest.expect(o[0], unittest.equals(42.0)); |
| 3007 unittest.expect(o[1], unittest.equals(42.0)); | 3007 unittest.expect(o[1], unittest.equals(42.0)); |
| 3008 } | 3008 } |
| 3009 | 3009 |
| 3010 buildUnnamed2608() { | 3010 buildUnnamed2734() { |
| 3011 var o = new core.List<core.Object>(); | 3011 var o = new core.List<core.Object>(); |
| 3012 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 3012 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 3013 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 3013 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 3014 return o; | 3014 return o; |
| 3015 } | 3015 } |
| 3016 | 3016 |
| 3017 checkUnnamed2608(core.List<core.Object> o) { | 3017 checkUnnamed2734(core.List<core.Object> o) { |
| 3018 unittest.expect(o, unittest.hasLength(2)); | 3018 unittest.expect(o, unittest.hasLength(2)); |
| 3019 var casted25 = (o[0]) as core.Map; unittest.expect(casted25, unittest.hasLengt
h(3)); unittest.expect(casted25["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted25["bool"], unittest.equals(true)); unittest.expect(casted25["string
"], unittest.equals('foo')); | 3019 var casted25 = (o[0]) as core.Map; unittest.expect(casted25, unittest.hasLengt
h(3)); unittest.expect(casted25["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted25["bool"], unittest.equals(true)); unittest.expect(casted25["string
"], unittest.equals('foo')); |
| 3020 var casted26 = (o[1]) as core.Map; unittest.expect(casted26, unittest.hasLengt
h(3)); unittest.expect(casted26["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted26["bool"], unittest.equals(true)); unittest.expect(casted26["string
"], unittest.equals('foo')); | 3020 var casted26 = (o[1]) as core.Map; unittest.expect(casted26, unittest.hasLengt
h(3)); unittest.expect(casted26["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted26["bool"], unittest.equals(true)); unittest.expect(casted26["string
"], unittest.equals('foo')); |
| 3021 } | 3021 } |
| 3022 | 3022 |
| 3023 buildUnnamed2609() { | 3023 buildUnnamed2735() { |
| 3024 var o = new core.Map<core.String, core.List<core.Object>>(); | 3024 var o = new core.Map<core.String, core.List<core.Object>>(); |
| 3025 o["x"] = buildUnnamed2608(); | 3025 o["x"] = buildUnnamed2734(); |
| 3026 o["y"] = buildUnnamed2608(); | 3026 o["y"] = buildUnnamed2734(); |
| 3027 return o; | 3027 return o; |
| 3028 } | 3028 } |
| 3029 | 3029 |
| 3030 checkUnnamed2609(core.Map<core.String, core.List<core.Object>> o) { | 3030 checkUnnamed2735(core.Map<core.String, core.List<core.Object>> o) { |
| 3031 unittest.expect(o, unittest.hasLength(2)); | 3031 unittest.expect(o, unittest.hasLength(2)); |
| 3032 checkUnnamed2608(o["x"]); | 3032 checkUnnamed2734(o["x"]); |
| 3033 checkUnnamed2608(o["y"]); | 3033 checkUnnamed2734(o["y"]); |
| 3034 } | 3034 } |
| 3035 | 3035 |
| 3036 core.int buildCounterVariantCall = 0; | 3036 core.int buildCounterVariantCall = 0; |
| 3037 buildVariantCall() { | 3037 buildVariantCall() { |
| 3038 var o = new api.VariantCall(); | 3038 var o = new api.VariantCall(); |
| 3039 buildCounterVariantCall++; | 3039 buildCounterVariantCall++; |
| 3040 if (buildCounterVariantCall < 3) { | 3040 if (buildCounterVariantCall < 3) { |
| 3041 o.callSetId = "foo"; | 3041 o.callSetId = "foo"; |
| 3042 o.callSetName = "foo"; | 3042 o.callSetName = "foo"; |
| 3043 o.genotype = buildUnnamed2606(); | 3043 o.genotype = buildUnnamed2732(); |
| 3044 o.genotypeLikelihood = buildUnnamed2607(); | 3044 o.genotypeLikelihood = buildUnnamed2733(); |
| 3045 o.info = buildUnnamed2609(); | 3045 o.info = buildUnnamed2735(); |
| 3046 o.phaseset = "foo"; | 3046 o.phaseset = "foo"; |
| 3047 } | 3047 } |
| 3048 buildCounterVariantCall--; | 3048 buildCounterVariantCall--; |
| 3049 return o; | 3049 return o; |
| 3050 } | 3050 } |
| 3051 | 3051 |
| 3052 checkVariantCall(api.VariantCall o) { | 3052 checkVariantCall(api.VariantCall o) { |
| 3053 buildCounterVariantCall++; | 3053 buildCounterVariantCall++; |
| 3054 if (buildCounterVariantCall < 3) { | 3054 if (buildCounterVariantCall < 3) { |
| 3055 unittest.expect(o.callSetId, unittest.equals('foo')); | 3055 unittest.expect(o.callSetId, unittest.equals('foo')); |
| 3056 unittest.expect(o.callSetName, unittest.equals('foo')); | 3056 unittest.expect(o.callSetName, unittest.equals('foo')); |
| 3057 checkUnnamed2606(o.genotype); | 3057 checkUnnamed2732(o.genotype); |
| 3058 checkUnnamed2607(o.genotypeLikelihood); | 3058 checkUnnamed2733(o.genotypeLikelihood); |
| 3059 checkUnnamed2609(o.info); | 3059 checkUnnamed2735(o.info); |
| 3060 unittest.expect(o.phaseset, unittest.equals('foo')); | 3060 unittest.expect(o.phaseset, unittest.equals('foo')); |
| 3061 } | 3061 } |
| 3062 buildCounterVariantCall--; | 3062 buildCounterVariantCall--; |
| 3063 } | 3063 } |
| 3064 | 3064 |
| 3065 buildUnnamed2610() { | 3065 buildUnnamed2736() { |
| 3066 var o = new core.List<api.VariantSetMetadata>(); | 3066 var o = new core.List<api.VariantSetMetadata>(); |
| 3067 o.add(buildVariantSetMetadata()); | 3067 o.add(buildVariantSetMetadata()); |
| 3068 o.add(buildVariantSetMetadata()); | 3068 o.add(buildVariantSetMetadata()); |
| 3069 return o; | 3069 return o; |
| 3070 } | 3070 } |
| 3071 | 3071 |
| 3072 checkUnnamed2610(core.List<api.VariantSetMetadata> o) { | 3072 checkUnnamed2736(core.List<api.VariantSetMetadata> o) { |
| 3073 unittest.expect(o, unittest.hasLength(2)); | 3073 unittest.expect(o, unittest.hasLength(2)); |
| 3074 checkVariantSetMetadata(o[0]); | 3074 checkVariantSetMetadata(o[0]); |
| 3075 checkVariantSetMetadata(o[1]); | 3075 checkVariantSetMetadata(o[1]); |
| 3076 } | 3076 } |
| 3077 | 3077 |
| 3078 buildUnnamed2611() { | 3078 buildUnnamed2737() { |
| 3079 var o = new core.List<api.ReferenceBound>(); | 3079 var o = new core.List<api.ReferenceBound>(); |
| 3080 o.add(buildReferenceBound()); | 3080 o.add(buildReferenceBound()); |
| 3081 o.add(buildReferenceBound()); | 3081 o.add(buildReferenceBound()); |
| 3082 return o; | 3082 return o; |
| 3083 } | 3083 } |
| 3084 | 3084 |
| 3085 checkUnnamed2611(core.List<api.ReferenceBound> o) { | 3085 checkUnnamed2737(core.List<api.ReferenceBound> o) { |
| 3086 unittest.expect(o, unittest.hasLength(2)); | 3086 unittest.expect(o, unittest.hasLength(2)); |
| 3087 checkReferenceBound(o[0]); | 3087 checkReferenceBound(o[0]); |
| 3088 checkReferenceBound(o[1]); | 3088 checkReferenceBound(o[1]); |
| 3089 } | 3089 } |
| 3090 | 3090 |
| 3091 core.int buildCounterVariantSet = 0; | 3091 core.int buildCounterVariantSet = 0; |
| 3092 buildVariantSet() { | 3092 buildVariantSet() { |
| 3093 var o = new api.VariantSet(); | 3093 var o = new api.VariantSet(); |
| 3094 buildCounterVariantSet++; | 3094 buildCounterVariantSet++; |
| 3095 if (buildCounterVariantSet < 3) { | 3095 if (buildCounterVariantSet < 3) { |
| 3096 o.datasetId = "foo"; | 3096 o.datasetId = "foo"; |
| 3097 o.description = "foo"; | 3097 o.description = "foo"; |
| 3098 o.id = "foo"; | 3098 o.id = "foo"; |
| 3099 o.metadata = buildUnnamed2610(); | 3099 o.metadata = buildUnnamed2736(); |
| 3100 o.name = "foo"; | 3100 o.name = "foo"; |
| 3101 o.referenceBounds = buildUnnamed2611(); | 3101 o.referenceBounds = buildUnnamed2737(); |
| 3102 o.referenceSetId = "foo"; | 3102 o.referenceSetId = "foo"; |
| 3103 } | 3103 } |
| 3104 buildCounterVariantSet--; | 3104 buildCounterVariantSet--; |
| 3105 return o; | 3105 return o; |
| 3106 } | 3106 } |
| 3107 | 3107 |
| 3108 checkVariantSet(api.VariantSet o) { | 3108 checkVariantSet(api.VariantSet o) { |
| 3109 buildCounterVariantSet++; | 3109 buildCounterVariantSet++; |
| 3110 if (buildCounterVariantSet < 3) { | 3110 if (buildCounterVariantSet < 3) { |
| 3111 unittest.expect(o.datasetId, unittest.equals('foo')); | 3111 unittest.expect(o.datasetId, unittest.equals('foo')); |
| 3112 unittest.expect(o.description, unittest.equals('foo')); | 3112 unittest.expect(o.description, unittest.equals('foo')); |
| 3113 unittest.expect(o.id, unittest.equals('foo')); | 3113 unittest.expect(o.id, unittest.equals('foo')); |
| 3114 checkUnnamed2610(o.metadata); | 3114 checkUnnamed2736(o.metadata); |
| 3115 unittest.expect(o.name, unittest.equals('foo')); | 3115 unittest.expect(o.name, unittest.equals('foo')); |
| 3116 checkUnnamed2611(o.referenceBounds); | 3116 checkUnnamed2737(o.referenceBounds); |
| 3117 unittest.expect(o.referenceSetId, unittest.equals('foo')); | 3117 unittest.expect(o.referenceSetId, unittest.equals('foo')); |
| 3118 } | 3118 } |
| 3119 buildCounterVariantSet--; | 3119 buildCounterVariantSet--; |
| 3120 } | 3120 } |
| 3121 | 3121 |
| 3122 buildUnnamed2612() { | 3122 buildUnnamed2738() { |
| 3123 var o = new core.List<core.Object>(); | 3123 var o = new core.List<core.Object>(); |
| 3124 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 3124 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 3125 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); | 3125 o.add({'list' : [1, 2, 3], 'bool' : true, 'string' : 'foo'}); |
| 3126 return o; | 3126 return o; |
| 3127 } | 3127 } |
| 3128 | 3128 |
| 3129 checkUnnamed2612(core.List<core.Object> o) { | 3129 checkUnnamed2738(core.List<core.Object> o) { |
| 3130 unittest.expect(o, unittest.hasLength(2)); | 3130 unittest.expect(o, unittest.hasLength(2)); |
| 3131 var casted27 = (o[0]) as core.Map; unittest.expect(casted27, unittest.hasLengt
h(3)); unittest.expect(casted27["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted27["bool"], unittest.equals(true)); unittest.expect(casted27["string
"], unittest.equals('foo')); | 3131 var casted27 = (o[0]) as core.Map; unittest.expect(casted27, unittest.hasLengt
h(3)); unittest.expect(casted27["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted27["bool"], unittest.equals(true)); unittest.expect(casted27["string
"], unittest.equals('foo')); |
| 3132 var casted28 = (o[1]) as core.Map; unittest.expect(casted28, unittest.hasLengt
h(3)); unittest.expect(casted28["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted28["bool"], unittest.equals(true)); unittest.expect(casted28["string
"], unittest.equals('foo')); | 3132 var casted28 = (o[1]) as core.Map; unittest.expect(casted28, unittest.hasLengt
h(3)); unittest.expect(casted28["list"], unittest.equals([1, 2, 3])); unittest.e
xpect(casted28["bool"], unittest.equals(true)); unittest.expect(casted28["string
"], unittest.equals('foo')); |
| 3133 } | 3133 } |
| 3134 | 3134 |
| 3135 buildUnnamed2613() { | 3135 buildUnnamed2739() { |
| 3136 var o = new core.Map<core.String, core.List<core.Object>>(); | 3136 var o = new core.Map<core.String, core.List<core.Object>>(); |
| 3137 o["x"] = buildUnnamed2612(); | 3137 o["x"] = buildUnnamed2738(); |
| 3138 o["y"] = buildUnnamed2612(); | 3138 o["y"] = buildUnnamed2738(); |
| 3139 return o; | 3139 return o; |
| 3140 } | 3140 } |
| 3141 | 3141 |
| 3142 checkUnnamed2613(core.Map<core.String, core.List<core.Object>> o) { | 3142 checkUnnamed2739(core.Map<core.String, core.List<core.Object>> o) { |
| 3143 unittest.expect(o, unittest.hasLength(2)); | 3143 unittest.expect(o, unittest.hasLength(2)); |
| 3144 checkUnnamed2612(o["x"]); | 3144 checkUnnamed2738(o["x"]); |
| 3145 checkUnnamed2612(o["y"]); | 3145 checkUnnamed2738(o["y"]); |
| 3146 } | 3146 } |
| 3147 | 3147 |
| 3148 core.int buildCounterVariantSetMetadata = 0; | 3148 core.int buildCounterVariantSetMetadata = 0; |
| 3149 buildVariantSetMetadata() { | 3149 buildVariantSetMetadata() { |
| 3150 var o = new api.VariantSetMetadata(); | 3150 var o = new api.VariantSetMetadata(); |
| 3151 buildCounterVariantSetMetadata++; | 3151 buildCounterVariantSetMetadata++; |
| 3152 if (buildCounterVariantSetMetadata < 3) { | 3152 if (buildCounterVariantSetMetadata < 3) { |
| 3153 o.description = "foo"; | 3153 o.description = "foo"; |
| 3154 o.id = "foo"; | 3154 o.id = "foo"; |
| 3155 o.info = buildUnnamed2613(); | 3155 o.info = buildUnnamed2739(); |
| 3156 o.key = "foo"; | 3156 o.key = "foo"; |
| 3157 o.number = "foo"; | 3157 o.number = "foo"; |
| 3158 o.type = "foo"; | 3158 o.type = "foo"; |
| 3159 o.value = "foo"; | 3159 o.value = "foo"; |
| 3160 } | 3160 } |
| 3161 buildCounterVariantSetMetadata--; | 3161 buildCounterVariantSetMetadata--; |
| 3162 return o; | 3162 return o; |
| 3163 } | 3163 } |
| 3164 | 3164 |
| 3165 checkVariantSetMetadata(api.VariantSetMetadata o) { | 3165 checkVariantSetMetadata(api.VariantSetMetadata o) { |
| 3166 buildCounterVariantSetMetadata++; | 3166 buildCounterVariantSetMetadata++; |
| 3167 if (buildCounterVariantSetMetadata < 3) { | 3167 if (buildCounterVariantSetMetadata < 3) { |
| 3168 unittest.expect(o.description, unittest.equals('foo')); | 3168 unittest.expect(o.description, unittest.equals('foo')); |
| 3169 unittest.expect(o.id, unittest.equals('foo')); | 3169 unittest.expect(o.id, unittest.equals('foo')); |
| 3170 checkUnnamed2613(o.info); | 3170 checkUnnamed2739(o.info); |
| 3171 unittest.expect(o.key, unittest.equals('foo')); | 3171 unittest.expect(o.key, unittest.equals('foo')); |
| 3172 unittest.expect(o.number, unittest.equals('foo')); | 3172 unittest.expect(o.number, unittest.equals('foo')); |
| 3173 unittest.expect(o.type, unittest.equals('foo')); | 3173 unittest.expect(o.type, unittest.equals('foo')); |
| 3174 unittest.expect(o.value, unittest.equals('foo')); | 3174 unittest.expect(o.value, unittest.equals('foo')); |
| 3175 } | 3175 } |
| 3176 buildCounterVariantSetMetadata--; | 3176 buildCounterVariantSetMetadata--; |
| 3177 } | 3177 } |
| 3178 | 3178 |
| 3179 | 3179 |
| 3180 main() { | 3180 main() { |
| (...skipping 3484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6665 res.search(arg_request).then(unittest.expectAsync(((api.SearchVariantSetsR
esponse response) { | 6665 res.search(arg_request).then(unittest.expectAsync(((api.SearchVariantSetsR
esponse response) { |
| 6666 checkSearchVariantSetsResponse(response); | 6666 checkSearchVariantSetsResponse(response); |
| 6667 }))); | 6667 }))); |
| 6668 }); | 6668 }); |
| 6669 | 6669 |
| 6670 }); | 6670 }); |
| 6671 | 6671 |
| 6672 | 6672 |
| 6673 } | 6673 } |
| 6674 | 6674 |
| OLD | NEW |