| OLD | NEW |
| 1 library googleapis.youtube.v3.test; | 1 library googleapis.youtube.v3.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 buildUnnamed3324() { | 54 buildUnnamed713() { |
| 55 var o = new core.List<core.String>(); | 55 var o = new core.List<core.String>(); |
| 56 o.add("foo"); | 56 o.add("foo"); |
| 57 o.add("foo"); | 57 o.add("foo"); |
| 58 return o; | 58 return o; |
| 59 } | 59 } |
| 60 | 60 |
| 61 checkUnnamed3324(core.List<core.String> o) { | 61 checkUnnamed713(core.List<core.String> o) { |
| 62 unittest.expect(o, unittest.hasLength(2)); | 62 unittest.expect(o, unittest.hasLength(2)); |
| 63 unittest.expect(o[0], unittest.equals('foo')); | 63 unittest.expect(o[0], unittest.equals('foo')); |
| 64 unittest.expect(o[1], unittest.equals('foo')); | 64 unittest.expect(o[1], unittest.equals('foo')); |
| 65 } | 65 } |
| 66 | 66 |
| 67 core.int buildCounterAccessPolicy = 0; | 67 core.int buildCounterAccessPolicy = 0; |
| 68 buildAccessPolicy() { | 68 buildAccessPolicy() { |
| 69 var o = new api.AccessPolicy(); | 69 var o = new api.AccessPolicy(); |
| 70 buildCounterAccessPolicy++; | 70 buildCounterAccessPolicy++; |
| 71 if (buildCounterAccessPolicy < 3) { | 71 if (buildCounterAccessPolicy < 3) { |
| 72 o.allowed = true; | 72 o.allowed = true; |
| 73 o.exception = buildUnnamed3324(); | 73 o.exception = buildUnnamed713(); |
| 74 } | 74 } |
| 75 buildCounterAccessPolicy--; | 75 buildCounterAccessPolicy--; |
| 76 return o; | 76 return o; |
| 77 } | 77 } |
| 78 | 78 |
| 79 checkAccessPolicy(api.AccessPolicy o) { | 79 checkAccessPolicy(api.AccessPolicy o) { |
| 80 buildCounterAccessPolicy++; | 80 buildCounterAccessPolicy++; |
| 81 if (buildCounterAccessPolicy < 3) { | 81 if (buildCounterAccessPolicy < 3) { |
| 82 unittest.expect(o.allowed, unittest.isTrue); | 82 unittest.expect(o.allowed, unittest.isTrue); |
| 83 checkUnnamed3324(o.exception); | 83 checkUnnamed713(o.exception); |
| 84 } | 84 } |
| 85 buildCounterAccessPolicy--; | 85 buildCounterAccessPolicy--; |
| 86 } | 86 } |
| 87 | 87 |
| 88 core.int buildCounterActivity = 0; | 88 core.int buildCounterActivity = 0; |
| 89 buildActivity() { | 89 buildActivity() { |
| 90 var o = new api.Activity(); | 90 var o = new api.Activity(); |
| 91 buildCounterActivity++; | 91 buildCounterActivity++; |
| 92 if (buildCounterActivity < 3) { | 92 if (buildCounterActivity < 3) { |
| 93 o.contentDetails = buildActivityContentDetails(); | 93 o.contentDetails = buildActivityContentDetails(); |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 checkActivityContentDetailsPlaylistItem(api.ActivityContentDetailsPlaylistItem o
) { | 262 checkActivityContentDetailsPlaylistItem(api.ActivityContentDetailsPlaylistItem o
) { |
| 263 buildCounterActivityContentDetailsPlaylistItem++; | 263 buildCounterActivityContentDetailsPlaylistItem++; |
| 264 if (buildCounterActivityContentDetailsPlaylistItem < 3) { | 264 if (buildCounterActivityContentDetailsPlaylistItem < 3) { |
| 265 unittest.expect(o.playlistId, unittest.equals('foo')); | 265 unittest.expect(o.playlistId, unittest.equals('foo')); |
| 266 unittest.expect(o.playlistItemId, unittest.equals('foo')); | 266 unittest.expect(o.playlistItemId, unittest.equals('foo')); |
| 267 checkResourceId(o.resourceId); | 267 checkResourceId(o.resourceId); |
| 268 } | 268 } |
| 269 buildCounterActivityContentDetailsPlaylistItem--; | 269 buildCounterActivityContentDetailsPlaylistItem--; |
| 270 } | 270 } |
| 271 | 271 |
| 272 buildUnnamed3325() { | 272 buildUnnamed714() { |
| 273 var o = new core.List<core.String>(); | 273 var o = new core.List<core.String>(); |
| 274 o.add("foo"); | 274 o.add("foo"); |
| 275 o.add("foo"); | 275 o.add("foo"); |
| 276 return o; | 276 return o; |
| 277 } | 277 } |
| 278 | 278 |
| 279 checkUnnamed3325(core.List<core.String> o) { | 279 checkUnnamed714(core.List<core.String> o) { |
| 280 unittest.expect(o, unittest.hasLength(2)); | 280 unittest.expect(o, unittest.hasLength(2)); |
| 281 unittest.expect(o[0], unittest.equals('foo')); | 281 unittest.expect(o[0], unittest.equals('foo')); |
| 282 unittest.expect(o[1], unittest.equals('foo')); | 282 unittest.expect(o[1], unittest.equals('foo')); |
| 283 } | 283 } |
| 284 | 284 |
| 285 buildUnnamed3326() { | 285 buildUnnamed715() { |
| 286 var o = new core.List<core.String>(); | 286 var o = new core.List<core.String>(); |
| 287 o.add("foo"); | 287 o.add("foo"); |
| 288 o.add("foo"); | 288 o.add("foo"); |
| 289 return o; | 289 return o; |
| 290 } | 290 } |
| 291 | 291 |
| 292 checkUnnamed3326(core.List<core.String> o) { | 292 checkUnnamed715(core.List<core.String> o) { |
| 293 unittest.expect(o, unittest.hasLength(2)); | 293 unittest.expect(o, unittest.hasLength(2)); |
| 294 unittest.expect(o[0], unittest.equals('foo')); | 294 unittest.expect(o[0], unittest.equals('foo')); |
| 295 unittest.expect(o[1], unittest.equals('foo')); | 295 unittest.expect(o[1], unittest.equals('foo')); |
| 296 } | 296 } |
| 297 | 297 |
| 298 core.int buildCounterActivityContentDetailsPromotedItem = 0; | 298 core.int buildCounterActivityContentDetailsPromotedItem = 0; |
| 299 buildActivityContentDetailsPromotedItem() { | 299 buildActivityContentDetailsPromotedItem() { |
| 300 var o = new api.ActivityContentDetailsPromotedItem(); | 300 var o = new api.ActivityContentDetailsPromotedItem(); |
| 301 buildCounterActivityContentDetailsPromotedItem++; | 301 buildCounterActivityContentDetailsPromotedItem++; |
| 302 if (buildCounterActivityContentDetailsPromotedItem < 3) { | 302 if (buildCounterActivityContentDetailsPromotedItem < 3) { |
| 303 o.adTag = "foo"; | 303 o.adTag = "foo"; |
| 304 o.clickTrackingUrl = "foo"; | 304 o.clickTrackingUrl = "foo"; |
| 305 o.creativeViewUrl = "foo"; | 305 o.creativeViewUrl = "foo"; |
| 306 o.ctaType = "foo"; | 306 o.ctaType = "foo"; |
| 307 o.customCtaButtonText = "foo"; | 307 o.customCtaButtonText = "foo"; |
| 308 o.descriptionText = "foo"; | 308 o.descriptionText = "foo"; |
| 309 o.destinationUrl = "foo"; | 309 o.destinationUrl = "foo"; |
| 310 o.forecastingUrl = buildUnnamed3325(); | 310 o.forecastingUrl = buildUnnamed714(); |
| 311 o.impressionUrl = buildUnnamed3326(); | 311 o.impressionUrl = buildUnnamed715(); |
| 312 o.videoId = "foo"; | 312 o.videoId = "foo"; |
| 313 } | 313 } |
| 314 buildCounterActivityContentDetailsPromotedItem--; | 314 buildCounterActivityContentDetailsPromotedItem--; |
| 315 return o; | 315 return o; |
| 316 } | 316 } |
| 317 | 317 |
| 318 checkActivityContentDetailsPromotedItem(api.ActivityContentDetailsPromotedItem o
) { | 318 checkActivityContentDetailsPromotedItem(api.ActivityContentDetailsPromotedItem o
) { |
| 319 buildCounterActivityContentDetailsPromotedItem++; | 319 buildCounterActivityContentDetailsPromotedItem++; |
| 320 if (buildCounterActivityContentDetailsPromotedItem < 3) { | 320 if (buildCounterActivityContentDetailsPromotedItem < 3) { |
| 321 unittest.expect(o.adTag, unittest.equals('foo')); | 321 unittest.expect(o.adTag, unittest.equals('foo')); |
| 322 unittest.expect(o.clickTrackingUrl, unittest.equals('foo')); | 322 unittest.expect(o.clickTrackingUrl, unittest.equals('foo')); |
| 323 unittest.expect(o.creativeViewUrl, unittest.equals('foo')); | 323 unittest.expect(o.creativeViewUrl, unittest.equals('foo')); |
| 324 unittest.expect(o.ctaType, unittest.equals('foo')); | 324 unittest.expect(o.ctaType, unittest.equals('foo')); |
| 325 unittest.expect(o.customCtaButtonText, unittest.equals('foo')); | 325 unittest.expect(o.customCtaButtonText, unittest.equals('foo')); |
| 326 unittest.expect(o.descriptionText, unittest.equals('foo')); | 326 unittest.expect(o.descriptionText, unittest.equals('foo')); |
| 327 unittest.expect(o.destinationUrl, unittest.equals('foo')); | 327 unittest.expect(o.destinationUrl, unittest.equals('foo')); |
| 328 checkUnnamed3325(o.forecastingUrl); | 328 checkUnnamed714(o.forecastingUrl); |
| 329 checkUnnamed3326(o.impressionUrl); | 329 checkUnnamed715(o.impressionUrl); |
| 330 unittest.expect(o.videoId, unittest.equals('foo')); | 330 unittest.expect(o.videoId, unittest.equals('foo')); |
| 331 } | 331 } |
| 332 buildCounterActivityContentDetailsPromotedItem--; | 332 buildCounterActivityContentDetailsPromotedItem--; |
| 333 } | 333 } |
| 334 | 334 |
| 335 core.int buildCounterActivityContentDetailsRecommendation = 0; | 335 core.int buildCounterActivityContentDetailsRecommendation = 0; |
| 336 buildActivityContentDetailsRecommendation() { | 336 buildActivityContentDetailsRecommendation() { |
| 337 var o = new api.ActivityContentDetailsRecommendation(); | 337 var o = new api.ActivityContentDetailsRecommendation(); |
| 338 buildCounterActivityContentDetailsRecommendation++; | 338 buildCounterActivityContentDetailsRecommendation++; |
| 339 if (buildCounterActivityContentDetailsRecommendation < 3) { | 339 if (buildCounterActivityContentDetailsRecommendation < 3) { |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 } | 413 } |
| 414 | 414 |
| 415 checkActivityContentDetailsUpload(api.ActivityContentDetailsUpload o) { | 415 checkActivityContentDetailsUpload(api.ActivityContentDetailsUpload o) { |
| 416 buildCounterActivityContentDetailsUpload++; | 416 buildCounterActivityContentDetailsUpload++; |
| 417 if (buildCounterActivityContentDetailsUpload < 3) { | 417 if (buildCounterActivityContentDetailsUpload < 3) { |
| 418 unittest.expect(o.videoId, unittest.equals('foo')); | 418 unittest.expect(o.videoId, unittest.equals('foo')); |
| 419 } | 419 } |
| 420 buildCounterActivityContentDetailsUpload--; | 420 buildCounterActivityContentDetailsUpload--; |
| 421 } | 421 } |
| 422 | 422 |
| 423 buildUnnamed3327() { | 423 buildUnnamed716() { |
| 424 var o = new core.List<api.Activity>(); | 424 var o = new core.List<api.Activity>(); |
| 425 o.add(buildActivity()); | 425 o.add(buildActivity()); |
| 426 o.add(buildActivity()); | 426 o.add(buildActivity()); |
| 427 return o; | 427 return o; |
| 428 } | 428 } |
| 429 | 429 |
| 430 checkUnnamed3327(core.List<api.Activity> o) { | 430 checkUnnamed716(core.List<api.Activity> o) { |
| 431 unittest.expect(o, unittest.hasLength(2)); | 431 unittest.expect(o, unittest.hasLength(2)); |
| 432 checkActivity(o[0]); | 432 checkActivity(o[0]); |
| 433 checkActivity(o[1]); | 433 checkActivity(o[1]); |
| 434 } | 434 } |
| 435 | 435 |
| 436 core.int buildCounterActivityListResponse = 0; | 436 core.int buildCounterActivityListResponse = 0; |
| 437 buildActivityListResponse() { | 437 buildActivityListResponse() { |
| 438 var o = new api.ActivityListResponse(); | 438 var o = new api.ActivityListResponse(); |
| 439 buildCounterActivityListResponse++; | 439 buildCounterActivityListResponse++; |
| 440 if (buildCounterActivityListResponse < 3) { | 440 if (buildCounterActivityListResponse < 3) { |
| 441 o.etag = "foo"; | 441 o.etag = "foo"; |
| 442 o.eventId = "foo"; | 442 o.eventId = "foo"; |
| 443 o.items = buildUnnamed3327(); | 443 o.items = buildUnnamed716(); |
| 444 o.kind = "foo"; | 444 o.kind = "foo"; |
| 445 o.nextPageToken = "foo"; | 445 o.nextPageToken = "foo"; |
| 446 o.pageInfo = buildPageInfo(); | 446 o.pageInfo = buildPageInfo(); |
| 447 o.prevPageToken = "foo"; | 447 o.prevPageToken = "foo"; |
| 448 o.tokenPagination = buildTokenPagination(); | 448 o.tokenPagination = buildTokenPagination(); |
| 449 o.visitorId = "foo"; | 449 o.visitorId = "foo"; |
| 450 } | 450 } |
| 451 buildCounterActivityListResponse--; | 451 buildCounterActivityListResponse--; |
| 452 return o; | 452 return o; |
| 453 } | 453 } |
| 454 | 454 |
| 455 checkActivityListResponse(api.ActivityListResponse o) { | 455 checkActivityListResponse(api.ActivityListResponse o) { |
| 456 buildCounterActivityListResponse++; | 456 buildCounterActivityListResponse++; |
| 457 if (buildCounterActivityListResponse < 3) { | 457 if (buildCounterActivityListResponse < 3) { |
| 458 unittest.expect(o.etag, unittest.equals('foo')); | 458 unittest.expect(o.etag, unittest.equals('foo')); |
| 459 unittest.expect(o.eventId, unittest.equals('foo')); | 459 unittest.expect(o.eventId, unittest.equals('foo')); |
| 460 checkUnnamed3327(o.items); | 460 checkUnnamed716(o.items); |
| 461 unittest.expect(o.kind, unittest.equals('foo')); | 461 unittest.expect(o.kind, unittest.equals('foo')); |
| 462 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 462 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 463 checkPageInfo(o.pageInfo); | 463 checkPageInfo(o.pageInfo); |
| 464 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 464 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 465 checkTokenPagination(o.tokenPagination); | 465 checkTokenPagination(o.tokenPagination); |
| 466 unittest.expect(o.visitorId, unittest.equals('foo')); | 466 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 467 } | 467 } |
| 468 buildCounterActivityListResponse--; | 468 buildCounterActivityListResponse--; |
| 469 } | 469 } |
| 470 | 470 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 buildCounterCaption++; | 519 buildCounterCaption++; |
| 520 if (buildCounterCaption < 3) { | 520 if (buildCounterCaption < 3) { |
| 521 unittest.expect(o.etag, unittest.equals('foo')); | 521 unittest.expect(o.etag, unittest.equals('foo')); |
| 522 unittest.expect(o.id, unittest.equals('foo')); | 522 unittest.expect(o.id, unittest.equals('foo')); |
| 523 unittest.expect(o.kind, unittest.equals('foo')); | 523 unittest.expect(o.kind, unittest.equals('foo')); |
| 524 checkCaptionSnippet(o.snippet); | 524 checkCaptionSnippet(o.snippet); |
| 525 } | 525 } |
| 526 buildCounterCaption--; | 526 buildCounterCaption--; |
| 527 } | 527 } |
| 528 | 528 |
| 529 buildUnnamed3328() { | 529 buildUnnamed717() { |
| 530 var o = new core.List<api.Caption>(); | 530 var o = new core.List<api.Caption>(); |
| 531 o.add(buildCaption()); | 531 o.add(buildCaption()); |
| 532 o.add(buildCaption()); | 532 o.add(buildCaption()); |
| 533 return o; | 533 return o; |
| 534 } | 534 } |
| 535 | 535 |
| 536 checkUnnamed3328(core.List<api.Caption> o) { | 536 checkUnnamed717(core.List<api.Caption> o) { |
| 537 unittest.expect(o, unittest.hasLength(2)); | 537 unittest.expect(o, unittest.hasLength(2)); |
| 538 checkCaption(o[0]); | 538 checkCaption(o[0]); |
| 539 checkCaption(o[1]); | 539 checkCaption(o[1]); |
| 540 } | 540 } |
| 541 | 541 |
| 542 core.int buildCounterCaptionListResponse = 0; | 542 core.int buildCounterCaptionListResponse = 0; |
| 543 buildCaptionListResponse() { | 543 buildCaptionListResponse() { |
| 544 var o = new api.CaptionListResponse(); | 544 var o = new api.CaptionListResponse(); |
| 545 buildCounterCaptionListResponse++; | 545 buildCounterCaptionListResponse++; |
| 546 if (buildCounterCaptionListResponse < 3) { | 546 if (buildCounterCaptionListResponse < 3) { |
| 547 o.etag = "foo"; | 547 o.etag = "foo"; |
| 548 o.eventId = "foo"; | 548 o.eventId = "foo"; |
| 549 o.items = buildUnnamed3328(); | 549 o.items = buildUnnamed717(); |
| 550 o.kind = "foo"; | 550 o.kind = "foo"; |
| 551 o.visitorId = "foo"; | 551 o.visitorId = "foo"; |
| 552 } | 552 } |
| 553 buildCounterCaptionListResponse--; | 553 buildCounterCaptionListResponse--; |
| 554 return o; | 554 return o; |
| 555 } | 555 } |
| 556 | 556 |
| 557 checkCaptionListResponse(api.CaptionListResponse o) { | 557 checkCaptionListResponse(api.CaptionListResponse o) { |
| 558 buildCounterCaptionListResponse++; | 558 buildCounterCaptionListResponse++; |
| 559 if (buildCounterCaptionListResponse < 3) { | 559 if (buildCounterCaptionListResponse < 3) { |
| 560 unittest.expect(o.etag, unittest.equals('foo')); | 560 unittest.expect(o.etag, unittest.equals('foo')); |
| 561 unittest.expect(o.eventId, unittest.equals('foo')); | 561 unittest.expect(o.eventId, unittest.equals('foo')); |
| 562 checkUnnamed3328(o.items); | 562 checkUnnamed717(o.items); |
| 563 unittest.expect(o.kind, unittest.equals('foo')); | 563 unittest.expect(o.kind, unittest.equals('foo')); |
| 564 unittest.expect(o.visitorId, unittest.equals('foo')); | 564 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 565 } | 565 } |
| 566 buildCounterCaptionListResponse--; | 566 buildCounterCaptionListResponse--; |
| 567 } | 567 } |
| 568 | 568 |
| 569 core.int buildCounterCaptionSnippet = 0; | 569 core.int buildCounterCaptionSnippet = 0; |
| 570 buildCaptionSnippet() { | 570 buildCaptionSnippet() { |
| 571 var o = new api.CaptionSnippet(); | 571 var o = new api.CaptionSnippet(); |
| 572 buildCounterCaptionSnippet++; | 572 buildCounterCaptionSnippet++; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 if (buildCounterCdnSettings < 3) { | 629 if (buildCounterCdnSettings < 3) { |
| 630 unittest.expect(o.format, unittest.equals('foo')); | 630 unittest.expect(o.format, unittest.equals('foo')); |
| 631 unittest.expect(o.frameRate, unittest.equals('foo')); | 631 unittest.expect(o.frameRate, unittest.equals('foo')); |
| 632 checkIngestionInfo(o.ingestionInfo); | 632 checkIngestionInfo(o.ingestionInfo); |
| 633 unittest.expect(o.ingestionType, unittest.equals('foo')); | 633 unittest.expect(o.ingestionType, unittest.equals('foo')); |
| 634 unittest.expect(o.resolution, unittest.equals('foo')); | 634 unittest.expect(o.resolution, unittest.equals('foo')); |
| 635 } | 635 } |
| 636 buildCounterCdnSettings--; | 636 buildCounterCdnSettings--; |
| 637 } | 637 } |
| 638 | 638 |
| 639 buildUnnamed3329() { | 639 buildUnnamed718() { |
| 640 var o = new core.Map<core.String, api.ChannelLocalization>(); | 640 var o = new core.Map<core.String, api.ChannelLocalization>(); |
| 641 o["x"] = buildChannelLocalization(); | 641 o["x"] = buildChannelLocalization(); |
| 642 o["y"] = buildChannelLocalization(); | 642 o["y"] = buildChannelLocalization(); |
| 643 return o; | 643 return o; |
| 644 } | 644 } |
| 645 | 645 |
| 646 checkUnnamed3329(core.Map<core.String, api.ChannelLocalization> o) { | 646 checkUnnamed718(core.Map<core.String, api.ChannelLocalization> o) { |
| 647 unittest.expect(o, unittest.hasLength(2)); | 647 unittest.expect(o, unittest.hasLength(2)); |
| 648 checkChannelLocalization(o["x"]); | 648 checkChannelLocalization(o["x"]); |
| 649 checkChannelLocalization(o["y"]); | 649 checkChannelLocalization(o["y"]); |
| 650 } | 650 } |
| 651 | 651 |
| 652 core.int buildCounterChannel = 0; | 652 core.int buildCounterChannel = 0; |
| 653 buildChannel() { | 653 buildChannel() { |
| 654 var o = new api.Channel(); | 654 var o = new api.Channel(); |
| 655 buildCounterChannel++; | 655 buildCounterChannel++; |
| 656 if (buildCounterChannel < 3) { | 656 if (buildCounterChannel < 3) { |
| 657 o.auditDetails = buildChannelAuditDetails(); | 657 o.auditDetails = buildChannelAuditDetails(); |
| 658 o.brandingSettings = buildChannelBrandingSettings(); | 658 o.brandingSettings = buildChannelBrandingSettings(); |
| 659 o.contentDetails = buildChannelContentDetails(); | 659 o.contentDetails = buildChannelContentDetails(); |
| 660 o.contentOwnerDetails = buildChannelContentOwnerDetails(); | 660 o.contentOwnerDetails = buildChannelContentOwnerDetails(); |
| 661 o.conversionPings = buildChannelConversionPings(); | 661 o.conversionPings = buildChannelConversionPings(); |
| 662 o.etag = "foo"; | 662 o.etag = "foo"; |
| 663 o.id = "foo"; | 663 o.id = "foo"; |
| 664 o.invideoPromotion = buildInvideoPromotion(); | 664 o.invideoPromotion = buildInvideoPromotion(); |
| 665 o.kind = "foo"; | 665 o.kind = "foo"; |
| 666 o.localizations = buildUnnamed3329(); | 666 o.localizations = buildUnnamed718(); |
| 667 o.snippet = buildChannelSnippet(); | 667 o.snippet = buildChannelSnippet(); |
| 668 o.statistics = buildChannelStatistics(); | 668 o.statistics = buildChannelStatistics(); |
| 669 o.status = buildChannelStatus(); | 669 o.status = buildChannelStatus(); |
| 670 o.topicDetails = buildChannelTopicDetails(); | 670 o.topicDetails = buildChannelTopicDetails(); |
| 671 } | 671 } |
| 672 buildCounterChannel--; | 672 buildCounterChannel--; |
| 673 return o; | 673 return o; |
| 674 } | 674 } |
| 675 | 675 |
| 676 checkChannel(api.Channel o) { | 676 checkChannel(api.Channel o) { |
| 677 buildCounterChannel++; | 677 buildCounterChannel++; |
| 678 if (buildCounterChannel < 3) { | 678 if (buildCounterChannel < 3) { |
| 679 checkChannelAuditDetails(o.auditDetails); | 679 checkChannelAuditDetails(o.auditDetails); |
| 680 checkChannelBrandingSettings(o.brandingSettings); | 680 checkChannelBrandingSettings(o.brandingSettings); |
| 681 checkChannelContentDetails(o.contentDetails); | 681 checkChannelContentDetails(o.contentDetails); |
| 682 checkChannelContentOwnerDetails(o.contentOwnerDetails); | 682 checkChannelContentOwnerDetails(o.contentOwnerDetails); |
| 683 checkChannelConversionPings(o.conversionPings); | 683 checkChannelConversionPings(o.conversionPings); |
| 684 unittest.expect(o.etag, unittest.equals('foo')); | 684 unittest.expect(o.etag, unittest.equals('foo')); |
| 685 unittest.expect(o.id, unittest.equals('foo')); | 685 unittest.expect(o.id, unittest.equals('foo')); |
| 686 checkInvideoPromotion(o.invideoPromotion); | 686 checkInvideoPromotion(o.invideoPromotion); |
| 687 unittest.expect(o.kind, unittest.equals('foo')); | 687 unittest.expect(o.kind, unittest.equals('foo')); |
| 688 checkUnnamed3329(o.localizations); | 688 checkUnnamed718(o.localizations); |
| 689 checkChannelSnippet(o.snippet); | 689 checkChannelSnippet(o.snippet); |
| 690 checkChannelStatistics(o.statistics); | 690 checkChannelStatistics(o.statistics); |
| 691 checkChannelStatus(o.status); | 691 checkChannelStatus(o.status); |
| 692 checkChannelTopicDetails(o.topicDetails); | 692 checkChannelTopicDetails(o.topicDetails); |
| 693 } | 693 } |
| 694 buildCounterChannel--; | 694 buildCounterChannel--; |
| 695 } | 695 } |
| 696 | 696 |
| 697 core.int buildCounterChannelAuditDetails = 0; | 697 core.int buildCounterChannelAuditDetails = 0; |
| 698 buildChannelAuditDetails() { | 698 buildChannelAuditDetails() { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 checkChannelBannerResource(api.ChannelBannerResource o) { | 735 checkChannelBannerResource(api.ChannelBannerResource o) { |
| 736 buildCounterChannelBannerResource++; | 736 buildCounterChannelBannerResource++; |
| 737 if (buildCounterChannelBannerResource < 3) { | 737 if (buildCounterChannelBannerResource < 3) { |
| 738 unittest.expect(o.etag, unittest.equals('foo')); | 738 unittest.expect(o.etag, unittest.equals('foo')); |
| 739 unittest.expect(o.kind, unittest.equals('foo')); | 739 unittest.expect(o.kind, unittest.equals('foo')); |
| 740 unittest.expect(o.url, unittest.equals('foo')); | 740 unittest.expect(o.url, unittest.equals('foo')); |
| 741 } | 741 } |
| 742 buildCounterChannelBannerResource--; | 742 buildCounterChannelBannerResource--; |
| 743 } | 743 } |
| 744 | 744 |
| 745 buildUnnamed3330() { | 745 buildUnnamed719() { |
| 746 var o = new core.List<api.PropertyValue>(); | 746 var o = new core.List<api.PropertyValue>(); |
| 747 o.add(buildPropertyValue()); | 747 o.add(buildPropertyValue()); |
| 748 o.add(buildPropertyValue()); | 748 o.add(buildPropertyValue()); |
| 749 return o; | 749 return o; |
| 750 } | 750 } |
| 751 | 751 |
| 752 checkUnnamed3330(core.List<api.PropertyValue> o) { | 752 checkUnnamed719(core.List<api.PropertyValue> o) { |
| 753 unittest.expect(o, unittest.hasLength(2)); | 753 unittest.expect(o, unittest.hasLength(2)); |
| 754 checkPropertyValue(o[0]); | 754 checkPropertyValue(o[0]); |
| 755 checkPropertyValue(o[1]); | 755 checkPropertyValue(o[1]); |
| 756 } | 756 } |
| 757 | 757 |
| 758 core.int buildCounterChannelBrandingSettings = 0; | 758 core.int buildCounterChannelBrandingSettings = 0; |
| 759 buildChannelBrandingSettings() { | 759 buildChannelBrandingSettings() { |
| 760 var o = new api.ChannelBrandingSettings(); | 760 var o = new api.ChannelBrandingSettings(); |
| 761 buildCounterChannelBrandingSettings++; | 761 buildCounterChannelBrandingSettings++; |
| 762 if (buildCounterChannelBrandingSettings < 3) { | 762 if (buildCounterChannelBrandingSettings < 3) { |
| 763 o.channel = buildChannelSettings(); | 763 o.channel = buildChannelSettings(); |
| 764 o.hints = buildUnnamed3330(); | 764 o.hints = buildUnnamed719(); |
| 765 o.image = buildImageSettings(); | 765 o.image = buildImageSettings(); |
| 766 o.watch = buildWatchSettings(); | 766 o.watch = buildWatchSettings(); |
| 767 } | 767 } |
| 768 buildCounterChannelBrandingSettings--; | 768 buildCounterChannelBrandingSettings--; |
| 769 return o; | 769 return o; |
| 770 } | 770 } |
| 771 | 771 |
| 772 checkChannelBrandingSettings(api.ChannelBrandingSettings o) { | 772 checkChannelBrandingSettings(api.ChannelBrandingSettings o) { |
| 773 buildCounterChannelBrandingSettings++; | 773 buildCounterChannelBrandingSettings++; |
| 774 if (buildCounterChannelBrandingSettings < 3) { | 774 if (buildCounterChannelBrandingSettings < 3) { |
| 775 checkChannelSettings(o.channel); | 775 checkChannelSettings(o.channel); |
| 776 checkUnnamed3330(o.hints); | 776 checkUnnamed719(o.hints); |
| 777 checkImageSettings(o.image); | 777 checkImageSettings(o.image); |
| 778 checkWatchSettings(o.watch); | 778 checkWatchSettings(o.watch); |
| 779 } | 779 } |
| 780 buildCounterChannelBrandingSettings--; | 780 buildCounterChannelBrandingSettings--; |
| 781 } | 781 } |
| 782 | 782 |
| 783 core.int buildCounterChannelContentDetailsRelatedPlaylists = 0; | 783 core.int buildCounterChannelContentDetailsRelatedPlaylists = 0; |
| 784 buildChannelContentDetailsRelatedPlaylists() { | 784 buildChannelContentDetailsRelatedPlaylists() { |
| 785 var o = new api.ChannelContentDetailsRelatedPlaylists(); | 785 var o = new api.ChannelContentDetailsRelatedPlaylists(); |
| 786 buildCounterChannelContentDetailsRelatedPlaylists++; | 786 buildCounterChannelContentDetailsRelatedPlaylists++; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 | 863 |
| 864 checkChannelConversionPing(api.ChannelConversionPing o) { | 864 checkChannelConversionPing(api.ChannelConversionPing o) { |
| 865 buildCounterChannelConversionPing++; | 865 buildCounterChannelConversionPing++; |
| 866 if (buildCounterChannelConversionPing < 3) { | 866 if (buildCounterChannelConversionPing < 3) { |
| 867 unittest.expect(o.context, unittest.equals('foo')); | 867 unittest.expect(o.context, unittest.equals('foo')); |
| 868 unittest.expect(o.conversionUrl, unittest.equals('foo')); | 868 unittest.expect(o.conversionUrl, unittest.equals('foo')); |
| 869 } | 869 } |
| 870 buildCounterChannelConversionPing--; | 870 buildCounterChannelConversionPing--; |
| 871 } | 871 } |
| 872 | 872 |
| 873 buildUnnamed3331() { | 873 buildUnnamed720() { |
| 874 var o = new core.List<api.ChannelConversionPing>(); | 874 var o = new core.List<api.ChannelConversionPing>(); |
| 875 o.add(buildChannelConversionPing()); | 875 o.add(buildChannelConversionPing()); |
| 876 o.add(buildChannelConversionPing()); | 876 o.add(buildChannelConversionPing()); |
| 877 return o; | 877 return o; |
| 878 } | 878 } |
| 879 | 879 |
| 880 checkUnnamed3331(core.List<api.ChannelConversionPing> o) { | 880 checkUnnamed720(core.List<api.ChannelConversionPing> o) { |
| 881 unittest.expect(o, unittest.hasLength(2)); | 881 unittest.expect(o, unittest.hasLength(2)); |
| 882 checkChannelConversionPing(o[0]); | 882 checkChannelConversionPing(o[0]); |
| 883 checkChannelConversionPing(o[1]); | 883 checkChannelConversionPing(o[1]); |
| 884 } | 884 } |
| 885 | 885 |
| 886 core.int buildCounterChannelConversionPings = 0; | 886 core.int buildCounterChannelConversionPings = 0; |
| 887 buildChannelConversionPings() { | 887 buildChannelConversionPings() { |
| 888 var o = new api.ChannelConversionPings(); | 888 var o = new api.ChannelConversionPings(); |
| 889 buildCounterChannelConversionPings++; | 889 buildCounterChannelConversionPings++; |
| 890 if (buildCounterChannelConversionPings < 3) { | 890 if (buildCounterChannelConversionPings < 3) { |
| 891 o.pings = buildUnnamed3331(); | 891 o.pings = buildUnnamed720(); |
| 892 } | 892 } |
| 893 buildCounterChannelConversionPings--; | 893 buildCounterChannelConversionPings--; |
| 894 return o; | 894 return o; |
| 895 } | 895 } |
| 896 | 896 |
| 897 checkChannelConversionPings(api.ChannelConversionPings o) { | 897 checkChannelConversionPings(api.ChannelConversionPings o) { |
| 898 buildCounterChannelConversionPings++; | 898 buildCounterChannelConversionPings++; |
| 899 if (buildCounterChannelConversionPings < 3) { | 899 if (buildCounterChannelConversionPings < 3) { |
| 900 checkUnnamed3331(o.pings); | 900 checkUnnamed720(o.pings); |
| 901 } | 901 } |
| 902 buildCounterChannelConversionPings--; | 902 buildCounterChannelConversionPings--; |
| 903 } | 903 } |
| 904 | 904 |
| 905 buildUnnamed3332() { | 905 buildUnnamed721() { |
| 906 var o = new core.List<api.Channel>(); | 906 var o = new core.List<api.Channel>(); |
| 907 o.add(buildChannel()); | 907 o.add(buildChannel()); |
| 908 o.add(buildChannel()); | 908 o.add(buildChannel()); |
| 909 return o; | 909 return o; |
| 910 } | 910 } |
| 911 | 911 |
| 912 checkUnnamed3332(core.List<api.Channel> o) { | 912 checkUnnamed721(core.List<api.Channel> o) { |
| 913 unittest.expect(o, unittest.hasLength(2)); | 913 unittest.expect(o, unittest.hasLength(2)); |
| 914 checkChannel(o[0]); | 914 checkChannel(o[0]); |
| 915 checkChannel(o[1]); | 915 checkChannel(o[1]); |
| 916 } | 916 } |
| 917 | 917 |
| 918 core.int buildCounterChannelListResponse = 0; | 918 core.int buildCounterChannelListResponse = 0; |
| 919 buildChannelListResponse() { | 919 buildChannelListResponse() { |
| 920 var o = new api.ChannelListResponse(); | 920 var o = new api.ChannelListResponse(); |
| 921 buildCounterChannelListResponse++; | 921 buildCounterChannelListResponse++; |
| 922 if (buildCounterChannelListResponse < 3) { | 922 if (buildCounterChannelListResponse < 3) { |
| 923 o.etag = "foo"; | 923 o.etag = "foo"; |
| 924 o.eventId = "foo"; | 924 o.eventId = "foo"; |
| 925 o.items = buildUnnamed3332(); | 925 o.items = buildUnnamed721(); |
| 926 o.kind = "foo"; | 926 o.kind = "foo"; |
| 927 o.nextPageToken = "foo"; | 927 o.nextPageToken = "foo"; |
| 928 o.pageInfo = buildPageInfo(); | 928 o.pageInfo = buildPageInfo(); |
| 929 o.prevPageToken = "foo"; | 929 o.prevPageToken = "foo"; |
| 930 o.tokenPagination = buildTokenPagination(); | 930 o.tokenPagination = buildTokenPagination(); |
| 931 o.visitorId = "foo"; | 931 o.visitorId = "foo"; |
| 932 } | 932 } |
| 933 buildCounterChannelListResponse--; | 933 buildCounterChannelListResponse--; |
| 934 return o; | 934 return o; |
| 935 } | 935 } |
| 936 | 936 |
| 937 checkChannelListResponse(api.ChannelListResponse o) { | 937 checkChannelListResponse(api.ChannelListResponse o) { |
| 938 buildCounterChannelListResponse++; | 938 buildCounterChannelListResponse++; |
| 939 if (buildCounterChannelListResponse < 3) { | 939 if (buildCounterChannelListResponse < 3) { |
| 940 unittest.expect(o.etag, unittest.equals('foo')); | 940 unittest.expect(o.etag, unittest.equals('foo')); |
| 941 unittest.expect(o.eventId, unittest.equals('foo')); | 941 unittest.expect(o.eventId, unittest.equals('foo')); |
| 942 checkUnnamed3332(o.items); | 942 checkUnnamed721(o.items); |
| 943 unittest.expect(o.kind, unittest.equals('foo')); | 943 unittest.expect(o.kind, unittest.equals('foo')); |
| 944 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 944 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 945 checkPageInfo(o.pageInfo); | 945 checkPageInfo(o.pageInfo); |
| 946 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 946 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 947 checkTokenPagination(o.tokenPagination); | 947 checkTokenPagination(o.tokenPagination); |
| 948 unittest.expect(o.visitorId, unittest.equals('foo')); | 948 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 949 } | 949 } |
| 950 buildCounterChannelListResponse--; | 950 buildCounterChannelListResponse--; |
| 951 } | 951 } |
| 952 | 952 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 buildCounterChannelProfileDetails++; | 989 buildCounterChannelProfileDetails++; |
| 990 if (buildCounterChannelProfileDetails < 3) { | 990 if (buildCounterChannelProfileDetails < 3) { |
| 991 unittest.expect(o.channelId, unittest.equals('foo')); | 991 unittest.expect(o.channelId, unittest.equals('foo')); |
| 992 unittest.expect(o.channelUrl, unittest.equals('foo')); | 992 unittest.expect(o.channelUrl, unittest.equals('foo')); |
| 993 unittest.expect(o.displayName, unittest.equals('foo')); | 993 unittest.expect(o.displayName, unittest.equals('foo')); |
| 994 unittest.expect(o.profileImageUrl, unittest.equals('foo')); | 994 unittest.expect(o.profileImageUrl, unittest.equals('foo')); |
| 995 } | 995 } |
| 996 buildCounterChannelProfileDetails--; | 996 buildCounterChannelProfileDetails--; |
| 997 } | 997 } |
| 998 | 998 |
| 999 buildUnnamed3333() { | 999 buildUnnamed722() { |
| 1000 var o = new core.Map<core.String, api.ChannelSectionLocalization>(); | 1000 var o = new core.Map<core.String, api.ChannelSectionLocalization>(); |
| 1001 o["x"] = buildChannelSectionLocalization(); | 1001 o["x"] = buildChannelSectionLocalization(); |
| 1002 o["y"] = buildChannelSectionLocalization(); | 1002 o["y"] = buildChannelSectionLocalization(); |
| 1003 return o; | 1003 return o; |
| 1004 } | 1004 } |
| 1005 | 1005 |
| 1006 checkUnnamed3333(core.Map<core.String, api.ChannelSectionLocalization> o) { | 1006 checkUnnamed722(core.Map<core.String, api.ChannelSectionLocalization> o) { |
| 1007 unittest.expect(o, unittest.hasLength(2)); | 1007 unittest.expect(o, unittest.hasLength(2)); |
| 1008 checkChannelSectionLocalization(o["x"]); | 1008 checkChannelSectionLocalization(o["x"]); |
| 1009 checkChannelSectionLocalization(o["y"]); | 1009 checkChannelSectionLocalization(o["y"]); |
| 1010 } | 1010 } |
| 1011 | 1011 |
| 1012 core.int buildCounterChannelSection = 0; | 1012 core.int buildCounterChannelSection = 0; |
| 1013 buildChannelSection() { | 1013 buildChannelSection() { |
| 1014 var o = new api.ChannelSection(); | 1014 var o = new api.ChannelSection(); |
| 1015 buildCounterChannelSection++; | 1015 buildCounterChannelSection++; |
| 1016 if (buildCounterChannelSection < 3) { | 1016 if (buildCounterChannelSection < 3) { |
| 1017 o.contentDetails = buildChannelSectionContentDetails(); | 1017 o.contentDetails = buildChannelSectionContentDetails(); |
| 1018 o.etag = "foo"; | 1018 o.etag = "foo"; |
| 1019 o.id = "foo"; | 1019 o.id = "foo"; |
| 1020 o.kind = "foo"; | 1020 o.kind = "foo"; |
| 1021 o.localizations = buildUnnamed3333(); | 1021 o.localizations = buildUnnamed722(); |
| 1022 o.snippet = buildChannelSectionSnippet(); | 1022 o.snippet = buildChannelSectionSnippet(); |
| 1023 o.targeting = buildChannelSectionTargeting(); | 1023 o.targeting = buildChannelSectionTargeting(); |
| 1024 } | 1024 } |
| 1025 buildCounterChannelSection--; | 1025 buildCounterChannelSection--; |
| 1026 return o; | 1026 return o; |
| 1027 } | 1027 } |
| 1028 | 1028 |
| 1029 checkChannelSection(api.ChannelSection o) { | 1029 checkChannelSection(api.ChannelSection o) { |
| 1030 buildCounterChannelSection++; | 1030 buildCounterChannelSection++; |
| 1031 if (buildCounterChannelSection < 3) { | 1031 if (buildCounterChannelSection < 3) { |
| 1032 checkChannelSectionContentDetails(o.contentDetails); | 1032 checkChannelSectionContentDetails(o.contentDetails); |
| 1033 unittest.expect(o.etag, unittest.equals('foo')); | 1033 unittest.expect(o.etag, unittest.equals('foo')); |
| 1034 unittest.expect(o.id, unittest.equals('foo')); | 1034 unittest.expect(o.id, unittest.equals('foo')); |
| 1035 unittest.expect(o.kind, unittest.equals('foo')); | 1035 unittest.expect(o.kind, unittest.equals('foo')); |
| 1036 checkUnnamed3333(o.localizations); | 1036 checkUnnamed722(o.localizations); |
| 1037 checkChannelSectionSnippet(o.snippet); | 1037 checkChannelSectionSnippet(o.snippet); |
| 1038 checkChannelSectionTargeting(o.targeting); | 1038 checkChannelSectionTargeting(o.targeting); |
| 1039 } | 1039 } |
| 1040 buildCounterChannelSection--; | 1040 buildCounterChannelSection--; |
| 1041 } | 1041 } |
| 1042 | 1042 |
| 1043 buildUnnamed3334() { | 1043 buildUnnamed723() { |
| 1044 var o = new core.List<core.String>(); | 1044 var o = new core.List<core.String>(); |
| 1045 o.add("foo"); | 1045 o.add("foo"); |
| 1046 o.add("foo"); | 1046 o.add("foo"); |
| 1047 return o; | 1047 return o; |
| 1048 } | 1048 } |
| 1049 | 1049 |
| 1050 checkUnnamed3334(core.List<core.String> o) { | 1050 checkUnnamed723(core.List<core.String> o) { |
| 1051 unittest.expect(o, unittest.hasLength(2)); | 1051 unittest.expect(o, unittest.hasLength(2)); |
| 1052 unittest.expect(o[0], unittest.equals('foo')); | 1052 unittest.expect(o[0], unittest.equals('foo')); |
| 1053 unittest.expect(o[1], unittest.equals('foo')); | 1053 unittest.expect(o[1], unittest.equals('foo')); |
| 1054 } | 1054 } |
| 1055 | 1055 |
| 1056 buildUnnamed3335() { | 1056 buildUnnamed724() { |
| 1057 var o = new core.List<core.String>(); | 1057 var o = new core.List<core.String>(); |
| 1058 o.add("foo"); | 1058 o.add("foo"); |
| 1059 o.add("foo"); | 1059 o.add("foo"); |
| 1060 return o; | 1060 return o; |
| 1061 } | 1061 } |
| 1062 | 1062 |
| 1063 checkUnnamed3335(core.List<core.String> o) { | 1063 checkUnnamed724(core.List<core.String> o) { |
| 1064 unittest.expect(o, unittest.hasLength(2)); | 1064 unittest.expect(o, unittest.hasLength(2)); |
| 1065 unittest.expect(o[0], unittest.equals('foo')); | 1065 unittest.expect(o[0], unittest.equals('foo')); |
| 1066 unittest.expect(o[1], unittest.equals('foo')); | 1066 unittest.expect(o[1], unittest.equals('foo')); |
| 1067 } | 1067 } |
| 1068 | 1068 |
| 1069 core.int buildCounterChannelSectionContentDetails = 0; | 1069 core.int buildCounterChannelSectionContentDetails = 0; |
| 1070 buildChannelSectionContentDetails() { | 1070 buildChannelSectionContentDetails() { |
| 1071 var o = new api.ChannelSectionContentDetails(); | 1071 var o = new api.ChannelSectionContentDetails(); |
| 1072 buildCounterChannelSectionContentDetails++; | 1072 buildCounterChannelSectionContentDetails++; |
| 1073 if (buildCounterChannelSectionContentDetails < 3) { | 1073 if (buildCounterChannelSectionContentDetails < 3) { |
| 1074 o.channels = buildUnnamed3334(); | 1074 o.channels = buildUnnamed723(); |
| 1075 o.playlists = buildUnnamed3335(); | 1075 o.playlists = buildUnnamed724(); |
| 1076 } | 1076 } |
| 1077 buildCounterChannelSectionContentDetails--; | 1077 buildCounterChannelSectionContentDetails--; |
| 1078 return o; | 1078 return o; |
| 1079 } | 1079 } |
| 1080 | 1080 |
| 1081 checkChannelSectionContentDetails(api.ChannelSectionContentDetails o) { | 1081 checkChannelSectionContentDetails(api.ChannelSectionContentDetails o) { |
| 1082 buildCounterChannelSectionContentDetails++; | 1082 buildCounterChannelSectionContentDetails++; |
| 1083 if (buildCounterChannelSectionContentDetails < 3) { | 1083 if (buildCounterChannelSectionContentDetails < 3) { |
| 1084 checkUnnamed3334(o.channels); | 1084 checkUnnamed723(o.channels); |
| 1085 checkUnnamed3335(o.playlists); | 1085 checkUnnamed724(o.playlists); |
| 1086 } | 1086 } |
| 1087 buildCounterChannelSectionContentDetails--; | 1087 buildCounterChannelSectionContentDetails--; |
| 1088 } | 1088 } |
| 1089 | 1089 |
| 1090 buildUnnamed3336() { | 1090 buildUnnamed725() { |
| 1091 var o = new core.List<api.ChannelSection>(); | 1091 var o = new core.List<api.ChannelSection>(); |
| 1092 o.add(buildChannelSection()); | 1092 o.add(buildChannelSection()); |
| 1093 o.add(buildChannelSection()); | 1093 o.add(buildChannelSection()); |
| 1094 return o; | 1094 return o; |
| 1095 } | 1095 } |
| 1096 | 1096 |
| 1097 checkUnnamed3336(core.List<api.ChannelSection> o) { | 1097 checkUnnamed725(core.List<api.ChannelSection> o) { |
| 1098 unittest.expect(o, unittest.hasLength(2)); | 1098 unittest.expect(o, unittest.hasLength(2)); |
| 1099 checkChannelSection(o[0]); | 1099 checkChannelSection(o[0]); |
| 1100 checkChannelSection(o[1]); | 1100 checkChannelSection(o[1]); |
| 1101 } | 1101 } |
| 1102 | 1102 |
| 1103 core.int buildCounterChannelSectionListResponse = 0; | 1103 core.int buildCounterChannelSectionListResponse = 0; |
| 1104 buildChannelSectionListResponse() { | 1104 buildChannelSectionListResponse() { |
| 1105 var o = new api.ChannelSectionListResponse(); | 1105 var o = new api.ChannelSectionListResponse(); |
| 1106 buildCounterChannelSectionListResponse++; | 1106 buildCounterChannelSectionListResponse++; |
| 1107 if (buildCounterChannelSectionListResponse < 3) { | 1107 if (buildCounterChannelSectionListResponse < 3) { |
| 1108 o.etag = "foo"; | 1108 o.etag = "foo"; |
| 1109 o.eventId = "foo"; | 1109 o.eventId = "foo"; |
| 1110 o.items = buildUnnamed3336(); | 1110 o.items = buildUnnamed725(); |
| 1111 o.kind = "foo"; | 1111 o.kind = "foo"; |
| 1112 o.visitorId = "foo"; | 1112 o.visitorId = "foo"; |
| 1113 } | 1113 } |
| 1114 buildCounterChannelSectionListResponse--; | 1114 buildCounterChannelSectionListResponse--; |
| 1115 return o; | 1115 return o; |
| 1116 } | 1116 } |
| 1117 | 1117 |
| 1118 checkChannelSectionListResponse(api.ChannelSectionListResponse o) { | 1118 checkChannelSectionListResponse(api.ChannelSectionListResponse o) { |
| 1119 buildCounterChannelSectionListResponse++; | 1119 buildCounterChannelSectionListResponse++; |
| 1120 if (buildCounterChannelSectionListResponse < 3) { | 1120 if (buildCounterChannelSectionListResponse < 3) { |
| 1121 unittest.expect(o.etag, unittest.equals('foo')); | 1121 unittest.expect(o.etag, unittest.equals('foo')); |
| 1122 unittest.expect(o.eventId, unittest.equals('foo')); | 1122 unittest.expect(o.eventId, unittest.equals('foo')); |
| 1123 checkUnnamed3336(o.items); | 1123 checkUnnamed725(o.items); |
| 1124 unittest.expect(o.kind, unittest.equals('foo')); | 1124 unittest.expect(o.kind, unittest.equals('foo')); |
| 1125 unittest.expect(o.visitorId, unittest.equals('foo')); | 1125 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 1126 } | 1126 } |
| 1127 buildCounterChannelSectionListResponse--; | 1127 buildCounterChannelSectionListResponse--; |
| 1128 } | 1128 } |
| 1129 | 1129 |
| 1130 core.int buildCounterChannelSectionLocalization = 0; | 1130 core.int buildCounterChannelSectionLocalization = 0; |
| 1131 buildChannelSectionLocalization() { | 1131 buildChannelSectionLocalization() { |
| 1132 var o = new api.ChannelSectionLocalization(); | 1132 var o = new api.ChannelSectionLocalization(); |
| 1133 buildCounterChannelSectionLocalization++; | 1133 buildCounterChannelSectionLocalization++; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1170 unittest.expect(o.defaultLanguage, unittest.equals('foo')); | 1170 unittest.expect(o.defaultLanguage, unittest.equals('foo')); |
| 1171 checkChannelSectionLocalization(o.localized); | 1171 checkChannelSectionLocalization(o.localized); |
| 1172 unittest.expect(o.position, unittest.equals(42)); | 1172 unittest.expect(o.position, unittest.equals(42)); |
| 1173 unittest.expect(o.style, unittest.equals('foo')); | 1173 unittest.expect(o.style, unittest.equals('foo')); |
| 1174 unittest.expect(o.title, unittest.equals('foo')); | 1174 unittest.expect(o.title, unittest.equals('foo')); |
| 1175 unittest.expect(o.type, unittest.equals('foo')); | 1175 unittest.expect(o.type, unittest.equals('foo')); |
| 1176 } | 1176 } |
| 1177 buildCounterChannelSectionSnippet--; | 1177 buildCounterChannelSectionSnippet--; |
| 1178 } | 1178 } |
| 1179 | 1179 |
| 1180 buildUnnamed3337() { | 1180 buildUnnamed726() { |
| 1181 var o = new core.List<core.String>(); | 1181 var o = new core.List<core.String>(); |
| 1182 o.add("foo"); | 1182 o.add("foo"); |
| 1183 o.add("foo"); | 1183 o.add("foo"); |
| 1184 return o; | 1184 return o; |
| 1185 } | 1185 } |
| 1186 | 1186 |
| 1187 checkUnnamed3337(core.List<core.String> o) { | 1187 checkUnnamed726(core.List<core.String> o) { |
| 1188 unittest.expect(o, unittest.hasLength(2)); | 1188 unittest.expect(o, unittest.hasLength(2)); |
| 1189 unittest.expect(o[0], unittest.equals('foo')); | 1189 unittest.expect(o[0], unittest.equals('foo')); |
| 1190 unittest.expect(o[1], unittest.equals('foo')); | 1190 unittest.expect(o[1], unittest.equals('foo')); |
| 1191 } | 1191 } |
| 1192 | 1192 |
| 1193 buildUnnamed3338() { | 1193 buildUnnamed727() { |
| 1194 var o = new core.List<core.String>(); | 1194 var o = new core.List<core.String>(); |
| 1195 o.add("foo"); | 1195 o.add("foo"); |
| 1196 o.add("foo"); | 1196 o.add("foo"); |
| 1197 return o; | 1197 return o; |
| 1198 } | 1198 } |
| 1199 | 1199 |
| 1200 checkUnnamed3338(core.List<core.String> o) { | 1200 checkUnnamed727(core.List<core.String> o) { |
| 1201 unittest.expect(o, unittest.hasLength(2)); | 1201 unittest.expect(o, unittest.hasLength(2)); |
| 1202 unittest.expect(o[0], unittest.equals('foo')); | 1202 unittest.expect(o[0], unittest.equals('foo')); |
| 1203 unittest.expect(o[1], unittest.equals('foo')); | 1203 unittest.expect(o[1], unittest.equals('foo')); |
| 1204 } | 1204 } |
| 1205 | 1205 |
| 1206 buildUnnamed3339() { | 1206 buildUnnamed728() { |
| 1207 var o = new core.List<core.String>(); | 1207 var o = new core.List<core.String>(); |
| 1208 o.add("foo"); | 1208 o.add("foo"); |
| 1209 o.add("foo"); | 1209 o.add("foo"); |
| 1210 return o; | 1210 return o; |
| 1211 } | 1211 } |
| 1212 | 1212 |
| 1213 checkUnnamed3339(core.List<core.String> o) { | 1213 checkUnnamed728(core.List<core.String> o) { |
| 1214 unittest.expect(o, unittest.hasLength(2)); | 1214 unittest.expect(o, unittest.hasLength(2)); |
| 1215 unittest.expect(o[0], unittest.equals('foo')); | 1215 unittest.expect(o[0], unittest.equals('foo')); |
| 1216 unittest.expect(o[1], unittest.equals('foo')); | 1216 unittest.expect(o[1], unittest.equals('foo')); |
| 1217 } | 1217 } |
| 1218 | 1218 |
| 1219 core.int buildCounterChannelSectionTargeting = 0; | 1219 core.int buildCounterChannelSectionTargeting = 0; |
| 1220 buildChannelSectionTargeting() { | 1220 buildChannelSectionTargeting() { |
| 1221 var o = new api.ChannelSectionTargeting(); | 1221 var o = new api.ChannelSectionTargeting(); |
| 1222 buildCounterChannelSectionTargeting++; | 1222 buildCounterChannelSectionTargeting++; |
| 1223 if (buildCounterChannelSectionTargeting < 3) { | 1223 if (buildCounterChannelSectionTargeting < 3) { |
| 1224 o.countries = buildUnnamed3337(); | 1224 o.countries = buildUnnamed726(); |
| 1225 o.languages = buildUnnamed3338(); | 1225 o.languages = buildUnnamed727(); |
| 1226 o.regions = buildUnnamed3339(); | 1226 o.regions = buildUnnamed728(); |
| 1227 } | 1227 } |
| 1228 buildCounterChannelSectionTargeting--; | 1228 buildCounterChannelSectionTargeting--; |
| 1229 return o; | 1229 return o; |
| 1230 } | 1230 } |
| 1231 | 1231 |
| 1232 checkChannelSectionTargeting(api.ChannelSectionTargeting o) { | 1232 checkChannelSectionTargeting(api.ChannelSectionTargeting o) { |
| 1233 buildCounterChannelSectionTargeting++; | 1233 buildCounterChannelSectionTargeting++; |
| 1234 if (buildCounterChannelSectionTargeting < 3) { | 1234 if (buildCounterChannelSectionTargeting < 3) { |
| 1235 checkUnnamed3337(o.countries); | 1235 checkUnnamed726(o.countries); |
| 1236 checkUnnamed3338(o.languages); | 1236 checkUnnamed727(o.languages); |
| 1237 checkUnnamed3339(o.regions); | 1237 checkUnnamed728(o.regions); |
| 1238 } | 1238 } |
| 1239 buildCounterChannelSectionTargeting--; | 1239 buildCounterChannelSectionTargeting--; |
| 1240 } | 1240 } |
| 1241 | 1241 |
| 1242 buildUnnamed3340() { | 1242 buildUnnamed729() { |
| 1243 var o = new core.List<core.String>(); | 1243 var o = new core.List<core.String>(); |
| 1244 o.add("foo"); | 1244 o.add("foo"); |
| 1245 o.add("foo"); | 1245 o.add("foo"); |
| 1246 return o; | 1246 return o; |
| 1247 } | 1247 } |
| 1248 | 1248 |
| 1249 checkUnnamed3340(core.List<core.String> o) { | 1249 checkUnnamed729(core.List<core.String> o) { |
| 1250 unittest.expect(o, unittest.hasLength(2)); | 1250 unittest.expect(o, unittest.hasLength(2)); |
| 1251 unittest.expect(o[0], unittest.equals('foo')); | 1251 unittest.expect(o[0], unittest.equals('foo')); |
| 1252 unittest.expect(o[1], unittest.equals('foo')); | 1252 unittest.expect(o[1], unittest.equals('foo')); |
| 1253 } | 1253 } |
| 1254 | 1254 |
| 1255 core.int buildCounterChannelSettings = 0; | 1255 core.int buildCounterChannelSettings = 0; |
| 1256 buildChannelSettings() { | 1256 buildChannelSettings() { |
| 1257 var o = new api.ChannelSettings(); | 1257 var o = new api.ChannelSettings(); |
| 1258 buildCounterChannelSettings++; | 1258 buildCounterChannelSettings++; |
| 1259 if (buildCounterChannelSettings < 3) { | 1259 if (buildCounterChannelSettings < 3) { |
| 1260 o.country = "foo"; | 1260 o.country = "foo"; |
| 1261 o.defaultLanguage = "foo"; | 1261 o.defaultLanguage = "foo"; |
| 1262 o.defaultTab = "foo"; | 1262 o.defaultTab = "foo"; |
| 1263 o.description = "foo"; | 1263 o.description = "foo"; |
| 1264 o.featuredChannelsTitle = "foo"; | 1264 o.featuredChannelsTitle = "foo"; |
| 1265 o.featuredChannelsUrls = buildUnnamed3340(); | 1265 o.featuredChannelsUrls = buildUnnamed729(); |
| 1266 o.keywords = "foo"; | 1266 o.keywords = "foo"; |
| 1267 o.moderateComments = true; | 1267 o.moderateComments = true; |
| 1268 o.profileColor = "foo"; | 1268 o.profileColor = "foo"; |
| 1269 o.showBrowseView = true; | 1269 o.showBrowseView = true; |
| 1270 o.showRelatedChannels = true; | 1270 o.showRelatedChannels = true; |
| 1271 o.title = "foo"; | 1271 o.title = "foo"; |
| 1272 o.trackingAnalyticsAccountId = "foo"; | 1272 o.trackingAnalyticsAccountId = "foo"; |
| 1273 o.unsubscribedTrailer = "foo"; | 1273 o.unsubscribedTrailer = "foo"; |
| 1274 } | 1274 } |
| 1275 buildCounterChannelSettings--; | 1275 buildCounterChannelSettings--; |
| 1276 return o; | 1276 return o; |
| 1277 } | 1277 } |
| 1278 | 1278 |
| 1279 checkChannelSettings(api.ChannelSettings o) { | 1279 checkChannelSettings(api.ChannelSettings o) { |
| 1280 buildCounterChannelSettings++; | 1280 buildCounterChannelSettings++; |
| 1281 if (buildCounterChannelSettings < 3) { | 1281 if (buildCounterChannelSettings < 3) { |
| 1282 unittest.expect(o.country, unittest.equals('foo')); | 1282 unittest.expect(o.country, unittest.equals('foo')); |
| 1283 unittest.expect(o.defaultLanguage, unittest.equals('foo')); | 1283 unittest.expect(o.defaultLanguage, unittest.equals('foo')); |
| 1284 unittest.expect(o.defaultTab, unittest.equals('foo')); | 1284 unittest.expect(o.defaultTab, unittest.equals('foo')); |
| 1285 unittest.expect(o.description, unittest.equals('foo')); | 1285 unittest.expect(o.description, unittest.equals('foo')); |
| 1286 unittest.expect(o.featuredChannelsTitle, unittest.equals('foo')); | 1286 unittest.expect(o.featuredChannelsTitle, unittest.equals('foo')); |
| 1287 checkUnnamed3340(o.featuredChannelsUrls); | 1287 checkUnnamed729(o.featuredChannelsUrls); |
| 1288 unittest.expect(o.keywords, unittest.equals('foo')); | 1288 unittest.expect(o.keywords, unittest.equals('foo')); |
| 1289 unittest.expect(o.moderateComments, unittest.isTrue); | 1289 unittest.expect(o.moderateComments, unittest.isTrue); |
| 1290 unittest.expect(o.profileColor, unittest.equals('foo')); | 1290 unittest.expect(o.profileColor, unittest.equals('foo')); |
| 1291 unittest.expect(o.showBrowseView, unittest.isTrue); | 1291 unittest.expect(o.showBrowseView, unittest.isTrue); |
| 1292 unittest.expect(o.showRelatedChannels, unittest.isTrue); | 1292 unittest.expect(o.showRelatedChannels, unittest.isTrue); |
| 1293 unittest.expect(o.title, unittest.equals('foo')); | 1293 unittest.expect(o.title, unittest.equals('foo')); |
| 1294 unittest.expect(o.trackingAnalyticsAccountId, unittest.equals('foo')); | 1294 unittest.expect(o.trackingAnalyticsAccountId, unittest.equals('foo')); |
| 1295 unittest.expect(o.unsubscribedTrailer, unittest.equals('foo')); | 1295 unittest.expect(o.unsubscribedTrailer, unittest.equals('foo')); |
| 1296 } | 1296 } |
| 1297 buildCounterChannelSettings--; | 1297 buildCounterChannelSettings--; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1373 checkChannelStatus(api.ChannelStatus o) { | 1373 checkChannelStatus(api.ChannelStatus o) { |
| 1374 buildCounterChannelStatus++; | 1374 buildCounterChannelStatus++; |
| 1375 if (buildCounterChannelStatus < 3) { | 1375 if (buildCounterChannelStatus < 3) { |
| 1376 unittest.expect(o.isLinked, unittest.isTrue); | 1376 unittest.expect(o.isLinked, unittest.isTrue); |
| 1377 unittest.expect(o.longUploadsStatus, unittest.equals('foo')); | 1377 unittest.expect(o.longUploadsStatus, unittest.equals('foo')); |
| 1378 unittest.expect(o.privacyStatus, unittest.equals('foo')); | 1378 unittest.expect(o.privacyStatus, unittest.equals('foo')); |
| 1379 } | 1379 } |
| 1380 buildCounterChannelStatus--; | 1380 buildCounterChannelStatus--; |
| 1381 } | 1381 } |
| 1382 | 1382 |
| 1383 buildUnnamed3341() { | 1383 buildUnnamed730() { |
| 1384 var o = new core.List<core.String>(); | 1384 var o = new core.List<core.String>(); |
| 1385 o.add("foo"); | 1385 o.add("foo"); |
| 1386 o.add("foo"); | 1386 o.add("foo"); |
| 1387 return o; | 1387 return o; |
| 1388 } | 1388 } |
| 1389 | 1389 |
| 1390 checkUnnamed3341(core.List<core.String> o) { | 1390 checkUnnamed730(core.List<core.String> o) { |
| 1391 unittest.expect(o, unittest.hasLength(2)); | 1391 unittest.expect(o, unittest.hasLength(2)); |
| 1392 unittest.expect(o[0], unittest.equals('foo')); | 1392 unittest.expect(o[0], unittest.equals('foo')); |
| 1393 unittest.expect(o[1], unittest.equals('foo')); | 1393 unittest.expect(o[1], unittest.equals('foo')); |
| 1394 } | 1394 } |
| 1395 | 1395 |
| 1396 core.int buildCounterChannelTopicDetails = 0; | 1396 core.int buildCounterChannelTopicDetails = 0; |
| 1397 buildChannelTopicDetails() { | 1397 buildChannelTopicDetails() { |
| 1398 var o = new api.ChannelTopicDetails(); | 1398 var o = new api.ChannelTopicDetails(); |
| 1399 buildCounterChannelTopicDetails++; | 1399 buildCounterChannelTopicDetails++; |
| 1400 if (buildCounterChannelTopicDetails < 3) { | 1400 if (buildCounterChannelTopicDetails < 3) { |
| 1401 o.topicIds = buildUnnamed3341(); | 1401 o.topicIds = buildUnnamed730(); |
| 1402 } | 1402 } |
| 1403 buildCounterChannelTopicDetails--; | 1403 buildCounterChannelTopicDetails--; |
| 1404 return o; | 1404 return o; |
| 1405 } | 1405 } |
| 1406 | 1406 |
| 1407 checkChannelTopicDetails(api.ChannelTopicDetails o) { | 1407 checkChannelTopicDetails(api.ChannelTopicDetails o) { |
| 1408 buildCounterChannelTopicDetails++; | 1408 buildCounterChannelTopicDetails++; |
| 1409 if (buildCounterChannelTopicDetails < 3) { | 1409 if (buildCounterChannelTopicDetails < 3) { |
| 1410 checkUnnamed3341(o.topicIds); | 1410 checkUnnamed730(o.topicIds); |
| 1411 } | 1411 } |
| 1412 buildCounterChannelTopicDetails--; | 1412 buildCounterChannelTopicDetails--; |
| 1413 } | 1413 } |
| 1414 | 1414 |
| 1415 core.int buildCounterComment = 0; | 1415 core.int buildCounterComment = 0; |
| 1416 buildComment() { | 1416 buildComment() { |
| 1417 var o = new api.Comment(); | 1417 var o = new api.Comment(); |
| 1418 buildCounterComment++; | 1418 buildCounterComment++; |
| 1419 if (buildCounterComment < 3) { | 1419 if (buildCounterComment < 3) { |
| 1420 o.etag = "foo"; | 1420 o.etag = "foo"; |
| 1421 o.id = "foo"; | 1421 o.id = "foo"; |
| 1422 o.kind = "foo"; | 1422 o.kind = "foo"; |
| 1423 o.snippet = buildCommentSnippet(); | 1423 o.snippet = buildCommentSnippet(); |
| 1424 } | 1424 } |
| 1425 buildCounterComment--; | 1425 buildCounterComment--; |
| 1426 return o; | 1426 return o; |
| 1427 } | 1427 } |
| 1428 | 1428 |
| 1429 checkComment(api.Comment o) { | 1429 checkComment(api.Comment o) { |
| 1430 buildCounterComment++; | 1430 buildCounterComment++; |
| 1431 if (buildCounterComment < 3) { | 1431 if (buildCounterComment < 3) { |
| 1432 unittest.expect(o.etag, unittest.equals('foo')); | 1432 unittest.expect(o.etag, unittest.equals('foo')); |
| 1433 unittest.expect(o.id, unittest.equals('foo')); | 1433 unittest.expect(o.id, unittest.equals('foo')); |
| 1434 unittest.expect(o.kind, unittest.equals('foo')); | 1434 unittest.expect(o.kind, unittest.equals('foo')); |
| 1435 checkCommentSnippet(o.snippet); | 1435 checkCommentSnippet(o.snippet); |
| 1436 } | 1436 } |
| 1437 buildCounterComment--; | 1437 buildCounterComment--; |
| 1438 } | 1438 } |
| 1439 | 1439 |
| 1440 buildUnnamed3342() { | 1440 buildUnnamed731() { |
| 1441 var o = new core.List<api.Comment>(); | 1441 var o = new core.List<api.Comment>(); |
| 1442 o.add(buildComment()); | 1442 o.add(buildComment()); |
| 1443 o.add(buildComment()); | 1443 o.add(buildComment()); |
| 1444 return o; | 1444 return o; |
| 1445 } | 1445 } |
| 1446 | 1446 |
| 1447 checkUnnamed3342(core.List<api.Comment> o) { | 1447 checkUnnamed731(core.List<api.Comment> o) { |
| 1448 unittest.expect(o, unittest.hasLength(2)); | 1448 unittest.expect(o, unittest.hasLength(2)); |
| 1449 checkComment(o[0]); | 1449 checkComment(o[0]); |
| 1450 checkComment(o[1]); | 1450 checkComment(o[1]); |
| 1451 } | 1451 } |
| 1452 | 1452 |
| 1453 core.int buildCounterCommentListResponse = 0; | 1453 core.int buildCounterCommentListResponse = 0; |
| 1454 buildCommentListResponse() { | 1454 buildCommentListResponse() { |
| 1455 var o = new api.CommentListResponse(); | 1455 var o = new api.CommentListResponse(); |
| 1456 buildCounterCommentListResponse++; | 1456 buildCounterCommentListResponse++; |
| 1457 if (buildCounterCommentListResponse < 3) { | 1457 if (buildCounterCommentListResponse < 3) { |
| 1458 o.etag = "foo"; | 1458 o.etag = "foo"; |
| 1459 o.eventId = "foo"; | 1459 o.eventId = "foo"; |
| 1460 o.items = buildUnnamed3342(); | 1460 o.items = buildUnnamed731(); |
| 1461 o.kind = "foo"; | 1461 o.kind = "foo"; |
| 1462 o.nextPageToken = "foo"; | 1462 o.nextPageToken = "foo"; |
| 1463 o.pageInfo = buildPageInfo(); | 1463 o.pageInfo = buildPageInfo(); |
| 1464 o.tokenPagination = buildTokenPagination(); | 1464 o.tokenPagination = buildTokenPagination(); |
| 1465 o.visitorId = "foo"; | 1465 o.visitorId = "foo"; |
| 1466 } | 1466 } |
| 1467 buildCounterCommentListResponse--; | 1467 buildCounterCommentListResponse--; |
| 1468 return o; | 1468 return o; |
| 1469 } | 1469 } |
| 1470 | 1470 |
| 1471 checkCommentListResponse(api.CommentListResponse o) { | 1471 checkCommentListResponse(api.CommentListResponse o) { |
| 1472 buildCounterCommentListResponse++; | 1472 buildCounterCommentListResponse++; |
| 1473 if (buildCounterCommentListResponse < 3) { | 1473 if (buildCounterCommentListResponse < 3) { |
| 1474 unittest.expect(o.etag, unittest.equals('foo')); | 1474 unittest.expect(o.etag, unittest.equals('foo')); |
| 1475 unittest.expect(o.eventId, unittest.equals('foo')); | 1475 unittest.expect(o.eventId, unittest.equals('foo')); |
| 1476 checkUnnamed3342(o.items); | 1476 checkUnnamed731(o.items); |
| 1477 unittest.expect(o.kind, unittest.equals('foo')); | 1477 unittest.expect(o.kind, unittest.equals('foo')); |
| 1478 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1478 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1479 checkPageInfo(o.pageInfo); | 1479 checkPageInfo(o.pageInfo); |
| 1480 checkTokenPagination(o.tokenPagination); | 1480 checkTokenPagination(o.tokenPagination); |
| 1481 unittest.expect(o.visitorId, unittest.equals('foo')); | 1481 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 1482 } | 1482 } |
| 1483 buildCounterCommentListResponse--; | 1483 buildCounterCommentListResponse--; |
| 1484 } | 1484 } |
| 1485 | 1485 |
| 1486 core.int buildCounterCommentSnippet = 0; | 1486 core.int buildCounterCommentSnippet = 0; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1552 if (buildCounterCommentThread < 3) { | 1552 if (buildCounterCommentThread < 3) { |
| 1553 unittest.expect(o.etag, unittest.equals('foo')); | 1553 unittest.expect(o.etag, unittest.equals('foo')); |
| 1554 unittest.expect(o.id, unittest.equals('foo')); | 1554 unittest.expect(o.id, unittest.equals('foo')); |
| 1555 unittest.expect(o.kind, unittest.equals('foo')); | 1555 unittest.expect(o.kind, unittest.equals('foo')); |
| 1556 checkCommentThreadReplies(o.replies); | 1556 checkCommentThreadReplies(o.replies); |
| 1557 checkCommentThreadSnippet(o.snippet); | 1557 checkCommentThreadSnippet(o.snippet); |
| 1558 } | 1558 } |
| 1559 buildCounterCommentThread--; | 1559 buildCounterCommentThread--; |
| 1560 } | 1560 } |
| 1561 | 1561 |
| 1562 buildUnnamed3343() { | 1562 buildUnnamed732() { |
| 1563 var o = new core.List<api.CommentThread>(); | 1563 var o = new core.List<api.CommentThread>(); |
| 1564 o.add(buildCommentThread()); | 1564 o.add(buildCommentThread()); |
| 1565 o.add(buildCommentThread()); | 1565 o.add(buildCommentThread()); |
| 1566 return o; | 1566 return o; |
| 1567 } | 1567 } |
| 1568 | 1568 |
| 1569 checkUnnamed3343(core.List<api.CommentThread> o) { | 1569 checkUnnamed732(core.List<api.CommentThread> o) { |
| 1570 unittest.expect(o, unittest.hasLength(2)); | 1570 unittest.expect(o, unittest.hasLength(2)); |
| 1571 checkCommentThread(o[0]); | 1571 checkCommentThread(o[0]); |
| 1572 checkCommentThread(o[1]); | 1572 checkCommentThread(o[1]); |
| 1573 } | 1573 } |
| 1574 | 1574 |
| 1575 core.int buildCounterCommentThreadListResponse = 0; | 1575 core.int buildCounterCommentThreadListResponse = 0; |
| 1576 buildCommentThreadListResponse() { | 1576 buildCommentThreadListResponse() { |
| 1577 var o = new api.CommentThreadListResponse(); | 1577 var o = new api.CommentThreadListResponse(); |
| 1578 buildCounterCommentThreadListResponse++; | 1578 buildCounterCommentThreadListResponse++; |
| 1579 if (buildCounterCommentThreadListResponse < 3) { | 1579 if (buildCounterCommentThreadListResponse < 3) { |
| 1580 o.etag = "foo"; | 1580 o.etag = "foo"; |
| 1581 o.eventId = "foo"; | 1581 o.eventId = "foo"; |
| 1582 o.items = buildUnnamed3343(); | 1582 o.items = buildUnnamed732(); |
| 1583 o.kind = "foo"; | 1583 o.kind = "foo"; |
| 1584 o.nextPageToken = "foo"; | 1584 o.nextPageToken = "foo"; |
| 1585 o.pageInfo = buildPageInfo(); | 1585 o.pageInfo = buildPageInfo(); |
| 1586 o.tokenPagination = buildTokenPagination(); | 1586 o.tokenPagination = buildTokenPagination(); |
| 1587 o.visitorId = "foo"; | 1587 o.visitorId = "foo"; |
| 1588 } | 1588 } |
| 1589 buildCounterCommentThreadListResponse--; | 1589 buildCounterCommentThreadListResponse--; |
| 1590 return o; | 1590 return o; |
| 1591 } | 1591 } |
| 1592 | 1592 |
| 1593 checkCommentThreadListResponse(api.CommentThreadListResponse o) { | 1593 checkCommentThreadListResponse(api.CommentThreadListResponse o) { |
| 1594 buildCounterCommentThreadListResponse++; | 1594 buildCounterCommentThreadListResponse++; |
| 1595 if (buildCounterCommentThreadListResponse < 3) { | 1595 if (buildCounterCommentThreadListResponse < 3) { |
| 1596 unittest.expect(o.etag, unittest.equals('foo')); | 1596 unittest.expect(o.etag, unittest.equals('foo')); |
| 1597 unittest.expect(o.eventId, unittest.equals('foo')); | 1597 unittest.expect(o.eventId, unittest.equals('foo')); |
| 1598 checkUnnamed3343(o.items); | 1598 checkUnnamed732(o.items); |
| 1599 unittest.expect(o.kind, unittest.equals('foo')); | 1599 unittest.expect(o.kind, unittest.equals('foo')); |
| 1600 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1600 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1601 checkPageInfo(o.pageInfo); | 1601 checkPageInfo(o.pageInfo); |
| 1602 checkTokenPagination(o.tokenPagination); | 1602 checkTokenPagination(o.tokenPagination); |
| 1603 unittest.expect(o.visitorId, unittest.equals('foo')); | 1603 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 1604 } | 1604 } |
| 1605 buildCounterCommentThreadListResponse--; | 1605 buildCounterCommentThreadListResponse--; |
| 1606 } | 1606 } |
| 1607 | 1607 |
| 1608 buildUnnamed3344() { | 1608 buildUnnamed733() { |
| 1609 var o = new core.List<api.Comment>(); | 1609 var o = new core.List<api.Comment>(); |
| 1610 o.add(buildComment()); | 1610 o.add(buildComment()); |
| 1611 o.add(buildComment()); | 1611 o.add(buildComment()); |
| 1612 return o; | 1612 return o; |
| 1613 } | 1613 } |
| 1614 | 1614 |
| 1615 checkUnnamed3344(core.List<api.Comment> o) { | 1615 checkUnnamed733(core.List<api.Comment> o) { |
| 1616 unittest.expect(o, unittest.hasLength(2)); | 1616 unittest.expect(o, unittest.hasLength(2)); |
| 1617 checkComment(o[0]); | 1617 checkComment(o[0]); |
| 1618 checkComment(o[1]); | 1618 checkComment(o[1]); |
| 1619 } | 1619 } |
| 1620 | 1620 |
| 1621 core.int buildCounterCommentThreadReplies = 0; | 1621 core.int buildCounterCommentThreadReplies = 0; |
| 1622 buildCommentThreadReplies() { | 1622 buildCommentThreadReplies() { |
| 1623 var o = new api.CommentThreadReplies(); | 1623 var o = new api.CommentThreadReplies(); |
| 1624 buildCounterCommentThreadReplies++; | 1624 buildCounterCommentThreadReplies++; |
| 1625 if (buildCounterCommentThreadReplies < 3) { | 1625 if (buildCounterCommentThreadReplies < 3) { |
| 1626 o.comments = buildUnnamed3344(); | 1626 o.comments = buildUnnamed733(); |
| 1627 } | 1627 } |
| 1628 buildCounterCommentThreadReplies--; | 1628 buildCounterCommentThreadReplies--; |
| 1629 return o; | 1629 return o; |
| 1630 } | 1630 } |
| 1631 | 1631 |
| 1632 checkCommentThreadReplies(api.CommentThreadReplies o) { | 1632 checkCommentThreadReplies(api.CommentThreadReplies o) { |
| 1633 buildCounterCommentThreadReplies++; | 1633 buildCounterCommentThreadReplies++; |
| 1634 if (buildCounterCommentThreadReplies < 3) { | 1634 if (buildCounterCommentThreadReplies < 3) { |
| 1635 checkUnnamed3344(o.comments); | 1635 checkUnnamed733(o.comments); |
| 1636 } | 1636 } |
| 1637 buildCounterCommentThreadReplies--; | 1637 buildCounterCommentThreadReplies--; |
| 1638 } | 1638 } |
| 1639 | 1639 |
| 1640 core.int buildCounterCommentThreadSnippet = 0; | 1640 core.int buildCounterCommentThreadSnippet = 0; |
| 1641 buildCommentThreadSnippet() { | 1641 buildCommentThreadSnippet() { |
| 1642 var o = new api.CommentThreadSnippet(); | 1642 var o = new api.CommentThreadSnippet(); |
| 1643 buildCounterCommentThreadSnippet++; | 1643 buildCounterCommentThreadSnippet++; |
| 1644 if (buildCounterCommentThreadSnippet < 3) { | 1644 if (buildCounterCommentThreadSnippet < 3) { |
| 1645 o.canReply = true; | 1645 o.canReply = true; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1659 unittest.expect(o.canReply, unittest.isTrue); | 1659 unittest.expect(o.canReply, unittest.isTrue); |
| 1660 unittest.expect(o.channelId, unittest.equals('foo')); | 1660 unittest.expect(o.channelId, unittest.equals('foo')); |
| 1661 unittest.expect(o.isPublic, unittest.isTrue); | 1661 unittest.expect(o.isPublic, unittest.isTrue); |
| 1662 checkComment(o.topLevelComment); | 1662 checkComment(o.topLevelComment); |
| 1663 unittest.expect(o.totalReplyCount, unittest.equals(42)); | 1663 unittest.expect(o.totalReplyCount, unittest.equals(42)); |
| 1664 unittest.expect(o.videoId, unittest.equals('foo')); | 1664 unittest.expect(o.videoId, unittest.equals('foo')); |
| 1665 } | 1665 } |
| 1666 buildCounterCommentThreadSnippet--; | 1666 buildCounterCommentThreadSnippet--; |
| 1667 } | 1667 } |
| 1668 | 1668 |
| 1669 buildUnnamed3345() { | 1669 buildUnnamed734() { |
| 1670 var o = new core.List<core.String>(); | 1670 var o = new core.List<core.String>(); |
| 1671 o.add("foo"); | 1671 o.add("foo"); |
| 1672 o.add("foo"); | 1672 o.add("foo"); |
| 1673 return o; | 1673 return o; |
| 1674 } | 1674 } |
| 1675 | 1675 |
| 1676 checkUnnamed3345(core.List<core.String> o) { | 1676 checkUnnamed734(core.List<core.String> o) { |
| 1677 unittest.expect(o, unittest.hasLength(2)); | 1677 unittest.expect(o, unittest.hasLength(2)); |
| 1678 unittest.expect(o[0], unittest.equals('foo')); | 1678 unittest.expect(o[0], unittest.equals('foo')); |
| 1679 unittest.expect(o[1], unittest.equals('foo')); | 1679 unittest.expect(o[1], unittest.equals('foo')); |
| 1680 } | 1680 } |
| 1681 | 1681 |
| 1682 buildUnnamed3346() { | 1682 buildUnnamed735() { |
| 1683 var o = new core.List<core.String>(); | 1683 var o = new core.List<core.String>(); |
| 1684 o.add("foo"); | 1684 o.add("foo"); |
| 1685 o.add("foo"); | 1685 o.add("foo"); |
| 1686 return o; | 1686 return o; |
| 1687 } | 1687 } |
| 1688 | 1688 |
| 1689 checkUnnamed3346(core.List<core.String> o) { | 1689 checkUnnamed735(core.List<core.String> o) { |
| 1690 unittest.expect(o, unittest.hasLength(2)); | 1690 unittest.expect(o, unittest.hasLength(2)); |
| 1691 unittest.expect(o[0], unittest.equals('foo')); | 1691 unittest.expect(o[0], unittest.equals('foo')); |
| 1692 unittest.expect(o[1], unittest.equals('foo')); | 1692 unittest.expect(o[1], unittest.equals('foo')); |
| 1693 } | 1693 } |
| 1694 | 1694 |
| 1695 core.int buildCounterContentRating = 0; | 1695 core.int buildCounterContentRating = 0; |
| 1696 buildContentRating() { | 1696 buildContentRating() { |
| 1697 var o = new api.ContentRating(); | 1697 var o = new api.ContentRating(); |
| 1698 buildCounterContentRating++; | 1698 buildCounterContentRating++; |
| 1699 if (buildCounterContentRating < 3) { | 1699 if (buildCounterContentRating < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 1710 o.cceRating = "foo"; | 1710 o.cceRating = "foo"; |
| 1711 o.chfilmRating = "foo"; | 1711 o.chfilmRating = "foo"; |
| 1712 o.chvrsRating = "foo"; | 1712 o.chvrsRating = "foo"; |
| 1713 o.cicfRating = "foo"; | 1713 o.cicfRating = "foo"; |
| 1714 o.cnaRating = "foo"; | 1714 o.cnaRating = "foo"; |
| 1715 o.cncRating = "foo"; | 1715 o.cncRating = "foo"; |
| 1716 o.csaRating = "foo"; | 1716 o.csaRating = "foo"; |
| 1717 o.cscfRating = "foo"; | 1717 o.cscfRating = "foo"; |
| 1718 o.czfilmRating = "foo"; | 1718 o.czfilmRating = "foo"; |
| 1719 o.djctqRating = "foo"; | 1719 o.djctqRating = "foo"; |
| 1720 o.djctqRatingReasons = buildUnnamed3345(); | 1720 o.djctqRatingReasons = buildUnnamed734(); |
| 1721 o.ecbmctRating = "foo"; | 1721 o.ecbmctRating = "foo"; |
| 1722 o.eefilmRating = "foo"; | 1722 o.eefilmRating = "foo"; |
| 1723 o.egfilmRating = "foo"; | 1723 o.egfilmRating = "foo"; |
| 1724 o.eirinRating = "foo"; | 1724 o.eirinRating = "foo"; |
| 1725 o.fcbmRating = "foo"; | 1725 o.fcbmRating = "foo"; |
| 1726 o.fcoRating = "foo"; | 1726 o.fcoRating = "foo"; |
| 1727 o.fmocRating = "foo"; | 1727 o.fmocRating = "foo"; |
| 1728 o.fpbRating = "foo"; | 1728 o.fpbRating = "foo"; |
| 1729 o.fpbRatingReasons = buildUnnamed3346(); | 1729 o.fpbRatingReasons = buildUnnamed735(); |
| 1730 o.fskRating = "foo"; | 1730 o.fskRating = "foo"; |
| 1731 o.grfilmRating = "foo"; | 1731 o.grfilmRating = "foo"; |
| 1732 o.icaaRating = "foo"; | 1732 o.icaaRating = "foo"; |
| 1733 o.ifcoRating = "foo"; | 1733 o.ifcoRating = "foo"; |
| 1734 o.ilfilmRating = "foo"; | 1734 o.ilfilmRating = "foo"; |
| 1735 o.incaaRating = "foo"; | 1735 o.incaaRating = "foo"; |
| 1736 o.kfcbRating = "foo"; | 1736 o.kfcbRating = "foo"; |
| 1737 o.kijkwijzerRating = "foo"; | 1737 o.kijkwijzerRating = "foo"; |
| 1738 o.kmrbRating = "foo"; | 1738 o.kmrbRating = "foo"; |
| 1739 o.lsfRating = "foo"; | 1739 o.lsfRating = "foo"; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1785 unittest.expect(o.cceRating, unittest.equals('foo')); | 1785 unittest.expect(o.cceRating, unittest.equals('foo')); |
| 1786 unittest.expect(o.chfilmRating, unittest.equals('foo')); | 1786 unittest.expect(o.chfilmRating, unittest.equals('foo')); |
| 1787 unittest.expect(o.chvrsRating, unittest.equals('foo')); | 1787 unittest.expect(o.chvrsRating, unittest.equals('foo')); |
| 1788 unittest.expect(o.cicfRating, unittest.equals('foo')); | 1788 unittest.expect(o.cicfRating, unittest.equals('foo')); |
| 1789 unittest.expect(o.cnaRating, unittest.equals('foo')); | 1789 unittest.expect(o.cnaRating, unittest.equals('foo')); |
| 1790 unittest.expect(o.cncRating, unittest.equals('foo')); | 1790 unittest.expect(o.cncRating, unittest.equals('foo')); |
| 1791 unittest.expect(o.csaRating, unittest.equals('foo')); | 1791 unittest.expect(o.csaRating, unittest.equals('foo')); |
| 1792 unittest.expect(o.cscfRating, unittest.equals('foo')); | 1792 unittest.expect(o.cscfRating, unittest.equals('foo')); |
| 1793 unittest.expect(o.czfilmRating, unittest.equals('foo')); | 1793 unittest.expect(o.czfilmRating, unittest.equals('foo')); |
| 1794 unittest.expect(o.djctqRating, unittest.equals('foo')); | 1794 unittest.expect(o.djctqRating, unittest.equals('foo')); |
| 1795 checkUnnamed3345(o.djctqRatingReasons); | 1795 checkUnnamed734(o.djctqRatingReasons); |
| 1796 unittest.expect(o.ecbmctRating, unittest.equals('foo')); | 1796 unittest.expect(o.ecbmctRating, unittest.equals('foo')); |
| 1797 unittest.expect(o.eefilmRating, unittest.equals('foo')); | 1797 unittest.expect(o.eefilmRating, unittest.equals('foo')); |
| 1798 unittest.expect(o.egfilmRating, unittest.equals('foo')); | 1798 unittest.expect(o.egfilmRating, unittest.equals('foo')); |
| 1799 unittest.expect(o.eirinRating, unittest.equals('foo')); | 1799 unittest.expect(o.eirinRating, unittest.equals('foo')); |
| 1800 unittest.expect(o.fcbmRating, unittest.equals('foo')); | 1800 unittest.expect(o.fcbmRating, unittest.equals('foo')); |
| 1801 unittest.expect(o.fcoRating, unittest.equals('foo')); | 1801 unittest.expect(o.fcoRating, unittest.equals('foo')); |
| 1802 unittest.expect(o.fmocRating, unittest.equals('foo')); | 1802 unittest.expect(o.fmocRating, unittest.equals('foo')); |
| 1803 unittest.expect(o.fpbRating, unittest.equals('foo')); | 1803 unittest.expect(o.fpbRating, unittest.equals('foo')); |
| 1804 checkUnnamed3346(o.fpbRatingReasons); | 1804 checkUnnamed735(o.fpbRatingReasons); |
| 1805 unittest.expect(o.fskRating, unittest.equals('foo')); | 1805 unittest.expect(o.fskRating, unittest.equals('foo')); |
| 1806 unittest.expect(o.grfilmRating, unittest.equals('foo')); | 1806 unittest.expect(o.grfilmRating, unittest.equals('foo')); |
| 1807 unittest.expect(o.icaaRating, unittest.equals('foo')); | 1807 unittest.expect(o.icaaRating, unittest.equals('foo')); |
| 1808 unittest.expect(o.ifcoRating, unittest.equals('foo')); | 1808 unittest.expect(o.ifcoRating, unittest.equals('foo')); |
| 1809 unittest.expect(o.ilfilmRating, unittest.equals('foo')); | 1809 unittest.expect(o.ilfilmRating, unittest.equals('foo')); |
| 1810 unittest.expect(o.incaaRating, unittest.equals('foo')); | 1810 unittest.expect(o.incaaRating, unittest.equals('foo')); |
| 1811 unittest.expect(o.kfcbRating, unittest.equals('foo')); | 1811 unittest.expect(o.kfcbRating, unittest.equals('foo')); |
| 1812 unittest.expect(o.kijkwijzerRating, unittest.equals('foo')); | 1812 unittest.expect(o.kijkwijzerRating, unittest.equals('foo')); |
| 1813 unittest.expect(o.kmrbRating, unittest.equals('foo')); | 1813 unittest.expect(o.kmrbRating, unittest.equals('foo')); |
| 1814 unittest.expect(o.lsfRating, unittest.equals('foo')); | 1814 unittest.expect(o.lsfRating, unittest.equals('foo')); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1861 buildCounterFanFundingEvent++; | 1861 buildCounterFanFundingEvent++; |
| 1862 if (buildCounterFanFundingEvent < 3) { | 1862 if (buildCounterFanFundingEvent < 3) { |
| 1863 unittest.expect(o.etag, unittest.equals('foo')); | 1863 unittest.expect(o.etag, unittest.equals('foo')); |
| 1864 unittest.expect(o.id, unittest.equals('foo')); | 1864 unittest.expect(o.id, unittest.equals('foo')); |
| 1865 unittest.expect(o.kind, unittest.equals('foo')); | 1865 unittest.expect(o.kind, unittest.equals('foo')); |
| 1866 checkFanFundingEventSnippet(o.snippet); | 1866 checkFanFundingEventSnippet(o.snippet); |
| 1867 } | 1867 } |
| 1868 buildCounterFanFundingEvent--; | 1868 buildCounterFanFundingEvent--; |
| 1869 } | 1869 } |
| 1870 | 1870 |
| 1871 buildUnnamed3347() { | 1871 buildUnnamed736() { |
| 1872 var o = new core.List<api.FanFundingEvent>(); | 1872 var o = new core.List<api.FanFundingEvent>(); |
| 1873 o.add(buildFanFundingEvent()); | 1873 o.add(buildFanFundingEvent()); |
| 1874 o.add(buildFanFundingEvent()); | 1874 o.add(buildFanFundingEvent()); |
| 1875 return o; | 1875 return o; |
| 1876 } | 1876 } |
| 1877 | 1877 |
| 1878 checkUnnamed3347(core.List<api.FanFundingEvent> o) { | 1878 checkUnnamed736(core.List<api.FanFundingEvent> o) { |
| 1879 unittest.expect(o, unittest.hasLength(2)); | 1879 unittest.expect(o, unittest.hasLength(2)); |
| 1880 checkFanFundingEvent(o[0]); | 1880 checkFanFundingEvent(o[0]); |
| 1881 checkFanFundingEvent(o[1]); | 1881 checkFanFundingEvent(o[1]); |
| 1882 } | 1882 } |
| 1883 | 1883 |
| 1884 core.int buildCounterFanFundingEventListResponse = 0; | 1884 core.int buildCounterFanFundingEventListResponse = 0; |
| 1885 buildFanFundingEventListResponse() { | 1885 buildFanFundingEventListResponse() { |
| 1886 var o = new api.FanFundingEventListResponse(); | 1886 var o = new api.FanFundingEventListResponse(); |
| 1887 buildCounterFanFundingEventListResponse++; | 1887 buildCounterFanFundingEventListResponse++; |
| 1888 if (buildCounterFanFundingEventListResponse < 3) { | 1888 if (buildCounterFanFundingEventListResponse < 3) { |
| 1889 o.etag = "foo"; | 1889 o.etag = "foo"; |
| 1890 o.eventId = "foo"; | 1890 o.eventId = "foo"; |
| 1891 o.items = buildUnnamed3347(); | 1891 o.items = buildUnnamed736(); |
| 1892 o.kind = "foo"; | 1892 o.kind = "foo"; |
| 1893 o.nextPageToken = "foo"; | 1893 o.nextPageToken = "foo"; |
| 1894 o.pageInfo = buildPageInfo(); | 1894 o.pageInfo = buildPageInfo(); |
| 1895 o.tokenPagination = buildTokenPagination(); | 1895 o.tokenPagination = buildTokenPagination(); |
| 1896 o.visitorId = "foo"; | 1896 o.visitorId = "foo"; |
| 1897 } | 1897 } |
| 1898 buildCounterFanFundingEventListResponse--; | 1898 buildCounterFanFundingEventListResponse--; |
| 1899 return o; | 1899 return o; |
| 1900 } | 1900 } |
| 1901 | 1901 |
| 1902 checkFanFundingEventListResponse(api.FanFundingEventListResponse o) { | 1902 checkFanFundingEventListResponse(api.FanFundingEventListResponse o) { |
| 1903 buildCounterFanFundingEventListResponse++; | 1903 buildCounterFanFundingEventListResponse++; |
| 1904 if (buildCounterFanFundingEventListResponse < 3) { | 1904 if (buildCounterFanFundingEventListResponse < 3) { |
| 1905 unittest.expect(o.etag, unittest.equals('foo')); | 1905 unittest.expect(o.etag, unittest.equals('foo')); |
| 1906 unittest.expect(o.eventId, unittest.equals('foo')); | 1906 unittest.expect(o.eventId, unittest.equals('foo')); |
| 1907 checkUnnamed3347(o.items); | 1907 checkUnnamed736(o.items); |
| 1908 unittest.expect(o.kind, unittest.equals('foo')); | 1908 unittest.expect(o.kind, unittest.equals('foo')); |
| 1909 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1909 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1910 checkPageInfo(o.pageInfo); | 1910 checkPageInfo(o.pageInfo); |
| 1911 checkTokenPagination(o.tokenPagination); | 1911 checkTokenPagination(o.tokenPagination); |
| 1912 unittest.expect(o.visitorId, unittest.equals('foo')); | 1912 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 1913 } | 1913 } |
| 1914 buildCounterFanFundingEventListResponse--; | 1914 buildCounterFanFundingEventListResponse--; |
| 1915 } | 1915 } |
| 1916 | 1916 |
| 1917 core.int buildCounterFanFundingEventSnippet = 0; | 1917 core.int buildCounterFanFundingEventSnippet = 0; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1986 buildCounterGuideCategory++; | 1986 buildCounterGuideCategory++; |
| 1987 if (buildCounterGuideCategory < 3) { | 1987 if (buildCounterGuideCategory < 3) { |
| 1988 unittest.expect(o.etag, unittest.equals('foo')); | 1988 unittest.expect(o.etag, unittest.equals('foo')); |
| 1989 unittest.expect(o.id, unittest.equals('foo')); | 1989 unittest.expect(o.id, unittest.equals('foo')); |
| 1990 unittest.expect(o.kind, unittest.equals('foo')); | 1990 unittest.expect(o.kind, unittest.equals('foo')); |
| 1991 checkGuideCategorySnippet(o.snippet); | 1991 checkGuideCategorySnippet(o.snippet); |
| 1992 } | 1992 } |
| 1993 buildCounterGuideCategory--; | 1993 buildCounterGuideCategory--; |
| 1994 } | 1994 } |
| 1995 | 1995 |
| 1996 buildUnnamed3348() { | 1996 buildUnnamed737() { |
| 1997 var o = new core.List<api.GuideCategory>(); | 1997 var o = new core.List<api.GuideCategory>(); |
| 1998 o.add(buildGuideCategory()); | 1998 o.add(buildGuideCategory()); |
| 1999 o.add(buildGuideCategory()); | 1999 o.add(buildGuideCategory()); |
| 2000 return o; | 2000 return o; |
| 2001 } | 2001 } |
| 2002 | 2002 |
| 2003 checkUnnamed3348(core.List<api.GuideCategory> o) { | 2003 checkUnnamed737(core.List<api.GuideCategory> o) { |
| 2004 unittest.expect(o, unittest.hasLength(2)); | 2004 unittest.expect(o, unittest.hasLength(2)); |
| 2005 checkGuideCategory(o[0]); | 2005 checkGuideCategory(o[0]); |
| 2006 checkGuideCategory(o[1]); | 2006 checkGuideCategory(o[1]); |
| 2007 } | 2007 } |
| 2008 | 2008 |
| 2009 core.int buildCounterGuideCategoryListResponse = 0; | 2009 core.int buildCounterGuideCategoryListResponse = 0; |
| 2010 buildGuideCategoryListResponse() { | 2010 buildGuideCategoryListResponse() { |
| 2011 var o = new api.GuideCategoryListResponse(); | 2011 var o = new api.GuideCategoryListResponse(); |
| 2012 buildCounterGuideCategoryListResponse++; | 2012 buildCounterGuideCategoryListResponse++; |
| 2013 if (buildCounterGuideCategoryListResponse < 3) { | 2013 if (buildCounterGuideCategoryListResponse < 3) { |
| 2014 o.etag = "foo"; | 2014 o.etag = "foo"; |
| 2015 o.eventId = "foo"; | 2015 o.eventId = "foo"; |
| 2016 o.items = buildUnnamed3348(); | 2016 o.items = buildUnnamed737(); |
| 2017 o.kind = "foo"; | 2017 o.kind = "foo"; |
| 2018 o.nextPageToken = "foo"; | 2018 o.nextPageToken = "foo"; |
| 2019 o.pageInfo = buildPageInfo(); | 2019 o.pageInfo = buildPageInfo(); |
| 2020 o.prevPageToken = "foo"; | 2020 o.prevPageToken = "foo"; |
| 2021 o.tokenPagination = buildTokenPagination(); | 2021 o.tokenPagination = buildTokenPagination(); |
| 2022 o.visitorId = "foo"; | 2022 o.visitorId = "foo"; |
| 2023 } | 2023 } |
| 2024 buildCounterGuideCategoryListResponse--; | 2024 buildCounterGuideCategoryListResponse--; |
| 2025 return o; | 2025 return o; |
| 2026 } | 2026 } |
| 2027 | 2027 |
| 2028 checkGuideCategoryListResponse(api.GuideCategoryListResponse o) { | 2028 checkGuideCategoryListResponse(api.GuideCategoryListResponse o) { |
| 2029 buildCounterGuideCategoryListResponse++; | 2029 buildCounterGuideCategoryListResponse++; |
| 2030 if (buildCounterGuideCategoryListResponse < 3) { | 2030 if (buildCounterGuideCategoryListResponse < 3) { |
| 2031 unittest.expect(o.etag, unittest.equals('foo')); | 2031 unittest.expect(o.etag, unittest.equals('foo')); |
| 2032 unittest.expect(o.eventId, unittest.equals('foo')); | 2032 unittest.expect(o.eventId, unittest.equals('foo')); |
| 2033 checkUnnamed3348(o.items); | 2033 checkUnnamed737(o.items); |
| 2034 unittest.expect(o.kind, unittest.equals('foo')); | 2034 unittest.expect(o.kind, unittest.equals('foo')); |
| 2035 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2035 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2036 checkPageInfo(o.pageInfo); | 2036 checkPageInfo(o.pageInfo); |
| 2037 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 2037 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 2038 checkTokenPagination(o.tokenPagination); | 2038 checkTokenPagination(o.tokenPagination); |
| 2039 unittest.expect(o.visitorId, unittest.equals('foo')); | 2039 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 2040 } | 2040 } |
| 2041 buildCounterGuideCategoryListResponse--; | 2041 buildCounterGuideCategoryListResponse--; |
| 2042 } | 2042 } |
| 2043 | 2043 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2080 buildCounterI18nLanguage++; | 2080 buildCounterI18nLanguage++; |
| 2081 if (buildCounterI18nLanguage < 3) { | 2081 if (buildCounterI18nLanguage < 3) { |
| 2082 unittest.expect(o.etag, unittest.equals('foo')); | 2082 unittest.expect(o.etag, unittest.equals('foo')); |
| 2083 unittest.expect(o.id, unittest.equals('foo')); | 2083 unittest.expect(o.id, unittest.equals('foo')); |
| 2084 unittest.expect(o.kind, unittest.equals('foo')); | 2084 unittest.expect(o.kind, unittest.equals('foo')); |
| 2085 checkI18nLanguageSnippet(o.snippet); | 2085 checkI18nLanguageSnippet(o.snippet); |
| 2086 } | 2086 } |
| 2087 buildCounterI18nLanguage--; | 2087 buildCounterI18nLanguage--; |
| 2088 } | 2088 } |
| 2089 | 2089 |
| 2090 buildUnnamed3349() { | 2090 buildUnnamed738() { |
| 2091 var o = new core.List<api.I18nLanguage>(); | 2091 var o = new core.List<api.I18nLanguage>(); |
| 2092 o.add(buildI18nLanguage()); | 2092 o.add(buildI18nLanguage()); |
| 2093 o.add(buildI18nLanguage()); | 2093 o.add(buildI18nLanguage()); |
| 2094 return o; | 2094 return o; |
| 2095 } | 2095 } |
| 2096 | 2096 |
| 2097 checkUnnamed3349(core.List<api.I18nLanguage> o) { | 2097 checkUnnamed738(core.List<api.I18nLanguage> o) { |
| 2098 unittest.expect(o, unittest.hasLength(2)); | 2098 unittest.expect(o, unittest.hasLength(2)); |
| 2099 checkI18nLanguage(o[0]); | 2099 checkI18nLanguage(o[0]); |
| 2100 checkI18nLanguage(o[1]); | 2100 checkI18nLanguage(o[1]); |
| 2101 } | 2101 } |
| 2102 | 2102 |
| 2103 core.int buildCounterI18nLanguageListResponse = 0; | 2103 core.int buildCounterI18nLanguageListResponse = 0; |
| 2104 buildI18nLanguageListResponse() { | 2104 buildI18nLanguageListResponse() { |
| 2105 var o = new api.I18nLanguageListResponse(); | 2105 var o = new api.I18nLanguageListResponse(); |
| 2106 buildCounterI18nLanguageListResponse++; | 2106 buildCounterI18nLanguageListResponse++; |
| 2107 if (buildCounterI18nLanguageListResponse < 3) { | 2107 if (buildCounterI18nLanguageListResponse < 3) { |
| 2108 o.etag = "foo"; | 2108 o.etag = "foo"; |
| 2109 o.eventId = "foo"; | 2109 o.eventId = "foo"; |
| 2110 o.items = buildUnnamed3349(); | 2110 o.items = buildUnnamed738(); |
| 2111 o.kind = "foo"; | 2111 o.kind = "foo"; |
| 2112 o.visitorId = "foo"; | 2112 o.visitorId = "foo"; |
| 2113 } | 2113 } |
| 2114 buildCounterI18nLanguageListResponse--; | 2114 buildCounterI18nLanguageListResponse--; |
| 2115 return o; | 2115 return o; |
| 2116 } | 2116 } |
| 2117 | 2117 |
| 2118 checkI18nLanguageListResponse(api.I18nLanguageListResponse o) { | 2118 checkI18nLanguageListResponse(api.I18nLanguageListResponse o) { |
| 2119 buildCounterI18nLanguageListResponse++; | 2119 buildCounterI18nLanguageListResponse++; |
| 2120 if (buildCounterI18nLanguageListResponse < 3) { | 2120 if (buildCounterI18nLanguageListResponse < 3) { |
| 2121 unittest.expect(o.etag, unittest.equals('foo')); | 2121 unittest.expect(o.etag, unittest.equals('foo')); |
| 2122 unittest.expect(o.eventId, unittest.equals('foo')); | 2122 unittest.expect(o.eventId, unittest.equals('foo')); |
| 2123 checkUnnamed3349(o.items); | 2123 checkUnnamed738(o.items); |
| 2124 unittest.expect(o.kind, unittest.equals('foo')); | 2124 unittest.expect(o.kind, unittest.equals('foo')); |
| 2125 unittest.expect(o.visitorId, unittest.equals('foo')); | 2125 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 2126 } | 2126 } |
| 2127 buildCounterI18nLanguageListResponse--; | 2127 buildCounterI18nLanguageListResponse--; |
| 2128 } | 2128 } |
| 2129 | 2129 |
| 2130 core.int buildCounterI18nLanguageSnippet = 0; | 2130 core.int buildCounterI18nLanguageSnippet = 0; |
| 2131 buildI18nLanguageSnippet() { | 2131 buildI18nLanguageSnippet() { |
| 2132 var o = new api.I18nLanguageSnippet(); | 2132 var o = new api.I18nLanguageSnippet(); |
| 2133 buildCounterI18nLanguageSnippet++; | 2133 buildCounterI18nLanguageSnippet++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2166 buildCounterI18nRegion++; | 2166 buildCounterI18nRegion++; |
| 2167 if (buildCounterI18nRegion < 3) { | 2167 if (buildCounterI18nRegion < 3) { |
| 2168 unittest.expect(o.etag, unittest.equals('foo')); | 2168 unittest.expect(o.etag, unittest.equals('foo')); |
| 2169 unittest.expect(o.id, unittest.equals('foo')); | 2169 unittest.expect(o.id, unittest.equals('foo')); |
| 2170 unittest.expect(o.kind, unittest.equals('foo')); | 2170 unittest.expect(o.kind, unittest.equals('foo')); |
| 2171 checkI18nRegionSnippet(o.snippet); | 2171 checkI18nRegionSnippet(o.snippet); |
| 2172 } | 2172 } |
| 2173 buildCounterI18nRegion--; | 2173 buildCounterI18nRegion--; |
| 2174 } | 2174 } |
| 2175 | 2175 |
| 2176 buildUnnamed3350() { | 2176 buildUnnamed739() { |
| 2177 var o = new core.List<api.I18nRegion>(); | 2177 var o = new core.List<api.I18nRegion>(); |
| 2178 o.add(buildI18nRegion()); | 2178 o.add(buildI18nRegion()); |
| 2179 o.add(buildI18nRegion()); | 2179 o.add(buildI18nRegion()); |
| 2180 return o; | 2180 return o; |
| 2181 } | 2181 } |
| 2182 | 2182 |
| 2183 checkUnnamed3350(core.List<api.I18nRegion> o) { | 2183 checkUnnamed739(core.List<api.I18nRegion> o) { |
| 2184 unittest.expect(o, unittest.hasLength(2)); | 2184 unittest.expect(o, unittest.hasLength(2)); |
| 2185 checkI18nRegion(o[0]); | 2185 checkI18nRegion(o[0]); |
| 2186 checkI18nRegion(o[1]); | 2186 checkI18nRegion(o[1]); |
| 2187 } | 2187 } |
| 2188 | 2188 |
| 2189 core.int buildCounterI18nRegionListResponse = 0; | 2189 core.int buildCounterI18nRegionListResponse = 0; |
| 2190 buildI18nRegionListResponse() { | 2190 buildI18nRegionListResponse() { |
| 2191 var o = new api.I18nRegionListResponse(); | 2191 var o = new api.I18nRegionListResponse(); |
| 2192 buildCounterI18nRegionListResponse++; | 2192 buildCounterI18nRegionListResponse++; |
| 2193 if (buildCounterI18nRegionListResponse < 3) { | 2193 if (buildCounterI18nRegionListResponse < 3) { |
| 2194 o.etag = "foo"; | 2194 o.etag = "foo"; |
| 2195 o.eventId = "foo"; | 2195 o.eventId = "foo"; |
| 2196 o.items = buildUnnamed3350(); | 2196 o.items = buildUnnamed739(); |
| 2197 o.kind = "foo"; | 2197 o.kind = "foo"; |
| 2198 o.visitorId = "foo"; | 2198 o.visitorId = "foo"; |
| 2199 } | 2199 } |
| 2200 buildCounterI18nRegionListResponse--; | 2200 buildCounterI18nRegionListResponse--; |
| 2201 return o; | 2201 return o; |
| 2202 } | 2202 } |
| 2203 | 2203 |
| 2204 checkI18nRegionListResponse(api.I18nRegionListResponse o) { | 2204 checkI18nRegionListResponse(api.I18nRegionListResponse o) { |
| 2205 buildCounterI18nRegionListResponse++; | 2205 buildCounterI18nRegionListResponse++; |
| 2206 if (buildCounterI18nRegionListResponse < 3) { | 2206 if (buildCounterI18nRegionListResponse < 3) { |
| 2207 unittest.expect(o.etag, unittest.equals('foo')); | 2207 unittest.expect(o.etag, unittest.equals('foo')); |
| 2208 unittest.expect(o.eventId, unittest.equals('foo')); | 2208 unittest.expect(o.eventId, unittest.equals('foo')); |
| 2209 checkUnnamed3350(o.items); | 2209 checkUnnamed739(o.items); |
| 2210 unittest.expect(o.kind, unittest.equals('foo')); | 2210 unittest.expect(o.kind, unittest.equals('foo')); |
| 2211 unittest.expect(o.visitorId, unittest.equals('foo')); | 2211 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 2212 } | 2212 } |
| 2213 buildCounterI18nRegionListResponse--; | 2213 buildCounterI18nRegionListResponse--; |
| 2214 } | 2214 } |
| 2215 | 2215 |
| 2216 core.int buildCounterI18nRegionSnippet = 0; | 2216 core.int buildCounterI18nRegionSnippet = 0; |
| 2217 buildI18nRegionSnippet() { | 2217 buildI18nRegionSnippet() { |
| 2218 var o = new api.I18nRegionSnippet(); | 2218 var o = new api.I18nRegionSnippet(); |
| 2219 buildCounterI18nRegionSnippet++; | 2219 buildCounterI18nRegionSnippet++; |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2359 | 2359 |
| 2360 checkInvideoPosition(api.InvideoPosition o) { | 2360 checkInvideoPosition(api.InvideoPosition o) { |
| 2361 buildCounterInvideoPosition++; | 2361 buildCounterInvideoPosition++; |
| 2362 if (buildCounterInvideoPosition < 3) { | 2362 if (buildCounterInvideoPosition < 3) { |
| 2363 unittest.expect(o.cornerPosition, unittest.equals('foo')); | 2363 unittest.expect(o.cornerPosition, unittest.equals('foo')); |
| 2364 unittest.expect(o.type, unittest.equals('foo')); | 2364 unittest.expect(o.type, unittest.equals('foo')); |
| 2365 } | 2365 } |
| 2366 buildCounterInvideoPosition--; | 2366 buildCounterInvideoPosition--; |
| 2367 } | 2367 } |
| 2368 | 2368 |
| 2369 buildUnnamed3351() { | 2369 buildUnnamed740() { |
| 2370 var o = new core.List<api.PromotedItem>(); | 2370 var o = new core.List<api.PromotedItem>(); |
| 2371 o.add(buildPromotedItem()); | 2371 o.add(buildPromotedItem()); |
| 2372 o.add(buildPromotedItem()); | 2372 o.add(buildPromotedItem()); |
| 2373 return o; | 2373 return o; |
| 2374 } | 2374 } |
| 2375 | 2375 |
| 2376 checkUnnamed3351(core.List<api.PromotedItem> o) { | 2376 checkUnnamed740(core.List<api.PromotedItem> o) { |
| 2377 unittest.expect(o, unittest.hasLength(2)); | 2377 unittest.expect(o, unittest.hasLength(2)); |
| 2378 checkPromotedItem(o[0]); | 2378 checkPromotedItem(o[0]); |
| 2379 checkPromotedItem(o[1]); | 2379 checkPromotedItem(o[1]); |
| 2380 } | 2380 } |
| 2381 | 2381 |
| 2382 core.int buildCounterInvideoPromotion = 0; | 2382 core.int buildCounterInvideoPromotion = 0; |
| 2383 buildInvideoPromotion() { | 2383 buildInvideoPromotion() { |
| 2384 var o = new api.InvideoPromotion(); | 2384 var o = new api.InvideoPromotion(); |
| 2385 buildCounterInvideoPromotion++; | 2385 buildCounterInvideoPromotion++; |
| 2386 if (buildCounterInvideoPromotion < 3) { | 2386 if (buildCounterInvideoPromotion < 3) { |
| 2387 o.defaultTiming = buildInvideoTiming(); | 2387 o.defaultTiming = buildInvideoTiming(); |
| 2388 o.items = buildUnnamed3351(); | 2388 o.items = buildUnnamed740(); |
| 2389 o.position = buildInvideoPosition(); | 2389 o.position = buildInvideoPosition(); |
| 2390 o.useSmartTiming = true; | 2390 o.useSmartTiming = true; |
| 2391 } | 2391 } |
| 2392 buildCounterInvideoPromotion--; | 2392 buildCounterInvideoPromotion--; |
| 2393 return o; | 2393 return o; |
| 2394 } | 2394 } |
| 2395 | 2395 |
| 2396 checkInvideoPromotion(api.InvideoPromotion o) { | 2396 checkInvideoPromotion(api.InvideoPromotion o) { |
| 2397 buildCounterInvideoPromotion++; | 2397 buildCounterInvideoPromotion++; |
| 2398 if (buildCounterInvideoPromotion < 3) { | 2398 if (buildCounterInvideoPromotion < 3) { |
| 2399 checkInvideoTiming(o.defaultTiming); | 2399 checkInvideoTiming(o.defaultTiming); |
| 2400 checkUnnamed3351(o.items); | 2400 checkUnnamed740(o.items); |
| 2401 checkInvideoPosition(o.position); | 2401 checkInvideoPosition(o.position); |
| 2402 unittest.expect(o.useSmartTiming, unittest.isTrue); | 2402 unittest.expect(o.useSmartTiming, unittest.isTrue); |
| 2403 } | 2403 } |
| 2404 buildCounterInvideoPromotion--; | 2404 buildCounterInvideoPromotion--; |
| 2405 } | 2405 } |
| 2406 | 2406 |
| 2407 core.int buildCounterInvideoTiming = 0; | 2407 core.int buildCounterInvideoTiming = 0; |
| 2408 buildInvideoTiming() { | 2408 buildInvideoTiming() { |
| 2409 var o = new api.InvideoTiming(); | 2409 var o = new api.InvideoTiming(); |
| 2410 buildCounterInvideoTiming++; | 2410 buildCounterInvideoTiming++; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2513 unittest.expect(o.enableEmbed, unittest.isTrue); | 2513 unittest.expect(o.enableEmbed, unittest.isTrue); |
| 2514 unittest.expect(o.enableLowLatency, unittest.isTrue); | 2514 unittest.expect(o.enableLowLatency, unittest.isTrue); |
| 2515 checkMonitorStreamInfo(o.monitorStream); | 2515 checkMonitorStreamInfo(o.monitorStream); |
| 2516 unittest.expect(o.projection, unittest.equals('foo')); | 2516 unittest.expect(o.projection, unittest.equals('foo')); |
| 2517 unittest.expect(o.recordFromStart, unittest.isTrue); | 2517 unittest.expect(o.recordFromStart, unittest.isTrue); |
| 2518 unittest.expect(o.startWithSlate, unittest.isTrue); | 2518 unittest.expect(o.startWithSlate, unittest.isTrue); |
| 2519 } | 2519 } |
| 2520 buildCounterLiveBroadcastContentDetails--; | 2520 buildCounterLiveBroadcastContentDetails--; |
| 2521 } | 2521 } |
| 2522 | 2522 |
| 2523 buildUnnamed3352() { | 2523 buildUnnamed741() { |
| 2524 var o = new core.List<api.LiveBroadcast>(); | 2524 var o = new core.List<api.LiveBroadcast>(); |
| 2525 o.add(buildLiveBroadcast()); | 2525 o.add(buildLiveBroadcast()); |
| 2526 o.add(buildLiveBroadcast()); | 2526 o.add(buildLiveBroadcast()); |
| 2527 return o; | 2527 return o; |
| 2528 } | 2528 } |
| 2529 | 2529 |
| 2530 checkUnnamed3352(core.List<api.LiveBroadcast> o) { | 2530 checkUnnamed741(core.List<api.LiveBroadcast> o) { |
| 2531 unittest.expect(o, unittest.hasLength(2)); | 2531 unittest.expect(o, unittest.hasLength(2)); |
| 2532 checkLiveBroadcast(o[0]); | 2532 checkLiveBroadcast(o[0]); |
| 2533 checkLiveBroadcast(o[1]); | 2533 checkLiveBroadcast(o[1]); |
| 2534 } | 2534 } |
| 2535 | 2535 |
| 2536 core.int buildCounterLiveBroadcastListResponse = 0; | 2536 core.int buildCounterLiveBroadcastListResponse = 0; |
| 2537 buildLiveBroadcastListResponse() { | 2537 buildLiveBroadcastListResponse() { |
| 2538 var o = new api.LiveBroadcastListResponse(); | 2538 var o = new api.LiveBroadcastListResponse(); |
| 2539 buildCounterLiveBroadcastListResponse++; | 2539 buildCounterLiveBroadcastListResponse++; |
| 2540 if (buildCounterLiveBroadcastListResponse < 3) { | 2540 if (buildCounterLiveBroadcastListResponse < 3) { |
| 2541 o.etag = "foo"; | 2541 o.etag = "foo"; |
| 2542 o.eventId = "foo"; | 2542 o.eventId = "foo"; |
| 2543 o.items = buildUnnamed3352(); | 2543 o.items = buildUnnamed741(); |
| 2544 o.kind = "foo"; | 2544 o.kind = "foo"; |
| 2545 o.nextPageToken = "foo"; | 2545 o.nextPageToken = "foo"; |
| 2546 o.pageInfo = buildPageInfo(); | 2546 o.pageInfo = buildPageInfo(); |
| 2547 o.prevPageToken = "foo"; | 2547 o.prevPageToken = "foo"; |
| 2548 o.tokenPagination = buildTokenPagination(); | 2548 o.tokenPagination = buildTokenPagination(); |
| 2549 o.visitorId = "foo"; | 2549 o.visitorId = "foo"; |
| 2550 } | 2550 } |
| 2551 buildCounterLiveBroadcastListResponse--; | 2551 buildCounterLiveBroadcastListResponse--; |
| 2552 return o; | 2552 return o; |
| 2553 } | 2553 } |
| 2554 | 2554 |
| 2555 checkLiveBroadcastListResponse(api.LiveBroadcastListResponse o) { | 2555 checkLiveBroadcastListResponse(api.LiveBroadcastListResponse o) { |
| 2556 buildCounterLiveBroadcastListResponse++; | 2556 buildCounterLiveBroadcastListResponse++; |
| 2557 if (buildCounterLiveBroadcastListResponse < 3) { | 2557 if (buildCounterLiveBroadcastListResponse < 3) { |
| 2558 unittest.expect(o.etag, unittest.equals('foo')); | 2558 unittest.expect(o.etag, unittest.equals('foo')); |
| 2559 unittest.expect(o.eventId, unittest.equals('foo')); | 2559 unittest.expect(o.eventId, unittest.equals('foo')); |
| 2560 checkUnnamed3352(o.items); | 2560 checkUnnamed741(o.items); |
| 2561 unittest.expect(o.kind, unittest.equals('foo')); | 2561 unittest.expect(o.kind, unittest.equals('foo')); |
| 2562 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2562 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2563 checkPageInfo(o.pageInfo); | 2563 checkPageInfo(o.pageInfo); |
| 2564 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 2564 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 2565 checkTokenPagination(o.tokenPagination); | 2565 checkTokenPagination(o.tokenPagination); |
| 2566 unittest.expect(o.visitorId, unittest.equals('foo')); | 2566 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 2567 } | 2567 } |
| 2568 buildCounterLiveBroadcastListResponse--; | 2568 buildCounterLiveBroadcastListResponse--; |
| 2569 } | 2569 } |
| 2570 | 2570 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2669 checkLiveBroadcastTopic(api.LiveBroadcastTopic o) { | 2669 checkLiveBroadcastTopic(api.LiveBroadcastTopic o) { |
| 2670 buildCounterLiveBroadcastTopic++; | 2670 buildCounterLiveBroadcastTopic++; |
| 2671 if (buildCounterLiveBroadcastTopic < 3) { | 2671 if (buildCounterLiveBroadcastTopic < 3) { |
| 2672 checkLiveBroadcastTopicSnippet(o.snippet); | 2672 checkLiveBroadcastTopicSnippet(o.snippet); |
| 2673 unittest.expect(o.type, unittest.equals('foo')); | 2673 unittest.expect(o.type, unittest.equals('foo')); |
| 2674 unittest.expect(o.unmatched, unittest.isTrue); | 2674 unittest.expect(o.unmatched, unittest.isTrue); |
| 2675 } | 2675 } |
| 2676 buildCounterLiveBroadcastTopic--; | 2676 buildCounterLiveBroadcastTopic--; |
| 2677 } | 2677 } |
| 2678 | 2678 |
| 2679 buildUnnamed3353() { | 2679 buildUnnamed742() { |
| 2680 var o = new core.List<api.LiveBroadcastTopic>(); | 2680 var o = new core.List<api.LiveBroadcastTopic>(); |
| 2681 o.add(buildLiveBroadcastTopic()); | 2681 o.add(buildLiveBroadcastTopic()); |
| 2682 o.add(buildLiveBroadcastTopic()); | 2682 o.add(buildLiveBroadcastTopic()); |
| 2683 return o; | 2683 return o; |
| 2684 } | 2684 } |
| 2685 | 2685 |
| 2686 checkUnnamed3353(core.List<api.LiveBroadcastTopic> o) { | 2686 checkUnnamed742(core.List<api.LiveBroadcastTopic> o) { |
| 2687 unittest.expect(o, unittest.hasLength(2)); | 2687 unittest.expect(o, unittest.hasLength(2)); |
| 2688 checkLiveBroadcastTopic(o[0]); | 2688 checkLiveBroadcastTopic(o[0]); |
| 2689 checkLiveBroadcastTopic(o[1]); | 2689 checkLiveBroadcastTopic(o[1]); |
| 2690 } | 2690 } |
| 2691 | 2691 |
| 2692 core.int buildCounterLiveBroadcastTopicDetails = 0; | 2692 core.int buildCounterLiveBroadcastTopicDetails = 0; |
| 2693 buildLiveBroadcastTopicDetails() { | 2693 buildLiveBroadcastTopicDetails() { |
| 2694 var o = new api.LiveBroadcastTopicDetails(); | 2694 var o = new api.LiveBroadcastTopicDetails(); |
| 2695 buildCounterLiveBroadcastTopicDetails++; | 2695 buildCounterLiveBroadcastTopicDetails++; |
| 2696 if (buildCounterLiveBroadcastTopicDetails < 3) { | 2696 if (buildCounterLiveBroadcastTopicDetails < 3) { |
| 2697 o.topics = buildUnnamed3353(); | 2697 o.topics = buildUnnamed742(); |
| 2698 } | 2698 } |
| 2699 buildCounterLiveBroadcastTopicDetails--; | 2699 buildCounterLiveBroadcastTopicDetails--; |
| 2700 return o; | 2700 return o; |
| 2701 } | 2701 } |
| 2702 | 2702 |
| 2703 checkLiveBroadcastTopicDetails(api.LiveBroadcastTopicDetails o) { | 2703 checkLiveBroadcastTopicDetails(api.LiveBroadcastTopicDetails o) { |
| 2704 buildCounterLiveBroadcastTopicDetails++; | 2704 buildCounterLiveBroadcastTopicDetails++; |
| 2705 if (buildCounterLiveBroadcastTopicDetails < 3) { | 2705 if (buildCounterLiveBroadcastTopicDetails < 3) { |
| 2706 checkUnnamed3353(o.topics); | 2706 checkUnnamed742(o.topics); |
| 2707 } | 2707 } |
| 2708 buildCounterLiveBroadcastTopicDetails--; | 2708 buildCounterLiveBroadcastTopicDetails--; |
| 2709 } | 2709 } |
| 2710 | 2710 |
| 2711 core.int buildCounterLiveBroadcastTopicSnippet = 0; | 2711 core.int buildCounterLiveBroadcastTopicSnippet = 0; |
| 2712 buildLiveBroadcastTopicSnippet() { | 2712 buildLiveBroadcastTopicSnippet() { |
| 2713 var o = new api.LiveBroadcastTopicSnippet(); | 2713 var o = new api.LiveBroadcastTopicSnippet(); |
| 2714 buildCounterLiveBroadcastTopicSnippet++; | 2714 buildCounterLiveBroadcastTopicSnippet++; |
| 2715 if (buildCounterLiveBroadcastTopicSnippet < 3) { | 2715 if (buildCounterLiveBroadcastTopicSnippet < 3) { |
| 2716 o.name = "foo"; | 2716 o.name = "foo"; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2876 } | 2876 } |
| 2877 | 2877 |
| 2878 checkLiveChatMessageDeletedDetails(api.LiveChatMessageDeletedDetails o) { | 2878 checkLiveChatMessageDeletedDetails(api.LiveChatMessageDeletedDetails o) { |
| 2879 buildCounterLiveChatMessageDeletedDetails++; | 2879 buildCounterLiveChatMessageDeletedDetails++; |
| 2880 if (buildCounterLiveChatMessageDeletedDetails < 3) { | 2880 if (buildCounterLiveChatMessageDeletedDetails < 3) { |
| 2881 unittest.expect(o.deletedMessageId, unittest.equals('foo')); | 2881 unittest.expect(o.deletedMessageId, unittest.equals('foo')); |
| 2882 } | 2882 } |
| 2883 buildCounterLiveChatMessageDeletedDetails--; | 2883 buildCounterLiveChatMessageDeletedDetails--; |
| 2884 } | 2884 } |
| 2885 | 2885 |
| 2886 buildUnnamed3354() { | 2886 buildUnnamed743() { |
| 2887 var o = new core.List<api.LiveChatMessage>(); | 2887 var o = new core.List<api.LiveChatMessage>(); |
| 2888 o.add(buildLiveChatMessage()); | 2888 o.add(buildLiveChatMessage()); |
| 2889 o.add(buildLiveChatMessage()); | 2889 o.add(buildLiveChatMessage()); |
| 2890 return o; | 2890 return o; |
| 2891 } | 2891 } |
| 2892 | 2892 |
| 2893 checkUnnamed3354(core.List<api.LiveChatMessage> o) { | 2893 checkUnnamed743(core.List<api.LiveChatMessage> o) { |
| 2894 unittest.expect(o, unittest.hasLength(2)); | 2894 unittest.expect(o, unittest.hasLength(2)); |
| 2895 checkLiveChatMessage(o[0]); | 2895 checkLiveChatMessage(o[0]); |
| 2896 checkLiveChatMessage(o[1]); | 2896 checkLiveChatMessage(o[1]); |
| 2897 } | 2897 } |
| 2898 | 2898 |
| 2899 core.int buildCounterLiveChatMessageListResponse = 0; | 2899 core.int buildCounterLiveChatMessageListResponse = 0; |
| 2900 buildLiveChatMessageListResponse() { | 2900 buildLiveChatMessageListResponse() { |
| 2901 var o = new api.LiveChatMessageListResponse(); | 2901 var o = new api.LiveChatMessageListResponse(); |
| 2902 buildCounterLiveChatMessageListResponse++; | 2902 buildCounterLiveChatMessageListResponse++; |
| 2903 if (buildCounterLiveChatMessageListResponse < 3) { | 2903 if (buildCounterLiveChatMessageListResponse < 3) { |
| 2904 o.etag = "foo"; | 2904 o.etag = "foo"; |
| 2905 o.eventId = "foo"; | 2905 o.eventId = "foo"; |
| 2906 o.items = buildUnnamed3354(); | 2906 o.items = buildUnnamed743(); |
| 2907 o.kind = "foo"; | 2907 o.kind = "foo"; |
| 2908 o.nextPageToken = "foo"; | 2908 o.nextPageToken = "foo"; |
| 2909 o.offlineAt = core.DateTime.parse("2002-02-27T14:01:02"); | 2909 o.offlineAt = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2910 o.pageInfo = buildPageInfo(); | 2910 o.pageInfo = buildPageInfo(); |
| 2911 o.pollingIntervalMillis = 42; | 2911 o.pollingIntervalMillis = 42; |
| 2912 o.tokenPagination = buildTokenPagination(); | 2912 o.tokenPagination = buildTokenPagination(); |
| 2913 o.visitorId = "foo"; | 2913 o.visitorId = "foo"; |
| 2914 } | 2914 } |
| 2915 buildCounterLiveChatMessageListResponse--; | 2915 buildCounterLiveChatMessageListResponse--; |
| 2916 return o; | 2916 return o; |
| 2917 } | 2917 } |
| 2918 | 2918 |
| 2919 checkLiveChatMessageListResponse(api.LiveChatMessageListResponse o) { | 2919 checkLiveChatMessageListResponse(api.LiveChatMessageListResponse o) { |
| 2920 buildCounterLiveChatMessageListResponse++; | 2920 buildCounterLiveChatMessageListResponse++; |
| 2921 if (buildCounterLiveChatMessageListResponse < 3) { | 2921 if (buildCounterLiveChatMessageListResponse < 3) { |
| 2922 unittest.expect(o.etag, unittest.equals('foo')); | 2922 unittest.expect(o.etag, unittest.equals('foo')); |
| 2923 unittest.expect(o.eventId, unittest.equals('foo')); | 2923 unittest.expect(o.eventId, unittest.equals('foo')); |
| 2924 checkUnnamed3354(o.items); | 2924 checkUnnamed743(o.items); |
| 2925 unittest.expect(o.kind, unittest.equals('foo')); | 2925 unittest.expect(o.kind, unittest.equals('foo')); |
| 2926 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2926 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2927 unittest.expect(o.offlineAt, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 2927 unittest.expect(o.offlineAt, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 2928 checkPageInfo(o.pageInfo); | 2928 checkPageInfo(o.pageInfo); |
| 2929 unittest.expect(o.pollingIntervalMillis, unittest.equals(42)); | 2929 unittest.expect(o.pollingIntervalMillis, unittest.equals(42)); |
| 2930 checkTokenPagination(o.tokenPagination); | 2930 checkTokenPagination(o.tokenPagination); |
| 2931 unittest.expect(o.visitorId, unittest.equals('foo')); | 2931 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 2932 } | 2932 } |
| 2933 buildCounterLiveChatMessageListResponse--; | 2933 buildCounterLiveChatMessageListResponse--; |
| 2934 } | 2934 } |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3017 buildCounterLiveChatModerator++; | 3017 buildCounterLiveChatModerator++; |
| 3018 if (buildCounterLiveChatModerator < 3) { | 3018 if (buildCounterLiveChatModerator < 3) { |
| 3019 unittest.expect(o.etag, unittest.equals('foo')); | 3019 unittest.expect(o.etag, unittest.equals('foo')); |
| 3020 unittest.expect(o.id, unittest.equals('foo')); | 3020 unittest.expect(o.id, unittest.equals('foo')); |
| 3021 unittest.expect(o.kind, unittest.equals('foo')); | 3021 unittest.expect(o.kind, unittest.equals('foo')); |
| 3022 checkLiveChatModeratorSnippet(o.snippet); | 3022 checkLiveChatModeratorSnippet(o.snippet); |
| 3023 } | 3023 } |
| 3024 buildCounterLiveChatModerator--; | 3024 buildCounterLiveChatModerator--; |
| 3025 } | 3025 } |
| 3026 | 3026 |
| 3027 buildUnnamed3355() { | 3027 buildUnnamed744() { |
| 3028 var o = new core.List<api.LiveChatModerator>(); | 3028 var o = new core.List<api.LiveChatModerator>(); |
| 3029 o.add(buildLiveChatModerator()); | 3029 o.add(buildLiveChatModerator()); |
| 3030 o.add(buildLiveChatModerator()); | 3030 o.add(buildLiveChatModerator()); |
| 3031 return o; | 3031 return o; |
| 3032 } | 3032 } |
| 3033 | 3033 |
| 3034 checkUnnamed3355(core.List<api.LiveChatModerator> o) { | 3034 checkUnnamed744(core.List<api.LiveChatModerator> o) { |
| 3035 unittest.expect(o, unittest.hasLength(2)); | 3035 unittest.expect(o, unittest.hasLength(2)); |
| 3036 checkLiveChatModerator(o[0]); | 3036 checkLiveChatModerator(o[0]); |
| 3037 checkLiveChatModerator(o[1]); | 3037 checkLiveChatModerator(o[1]); |
| 3038 } | 3038 } |
| 3039 | 3039 |
| 3040 core.int buildCounterLiveChatModeratorListResponse = 0; | 3040 core.int buildCounterLiveChatModeratorListResponse = 0; |
| 3041 buildLiveChatModeratorListResponse() { | 3041 buildLiveChatModeratorListResponse() { |
| 3042 var o = new api.LiveChatModeratorListResponse(); | 3042 var o = new api.LiveChatModeratorListResponse(); |
| 3043 buildCounterLiveChatModeratorListResponse++; | 3043 buildCounterLiveChatModeratorListResponse++; |
| 3044 if (buildCounterLiveChatModeratorListResponse < 3) { | 3044 if (buildCounterLiveChatModeratorListResponse < 3) { |
| 3045 o.etag = "foo"; | 3045 o.etag = "foo"; |
| 3046 o.eventId = "foo"; | 3046 o.eventId = "foo"; |
| 3047 o.items = buildUnnamed3355(); | 3047 o.items = buildUnnamed744(); |
| 3048 o.kind = "foo"; | 3048 o.kind = "foo"; |
| 3049 o.nextPageToken = "foo"; | 3049 o.nextPageToken = "foo"; |
| 3050 o.pageInfo = buildPageInfo(); | 3050 o.pageInfo = buildPageInfo(); |
| 3051 o.prevPageToken = "foo"; | 3051 o.prevPageToken = "foo"; |
| 3052 o.tokenPagination = buildTokenPagination(); | 3052 o.tokenPagination = buildTokenPagination(); |
| 3053 o.visitorId = "foo"; | 3053 o.visitorId = "foo"; |
| 3054 } | 3054 } |
| 3055 buildCounterLiveChatModeratorListResponse--; | 3055 buildCounterLiveChatModeratorListResponse--; |
| 3056 return o; | 3056 return o; |
| 3057 } | 3057 } |
| 3058 | 3058 |
| 3059 checkLiveChatModeratorListResponse(api.LiveChatModeratorListResponse o) { | 3059 checkLiveChatModeratorListResponse(api.LiveChatModeratorListResponse o) { |
| 3060 buildCounterLiveChatModeratorListResponse++; | 3060 buildCounterLiveChatModeratorListResponse++; |
| 3061 if (buildCounterLiveChatModeratorListResponse < 3) { | 3061 if (buildCounterLiveChatModeratorListResponse < 3) { |
| 3062 unittest.expect(o.etag, unittest.equals('foo')); | 3062 unittest.expect(o.etag, unittest.equals('foo')); |
| 3063 unittest.expect(o.eventId, unittest.equals('foo')); | 3063 unittest.expect(o.eventId, unittest.equals('foo')); |
| 3064 checkUnnamed3355(o.items); | 3064 checkUnnamed744(o.items); |
| 3065 unittest.expect(o.kind, unittest.equals('foo')); | 3065 unittest.expect(o.kind, unittest.equals('foo')); |
| 3066 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3066 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3067 checkPageInfo(o.pageInfo); | 3067 checkPageInfo(o.pageInfo); |
| 3068 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 3068 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 3069 checkTokenPagination(o.tokenPagination); | 3069 checkTokenPagination(o.tokenPagination); |
| 3070 unittest.expect(o.visitorId, unittest.equals('foo')); | 3070 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 3071 } | 3071 } |
| 3072 buildCounterLiveChatModeratorListResponse--; | 3072 buildCounterLiveChatModeratorListResponse--; |
| 3073 } | 3073 } |
| 3074 | 3074 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 3105 } | 3105 } |
| 3106 | 3106 |
| 3107 checkLiveChatPollClosedDetails(api.LiveChatPollClosedDetails o) { | 3107 checkLiveChatPollClosedDetails(api.LiveChatPollClosedDetails o) { |
| 3108 buildCounterLiveChatPollClosedDetails++; | 3108 buildCounterLiveChatPollClosedDetails++; |
| 3109 if (buildCounterLiveChatPollClosedDetails < 3) { | 3109 if (buildCounterLiveChatPollClosedDetails < 3) { |
| 3110 unittest.expect(o.pollId, unittest.equals('foo')); | 3110 unittest.expect(o.pollId, unittest.equals('foo')); |
| 3111 } | 3111 } |
| 3112 buildCounterLiveChatPollClosedDetails--; | 3112 buildCounterLiveChatPollClosedDetails--; |
| 3113 } | 3113 } |
| 3114 | 3114 |
| 3115 buildUnnamed3356() { | 3115 buildUnnamed745() { |
| 3116 var o = new core.List<api.LiveChatPollItem>(); | 3116 var o = new core.List<api.LiveChatPollItem>(); |
| 3117 o.add(buildLiveChatPollItem()); | 3117 o.add(buildLiveChatPollItem()); |
| 3118 o.add(buildLiveChatPollItem()); | 3118 o.add(buildLiveChatPollItem()); |
| 3119 return o; | 3119 return o; |
| 3120 } | 3120 } |
| 3121 | 3121 |
| 3122 checkUnnamed3356(core.List<api.LiveChatPollItem> o) { | 3122 checkUnnamed745(core.List<api.LiveChatPollItem> o) { |
| 3123 unittest.expect(o, unittest.hasLength(2)); | 3123 unittest.expect(o, unittest.hasLength(2)); |
| 3124 checkLiveChatPollItem(o[0]); | 3124 checkLiveChatPollItem(o[0]); |
| 3125 checkLiveChatPollItem(o[1]); | 3125 checkLiveChatPollItem(o[1]); |
| 3126 } | 3126 } |
| 3127 | 3127 |
| 3128 core.int buildCounterLiveChatPollEditedDetails = 0; | 3128 core.int buildCounterLiveChatPollEditedDetails = 0; |
| 3129 buildLiveChatPollEditedDetails() { | 3129 buildLiveChatPollEditedDetails() { |
| 3130 var o = new api.LiveChatPollEditedDetails(); | 3130 var o = new api.LiveChatPollEditedDetails(); |
| 3131 buildCounterLiveChatPollEditedDetails++; | 3131 buildCounterLiveChatPollEditedDetails++; |
| 3132 if (buildCounterLiveChatPollEditedDetails < 3) { | 3132 if (buildCounterLiveChatPollEditedDetails < 3) { |
| 3133 o.id = "foo"; | 3133 o.id = "foo"; |
| 3134 o.items = buildUnnamed3356(); | 3134 o.items = buildUnnamed745(); |
| 3135 o.prompt = "foo"; | 3135 o.prompt = "foo"; |
| 3136 } | 3136 } |
| 3137 buildCounterLiveChatPollEditedDetails--; | 3137 buildCounterLiveChatPollEditedDetails--; |
| 3138 return o; | 3138 return o; |
| 3139 } | 3139 } |
| 3140 | 3140 |
| 3141 checkLiveChatPollEditedDetails(api.LiveChatPollEditedDetails o) { | 3141 checkLiveChatPollEditedDetails(api.LiveChatPollEditedDetails o) { |
| 3142 buildCounterLiveChatPollEditedDetails++; | 3142 buildCounterLiveChatPollEditedDetails++; |
| 3143 if (buildCounterLiveChatPollEditedDetails < 3) { | 3143 if (buildCounterLiveChatPollEditedDetails < 3) { |
| 3144 unittest.expect(o.id, unittest.equals('foo')); | 3144 unittest.expect(o.id, unittest.equals('foo')); |
| 3145 checkUnnamed3356(o.items); | 3145 checkUnnamed745(o.items); |
| 3146 unittest.expect(o.prompt, unittest.equals('foo')); | 3146 unittest.expect(o.prompt, unittest.equals('foo')); |
| 3147 } | 3147 } |
| 3148 buildCounterLiveChatPollEditedDetails--; | 3148 buildCounterLiveChatPollEditedDetails--; |
| 3149 } | 3149 } |
| 3150 | 3150 |
| 3151 core.int buildCounterLiveChatPollItem = 0; | 3151 core.int buildCounterLiveChatPollItem = 0; |
| 3152 buildLiveChatPollItem() { | 3152 buildLiveChatPollItem() { |
| 3153 var o = new api.LiveChatPollItem(); | 3153 var o = new api.LiveChatPollItem(); |
| 3154 buildCounterLiveChatPollItem++; | 3154 buildCounterLiveChatPollItem++; |
| 3155 if (buildCounterLiveChatPollItem < 3) { | 3155 if (buildCounterLiveChatPollItem < 3) { |
| 3156 o.description = "foo"; | 3156 o.description = "foo"; |
| 3157 o.itemId = "foo"; | 3157 o.itemId = "foo"; |
| 3158 } | 3158 } |
| 3159 buildCounterLiveChatPollItem--; | 3159 buildCounterLiveChatPollItem--; |
| 3160 return o; | 3160 return o; |
| 3161 } | 3161 } |
| 3162 | 3162 |
| 3163 checkLiveChatPollItem(api.LiveChatPollItem o) { | 3163 checkLiveChatPollItem(api.LiveChatPollItem o) { |
| 3164 buildCounterLiveChatPollItem++; | 3164 buildCounterLiveChatPollItem++; |
| 3165 if (buildCounterLiveChatPollItem < 3) { | 3165 if (buildCounterLiveChatPollItem < 3) { |
| 3166 unittest.expect(o.description, unittest.equals('foo')); | 3166 unittest.expect(o.description, unittest.equals('foo')); |
| 3167 unittest.expect(o.itemId, unittest.equals('foo')); | 3167 unittest.expect(o.itemId, unittest.equals('foo')); |
| 3168 } | 3168 } |
| 3169 buildCounterLiveChatPollItem--; | 3169 buildCounterLiveChatPollItem--; |
| 3170 } | 3170 } |
| 3171 | 3171 |
| 3172 buildUnnamed3357() { | 3172 buildUnnamed746() { |
| 3173 var o = new core.List<api.LiveChatPollItem>(); | 3173 var o = new core.List<api.LiveChatPollItem>(); |
| 3174 o.add(buildLiveChatPollItem()); | 3174 o.add(buildLiveChatPollItem()); |
| 3175 o.add(buildLiveChatPollItem()); | 3175 o.add(buildLiveChatPollItem()); |
| 3176 return o; | 3176 return o; |
| 3177 } | 3177 } |
| 3178 | 3178 |
| 3179 checkUnnamed3357(core.List<api.LiveChatPollItem> o) { | 3179 checkUnnamed746(core.List<api.LiveChatPollItem> o) { |
| 3180 unittest.expect(o, unittest.hasLength(2)); | 3180 unittest.expect(o, unittest.hasLength(2)); |
| 3181 checkLiveChatPollItem(o[0]); | 3181 checkLiveChatPollItem(o[0]); |
| 3182 checkLiveChatPollItem(o[1]); | 3182 checkLiveChatPollItem(o[1]); |
| 3183 } | 3183 } |
| 3184 | 3184 |
| 3185 core.int buildCounterLiveChatPollOpenedDetails = 0; | 3185 core.int buildCounterLiveChatPollOpenedDetails = 0; |
| 3186 buildLiveChatPollOpenedDetails() { | 3186 buildLiveChatPollOpenedDetails() { |
| 3187 var o = new api.LiveChatPollOpenedDetails(); | 3187 var o = new api.LiveChatPollOpenedDetails(); |
| 3188 buildCounterLiveChatPollOpenedDetails++; | 3188 buildCounterLiveChatPollOpenedDetails++; |
| 3189 if (buildCounterLiveChatPollOpenedDetails < 3) { | 3189 if (buildCounterLiveChatPollOpenedDetails < 3) { |
| 3190 o.id = "foo"; | 3190 o.id = "foo"; |
| 3191 o.items = buildUnnamed3357(); | 3191 o.items = buildUnnamed746(); |
| 3192 o.prompt = "foo"; | 3192 o.prompt = "foo"; |
| 3193 } | 3193 } |
| 3194 buildCounterLiveChatPollOpenedDetails--; | 3194 buildCounterLiveChatPollOpenedDetails--; |
| 3195 return o; | 3195 return o; |
| 3196 } | 3196 } |
| 3197 | 3197 |
| 3198 checkLiveChatPollOpenedDetails(api.LiveChatPollOpenedDetails o) { | 3198 checkLiveChatPollOpenedDetails(api.LiveChatPollOpenedDetails o) { |
| 3199 buildCounterLiveChatPollOpenedDetails++; | 3199 buildCounterLiveChatPollOpenedDetails++; |
| 3200 if (buildCounterLiveChatPollOpenedDetails < 3) { | 3200 if (buildCounterLiveChatPollOpenedDetails < 3) { |
| 3201 unittest.expect(o.id, unittest.equals('foo')); | 3201 unittest.expect(o.id, unittest.equals('foo')); |
| 3202 checkUnnamed3357(o.items); | 3202 checkUnnamed746(o.items); |
| 3203 unittest.expect(o.prompt, unittest.equals('foo')); | 3203 unittest.expect(o.prompt, unittest.equals('foo')); |
| 3204 } | 3204 } |
| 3205 buildCounterLiveChatPollOpenedDetails--; | 3205 buildCounterLiveChatPollOpenedDetails--; |
| 3206 } | 3206 } |
| 3207 | 3207 |
| 3208 core.int buildCounterLiveChatPollVotedDetails = 0; | 3208 core.int buildCounterLiveChatPollVotedDetails = 0; |
| 3209 buildLiveChatPollVotedDetails() { | 3209 buildLiveChatPollVotedDetails() { |
| 3210 var o = new api.LiveChatPollVotedDetails(); | 3210 var o = new api.LiveChatPollVotedDetails(); |
| 3211 buildCounterLiveChatPollVotedDetails++; | 3211 buildCounterLiveChatPollVotedDetails++; |
| 3212 if (buildCounterLiveChatPollVotedDetails < 3) { | 3212 if (buildCounterLiveChatPollVotedDetails < 3) { |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3338 | 3338 |
| 3339 checkLiveStreamContentDetails(api.LiveStreamContentDetails o) { | 3339 checkLiveStreamContentDetails(api.LiveStreamContentDetails o) { |
| 3340 buildCounterLiveStreamContentDetails++; | 3340 buildCounterLiveStreamContentDetails++; |
| 3341 if (buildCounterLiveStreamContentDetails < 3) { | 3341 if (buildCounterLiveStreamContentDetails < 3) { |
| 3342 unittest.expect(o.closedCaptionsIngestionUrl, unittest.equals('foo')); | 3342 unittest.expect(o.closedCaptionsIngestionUrl, unittest.equals('foo')); |
| 3343 unittest.expect(o.isReusable, unittest.isTrue); | 3343 unittest.expect(o.isReusable, unittest.isTrue); |
| 3344 } | 3344 } |
| 3345 buildCounterLiveStreamContentDetails--; | 3345 buildCounterLiveStreamContentDetails--; |
| 3346 } | 3346 } |
| 3347 | 3347 |
| 3348 buildUnnamed3358() { | 3348 buildUnnamed747() { |
| 3349 var o = new core.List<api.LiveStreamConfigurationIssue>(); | 3349 var o = new core.List<api.LiveStreamConfigurationIssue>(); |
| 3350 o.add(buildLiveStreamConfigurationIssue()); | 3350 o.add(buildLiveStreamConfigurationIssue()); |
| 3351 o.add(buildLiveStreamConfigurationIssue()); | 3351 o.add(buildLiveStreamConfigurationIssue()); |
| 3352 return o; | 3352 return o; |
| 3353 } | 3353 } |
| 3354 | 3354 |
| 3355 checkUnnamed3358(core.List<api.LiveStreamConfigurationIssue> o) { | 3355 checkUnnamed747(core.List<api.LiveStreamConfigurationIssue> o) { |
| 3356 unittest.expect(o, unittest.hasLength(2)); | 3356 unittest.expect(o, unittest.hasLength(2)); |
| 3357 checkLiveStreamConfigurationIssue(o[0]); | 3357 checkLiveStreamConfigurationIssue(o[0]); |
| 3358 checkLiveStreamConfigurationIssue(o[1]); | 3358 checkLiveStreamConfigurationIssue(o[1]); |
| 3359 } | 3359 } |
| 3360 | 3360 |
| 3361 core.int buildCounterLiveStreamHealthStatus = 0; | 3361 core.int buildCounterLiveStreamHealthStatus = 0; |
| 3362 buildLiveStreamHealthStatus() { | 3362 buildLiveStreamHealthStatus() { |
| 3363 var o = new api.LiveStreamHealthStatus(); | 3363 var o = new api.LiveStreamHealthStatus(); |
| 3364 buildCounterLiveStreamHealthStatus++; | 3364 buildCounterLiveStreamHealthStatus++; |
| 3365 if (buildCounterLiveStreamHealthStatus < 3) { | 3365 if (buildCounterLiveStreamHealthStatus < 3) { |
| 3366 o.configurationIssues = buildUnnamed3358(); | 3366 o.configurationIssues = buildUnnamed747(); |
| 3367 o.lastUpdateTimeSeconds = "foo"; | 3367 o.lastUpdateTimeSeconds = "foo"; |
| 3368 o.status = "foo"; | 3368 o.status = "foo"; |
| 3369 } | 3369 } |
| 3370 buildCounterLiveStreamHealthStatus--; | 3370 buildCounterLiveStreamHealthStatus--; |
| 3371 return o; | 3371 return o; |
| 3372 } | 3372 } |
| 3373 | 3373 |
| 3374 checkLiveStreamHealthStatus(api.LiveStreamHealthStatus o) { | 3374 checkLiveStreamHealthStatus(api.LiveStreamHealthStatus o) { |
| 3375 buildCounterLiveStreamHealthStatus++; | 3375 buildCounterLiveStreamHealthStatus++; |
| 3376 if (buildCounterLiveStreamHealthStatus < 3) { | 3376 if (buildCounterLiveStreamHealthStatus < 3) { |
| 3377 checkUnnamed3358(o.configurationIssues); | 3377 checkUnnamed747(o.configurationIssues); |
| 3378 unittest.expect(o.lastUpdateTimeSeconds, unittest.equals('foo')); | 3378 unittest.expect(o.lastUpdateTimeSeconds, unittest.equals('foo')); |
| 3379 unittest.expect(o.status, unittest.equals('foo')); | 3379 unittest.expect(o.status, unittest.equals('foo')); |
| 3380 } | 3380 } |
| 3381 buildCounterLiveStreamHealthStatus--; | 3381 buildCounterLiveStreamHealthStatus--; |
| 3382 } | 3382 } |
| 3383 | 3383 |
| 3384 buildUnnamed3359() { | 3384 buildUnnamed748() { |
| 3385 var o = new core.List<api.LiveStream>(); | 3385 var o = new core.List<api.LiveStream>(); |
| 3386 o.add(buildLiveStream()); | 3386 o.add(buildLiveStream()); |
| 3387 o.add(buildLiveStream()); | 3387 o.add(buildLiveStream()); |
| 3388 return o; | 3388 return o; |
| 3389 } | 3389 } |
| 3390 | 3390 |
| 3391 checkUnnamed3359(core.List<api.LiveStream> o) { | 3391 checkUnnamed748(core.List<api.LiveStream> o) { |
| 3392 unittest.expect(o, unittest.hasLength(2)); | 3392 unittest.expect(o, unittest.hasLength(2)); |
| 3393 checkLiveStream(o[0]); | 3393 checkLiveStream(o[0]); |
| 3394 checkLiveStream(o[1]); | 3394 checkLiveStream(o[1]); |
| 3395 } | 3395 } |
| 3396 | 3396 |
| 3397 core.int buildCounterLiveStreamListResponse = 0; | 3397 core.int buildCounterLiveStreamListResponse = 0; |
| 3398 buildLiveStreamListResponse() { | 3398 buildLiveStreamListResponse() { |
| 3399 var o = new api.LiveStreamListResponse(); | 3399 var o = new api.LiveStreamListResponse(); |
| 3400 buildCounterLiveStreamListResponse++; | 3400 buildCounterLiveStreamListResponse++; |
| 3401 if (buildCounterLiveStreamListResponse < 3) { | 3401 if (buildCounterLiveStreamListResponse < 3) { |
| 3402 o.etag = "foo"; | 3402 o.etag = "foo"; |
| 3403 o.eventId = "foo"; | 3403 o.eventId = "foo"; |
| 3404 o.items = buildUnnamed3359(); | 3404 o.items = buildUnnamed748(); |
| 3405 o.kind = "foo"; | 3405 o.kind = "foo"; |
| 3406 o.nextPageToken = "foo"; | 3406 o.nextPageToken = "foo"; |
| 3407 o.pageInfo = buildPageInfo(); | 3407 o.pageInfo = buildPageInfo(); |
| 3408 o.prevPageToken = "foo"; | 3408 o.prevPageToken = "foo"; |
| 3409 o.tokenPagination = buildTokenPagination(); | 3409 o.tokenPagination = buildTokenPagination(); |
| 3410 o.visitorId = "foo"; | 3410 o.visitorId = "foo"; |
| 3411 } | 3411 } |
| 3412 buildCounterLiveStreamListResponse--; | 3412 buildCounterLiveStreamListResponse--; |
| 3413 return o; | 3413 return o; |
| 3414 } | 3414 } |
| 3415 | 3415 |
| 3416 checkLiveStreamListResponse(api.LiveStreamListResponse o) { | 3416 checkLiveStreamListResponse(api.LiveStreamListResponse o) { |
| 3417 buildCounterLiveStreamListResponse++; | 3417 buildCounterLiveStreamListResponse++; |
| 3418 if (buildCounterLiveStreamListResponse < 3) { | 3418 if (buildCounterLiveStreamListResponse < 3) { |
| 3419 unittest.expect(o.etag, unittest.equals('foo')); | 3419 unittest.expect(o.etag, unittest.equals('foo')); |
| 3420 unittest.expect(o.eventId, unittest.equals('foo')); | 3420 unittest.expect(o.eventId, unittest.equals('foo')); |
| 3421 checkUnnamed3359(o.items); | 3421 checkUnnamed748(o.items); |
| 3422 unittest.expect(o.kind, unittest.equals('foo')); | 3422 unittest.expect(o.kind, unittest.equals('foo')); |
| 3423 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3423 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3424 checkPageInfo(o.pageInfo); | 3424 checkPageInfo(o.pageInfo); |
| 3425 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 3425 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 3426 checkTokenPagination(o.tokenPagination); | 3426 checkTokenPagination(o.tokenPagination); |
| 3427 unittest.expect(o.visitorId, unittest.equals('foo')); | 3427 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 3428 } | 3428 } |
| 3429 buildCounterLiveStreamListResponse--; | 3429 buildCounterLiveStreamListResponse--; |
| 3430 } | 3430 } |
| 3431 | 3431 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3470 | 3470 |
| 3471 checkLiveStreamStatus(api.LiveStreamStatus o) { | 3471 checkLiveStreamStatus(api.LiveStreamStatus o) { |
| 3472 buildCounterLiveStreamStatus++; | 3472 buildCounterLiveStreamStatus++; |
| 3473 if (buildCounterLiveStreamStatus < 3) { | 3473 if (buildCounterLiveStreamStatus < 3) { |
| 3474 checkLiveStreamHealthStatus(o.healthStatus); | 3474 checkLiveStreamHealthStatus(o.healthStatus); |
| 3475 unittest.expect(o.streamStatus, unittest.equals('foo')); | 3475 unittest.expect(o.streamStatus, unittest.equals('foo')); |
| 3476 } | 3476 } |
| 3477 buildCounterLiveStreamStatus--; | 3477 buildCounterLiveStreamStatus--; |
| 3478 } | 3478 } |
| 3479 | 3479 |
| 3480 buildUnnamed3360() { | 3480 buildUnnamed749() { |
| 3481 var o = new core.List<api.LocalizedString>(); | 3481 var o = new core.List<api.LocalizedString>(); |
| 3482 o.add(buildLocalizedString()); | 3482 o.add(buildLocalizedString()); |
| 3483 o.add(buildLocalizedString()); | 3483 o.add(buildLocalizedString()); |
| 3484 return o; | 3484 return o; |
| 3485 } | 3485 } |
| 3486 | 3486 |
| 3487 checkUnnamed3360(core.List<api.LocalizedString> o) { | 3487 checkUnnamed749(core.List<api.LocalizedString> o) { |
| 3488 unittest.expect(o, unittest.hasLength(2)); | 3488 unittest.expect(o, unittest.hasLength(2)); |
| 3489 checkLocalizedString(o[0]); | 3489 checkLocalizedString(o[0]); |
| 3490 checkLocalizedString(o[1]); | 3490 checkLocalizedString(o[1]); |
| 3491 } | 3491 } |
| 3492 | 3492 |
| 3493 core.int buildCounterLocalizedProperty = 0; | 3493 core.int buildCounterLocalizedProperty = 0; |
| 3494 buildLocalizedProperty() { | 3494 buildLocalizedProperty() { |
| 3495 var o = new api.LocalizedProperty(); | 3495 var o = new api.LocalizedProperty(); |
| 3496 buildCounterLocalizedProperty++; | 3496 buildCounterLocalizedProperty++; |
| 3497 if (buildCounterLocalizedProperty < 3) { | 3497 if (buildCounterLocalizedProperty < 3) { |
| 3498 o.default_ = "foo"; | 3498 o.default_ = "foo"; |
| 3499 o.defaultLanguage = buildLanguageTag(); | 3499 o.defaultLanguage = buildLanguageTag(); |
| 3500 o.localized = buildUnnamed3360(); | 3500 o.localized = buildUnnamed749(); |
| 3501 } | 3501 } |
| 3502 buildCounterLocalizedProperty--; | 3502 buildCounterLocalizedProperty--; |
| 3503 return o; | 3503 return o; |
| 3504 } | 3504 } |
| 3505 | 3505 |
| 3506 checkLocalizedProperty(api.LocalizedProperty o) { | 3506 checkLocalizedProperty(api.LocalizedProperty o) { |
| 3507 buildCounterLocalizedProperty++; | 3507 buildCounterLocalizedProperty++; |
| 3508 if (buildCounterLocalizedProperty < 3) { | 3508 if (buildCounterLocalizedProperty < 3) { |
| 3509 unittest.expect(o.default_, unittest.equals('foo')); | 3509 unittest.expect(o.default_, unittest.equals('foo')); |
| 3510 checkLanguageTag(o.defaultLanguage); | 3510 checkLanguageTag(o.defaultLanguage); |
| 3511 checkUnnamed3360(o.localized); | 3511 checkUnnamed749(o.localized); |
| 3512 } | 3512 } |
| 3513 buildCounterLocalizedProperty--; | 3513 buildCounterLocalizedProperty--; |
| 3514 } | 3514 } |
| 3515 | 3515 |
| 3516 core.int buildCounterLocalizedString = 0; | 3516 core.int buildCounterLocalizedString = 0; |
| 3517 buildLocalizedString() { | 3517 buildLocalizedString() { |
| 3518 var o = new api.LocalizedString(); | 3518 var o = new api.LocalizedString(); |
| 3519 buildCounterLocalizedString++; | 3519 buildCounterLocalizedString++; |
| 3520 if (buildCounterLocalizedString < 3) { | 3520 if (buildCounterLocalizedString < 3) { |
| 3521 o.language = "foo"; | 3521 o.language = "foo"; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3571 | 3571 |
| 3572 checkPageInfo(api.PageInfo o) { | 3572 checkPageInfo(api.PageInfo o) { |
| 3573 buildCounterPageInfo++; | 3573 buildCounterPageInfo++; |
| 3574 if (buildCounterPageInfo < 3) { | 3574 if (buildCounterPageInfo < 3) { |
| 3575 unittest.expect(o.resultsPerPage, unittest.equals(42)); | 3575 unittest.expect(o.resultsPerPage, unittest.equals(42)); |
| 3576 unittest.expect(o.totalResults, unittest.equals(42)); | 3576 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3577 } | 3577 } |
| 3578 buildCounterPageInfo--; | 3578 buildCounterPageInfo--; |
| 3579 } | 3579 } |
| 3580 | 3580 |
| 3581 buildUnnamed3361() { | 3581 buildUnnamed750() { |
| 3582 var o = new core.Map<core.String, api.PlaylistLocalization>(); | 3582 var o = new core.Map<core.String, api.PlaylistLocalization>(); |
| 3583 o["x"] = buildPlaylistLocalization(); | 3583 o["x"] = buildPlaylistLocalization(); |
| 3584 o["y"] = buildPlaylistLocalization(); | 3584 o["y"] = buildPlaylistLocalization(); |
| 3585 return o; | 3585 return o; |
| 3586 } | 3586 } |
| 3587 | 3587 |
| 3588 checkUnnamed3361(core.Map<core.String, api.PlaylistLocalization> o) { | 3588 checkUnnamed750(core.Map<core.String, api.PlaylistLocalization> o) { |
| 3589 unittest.expect(o, unittest.hasLength(2)); | 3589 unittest.expect(o, unittest.hasLength(2)); |
| 3590 checkPlaylistLocalization(o["x"]); | 3590 checkPlaylistLocalization(o["x"]); |
| 3591 checkPlaylistLocalization(o["y"]); | 3591 checkPlaylistLocalization(o["y"]); |
| 3592 } | 3592 } |
| 3593 | 3593 |
| 3594 core.int buildCounterPlaylist = 0; | 3594 core.int buildCounterPlaylist = 0; |
| 3595 buildPlaylist() { | 3595 buildPlaylist() { |
| 3596 var o = new api.Playlist(); | 3596 var o = new api.Playlist(); |
| 3597 buildCounterPlaylist++; | 3597 buildCounterPlaylist++; |
| 3598 if (buildCounterPlaylist < 3) { | 3598 if (buildCounterPlaylist < 3) { |
| 3599 o.contentDetails = buildPlaylistContentDetails(); | 3599 o.contentDetails = buildPlaylistContentDetails(); |
| 3600 o.etag = "foo"; | 3600 o.etag = "foo"; |
| 3601 o.id = "foo"; | 3601 o.id = "foo"; |
| 3602 o.kind = "foo"; | 3602 o.kind = "foo"; |
| 3603 o.localizations = buildUnnamed3361(); | 3603 o.localizations = buildUnnamed750(); |
| 3604 o.player = buildPlaylistPlayer(); | 3604 o.player = buildPlaylistPlayer(); |
| 3605 o.snippet = buildPlaylistSnippet(); | 3605 o.snippet = buildPlaylistSnippet(); |
| 3606 o.status = buildPlaylistStatus(); | 3606 o.status = buildPlaylistStatus(); |
| 3607 } | 3607 } |
| 3608 buildCounterPlaylist--; | 3608 buildCounterPlaylist--; |
| 3609 return o; | 3609 return o; |
| 3610 } | 3610 } |
| 3611 | 3611 |
| 3612 checkPlaylist(api.Playlist o) { | 3612 checkPlaylist(api.Playlist o) { |
| 3613 buildCounterPlaylist++; | 3613 buildCounterPlaylist++; |
| 3614 if (buildCounterPlaylist < 3) { | 3614 if (buildCounterPlaylist < 3) { |
| 3615 checkPlaylistContentDetails(o.contentDetails); | 3615 checkPlaylistContentDetails(o.contentDetails); |
| 3616 unittest.expect(o.etag, unittest.equals('foo')); | 3616 unittest.expect(o.etag, unittest.equals('foo')); |
| 3617 unittest.expect(o.id, unittest.equals('foo')); | 3617 unittest.expect(o.id, unittest.equals('foo')); |
| 3618 unittest.expect(o.kind, unittest.equals('foo')); | 3618 unittest.expect(o.kind, unittest.equals('foo')); |
| 3619 checkUnnamed3361(o.localizations); | 3619 checkUnnamed750(o.localizations); |
| 3620 checkPlaylistPlayer(o.player); | 3620 checkPlaylistPlayer(o.player); |
| 3621 checkPlaylistSnippet(o.snippet); | 3621 checkPlaylistSnippet(o.snippet); |
| 3622 checkPlaylistStatus(o.status); | 3622 checkPlaylistStatus(o.status); |
| 3623 } | 3623 } |
| 3624 buildCounterPlaylist--; | 3624 buildCounterPlaylist--; |
| 3625 } | 3625 } |
| 3626 | 3626 |
| 3627 core.int buildCounterPlaylistContentDetails = 0; | 3627 core.int buildCounterPlaylistContentDetails = 0; |
| 3628 buildPlaylistContentDetails() { | 3628 buildPlaylistContentDetails() { |
| 3629 var o = new api.PlaylistContentDetails(); | 3629 var o = new api.PlaylistContentDetails(); |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3690 buildCounterPlaylistItemContentDetails++; | 3690 buildCounterPlaylistItemContentDetails++; |
| 3691 if (buildCounterPlaylistItemContentDetails < 3) { | 3691 if (buildCounterPlaylistItemContentDetails < 3) { |
| 3692 unittest.expect(o.endAt, unittest.equals('foo')); | 3692 unittest.expect(o.endAt, unittest.equals('foo')); |
| 3693 unittest.expect(o.note, unittest.equals('foo')); | 3693 unittest.expect(o.note, unittest.equals('foo')); |
| 3694 unittest.expect(o.startAt, unittest.equals('foo')); | 3694 unittest.expect(o.startAt, unittest.equals('foo')); |
| 3695 unittest.expect(o.videoId, unittest.equals('foo')); | 3695 unittest.expect(o.videoId, unittest.equals('foo')); |
| 3696 } | 3696 } |
| 3697 buildCounterPlaylistItemContentDetails--; | 3697 buildCounterPlaylistItemContentDetails--; |
| 3698 } | 3698 } |
| 3699 | 3699 |
| 3700 buildUnnamed3362() { | 3700 buildUnnamed751() { |
| 3701 var o = new core.List<api.PlaylistItem>(); | 3701 var o = new core.List<api.PlaylistItem>(); |
| 3702 o.add(buildPlaylistItem()); | 3702 o.add(buildPlaylistItem()); |
| 3703 o.add(buildPlaylistItem()); | 3703 o.add(buildPlaylistItem()); |
| 3704 return o; | 3704 return o; |
| 3705 } | 3705 } |
| 3706 | 3706 |
| 3707 checkUnnamed3362(core.List<api.PlaylistItem> o) { | 3707 checkUnnamed751(core.List<api.PlaylistItem> o) { |
| 3708 unittest.expect(o, unittest.hasLength(2)); | 3708 unittest.expect(o, unittest.hasLength(2)); |
| 3709 checkPlaylistItem(o[0]); | 3709 checkPlaylistItem(o[0]); |
| 3710 checkPlaylistItem(o[1]); | 3710 checkPlaylistItem(o[1]); |
| 3711 } | 3711 } |
| 3712 | 3712 |
| 3713 core.int buildCounterPlaylistItemListResponse = 0; | 3713 core.int buildCounterPlaylistItemListResponse = 0; |
| 3714 buildPlaylistItemListResponse() { | 3714 buildPlaylistItemListResponse() { |
| 3715 var o = new api.PlaylistItemListResponse(); | 3715 var o = new api.PlaylistItemListResponse(); |
| 3716 buildCounterPlaylistItemListResponse++; | 3716 buildCounterPlaylistItemListResponse++; |
| 3717 if (buildCounterPlaylistItemListResponse < 3) { | 3717 if (buildCounterPlaylistItemListResponse < 3) { |
| 3718 o.etag = "foo"; | 3718 o.etag = "foo"; |
| 3719 o.eventId = "foo"; | 3719 o.eventId = "foo"; |
| 3720 o.items = buildUnnamed3362(); | 3720 o.items = buildUnnamed751(); |
| 3721 o.kind = "foo"; | 3721 o.kind = "foo"; |
| 3722 o.nextPageToken = "foo"; | 3722 o.nextPageToken = "foo"; |
| 3723 o.pageInfo = buildPageInfo(); | 3723 o.pageInfo = buildPageInfo(); |
| 3724 o.prevPageToken = "foo"; | 3724 o.prevPageToken = "foo"; |
| 3725 o.tokenPagination = buildTokenPagination(); | 3725 o.tokenPagination = buildTokenPagination(); |
| 3726 o.visitorId = "foo"; | 3726 o.visitorId = "foo"; |
| 3727 } | 3727 } |
| 3728 buildCounterPlaylistItemListResponse--; | 3728 buildCounterPlaylistItemListResponse--; |
| 3729 return o; | 3729 return o; |
| 3730 } | 3730 } |
| 3731 | 3731 |
| 3732 checkPlaylistItemListResponse(api.PlaylistItemListResponse o) { | 3732 checkPlaylistItemListResponse(api.PlaylistItemListResponse o) { |
| 3733 buildCounterPlaylistItemListResponse++; | 3733 buildCounterPlaylistItemListResponse++; |
| 3734 if (buildCounterPlaylistItemListResponse < 3) { | 3734 if (buildCounterPlaylistItemListResponse < 3) { |
| 3735 unittest.expect(o.etag, unittest.equals('foo')); | 3735 unittest.expect(o.etag, unittest.equals('foo')); |
| 3736 unittest.expect(o.eventId, unittest.equals('foo')); | 3736 unittest.expect(o.eventId, unittest.equals('foo')); |
| 3737 checkUnnamed3362(o.items); | 3737 checkUnnamed751(o.items); |
| 3738 unittest.expect(o.kind, unittest.equals('foo')); | 3738 unittest.expect(o.kind, unittest.equals('foo')); |
| 3739 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3739 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3740 checkPageInfo(o.pageInfo); | 3740 checkPageInfo(o.pageInfo); |
| 3741 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 3741 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 3742 checkTokenPagination(o.tokenPagination); | 3742 checkTokenPagination(o.tokenPagination); |
| 3743 unittest.expect(o.visitorId, unittest.equals('foo')); | 3743 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 3744 } | 3744 } |
| 3745 buildCounterPlaylistItemListResponse--; | 3745 buildCounterPlaylistItemListResponse--; |
| 3746 } | 3746 } |
| 3747 | 3747 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3792 } | 3792 } |
| 3793 | 3793 |
| 3794 checkPlaylistItemStatus(api.PlaylistItemStatus o) { | 3794 checkPlaylistItemStatus(api.PlaylistItemStatus o) { |
| 3795 buildCounterPlaylistItemStatus++; | 3795 buildCounterPlaylistItemStatus++; |
| 3796 if (buildCounterPlaylistItemStatus < 3) { | 3796 if (buildCounterPlaylistItemStatus < 3) { |
| 3797 unittest.expect(o.privacyStatus, unittest.equals('foo')); | 3797 unittest.expect(o.privacyStatus, unittest.equals('foo')); |
| 3798 } | 3798 } |
| 3799 buildCounterPlaylistItemStatus--; | 3799 buildCounterPlaylistItemStatus--; |
| 3800 } | 3800 } |
| 3801 | 3801 |
| 3802 buildUnnamed3363() { | 3802 buildUnnamed752() { |
| 3803 var o = new core.List<api.Playlist>(); | 3803 var o = new core.List<api.Playlist>(); |
| 3804 o.add(buildPlaylist()); | 3804 o.add(buildPlaylist()); |
| 3805 o.add(buildPlaylist()); | 3805 o.add(buildPlaylist()); |
| 3806 return o; | 3806 return o; |
| 3807 } | 3807 } |
| 3808 | 3808 |
| 3809 checkUnnamed3363(core.List<api.Playlist> o) { | 3809 checkUnnamed752(core.List<api.Playlist> o) { |
| 3810 unittest.expect(o, unittest.hasLength(2)); | 3810 unittest.expect(o, unittest.hasLength(2)); |
| 3811 checkPlaylist(o[0]); | 3811 checkPlaylist(o[0]); |
| 3812 checkPlaylist(o[1]); | 3812 checkPlaylist(o[1]); |
| 3813 } | 3813 } |
| 3814 | 3814 |
| 3815 core.int buildCounterPlaylistListResponse = 0; | 3815 core.int buildCounterPlaylistListResponse = 0; |
| 3816 buildPlaylistListResponse() { | 3816 buildPlaylistListResponse() { |
| 3817 var o = new api.PlaylistListResponse(); | 3817 var o = new api.PlaylistListResponse(); |
| 3818 buildCounterPlaylistListResponse++; | 3818 buildCounterPlaylistListResponse++; |
| 3819 if (buildCounterPlaylistListResponse < 3) { | 3819 if (buildCounterPlaylistListResponse < 3) { |
| 3820 o.etag = "foo"; | 3820 o.etag = "foo"; |
| 3821 o.eventId = "foo"; | 3821 o.eventId = "foo"; |
| 3822 o.items = buildUnnamed3363(); | 3822 o.items = buildUnnamed752(); |
| 3823 o.kind = "foo"; | 3823 o.kind = "foo"; |
| 3824 o.nextPageToken = "foo"; | 3824 o.nextPageToken = "foo"; |
| 3825 o.pageInfo = buildPageInfo(); | 3825 o.pageInfo = buildPageInfo(); |
| 3826 o.prevPageToken = "foo"; | 3826 o.prevPageToken = "foo"; |
| 3827 o.tokenPagination = buildTokenPagination(); | 3827 o.tokenPagination = buildTokenPagination(); |
| 3828 o.visitorId = "foo"; | 3828 o.visitorId = "foo"; |
| 3829 } | 3829 } |
| 3830 buildCounterPlaylistListResponse--; | 3830 buildCounterPlaylistListResponse--; |
| 3831 return o; | 3831 return o; |
| 3832 } | 3832 } |
| 3833 | 3833 |
| 3834 checkPlaylistListResponse(api.PlaylistListResponse o) { | 3834 checkPlaylistListResponse(api.PlaylistListResponse o) { |
| 3835 buildCounterPlaylistListResponse++; | 3835 buildCounterPlaylistListResponse++; |
| 3836 if (buildCounterPlaylistListResponse < 3) { | 3836 if (buildCounterPlaylistListResponse < 3) { |
| 3837 unittest.expect(o.etag, unittest.equals('foo')); | 3837 unittest.expect(o.etag, unittest.equals('foo')); |
| 3838 unittest.expect(o.eventId, unittest.equals('foo')); | 3838 unittest.expect(o.eventId, unittest.equals('foo')); |
| 3839 checkUnnamed3363(o.items); | 3839 checkUnnamed752(o.items); |
| 3840 unittest.expect(o.kind, unittest.equals('foo')); | 3840 unittest.expect(o.kind, unittest.equals('foo')); |
| 3841 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3841 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3842 checkPageInfo(o.pageInfo); | 3842 checkPageInfo(o.pageInfo); |
| 3843 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 3843 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 3844 checkTokenPagination(o.tokenPagination); | 3844 checkTokenPagination(o.tokenPagination); |
| 3845 unittest.expect(o.visitorId, unittest.equals('foo')); | 3845 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 3846 } | 3846 } |
| 3847 buildCounterPlaylistListResponse--; | 3847 buildCounterPlaylistListResponse--; |
| 3848 } | 3848 } |
| 3849 | 3849 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 3880 } | 3880 } |
| 3881 | 3881 |
| 3882 checkPlaylistPlayer(api.PlaylistPlayer o) { | 3882 checkPlaylistPlayer(api.PlaylistPlayer o) { |
| 3883 buildCounterPlaylistPlayer++; | 3883 buildCounterPlaylistPlayer++; |
| 3884 if (buildCounterPlaylistPlayer < 3) { | 3884 if (buildCounterPlaylistPlayer < 3) { |
| 3885 unittest.expect(o.embedHtml, unittest.equals('foo')); | 3885 unittest.expect(o.embedHtml, unittest.equals('foo')); |
| 3886 } | 3886 } |
| 3887 buildCounterPlaylistPlayer--; | 3887 buildCounterPlaylistPlayer--; |
| 3888 } | 3888 } |
| 3889 | 3889 |
| 3890 buildUnnamed3364() { | 3890 buildUnnamed753() { |
| 3891 var o = new core.List<core.String>(); | 3891 var o = new core.List<core.String>(); |
| 3892 o.add("foo"); | 3892 o.add("foo"); |
| 3893 o.add("foo"); | 3893 o.add("foo"); |
| 3894 return o; | 3894 return o; |
| 3895 } | 3895 } |
| 3896 | 3896 |
| 3897 checkUnnamed3364(core.List<core.String> o) { | 3897 checkUnnamed753(core.List<core.String> o) { |
| 3898 unittest.expect(o, unittest.hasLength(2)); | 3898 unittest.expect(o, unittest.hasLength(2)); |
| 3899 unittest.expect(o[0], unittest.equals('foo')); | 3899 unittest.expect(o[0], unittest.equals('foo')); |
| 3900 unittest.expect(o[1], unittest.equals('foo')); | 3900 unittest.expect(o[1], unittest.equals('foo')); |
| 3901 } | 3901 } |
| 3902 | 3902 |
| 3903 core.int buildCounterPlaylistSnippet = 0; | 3903 core.int buildCounterPlaylistSnippet = 0; |
| 3904 buildPlaylistSnippet() { | 3904 buildPlaylistSnippet() { |
| 3905 var o = new api.PlaylistSnippet(); | 3905 var o = new api.PlaylistSnippet(); |
| 3906 buildCounterPlaylistSnippet++; | 3906 buildCounterPlaylistSnippet++; |
| 3907 if (buildCounterPlaylistSnippet < 3) { | 3907 if (buildCounterPlaylistSnippet < 3) { |
| 3908 o.channelId = "foo"; | 3908 o.channelId = "foo"; |
| 3909 o.channelTitle = "foo"; | 3909 o.channelTitle = "foo"; |
| 3910 o.defaultLanguage = "foo"; | 3910 o.defaultLanguage = "foo"; |
| 3911 o.description = "foo"; | 3911 o.description = "foo"; |
| 3912 o.localized = buildPlaylistLocalization(); | 3912 o.localized = buildPlaylistLocalization(); |
| 3913 o.publishedAt = core.DateTime.parse("2002-02-27T14:01:02"); | 3913 o.publishedAt = core.DateTime.parse("2002-02-27T14:01:02"); |
| 3914 o.tags = buildUnnamed3364(); | 3914 o.tags = buildUnnamed753(); |
| 3915 o.thumbnails = buildThumbnailDetails(); | 3915 o.thumbnails = buildThumbnailDetails(); |
| 3916 o.title = "foo"; | 3916 o.title = "foo"; |
| 3917 } | 3917 } |
| 3918 buildCounterPlaylistSnippet--; | 3918 buildCounterPlaylistSnippet--; |
| 3919 return o; | 3919 return o; |
| 3920 } | 3920 } |
| 3921 | 3921 |
| 3922 checkPlaylistSnippet(api.PlaylistSnippet o) { | 3922 checkPlaylistSnippet(api.PlaylistSnippet o) { |
| 3923 buildCounterPlaylistSnippet++; | 3923 buildCounterPlaylistSnippet++; |
| 3924 if (buildCounterPlaylistSnippet < 3) { | 3924 if (buildCounterPlaylistSnippet < 3) { |
| 3925 unittest.expect(o.channelId, unittest.equals('foo')); | 3925 unittest.expect(o.channelId, unittest.equals('foo')); |
| 3926 unittest.expect(o.channelTitle, unittest.equals('foo')); | 3926 unittest.expect(o.channelTitle, unittest.equals('foo')); |
| 3927 unittest.expect(o.defaultLanguage, unittest.equals('foo')); | 3927 unittest.expect(o.defaultLanguage, unittest.equals('foo')); |
| 3928 unittest.expect(o.description, unittest.equals('foo')); | 3928 unittest.expect(o.description, unittest.equals('foo')); |
| 3929 checkPlaylistLocalization(o.localized); | 3929 checkPlaylistLocalization(o.localized); |
| 3930 unittest.expect(o.publishedAt, unittest.equals(core.DateTime.parse("2002-02-
27T14:01:02"))); | 3930 unittest.expect(o.publishedAt, unittest.equals(core.DateTime.parse("2002-02-
27T14:01:02"))); |
| 3931 checkUnnamed3364(o.tags); | 3931 checkUnnamed753(o.tags); |
| 3932 checkThumbnailDetails(o.thumbnails); | 3932 checkThumbnailDetails(o.thumbnails); |
| 3933 unittest.expect(o.title, unittest.equals('foo')); | 3933 unittest.expect(o.title, unittest.equals('foo')); |
| 3934 } | 3934 } |
| 3935 buildCounterPlaylistSnippet--; | 3935 buildCounterPlaylistSnippet--; |
| 3936 } | 3936 } |
| 3937 | 3937 |
| 3938 core.int buildCounterPlaylistStatus = 0; | 3938 core.int buildCounterPlaylistStatus = 0; |
| 3939 buildPlaylistStatus() { | 3939 buildPlaylistStatus() { |
| 3940 var o = new api.PlaylistStatus(); | 3940 var o = new api.PlaylistStatus(); |
| 3941 buildCounterPlaylistStatus++; | 3941 buildCounterPlaylistStatus++; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4043 buildCounterResourceId++; | 4043 buildCounterResourceId++; |
| 4044 if (buildCounterResourceId < 3) { | 4044 if (buildCounterResourceId < 3) { |
| 4045 unittest.expect(o.channelId, unittest.equals('foo')); | 4045 unittest.expect(o.channelId, unittest.equals('foo')); |
| 4046 unittest.expect(o.kind, unittest.equals('foo')); | 4046 unittest.expect(o.kind, unittest.equals('foo')); |
| 4047 unittest.expect(o.playlistId, unittest.equals('foo')); | 4047 unittest.expect(o.playlistId, unittest.equals('foo')); |
| 4048 unittest.expect(o.videoId, unittest.equals('foo')); | 4048 unittest.expect(o.videoId, unittest.equals('foo')); |
| 4049 } | 4049 } |
| 4050 buildCounterResourceId--; | 4050 buildCounterResourceId--; |
| 4051 } | 4051 } |
| 4052 | 4052 |
| 4053 buildUnnamed3365() { | 4053 buildUnnamed754() { |
| 4054 var o = new core.List<api.SearchResult>(); | 4054 var o = new core.List<api.SearchResult>(); |
| 4055 o.add(buildSearchResult()); | 4055 o.add(buildSearchResult()); |
| 4056 o.add(buildSearchResult()); | 4056 o.add(buildSearchResult()); |
| 4057 return o; | 4057 return o; |
| 4058 } | 4058 } |
| 4059 | 4059 |
| 4060 checkUnnamed3365(core.List<api.SearchResult> o) { | 4060 checkUnnamed754(core.List<api.SearchResult> o) { |
| 4061 unittest.expect(o, unittest.hasLength(2)); | 4061 unittest.expect(o, unittest.hasLength(2)); |
| 4062 checkSearchResult(o[0]); | 4062 checkSearchResult(o[0]); |
| 4063 checkSearchResult(o[1]); | 4063 checkSearchResult(o[1]); |
| 4064 } | 4064 } |
| 4065 | 4065 |
| 4066 core.int buildCounterSearchListResponse = 0; | 4066 core.int buildCounterSearchListResponse = 0; |
| 4067 buildSearchListResponse() { | 4067 buildSearchListResponse() { |
| 4068 var o = new api.SearchListResponse(); | 4068 var o = new api.SearchListResponse(); |
| 4069 buildCounterSearchListResponse++; | 4069 buildCounterSearchListResponse++; |
| 4070 if (buildCounterSearchListResponse < 3) { | 4070 if (buildCounterSearchListResponse < 3) { |
| 4071 o.etag = "foo"; | 4071 o.etag = "foo"; |
| 4072 o.eventId = "foo"; | 4072 o.eventId = "foo"; |
| 4073 o.items = buildUnnamed3365(); | 4073 o.items = buildUnnamed754(); |
| 4074 o.kind = "foo"; | 4074 o.kind = "foo"; |
| 4075 o.nextPageToken = "foo"; | 4075 o.nextPageToken = "foo"; |
| 4076 o.pageInfo = buildPageInfo(); | 4076 o.pageInfo = buildPageInfo(); |
| 4077 o.prevPageToken = "foo"; | 4077 o.prevPageToken = "foo"; |
| 4078 o.regionCode = "foo"; | 4078 o.regionCode = "foo"; |
| 4079 o.tokenPagination = buildTokenPagination(); | 4079 o.tokenPagination = buildTokenPagination(); |
| 4080 o.visitorId = "foo"; | 4080 o.visitorId = "foo"; |
| 4081 } | 4081 } |
| 4082 buildCounterSearchListResponse--; | 4082 buildCounterSearchListResponse--; |
| 4083 return o; | 4083 return o; |
| 4084 } | 4084 } |
| 4085 | 4085 |
| 4086 checkSearchListResponse(api.SearchListResponse o) { | 4086 checkSearchListResponse(api.SearchListResponse o) { |
| 4087 buildCounterSearchListResponse++; | 4087 buildCounterSearchListResponse++; |
| 4088 if (buildCounterSearchListResponse < 3) { | 4088 if (buildCounterSearchListResponse < 3) { |
| 4089 unittest.expect(o.etag, unittest.equals('foo')); | 4089 unittest.expect(o.etag, unittest.equals('foo')); |
| 4090 unittest.expect(o.eventId, unittest.equals('foo')); | 4090 unittest.expect(o.eventId, unittest.equals('foo')); |
| 4091 checkUnnamed3365(o.items); | 4091 checkUnnamed754(o.items); |
| 4092 unittest.expect(o.kind, unittest.equals('foo')); | 4092 unittest.expect(o.kind, unittest.equals('foo')); |
| 4093 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4093 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4094 checkPageInfo(o.pageInfo); | 4094 checkPageInfo(o.pageInfo); |
| 4095 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 4095 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 4096 unittest.expect(o.regionCode, unittest.equals('foo')); | 4096 unittest.expect(o.regionCode, unittest.equals('foo')); |
| 4097 checkTokenPagination(o.tokenPagination); | 4097 checkTokenPagination(o.tokenPagination); |
| 4098 unittest.expect(o.visitorId, unittest.equals('foo')); | 4098 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 4099 } | 4099 } |
| 4100 buildCounterSearchListResponse--; | 4100 buildCounterSearchListResponse--; |
| 4101 } | 4101 } |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4174 buildCounterSponsor++; | 4174 buildCounterSponsor++; |
| 4175 if (buildCounterSponsor < 3) { | 4175 if (buildCounterSponsor < 3) { |
| 4176 unittest.expect(o.etag, unittest.equals('foo')); | 4176 unittest.expect(o.etag, unittest.equals('foo')); |
| 4177 unittest.expect(o.id, unittest.equals('foo')); | 4177 unittest.expect(o.id, unittest.equals('foo')); |
| 4178 unittest.expect(o.kind, unittest.equals('foo')); | 4178 unittest.expect(o.kind, unittest.equals('foo')); |
| 4179 checkSponsorSnippet(o.snippet); | 4179 checkSponsorSnippet(o.snippet); |
| 4180 } | 4180 } |
| 4181 buildCounterSponsor--; | 4181 buildCounterSponsor--; |
| 4182 } | 4182 } |
| 4183 | 4183 |
| 4184 buildUnnamed3366() { | 4184 buildUnnamed755() { |
| 4185 var o = new core.List<api.Sponsor>(); | 4185 var o = new core.List<api.Sponsor>(); |
| 4186 o.add(buildSponsor()); | 4186 o.add(buildSponsor()); |
| 4187 o.add(buildSponsor()); | 4187 o.add(buildSponsor()); |
| 4188 return o; | 4188 return o; |
| 4189 } | 4189 } |
| 4190 | 4190 |
| 4191 checkUnnamed3366(core.List<api.Sponsor> o) { | 4191 checkUnnamed755(core.List<api.Sponsor> o) { |
| 4192 unittest.expect(o, unittest.hasLength(2)); | 4192 unittest.expect(o, unittest.hasLength(2)); |
| 4193 checkSponsor(o[0]); | 4193 checkSponsor(o[0]); |
| 4194 checkSponsor(o[1]); | 4194 checkSponsor(o[1]); |
| 4195 } | 4195 } |
| 4196 | 4196 |
| 4197 core.int buildCounterSponsorListResponse = 0; | 4197 core.int buildCounterSponsorListResponse = 0; |
| 4198 buildSponsorListResponse() { | 4198 buildSponsorListResponse() { |
| 4199 var o = new api.SponsorListResponse(); | 4199 var o = new api.SponsorListResponse(); |
| 4200 buildCounterSponsorListResponse++; | 4200 buildCounterSponsorListResponse++; |
| 4201 if (buildCounterSponsorListResponse < 3) { | 4201 if (buildCounterSponsorListResponse < 3) { |
| 4202 o.etag = "foo"; | 4202 o.etag = "foo"; |
| 4203 o.eventId = "foo"; | 4203 o.eventId = "foo"; |
| 4204 o.items = buildUnnamed3366(); | 4204 o.items = buildUnnamed755(); |
| 4205 o.kind = "foo"; | 4205 o.kind = "foo"; |
| 4206 o.nextPageToken = "foo"; | 4206 o.nextPageToken = "foo"; |
| 4207 o.pageInfo = buildPageInfo(); | 4207 o.pageInfo = buildPageInfo(); |
| 4208 o.tokenPagination = buildTokenPagination(); | 4208 o.tokenPagination = buildTokenPagination(); |
| 4209 o.visitorId = "foo"; | 4209 o.visitorId = "foo"; |
| 4210 } | 4210 } |
| 4211 buildCounterSponsorListResponse--; | 4211 buildCounterSponsorListResponse--; |
| 4212 return o; | 4212 return o; |
| 4213 } | 4213 } |
| 4214 | 4214 |
| 4215 checkSponsorListResponse(api.SponsorListResponse o) { | 4215 checkSponsorListResponse(api.SponsorListResponse o) { |
| 4216 buildCounterSponsorListResponse++; | 4216 buildCounterSponsorListResponse++; |
| 4217 if (buildCounterSponsorListResponse < 3) { | 4217 if (buildCounterSponsorListResponse < 3) { |
| 4218 unittest.expect(o.etag, unittest.equals('foo')); | 4218 unittest.expect(o.etag, unittest.equals('foo')); |
| 4219 unittest.expect(o.eventId, unittest.equals('foo')); | 4219 unittest.expect(o.eventId, unittest.equals('foo')); |
| 4220 checkUnnamed3366(o.items); | 4220 checkUnnamed755(o.items); |
| 4221 unittest.expect(o.kind, unittest.equals('foo')); | 4221 unittest.expect(o.kind, unittest.equals('foo')); |
| 4222 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4222 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4223 checkPageInfo(o.pageInfo); | 4223 checkPageInfo(o.pageInfo); |
| 4224 checkTokenPagination(o.tokenPagination); | 4224 checkTokenPagination(o.tokenPagination); |
| 4225 unittest.expect(o.visitorId, unittest.equals('foo')); | 4225 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 4226 } | 4226 } |
| 4227 buildCounterSponsorListResponse--; | 4227 buildCounterSponsorListResponse--; |
| 4228 } | 4228 } |
| 4229 | 4229 |
| 4230 core.int buildCounterSponsorSnippet = 0; | 4230 core.int buildCounterSponsorSnippet = 0; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4295 checkSubscriptionContentDetails(api.SubscriptionContentDetails o) { | 4295 checkSubscriptionContentDetails(api.SubscriptionContentDetails o) { |
| 4296 buildCounterSubscriptionContentDetails++; | 4296 buildCounterSubscriptionContentDetails++; |
| 4297 if (buildCounterSubscriptionContentDetails < 3) { | 4297 if (buildCounterSubscriptionContentDetails < 3) { |
| 4298 unittest.expect(o.activityType, unittest.equals('foo')); | 4298 unittest.expect(o.activityType, unittest.equals('foo')); |
| 4299 unittest.expect(o.newItemCount, unittest.equals(42)); | 4299 unittest.expect(o.newItemCount, unittest.equals(42)); |
| 4300 unittest.expect(o.totalItemCount, unittest.equals(42)); | 4300 unittest.expect(o.totalItemCount, unittest.equals(42)); |
| 4301 } | 4301 } |
| 4302 buildCounterSubscriptionContentDetails--; | 4302 buildCounterSubscriptionContentDetails--; |
| 4303 } | 4303 } |
| 4304 | 4304 |
| 4305 buildUnnamed3367() { | 4305 buildUnnamed756() { |
| 4306 var o = new core.List<api.Subscription>(); | 4306 var o = new core.List<api.Subscription>(); |
| 4307 o.add(buildSubscription()); | 4307 o.add(buildSubscription()); |
| 4308 o.add(buildSubscription()); | 4308 o.add(buildSubscription()); |
| 4309 return o; | 4309 return o; |
| 4310 } | 4310 } |
| 4311 | 4311 |
| 4312 checkUnnamed3367(core.List<api.Subscription> o) { | 4312 checkUnnamed756(core.List<api.Subscription> o) { |
| 4313 unittest.expect(o, unittest.hasLength(2)); | 4313 unittest.expect(o, unittest.hasLength(2)); |
| 4314 checkSubscription(o[0]); | 4314 checkSubscription(o[0]); |
| 4315 checkSubscription(o[1]); | 4315 checkSubscription(o[1]); |
| 4316 } | 4316 } |
| 4317 | 4317 |
| 4318 core.int buildCounterSubscriptionListResponse = 0; | 4318 core.int buildCounterSubscriptionListResponse = 0; |
| 4319 buildSubscriptionListResponse() { | 4319 buildSubscriptionListResponse() { |
| 4320 var o = new api.SubscriptionListResponse(); | 4320 var o = new api.SubscriptionListResponse(); |
| 4321 buildCounterSubscriptionListResponse++; | 4321 buildCounterSubscriptionListResponse++; |
| 4322 if (buildCounterSubscriptionListResponse < 3) { | 4322 if (buildCounterSubscriptionListResponse < 3) { |
| 4323 o.etag = "foo"; | 4323 o.etag = "foo"; |
| 4324 o.eventId = "foo"; | 4324 o.eventId = "foo"; |
| 4325 o.items = buildUnnamed3367(); | 4325 o.items = buildUnnamed756(); |
| 4326 o.kind = "foo"; | 4326 o.kind = "foo"; |
| 4327 o.nextPageToken = "foo"; | 4327 o.nextPageToken = "foo"; |
| 4328 o.pageInfo = buildPageInfo(); | 4328 o.pageInfo = buildPageInfo(); |
| 4329 o.prevPageToken = "foo"; | 4329 o.prevPageToken = "foo"; |
| 4330 o.tokenPagination = buildTokenPagination(); | 4330 o.tokenPagination = buildTokenPagination(); |
| 4331 o.visitorId = "foo"; | 4331 o.visitorId = "foo"; |
| 4332 } | 4332 } |
| 4333 buildCounterSubscriptionListResponse--; | 4333 buildCounterSubscriptionListResponse--; |
| 4334 return o; | 4334 return o; |
| 4335 } | 4335 } |
| 4336 | 4336 |
| 4337 checkSubscriptionListResponse(api.SubscriptionListResponse o) { | 4337 checkSubscriptionListResponse(api.SubscriptionListResponse o) { |
| 4338 buildCounterSubscriptionListResponse++; | 4338 buildCounterSubscriptionListResponse++; |
| 4339 if (buildCounterSubscriptionListResponse < 3) { | 4339 if (buildCounterSubscriptionListResponse < 3) { |
| 4340 unittest.expect(o.etag, unittest.equals('foo')); | 4340 unittest.expect(o.etag, unittest.equals('foo')); |
| 4341 unittest.expect(o.eventId, unittest.equals('foo')); | 4341 unittest.expect(o.eventId, unittest.equals('foo')); |
| 4342 checkUnnamed3367(o.items); | 4342 checkUnnamed756(o.items); |
| 4343 unittest.expect(o.kind, unittest.equals('foo')); | 4343 unittest.expect(o.kind, unittest.equals('foo')); |
| 4344 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4344 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4345 checkPageInfo(o.pageInfo); | 4345 checkPageInfo(o.pageInfo); |
| 4346 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 4346 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 4347 checkTokenPagination(o.tokenPagination); | 4347 checkTokenPagination(o.tokenPagination); |
| 4348 unittest.expect(o.visitorId, unittest.equals('foo')); | 4348 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 4349 } | 4349 } |
| 4350 buildCounterSubscriptionListResponse--; | 4350 buildCounterSubscriptionListResponse--; |
| 4351 } | 4351 } |
| 4352 | 4352 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4449 if (buildCounterThumbnailDetails < 3) { | 4449 if (buildCounterThumbnailDetails < 3) { |
| 4450 checkThumbnail(o.default_); | 4450 checkThumbnail(o.default_); |
| 4451 checkThumbnail(o.high); | 4451 checkThumbnail(o.high); |
| 4452 checkThumbnail(o.maxres); | 4452 checkThumbnail(o.maxres); |
| 4453 checkThumbnail(o.medium); | 4453 checkThumbnail(o.medium); |
| 4454 checkThumbnail(o.standard); | 4454 checkThumbnail(o.standard); |
| 4455 } | 4455 } |
| 4456 buildCounterThumbnailDetails--; | 4456 buildCounterThumbnailDetails--; |
| 4457 } | 4457 } |
| 4458 | 4458 |
| 4459 buildUnnamed3368() { | 4459 buildUnnamed757() { |
| 4460 var o = new core.List<api.ThumbnailDetails>(); | 4460 var o = new core.List<api.ThumbnailDetails>(); |
| 4461 o.add(buildThumbnailDetails()); | 4461 o.add(buildThumbnailDetails()); |
| 4462 o.add(buildThumbnailDetails()); | 4462 o.add(buildThumbnailDetails()); |
| 4463 return o; | 4463 return o; |
| 4464 } | 4464 } |
| 4465 | 4465 |
| 4466 checkUnnamed3368(core.List<api.ThumbnailDetails> o) { | 4466 checkUnnamed757(core.List<api.ThumbnailDetails> o) { |
| 4467 unittest.expect(o, unittest.hasLength(2)); | 4467 unittest.expect(o, unittest.hasLength(2)); |
| 4468 checkThumbnailDetails(o[0]); | 4468 checkThumbnailDetails(o[0]); |
| 4469 checkThumbnailDetails(o[1]); | 4469 checkThumbnailDetails(o[1]); |
| 4470 } | 4470 } |
| 4471 | 4471 |
| 4472 core.int buildCounterThumbnailSetResponse = 0; | 4472 core.int buildCounterThumbnailSetResponse = 0; |
| 4473 buildThumbnailSetResponse() { | 4473 buildThumbnailSetResponse() { |
| 4474 var o = new api.ThumbnailSetResponse(); | 4474 var o = new api.ThumbnailSetResponse(); |
| 4475 buildCounterThumbnailSetResponse++; | 4475 buildCounterThumbnailSetResponse++; |
| 4476 if (buildCounterThumbnailSetResponse < 3) { | 4476 if (buildCounterThumbnailSetResponse < 3) { |
| 4477 o.etag = "foo"; | 4477 o.etag = "foo"; |
| 4478 o.eventId = "foo"; | 4478 o.eventId = "foo"; |
| 4479 o.items = buildUnnamed3368(); | 4479 o.items = buildUnnamed757(); |
| 4480 o.kind = "foo"; | 4480 o.kind = "foo"; |
| 4481 o.visitorId = "foo"; | 4481 o.visitorId = "foo"; |
| 4482 } | 4482 } |
| 4483 buildCounterThumbnailSetResponse--; | 4483 buildCounterThumbnailSetResponse--; |
| 4484 return o; | 4484 return o; |
| 4485 } | 4485 } |
| 4486 | 4486 |
| 4487 checkThumbnailSetResponse(api.ThumbnailSetResponse o) { | 4487 checkThumbnailSetResponse(api.ThumbnailSetResponse o) { |
| 4488 buildCounterThumbnailSetResponse++; | 4488 buildCounterThumbnailSetResponse++; |
| 4489 if (buildCounterThumbnailSetResponse < 3) { | 4489 if (buildCounterThumbnailSetResponse < 3) { |
| 4490 unittest.expect(o.etag, unittest.equals('foo')); | 4490 unittest.expect(o.etag, unittest.equals('foo')); |
| 4491 unittest.expect(o.eventId, unittest.equals('foo')); | 4491 unittest.expect(o.eventId, unittest.equals('foo')); |
| 4492 checkUnnamed3368(o.items); | 4492 checkUnnamed757(o.items); |
| 4493 unittest.expect(o.kind, unittest.equals('foo')); | 4493 unittest.expect(o.kind, unittest.equals('foo')); |
| 4494 unittest.expect(o.visitorId, unittest.equals('foo')); | 4494 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 4495 } | 4495 } |
| 4496 buildCounterThumbnailSetResponse--; | 4496 buildCounterThumbnailSetResponse--; |
| 4497 } | 4497 } |
| 4498 | 4498 |
| 4499 core.int buildCounterTokenPagination = 0; | 4499 core.int buildCounterTokenPagination = 0; |
| 4500 buildTokenPagination() { | 4500 buildTokenPagination() { |
| 4501 var o = new api.TokenPagination(); | 4501 var o = new api.TokenPagination(); |
| 4502 buildCounterTokenPagination++; | 4502 buildCounterTokenPagination++; |
| 4503 if (buildCounterTokenPagination < 3) { | 4503 if (buildCounterTokenPagination < 3) { |
| 4504 } | 4504 } |
| 4505 buildCounterTokenPagination--; | 4505 buildCounterTokenPagination--; |
| 4506 return o; | 4506 return o; |
| 4507 } | 4507 } |
| 4508 | 4508 |
| 4509 checkTokenPagination(api.TokenPagination o) { | 4509 checkTokenPagination(api.TokenPagination o) { |
| 4510 buildCounterTokenPagination++; | 4510 buildCounterTokenPagination++; |
| 4511 if (buildCounterTokenPagination < 3) { | 4511 if (buildCounterTokenPagination < 3) { |
| 4512 } | 4512 } |
| 4513 buildCounterTokenPagination--; | 4513 buildCounterTokenPagination--; |
| 4514 } | 4514 } |
| 4515 | 4515 |
| 4516 buildUnnamed3369() { | 4516 buildUnnamed758() { |
| 4517 var o = new core.Map<core.String, api.VideoLocalization>(); | 4517 var o = new core.Map<core.String, api.VideoLocalization>(); |
| 4518 o["x"] = buildVideoLocalization(); | 4518 o["x"] = buildVideoLocalization(); |
| 4519 o["y"] = buildVideoLocalization(); | 4519 o["y"] = buildVideoLocalization(); |
| 4520 return o; | 4520 return o; |
| 4521 } | 4521 } |
| 4522 | 4522 |
| 4523 checkUnnamed3369(core.Map<core.String, api.VideoLocalization> o) { | 4523 checkUnnamed758(core.Map<core.String, api.VideoLocalization> o) { |
| 4524 unittest.expect(o, unittest.hasLength(2)); | 4524 unittest.expect(o, unittest.hasLength(2)); |
| 4525 checkVideoLocalization(o["x"]); | 4525 checkVideoLocalization(o["x"]); |
| 4526 checkVideoLocalization(o["y"]); | 4526 checkVideoLocalization(o["y"]); |
| 4527 } | 4527 } |
| 4528 | 4528 |
| 4529 core.int buildCounterVideo = 0; | 4529 core.int buildCounterVideo = 0; |
| 4530 buildVideo() { | 4530 buildVideo() { |
| 4531 var o = new api.Video(); | 4531 var o = new api.Video(); |
| 4532 buildCounterVideo++; | 4532 buildCounterVideo++; |
| 4533 if (buildCounterVideo < 3) { | 4533 if (buildCounterVideo < 3) { |
| 4534 o.ageGating = buildVideoAgeGating(); | 4534 o.ageGating = buildVideoAgeGating(); |
| 4535 o.contentDetails = buildVideoContentDetails(); | 4535 o.contentDetails = buildVideoContentDetails(); |
| 4536 o.etag = "foo"; | 4536 o.etag = "foo"; |
| 4537 o.fileDetails = buildVideoFileDetails(); | 4537 o.fileDetails = buildVideoFileDetails(); |
| 4538 o.id = "foo"; | 4538 o.id = "foo"; |
| 4539 o.kind = "foo"; | 4539 o.kind = "foo"; |
| 4540 o.liveStreamingDetails = buildVideoLiveStreamingDetails(); | 4540 o.liveStreamingDetails = buildVideoLiveStreamingDetails(); |
| 4541 o.localizations = buildUnnamed3369(); | 4541 o.localizations = buildUnnamed758(); |
| 4542 o.monetizationDetails = buildVideoMonetizationDetails(); | 4542 o.monetizationDetails = buildVideoMonetizationDetails(); |
| 4543 o.player = buildVideoPlayer(); | 4543 o.player = buildVideoPlayer(); |
| 4544 o.processingDetails = buildVideoProcessingDetails(); | 4544 o.processingDetails = buildVideoProcessingDetails(); |
| 4545 o.projectDetails = buildVideoProjectDetails(); | 4545 o.projectDetails = buildVideoProjectDetails(); |
| 4546 o.recordingDetails = buildVideoRecordingDetails(); | 4546 o.recordingDetails = buildVideoRecordingDetails(); |
| 4547 o.snippet = buildVideoSnippet(); | 4547 o.snippet = buildVideoSnippet(); |
| 4548 o.statistics = buildVideoStatistics(); | 4548 o.statistics = buildVideoStatistics(); |
| 4549 o.status = buildVideoStatus(); | 4549 o.status = buildVideoStatus(); |
| 4550 o.suggestions = buildVideoSuggestions(); | 4550 o.suggestions = buildVideoSuggestions(); |
| 4551 o.topicDetails = buildVideoTopicDetails(); | 4551 o.topicDetails = buildVideoTopicDetails(); |
| 4552 } | 4552 } |
| 4553 buildCounterVideo--; | 4553 buildCounterVideo--; |
| 4554 return o; | 4554 return o; |
| 4555 } | 4555 } |
| 4556 | 4556 |
| 4557 checkVideo(api.Video o) { | 4557 checkVideo(api.Video o) { |
| 4558 buildCounterVideo++; | 4558 buildCounterVideo++; |
| 4559 if (buildCounterVideo < 3) { | 4559 if (buildCounterVideo < 3) { |
| 4560 checkVideoAgeGating(o.ageGating); | 4560 checkVideoAgeGating(o.ageGating); |
| 4561 checkVideoContentDetails(o.contentDetails); | 4561 checkVideoContentDetails(o.contentDetails); |
| 4562 unittest.expect(o.etag, unittest.equals('foo')); | 4562 unittest.expect(o.etag, unittest.equals('foo')); |
| 4563 checkVideoFileDetails(o.fileDetails); | 4563 checkVideoFileDetails(o.fileDetails); |
| 4564 unittest.expect(o.id, unittest.equals('foo')); | 4564 unittest.expect(o.id, unittest.equals('foo')); |
| 4565 unittest.expect(o.kind, unittest.equals('foo')); | 4565 unittest.expect(o.kind, unittest.equals('foo')); |
| 4566 checkVideoLiveStreamingDetails(o.liveStreamingDetails); | 4566 checkVideoLiveStreamingDetails(o.liveStreamingDetails); |
| 4567 checkUnnamed3369(o.localizations); | 4567 checkUnnamed758(o.localizations); |
| 4568 checkVideoMonetizationDetails(o.monetizationDetails); | 4568 checkVideoMonetizationDetails(o.monetizationDetails); |
| 4569 checkVideoPlayer(o.player); | 4569 checkVideoPlayer(o.player); |
| 4570 checkVideoProcessingDetails(o.processingDetails); | 4570 checkVideoProcessingDetails(o.processingDetails); |
| 4571 checkVideoProjectDetails(o.projectDetails); | 4571 checkVideoProjectDetails(o.projectDetails); |
| 4572 checkVideoRecordingDetails(o.recordingDetails); | 4572 checkVideoRecordingDetails(o.recordingDetails); |
| 4573 checkVideoSnippet(o.snippet); | 4573 checkVideoSnippet(o.snippet); |
| 4574 checkVideoStatistics(o.statistics); | 4574 checkVideoStatistics(o.statistics); |
| 4575 checkVideoStatus(o.status); | 4575 checkVideoStatus(o.status); |
| 4576 checkVideoSuggestions(o.suggestions); | 4576 checkVideoSuggestions(o.suggestions); |
| 4577 checkVideoTopicDetails(o.topicDetails); | 4577 checkVideoTopicDetails(o.topicDetails); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4624 buildCounterVideoAbuseReportReason++; | 4624 buildCounterVideoAbuseReportReason++; |
| 4625 if (buildCounterVideoAbuseReportReason < 3) { | 4625 if (buildCounterVideoAbuseReportReason < 3) { |
| 4626 unittest.expect(o.etag, unittest.equals('foo')); | 4626 unittest.expect(o.etag, unittest.equals('foo')); |
| 4627 unittest.expect(o.id, unittest.equals('foo')); | 4627 unittest.expect(o.id, unittest.equals('foo')); |
| 4628 unittest.expect(o.kind, unittest.equals('foo')); | 4628 unittest.expect(o.kind, unittest.equals('foo')); |
| 4629 checkVideoAbuseReportReasonSnippet(o.snippet); | 4629 checkVideoAbuseReportReasonSnippet(o.snippet); |
| 4630 } | 4630 } |
| 4631 buildCounterVideoAbuseReportReason--; | 4631 buildCounterVideoAbuseReportReason--; |
| 4632 } | 4632 } |
| 4633 | 4633 |
| 4634 buildUnnamed3370() { | 4634 buildUnnamed759() { |
| 4635 var o = new core.List<api.VideoAbuseReportReason>(); | 4635 var o = new core.List<api.VideoAbuseReportReason>(); |
| 4636 o.add(buildVideoAbuseReportReason()); | 4636 o.add(buildVideoAbuseReportReason()); |
| 4637 o.add(buildVideoAbuseReportReason()); | 4637 o.add(buildVideoAbuseReportReason()); |
| 4638 return o; | 4638 return o; |
| 4639 } | 4639 } |
| 4640 | 4640 |
| 4641 checkUnnamed3370(core.List<api.VideoAbuseReportReason> o) { | 4641 checkUnnamed759(core.List<api.VideoAbuseReportReason> o) { |
| 4642 unittest.expect(o, unittest.hasLength(2)); | 4642 unittest.expect(o, unittest.hasLength(2)); |
| 4643 checkVideoAbuseReportReason(o[0]); | 4643 checkVideoAbuseReportReason(o[0]); |
| 4644 checkVideoAbuseReportReason(o[1]); | 4644 checkVideoAbuseReportReason(o[1]); |
| 4645 } | 4645 } |
| 4646 | 4646 |
| 4647 core.int buildCounterVideoAbuseReportReasonListResponse = 0; | 4647 core.int buildCounterVideoAbuseReportReasonListResponse = 0; |
| 4648 buildVideoAbuseReportReasonListResponse() { | 4648 buildVideoAbuseReportReasonListResponse() { |
| 4649 var o = new api.VideoAbuseReportReasonListResponse(); | 4649 var o = new api.VideoAbuseReportReasonListResponse(); |
| 4650 buildCounterVideoAbuseReportReasonListResponse++; | 4650 buildCounterVideoAbuseReportReasonListResponse++; |
| 4651 if (buildCounterVideoAbuseReportReasonListResponse < 3) { | 4651 if (buildCounterVideoAbuseReportReasonListResponse < 3) { |
| 4652 o.etag = "foo"; | 4652 o.etag = "foo"; |
| 4653 o.eventId = "foo"; | 4653 o.eventId = "foo"; |
| 4654 o.items = buildUnnamed3370(); | 4654 o.items = buildUnnamed759(); |
| 4655 o.kind = "foo"; | 4655 o.kind = "foo"; |
| 4656 o.visitorId = "foo"; | 4656 o.visitorId = "foo"; |
| 4657 } | 4657 } |
| 4658 buildCounterVideoAbuseReportReasonListResponse--; | 4658 buildCounterVideoAbuseReportReasonListResponse--; |
| 4659 return o; | 4659 return o; |
| 4660 } | 4660 } |
| 4661 | 4661 |
| 4662 checkVideoAbuseReportReasonListResponse(api.VideoAbuseReportReasonListResponse o
) { | 4662 checkVideoAbuseReportReasonListResponse(api.VideoAbuseReportReasonListResponse o
) { |
| 4663 buildCounterVideoAbuseReportReasonListResponse++; | 4663 buildCounterVideoAbuseReportReasonListResponse++; |
| 4664 if (buildCounterVideoAbuseReportReasonListResponse < 3) { | 4664 if (buildCounterVideoAbuseReportReasonListResponse < 3) { |
| 4665 unittest.expect(o.etag, unittest.equals('foo')); | 4665 unittest.expect(o.etag, unittest.equals('foo')); |
| 4666 unittest.expect(o.eventId, unittest.equals('foo')); | 4666 unittest.expect(o.eventId, unittest.equals('foo')); |
| 4667 checkUnnamed3370(o.items); | 4667 checkUnnamed759(o.items); |
| 4668 unittest.expect(o.kind, unittest.equals('foo')); | 4668 unittest.expect(o.kind, unittest.equals('foo')); |
| 4669 unittest.expect(o.visitorId, unittest.equals('foo')); | 4669 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 4670 } | 4670 } |
| 4671 buildCounterVideoAbuseReportReasonListResponse--; | 4671 buildCounterVideoAbuseReportReasonListResponse--; |
| 4672 } | 4672 } |
| 4673 | 4673 |
| 4674 buildUnnamed3371() { | 4674 buildUnnamed760() { |
| 4675 var o = new core.List<api.VideoAbuseReportSecondaryReason>(); | 4675 var o = new core.List<api.VideoAbuseReportSecondaryReason>(); |
| 4676 o.add(buildVideoAbuseReportSecondaryReason()); | 4676 o.add(buildVideoAbuseReportSecondaryReason()); |
| 4677 o.add(buildVideoAbuseReportSecondaryReason()); | 4677 o.add(buildVideoAbuseReportSecondaryReason()); |
| 4678 return o; | 4678 return o; |
| 4679 } | 4679 } |
| 4680 | 4680 |
| 4681 checkUnnamed3371(core.List<api.VideoAbuseReportSecondaryReason> o) { | 4681 checkUnnamed760(core.List<api.VideoAbuseReportSecondaryReason> o) { |
| 4682 unittest.expect(o, unittest.hasLength(2)); | 4682 unittest.expect(o, unittest.hasLength(2)); |
| 4683 checkVideoAbuseReportSecondaryReason(o[0]); | 4683 checkVideoAbuseReportSecondaryReason(o[0]); |
| 4684 checkVideoAbuseReportSecondaryReason(o[1]); | 4684 checkVideoAbuseReportSecondaryReason(o[1]); |
| 4685 } | 4685 } |
| 4686 | 4686 |
| 4687 core.int buildCounterVideoAbuseReportReasonSnippet = 0; | 4687 core.int buildCounterVideoAbuseReportReasonSnippet = 0; |
| 4688 buildVideoAbuseReportReasonSnippet() { | 4688 buildVideoAbuseReportReasonSnippet() { |
| 4689 var o = new api.VideoAbuseReportReasonSnippet(); | 4689 var o = new api.VideoAbuseReportReasonSnippet(); |
| 4690 buildCounterVideoAbuseReportReasonSnippet++; | 4690 buildCounterVideoAbuseReportReasonSnippet++; |
| 4691 if (buildCounterVideoAbuseReportReasonSnippet < 3) { | 4691 if (buildCounterVideoAbuseReportReasonSnippet < 3) { |
| 4692 o.label = "foo"; | 4692 o.label = "foo"; |
| 4693 o.secondaryReasons = buildUnnamed3371(); | 4693 o.secondaryReasons = buildUnnamed760(); |
| 4694 } | 4694 } |
| 4695 buildCounterVideoAbuseReportReasonSnippet--; | 4695 buildCounterVideoAbuseReportReasonSnippet--; |
| 4696 return o; | 4696 return o; |
| 4697 } | 4697 } |
| 4698 | 4698 |
| 4699 checkVideoAbuseReportReasonSnippet(api.VideoAbuseReportReasonSnippet o) { | 4699 checkVideoAbuseReportReasonSnippet(api.VideoAbuseReportReasonSnippet o) { |
| 4700 buildCounterVideoAbuseReportReasonSnippet++; | 4700 buildCounterVideoAbuseReportReasonSnippet++; |
| 4701 if (buildCounterVideoAbuseReportReasonSnippet < 3) { | 4701 if (buildCounterVideoAbuseReportReasonSnippet < 3) { |
| 4702 unittest.expect(o.label, unittest.equals('foo')); | 4702 unittest.expect(o.label, unittest.equals('foo')); |
| 4703 checkUnnamed3371(o.secondaryReasons); | 4703 checkUnnamed760(o.secondaryReasons); |
| 4704 } | 4704 } |
| 4705 buildCounterVideoAbuseReportReasonSnippet--; | 4705 buildCounterVideoAbuseReportReasonSnippet--; |
| 4706 } | 4706 } |
| 4707 | 4707 |
| 4708 core.int buildCounterVideoAbuseReportSecondaryReason = 0; | 4708 core.int buildCounterVideoAbuseReportSecondaryReason = 0; |
| 4709 buildVideoAbuseReportSecondaryReason() { | 4709 buildVideoAbuseReportSecondaryReason() { |
| 4710 var o = new api.VideoAbuseReportSecondaryReason(); | 4710 var o = new api.VideoAbuseReportSecondaryReason(); |
| 4711 buildCounterVideoAbuseReportSecondaryReason++; | 4711 buildCounterVideoAbuseReportSecondaryReason++; |
| 4712 if (buildCounterVideoAbuseReportSecondaryReason < 3) { | 4712 if (buildCounterVideoAbuseReportSecondaryReason < 3) { |
| 4713 o.id = "foo"; | 4713 o.id = "foo"; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4767 buildCounterVideoCategory++; | 4767 buildCounterVideoCategory++; |
| 4768 if (buildCounterVideoCategory < 3) { | 4768 if (buildCounterVideoCategory < 3) { |
| 4769 unittest.expect(o.etag, unittest.equals('foo')); | 4769 unittest.expect(o.etag, unittest.equals('foo')); |
| 4770 unittest.expect(o.id, unittest.equals('foo')); | 4770 unittest.expect(o.id, unittest.equals('foo')); |
| 4771 unittest.expect(o.kind, unittest.equals('foo')); | 4771 unittest.expect(o.kind, unittest.equals('foo')); |
| 4772 checkVideoCategorySnippet(o.snippet); | 4772 checkVideoCategorySnippet(o.snippet); |
| 4773 } | 4773 } |
| 4774 buildCounterVideoCategory--; | 4774 buildCounterVideoCategory--; |
| 4775 } | 4775 } |
| 4776 | 4776 |
| 4777 buildUnnamed3372() { | 4777 buildUnnamed761() { |
| 4778 var o = new core.List<api.VideoCategory>(); | 4778 var o = new core.List<api.VideoCategory>(); |
| 4779 o.add(buildVideoCategory()); | 4779 o.add(buildVideoCategory()); |
| 4780 o.add(buildVideoCategory()); | 4780 o.add(buildVideoCategory()); |
| 4781 return o; | 4781 return o; |
| 4782 } | 4782 } |
| 4783 | 4783 |
| 4784 checkUnnamed3372(core.List<api.VideoCategory> o) { | 4784 checkUnnamed761(core.List<api.VideoCategory> o) { |
| 4785 unittest.expect(o, unittest.hasLength(2)); | 4785 unittest.expect(o, unittest.hasLength(2)); |
| 4786 checkVideoCategory(o[0]); | 4786 checkVideoCategory(o[0]); |
| 4787 checkVideoCategory(o[1]); | 4787 checkVideoCategory(o[1]); |
| 4788 } | 4788 } |
| 4789 | 4789 |
| 4790 core.int buildCounterVideoCategoryListResponse = 0; | 4790 core.int buildCounterVideoCategoryListResponse = 0; |
| 4791 buildVideoCategoryListResponse() { | 4791 buildVideoCategoryListResponse() { |
| 4792 var o = new api.VideoCategoryListResponse(); | 4792 var o = new api.VideoCategoryListResponse(); |
| 4793 buildCounterVideoCategoryListResponse++; | 4793 buildCounterVideoCategoryListResponse++; |
| 4794 if (buildCounterVideoCategoryListResponse < 3) { | 4794 if (buildCounterVideoCategoryListResponse < 3) { |
| 4795 o.etag = "foo"; | 4795 o.etag = "foo"; |
| 4796 o.eventId = "foo"; | 4796 o.eventId = "foo"; |
| 4797 o.items = buildUnnamed3372(); | 4797 o.items = buildUnnamed761(); |
| 4798 o.kind = "foo"; | 4798 o.kind = "foo"; |
| 4799 o.nextPageToken = "foo"; | 4799 o.nextPageToken = "foo"; |
| 4800 o.pageInfo = buildPageInfo(); | 4800 o.pageInfo = buildPageInfo(); |
| 4801 o.prevPageToken = "foo"; | 4801 o.prevPageToken = "foo"; |
| 4802 o.tokenPagination = buildTokenPagination(); | 4802 o.tokenPagination = buildTokenPagination(); |
| 4803 o.visitorId = "foo"; | 4803 o.visitorId = "foo"; |
| 4804 } | 4804 } |
| 4805 buildCounterVideoCategoryListResponse--; | 4805 buildCounterVideoCategoryListResponse--; |
| 4806 return o; | 4806 return o; |
| 4807 } | 4807 } |
| 4808 | 4808 |
| 4809 checkVideoCategoryListResponse(api.VideoCategoryListResponse o) { | 4809 checkVideoCategoryListResponse(api.VideoCategoryListResponse o) { |
| 4810 buildCounterVideoCategoryListResponse++; | 4810 buildCounterVideoCategoryListResponse++; |
| 4811 if (buildCounterVideoCategoryListResponse < 3) { | 4811 if (buildCounterVideoCategoryListResponse < 3) { |
| 4812 unittest.expect(o.etag, unittest.equals('foo')); | 4812 unittest.expect(o.etag, unittest.equals('foo')); |
| 4813 unittest.expect(o.eventId, unittest.equals('foo')); | 4813 unittest.expect(o.eventId, unittest.equals('foo')); |
| 4814 checkUnnamed3372(o.items); | 4814 checkUnnamed761(o.items); |
| 4815 unittest.expect(o.kind, unittest.equals('foo')); | 4815 unittest.expect(o.kind, unittest.equals('foo')); |
| 4816 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4816 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4817 checkPageInfo(o.pageInfo); | 4817 checkPageInfo(o.pageInfo); |
| 4818 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 4818 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 4819 checkTokenPagination(o.tokenPagination); | 4819 checkTokenPagination(o.tokenPagination); |
| 4820 unittest.expect(o.visitorId, unittest.equals('foo')); | 4820 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 4821 } | 4821 } |
| 4822 buildCounterVideoCategoryListResponse--; | 4822 buildCounterVideoCategoryListResponse--; |
| 4823 } | 4823 } |
| 4824 | 4824 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4873 unittest.expect(o.definition, unittest.equals('foo')); | 4873 unittest.expect(o.definition, unittest.equals('foo')); |
| 4874 unittest.expect(o.dimension, unittest.equals('foo')); | 4874 unittest.expect(o.dimension, unittest.equals('foo')); |
| 4875 unittest.expect(o.duration, unittest.equals('foo')); | 4875 unittest.expect(o.duration, unittest.equals('foo')); |
| 4876 unittest.expect(o.licensedContent, unittest.isTrue); | 4876 unittest.expect(o.licensedContent, unittest.isTrue); |
| 4877 unittest.expect(o.projection, unittest.equals('foo')); | 4877 unittest.expect(o.projection, unittest.equals('foo')); |
| 4878 checkVideoContentDetailsRegionRestriction(o.regionRestriction); | 4878 checkVideoContentDetailsRegionRestriction(o.regionRestriction); |
| 4879 } | 4879 } |
| 4880 buildCounterVideoContentDetails--; | 4880 buildCounterVideoContentDetails--; |
| 4881 } | 4881 } |
| 4882 | 4882 |
| 4883 buildUnnamed3373() { | 4883 buildUnnamed762() { |
| 4884 var o = new core.List<core.String>(); | 4884 var o = new core.List<core.String>(); |
| 4885 o.add("foo"); | 4885 o.add("foo"); |
| 4886 o.add("foo"); | 4886 o.add("foo"); |
| 4887 return o; | 4887 return o; |
| 4888 } | 4888 } |
| 4889 | 4889 |
| 4890 checkUnnamed3373(core.List<core.String> o) { | 4890 checkUnnamed762(core.List<core.String> o) { |
| 4891 unittest.expect(o, unittest.hasLength(2)); | 4891 unittest.expect(o, unittest.hasLength(2)); |
| 4892 unittest.expect(o[0], unittest.equals('foo')); | 4892 unittest.expect(o[0], unittest.equals('foo')); |
| 4893 unittest.expect(o[1], unittest.equals('foo')); | 4893 unittest.expect(o[1], unittest.equals('foo')); |
| 4894 } | 4894 } |
| 4895 | 4895 |
| 4896 buildUnnamed3374() { | 4896 buildUnnamed763() { |
| 4897 var o = new core.List<core.String>(); | 4897 var o = new core.List<core.String>(); |
| 4898 o.add("foo"); | 4898 o.add("foo"); |
| 4899 o.add("foo"); | 4899 o.add("foo"); |
| 4900 return o; | 4900 return o; |
| 4901 } | 4901 } |
| 4902 | 4902 |
| 4903 checkUnnamed3374(core.List<core.String> o) { | 4903 checkUnnamed763(core.List<core.String> o) { |
| 4904 unittest.expect(o, unittest.hasLength(2)); | 4904 unittest.expect(o, unittest.hasLength(2)); |
| 4905 unittest.expect(o[0], unittest.equals('foo')); | 4905 unittest.expect(o[0], unittest.equals('foo')); |
| 4906 unittest.expect(o[1], unittest.equals('foo')); | 4906 unittest.expect(o[1], unittest.equals('foo')); |
| 4907 } | 4907 } |
| 4908 | 4908 |
| 4909 core.int buildCounterVideoContentDetailsRegionRestriction = 0; | 4909 core.int buildCounterVideoContentDetailsRegionRestriction = 0; |
| 4910 buildVideoContentDetailsRegionRestriction() { | 4910 buildVideoContentDetailsRegionRestriction() { |
| 4911 var o = new api.VideoContentDetailsRegionRestriction(); | 4911 var o = new api.VideoContentDetailsRegionRestriction(); |
| 4912 buildCounterVideoContentDetailsRegionRestriction++; | 4912 buildCounterVideoContentDetailsRegionRestriction++; |
| 4913 if (buildCounterVideoContentDetailsRegionRestriction < 3) { | 4913 if (buildCounterVideoContentDetailsRegionRestriction < 3) { |
| 4914 o.allowed = buildUnnamed3373(); | 4914 o.allowed = buildUnnamed762(); |
| 4915 o.blocked = buildUnnamed3374(); | 4915 o.blocked = buildUnnamed763(); |
| 4916 } | 4916 } |
| 4917 buildCounterVideoContentDetailsRegionRestriction--; | 4917 buildCounterVideoContentDetailsRegionRestriction--; |
| 4918 return o; | 4918 return o; |
| 4919 } | 4919 } |
| 4920 | 4920 |
| 4921 checkVideoContentDetailsRegionRestriction(api.VideoContentDetailsRegionRestricti
on o) { | 4921 checkVideoContentDetailsRegionRestriction(api.VideoContentDetailsRegionRestricti
on o) { |
| 4922 buildCounterVideoContentDetailsRegionRestriction++; | 4922 buildCounterVideoContentDetailsRegionRestriction++; |
| 4923 if (buildCounterVideoContentDetailsRegionRestriction < 3) { | 4923 if (buildCounterVideoContentDetailsRegionRestriction < 3) { |
| 4924 checkUnnamed3373(o.allowed); | 4924 checkUnnamed762(o.allowed); |
| 4925 checkUnnamed3374(o.blocked); | 4925 checkUnnamed763(o.blocked); |
| 4926 } | 4926 } |
| 4927 buildCounterVideoContentDetailsRegionRestriction--; | 4927 buildCounterVideoContentDetailsRegionRestriction--; |
| 4928 } | 4928 } |
| 4929 | 4929 |
| 4930 buildUnnamed3375() { | 4930 buildUnnamed764() { |
| 4931 var o = new core.List<api.VideoFileDetailsAudioStream>(); | 4931 var o = new core.List<api.VideoFileDetailsAudioStream>(); |
| 4932 o.add(buildVideoFileDetailsAudioStream()); | 4932 o.add(buildVideoFileDetailsAudioStream()); |
| 4933 o.add(buildVideoFileDetailsAudioStream()); | 4933 o.add(buildVideoFileDetailsAudioStream()); |
| 4934 return o; | 4934 return o; |
| 4935 } | 4935 } |
| 4936 | 4936 |
| 4937 checkUnnamed3375(core.List<api.VideoFileDetailsAudioStream> o) { | 4937 checkUnnamed764(core.List<api.VideoFileDetailsAudioStream> o) { |
| 4938 unittest.expect(o, unittest.hasLength(2)); | 4938 unittest.expect(o, unittest.hasLength(2)); |
| 4939 checkVideoFileDetailsAudioStream(o[0]); | 4939 checkVideoFileDetailsAudioStream(o[0]); |
| 4940 checkVideoFileDetailsAudioStream(o[1]); | 4940 checkVideoFileDetailsAudioStream(o[1]); |
| 4941 } | 4941 } |
| 4942 | 4942 |
| 4943 buildUnnamed3376() { | 4943 buildUnnamed765() { |
| 4944 var o = new core.List<api.VideoFileDetailsVideoStream>(); | 4944 var o = new core.List<api.VideoFileDetailsVideoStream>(); |
| 4945 o.add(buildVideoFileDetailsVideoStream()); | 4945 o.add(buildVideoFileDetailsVideoStream()); |
| 4946 o.add(buildVideoFileDetailsVideoStream()); | 4946 o.add(buildVideoFileDetailsVideoStream()); |
| 4947 return o; | 4947 return o; |
| 4948 } | 4948 } |
| 4949 | 4949 |
| 4950 checkUnnamed3376(core.List<api.VideoFileDetailsVideoStream> o) { | 4950 checkUnnamed765(core.List<api.VideoFileDetailsVideoStream> o) { |
| 4951 unittest.expect(o, unittest.hasLength(2)); | 4951 unittest.expect(o, unittest.hasLength(2)); |
| 4952 checkVideoFileDetailsVideoStream(o[0]); | 4952 checkVideoFileDetailsVideoStream(o[0]); |
| 4953 checkVideoFileDetailsVideoStream(o[1]); | 4953 checkVideoFileDetailsVideoStream(o[1]); |
| 4954 } | 4954 } |
| 4955 | 4955 |
| 4956 core.int buildCounterVideoFileDetails = 0; | 4956 core.int buildCounterVideoFileDetails = 0; |
| 4957 buildVideoFileDetails() { | 4957 buildVideoFileDetails() { |
| 4958 var o = new api.VideoFileDetails(); | 4958 var o = new api.VideoFileDetails(); |
| 4959 buildCounterVideoFileDetails++; | 4959 buildCounterVideoFileDetails++; |
| 4960 if (buildCounterVideoFileDetails < 3) { | 4960 if (buildCounterVideoFileDetails < 3) { |
| 4961 o.audioStreams = buildUnnamed3375(); | 4961 o.audioStreams = buildUnnamed764(); |
| 4962 o.bitrateBps = "foo"; | 4962 o.bitrateBps = "foo"; |
| 4963 o.container = "foo"; | 4963 o.container = "foo"; |
| 4964 o.creationTime = "foo"; | 4964 o.creationTime = "foo"; |
| 4965 o.durationMs = "foo"; | 4965 o.durationMs = "foo"; |
| 4966 o.fileName = "foo"; | 4966 o.fileName = "foo"; |
| 4967 o.fileSize = "foo"; | 4967 o.fileSize = "foo"; |
| 4968 o.fileType = "foo"; | 4968 o.fileType = "foo"; |
| 4969 o.recordingLocation = buildGeoPoint(); | 4969 o.recordingLocation = buildGeoPoint(); |
| 4970 o.videoStreams = buildUnnamed3376(); | 4970 o.videoStreams = buildUnnamed765(); |
| 4971 } | 4971 } |
| 4972 buildCounterVideoFileDetails--; | 4972 buildCounterVideoFileDetails--; |
| 4973 return o; | 4973 return o; |
| 4974 } | 4974 } |
| 4975 | 4975 |
| 4976 checkVideoFileDetails(api.VideoFileDetails o) { | 4976 checkVideoFileDetails(api.VideoFileDetails o) { |
| 4977 buildCounterVideoFileDetails++; | 4977 buildCounterVideoFileDetails++; |
| 4978 if (buildCounterVideoFileDetails < 3) { | 4978 if (buildCounterVideoFileDetails < 3) { |
| 4979 checkUnnamed3375(o.audioStreams); | 4979 checkUnnamed764(o.audioStreams); |
| 4980 unittest.expect(o.bitrateBps, unittest.equals('foo')); | 4980 unittest.expect(o.bitrateBps, unittest.equals('foo')); |
| 4981 unittest.expect(o.container, unittest.equals('foo')); | 4981 unittest.expect(o.container, unittest.equals('foo')); |
| 4982 unittest.expect(o.creationTime, unittest.equals('foo')); | 4982 unittest.expect(o.creationTime, unittest.equals('foo')); |
| 4983 unittest.expect(o.durationMs, unittest.equals('foo')); | 4983 unittest.expect(o.durationMs, unittest.equals('foo')); |
| 4984 unittest.expect(o.fileName, unittest.equals('foo')); | 4984 unittest.expect(o.fileName, unittest.equals('foo')); |
| 4985 unittest.expect(o.fileSize, unittest.equals('foo')); | 4985 unittest.expect(o.fileSize, unittest.equals('foo')); |
| 4986 unittest.expect(o.fileType, unittest.equals('foo')); | 4986 unittest.expect(o.fileType, unittest.equals('foo')); |
| 4987 checkGeoPoint(o.recordingLocation); | 4987 checkGeoPoint(o.recordingLocation); |
| 4988 checkUnnamed3376(o.videoStreams); | 4988 checkUnnamed765(o.videoStreams); |
| 4989 } | 4989 } |
| 4990 buildCounterVideoFileDetails--; | 4990 buildCounterVideoFileDetails--; |
| 4991 } | 4991 } |
| 4992 | 4992 |
| 4993 core.int buildCounterVideoFileDetailsAudioStream = 0; | 4993 core.int buildCounterVideoFileDetailsAudioStream = 0; |
| 4994 buildVideoFileDetailsAudioStream() { | 4994 buildVideoFileDetailsAudioStream() { |
| 4995 var o = new api.VideoFileDetailsAudioStream(); | 4995 var o = new api.VideoFileDetailsAudioStream(); |
| 4996 buildCounterVideoFileDetailsAudioStream++; | 4996 buildCounterVideoFileDetailsAudioStream++; |
| 4997 if (buildCounterVideoFileDetailsAudioStream < 3) { | 4997 if (buildCounterVideoFileDetailsAudioStream < 3) { |
| 4998 o.bitrateBps = "foo"; | 4998 o.bitrateBps = "foo"; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5041 unittest.expect(o.codec, unittest.equals('foo')); | 5041 unittest.expect(o.codec, unittest.equals('foo')); |
| 5042 unittest.expect(o.frameRateFps, unittest.equals(42.0)); | 5042 unittest.expect(o.frameRateFps, unittest.equals(42.0)); |
| 5043 unittest.expect(o.heightPixels, unittest.equals(42)); | 5043 unittest.expect(o.heightPixels, unittest.equals(42)); |
| 5044 unittest.expect(o.rotation, unittest.equals('foo')); | 5044 unittest.expect(o.rotation, unittest.equals('foo')); |
| 5045 unittest.expect(o.vendor, unittest.equals('foo')); | 5045 unittest.expect(o.vendor, unittest.equals('foo')); |
| 5046 unittest.expect(o.widthPixels, unittest.equals(42)); | 5046 unittest.expect(o.widthPixels, unittest.equals(42)); |
| 5047 } | 5047 } |
| 5048 buildCounterVideoFileDetailsVideoStream--; | 5048 buildCounterVideoFileDetailsVideoStream--; |
| 5049 } | 5049 } |
| 5050 | 5050 |
| 5051 buildUnnamed3377() { | 5051 buildUnnamed766() { |
| 5052 var o = new core.List<api.VideoRating>(); | 5052 var o = new core.List<api.VideoRating>(); |
| 5053 o.add(buildVideoRating()); | 5053 o.add(buildVideoRating()); |
| 5054 o.add(buildVideoRating()); | 5054 o.add(buildVideoRating()); |
| 5055 return o; | 5055 return o; |
| 5056 } | 5056 } |
| 5057 | 5057 |
| 5058 checkUnnamed3377(core.List<api.VideoRating> o) { | 5058 checkUnnamed766(core.List<api.VideoRating> o) { |
| 5059 unittest.expect(o, unittest.hasLength(2)); | 5059 unittest.expect(o, unittest.hasLength(2)); |
| 5060 checkVideoRating(o[0]); | 5060 checkVideoRating(o[0]); |
| 5061 checkVideoRating(o[1]); | 5061 checkVideoRating(o[1]); |
| 5062 } | 5062 } |
| 5063 | 5063 |
| 5064 core.int buildCounterVideoGetRatingResponse = 0; | 5064 core.int buildCounterVideoGetRatingResponse = 0; |
| 5065 buildVideoGetRatingResponse() { | 5065 buildVideoGetRatingResponse() { |
| 5066 var o = new api.VideoGetRatingResponse(); | 5066 var o = new api.VideoGetRatingResponse(); |
| 5067 buildCounterVideoGetRatingResponse++; | 5067 buildCounterVideoGetRatingResponse++; |
| 5068 if (buildCounterVideoGetRatingResponse < 3) { | 5068 if (buildCounterVideoGetRatingResponse < 3) { |
| 5069 o.etag = "foo"; | 5069 o.etag = "foo"; |
| 5070 o.eventId = "foo"; | 5070 o.eventId = "foo"; |
| 5071 o.items = buildUnnamed3377(); | 5071 o.items = buildUnnamed766(); |
| 5072 o.kind = "foo"; | 5072 o.kind = "foo"; |
| 5073 o.visitorId = "foo"; | 5073 o.visitorId = "foo"; |
| 5074 } | 5074 } |
| 5075 buildCounterVideoGetRatingResponse--; | 5075 buildCounterVideoGetRatingResponse--; |
| 5076 return o; | 5076 return o; |
| 5077 } | 5077 } |
| 5078 | 5078 |
| 5079 checkVideoGetRatingResponse(api.VideoGetRatingResponse o) { | 5079 checkVideoGetRatingResponse(api.VideoGetRatingResponse o) { |
| 5080 buildCounterVideoGetRatingResponse++; | 5080 buildCounterVideoGetRatingResponse++; |
| 5081 if (buildCounterVideoGetRatingResponse < 3) { | 5081 if (buildCounterVideoGetRatingResponse < 3) { |
| 5082 unittest.expect(o.etag, unittest.equals('foo')); | 5082 unittest.expect(o.etag, unittest.equals('foo')); |
| 5083 unittest.expect(o.eventId, unittest.equals('foo')); | 5083 unittest.expect(o.eventId, unittest.equals('foo')); |
| 5084 checkUnnamed3377(o.items); | 5084 checkUnnamed766(o.items); |
| 5085 unittest.expect(o.kind, unittest.equals('foo')); | 5085 unittest.expect(o.kind, unittest.equals('foo')); |
| 5086 unittest.expect(o.visitorId, unittest.equals('foo')); | 5086 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 5087 } | 5087 } |
| 5088 buildCounterVideoGetRatingResponse--; | 5088 buildCounterVideoGetRatingResponse--; |
| 5089 } | 5089 } |
| 5090 | 5090 |
| 5091 buildUnnamed3378() { | 5091 buildUnnamed767() { |
| 5092 var o = new core.List<api.Video>(); | 5092 var o = new core.List<api.Video>(); |
| 5093 o.add(buildVideo()); | 5093 o.add(buildVideo()); |
| 5094 o.add(buildVideo()); | 5094 o.add(buildVideo()); |
| 5095 return o; | 5095 return o; |
| 5096 } | 5096 } |
| 5097 | 5097 |
| 5098 checkUnnamed3378(core.List<api.Video> o) { | 5098 checkUnnamed767(core.List<api.Video> o) { |
| 5099 unittest.expect(o, unittest.hasLength(2)); | 5099 unittest.expect(o, unittest.hasLength(2)); |
| 5100 checkVideo(o[0]); | 5100 checkVideo(o[0]); |
| 5101 checkVideo(o[1]); | 5101 checkVideo(o[1]); |
| 5102 } | 5102 } |
| 5103 | 5103 |
| 5104 core.int buildCounterVideoListResponse = 0; | 5104 core.int buildCounterVideoListResponse = 0; |
| 5105 buildVideoListResponse() { | 5105 buildVideoListResponse() { |
| 5106 var o = new api.VideoListResponse(); | 5106 var o = new api.VideoListResponse(); |
| 5107 buildCounterVideoListResponse++; | 5107 buildCounterVideoListResponse++; |
| 5108 if (buildCounterVideoListResponse < 3) { | 5108 if (buildCounterVideoListResponse < 3) { |
| 5109 o.etag = "foo"; | 5109 o.etag = "foo"; |
| 5110 o.eventId = "foo"; | 5110 o.eventId = "foo"; |
| 5111 o.items = buildUnnamed3378(); | 5111 o.items = buildUnnamed767(); |
| 5112 o.kind = "foo"; | 5112 o.kind = "foo"; |
| 5113 o.nextPageToken = "foo"; | 5113 o.nextPageToken = "foo"; |
| 5114 o.pageInfo = buildPageInfo(); | 5114 o.pageInfo = buildPageInfo(); |
| 5115 o.prevPageToken = "foo"; | 5115 o.prevPageToken = "foo"; |
| 5116 o.tokenPagination = buildTokenPagination(); | 5116 o.tokenPagination = buildTokenPagination(); |
| 5117 o.visitorId = "foo"; | 5117 o.visitorId = "foo"; |
| 5118 } | 5118 } |
| 5119 buildCounterVideoListResponse--; | 5119 buildCounterVideoListResponse--; |
| 5120 return o; | 5120 return o; |
| 5121 } | 5121 } |
| 5122 | 5122 |
| 5123 checkVideoListResponse(api.VideoListResponse o) { | 5123 checkVideoListResponse(api.VideoListResponse o) { |
| 5124 buildCounterVideoListResponse++; | 5124 buildCounterVideoListResponse++; |
| 5125 if (buildCounterVideoListResponse < 3) { | 5125 if (buildCounterVideoListResponse < 3) { |
| 5126 unittest.expect(o.etag, unittest.equals('foo')); | 5126 unittest.expect(o.etag, unittest.equals('foo')); |
| 5127 unittest.expect(o.eventId, unittest.equals('foo')); | 5127 unittest.expect(o.eventId, unittest.equals('foo')); |
| 5128 checkUnnamed3378(o.items); | 5128 checkUnnamed767(o.items); |
| 5129 unittest.expect(o.kind, unittest.equals('foo')); | 5129 unittest.expect(o.kind, unittest.equals('foo')); |
| 5130 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5130 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5131 checkPageInfo(o.pageInfo); | 5131 checkPageInfo(o.pageInfo); |
| 5132 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 5132 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 5133 checkTokenPagination(o.tokenPagination); | 5133 checkTokenPagination(o.tokenPagination); |
| 5134 unittest.expect(o.visitorId, unittest.equals('foo')); | 5134 unittest.expect(o.visitorId, unittest.equals('foo')); |
| 5135 } | 5135 } |
| 5136 buildCounterVideoListResponse--; | 5136 buildCounterVideoListResponse--; |
| 5137 } | 5137 } |
| 5138 | 5138 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5273 checkVideoProcessingDetailsProcessingProgress(api.VideoProcessingDetailsProcessi
ngProgress o) { | 5273 checkVideoProcessingDetailsProcessingProgress(api.VideoProcessingDetailsProcessi
ngProgress o) { |
| 5274 buildCounterVideoProcessingDetailsProcessingProgress++; | 5274 buildCounterVideoProcessingDetailsProcessingProgress++; |
| 5275 if (buildCounterVideoProcessingDetailsProcessingProgress < 3) { | 5275 if (buildCounterVideoProcessingDetailsProcessingProgress < 3) { |
| 5276 unittest.expect(o.partsProcessed, unittest.equals('foo')); | 5276 unittest.expect(o.partsProcessed, unittest.equals('foo')); |
| 5277 unittest.expect(o.partsTotal, unittest.equals('foo')); | 5277 unittest.expect(o.partsTotal, unittest.equals('foo')); |
| 5278 unittest.expect(o.timeLeftMs, unittest.equals('foo')); | 5278 unittest.expect(o.timeLeftMs, unittest.equals('foo')); |
| 5279 } | 5279 } |
| 5280 buildCounterVideoProcessingDetailsProcessingProgress--; | 5280 buildCounterVideoProcessingDetailsProcessingProgress--; |
| 5281 } | 5281 } |
| 5282 | 5282 |
| 5283 buildUnnamed3379() { | 5283 buildUnnamed768() { |
| 5284 var o = new core.List<core.String>(); | 5284 var o = new core.List<core.String>(); |
| 5285 o.add("foo"); | 5285 o.add("foo"); |
| 5286 o.add("foo"); | 5286 o.add("foo"); |
| 5287 return o; | 5287 return o; |
| 5288 } | 5288 } |
| 5289 | 5289 |
| 5290 checkUnnamed3379(core.List<core.String> o) { | 5290 checkUnnamed768(core.List<core.String> o) { |
| 5291 unittest.expect(o, unittest.hasLength(2)); | 5291 unittest.expect(o, unittest.hasLength(2)); |
| 5292 unittest.expect(o[0], unittest.equals('foo')); | 5292 unittest.expect(o[0], unittest.equals('foo')); |
| 5293 unittest.expect(o[1], unittest.equals('foo')); | 5293 unittest.expect(o[1], unittest.equals('foo')); |
| 5294 } | 5294 } |
| 5295 | 5295 |
| 5296 core.int buildCounterVideoProjectDetails = 0; | 5296 core.int buildCounterVideoProjectDetails = 0; |
| 5297 buildVideoProjectDetails() { | 5297 buildVideoProjectDetails() { |
| 5298 var o = new api.VideoProjectDetails(); | 5298 var o = new api.VideoProjectDetails(); |
| 5299 buildCounterVideoProjectDetails++; | 5299 buildCounterVideoProjectDetails++; |
| 5300 if (buildCounterVideoProjectDetails < 3) { | 5300 if (buildCounterVideoProjectDetails < 3) { |
| 5301 o.tags = buildUnnamed3379(); | 5301 o.tags = buildUnnamed768(); |
| 5302 } | 5302 } |
| 5303 buildCounterVideoProjectDetails--; | 5303 buildCounterVideoProjectDetails--; |
| 5304 return o; | 5304 return o; |
| 5305 } | 5305 } |
| 5306 | 5306 |
| 5307 checkVideoProjectDetails(api.VideoProjectDetails o) { | 5307 checkVideoProjectDetails(api.VideoProjectDetails o) { |
| 5308 buildCounterVideoProjectDetails++; | 5308 buildCounterVideoProjectDetails++; |
| 5309 if (buildCounterVideoProjectDetails < 3) { | 5309 if (buildCounterVideoProjectDetails < 3) { |
| 5310 checkUnnamed3379(o.tags); | 5310 checkUnnamed768(o.tags); |
| 5311 } | 5311 } |
| 5312 buildCounterVideoProjectDetails--; | 5312 buildCounterVideoProjectDetails--; |
| 5313 } | 5313 } |
| 5314 | 5314 |
| 5315 core.int buildCounterVideoRating = 0; | 5315 core.int buildCounterVideoRating = 0; |
| 5316 buildVideoRating() { | 5316 buildVideoRating() { |
| 5317 var o = new api.VideoRating(); | 5317 var o = new api.VideoRating(); |
| 5318 buildCounterVideoRating++; | 5318 buildCounterVideoRating++; |
| 5319 if (buildCounterVideoRating < 3) { | 5319 if (buildCounterVideoRating < 3) { |
| 5320 o.rating = "foo"; | 5320 o.rating = "foo"; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 5349 checkVideoRecordingDetails(api.VideoRecordingDetails o) { | 5349 checkVideoRecordingDetails(api.VideoRecordingDetails o) { |
| 5350 buildCounterVideoRecordingDetails++; | 5350 buildCounterVideoRecordingDetails++; |
| 5351 if (buildCounterVideoRecordingDetails < 3) { | 5351 if (buildCounterVideoRecordingDetails < 3) { |
| 5352 checkGeoPoint(o.location); | 5352 checkGeoPoint(o.location); |
| 5353 unittest.expect(o.locationDescription, unittest.equals('foo')); | 5353 unittest.expect(o.locationDescription, unittest.equals('foo')); |
| 5354 unittest.expect(o.recordingDate, unittest.equals(core.DateTime.parse("2002-0
2-27T14:01:02"))); | 5354 unittest.expect(o.recordingDate, unittest.equals(core.DateTime.parse("2002-0
2-27T14:01:02"))); |
| 5355 } | 5355 } |
| 5356 buildCounterVideoRecordingDetails--; | 5356 buildCounterVideoRecordingDetails--; |
| 5357 } | 5357 } |
| 5358 | 5358 |
| 5359 buildUnnamed3380() { | 5359 buildUnnamed769() { |
| 5360 var o = new core.List<core.String>(); | 5360 var o = new core.List<core.String>(); |
| 5361 o.add("foo"); | 5361 o.add("foo"); |
| 5362 o.add("foo"); | 5362 o.add("foo"); |
| 5363 return o; | 5363 return o; |
| 5364 } | 5364 } |
| 5365 | 5365 |
| 5366 checkUnnamed3380(core.List<core.String> o) { | 5366 checkUnnamed769(core.List<core.String> o) { |
| 5367 unittest.expect(o, unittest.hasLength(2)); | 5367 unittest.expect(o, unittest.hasLength(2)); |
| 5368 unittest.expect(o[0], unittest.equals('foo')); | 5368 unittest.expect(o[0], unittest.equals('foo')); |
| 5369 unittest.expect(o[1], unittest.equals('foo')); | 5369 unittest.expect(o[1], unittest.equals('foo')); |
| 5370 } | 5370 } |
| 5371 | 5371 |
| 5372 core.int buildCounterVideoSnippet = 0; | 5372 core.int buildCounterVideoSnippet = 0; |
| 5373 buildVideoSnippet() { | 5373 buildVideoSnippet() { |
| 5374 var o = new api.VideoSnippet(); | 5374 var o = new api.VideoSnippet(); |
| 5375 buildCounterVideoSnippet++; | 5375 buildCounterVideoSnippet++; |
| 5376 if (buildCounterVideoSnippet < 3) { | 5376 if (buildCounterVideoSnippet < 3) { |
| 5377 o.categoryId = "foo"; | 5377 o.categoryId = "foo"; |
| 5378 o.channelId = "foo"; | 5378 o.channelId = "foo"; |
| 5379 o.channelTitle = "foo"; | 5379 o.channelTitle = "foo"; |
| 5380 o.defaultAudioLanguage = "foo"; | 5380 o.defaultAudioLanguage = "foo"; |
| 5381 o.defaultLanguage = "foo"; | 5381 o.defaultLanguage = "foo"; |
| 5382 o.description = "foo"; | 5382 o.description = "foo"; |
| 5383 o.liveBroadcastContent = "foo"; | 5383 o.liveBroadcastContent = "foo"; |
| 5384 o.localized = buildVideoLocalization(); | 5384 o.localized = buildVideoLocalization(); |
| 5385 o.publishedAt = core.DateTime.parse("2002-02-27T14:01:02"); | 5385 o.publishedAt = core.DateTime.parse("2002-02-27T14:01:02"); |
| 5386 o.tags = buildUnnamed3380(); | 5386 o.tags = buildUnnamed769(); |
| 5387 o.thumbnails = buildThumbnailDetails(); | 5387 o.thumbnails = buildThumbnailDetails(); |
| 5388 o.title = "foo"; | 5388 o.title = "foo"; |
| 5389 } | 5389 } |
| 5390 buildCounterVideoSnippet--; | 5390 buildCounterVideoSnippet--; |
| 5391 return o; | 5391 return o; |
| 5392 } | 5392 } |
| 5393 | 5393 |
| 5394 checkVideoSnippet(api.VideoSnippet o) { | 5394 checkVideoSnippet(api.VideoSnippet o) { |
| 5395 buildCounterVideoSnippet++; | 5395 buildCounterVideoSnippet++; |
| 5396 if (buildCounterVideoSnippet < 3) { | 5396 if (buildCounterVideoSnippet < 3) { |
| 5397 unittest.expect(o.categoryId, unittest.equals('foo')); | 5397 unittest.expect(o.categoryId, unittest.equals('foo')); |
| 5398 unittest.expect(o.channelId, unittest.equals('foo')); | 5398 unittest.expect(o.channelId, unittest.equals('foo')); |
| 5399 unittest.expect(o.channelTitle, unittest.equals('foo')); | 5399 unittest.expect(o.channelTitle, unittest.equals('foo')); |
| 5400 unittest.expect(o.defaultAudioLanguage, unittest.equals('foo')); | 5400 unittest.expect(o.defaultAudioLanguage, unittest.equals('foo')); |
| 5401 unittest.expect(o.defaultLanguage, unittest.equals('foo')); | 5401 unittest.expect(o.defaultLanguage, unittest.equals('foo')); |
| 5402 unittest.expect(o.description, unittest.equals('foo')); | 5402 unittest.expect(o.description, unittest.equals('foo')); |
| 5403 unittest.expect(o.liveBroadcastContent, unittest.equals('foo')); | 5403 unittest.expect(o.liveBroadcastContent, unittest.equals('foo')); |
| 5404 checkVideoLocalization(o.localized); | 5404 checkVideoLocalization(o.localized); |
| 5405 unittest.expect(o.publishedAt, unittest.equals(core.DateTime.parse("2002-02-
27T14:01:02"))); | 5405 unittest.expect(o.publishedAt, unittest.equals(core.DateTime.parse("2002-02-
27T14:01:02"))); |
| 5406 checkUnnamed3380(o.tags); | 5406 checkUnnamed769(o.tags); |
| 5407 checkThumbnailDetails(o.thumbnails); | 5407 checkThumbnailDetails(o.thumbnails); |
| 5408 unittest.expect(o.title, unittest.equals('foo')); | 5408 unittest.expect(o.title, unittest.equals('foo')); |
| 5409 } | 5409 } |
| 5410 buildCounterVideoSnippet--; | 5410 buildCounterVideoSnippet--; |
| 5411 } | 5411 } |
| 5412 | 5412 |
| 5413 core.int buildCounterVideoStatistics = 0; | 5413 core.int buildCounterVideoStatistics = 0; |
| 5414 buildVideoStatistics() { | 5414 buildVideoStatistics() { |
| 5415 var o = new api.VideoStatistics(); | 5415 var o = new api.VideoStatistics(); |
| 5416 buildCounterVideoStatistics++; | 5416 buildCounterVideoStatistics++; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5463 unittest.expect(o.license, unittest.equals('foo')); | 5463 unittest.expect(o.license, unittest.equals('foo')); |
| 5464 unittest.expect(o.privacyStatus, unittest.equals('foo')); | 5464 unittest.expect(o.privacyStatus, unittest.equals('foo')); |
| 5465 unittest.expect(o.publicStatsViewable, unittest.isTrue); | 5465 unittest.expect(o.publicStatsViewable, unittest.isTrue); |
| 5466 unittest.expect(o.publishAt, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 5466 unittest.expect(o.publishAt, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 5467 unittest.expect(o.rejectionReason, unittest.equals('foo')); | 5467 unittest.expect(o.rejectionReason, unittest.equals('foo')); |
| 5468 unittest.expect(o.uploadStatus, unittest.equals('foo')); | 5468 unittest.expect(o.uploadStatus, unittest.equals('foo')); |
| 5469 } | 5469 } |
| 5470 buildCounterVideoStatus--; | 5470 buildCounterVideoStatus--; |
| 5471 } | 5471 } |
| 5472 | 5472 |
| 5473 buildUnnamed3381() { | 5473 buildUnnamed770() { |
| 5474 var o = new core.List<core.String>(); | 5474 var o = new core.List<core.String>(); |
| 5475 o.add("foo"); | 5475 o.add("foo"); |
| 5476 o.add("foo"); | 5476 o.add("foo"); |
| 5477 return o; | 5477 return o; |
| 5478 } | 5478 } |
| 5479 | 5479 |
| 5480 checkUnnamed3381(core.List<core.String> o) { | 5480 checkUnnamed770(core.List<core.String> o) { |
| 5481 unittest.expect(o, unittest.hasLength(2)); | 5481 unittest.expect(o, unittest.hasLength(2)); |
| 5482 unittest.expect(o[0], unittest.equals('foo')); | 5482 unittest.expect(o[0], unittest.equals('foo')); |
| 5483 unittest.expect(o[1], unittest.equals('foo')); | 5483 unittest.expect(o[1], unittest.equals('foo')); |
| 5484 } | 5484 } |
| 5485 | 5485 |
| 5486 buildUnnamed3382() { | 5486 buildUnnamed771() { |
| 5487 var o = new core.List<core.String>(); | 5487 var o = new core.List<core.String>(); |
| 5488 o.add("foo"); | 5488 o.add("foo"); |
| 5489 o.add("foo"); | 5489 o.add("foo"); |
| 5490 return o; | 5490 return o; |
| 5491 } | 5491 } |
| 5492 | 5492 |
| 5493 checkUnnamed3382(core.List<core.String> o) { | 5493 checkUnnamed771(core.List<core.String> o) { |
| 5494 unittest.expect(o, unittest.hasLength(2)); | 5494 unittest.expect(o, unittest.hasLength(2)); |
| 5495 unittest.expect(o[0], unittest.equals('foo')); | 5495 unittest.expect(o[0], unittest.equals('foo')); |
| 5496 unittest.expect(o[1], unittest.equals('foo')); | 5496 unittest.expect(o[1], unittest.equals('foo')); |
| 5497 } | 5497 } |
| 5498 | 5498 |
| 5499 buildUnnamed3383() { | 5499 buildUnnamed772() { |
| 5500 var o = new core.List<core.String>(); | 5500 var o = new core.List<core.String>(); |
| 5501 o.add("foo"); | 5501 o.add("foo"); |
| 5502 o.add("foo"); | 5502 o.add("foo"); |
| 5503 return o; | 5503 return o; |
| 5504 } | 5504 } |
| 5505 | 5505 |
| 5506 checkUnnamed3383(core.List<core.String> o) { | 5506 checkUnnamed772(core.List<core.String> o) { |
| 5507 unittest.expect(o, unittest.hasLength(2)); | 5507 unittest.expect(o, unittest.hasLength(2)); |
| 5508 unittest.expect(o[0], unittest.equals('foo')); | 5508 unittest.expect(o[0], unittest.equals('foo')); |
| 5509 unittest.expect(o[1], unittest.equals('foo')); | 5509 unittest.expect(o[1], unittest.equals('foo')); |
| 5510 } | 5510 } |
| 5511 | 5511 |
| 5512 buildUnnamed3384() { | 5512 buildUnnamed773() { |
| 5513 var o = new core.List<core.String>(); | 5513 var o = new core.List<core.String>(); |
| 5514 o.add("foo"); | 5514 o.add("foo"); |
| 5515 o.add("foo"); | 5515 o.add("foo"); |
| 5516 return o; | 5516 return o; |
| 5517 } | 5517 } |
| 5518 | 5518 |
| 5519 checkUnnamed3384(core.List<core.String> o) { | 5519 checkUnnamed773(core.List<core.String> o) { |
| 5520 unittest.expect(o, unittest.hasLength(2)); | 5520 unittest.expect(o, unittest.hasLength(2)); |
| 5521 unittest.expect(o[0], unittest.equals('foo')); | 5521 unittest.expect(o[0], unittest.equals('foo')); |
| 5522 unittest.expect(o[1], unittest.equals('foo')); | 5522 unittest.expect(o[1], unittest.equals('foo')); |
| 5523 } | 5523 } |
| 5524 | 5524 |
| 5525 buildUnnamed3385() { | 5525 buildUnnamed774() { |
| 5526 var o = new core.List<api.VideoSuggestionsTagSuggestion>(); | 5526 var o = new core.List<api.VideoSuggestionsTagSuggestion>(); |
| 5527 o.add(buildVideoSuggestionsTagSuggestion()); | 5527 o.add(buildVideoSuggestionsTagSuggestion()); |
| 5528 o.add(buildVideoSuggestionsTagSuggestion()); | 5528 o.add(buildVideoSuggestionsTagSuggestion()); |
| 5529 return o; | 5529 return o; |
| 5530 } | 5530 } |
| 5531 | 5531 |
| 5532 checkUnnamed3385(core.List<api.VideoSuggestionsTagSuggestion> o) { | 5532 checkUnnamed774(core.List<api.VideoSuggestionsTagSuggestion> o) { |
| 5533 unittest.expect(o, unittest.hasLength(2)); | 5533 unittest.expect(o, unittest.hasLength(2)); |
| 5534 checkVideoSuggestionsTagSuggestion(o[0]); | 5534 checkVideoSuggestionsTagSuggestion(o[0]); |
| 5535 checkVideoSuggestionsTagSuggestion(o[1]); | 5535 checkVideoSuggestionsTagSuggestion(o[1]); |
| 5536 } | 5536 } |
| 5537 | 5537 |
| 5538 core.int buildCounterVideoSuggestions = 0; | 5538 core.int buildCounterVideoSuggestions = 0; |
| 5539 buildVideoSuggestions() { | 5539 buildVideoSuggestions() { |
| 5540 var o = new api.VideoSuggestions(); | 5540 var o = new api.VideoSuggestions(); |
| 5541 buildCounterVideoSuggestions++; | 5541 buildCounterVideoSuggestions++; |
| 5542 if (buildCounterVideoSuggestions < 3) { | 5542 if (buildCounterVideoSuggestions < 3) { |
| 5543 o.editorSuggestions = buildUnnamed3381(); | 5543 o.editorSuggestions = buildUnnamed770(); |
| 5544 o.processingErrors = buildUnnamed3382(); | 5544 o.processingErrors = buildUnnamed771(); |
| 5545 o.processingHints = buildUnnamed3383(); | 5545 o.processingHints = buildUnnamed772(); |
| 5546 o.processingWarnings = buildUnnamed3384(); | 5546 o.processingWarnings = buildUnnamed773(); |
| 5547 o.tagSuggestions = buildUnnamed3385(); | 5547 o.tagSuggestions = buildUnnamed774(); |
| 5548 } | 5548 } |
| 5549 buildCounterVideoSuggestions--; | 5549 buildCounterVideoSuggestions--; |
| 5550 return o; | 5550 return o; |
| 5551 } | 5551 } |
| 5552 | 5552 |
| 5553 checkVideoSuggestions(api.VideoSuggestions o) { | 5553 checkVideoSuggestions(api.VideoSuggestions o) { |
| 5554 buildCounterVideoSuggestions++; | 5554 buildCounterVideoSuggestions++; |
| 5555 if (buildCounterVideoSuggestions < 3) { | 5555 if (buildCounterVideoSuggestions < 3) { |
| 5556 checkUnnamed3381(o.editorSuggestions); | 5556 checkUnnamed770(o.editorSuggestions); |
| 5557 checkUnnamed3382(o.processingErrors); | 5557 checkUnnamed771(o.processingErrors); |
| 5558 checkUnnamed3383(o.processingHints); | 5558 checkUnnamed772(o.processingHints); |
| 5559 checkUnnamed3384(o.processingWarnings); | 5559 checkUnnamed773(o.processingWarnings); |
| 5560 checkUnnamed3385(o.tagSuggestions); | 5560 checkUnnamed774(o.tagSuggestions); |
| 5561 } | 5561 } |
| 5562 buildCounterVideoSuggestions--; | 5562 buildCounterVideoSuggestions--; |
| 5563 } | 5563 } |
| 5564 | 5564 |
| 5565 buildUnnamed3386() { | 5565 buildUnnamed775() { |
| 5566 var o = new core.List<core.String>(); | 5566 var o = new core.List<core.String>(); |
| 5567 o.add("foo"); | 5567 o.add("foo"); |
| 5568 o.add("foo"); | 5568 o.add("foo"); |
| 5569 return o; | 5569 return o; |
| 5570 } | 5570 } |
| 5571 | 5571 |
| 5572 checkUnnamed3386(core.List<core.String> o) { | 5572 checkUnnamed775(core.List<core.String> o) { |
| 5573 unittest.expect(o, unittest.hasLength(2)); | 5573 unittest.expect(o, unittest.hasLength(2)); |
| 5574 unittest.expect(o[0], unittest.equals('foo')); | 5574 unittest.expect(o[0], unittest.equals('foo')); |
| 5575 unittest.expect(o[1], unittest.equals('foo')); | 5575 unittest.expect(o[1], unittest.equals('foo')); |
| 5576 } | 5576 } |
| 5577 | 5577 |
| 5578 core.int buildCounterVideoSuggestionsTagSuggestion = 0; | 5578 core.int buildCounterVideoSuggestionsTagSuggestion = 0; |
| 5579 buildVideoSuggestionsTagSuggestion() { | 5579 buildVideoSuggestionsTagSuggestion() { |
| 5580 var o = new api.VideoSuggestionsTagSuggestion(); | 5580 var o = new api.VideoSuggestionsTagSuggestion(); |
| 5581 buildCounterVideoSuggestionsTagSuggestion++; | 5581 buildCounterVideoSuggestionsTagSuggestion++; |
| 5582 if (buildCounterVideoSuggestionsTagSuggestion < 3) { | 5582 if (buildCounterVideoSuggestionsTagSuggestion < 3) { |
| 5583 o.categoryRestricts = buildUnnamed3386(); | 5583 o.categoryRestricts = buildUnnamed775(); |
| 5584 o.tag = "foo"; | 5584 o.tag = "foo"; |
| 5585 } | 5585 } |
| 5586 buildCounterVideoSuggestionsTagSuggestion--; | 5586 buildCounterVideoSuggestionsTagSuggestion--; |
| 5587 return o; | 5587 return o; |
| 5588 } | 5588 } |
| 5589 | 5589 |
| 5590 checkVideoSuggestionsTagSuggestion(api.VideoSuggestionsTagSuggestion o) { | 5590 checkVideoSuggestionsTagSuggestion(api.VideoSuggestionsTagSuggestion o) { |
| 5591 buildCounterVideoSuggestionsTagSuggestion++; | 5591 buildCounterVideoSuggestionsTagSuggestion++; |
| 5592 if (buildCounterVideoSuggestionsTagSuggestion < 3) { | 5592 if (buildCounterVideoSuggestionsTagSuggestion < 3) { |
| 5593 checkUnnamed3386(o.categoryRestricts); | 5593 checkUnnamed775(o.categoryRestricts); |
| 5594 unittest.expect(o.tag, unittest.equals('foo')); | 5594 unittest.expect(o.tag, unittest.equals('foo')); |
| 5595 } | 5595 } |
| 5596 buildCounterVideoSuggestionsTagSuggestion--; | 5596 buildCounterVideoSuggestionsTagSuggestion--; |
| 5597 } | 5597 } |
| 5598 | 5598 |
| 5599 buildUnnamed3387() { | 5599 buildUnnamed776() { |
| 5600 var o = new core.List<core.String>(); | 5600 var o = new core.List<core.String>(); |
| 5601 o.add("foo"); | 5601 o.add("foo"); |
| 5602 o.add("foo"); | 5602 o.add("foo"); |
| 5603 return o; | 5603 return o; |
| 5604 } | 5604 } |
| 5605 | 5605 |
| 5606 checkUnnamed3387(core.List<core.String> o) { | 5606 checkUnnamed776(core.List<core.String> o) { |
| 5607 unittest.expect(o, unittest.hasLength(2)); | 5607 unittest.expect(o, unittest.hasLength(2)); |
| 5608 unittest.expect(o[0], unittest.equals('foo')); | 5608 unittest.expect(o[0], unittest.equals('foo')); |
| 5609 unittest.expect(o[1], unittest.equals('foo')); | 5609 unittest.expect(o[1], unittest.equals('foo')); |
| 5610 } | 5610 } |
| 5611 | 5611 |
| 5612 buildUnnamed3388() { | 5612 buildUnnamed777() { |
| 5613 var o = new core.List<core.String>(); | 5613 var o = new core.List<core.String>(); |
| 5614 o.add("foo"); | 5614 o.add("foo"); |
| 5615 o.add("foo"); | 5615 o.add("foo"); |
| 5616 return o; | 5616 return o; |
| 5617 } | 5617 } |
| 5618 | 5618 |
| 5619 checkUnnamed3388(core.List<core.String> o) { | 5619 checkUnnamed777(core.List<core.String> o) { |
| 5620 unittest.expect(o, unittest.hasLength(2)); | 5620 unittest.expect(o, unittest.hasLength(2)); |
| 5621 unittest.expect(o[0], unittest.equals('foo')); | 5621 unittest.expect(o[0], unittest.equals('foo')); |
| 5622 unittest.expect(o[1], unittest.equals('foo')); | 5622 unittest.expect(o[1], unittest.equals('foo')); |
| 5623 } | 5623 } |
| 5624 | 5624 |
| 5625 core.int buildCounterVideoTopicDetails = 0; | 5625 core.int buildCounterVideoTopicDetails = 0; |
| 5626 buildVideoTopicDetails() { | 5626 buildVideoTopicDetails() { |
| 5627 var o = new api.VideoTopicDetails(); | 5627 var o = new api.VideoTopicDetails(); |
| 5628 buildCounterVideoTopicDetails++; | 5628 buildCounterVideoTopicDetails++; |
| 5629 if (buildCounterVideoTopicDetails < 3) { | 5629 if (buildCounterVideoTopicDetails < 3) { |
| 5630 o.relevantTopicIds = buildUnnamed3387(); | 5630 o.relevantTopicIds = buildUnnamed776(); |
| 5631 o.topicIds = buildUnnamed3388(); | 5631 o.topicIds = buildUnnamed777(); |
| 5632 } | 5632 } |
| 5633 buildCounterVideoTopicDetails--; | 5633 buildCounterVideoTopicDetails--; |
| 5634 return o; | 5634 return o; |
| 5635 } | 5635 } |
| 5636 | 5636 |
| 5637 checkVideoTopicDetails(api.VideoTopicDetails o) { | 5637 checkVideoTopicDetails(api.VideoTopicDetails o) { |
| 5638 buildCounterVideoTopicDetails++; | 5638 buildCounterVideoTopicDetails++; |
| 5639 if (buildCounterVideoTopicDetails < 3) { | 5639 if (buildCounterVideoTopicDetails < 3) { |
| 5640 checkUnnamed3387(o.relevantTopicIds); | 5640 checkUnnamed776(o.relevantTopicIds); |
| 5641 checkUnnamed3388(o.topicIds); | 5641 checkUnnamed777(o.topicIds); |
| 5642 } | 5642 } |
| 5643 buildCounterVideoTopicDetails--; | 5643 buildCounterVideoTopicDetails--; |
| 5644 } | 5644 } |
| 5645 | 5645 |
| 5646 core.int buildCounterWatchSettings = 0; | 5646 core.int buildCounterWatchSettings = 0; |
| 5647 buildWatchSettings() { | 5647 buildWatchSettings() { |
| 5648 var o = new api.WatchSettings(); | 5648 var o = new api.WatchSettings(); |
| 5649 buildCounterWatchSettings++; | 5649 buildCounterWatchSettings++; |
| 5650 if (buildCounterWatchSettings < 3) { | 5650 if (buildCounterWatchSettings < 3) { |
| 5651 o.backgroundColor = "foo"; | 5651 o.backgroundColor = "foo"; |
| (...skipping 5516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11168 return new async.Future.value(stringResponse(200, h, resp)); | 11168 return new async.Future.value(stringResponse(200, h, resp)); |
| 11169 }), true); | 11169 }), true); |
| 11170 res.unset(arg_channelId, onBehalfOfContentOwner: arg_onBehalfOfContentOwne
r).then(unittest.expectAsync((_) {})); | 11170 res.unset(arg_channelId, onBehalfOfContentOwner: arg_onBehalfOfContentOwne
r).then(unittest.expectAsync((_) {})); |
| 11171 }); | 11171 }); |
| 11172 | 11172 |
| 11173 }); | 11173 }); |
| 11174 | 11174 |
| 11175 | 11175 |
| 11176 } | 11176 } |
| 11177 | 11177 |
| OLD | NEW |