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