Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: generated/googleapis/test/youtube/v3_test.dart

Issue 612053002: Api roll 2: 2014-09-29 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Addressed more review comments Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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;
11 import 'package:googleapis/common/common.dart' as common; 11 import 'package:googleapis/common/common.dart' as common;
12 import 'package:googleapis/src/common_internal.dart' as common_internal; 12 import 'package:googleapis/src/common_internal.dart' as common_internal;
13 import '../common/common_internal_test.dart' as common_test; 13 import '../common/common_internal_test.dart' as common_test;
14 14
15 import 'package:googleapis/youtube/v3.dart' as api; 15 import 'package:googleapis/youtube/v3.dart' as api;
16 16
17 17
18 18
19 buildUnnamed364() { 19 buildUnnamed1009() {
20 var o = new core.List<core.String>(); 20 var o = new core.List<core.String>();
21 o.add("foo"); 21 o.add("foo");
22 o.add("foo"); 22 o.add("foo");
23 return o; 23 return o;
24 } 24 }
25 25
26 checkUnnamed364(core.List<core.String> o) { 26 checkUnnamed1009(core.List<core.String> o) {
27 unittest.expect(o, unittest.hasLength(2)); 27 unittest.expect(o, unittest.hasLength(2));
28 unittest.expect(o[0], unittest.equals('foo')); 28 unittest.expect(o[0], unittest.equals('foo'));
29 unittest.expect(o[1], unittest.equals('foo')); 29 unittest.expect(o[1], unittest.equals('foo'));
30 } 30 }
31 31
32 core.int buildCounterAccessPolicy = 0; 32 core.int buildCounterAccessPolicy = 0;
33 buildAccessPolicy() { 33 buildAccessPolicy() {
34 var o = new api.AccessPolicy(); 34 var o = new api.AccessPolicy();
35 buildCounterAccessPolicy++; 35 buildCounterAccessPolicy++;
36 if (buildCounterAccessPolicy < 3) { 36 if (buildCounterAccessPolicy < 3) {
37 o.allowed = true; 37 o.allowed = true;
38 o.exception = buildUnnamed364(); 38 o.exception = buildUnnamed1009();
39 } 39 }
40 buildCounterAccessPolicy--; 40 buildCounterAccessPolicy--;
41 return o; 41 return o;
42 } 42 }
43 43
44 checkAccessPolicy(api.AccessPolicy o) { 44 checkAccessPolicy(api.AccessPolicy o) {
45 buildCounterAccessPolicy++; 45 buildCounterAccessPolicy++;
46 if (buildCounterAccessPolicy < 3) { 46 if (buildCounterAccessPolicy < 3) {
47 unittest.expect(o.allowed, unittest.isTrue); 47 unittest.expect(o.allowed, unittest.isTrue);
48 checkUnnamed364(o.exception); 48 checkUnnamed1009(o.exception);
49 } 49 }
50 buildCounterAccessPolicy--; 50 buildCounterAccessPolicy--;
51 } 51 }
52 52
53 core.int buildCounterActivity = 0; 53 core.int buildCounterActivity = 0;
54 buildActivity() { 54 buildActivity() {
55 var o = new api.Activity(); 55 var o = new api.Activity();
56 buildCounterActivity++; 56 buildCounterActivity++;
57 if (buildCounterActivity < 3) { 57 if (buildCounterActivity < 3) {
58 o.contentDetails = buildActivityContentDetails(); 58 o.contentDetails = buildActivityContentDetails();
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 checkActivityContentDetailsPlaylistItem(api.ActivityContentDetailsPlaylistItem o ) { 227 checkActivityContentDetailsPlaylistItem(api.ActivityContentDetailsPlaylistItem o ) {
228 buildCounterActivityContentDetailsPlaylistItem++; 228 buildCounterActivityContentDetailsPlaylistItem++;
229 if (buildCounterActivityContentDetailsPlaylistItem < 3) { 229 if (buildCounterActivityContentDetailsPlaylistItem < 3) {
230 unittest.expect(o.playlistId, unittest.equals('foo')); 230 unittest.expect(o.playlistId, unittest.equals('foo'));
231 unittest.expect(o.playlistItemId, unittest.equals('foo')); 231 unittest.expect(o.playlistItemId, unittest.equals('foo'));
232 checkResourceId(o.resourceId); 232 checkResourceId(o.resourceId);
233 } 233 }
234 buildCounterActivityContentDetailsPlaylistItem--; 234 buildCounterActivityContentDetailsPlaylistItem--;
235 } 235 }
236 236
237 buildUnnamed365() { 237 buildUnnamed1010() {
238 var o = new core.List<core.String>(); 238 var o = new core.List<core.String>();
239 o.add("foo"); 239 o.add("foo");
240 o.add("foo"); 240 o.add("foo");
241 return o; 241 return o;
242 } 242 }
243 243
244 checkUnnamed365(core.List<core.String> o) { 244 checkUnnamed1010(core.List<core.String> o) {
245 unittest.expect(o, unittest.hasLength(2)); 245 unittest.expect(o, unittest.hasLength(2));
246 unittest.expect(o[0], unittest.equals('foo')); 246 unittest.expect(o[0], unittest.equals('foo'));
247 unittest.expect(o[1], unittest.equals('foo')); 247 unittest.expect(o[1], unittest.equals('foo'));
248 } 248 }
249 249
250 buildUnnamed366() { 250 buildUnnamed1011() {
251 var o = new core.List<core.String>(); 251 var o = new core.List<core.String>();
252 o.add("foo"); 252 o.add("foo");
253 o.add("foo"); 253 o.add("foo");
254 return o; 254 return o;
255 } 255 }
256 256
257 checkUnnamed366(core.List<core.String> o) { 257 checkUnnamed1011(core.List<core.String> o) {
258 unittest.expect(o, unittest.hasLength(2)); 258 unittest.expect(o, unittest.hasLength(2));
259 unittest.expect(o[0], unittest.equals('foo')); 259 unittest.expect(o[0], unittest.equals('foo'));
260 unittest.expect(o[1], unittest.equals('foo')); 260 unittest.expect(o[1], unittest.equals('foo'));
261 } 261 }
262 262
263 core.int buildCounterActivityContentDetailsPromotedItem = 0; 263 core.int buildCounterActivityContentDetailsPromotedItem = 0;
264 buildActivityContentDetailsPromotedItem() { 264 buildActivityContentDetailsPromotedItem() {
265 var o = new api.ActivityContentDetailsPromotedItem(); 265 var o = new api.ActivityContentDetailsPromotedItem();
266 buildCounterActivityContentDetailsPromotedItem++; 266 buildCounterActivityContentDetailsPromotedItem++;
267 if (buildCounterActivityContentDetailsPromotedItem < 3) { 267 if (buildCounterActivityContentDetailsPromotedItem < 3) {
268 o.adTag = "foo"; 268 o.adTag = "foo";
269 o.clickTrackingUrl = "foo"; 269 o.clickTrackingUrl = "foo";
270 o.creativeViewUrl = "foo"; 270 o.creativeViewUrl = "foo";
271 o.ctaType = "foo"; 271 o.ctaType = "foo";
272 o.customCtaButtonText = "foo"; 272 o.customCtaButtonText = "foo";
273 o.descriptionText = "foo"; 273 o.descriptionText = "foo";
274 o.destinationUrl = "foo"; 274 o.destinationUrl = "foo";
275 o.forecastingUrl = buildUnnamed365(); 275 o.forecastingUrl = buildUnnamed1010();
276 o.impressionUrl = buildUnnamed366(); 276 o.impressionUrl = buildUnnamed1011();
277 o.videoId = "foo"; 277 o.videoId = "foo";
278 } 278 }
279 buildCounterActivityContentDetailsPromotedItem--; 279 buildCounterActivityContentDetailsPromotedItem--;
280 return o; 280 return o;
281 } 281 }
282 282
283 checkActivityContentDetailsPromotedItem(api.ActivityContentDetailsPromotedItem o ) { 283 checkActivityContentDetailsPromotedItem(api.ActivityContentDetailsPromotedItem o ) {
284 buildCounterActivityContentDetailsPromotedItem++; 284 buildCounterActivityContentDetailsPromotedItem++;
285 if (buildCounterActivityContentDetailsPromotedItem < 3) { 285 if (buildCounterActivityContentDetailsPromotedItem < 3) {
286 unittest.expect(o.adTag, unittest.equals('foo')); 286 unittest.expect(o.adTag, unittest.equals('foo'));
287 unittest.expect(o.clickTrackingUrl, unittest.equals('foo')); 287 unittest.expect(o.clickTrackingUrl, unittest.equals('foo'));
288 unittest.expect(o.creativeViewUrl, unittest.equals('foo')); 288 unittest.expect(o.creativeViewUrl, unittest.equals('foo'));
289 unittest.expect(o.ctaType, unittest.equals('foo')); 289 unittest.expect(o.ctaType, unittest.equals('foo'));
290 unittest.expect(o.customCtaButtonText, unittest.equals('foo')); 290 unittest.expect(o.customCtaButtonText, unittest.equals('foo'));
291 unittest.expect(o.descriptionText, unittest.equals('foo')); 291 unittest.expect(o.descriptionText, unittest.equals('foo'));
292 unittest.expect(o.destinationUrl, unittest.equals('foo')); 292 unittest.expect(o.destinationUrl, unittest.equals('foo'));
293 checkUnnamed365(o.forecastingUrl); 293 checkUnnamed1010(o.forecastingUrl);
294 checkUnnamed366(o.impressionUrl); 294 checkUnnamed1011(o.impressionUrl);
295 unittest.expect(o.videoId, unittest.equals('foo')); 295 unittest.expect(o.videoId, unittest.equals('foo'));
296 } 296 }
297 buildCounterActivityContentDetailsPromotedItem--; 297 buildCounterActivityContentDetailsPromotedItem--;
298 } 298 }
299 299
300 core.int buildCounterActivityContentDetailsRecommendation = 0; 300 core.int buildCounterActivityContentDetailsRecommendation = 0;
301 buildActivityContentDetailsRecommendation() { 301 buildActivityContentDetailsRecommendation() {
302 var o = new api.ActivityContentDetailsRecommendation(); 302 var o = new api.ActivityContentDetailsRecommendation();
303 buildCounterActivityContentDetailsRecommendation++; 303 buildCounterActivityContentDetailsRecommendation++;
304 if (buildCounterActivityContentDetailsRecommendation < 3) { 304 if (buildCounterActivityContentDetailsRecommendation < 3) {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 } 378 }
379 379
380 checkActivityContentDetailsUpload(api.ActivityContentDetailsUpload o) { 380 checkActivityContentDetailsUpload(api.ActivityContentDetailsUpload o) {
381 buildCounterActivityContentDetailsUpload++; 381 buildCounterActivityContentDetailsUpload++;
382 if (buildCounterActivityContentDetailsUpload < 3) { 382 if (buildCounterActivityContentDetailsUpload < 3) {
383 unittest.expect(o.videoId, unittest.equals('foo')); 383 unittest.expect(o.videoId, unittest.equals('foo'));
384 } 384 }
385 buildCounterActivityContentDetailsUpload--; 385 buildCounterActivityContentDetailsUpload--;
386 } 386 }
387 387
388 buildUnnamed367() { 388 buildUnnamed1012() {
389 var o = new core.List<api.Activity>(); 389 var o = new core.List<api.Activity>();
390 o.add(buildActivity()); 390 o.add(buildActivity());
391 o.add(buildActivity()); 391 o.add(buildActivity());
392 return o; 392 return o;
393 } 393 }
394 394
395 checkUnnamed367(core.List<api.Activity> o) { 395 checkUnnamed1012(core.List<api.Activity> o) {
396 unittest.expect(o, unittest.hasLength(2)); 396 unittest.expect(o, unittest.hasLength(2));
397 checkActivity(o[0]); 397 checkActivity(o[0]);
398 checkActivity(o[1]); 398 checkActivity(o[1]);
399 } 399 }
400 400
401 core.int buildCounterActivityListResponse = 0; 401 core.int buildCounterActivityListResponse = 0;
402 buildActivityListResponse() { 402 buildActivityListResponse() {
403 var o = new api.ActivityListResponse(); 403 var o = new api.ActivityListResponse();
404 buildCounterActivityListResponse++; 404 buildCounterActivityListResponse++;
405 if (buildCounterActivityListResponse < 3) { 405 if (buildCounterActivityListResponse < 3) {
406 o.etag = "foo"; 406 o.etag = "foo";
407 o.eventId = "foo"; 407 o.eventId = "foo";
408 o.items = buildUnnamed367(); 408 o.items = buildUnnamed1012();
409 o.kind = "foo"; 409 o.kind = "foo";
410 o.nextPageToken = "foo"; 410 o.nextPageToken = "foo";
411 o.pageInfo = buildPageInfo(); 411 o.pageInfo = buildPageInfo();
412 o.prevPageToken = "foo"; 412 o.prevPageToken = "foo";
413 o.tokenPagination = buildTokenPagination(); 413 o.tokenPagination = buildTokenPagination();
414 o.visitorId = "foo"; 414 o.visitorId = "foo";
415 } 415 }
416 buildCounterActivityListResponse--; 416 buildCounterActivityListResponse--;
417 return o; 417 return o;
418 } 418 }
419 419
420 checkActivityListResponse(api.ActivityListResponse o) { 420 checkActivityListResponse(api.ActivityListResponse o) {
421 buildCounterActivityListResponse++; 421 buildCounterActivityListResponse++;
422 if (buildCounterActivityListResponse < 3) { 422 if (buildCounterActivityListResponse < 3) {
423 unittest.expect(o.etag, unittest.equals('foo')); 423 unittest.expect(o.etag, unittest.equals('foo'));
424 unittest.expect(o.eventId, unittest.equals('foo')); 424 unittest.expect(o.eventId, unittest.equals('foo'));
425 checkUnnamed367(o.items); 425 checkUnnamed1012(o.items);
426 unittest.expect(o.kind, unittest.equals('foo')); 426 unittest.expect(o.kind, unittest.equals('foo'));
427 unittest.expect(o.nextPageToken, unittest.equals('foo')); 427 unittest.expect(o.nextPageToken, unittest.equals('foo'));
428 checkPageInfo(o.pageInfo); 428 checkPageInfo(o.pageInfo);
429 unittest.expect(o.prevPageToken, unittest.equals('foo')); 429 unittest.expect(o.prevPageToken, unittest.equals('foo'));
430 checkTokenPagination(o.tokenPagination); 430 checkTokenPagination(o.tokenPagination);
431 unittest.expect(o.visitorId, unittest.equals('foo')); 431 unittest.expect(o.visitorId, unittest.equals('foo'));
432 } 432 }
433 buildCounterActivityListResponse--; 433 buildCounterActivityListResponse--;
434 } 434 }
435 435
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 checkChannelBannerResource(api.ChannelBannerResource o) { 573 checkChannelBannerResource(api.ChannelBannerResource o) {
574 buildCounterChannelBannerResource++; 574 buildCounterChannelBannerResource++;
575 if (buildCounterChannelBannerResource < 3) { 575 if (buildCounterChannelBannerResource < 3) {
576 unittest.expect(o.etag, unittest.equals('foo')); 576 unittest.expect(o.etag, unittest.equals('foo'));
577 unittest.expect(o.kind, unittest.equals('foo')); 577 unittest.expect(o.kind, unittest.equals('foo'));
578 unittest.expect(o.url, unittest.equals('foo')); 578 unittest.expect(o.url, unittest.equals('foo'));
579 } 579 }
580 buildCounterChannelBannerResource--; 580 buildCounterChannelBannerResource--;
581 } 581 }
582 582
583 buildUnnamed368() { 583 buildUnnamed1013() {
584 var o = new core.List<api.PropertyValue>(); 584 var o = new core.List<api.PropertyValue>();
585 o.add(buildPropertyValue()); 585 o.add(buildPropertyValue());
586 o.add(buildPropertyValue()); 586 o.add(buildPropertyValue());
587 return o; 587 return o;
588 } 588 }
589 589
590 checkUnnamed368(core.List<api.PropertyValue> o) { 590 checkUnnamed1013(core.List<api.PropertyValue> o) {
591 unittest.expect(o, unittest.hasLength(2)); 591 unittest.expect(o, unittest.hasLength(2));
592 checkPropertyValue(o[0]); 592 checkPropertyValue(o[0]);
593 checkPropertyValue(o[1]); 593 checkPropertyValue(o[1]);
594 } 594 }
595 595
596 core.int buildCounterChannelBrandingSettings = 0; 596 core.int buildCounterChannelBrandingSettings = 0;
597 buildChannelBrandingSettings() { 597 buildChannelBrandingSettings() {
598 var o = new api.ChannelBrandingSettings(); 598 var o = new api.ChannelBrandingSettings();
599 buildCounterChannelBrandingSettings++; 599 buildCounterChannelBrandingSettings++;
600 if (buildCounterChannelBrandingSettings < 3) { 600 if (buildCounterChannelBrandingSettings < 3) {
601 o.channel = buildChannelSettings(); 601 o.channel = buildChannelSettings();
602 o.hints = buildUnnamed368(); 602 o.hints = buildUnnamed1013();
603 o.image = buildImageSettings(); 603 o.image = buildImageSettings();
604 o.watch = buildWatchSettings(); 604 o.watch = buildWatchSettings();
605 } 605 }
606 buildCounterChannelBrandingSettings--; 606 buildCounterChannelBrandingSettings--;
607 return o; 607 return o;
608 } 608 }
609 609
610 checkChannelBrandingSettings(api.ChannelBrandingSettings o) { 610 checkChannelBrandingSettings(api.ChannelBrandingSettings o) {
611 buildCounterChannelBrandingSettings++; 611 buildCounterChannelBrandingSettings++;
612 if (buildCounterChannelBrandingSettings < 3) { 612 if (buildCounterChannelBrandingSettings < 3) {
613 checkChannelSettings(o.channel); 613 checkChannelSettings(o.channel);
614 checkUnnamed368(o.hints); 614 checkUnnamed1013(o.hints);
615 checkImageSettings(o.image); 615 checkImageSettings(o.image);
616 checkWatchSettings(o.watch); 616 checkWatchSettings(o.watch);
617 } 617 }
618 buildCounterChannelBrandingSettings--; 618 buildCounterChannelBrandingSettings--;
619 } 619 }
620 620
621 core.int buildCounterChannelContentDetailsRelatedPlaylists = 0; 621 core.int buildCounterChannelContentDetailsRelatedPlaylists = 0;
622 buildChannelContentDetailsRelatedPlaylists() { 622 buildChannelContentDetailsRelatedPlaylists() {
623 var o = new api.ChannelContentDetailsRelatedPlaylists(); 623 var o = new api.ChannelContentDetailsRelatedPlaylists();
624 buildCounterChannelContentDetailsRelatedPlaylists++; 624 buildCounterChannelContentDetailsRelatedPlaylists++;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 701
702 checkChannelConversionPing(api.ChannelConversionPing o) { 702 checkChannelConversionPing(api.ChannelConversionPing o) {
703 buildCounterChannelConversionPing++; 703 buildCounterChannelConversionPing++;
704 if (buildCounterChannelConversionPing < 3) { 704 if (buildCounterChannelConversionPing < 3) {
705 unittest.expect(o.context, unittest.equals('foo')); 705 unittest.expect(o.context, unittest.equals('foo'));
706 unittest.expect(o.conversionUrl, unittest.equals('foo')); 706 unittest.expect(o.conversionUrl, unittest.equals('foo'));
707 } 707 }
708 buildCounterChannelConversionPing--; 708 buildCounterChannelConversionPing--;
709 } 709 }
710 710
711 buildUnnamed369() { 711 buildUnnamed1014() {
712 var o = new core.List<api.ChannelConversionPing>(); 712 var o = new core.List<api.ChannelConversionPing>();
713 o.add(buildChannelConversionPing()); 713 o.add(buildChannelConversionPing());
714 o.add(buildChannelConversionPing()); 714 o.add(buildChannelConversionPing());
715 return o; 715 return o;
716 } 716 }
717 717
718 checkUnnamed369(core.List<api.ChannelConversionPing> o) { 718 checkUnnamed1014(core.List<api.ChannelConversionPing> o) {
719 unittest.expect(o, unittest.hasLength(2)); 719 unittest.expect(o, unittest.hasLength(2));
720 checkChannelConversionPing(o[0]); 720 checkChannelConversionPing(o[0]);
721 checkChannelConversionPing(o[1]); 721 checkChannelConversionPing(o[1]);
722 } 722 }
723 723
724 core.int buildCounterChannelConversionPings = 0; 724 core.int buildCounterChannelConversionPings = 0;
725 buildChannelConversionPings() { 725 buildChannelConversionPings() {
726 var o = new api.ChannelConversionPings(); 726 var o = new api.ChannelConversionPings();
727 buildCounterChannelConversionPings++; 727 buildCounterChannelConversionPings++;
728 if (buildCounterChannelConversionPings < 3) { 728 if (buildCounterChannelConversionPings < 3) {
729 o.pings = buildUnnamed369(); 729 o.pings = buildUnnamed1014();
730 } 730 }
731 buildCounterChannelConversionPings--; 731 buildCounterChannelConversionPings--;
732 return o; 732 return o;
733 } 733 }
734 734
735 checkChannelConversionPings(api.ChannelConversionPings o) { 735 checkChannelConversionPings(api.ChannelConversionPings o) {
736 buildCounterChannelConversionPings++; 736 buildCounterChannelConversionPings++;
737 if (buildCounterChannelConversionPings < 3) { 737 if (buildCounterChannelConversionPings < 3) {
738 checkUnnamed369(o.pings); 738 checkUnnamed1014(o.pings);
739 } 739 }
740 buildCounterChannelConversionPings--; 740 buildCounterChannelConversionPings--;
741 } 741 }
742 742
743 buildUnnamed370() { 743 buildUnnamed1015() {
744 var o = new core.List<api.Channel>(); 744 var o = new core.List<api.Channel>();
745 o.add(buildChannel()); 745 o.add(buildChannel());
746 o.add(buildChannel()); 746 o.add(buildChannel());
747 return o; 747 return o;
748 } 748 }
749 749
750 checkUnnamed370(core.List<api.Channel> o) { 750 checkUnnamed1015(core.List<api.Channel> o) {
751 unittest.expect(o, unittest.hasLength(2)); 751 unittest.expect(o, unittest.hasLength(2));
752 checkChannel(o[0]); 752 checkChannel(o[0]);
753 checkChannel(o[1]); 753 checkChannel(o[1]);
754 } 754 }
755 755
756 core.int buildCounterChannelListResponse = 0; 756 core.int buildCounterChannelListResponse = 0;
757 buildChannelListResponse() { 757 buildChannelListResponse() {
758 var o = new api.ChannelListResponse(); 758 var o = new api.ChannelListResponse();
759 buildCounterChannelListResponse++; 759 buildCounterChannelListResponse++;
760 if (buildCounterChannelListResponse < 3) { 760 if (buildCounterChannelListResponse < 3) {
761 o.etag = "foo"; 761 o.etag = "foo";
762 o.eventId = "foo"; 762 o.eventId = "foo";
763 o.items = buildUnnamed370(); 763 o.items = buildUnnamed1015();
764 o.kind = "foo"; 764 o.kind = "foo";
765 o.nextPageToken = "foo"; 765 o.nextPageToken = "foo";
766 o.pageInfo = buildPageInfo(); 766 o.pageInfo = buildPageInfo();
767 o.prevPageToken = "foo"; 767 o.prevPageToken = "foo";
768 o.tokenPagination = buildTokenPagination(); 768 o.tokenPagination = buildTokenPagination();
769 o.visitorId = "foo"; 769 o.visitorId = "foo";
770 } 770 }
771 buildCounterChannelListResponse--; 771 buildCounterChannelListResponse--;
772 return o; 772 return o;
773 } 773 }
774 774
775 checkChannelListResponse(api.ChannelListResponse o) { 775 checkChannelListResponse(api.ChannelListResponse o) {
776 buildCounterChannelListResponse++; 776 buildCounterChannelListResponse++;
777 if (buildCounterChannelListResponse < 3) { 777 if (buildCounterChannelListResponse < 3) {
778 unittest.expect(o.etag, unittest.equals('foo')); 778 unittest.expect(o.etag, unittest.equals('foo'));
779 unittest.expect(o.eventId, unittest.equals('foo')); 779 unittest.expect(o.eventId, unittest.equals('foo'));
780 checkUnnamed370(o.items); 780 checkUnnamed1015(o.items);
781 unittest.expect(o.kind, unittest.equals('foo')); 781 unittest.expect(o.kind, unittest.equals('foo'));
782 unittest.expect(o.nextPageToken, unittest.equals('foo')); 782 unittest.expect(o.nextPageToken, unittest.equals('foo'));
783 checkPageInfo(o.pageInfo); 783 checkPageInfo(o.pageInfo);
784 unittest.expect(o.prevPageToken, unittest.equals('foo')); 784 unittest.expect(o.prevPageToken, unittest.equals('foo'));
785 checkTokenPagination(o.tokenPagination); 785 checkTokenPagination(o.tokenPagination);
786 unittest.expect(o.visitorId, unittest.equals('foo')); 786 unittest.expect(o.visitorId, unittest.equals('foo'));
787 } 787 }
788 buildCounterChannelListResponse--; 788 buildCounterChannelListResponse--;
789 } 789 }
790 790
(...skipping 17 matching lines...) Expand all
808 if (buildCounterChannelSection < 3) { 808 if (buildCounterChannelSection < 3) {
809 checkChannelSectionContentDetails(o.contentDetails); 809 checkChannelSectionContentDetails(o.contentDetails);
810 unittest.expect(o.etag, unittest.equals('foo')); 810 unittest.expect(o.etag, unittest.equals('foo'));
811 unittest.expect(o.id, unittest.equals('foo')); 811 unittest.expect(o.id, unittest.equals('foo'));
812 unittest.expect(o.kind, unittest.equals('foo')); 812 unittest.expect(o.kind, unittest.equals('foo'));
813 checkChannelSectionSnippet(o.snippet); 813 checkChannelSectionSnippet(o.snippet);
814 } 814 }
815 buildCounterChannelSection--; 815 buildCounterChannelSection--;
816 } 816 }
817 817
818 buildUnnamed371() { 818 buildUnnamed1016() {
819 var o = new core.List<core.String>(); 819 var o = new core.List<core.String>();
820 o.add("foo"); 820 o.add("foo");
821 o.add("foo"); 821 o.add("foo");
822 return o; 822 return o;
823 } 823 }
824 824
825 checkUnnamed371(core.List<core.String> o) { 825 checkUnnamed1016(core.List<core.String> o) {
826 unittest.expect(o, unittest.hasLength(2)); 826 unittest.expect(o, unittest.hasLength(2));
827 unittest.expect(o[0], unittest.equals('foo')); 827 unittest.expect(o[0], unittest.equals('foo'));
828 unittest.expect(o[1], unittest.equals('foo')); 828 unittest.expect(o[1], unittest.equals('foo'));
829 } 829 }
830 830
831 buildUnnamed372() { 831 buildUnnamed1017() {
832 var o = new core.List<core.String>(); 832 var o = new core.List<core.String>();
833 o.add("foo"); 833 o.add("foo");
834 o.add("foo"); 834 o.add("foo");
835 return o; 835 return o;
836 } 836 }
837 837
838 checkUnnamed372(core.List<core.String> o) { 838 checkUnnamed1017(core.List<core.String> o) {
839 unittest.expect(o, unittest.hasLength(2)); 839 unittest.expect(o, unittest.hasLength(2));
840 unittest.expect(o[0], unittest.equals('foo')); 840 unittest.expect(o[0], unittest.equals('foo'));
841 unittest.expect(o[1], unittest.equals('foo')); 841 unittest.expect(o[1], unittest.equals('foo'));
842 } 842 }
843 843
844 core.int buildCounterChannelSectionContentDetails = 0; 844 core.int buildCounterChannelSectionContentDetails = 0;
845 buildChannelSectionContentDetails() { 845 buildChannelSectionContentDetails() {
846 var o = new api.ChannelSectionContentDetails(); 846 var o = new api.ChannelSectionContentDetails();
847 buildCounterChannelSectionContentDetails++; 847 buildCounterChannelSectionContentDetails++;
848 if (buildCounterChannelSectionContentDetails < 3) { 848 if (buildCounterChannelSectionContentDetails < 3) {
849 o.channels = buildUnnamed371(); 849 o.channels = buildUnnamed1016();
850 o.playlists = buildUnnamed372(); 850 o.playlists = buildUnnamed1017();
851 } 851 }
852 buildCounterChannelSectionContentDetails--; 852 buildCounterChannelSectionContentDetails--;
853 return o; 853 return o;
854 } 854 }
855 855
856 checkChannelSectionContentDetails(api.ChannelSectionContentDetails o) { 856 checkChannelSectionContentDetails(api.ChannelSectionContentDetails o) {
857 buildCounterChannelSectionContentDetails++; 857 buildCounterChannelSectionContentDetails++;
858 if (buildCounterChannelSectionContentDetails < 3) { 858 if (buildCounterChannelSectionContentDetails < 3) {
859 checkUnnamed371(o.channels); 859 checkUnnamed1016(o.channels);
860 checkUnnamed372(o.playlists); 860 checkUnnamed1017(o.playlists);
861 } 861 }
862 buildCounterChannelSectionContentDetails--; 862 buildCounterChannelSectionContentDetails--;
863 } 863 }
864 864
865 buildUnnamed373() { 865 buildUnnamed1018() {
866 var o = new core.List<api.ChannelSection>(); 866 var o = new core.List<api.ChannelSection>();
867 o.add(buildChannelSection()); 867 o.add(buildChannelSection());
868 o.add(buildChannelSection()); 868 o.add(buildChannelSection());
869 return o; 869 return o;
870 } 870 }
871 871
872 checkUnnamed373(core.List<api.ChannelSection> o) { 872 checkUnnamed1018(core.List<api.ChannelSection> o) {
873 unittest.expect(o, unittest.hasLength(2)); 873 unittest.expect(o, unittest.hasLength(2));
874 checkChannelSection(o[0]); 874 checkChannelSection(o[0]);
875 checkChannelSection(o[1]); 875 checkChannelSection(o[1]);
876 } 876 }
877 877
878 core.int buildCounterChannelSectionListResponse = 0; 878 core.int buildCounterChannelSectionListResponse = 0;
879 buildChannelSectionListResponse() { 879 buildChannelSectionListResponse() {
880 var o = new api.ChannelSectionListResponse(); 880 var o = new api.ChannelSectionListResponse();
881 buildCounterChannelSectionListResponse++; 881 buildCounterChannelSectionListResponse++;
882 if (buildCounterChannelSectionListResponse < 3) { 882 if (buildCounterChannelSectionListResponse < 3) {
883 o.etag = "foo"; 883 o.etag = "foo";
884 o.eventId = "foo"; 884 o.eventId = "foo";
885 o.items = buildUnnamed373(); 885 o.items = buildUnnamed1018();
886 o.kind = "foo"; 886 o.kind = "foo";
887 o.visitorId = "foo"; 887 o.visitorId = "foo";
888 } 888 }
889 buildCounterChannelSectionListResponse--; 889 buildCounterChannelSectionListResponse--;
890 return o; 890 return o;
891 } 891 }
892 892
893 checkChannelSectionListResponse(api.ChannelSectionListResponse o) { 893 checkChannelSectionListResponse(api.ChannelSectionListResponse o) {
894 buildCounterChannelSectionListResponse++; 894 buildCounterChannelSectionListResponse++;
895 if (buildCounterChannelSectionListResponse < 3) { 895 if (buildCounterChannelSectionListResponse < 3) {
896 unittest.expect(o.etag, unittest.equals('foo')); 896 unittest.expect(o.etag, unittest.equals('foo'));
897 unittest.expect(o.eventId, unittest.equals('foo')); 897 unittest.expect(o.eventId, unittest.equals('foo'));
898 checkUnnamed373(o.items); 898 checkUnnamed1018(o.items);
899 unittest.expect(o.kind, unittest.equals('foo')); 899 unittest.expect(o.kind, unittest.equals('foo'));
900 unittest.expect(o.visitorId, unittest.equals('foo')); 900 unittest.expect(o.visitorId, unittest.equals('foo'));
901 } 901 }
902 buildCounterChannelSectionListResponse--; 902 buildCounterChannelSectionListResponse--;
903 } 903 }
904 904
905 core.int buildCounterChannelSectionSnippet = 0; 905 core.int buildCounterChannelSectionSnippet = 0;
906 buildChannelSectionSnippet() { 906 buildChannelSectionSnippet() {
907 var o = new api.ChannelSectionSnippet(); 907 var o = new api.ChannelSectionSnippet();
908 buildCounterChannelSectionSnippet++; 908 buildCounterChannelSectionSnippet++;
(...skipping 13 matching lines...) Expand all
922 if (buildCounterChannelSectionSnippet < 3) { 922 if (buildCounterChannelSectionSnippet < 3) {
923 unittest.expect(o.channelId, unittest.equals('foo')); 923 unittest.expect(o.channelId, unittest.equals('foo'));
924 unittest.expect(o.position, unittest.equals(42)); 924 unittest.expect(o.position, unittest.equals(42));
925 unittest.expect(o.style, unittest.equals('foo')); 925 unittest.expect(o.style, unittest.equals('foo'));
926 unittest.expect(o.title, unittest.equals('foo')); 926 unittest.expect(o.title, unittest.equals('foo'));
927 unittest.expect(o.type, unittest.equals('foo')); 927 unittest.expect(o.type, unittest.equals('foo'));
928 } 928 }
929 buildCounterChannelSectionSnippet--; 929 buildCounterChannelSectionSnippet--;
930 } 930 }
931 931
932 buildUnnamed374() { 932 buildUnnamed1019() {
933 var o = new core.List<core.String>(); 933 var o = new core.List<core.String>();
934 o.add("foo"); 934 o.add("foo");
935 o.add("foo"); 935 o.add("foo");
936 return o; 936 return o;
937 } 937 }
938 938
939 checkUnnamed374(core.List<core.String> o) { 939 checkUnnamed1019(core.List<core.String> o) {
940 unittest.expect(o, unittest.hasLength(2)); 940 unittest.expect(o, unittest.hasLength(2));
941 unittest.expect(o[0], unittest.equals('foo')); 941 unittest.expect(o[0], unittest.equals('foo'));
942 unittest.expect(o[1], unittest.equals('foo')); 942 unittest.expect(o[1], unittest.equals('foo'));
943 } 943 }
944 944
945 core.int buildCounterChannelSettings = 0; 945 core.int buildCounterChannelSettings = 0;
946 buildChannelSettings() { 946 buildChannelSettings() {
947 var o = new api.ChannelSettings(); 947 var o = new api.ChannelSettings();
948 buildCounterChannelSettings++; 948 buildCounterChannelSettings++;
949 if (buildCounterChannelSettings < 3) { 949 if (buildCounterChannelSettings < 3) {
950 o.defaultTab = "foo"; 950 o.defaultTab = "foo";
951 o.description = "foo"; 951 o.description = "foo";
952 o.featuredChannelsTitle = "foo"; 952 o.featuredChannelsTitle = "foo";
953 o.featuredChannelsUrls = buildUnnamed374(); 953 o.featuredChannelsUrls = buildUnnamed1019();
954 o.keywords = "foo"; 954 o.keywords = "foo";
955 o.moderateComments = true; 955 o.moderateComments = true;
956 o.profileColor = "foo"; 956 o.profileColor = "foo";
957 o.showBrowseView = true; 957 o.showBrowseView = true;
958 o.showRelatedChannels = true; 958 o.showRelatedChannels = true;
959 o.title = "foo"; 959 o.title = "foo";
960 o.trackingAnalyticsAccountId = "foo"; 960 o.trackingAnalyticsAccountId = "foo";
961 o.unsubscribedTrailer = "foo"; 961 o.unsubscribedTrailer = "foo";
962 } 962 }
963 buildCounterChannelSettings--; 963 buildCounterChannelSettings--;
964 return o; 964 return o;
965 } 965 }
966 966
967 checkChannelSettings(api.ChannelSettings o) { 967 checkChannelSettings(api.ChannelSettings o) {
968 buildCounterChannelSettings++; 968 buildCounterChannelSettings++;
969 if (buildCounterChannelSettings < 3) { 969 if (buildCounterChannelSettings < 3) {
970 unittest.expect(o.defaultTab, unittest.equals('foo')); 970 unittest.expect(o.defaultTab, unittest.equals('foo'));
971 unittest.expect(o.description, unittest.equals('foo')); 971 unittest.expect(o.description, unittest.equals('foo'));
972 unittest.expect(o.featuredChannelsTitle, unittest.equals('foo')); 972 unittest.expect(o.featuredChannelsTitle, unittest.equals('foo'));
973 checkUnnamed374(o.featuredChannelsUrls); 973 checkUnnamed1019(o.featuredChannelsUrls);
974 unittest.expect(o.keywords, unittest.equals('foo')); 974 unittest.expect(o.keywords, unittest.equals('foo'));
975 unittest.expect(o.moderateComments, unittest.isTrue); 975 unittest.expect(o.moderateComments, unittest.isTrue);
976 unittest.expect(o.profileColor, unittest.equals('foo')); 976 unittest.expect(o.profileColor, unittest.equals('foo'));
977 unittest.expect(o.showBrowseView, unittest.isTrue); 977 unittest.expect(o.showBrowseView, unittest.isTrue);
978 unittest.expect(o.showRelatedChannels, unittest.isTrue); 978 unittest.expect(o.showRelatedChannels, unittest.isTrue);
979 unittest.expect(o.title, unittest.equals('foo')); 979 unittest.expect(o.title, unittest.equals('foo'));
980 unittest.expect(o.trackingAnalyticsAccountId, unittest.equals('foo')); 980 unittest.expect(o.trackingAnalyticsAccountId, unittest.equals('foo'));
981 unittest.expect(o.unsubscribedTrailer, unittest.equals('foo')); 981 unittest.expect(o.unsubscribedTrailer, unittest.equals('foo'));
982 } 982 }
983 buildCounterChannelSettings--; 983 buildCounterChannelSettings--;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 } 1034 }
1035 buildCounterChannelStatistics--; 1035 buildCounterChannelStatistics--;
1036 } 1036 }
1037 1037
1038 core.int buildCounterChannelStatus = 0; 1038 core.int buildCounterChannelStatus = 0;
1039 buildChannelStatus() { 1039 buildChannelStatus() {
1040 var o = new api.ChannelStatus(); 1040 var o = new api.ChannelStatus();
1041 buildCounterChannelStatus++; 1041 buildCounterChannelStatus++;
1042 if (buildCounterChannelStatus < 3) { 1042 if (buildCounterChannelStatus < 3) {
1043 o.isLinked = true; 1043 o.isLinked = true;
1044 o.longUploadsStatus = "foo";
1044 o.privacyStatus = "foo"; 1045 o.privacyStatus = "foo";
1045 } 1046 }
1046 buildCounterChannelStatus--; 1047 buildCounterChannelStatus--;
1047 return o; 1048 return o;
1048 } 1049 }
1049 1050
1050 checkChannelStatus(api.ChannelStatus o) { 1051 checkChannelStatus(api.ChannelStatus o) {
1051 buildCounterChannelStatus++; 1052 buildCounterChannelStatus++;
1052 if (buildCounterChannelStatus < 3) { 1053 if (buildCounterChannelStatus < 3) {
1053 unittest.expect(o.isLinked, unittest.isTrue); 1054 unittest.expect(o.isLinked, unittest.isTrue);
1055 unittest.expect(o.longUploadsStatus, unittest.equals('foo'));
1054 unittest.expect(o.privacyStatus, unittest.equals('foo')); 1056 unittest.expect(o.privacyStatus, unittest.equals('foo'));
1055 } 1057 }
1056 buildCounterChannelStatus--; 1058 buildCounterChannelStatus--;
1057 } 1059 }
1058 1060
1059 buildUnnamed375() { 1061 buildUnnamed1020() {
1060 var o = new core.List<core.String>(); 1062 var o = new core.List<core.String>();
1061 o.add("foo"); 1063 o.add("foo");
1062 o.add("foo"); 1064 o.add("foo");
1063 return o; 1065 return o;
1064 } 1066 }
1065 1067
1066 checkUnnamed375(core.List<core.String> o) { 1068 checkUnnamed1020(core.List<core.String> o) {
1067 unittest.expect(o, unittest.hasLength(2)); 1069 unittest.expect(o, unittest.hasLength(2));
1068 unittest.expect(o[0], unittest.equals('foo')); 1070 unittest.expect(o[0], unittest.equals('foo'));
1069 unittest.expect(o[1], unittest.equals('foo')); 1071 unittest.expect(o[1], unittest.equals('foo'));
1070 } 1072 }
1071 1073
1072 core.int buildCounterChannelTopicDetails = 0; 1074 core.int buildCounterChannelTopicDetails = 0;
1073 buildChannelTopicDetails() { 1075 buildChannelTopicDetails() {
1074 var o = new api.ChannelTopicDetails(); 1076 var o = new api.ChannelTopicDetails();
1075 buildCounterChannelTopicDetails++; 1077 buildCounterChannelTopicDetails++;
1076 if (buildCounterChannelTopicDetails < 3) { 1078 if (buildCounterChannelTopicDetails < 3) {
1077 o.topicIds = buildUnnamed375(); 1079 o.topicIds = buildUnnamed1020();
1078 } 1080 }
1079 buildCounterChannelTopicDetails--; 1081 buildCounterChannelTopicDetails--;
1080 return o; 1082 return o;
1081 } 1083 }
1082 1084
1083 checkChannelTopicDetails(api.ChannelTopicDetails o) { 1085 checkChannelTopicDetails(api.ChannelTopicDetails o) {
1084 buildCounterChannelTopicDetails++; 1086 buildCounterChannelTopicDetails++;
1085 if (buildCounterChannelTopicDetails < 3) { 1087 if (buildCounterChannelTopicDetails < 3) {
1086 checkUnnamed375(o.topicIds); 1088 checkUnnamed1020(o.topicIds);
1087 } 1089 }
1088 buildCounterChannelTopicDetails--; 1090 buildCounterChannelTopicDetails--;
1089 } 1091 }
1090 1092
1091 core.int buildCounterContentRating = 0; 1093 core.int buildCounterContentRating = 0;
1092 buildContentRating() { 1094 buildContentRating() {
1093 var o = new api.ContentRating(); 1095 var o = new api.ContentRating();
1094 buildCounterContentRating++; 1096 buildCounterContentRating++;
1095 if (buildCounterContentRating < 3) { 1097 if (buildCounterContentRating < 3) {
1096 o.acbRating = "foo"; 1098 o.acbRating = "foo";
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
1272 buildCounterGuideCategory++; 1274 buildCounterGuideCategory++;
1273 if (buildCounterGuideCategory < 3) { 1275 if (buildCounterGuideCategory < 3) {
1274 unittest.expect(o.etag, unittest.equals('foo')); 1276 unittest.expect(o.etag, unittest.equals('foo'));
1275 unittest.expect(o.id, unittest.equals('foo')); 1277 unittest.expect(o.id, unittest.equals('foo'));
1276 unittest.expect(o.kind, unittest.equals('foo')); 1278 unittest.expect(o.kind, unittest.equals('foo'));
1277 checkGuideCategorySnippet(o.snippet); 1279 checkGuideCategorySnippet(o.snippet);
1278 } 1280 }
1279 buildCounterGuideCategory--; 1281 buildCounterGuideCategory--;
1280 } 1282 }
1281 1283
1282 buildUnnamed376() { 1284 buildUnnamed1021() {
1283 var o = new core.List<api.GuideCategory>(); 1285 var o = new core.List<api.GuideCategory>();
1284 o.add(buildGuideCategory()); 1286 o.add(buildGuideCategory());
1285 o.add(buildGuideCategory()); 1287 o.add(buildGuideCategory());
1286 return o; 1288 return o;
1287 } 1289 }
1288 1290
1289 checkUnnamed376(core.List<api.GuideCategory> o) { 1291 checkUnnamed1021(core.List<api.GuideCategory> o) {
1290 unittest.expect(o, unittest.hasLength(2)); 1292 unittest.expect(o, unittest.hasLength(2));
1291 checkGuideCategory(o[0]); 1293 checkGuideCategory(o[0]);
1292 checkGuideCategory(o[1]); 1294 checkGuideCategory(o[1]);
1293 } 1295 }
1294 1296
1295 core.int buildCounterGuideCategoryListResponse = 0; 1297 core.int buildCounterGuideCategoryListResponse = 0;
1296 buildGuideCategoryListResponse() { 1298 buildGuideCategoryListResponse() {
1297 var o = new api.GuideCategoryListResponse(); 1299 var o = new api.GuideCategoryListResponse();
1298 buildCounterGuideCategoryListResponse++; 1300 buildCounterGuideCategoryListResponse++;
1299 if (buildCounterGuideCategoryListResponse < 3) { 1301 if (buildCounterGuideCategoryListResponse < 3) {
1300 o.etag = "foo"; 1302 o.etag = "foo";
1301 o.eventId = "foo"; 1303 o.eventId = "foo";
1302 o.items = buildUnnamed376(); 1304 o.items = buildUnnamed1021();
1303 o.kind = "foo"; 1305 o.kind = "foo";
1304 o.nextPageToken = "foo"; 1306 o.nextPageToken = "foo";
1305 o.pageInfo = buildPageInfo(); 1307 o.pageInfo = buildPageInfo();
1306 o.prevPageToken = "foo"; 1308 o.prevPageToken = "foo";
1307 o.tokenPagination = buildTokenPagination(); 1309 o.tokenPagination = buildTokenPagination();
1308 o.visitorId = "foo"; 1310 o.visitorId = "foo";
1309 } 1311 }
1310 buildCounterGuideCategoryListResponse--; 1312 buildCounterGuideCategoryListResponse--;
1311 return o; 1313 return o;
1312 } 1314 }
1313 1315
1314 checkGuideCategoryListResponse(api.GuideCategoryListResponse o) { 1316 checkGuideCategoryListResponse(api.GuideCategoryListResponse o) {
1315 buildCounterGuideCategoryListResponse++; 1317 buildCounterGuideCategoryListResponse++;
1316 if (buildCounterGuideCategoryListResponse < 3) { 1318 if (buildCounterGuideCategoryListResponse < 3) {
1317 unittest.expect(o.etag, unittest.equals('foo')); 1319 unittest.expect(o.etag, unittest.equals('foo'));
1318 unittest.expect(o.eventId, unittest.equals('foo')); 1320 unittest.expect(o.eventId, unittest.equals('foo'));
1319 checkUnnamed376(o.items); 1321 checkUnnamed1021(o.items);
1320 unittest.expect(o.kind, unittest.equals('foo')); 1322 unittest.expect(o.kind, unittest.equals('foo'));
1321 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1323 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1322 checkPageInfo(o.pageInfo); 1324 checkPageInfo(o.pageInfo);
1323 unittest.expect(o.prevPageToken, unittest.equals('foo')); 1325 unittest.expect(o.prevPageToken, unittest.equals('foo'));
1324 checkTokenPagination(o.tokenPagination); 1326 checkTokenPagination(o.tokenPagination);
1325 unittest.expect(o.visitorId, unittest.equals('foo')); 1327 unittest.expect(o.visitorId, unittest.equals('foo'));
1326 } 1328 }
1327 buildCounterGuideCategoryListResponse--; 1329 buildCounterGuideCategoryListResponse--;
1328 } 1330 }
1329 1331
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
1366 buildCounterI18nLanguage++; 1368 buildCounterI18nLanguage++;
1367 if (buildCounterI18nLanguage < 3) { 1369 if (buildCounterI18nLanguage < 3) {
1368 unittest.expect(o.etag, unittest.equals('foo')); 1370 unittest.expect(o.etag, unittest.equals('foo'));
1369 unittest.expect(o.id, unittest.equals('foo')); 1371 unittest.expect(o.id, unittest.equals('foo'));
1370 unittest.expect(o.kind, unittest.equals('foo')); 1372 unittest.expect(o.kind, unittest.equals('foo'));
1371 checkI18nLanguageSnippet(o.snippet); 1373 checkI18nLanguageSnippet(o.snippet);
1372 } 1374 }
1373 buildCounterI18nLanguage--; 1375 buildCounterI18nLanguage--;
1374 } 1376 }
1375 1377
1376 buildUnnamed377() { 1378 buildUnnamed1022() {
1377 var o = new core.List<api.I18nLanguage>(); 1379 var o = new core.List<api.I18nLanguage>();
1378 o.add(buildI18nLanguage()); 1380 o.add(buildI18nLanguage());
1379 o.add(buildI18nLanguage()); 1381 o.add(buildI18nLanguage());
1380 return o; 1382 return o;
1381 } 1383 }
1382 1384
1383 checkUnnamed377(core.List<api.I18nLanguage> o) { 1385 checkUnnamed1022(core.List<api.I18nLanguage> o) {
1384 unittest.expect(o, unittest.hasLength(2)); 1386 unittest.expect(o, unittest.hasLength(2));
1385 checkI18nLanguage(o[0]); 1387 checkI18nLanguage(o[0]);
1386 checkI18nLanguage(o[1]); 1388 checkI18nLanguage(o[1]);
1387 } 1389 }
1388 1390
1389 core.int buildCounterI18nLanguageListResponse = 0; 1391 core.int buildCounterI18nLanguageListResponse = 0;
1390 buildI18nLanguageListResponse() { 1392 buildI18nLanguageListResponse() {
1391 var o = new api.I18nLanguageListResponse(); 1393 var o = new api.I18nLanguageListResponse();
1392 buildCounterI18nLanguageListResponse++; 1394 buildCounterI18nLanguageListResponse++;
1393 if (buildCounterI18nLanguageListResponse < 3) { 1395 if (buildCounterI18nLanguageListResponse < 3) {
1394 o.etag = "foo"; 1396 o.etag = "foo";
1395 o.eventId = "foo"; 1397 o.eventId = "foo";
1396 o.items = buildUnnamed377(); 1398 o.items = buildUnnamed1022();
1397 o.kind = "foo"; 1399 o.kind = "foo";
1398 o.visitorId = "foo"; 1400 o.visitorId = "foo";
1399 } 1401 }
1400 buildCounterI18nLanguageListResponse--; 1402 buildCounterI18nLanguageListResponse--;
1401 return o; 1403 return o;
1402 } 1404 }
1403 1405
1404 checkI18nLanguageListResponse(api.I18nLanguageListResponse o) { 1406 checkI18nLanguageListResponse(api.I18nLanguageListResponse o) {
1405 buildCounterI18nLanguageListResponse++; 1407 buildCounterI18nLanguageListResponse++;
1406 if (buildCounterI18nLanguageListResponse < 3) { 1408 if (buildCounterI18nLanguageListResponse < 3) {
1407 unittest.expect(o.etag, unittest.equals('foo')); 1409 unittest.expect(o.etag, unittest.equals('foo'));
1408 unittest.expect(o.eventId, unittest.equals('foo')); 1410 unittest.expect(o.eventId, unittest.equals('foo'));
1409 checkUnnamed377(o.items); 1411 checkUnnamed1022(o.items);
1410 unittest.expect(o.kind, unittest.equals('foo')); 1412 unittest.expect(o.kind, unittest.equals('foo'));
1411 unittest.expect(o.visitorId, unittest.equals('foo')); 1413 unittest.expect(o.visitorId, unittest.equals('foo'));
1412 } 1414 }
1413 buildCounterI18nLanguageListResponse--; 1415 buildCounterI18nLanguageListResponse--;
1414 } 1416 }
1415 1417
1416 core.int buildCounterI18nLanguageSnippet = 0; 1418 core.int buildCounterI18nLanguageSnippet = 0;
1417 buildI18nLanguageSnippet() { 1419 buildI18nLanguageSnippet() {
1418 var o = new api.I18nLanguageSnippet(); 1420 var o = new api.I18nLanguageSnippet();
1419 buildCounterI18nLanguageSnippet++; 1421 buildCounterI18nLanguageSnippet++;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1452 buildCounterI18nRegion++; 1454 buildCounterI18nRegion++;
1453 if (buildCounterI18nRegion < 3) { 1455 if (buildCounterI18nRegion < 3) {
1454 unittest.expect(o.etag, unittest.equals('foo')); 1456 unittest.expect(o.etag, unittest.equals('foo'));
1455 unittest.expect(o.id, unittest.equals('foo')); 1457 unittest.expect(o.id, unittest.equals('foo'));
1456 unittest.expect(o.kind, unittest.equals('foo')); 1458 unittest.expect(o.kind, unittest.equals('foo'));
1457 checkI18nRegionSnippet(o.snippet); 1459 checkI18nRegionSnippet(o.snippet);
1458 } 1460 }
1459 buildCounterI18nRegion--; 1461 buildCounterI18nRegion--;
1460 } 1462 }
1461 1463
1462 buildUnnamed378() { 1464 buildUnnamed1023() {
1463 var o = new core.List<api.I18nRegion>(); 1465 var o = new core.List<api.I18nRegion>();
1464 o.add(buildI18nRegion()); 1466 o.add(buildI18nRegion());
1465 o.add(buildI18nRegion()); 1467 o.add(buildI18nRegion());
1466 return o; 1468 return o;
1467 } 1469 }
1468 1470
1469 checkUnnamed378(core.List<api.I18nRegion> o) { 1471 checkUnnamed1023(core.List<api.I18nRegion> o) {
1470 unittest.expect(o, unittest.hasLength(2)); 1472 unittest.expect(o, unittest.hasLength(2));
1471 checkI18nRegion(o[0]); 1473 checkI18nRegion(o[0]);
1472 checkI18nRegion(o[1]); 1474 checkI18nRegion(o[1]);
1473 } 1475 }
1474 1476
1475 core.int buildCounterI18nRegionListResponse = 0; 1477 core.int buildCounterI18nRegionListResponse = 0;
1476 buildI18nRegionListResponse() { 1478 buildI18nRegionListResponse() {
1477 var o = new api.I18nRegionListResponse(); 1479 var o = new api.I18nRegionListResponse();
1478 buildCounterI18nRegionListResponse++; 1480 buildCounterI18nRegionListResponse++;
1479 if (buildCounterI18nRegionListResponse < 3) { 1481 if (buildCounterI18nRegionListResponse < 3) {
1480 o.etag = "foo"; 1482 o.etag = "foo";
1481 o.eventId = "foo"; 1483 o.eventId = "foo";
1482 o.items = buildUnnamed378(); 1484 o.items = buildUnnamed1023();
1483 o.kind = "foo"; 1485 o.kind = "foo";
1484 o.visitorId = "foo"; 1486 o.visitorId = "foo";
1485 } 1487 }
1486 buildCounterI18nRegionListResponse--; 1488 buildCounterI18nRegionListResponse--;
1487 return o; 1489 return o;
1488 } 1490 }
1489 1491
1490 checkI18nRegionListResponse(api.I18nRegionListResponse o) { 1492 checkI18nRegionListResponse(api.I18nRegionListResponse o) {
1491 buildCounterI18nRegionListResponse++; 1493 buildCounterI18nRegionListResponse++;
1492 if (buildCounterI18nRegionListResponse < 3) { 1494 if (buildCounterI18nRegionListResponse < 3) {
1493 unittest.expect(o.etag, unittest.equals('foo')); 1495 unittest.expect(o.etag, unittest.equals('foo'));
1494 unittest.expect(o.eventId, unittest.equals('foo')); 1496 unittest.expect(o.eventId, unittest.equals('foo'));
1495 checkUnnamed378(o.items); 1497 checkUnnamed1023(o.items);
1496 unittest.expect(o.kind, unittest.equals('foo')); 1498 unittest.expect(o.kind, unittest.equals('foo'));
1497 unittest.expect(o.visitorId, unittest.equals('foo')); 1499 unittest.expect(o.visitorId, unittest.equals('foo'));
1498 } 1500 }
1499 buildCounterI18nRegionListResponse--; 1501 buildCounterI18nRegionListResponse--;
1500 } 1502 }
1501 1503
1502 core.int buildCounterI18nRegionSnippet = 0; 1504 core.int buildCounterI18nRegionSnippet = 0;
1503 buildI18nRegionSnippet() { 1505 buildI18nRegionSnippet() {
1504 var o = new api.I18nRegionSnippet(); 1506 var o = new api.I18nRegionSnippet();
1505 buildCounterI18nRegionSnippet++; 1507 buildCounterI18nRegionSnippet++;
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1645 1647
1646 checkInvideoPosition(api.InvideoPosition o) { 1648 checkInvideoPosition(api.InvideoPosition o) {
1647 buildCounterInvideoPosition++; 1649 buildCounterInvideoPosition++;
1648 if (buildCounterInvideoPosition < 3) { 1650 if (buildCounterInvideoPosition < 3) {
1649 unittest.expect(o.cornerPosition, unittest.equals('foo')); 1651 unittest.expect(o.cornerPosition, unittest.equals('foo'));
1650 unittest.expect(o.type, unittest.equals('foo')); 1652 unittest.expect(o.type, unittest.equals('foo'));
1651 } 1653 }
1652 buildCounterInvideoPosition--; 1654 buildCounterInvideoPosition--;
1653 } 1655 }
1654 1656
1655 buildUnnamed379() { 1657 buildUnnamed1024() {
1656 var o = new core.List<api.PromotedItem>(); 1658 var o = new core.List<api.PromotedItem>();
1657 o.add(buildPromotedItem()); 1659 o.add(buildPromotedItem());
1658 o.add(buildPromotedItem()); 1660 o.add(buildPromotedItem());
1659 return o; 1661 return o;
1660 } 1662 }
1661 1663
1662 checkUnnamed379(core.List<api.PromotedItem> o) { 1664 checkUnnamed1024(core.List<api.PromotedItem> o) {
1663 unittest.expect(o, unittest.hasLength(2)); 1665 unittest.expect(o, unittest.hasLength(2));
1664 checkPromotedItem(o[0]); 1666 checkPromotedItem(o[0]);
1665 checkPromotedItem(o[1]); 1667 checkPromotedItem(o[1]);
1666 } 1668 }
1667 1669
1668 core.int buildCounterInvideoPromotion = 0; 1670 core.int buildCounterInvideoPromotion = 0;
1669 buildInvideoPromotion() { 1671 buildInvideoPromotion() {
1670 var o = new api.InvideoPromotion(); 1672 var o = new api.InvideoPromotion();
1671 buildCounterInvideoPromotion++; 1673 buildCounterInvideoPromotion++;
1672 if (buildCounterInvideoPromotion < 3) { 1674 if (buildCounterInvideoPromotion < 3) {
1673 o.defaultTiming = buildInvideoTiming(); 1675 o.defaultTiming = buildInvideoTiming();
1674 o.items = buildUnnamed379(); 1676 o.items = buildUnnamed1024();
1675 o.position = buildInvideoPosition(); 1677 o.position = buildInvideoPosition();
1678 o.useSmartTiming = true;
1676 } 1679 }
1677 buildCounterInvideoPromotion--; 1680 buildCounterInvideoPromotion--;
1678 return o; 1681 return o;
1679 } 1682 }
1680 1683
1681 checkInvideoPromotion(api.InvideoPromotion o) { 1684 checkInvideoPromotion(api.InvideoPromotion o) {
1682 buildCounterInvideoPromotion++; 1685 buildCounterInvideoPromotion++;
1683 if (buildCounterInvideoPromotion < 3) { 1686 if (buildCounterInvideoPromotion < 3) {
1684 checkInvideoTiming(o.defaultTiming); 1687 checkInvideoTiming(o.defaultTiming);
1685 checkUnnamed379(o.items); 1688 checkUnnamed1024(o.items);
1686 checkInvideoPosition(o.position); 1689 checkInvideoPosition(o.position);
1690 unittest.expect(o.useSmartTiming, unittest.isTrue);
1687 } 1691 }
1688 buildCounterInvideoPromotion--; 1692 buildCounterInvideoPromotion--;
1689 } 1693 }
1690 1694
1691 core.int buildCounterInvideoTiming = 0; 1695 core.int buildCounterInvideoTiming = 0;
1692 buildInvideoTiming() { 1696 buildInvideoTiming() {
1693 var o = new api.InvideoTiming(); 1697 var o = new api.InvideoTiming();
1694 buildCounterInvideoTiming++; 1698 buildCounterInvideoTiming++;
1695 if (buildCounterInvideoTiming < 3) { 1699 if (buildCounterInvideoTiming < 3) {
1696 o.durationMs = "foo"; 1700 o.durationMs = "foo";
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
1766 unittest.expect(o.enableContentEncryption, unittest.isTrue); 1770 unittest.expect(o.enableContentEncryption, unittest.isTrue);
1767 unittest.expect(o.enableDvr, unittest.isTrue); 1771 unittest.expect(o.enableDvr, unittest.isTrue);
1768 unittest.expect(o.enableEmbed, unittest.isTrue); 1772 unittest.expect(o.enableEmbed, unittest.isTrue);
1769 checkMonitorStreamInfo(o.monitorStream); 1773 checkMonitorStreamInfo(o.monitorStream);
1770 unittest.expect(o.recordFromStart, unittest.isTrue); 1774 unittest.expect(o.recordFromStart, unittest.isTrue);
1771 unittest.expect(o.startWithSlate, unittest.isTrue); 1775 unittest.expect(o.startWithSlate, unittest.isTrue);
1772 } 1776 }
1773 buildCounterLiveBroadcastContentDetails--; 1777 buildCounterLiveBroadcastContentDetails--;
1774 } 1778 }
1775 1779
1776 buildUnnamed380() { 1780 buildUnnamed1025() {
1777 var o = new core.List<api.LiveBroadcast>(); 1781 var o = new core.List<api.LiveBroadcast>();
1778 o.add(buildLiveBroadcast()); 1782 o.add(buildLiveBroadcast());
1779 o.add(buildLiveBroadcast()); 1783 o.add(buildLiveBroadcast());
1780 return o; 1784 return o;
1781 } 1785 }
1782 1786
1783 checkUnnamed380(core.List<api.LiveBroadcast> o) { 1787 checkUnnamed1025(core.List<api.LiveBroadcast> o) {
1784 unittest.expect(o, unittest.hasLength(2)); 1788 unittest.expect(o, unittest.hasLength(2));
1785 checkLiveBroadcast(o[0]); 1789 checkLiveBroadcast(o[0]);
1786 checkLiveBroadcast(o[1]); 1790 checkLiveBroadcast(o[1]);
1787 } 1791 }
1788 1792
1789 core.int buildCounterLiveBroadcastListResponse = 0; 1793 core.int buildCounterLiveBroadcastListResponse = 0;
1790 buildLiveBroadcastListResponse() { 1794 buildLiveBroadcastListResponse() {
1791 var o = new api.LiveBroadcastListResponse(); 1795 var o = new api.LiveBroadcastListResponse();
1792 buildCounterLiveBroadcastListResponse++; 1796 buildCounterLiveBroadcastListResponse++;
1793 if (buildCounterLiveBroadcastListResponse < 3) { 1797 if (buildCounterLiveBroadcastListResponse < 3) {
1794 o.etag = "foo"; 1798 o.etag = "foo";
1795 o.eventId = "foo"; 1799 o.eventId = "foo";
1796 o.items = buildUnnamed380(); 1800 o.items = buildUnnamed1025();
1797 o.kind = "foo"; 1801 o.kind = "foo";
1798 o.nextPageToken = "foo"; 1802 o.nextPageToken = "foo";
1799 o.pageInfo = buildPageInfo(); 1803 o.pageInfo = buildPageInfo();
1800 o.prevPageToken = "foo"; 1804 o.prevPageToken = "foo";
1801 o.tokenPagination = buildTokenPagination(); 1805 o.tokenPagination = buildTokenPagination();
1802 o.visitorId = "foo"; 1806 o.visitorId = "foo";
1803 } 1807 }
1804 buildCounterLiveBroadcastListResponse--; 1808 buildCounterLiveBroadcastListResponse--;
1805 return o; 1809 return o;
1806 } 1810 }
1807 1811
1808 checkLiveBroadcastListResponse(api.LiveBroadcastListResponse o) { 1812 checkLiveBroadcastListResponse(api.LiveBroadcastListResponse o) {
1809 buildCounterLiveBroadcastListResponse++; 1813 buildCounterLiveBroadcastListResponse++;
1810 if (buildCounterLiveBroadcastListResponse < 3) { 1814 if (buildCounterLiveBroadcastListResponse < 3) {
1811 unittest.expect(o.etag, unittest.equals('foo')); 1815 unittest.expect(o.etag, unittest.equals('foo'));
1812 unittest.expect(o.eventId, unittest.equals('foo')); 1816 unittest.expect(o.eventId, unittest.equals('foo'));
1813 checkUnnamed380(o.items); 1817 checkUnnamed1025(o.items);
1814 unittest.expect(o.kind, unittest.equals('foo')); 1818 unittest.expect(o.kind, unittest.equals('foo'));
1815 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1819 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1816 checkPageInfo(o.pageInfo); 1820 checkPageInfo(o.pageInfo);
1817 unittest.expect(o.prevPageToken, unittest.equals('foo')); 1821 unittest.expect(o.prevPageToken, unittest.equals('foo'));
1818 checkTokenPagination(o.tokenPagination); 1822 checkTokenPagination(o.tokenPagination);
1819 unittest.expect(o.visitorId, unittest.equals('foo')); 1823 unittest.expect(o.visitorId, unittest.equals('foo'));
1820 } 1824 }
1821 buildCounterLiveBroadcastListResponse--; 1825 buildCounterLiveBroadcastListResponse--;
1822 } 1826 }
1823 1827
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
1911 } 1915 }
1912 buildCounterLiveStream--; 1916 buildCounterLiveStream--;
1913 } 1917 }
1914 1918
1915 core.int buildCounterLiveStreamContentDetails = 0; 1919 core.int buildCounterLiveStreamContentDetails = 0;
1916 buildLiveStreamContentDetails() { 1920 buildLiveStreamContentDetails() {
1917 var o = new api.LiveStreamContentDetails(); 1921 var o = new api.LiveStreamContentDetails();
1918 buildCounterLiveStreamContentDetails++; 1922 buildCounterLiveStreamContentDetails++;
1919 if (buildCounterLiveStreamContentDetails < 3) { 1923 if (buildCounterLiveStreamContentDetails < 3) {
1920 o.closedCaptionsIngestionUrl = "foo"; 1924 o.closedCaptionsIngestionUrl = "foo";
1925 o.isReusable = true;
1921 } 1926 }
1922 buildCounterLiveStreamContentDetails--; 1927 buildCounterLiveStreamContentDetails--;
1923 return o; 1928 return o;
1924 } 1929 }
1925 1930
1926 checkLiveStreamContentDetails(api.LiveStreamContentDetails o) { 1931 checkLiveStreamContentDetails(api.LiveStreamContentDetails o) {
1927 buildCounterLiveStreamContentDetails++; 1932 buildCounterLiveStreamContentDetails++;
1928 if (buildCounterLiveStreamContentDetails < 3) { 1933 if (buildCounterLiveStreamContentDetails < 3) {
1929 unittest.expect(o.closedCaptionsIngestionUrl, unittest.equals('foo')); 1934 unittest.expect(o.closedCaptionsIngestionUrl, unittest.equals('foo'));
1935 unittest.expect(o.isReusable, unittest.isTrue);
1930 } 1936 }
1931 buildCounterLiveStreamContentDetails--; 1937 buildCounterLiveStreamContentDetails--;
1932 } 1938 }
1933 1939
1934 buildUnnamed381() { 1940 buildUnnamed1026() {
1935 var o = new core.List<api.LiveStream>(); 1941 var o = new core.List<api.LiveStream>();
1936 o.add(buildLiveStream()); 1942 o.add(buildLiveStream());
1937 o.add(buildLiveStream()); 1943 o.add(buildLiveStream());
1938 return o; 1944 return o;
1939 } 1945 }
1940 1946
1941 checkUnnamed381(core.List<api.LiveStream> o) { 1947 checkUnnamed1026(core.List<api.LiveStream> o) {
1942 unittest.expect(o, unittest.hasLength(2)); 1948 unittest.expect(o, unittest.hasLength(2));
1943 checkLiveStream(o[0]); 1949 checkLiveStream(o[0]);
1944 checkLiveStream(o[1]); 1950 checkLiveStream(o[1]);
1945 } 1951 }
1946 1952
1947 core.int buildCounterLiveStreamListResponse = 0; 1953 core.int buildCounterLiveStreamListResponse = 0;
1948 buildLiveStreamListResponse() { 1954 buildLiveStreamListResponse() {
1949 var o = new api.LiveStreamListResponse(); 1955 var o = new api.LiveStreamListResponse();
1950 buildCounterLiveStreamListResponse++; 1956 buildCounterLiveStreamListResponse++;
1951 if (buildCounterLiveStreamListResponse < 3) { 1957 if (buildCounterLiveStreamListResponse < 3) {
1952 o.etag = "foo"; 1958 o.etag = "foo";
1953 o.eventId = "foo"; 1959 o.eventId = "foo";
1954 o.items = buildUnnamed381(); 1960 o.items = buildUnnamed1026();
1955 o.kind = "foo"; 1961 o.kind = "foo";
1956 o.nextPageToken = "foo"; 1962 o.nextPageToken = "foo";
1957 o.pageInfo = buildPageInfo(); 1963 o.pageInfo = buildPageInfo();
1958 o.prevPageToken = "foo"; 1964 o.prevPageToken = "foo";
1959 o.tokenPagination = buildTokenPagination(); 1965 o.tokenPagination = buildTokenPagination();
1960 o.visitorId = "foo"; 1966 o.visitorId = "foo";
1961 } 1967 }
1962 buildCounterLiveStreamListResponse--; 1968 buildCounterLiveStreamListResponse--;
1963 return o; 1969 return o;
1964 } 1970 }
1965 1971
1966 checkLiveStreamListResponse(api.LiveStreamListResponse o) { 1972 checkLiveStreamListResponse(api.LiveStreamListResponse o) {
1967 buildCounterLiveStreamListResponse++; 1973 buildCounterLiveStreamListResponse++;
1968 if (buildCounterLiveStreamListResponse < 3) { 1974 if (buildCounterLiveStreamListResponse < 3) {
1969 unittest.expect(o.etag, unittest.equals('foo')); 1975 unittest.expect(o.etag, unittest.equals('foo'));
1970 unittest.expect(o.eventId, unittest.equals('foo')); 1976 unittest.expect(o.eventId, unittest.equals('foo'));
1971 checkUnnamed381(o.items); 1977 checkUnnamed1026(o.items);
1972 unittest.expect(o.kind, unittest.equals('foo')); 1978 unittest.expect(o.kind, unittest.equals('foo'));
1973 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1979 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1974 checkPageInfo(o.pageInfo); 1980 checkPageInfo(o.pageInfo);
1975 unittest.expect(o.prevPageToken, unittest.equals('foo')); 1981 unittest.expect(o.prevPageToken, unittest.equals('foo'));
1976 checkTokenPagination(o.tokenPagination); 1982 checkTokenPagination(o.tokenPagination);
1977 unittest.expect(o.visitorId, unittest.equals('foo')); 1983 unittest.expect(o.visitorId, unittest.equals('foo'));
1978 } 1984 }
1979 buildCounterLiveStreamListResponse--; 1985 buildCounterLiveStreamListResponse--;
1980 } 1986 }
1981 1987
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
2016 } 2022 }
2017 2023
2018 checkLiveStreamStatus(api.LiveStreamStatus o) { 2024 checkLiveStreamStatus(api.LiveStreamStatus o) {
2019 buildCounterLiveStreamStatus++; 2025 buildCounterLiveStreamStatus++;
2020 if (buildCounterLiveStreamStatus < 3) { 2026 if (buildCounterLiveStreamStatus < 3) {
2021 unittest.expect(o.streamStatus, unittest.equals('foo')); 2027 unittest.expect(o.streamStatus, unittest.equals('foo'));
2022 } 2028 }
2023 buildCounterLiveStreamStatus--; 2029 buildCounterLiveStreamStatus--;
2024 } 2030 }
2025 2031
2026 buildUnnamed382() { 2032 buildUnnamed1027() {
2027 var o = new core.List<api.LocalizedString>(); 2033 var o = new core.List<api.LocalizedString>();
2028 o.add(buildLocalizedString()); 2034 o.add(buildLocalizedString());
2029 o.add(buildLocalizedString()); 2035 o.add(buildLocalizedString());
2030 return o; 2036 return o;
2031 } 2037 }
2032 2038
2033 checkUnnamed382(core.List<api.LocalizedString> o) { 2039 checkUnnamed1027(core.List<api.LocalizedString> o) {
2034 unittest.expect(o, unittest.hasLength(2)); 2040 unittest.expect(o, unittest.hasLength(2));
2035 checkLocalizedString(o[0]); 2041 checkLocalizedString(o[0]);
2036 checkLocalizedString(o[1]); 2042 checkLocalizedString(o[1]);
2037 } 2043 }
2038 2044
2039 core.int buildCounterLocalizedProperty = 0; 2045 core.int buildCounterLocalizedProperty = 0;
2040 buildLocalizedProperty() { 2046 buildLocalizedProperty() {
2041 var o = new api.LocalizedProperty(); 2047 var o = new api.LocalizedProperty();
2042 buildCounterLocalizedProperty++; 2048 buildCounterLocalizedProperty++;
2043 if (buildCounterLocalizedProperty < 3) { 2049 if (buildCounterLocalizedProperty < 3) {
2044 o.default_ = "foo"; 2050 o.default_ = "foo";
2045 o.localized = buildUnnamed382(); 2051 o.localized = buildUnnamed1027();
2046 } 2052 }
2047 buildCounterLocalizedProperty--; 2053 buildCounterLocalizedProperty--;
2048 return o; 2054 return o;
2049 } 2055 }
2050 2056
2051 checkLocalizedProperty(api.LocalizedProperty o) { 2057 checkLocalizedProperty(api.LocalizedProperty o) {
2052 buildCounterLocalizedProperty++; 2058 buildCounterLocalizedProperty++;
2053 if (buildCounterLocalizedProperty < 3) { 2059 if (buildCounterLocalizedProperty < 3) {
2054 unittest.expect(o.default_, unittest.equals('foo')); 2060 unittest.expect(o.default_, unittest.equals('foo'));
2055 checkUnnamed382(o.localized); 2061 checkUnnamed1027(o.localized);
2056 } 2062 }
2057 buildCounterLocalizedProperty--; 2063 buildCounterLocalizedProperty--;
2058 } 2064 }
2059 2065
2060 core.int buildCounterLocalizedString = 0; 2066 core.int buildCounterLocalizedString = 0;
2061 buildLocalizedString() { 2067 buildLocalizedString() {
2062 var o = new api.LocalizedString(); 2068 var o = new api.LocalizedString();
2063 buildCounterLocalizedString++; 2069 buildCounterLocalizedString++;
2064 if (buildCounterLocalizedString < 3) { 2070 if (buildCounterLocalizedString < 3) {
2065 o.language = "foo"; 2071 o.language = "foo";
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
2219 buildCounterPlaylistItemContentDetails++; 2225 buildCounterPlaylistItemContentDetails++;
2220 if (buildCounterPlaylistItemContentDetails < 3) { 2226 if (buildCounterPlaylistItemContentDetails < 3) {
2221 unittest.expect(o.endAt, unittest.equals('foo')); 2227 unittest.expect(o.endAt, unittest.equals('foo'));
2222 unittest.expect(o.note, unittest.equals('foo')); 2228 unittest.expect(o.note, unittest.equals('foo'));
2223 unittest.expect(o.startAt, unittest.equals('foo')); 2229 unittest.expect(o.startAt, unittest.equals('foo'));
2224 unittest.expect(o.videoId, unittest.equals('foo')); 2230 unittest.expect(o.videoId, unittest.equals('foo'));
2225 } 2231 }
2226 buildCounterPlaylistItemContentDetails--; 2232 buildCounterPlaylistItemContentDetails--;
2227 } 2233 }
2228 2234
2229 buildUnnamed383() { 2235 buildUnnamed1028() {
2230 var o = new core.List<api.PlaylistItem>(); 2236 var o = new core.List<api.PlaylistItem>();
2231 o.add(buildPlaylistItem()); 2237 o.add(buildPlaylistItem());
2232 o.add(buildPlaylistItem()); 2238 o.add(buildPlaylistItem());
2233 return o; 2239 return o;
2234 } 2240 }
2235 2241
2236 checkUnnamed383(core.List<api.PlaylistItem> o) { 2242 checkUnnamed1028(core.List<api.PlaylistItem> o) {
2237 unittest.expect(o, unittest.hasLength(2)); 2243 unittest.expect(o, unittest.hasLength(2));
2238 checkPlaylistItem(o[0]); 2244 checkPlaylistItem(o[0]);
2239 checkPlaylistItem(o[1]); 2245 checkPlaylistItem(o[1]);
2240 } 2246 }
2241 2247
2242 core.int buildCounterPlaylistItemListResponse = 0; 2248 core.int buildCounterPlaylistItemListResponse = 0;
2243 buildPlaylistItemListResponse() { 2249 buildPlaylistItemListResponse() {
2244 var o = new api.PlaylistItemListResponse(); 2250 var o = new api.PlaylistItemListResponse();
2245 buildCounterPlaylistItemListResponse++; 2251 buildCounterPlaylistItemListResponse++;
2246 if (buildCounterPlaylistItemListResponse < 3) { 2252 if (buildCounterPlaylistItemListResponse < 3) {
2247 o.etag = "foo"; 2253 o.etag = "foo";
2248 o.eventId = "foo"; 2254 o.eventId = "foo";
2249 o.items = buildUnnamed383(); 2255 o.items = buildUnnamed1028();
2250 o.kind = "foo"; 2256 o.kind = "foo";
2251 o.nextPageToken = "foo"; 2257 o.nextPageToken = "foo";
2252 o.pageInfo = buildPageInfo(); 2258 o.pageInfo = buildPageInfo();
2253 o.prevPageToken = "foo"; 2259 o.prevPageToken = "foo";
2254 o.tokenPagination = buildTokenPagination(); 2260 o.tokenPagination = buildTokenPagination();
2255 o.visitorId = "foo"; 2261 o.visitorId = "foo";
2256 } 2262 }
2257 buildCounterPlaylistItemListResponse--; 2263 buildCounterPlaylistItemListResponse--;
2258 return o; 2264 return o;
2259 } 2265 }
2260 2266
2261 checkPlaylistItemListResponse(api.PlaylistItemListResponse o) { 2267 checkPlaylistItemListResponse(api.PlaylistItemListResponse o) {
2262 buildCounterPlaylistItemListResponse++; 2268 buildCounterPlaylistItemListResponse++;
2263 if (buildCounterPlaylistItemListResponse < 3) { 2269 if (buildCounterPlaylistItemListResponse < 3) {
2264 unittest.expect(o.etag, unittest.equals('foo')); 2270 unittest.expect(o.etag, unittest.equals('foo'));
2265 unittest.expect(o.eventId, unittest.equals('foo')); 2271 unittest.expect(o.eventId, unittest.equals('foo'));
2266 checkUnnamed383(o.items); 2272 checkUnnamed1028(o.items);
2267 unittest.expect(o.kind, unittest.equals('foo')); 2273 unittest.expect(o.kind, unittest.equals('foo'));
2268 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2274 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2269 checkPageInfo(o.pageInfo); 2275 checkPageInfo(o.pageInfo);
2270 unittest.expect(o.prevPageToken, unittest.equals('foo')); 2276 unittest.expect(o.prevPageToken, unittest.equals('foo'));
2271 checkTokenPagination(o.tokenPagination); 2277 checkTokenPagination(o.tokenPagination);
2272 unittest.expect(o.visitorId, unittest.equals('foo')); 2278 unittest.expect(o.visitorId, unittest.equals('foo'));
2273 } 2279 }
2274 buildCounterPlaylistItemListResponse--; 2280 buildCounterPlaylistItemListResponse--;
2275 } 2281 }
2276 2282
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
2321 } 2327 }
2322 2328
2323 checkPlaylistItemStatus(api.PlaylistItemStatus o) { 2329 checkPlaylistItemStatus(api.PlaylistItemStatus o) {
2324 buildCounterPlaylistItemStatus++; 2330 buildCounterPlaylistItemStatus++;
2325 if (buildCounterPlaylistItemStatus < 3) { 2331 if (buildCounterPlaylistItemStatus < 3) {
2326 unittest.expect(o.privacyStatus, unittest.equals('foo')); 2332 unittest.expect(o.privacyStatus, unittest.equals('foo'));
2327 } 2333 }
2328 buildCounterPlaylistItemStatus--; 2334 buildCounterPlaylistItemStatus--;
2329 } 2335 }
2330 2336
2331 buildUnnamed384() { 2337 buildUnnamed1029() {
2332 var o = new core.List<api.Playlist>(); 2338 var o = new core.List<api.Playlist>();
2333 o.add(buildPlaylist()); 2339 o.add(buildPlaylist());
2334 o.add(buildPlaylist()); 2340 o.add(buildPlaylist());
2335 return o; 2341 return o;
2336 } 2342 }
2337 2343
2338 checkUnnamed384(core.List<api.Playlist> o) { 2344 checkUnnamed1029(core.List<api.Playlist> o) {
2339 unittest.expect(o, unittest.hasLength(2)); 2345 unittest.expect(o, unittest.hasLength(2));
2340 checkPlaylist(o[0]); 2346 checkPlaylist(o[0]);
2341 checkPlaylist(o[1]); 2347 checkPlaylist(o[1]);
2342 } 2348 }
2343 2349
2344 core.int buildCounterPlaylistListResponse = 0; 2350 core.int buildCounterPlaylistListResponse = 0;
2345 buildPlaylistListResponse() { 2351 buildPlaylistListResponse() {
2346 var o = new api.PlaylistListResponse(); 2352 var o = new api.PlaylistListResponse();
2347 buildCounterPlaylistListResponse++; 2353 buildCounterPlaylistListResponse++;
2348 if (buildCounterPlaylistListResponse < 3) { 2354 if (buildCounterPlaylistListResponse < 3) {
2349 o.etag = "foo"; 2355 o.etag = "foo";
2350 o.eventId = "foo"; 2356 o.eventId = "foo";
2351 o.items = buildUnnamed384(); 2357 o.items = buildUnnamed1029();
2352 o.kind = "foo"; 2358 o.kind = "foo";
2353 o.nextPageToken = "foo"; 2359 o.nextPageToken = "foo";
2354 o.pageInfo = buildPageInfo(); 2360 o.pageInfo = buildPageInfo();
2355 o.prevPageToken = "foo"; 2361 o.prevPageToken = "foo";
2356 o.tokenPagination = buildTokenPagination(); 2362 o.tokenPagination = buildTokenPagination();
2357 o.visitorId = "foo"; 2363 o.visitorId = "foo";
2358 } 2364 }
2359 buildCounterPlaylistListResponse--; 2365 buildCounterPlaylistListResponse--;
2360 return o; 2366 return o;
2361 } 2367 }
2362 2368
2363 checkPlaylistListResponse(api.PlaylistListResponse o) { 2369 checkPlaylistListResponse(api.PlaylistListResponse o) {
2364 buildCounterPlaylistListResponse++; 2370 buildCounterPlaylistListResponse++;
2365 if (buildCounterPlaylistListResponse < 3) { 2371 if (buildCounterPlaylistListResponse < 3) {
2366 unittest.expect(o.etag, unittest.equals('foo')); 2372 unittest.expect(o.etag, unittest.equals('foo'));
2367 unittest.expect(o.eventId, unittest.equals('foo')); 2373 unittest.expect(o.eventId, unittest.equals('foo'));
2368 checkUnnamed384(o.items); 2374 checkUnnamed1029(o.items);
2369 unittest.expect(o.kind, unittest.equals('foo')); 2375 unittest.expect(o.kind, unittest.equals('foo'));
2370 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2376 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2371 checkPageInfo(o.pageInfo); 2377 checkPageInfo(o.pageInfo);
2372 unittest.expect(o.prevPageToken, unittest.equals('foo')); 2378 unittest.expect(o.prevPageToken, unittest.equals('foo'));
2373 checkTokenPagination(o.tokenPagination); 2379 checkTokenPagination(o.tokenPagination);
2374 unittest.expect(o.visitorId, unittest.equals('foo')); 2380 unittest.expect(o.visitorId, unittest.equals('foo'));
2375 } 2381 }
2376 buildCounterPlaylistListResponse--; 2382 buildCounterPlaylistListResponse--;
2377 } 2383 }
2378 2384
2379 core.int buildCounterPlaylistPlayer = 0; 2385 core.int buildCounterPlaylistPlayer = 0;
2380 buildPlaylistPlayer() { 2386 buildPlaylistPlayer() {
2381 var o = new api.PlaylistPlayer(); 2387 var o = new api.PlaylistPlayer();
2382 buildCounterPlaylistPlayer++; 2388 buildCounterPlaylistPlayer++;
2383 if (buildCounterPlaylistPlayer < 3) { 2389 if (buildCounterPlaylistPlayer < 3) {
2384 o.embedHtml = "foo"; 2390 o.embedHtml = "foo";
2385 } 2391 }
2386 buildCounterPlaylistPlayer--; 2392 buildCounterPlaylistPlayer--;
2387 return o; 2393 return o;
2388 } 2394 }
2389 2395
2390 checkPlaylistPlayer(api.PlaylistPlayer o) { 2396 checkPlaylistPlayer(api.PlaylistPlayer o) {
2391 buildCounterPlaylistPlayer++; 2397 buildCounterPlaylistPlayer++;
2392 if (buildCounterPlaylistPlayer < 3) { 2398 if (buildCounterPlaylistPlayer < 3) {
2393 unittest.expect(o.embedHtml, unittest.equals('foo')); 2399 unittest.expect(o.embedHtml, unittest.equals('foo'));
2394 } 2400 }
2395 buildCounterPlaylistPlayer--; 2401 buildCounterPlaylistPlayer--;
2396 } 2402 }
2397 2403
2398 buildUnnamed385() { 2404 buildUnnamed1030() {
2399 var o = new core.List<core.String>(); 2405 var o = new core.List<core.String>();
2400 o.add("foo"); 2406 o.add("foo");
2401 o.add("foo"); 2407 o.add("foo");
2402 return o; 2408 return o;
2403 } 2409 }
2404 2410
2405 checkUnnamed385(core.List<core.String> o) { 2411 checkUnnamed1030(core.List<core.String> o) {
2406 unittest.expect(o, unittest.hasLength(2)); 2412 unittest.expect(o, unittest.hasLength(2));
2407 unittest.expect(o[0], unittest.equals('foo')); 2413 unittest.expect(o[0], unittest.equals('foo'));
2408 unittest.expect(o[1], unittest.equals('foo')); 2414 unittest.expect(o[1], unittest.equals('foo'));
2409 } 2415 }
2410 2416
2411 core.int buildCounterPlaylistSnippet = 0; 2417 core.int buildCounterPlaylistSnippet = 0;
2412 buildPlaylistSnippet() { 2418 buildPlaylistSnippet() {
2413 var o = new api.PlaylistSnippet(); 2419 var o = new api.PlaylistSnippet();
2414 buildCounterPlaylistSnippet++; 2420 buildCounterPlaylistSnippet++;
2415 if (buildCounterPlaylistSnippet < 3) { 2421 if (buildCounterPlaylistSnippet < 3) {
2416 o.channelId = "foo"; 2422 o.channelId = "foo";
2417 o.channelTitle = "foo"; 2423 o.channelTitle = "foo";
2418 o.description = "foo"; 2424 o.description = "foo";
2419 o.publishedAt = core.DateTime.parse("2002-02-27T14:01:02"); 2425 o.publishedAt = core.DateTime.parse("2002-02-27T14:01:02");
2420 o.tags = buildUnnamed385(); 2426 o.tags = buildUnnamed1030();
2421 o.thumbnails = buildThumbnailDetails(); 2427 o.thumbnails = buildThumbnailDetails();
2422 o.title = "foo"; 2428 o.title = "foo";
2423 } 2429 }
2424 buildCounterPlaylistSnippet--; 2430 buildCounterPlaylistSnippet--;
2425 return o; 2431 return o;
2426 } 2432 }
2427 2433
2428 checkPlaylistSnippet(api.PlaylistSnippet o) { 2434 checkPlaylistSnippet(api.PlaylistSnippet o) {
2429 buildCounterPlaylistSnippet++; 2435 buildCounterPlaylistSnippet++;
2430 if (buildCounterPlaylistSnippet < 3) { 2436 if (buildCounterPlaylistSnippet < 3) {
2431 unittest.expect(o.channelId, unittest.equals('foo')); 2437 unittest.expect(o.channelId, unittest.equals('foo'));
2432 unittest.expect(o.channelTitle, unittest.equals('foo')); 2438 unittest.expect(o.channelTitle, unittest.equals('foo'));
2433 unittest.expect(o.description, unittest.equals('foo')); 2439 unittest.expect(o.description, unittest.equals('foo'));
2434 unittest.expect(o.publishedAt, unittest.equals(core.DateTime.parse("2002-02- 27T14:01:02"))); 2440 unittest.expect(o.publishedAt, unittest.equals(core.DateTime.parse("2002-02- 27T14:01:02")));
2435 checkUnnamed385(o.tags); 2441 checkUnnamed1030(o.tags);
2436 checkThumbnailDetails(o.thumbnails); 2442 checkThumbnailDetails(o.thumbnails);
2437 unittest.expect(o.title, unittest.equals('foo')); 2443 unittest.expect(o.title, unittest.equals('foo'));
2438 } 2444 }
2439 buildCounterPlaylistSnippet--; 2445 buildCounterPlaylistSnippet--;
2440 } 2446 }
2441 2447
2442 core.int buildCounterPlaylistStatus = 0; 2448 core.int buildCounterPlaylistStatus = 0;
2443 buildPlaylistStatus() { 2449 buildPlaylistStatus() {
2444 var o = new api.PlaylistStatus(); 2450 var o = new api.PlaylistStatus();
2445 buildCounterPlaylistStatus++; 2451 buildCounterPlaylistStatus++;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
2547 buildCounterResourceId++; 2553 buildCounterResourceId++;
2548 if (buildCounterResourceId < 3) { 2554 if (buildCounterResourceId < 3) {
2549 unittest.expect(o.channelId, unittest.equals('foo')); 2555 unittest.expect(o.channelId, unittest.equals('foo'));
2550 unittest.expect(o.kind, unittest.equals('foo')); 2556 unittest.expect(o.kind, unittest.equals('foo'));
2551 unittest.expect(o.playlistId, unittest.equals('foo')); 2557 unittest.expect(o.playlistId, unittest.equals('foo'));
2552 unittest.expect(o.videoId, unittest.equals('foo')); 2558 unittest.expect(o.videoId, unittest.equals('foo'));
2553 } 2559 }
2554 buildCounterResourceId--; 2560 buildCounterResourceId--;
2555 } 2561 }
2556 2562
2557 buildUnnamed386() { 2563 buildUnnamed1031() {
2558 var o = new core.List<api.SearchResult>(); 2564 var o = new core.List<api.SearchResult>();
2559 o.add(buildSearchResult()); 2565 o.add(buildSearchResult());
2560 o.add(buildSearchResult()); 2566 o.add(buildSearchResult());
2561 return o; 2567 return o;
2562 } 2568 }
2563 2569
2564 checkUnnamed386(core.List<api.SearchResult> o) { 2570 checkUnnamed1031(core.List<api.SearchResult> o) {
2565 unittest.expect(o, unittest.hasLength(2)); 2571 unittest.expect(o, unittest.hasLength(2));
2566 checkSearchResult(o[0]); 2572 checkSearchResult(o[0]);
2567 checkSearchResult(o[1]); 2573 checkSearchResult(o[1]);
2568 } 2574 }
2569 2575
2570 core.int buildCounterSearchListResponse = 0; 2576 core.int buildCounterSearchListResponse = 0;
2571 buildSearchListResponse() { 2577 buildSearchListResponse() {
2572 var o = new api.SearchListResponse(); 2578 var o = new api.SearchListResponse();
2573 buildCounterSearchListResponse++; 2579 buildCounterSearchListResponse++;
2574 if (buildCounterSearchListResponse < 3) { 2580 if (buildCounterSearchListResponse < 3) {
2575 o.etag = "foo"; 2581 o.etag = "foo";
2576 o.eventId = "foo"; 2582 o.eventId = "foo";
2577 o.items = buildUnnamed386(); 2583 o.items = buildUnnamed1031();
2578 o.kind = "foo"; 2584 o.kind = "foo";
2579 o.nextPageToken = "foo"; 2585 o.nextPageToken = "foo";
2580 o.pageInfo = buildPageInfo(); 2586 o.pageInfo = buildPageInfo();
2581 o.prevPageToken = "foo"; 2587 o.prevPageToken = "foo";
2582 o.tokenPagination = buildTokenPagination(); 2588 o.tokenPagination = buildTokenPagination();
2583 o.visitorId = "foo"; 2589 o.visitorId = "foo";
2584 } 2590 }
2585 buildCounterSearchListResponse--; 2591 buildCounterSearchListResponse--;
2586 return o; 2592 return o;
2587 } 2593 }
2588 2594
2589 checkSearchListResponse(api.SearchListResponse o) { 2595 checkSearchListResponse(api.SearchListResponse o) {
2590 buildCounterSearchListResponse++; 2596 buildCounterSearchListResponse++;
2591 if (buildCounterSearchListResponse < 3) { 2597 if (buildCounterSearchListResponse < 3) {
2592 unittest.expect(o.etag, unittest.equals('foo')); 2598 unittest.expect(o.etag, unittest.equals('foo'));
2593 unittest.expect(o.eventId, unittest.equals('foo')); 2599 unittest.expect(o.eventId, unittest.equals('foo'));
2594 checkUnnamed386(o.items); 2600 checkUnnamed1031(o.items);
2595 unittest.expect(o.kind, unittest.equals('foo')); 2601 unittest.expect(o.kind, unittest.equals('foo'));
2596 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2602 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2597 checkPageInfo(o.pageInfo); 2603 checkPageInfo(o.pageInfo);
2598 unittest.expect(o.prevPageToken, unittest.equals('foo')); 2604 unittest.expect(o.prevPageToken, unittest.equals('foo'));
2599 checkTokenPagination(o.tokenPagination); 2605 checkTokenPagination(o.tokenPagination);
2600 unittest.expect(o.visitorId, unittest.equals('foo')); 2606 unittest.expect(o.visitorId, unittest.equals('foo'));
2601 } 2607 }
2602 buildCounterSearchListResponse--; 2608 buildCounterSearchListResponse--;
2603 } 2609 }
2604 2610
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
2703 checkSubscriptionContentDetails(api.SubscriptionContentDetails o) { 2709 checkSubscriptionContentDetails(api.SubscriptionContentDetails o) {
2704 buildCounterSubscriptionContentDetails++; 2710 buildCounterSubscriptionContentDetails++;
2705 if (buildCounterSubscriptionContentDetails < 3) { 2711 if (buildCounterSubscriptionContentDetails < 3) {
2706 unittest.expect(o.activityType, unittest.equals('foo')); 2712 unittest.expect(o.activityType, unittest.equals('foo'));
2707 unittest.expect(o.newItemCount, unittest.equals(42)); 2713 unittest.expect(o.newItemCount, unittest.equals(42));
2708 unittest.expect(o.totalItemCount, unittest.equals(42)); 2714 unittest.expect(o.totalItemCount, unittest.equals(42));
2709 } 2715 }
2710 buildCounterSubscriptionContentDetails--; 2716 buildCounterSubscriptionContentDetails--;
2711 } 2717 }
2712 2718
2713 buildUnnamed387() { 2719 buildUnnamed1032() {
2714 var o = new core.List<api.Subscription>(); 2720 var o = new core.List<api.Subscription>();
2715 o.add(buildSubscription()); 2721 o.add(buildSubscription());
2716 o.add(buildSubscription()); 2722 o.add(buildSubscription());
2717 return o; 2723 return o;
2718 } 2724 }
2719 2725
2720 checkUnnamed387(core.List<api.Subscription> o) { 2726 checkUnnamed1032(core.List<api.Subscription> o) {
2721 unittest.expect(o, unittest.hasLength(2)); 2727 unittest.expect(o, unittest.hasLength(2));
2722 checkSubscription(o[0]); 2728 checkSubscription(o[0]);
2723 checkSubscription(o[1]); 2729 checkSubscription(o[1]);
2724 } 2730 }
2725 2731
2726 core.int buildCounterSubscriptionListResponse = 0; 2732 core.int buildCounterSubscriptionListResponse = 0;
2727 buildSubscriptionListResponse() { 2733 buildSubscriptionListResponse() {
2728 var o = new api.SubscriptionListResponse(); 2734 var o = new api.SubscriptionListResponse();
2729 buildCounterSubscriptionListResponse++; 2735 buildCounterSubscriptionListResponse++;
2730 if (buildCounterSubscriptionListResponse < 3) { 2736 if (buildCounterSubscriptionListResponse < 3) {
2731 o.etag = "foo"; 2737 o.etag = "foo";
2732 o.eventId = "foo"; 2738 o.eventId = "foo";
2733 o.items = buildUnnamed387(); 2739 o.items = buildUnnamed1032();
2734 o.kind = "foo"; 2740 o.kind = "foo";
2735 o.nextPageToken = "foo"; 2741 o.nextPageToken = "foo";
2736 o.pageInfo = buildPageInfo(); 2742 o.pageInfo = buildPageInfo();
2737 o.prevPageToken = "foo"; 2743 o.prevPageToken = "foo";
2738 o.tokenPagination = buildTokenPagination(); 2744 o.tokenPagination = buildTokenPagination();
2739 o.visitorId = "foo"; 2745 o.visitorId = "foo";
2740 } 2746 }
2741 buildCounterSubscriptionListResponse--; 2747 buildCounterSubscriptionListResponse--;
2742 return o; 2748 return o;
2743 } 2749 }
2744 2750
2745 checkSubscriptionListResponse(api.SubscriptionListResponse o) { 2751 checkSubscriptionListResponse(api.SubscriptionListResponse o) {
2746 buildCounterSubscriptionListResponse++; 2752 buildCounterSubscriptionListResponse++;
2747 if (buildCounterSubscriptionListResponse < 3) { 2753 if (buildCounterSubscriptionListResponse < 3) {
2748 unittest.expect(o.etag, unittest.equals('foo')); 2754 unittest.expect(o.etag, unittest.equals('foo'));
2749 unittest.expect(o.eventId, unittest.equals('foo')); 2755 unittest.expect(o.eventId, unittest.equals('foo'));
2750 checkUnnamed387(o.items); 2756 checkUnnamed1032(o.items);
2751 unittest.expect(o.kind, unittest.equals('foo')); 2757 unittest.expect(o.kind, unittest.equals('foo'));
2752 unittest.expect(o.nextPageToken, unittest.equals('foo')); 2758 unittest.expect(o.nextPageToken, unittest.equals('foo'));
2753 checkPageInfo(o.pageInfo); 2759 checkPageInfo(o.pageInfo);
2754 unittest.expect(o.prevPageToken, unittest.equals('foo')); 2760 unittest.expect(o.prevPageToken, unittest.equals('foo'));
2755 checkTokenPagination(o.tokenPagination); 2761 checkTokenPagination(o.tokenPagination);
2756 unittest.expect(o.visitorId, unittest.equals('foo')); 2762 unittest.expect(o.visitorId, unittest.equals('foo'));
2757 } 2763 }
2758 buildCounterSubscriptionListResponse--; 2764 buildCounterSubscriptionListResponse--;
2759 } 2765 }
2760 2766
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
2857 if (buildCounterThumbnailDetails < 3) { 2863 if (buildCounterThumbnailDetails < 3) {
2858 checkThumbnail(o.default_); 2864 checkThumbnail(o.default_);
2859 checkThumbnail(o.high); 2865 checkThumbnail(o.high);
2860 checkThumbnail(o.maxres); 2866 checkThumbnail(o.maxres);
2861 checkThumbnail(o.medium); 2867 checkThumbnail(o.medium);
2862 checkThumbnail(o.standard); 2868 checkThumbnail(o.standard);
2863 } 2869 }
2864 buildCounterThumbnailDetails--; 2870 buildCounterThumbnailDetails--;
2865 } 2871 }
2866 2872
2867 buildUnnamed388() { 2873 buildUnnamed1033() {
2868 var o = new core.List<api.ThumbnailDetails>(); 2874 var o = new core.List<api.ThumbnailDetails>();
2869 o.add(buildThumbnailDetails()); 2875 o.add(buildThumbnailDetails());
2870 o.add(buildThumbnailDetails()); 2876 o.add(buildThumbnailDetails());
2871 return o; 2877 return o;
2872 } 2878 }
2873 2879
2874 checkUnnamed388(core.List<api.ThumbnailDetails> o) { 2880 checkUnnamed1033(core.List<api.ThumbnailDetails> o) {
2875 unittest.expect(o, unittest.hasLength(2)); 2881 unittest.expect(o, unittest.hasLength(2));
2876 checkThumbnailDetails(o[0]); 2882 checkThumbnailDetails(o[0]);
2877 checkThumbnailDetails(o[1]); 2883 checkThumbnailDetails(o[1]);
2878 } 2884 }
2879 2885
2880 core.int buildCounterThumbnailSetResponse = 0; 2886 core.int buildCounterThumbnailSetResponse = 0;
2881 buildThumbnailSetResponse() { 2887 buildThumbnailSetResponse() {
2882 var o = new api.ThumbnailSetResponse(); 2888 var o = new api.ThumbnailSetResponse();
2883 buildCounterThumbnailSetResponse++; 2889 buildCounterThumbnailSetResponse++;
2884 if (buildCounterThumbnailSetResponse < 3) { 2890 if (buildCounterThumbnailSetResponse < 3) {
2885 o.etag = "foo"; 2891 o.etag = "foo";
2886 o.eventId = "foo"; 2892 o.eventId = "foo";
2887 o.items = buildUnnamed388(); 2893 o.items = buildUnnamed1033();
2888 o.kind = "foo"; 2894 o.kind = "foo";
2889 o.visitorId = "foo"; 2895 o.visitorId = "foo";
2890 } 2896 }
2891 buildCounterThumbnailSetResponse--; 2897 buildCounterThumbnailSetResponse--;
2892 return o; 2898 return o;
2893 } 2899 }
2894 2900
2895 checkThumbnailSetResponse(api.ThumbnailSetResponse o) { 2901 checkThumbnailSetResponse(api.ThumbnailSetResponse o) {
2896 buildCounterThumbnailSetResponse++; 2902 buildCounterThumbnailSetResponse++;
2897 if (buildCounterThumbnailSetResponse < 3) { 2903 if (buildCounterThumbnailSetResponse < 3) {
2898 unittest.expect(o.etag, unittest.equals('foo')); 2904 unittest.expect(o.etag, unittest.equals('foo'));
2899 unittest.expect(o.eventId, unittest.equals('foo')); 2905 unittest.expect(o.eventId, unittest.equals('foo'));
2900 checkUnnamed388(o.items); 2906 checkUnnamed1033(o.items);
2901 unittest.expect(o.kind, unittest.equals('foo')); 2907 unittest.expect(o.kind, unittest.equals('foo'));
2902 unittest.expect(o.visitorId, unittest.equals('foo')); 2908 unittest.expect(o.visitorId, unittest.equals('foo'));
2903 } 2909 }
2904 buildCounterThumbnailSetResponse--; 2910 buildCounterThumbnailSetResponse--;
2905 } 2911 }
2906 2912
2907 core.int buildCounterTokenPagination = 0; 2913 core.int buildCounterTokenPagination = 0;
2908 buildTokenPagination() { 2914 buildTokenPagination() {
2909 var o = new api.TokenPagination(); 2915 var o = new api.TokenPagination();
2910 buildCounterTokenPagination++; 2916 buildCounterTokenPagination++;
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
3015 buildCounterVideoCategory++; 3021 buildCounterVideoCategory++;
3016 if (buildCounterVideoCategory < 3) { 3022 if (buildCounterVideoCategory < 3) {
3017 unittest.expect(o.etag, unittest.equals('foo')); 3023 unittest.expect(o.etag, unittest.equals('foo'));
3018 unittest.expect(o.id, unittest.equals('foo')); 3024 unittest.expect(o.id, unittest.equals('foo'));
3019 unittest.expect(o.kind, unittest.equals('foo')); 3025 unittest.expect(o.kind, unittest.equals('foo'));
3020 checkVideoCategorySnippet(o.snippet); 3026 checkVideoCategorySnippet(o.snippet);
3021 } 3027 }
3022 buildCounterVideoCategory--; 3028 buildCounterVideoCategory--;
3023 } 3029 }
3024 3030
3025 buildUnnamed389() { 3031 buildUnnamed1034() {
3026 var o = new core.List<api.VideoCategory>(); 3032 var o = new core.List<api.VideoCategory>();
3027 o.add(buildVideoCategory()); 3033 o.add(buildVideoCategory());
3028 o.add(buildVideoCategory()); 3034 o.add(buildVideoCategory());
3029 return o; 3035 return o;
3030 } 3036 }
3031 3037
3032 checkUnnamed389(core.List<api.VideoCategory> o) { 3038 checkUnnamed1034(core.List<api.VideoCategory> o) {
3033 unittest.expect(o, unittest.hasLength(2)); 3039 unittest.expect(o, unittest.hasLength(2));
3034 checkVideoCategory(o[0]); 3040 checkVideoCategory(o[0]);
3035 checkVideoCategory(o[1]); 3041 checkVideoCategory(o[1]);
3036 } 3042 }
3037 3043
3038 core.int buildCounterVideoCategoryListResponse = 0; 3044 core.int buildCounterVideoCategoryListResponse = 0;
3039 buildVideoCategoryListResponse() { 3045 buildVideoCategoryListResponse() {
3040 var o = new api.VideoCategoryListResponse(); 3046 var o = new api.VideoCategoryListResponse();
3041 buildCounterVideoCategoryListResponse++; 3047 buildCounterVideoCategoryListResponse++;
3042 if (buildCounterVideoCategoryListResponse < 3) { 3048 if (buildCounterVideoCategoryListResponse < 3) {
3043 o.etag = "foo"; 3049 o.etag = "foo";
3044 o.eventId = "foo"; 3050 o.eventId = "foo";
3045 o.items = buildUnnamed389(); 3051 o.items = buildUnnamed1034();
3046 o.kind = "foo"; 3052 o.kind = "foo";
3047 o.nextPageToken = "foo"; 3053 o.nextPageToken = "foo";
3048 o.pageInfo = buildPageInfo(); 3054 o.pageInfo = buildPageInfo();
3049 o.prevPageToken = "foo"; 3055 o.prevPageToken = "foo";
3050 o.tokenPagination = buildTokenPagination(); 3056 o.tokenPagination = buildTokenPagination();
3051 o.visitorId = "foo"; 3057 o.visitorId = "foo";
3052 } 3058 }
3053 buildCounterVideoCategoryListResponse--; 3059 buildCounterVideoCategoryListResponse--;
3054 return o; 3060 return o;
3055 } 3061 }
3056 3062
3057 checkVideoCategoryListResponse(api.VideoCategoryListResponse o) { 3063 checkVideoCategoryListResponse(api.VideoCategoryListResponse o) {
3058 buildCounterVideoCategoryListResponse++; 3064 buildCounterVideoCategoryListResponse++;
3059 if (buildCounterVideoCategoryListResponse < 3) { 3065 if (buildCounterVideoCategoryListResponse < 3) {
3060 unittest.expect(o.etag, unittest.equals('foo')); 3066 unittest.expect(o.etag, unittest.equals('foo'));
3061 unittest.expect(o.eventId, unittest.equals('foo')); 3067 unittest.expect(o.eventId, unittest.equals('foo'));
3062 checkUnnamed389(o.items); 3068 checkUnnamed1034(o.items);
3063 unittest.expect(o.kind, unittest.equals('foo')); 3069 unittest.expect(o.kind, unittest.equals('foo'));
3064 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3070 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3065 checkPageInfo(o.pageInfo); 3071 checkPageInfo(o.pageInfo);
3066 unittest.expect(o.prevPageToken, unittest.equals('foo')); 3072 unittest.expect(o.prevPageToken, unittest.equals('foo'));
3067 checkTokenPagination(o.tokenPagination); 3073 checkTokenPagination(o.tokenPagination);
3068 unittest.expect(o.visitorId, unittest.equals('foo')); 3074 unittest.expect(o.visitorId, unittest.equals('foo'));
3069 } 3075 }
3070 buildCounterVideoCategoryListResponse--; 3076 buildCounterVideoCategoryListResponse--;
3071 } 3077 }
3072 3078
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
3119 checkAccessPolicy(o.countryRestriction); 3125 checkAccessPolicy(o.countryRestriction);
3120 unittest.expect(o.definition, unittest.equals('foo')); 3126 unittest.expect(o.definition, unittest.equals('foo'));
3121 unittest.expect(o.dimension, unittest.equals('foo')); 3127 unittest.expect(o.dimension, unittest.equals('foo'));
3122 unittest.expect(o.duration, unittest.equals('foo')); 3128 unittest.expect(o.duration, unittest.equals('foo'));
3123 unittest.expect(o.licensedContent, unittest.isTrue); 3129 unittest.expect(o.licensedContent, unittest.isTrue);
3124 checkVideoContentDetailsRegionRestriction(o.regionRestriction); 3130 checkVideoContentDetailsRegionRestriction(o.regionRestriction);
3125 } 3131 }
3126 buildCounterVideoContentDetails--; 3132 buildCounterVideoContentDetails--;
3127 } 3133 }
3128 3134
3129 buildUnnamed390() { 3135 buildUnnamed1035() {
3130 var o = new core.List<core.String>(); 3136 var o = new core.List<core.String>();
3131 o.add("foo"); 3137 o.add("foo");
3132 o.add("foo"); 3138 o.add("foo");
3133 return o; 3139 return o;
3134 } 3140 }
3135 3141
3136 checkUnnamed390(core.List<core.String> o) { 3142 checkUnnamed1035(core.List<core.String> o) {
3137 unittest.expect(o, unittest.hasLength(2)); 3143 unittest.expect(o, unittest.hasLength(2));
3138 unittest.expect(o[0], unittest.equals('foo')); 3144 unittest.expect(o[0], unittest.equals('foo'));
3139 unittest.expect(o[1], unittest.equals('foo')); 3145 unittest.expect(o[1], unittest.equals('foo'));
3140 } 3146 }
3141 3147
3142 buildUnnamed391() { 3148 buildUnnamed1036() {
3143 var o = new core.List<core.String>(); 3149 var o = new core.List<core.String>();
3144 o.add("foo"); 3150 o.add("foo");
3145 o.add("foo"); 3151 o.add("foo");
3146 return o; 3152 return o;
3147 } 3153 }
3148 3154
3149 checkUnnamed391(core.List<core.String> o) { 3155 checkUnnamed1036(core.List<core.String> o) {
3150 unittest.expect(o, unittest.hasLength(2)); 3156 unittest.expect(o, unittest.hasLength(2));
3151 unittest.expect(o[0], unittest.equals('foo')); 3157 unittest.expect(o[0], unittest.equals('foo'));
3152 unittest.expect(o[1], unittest.equals('foo')); 3158 unittest.expect(o[1], unittest.equals('foo'));
3153 } 3159 }
3154 3160
3155 core.int buildCounterVideoContentDetailsRegionRestriction = 0; 3161 core.int buildCounterVideoContentDetailsRegionRestriction = 0;
3156 buildVideoContentDetailsRegionRestriction() { 3162 buildVideoContentDetailsRegionRestriction() {
3157 var o = new api.VideoContentDetailsRegionRestriction(); 3163 var o = new api.VideoContentDetailsRegionRestriction();
3158 buildCounterVideoContentDetailsRegionRestriction++; 3164 buildCounterVideoContentDetailsRegionRestriction++;
3159 if (buildCounterVideoContentDetailsRegionRestriction < 3) { 3165 if (buildCounterVideoContentDetailsRegionRestriction < 3) {
3160 o.allowed = buildUnnamed390(); 3166 o.allowed = buildUnnamed1035();
3161 o.blocked = buildUnnamed391(); 3167 o.blocked = buildUnnamed1036();
3162 } 3168 }
3163 buildCounterVideoContentDetailsRegionRestriction--; 3169 buildCounterVideoContentDetailsRegionRestriction--;
3164 return o; 3170 return o;
3165 } 3171 }
3166 3172
3167 checkVideoContentDetailsRegionRestriction(api.VideoContentDetailsRegionRestricti on o) { 3173 checkVideoContentDetailsRegionRestriction(api.VideoContentDetailsRegionRestricti on o) {
3168 buildCounterVideoContentDetailsRegionRestriction++; 3174 buildCounterVideoContentDetailsRegionRestriction++;
3169 if (buildCounterVideoContentDetailsRegionRestriction < 3) { 3175 if (buildCounterVideoContentDetailsRegionRestriction < 3) {
3170 checkUnnamed390(o.allowed); 3176 checkUnnamed1035(o.allowed);
3171 checkUnnamed391(o.blocked); 3177 checkUnnamed1036(o.blocked);
3172 } 3178 }
3173 buildCounterVideoContentDetailsRegionRestriction--; 3179 buildCounterVideoContentDetailsRegionRestriction--;
3174 } 3180 }
3175 3181
3176 core.int buildCounterVideoConversionPing = 0; 3182 core.int buildCounterVideoConversionPing = 0;
3177 buildVideoConversionPing() { 3183 buildVideoConversionPing() {
3178 var o = new api.VideoConversionPing(); 3184 var o = new api.VideoConversionPing();
3179 buildCounterVideoConversionPing++; 3185 buildCounterVideoConversionPing++;
3180 if (buildCounterVideoConversionPing < 3) { 3186 if (buildCounterVideoConversionPing < 3) {
3181 o.context = "foo"; 3187 o.context = "foo";
3182 o.conversionUrl = "foo"; 3188 o.conversionUrl = "foo";
3183 } 3189 }
3184 buildCounterVideoConversionPing--; 3190 buildCounterVideoConversionPing--;
3185 return o; 3191 return o;
3186 } 3192 }
3187 3193
3188 checkVideoConversionPing(api.VideoConversionPing o) { 3194 checkVideoConversionPing(api.VideoConversionPing o) {
3189 buildCounterVideoConversionPing++; 3195 buildCounterVideoConversionPing++;
3190 if (buildCounterVideoConversionPing < 3) { 3196 if (buildCounterVideoConversionPing < 3) {
3191 unittest.expect(o.context, unittest.equals('foo')); 3197 unittest.expect(o.context, unittest.equals('foo'));
3192 unittest.expect(o.conversionUrl, unittest.equals('foo')); 3198 unittest.expect(o.conversionUrl, unittest.equals('foo'));
3193 } 3199 }
3194 buildCounterVideoConversionPing--; 3200 buildCounterVideoConversionPing--;
3195 } 3201 }
3196 3202
3197 buildUnnamed392() { 3203 buildUnnamed1037() {
3198 var o = new core.List<api.VideoConversionPing>(); 3204 var o = new core.List<api.VideoConversionPing>();
3199 o.add(buildVideoConversionPing()); 3205 o.add(buildVideoConversionPing());
3200 o.add(buildVideoConversionPing()); 3206 o.add(buildVideoConversionPing());
3201 return o; 3207 return o;
3202 } 3208 }
3203 3209
3204 checkUnnamed392(core.List<api.VideoConversionPing> o) { 3210 checkUnnamed1037(core.List<api.VideoConversionPing> o) {
3205 unittest.expect(o, unittest.hasLength(2)); 3211 unittest.expect(o, unittest.hasLength(2));
3206 checkVideoConversionPing(o[0]); 3212 checkVideoConversionPing(o[0]);
3207 checkVideoConversionPing(o[1]); 3213 checkVideoConversionPing(o[1]);
3208 } 3214 }
3209 3215
3210 core.int buildCounterVideoConversionPings = 0; 3216 core.int buildCounterVideoConversionPings = 0;
3211 buildVideoConversionPings() { 3217 buildVideoConversionPings() {
3212 var o = new api.VideoConversionPings(); 3218 var o = new api.VideoConversionPings();
3213 buildCounterVideoConversionPings++; 3219 buildCounterVideoConversionPings++;
3214 if (buildCounterVideoConversionPings < 3) { 3220 if (buildCounterVideoConversionPings < 3) {
3215 o.pings = buildUnnamed392(); 3221 o.pings = buildUnnamed1037();
3216 } 3222 }
3217 buildCounterVideoConversionPings--; 3223 buildCounterVideoConversionPings--;
3218 return o; 3224 return o;
3219 } 3225 }
3220 3226
3221 checkVideoConversionPings(api.VideoConversionPings o) { 3227 checkVideoConversionPings(api.VideoConversionPings o) {
3222 buildCounterVideoConversionPings++; 3228 buildCounterVideoConversionPings++;
3223 if (buildCounterVideoConversionPings < 3) { 3229 if (buildCounterVideoConversionPings < 3) {
3224 checkUnnamed392(o.pings); 3230 checkUnnamed1037(o.pings);
3225 } 3231 }
3226 buildCounterVideoConversionPings--; 3232 buildCounterVideoConversionPings--;
3227 } 3233 }
3228 3234
3229 buildUnnamed393() { 3235 buildUnnamed1038() {
3230 var o = new core.List<api.VideoFileDetailsAudioStream>(); 3236 var o = new core.List<api.VideoFileDetailsAudioStream>();
3231 o.add(buildVideoFileDetailsAudioStream()); 3237 o.add(buildVideoFileDetailsAudioStream());
3232 o.add(buildVideoFileDetailsAudioStream()); 3238 o.add(buildVideoFileDetailsAudioStream());
3233 return o; 3239 return o;
3234 } 3240 }
3235 3241
3236 checkUnnamed393(core.List<api.VideoFileDetailsAudioStream> o) { 3242 checkUnnamed1038(core.List<api.VideoFileDetailsAudioStream> o) {
3237 unittest.expect(o, unittest.hasLength(2)); 3243 unittest.expect(o, unittest.hasLength(2));
3238 checkVideoFileDetailsAudioStream(o[0]); 3244 checkVideoFileDetailsAudioStream(o[0]);
3239 checkVideoFileDetailsAudioStream(o[1]); 3245 checkVideoFileDetailsAudioStream(o[1]);
3240 } 3246 }
3241 3247
3242 buildUnnamed394() { 3248 buildUnnamed1039() {
3243 var o = new core.List<api.VideoFileDetailsVideoStream>(); 3249 var o = new core.List<api.VideoFileDetailsVideoStream>();
3244 o.add(buildVideoFileDetailsVideoStream()); 3250 o.add(buildVideoFileDetailsVideoStream());
3245 o.add(buildVideoFileDetailsVideoStream()); 3251 o.add(buildVideoFileDetailsVideoStream());
3246 return o; 3252 return o;
3247 } 3253 }
3248 3254
3249 checkUnnamed394(core.List<api.VideoFileDetailsVideoStream> o) { 3255 checkUnnamed1039(core.List<api.VideoFileDetailsVideoStream> o) {
3250 unittest.expect(o, unittest.hasLength(2)); 3256 unittest.expect(o, unittest.hasLength(2));
3251 checkVideoFileDetailsVideoStream(o[0]); 3257 checkVideoFileDetailsVideoStream(o[0]);
3252 checkVideoFileDetailsVideoStream(o[1]); 3258 checkVideoFileDetailsVideoStream(o[1]);
3253 } 3259 }
3254 3260
3255 core.int buildCounterVideoFileDetails = 0; 3261 core.int buildCounterVideoFileDetails = 0;
3256 buildVideoFileDetails() { 3262 buildVideoFileDetails() {
3257 var o = new api.VideoFileDetails(); 3263 var o = new api.VideoFileDetails();
3258 buildCounterVideoFileDetails++; 3264 buildCounterVideoFileDetails++;
3259 if (buildCounterVideoFileDetails < 3) { 3265 if (buildCounterVideoFileDetails < 3) {
3260 o.audioStreams = buildUnnamed393(); 3266 o.audioStreams = buildUnnamed1038();
3261 o.bitrateBps = "foo"; 3267 o.bitrateBps = "foo";
3262 o.container = "foo"; 3268 o.container = "foo";
3263 o.creationTime = "foo"; 3269 o.creationTime = "foo";
3264 o.durationMs = "foo"; 3270 o.durationMs = "foo";
3265 o.fileName = "foo"; 3271 o.fileName = "foo";
3266 o.fileSize = "foo"; 3272 o.fileSize = "foo";
3267 o.fileType = "foo"; 3273 o.fileType = "foo";
3268 o.recordingLocation = buildGeoPoint(); 3274 o.recordingLocation = buildGeoPoint();
3269 o.videoStreams = buildUnnamed394(); 3275 o.videoStreams = buildUnnamed1039();
3270 } 3276 }
3271 buildCounterVideoFileDetails--; 3277 buildCounterVideoFileDetails--;
3272 return o; 3278 return o;
3273 } 3279 }
3274 3280
3275 checkVideoFileDetails(api.VideoFileDetails o) { 3281 checkVideoFileDetails(api.VideoFileDetails o) {
3276 buildCounterVideoFileDetails++; 3282 buildCounterVideoFileDetails++;
3277 if (buildCounterVideoFileDetails < 3) { 3283 if (buildCounterVideoFileDetails < 3) {
3278 checkUnnamed393(o.audioStreams); 3284 checkUnnamed1038(o.audioStreams);
3279 unittest.expect(o.bitrateBps, unittest.equals('foo')); 3285 unittest.expect(o.bitrateBps, unittest.equals('foo'));
3280 unittest.expect(o.container, unittest.equals('foo')); 3286 unittest.expect(o.container, unittest.equals('foo'));
3281 unittest.expect(o.creationTime, unittest.equals('foo')); 3287 unittest.expect(o.creationTime, unittest.equals('foo'));
3282 unittest.expect(o.durationMs, unittest.equals('foo')); 3288 unittest.expect(o.durationMs, unittest.equals('foo'));
3283 unittest.expect(o.fileName, unittest.equals('foo')); 3289 unittest.expect(o.fileName, unittest.equals('foo'));
3284 unittest.expect(o.fileSize, unittest.equals('foo')); 3290 unittest.expect(o.fileSize, unittest.equals('foo'));
3285 unittest.expect(o.fileType, unittest.equals('foo')); 3291 unittest.expect(o.fileType, unittest.equals('foo'));
3286 checkGeoPoint(o.recordingLocation); 3292 checkGeoPoint(o.recordingLocation);
3287 checkUnnamed394(o.videoStreams); 3293 checkUnnamed1039(o.videoStreams);
3288 } 3294 }
3289 buildCounterVideoFileDetails--; 3295 buildCounterVideoFileDetails--;
3290 } 3296 }
3291 3297
3292 core.int buildCounterVideoFileDetailsAudioStream = 0; 3298 core.int buildCounterVideoFileDetailsAudioStream = 0;
3293 buildVideoFileDetailsAudioStream() { 3299 buildVideoFileDetailsAudioStream() {
3294 var o = new api.VideoFileDetailsAudioStream(); 3300 var o = new api.VideoFileDetailsAudioStream();
3295 buildCounterVideoFileDetailsAudioStream++; 3301 buildCounterVideoFileDetailsAudioStream++;
3296 if (buildCounterVideoFileDetailsAudioStream < 3) { 3302 if (buildCounterVideoFileDetailsAudioStream < 3) {
3297 o.bitrateBps = "foo"; 3303 o.bitrateBps = "foo";
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
3340 unittest.expect(o.codec, unittest.equals('foo')); 3346 unittest.expect(o.codec, unittest.equals('foo'));
3341 unittest.expect(o.frameRateFps, unittest.equals(42.0)); 3347 unittest.expect(o.frameRateFps, unittest.equals(42.0));
3342 unittest.expect(o.heightPixels, unittest.equals(42)); 3348 unittest.expect(o.heightPixels, unittest.equals(42));
3343 unittest.expect(o.rotation, unittest.equals('foo')); 3349 unittest.expect(o.rotation, unittest.equals('foo'));
3344 unittest.expect(o.vendor, unittest.equals('foo')); 3350 unittest.expect(o.vendor, unittest.equals('foo'));
3345 unittest.expect(o.widthPixels, unittest.equals(42)); 3351 unittest.expect(o.widthPixels, unittest.equals(42));
3346 } 3352 }
3347 buildCounterVideoFileDetailsVideoStream--; 3353 buildCounterVideoFileDetailsVideoStream--;
3348 } 3354 }
3349 3355
3350 buildUnnamed395() { 3356 buildUnnamed1040() {
3351 var o = new core.List<api.VideoRating>(); 3357 var o = new core.List<api.VideoRating>();
3352 o.add(buildVideoRating()); 3358 o.add(buildVideoRating());
3353 o.add(buildVideoRating()); 3359 o.add(buildVideoRating());
3354 return o; 3360 return o;
3355 } 3361 }
3356 3362
3357 checkUnnamed395(core.List<api.VideoRating> o) { 3363 checkUnnamed1040(core.List<api.VideoRating> o) {
3358 unittest.expect(o, unittest.hasLength(2)); 3364 unittest.expect(o, unittest.hasLength(2));
3359 checkVideoRating(o[0]); 3365 checkVideoRating(o[0]);
3360 checkVideoRating(o[1]); 3366 checkVideoRating(o[1]);
3361 } 3367 }
3362 3368
3363 core.int buildCounterVideoGetRatingResponse = 0; 3369 core.int buildCounterVideoGetRatingResponse = 0;
3364 buildVideoGetRatingResponse() { 3370 buildVideoGetRatingResponse() {
3365 var o = new api.VideoGetRatingResponse(); 3371 var o = new api.VideoGetRatingResponse();
3366 buildCounterVideoGetRatingResponse++; 3372 buildCounterVideoGetRatingResponse++;
3367 if (buildCounterVideoGetRatingResponse < 3) { 3373 if (buildCounterVideoGetRatingResponse < 3) {
3368 o.etag = "foo"; 3374 o.etag = "foo";
3369 o.items = buildUnnamed395(); 3375 o.items = buildUnnamed1040();
3370 o.kind = "foo"; 3376 o.kind = "foo";
3371 } 3377 }
3372 buildCounterVideoGetRatingResponse--; 3378 buildCounterVideoGetRatingResponse--;
3373 return o; 3379 return o;
3374 } 3380 }
3375 3381
3376 checkVideoGetRatingResponse(api.VideoGetRatingResponse o) { 3382 checkVideoGetRatingResponse(api.VideoGetRatingResponse o) {
3377 buildCounterVideoGetRatingResponse++; 3383 buildCounterVideoGetRatingResponse++;
3378 if (buildCounterVideoGetRatingResponse < 3) { 3384 if (buildCounterVideoGetRatingResponse < 3) {
3379 unittest.expect(o.etag, unittest.equals('foo')); 3385 unittest.expect(o.etag, unittest.equals('foo'));
3380 checkUnnamed395(o.items); 3386 checkUnnamed1040(o.items);
3381 unittest.expect(o.kind, unittest.equals('foo')); 3387 unittest.expect(o.kind, unittest.equals('foo'));
3382 } 3388 }
3383 buildCounterVideoGetRatingResponse--; 3389 buildCounterVideoGetRatingResponse--;
3384 } 3390 }
3385 3391
3386 buildUnnamed396() { 3392 buildUnnamed1041() {
3387 var o = new core.List<api.Video>(); 3393 var o = new core.List<api.Video>();
3388 o.add(buildVideo()); 3394 o.add(buildVideo());
3389 o.add(buildVideo()); 3395 o.add(buildVideo());
3390 return o; 3396 return o;
3391 } 3397 }
3392 3398
3393 checkUnnamed396(core.List<api.Video> o) { 3399 checkUnnamed1041(core.List<api.Video> o) {
3394 unittest.expect(o, unittest.hasLength(2)); 3400 unittest.expect(o, unittest.hasLength(2));
3395 checkVideo(o[0]); 3401 checkVideo(o[0]);
3396 checkVideo(o[1]); 3402 checkVideo(o[1]);
3397 } 3403 }
3398 3404
3399 core.int buildCounterVideoListResponse = 0; 3405 core.int buildCounterVideoListResponse = 0;
3400 buildVideoListResponse() { 3406 buildVideoListResponse() {
3401 var o = new api.VideoListResponse(); 3407 var o = new api.VideoListResponse();
3402 buildCounterVideoListResponse++; 3408 buildCounterVideoListResponse++;
3403 if (buildCounterVideoListResponse < 3) { 3409 if (buildCounterVideoListResponse < 3) {
3404 o.etag = "foo"; 3410 o.etag = "foo";
3405 o.eventId = "foo"; 3411 o.eventId = "foo";
3406 o.items = buildUnnamed396(); 3412 o.items = buildUnnamed1041();
3407 o.kind = "foo"; 3413 o.kind = "foo";
3408 o.nextPageToken = "foo"; 3414 o.nextPageToken = "foo";
3409 o.pageInfo = buildPageInfo(); 3415 o.pageInfo = buildPageInfo();
3410 o.prevPageToken = "foo"; 3416 o.prevPageToken = "foo";
3411 o.tokenPagination = buildTokenPagination(); 3417 o.tokenPagination = buildTokenPagination();
3412 o.visitorId = "foo"; 3418 o.visitorId = "foo";
3413 } 3419 }
3414 buildCounterVideoListResponse--; 3420 buildCounterVideoListResponse--;
3415 return o; 3421 return o;
3416 } 3422 }
3417 3423
3418 checkVideoListResponse(api.VideoListResponse o) { 3424 checkVideoListResponse(api.VideoListResponse o) {
3419 buildCounterVideoListResponse++; 3425 buildCounterVideoListResponse++;
3420 if (buildCounterVideoListResponse < 3) { 3426 if (buildCounterVideoListResponse < 3) {
3421 unittest.expect(o.etag, unittest.equals('foo')); 3427 unittest.expect(o.etag, unittest.equals('foo'));
3422 unittest.expect(o.eventId, unittest.equals('foo')); 3428 unittest.expect(o.eventId, unittest.equals('foo'));
3423 checkUnnamed396(o.items); 3429 checkUnnamed1041(o.items);
3424 unittest.expect(o.kind, unittest.equals('foo')); 3430 unittest.expect(o.kind, unittest.equals('foo'));
3425 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3431 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3426 checkPageInfo(o.pageInfo); 3432 checkPageInfo(o.pageInfo);
3427 unittest.expect(o.prevPageToken, unittest.equals('foo')); 3433 unittest.expect(o.prevPageToken, unittest.equals('foo'));
3428 checkTokenPagination(o.tokenPagination); 3434 checkTokenPagination(o.tokenPagination);
3429 unittest.expect(o.visitorId, unittest.equals('foo')); 3435 unittest.expect(o.visitorId, unittest.equals('foo'));
3430 } 3436 }
3431 buildCounterVideoListResponse--; 3437 buildCounterVideoListResponse--;
3432 } 3438 }
3433 3439
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
3545 checkVideoProcessingDetailsProcessingProgress(api.VideoProcessingDetailsProcessi ngProgress o) { 3551 checkVideoProcessingDetailsProcessingProgress(api.VideoProcessingDetailsProcessi ngProgress o) {
3546 buildCounterVideoProcessingDetailsProcessingProgress++; 3552 buildCounterVideoProcessingDetailsProcessingProgress++;
3547 if (buildCounterVideoProcessingDetailsProcessingProgress < 3) { 3553 if (buildCounterVideoProcessingDetailsProcessingProgress < 3) {
3548 unittest.expect(o.partsProcessed, unittest.equals('foo')); 3554 unittest.expect(o.partsProcessed, unittest.equals('foo'));
3549 unittest.expect(o.partsTotal, unittest.equals('foo')); 3555 unittest.expect(o.partsTotal, unittest.equals('foo'));
3550 unittest.expect(o.timeLeftMs, unittest.equals('foo')); 3556 unittest.expect(o.timeLeftMs, unittest.equals('foo'));
3551 } 3557 }
3552 buildCounterVideoProcessingDetailsProcessingProgress--; 3558 buildCounterVideoProcessingDetailsProcessingProgress--;
3553 } 3559 }
3554 3560
3555 buildUnnamed397() { 3561 buildUnnamed1042() {
3556 var o = new core.List<core.String>(); 3562 var o = new core.List<core.String>();
3557 o.add("foo"); 3563 o.add("foo");
3558 o.add("foo"); 3564 o.add("foo");
3559 return o; 3565 return o;
3560 } 3566 }
3561 3567
3562 checkUnnamed397(core.List<core.String> o) { 3568 checkUnnamed1042(core.List<core.String> o) {
3563 unittest.expect(o, unittest.hasLength(2)); 3569 unittest.expect(o, unittest.hasLength(2));
3564 unittest.expect(o[0], unittest.equals('foo')); 3570 unittest.expect(o[0], unittest.equals('foo'));
3565 unittest.expect(o[1], unittest.equals('foo')); 3571 unittest.expect(o[1], unittest.equals('foo'));
3566 } 3572 }
3567 3573
3568 core.int buildCounterVideoProjectDetails = 0; 3574 core.int buildCounterVideoProjectDetails = 0;
3569 buildVideoProjectDetails() { 3575 buildVideoProjectDetails() {
3570 var o = new api.VideoProjectDetails(); 3576 var o = new api.VideoProjectDetails();
3571 buildCounterVideoProjectDetails++; 3577 buildCounterVideoProjectDetails++;
3572 if (buildCounterVideoProjectDetails < 3) { 3578 if (buildCounterVideoProjectDetails < 3) {
3573 o.tags = buildUnnamed397(); 3579 o.tags = buildUnnamed1042();
3574 } 3580 }
3575 buildCounterVideoProjectDetails--; 3581 buildCounterVideoProjectDetails--;
3576 return o; 3582 return o;
3577 } 3583 }
3578 3584
3579 checkVideoProjectDetails(api.VideoProjectDetails o) { 3585 checkVideoProjectDetails(api.VideoProjectDetails o) {
3580 buildCounterVideoProjectDetails++; 3586 buildCounterVideoProjectDetails++;
3581 if (buildCounterVideoProjectDetails < 3) { 3587 if (buildCounterVideoProjectDetails < 3) {
3582 checkUnnamed397(o.tags); 3588 checkUnnamed1042(o.tags);
3583 } 3589 }
3584 buildCounterVideoProjectDetails--; 3590 buildCounterVideoProjectDetails--;
3585 } 3591 }
3586 3592
3587 core.int buildCounterVideoRating = 0; 3593 core.int buildCounterVideoRating = 0;
3588 buildVideoRating() { 3594 buildVideoRating() {
3589 var o = new api.VideoRating(); 3595 var o = new api.VideoRating();
3590 buildCounterVideoRating++; 3596 buildCounterVideoRating++;
3591 if (buildCounterVideoRating < 3) { 3597 if (buildCounterVideoRating < 3) {
3592 o.rating = "foo"; 3598 o.rating = "foo";
(...skipping 28 matching lines...) Expand all
3621 checkVideoRecordingDetails(api.VideoRecordingDetails o) { 3627 checkVideoRecordingDetails(api.VideoRecordingDetails o) {
3622 buildCounterVideoRecordingDetails++; 3628 buildCounterVideoRecordingDetails++;
3623 if (buildCounterVideoRecordingDetails < 3) { 3629 if (buildCounterVideoRecordingDetails < 3) {
3624 checkGeoPoint(o.location); 3630 checkGeoPoint(o.location);
3625 unittest.expect(o.locationDescription, unittest.equals('foo')); 3631 unittest.expect(o.locationDescription, unittest.equals('foo'));
3626 unittest.expect(o.recordingDate, unittest.equals(core.DateTime.parse("2002-0 2-27T14:01:02"))); 3632 unittest.expect(o.recordingDate, unittest.equals(core.DateTime.parse("2002-0 2-27T14:01:02")));
3627 } 3633 }
3628 buildCounterVideoRecordingDetails--; 3634 buildCounterVideoRecordingDetails--;
3629 } 3635 }
3630 3636
3631 buildUnnamed398() { 3637 buildUnnamed1043() {
3632 var o = new core.List<core.String>(); 3638 var o = new core.List<core.String>();
3633 o.add("foo"); 3639 o.add("foo");
3634 o.add("foo"); 3640 o.add("foo");
3635 return o; 3641 return o;
3636 } 3642 }
3637 3643
3638 checkUnnamed398(core.List<core.String> o) { 3644 checkUnnamed1043(core.List<core.String> o) {
3639 unittest.expect(o, unittest.hasLength(2)); 3645 unittest.expect(o, unittest.hasLength(2));
3640 unittest.expect(o[0], unittest.equals('foo')); 3646 unittest.expect(o[0], unittest.equals('foo'));
3641 unittest.expect(o[1], unittest.equals('foo')); 3647 unittest.expect(o[1], unittest.equals('foo'));
3642 } 3648 }
3643 3649
3644 core.int buildCounterVideoSnippet = 0; 3650 core.int buildCounterVideoSnippet = 0;
3645 buildVideoSnippet() { 3651 buildVideoSnippet() {
3646 var o = new api.VideoSnippet(); 3652 var o = new api.VideoSnippet();
3647 buildCounterVideoSnippet++; 3653 buildCounterVideoSnippet++;
3648 if (buildCounterVideoSnippet < 3) { 3654 if (buildCounterVideoSnippet < 3) {
3649 o.categoryId = "foo"; 3655 o.categoryId = "foo";
3650 o.channelId = "foo"; 3656 o.channelId = "foo";
3651 o.channelTitle = "foo"; 3657 o.channelTitle = "foo";
3652 o.description = "foo"; 3658 o.description = "foo";
3653 o.liveBroadcastContent = "foo"; 3659 o.liveBroadcastContent = "foo";
3654 o.publishedAt = core.DateTime.parse("2002-02-27T14:01:02"); 3660 o.publishedAt = core.DateTime.parse("2002-02-27T14:01:02");
3655 o.tags = buildUnnamed398(); 3661 o.tags = buildUnnamed1043();
3656 o.thumbnails = buildThumbnailDetails(); 3662 o.thumbnails = buildThumbnailDetails();
3657 o.title = "foo"; 3663 o.title = "foo";
3658 } 3664 }
3659 buildCounterVideoSnippet--; 3665 buildCounterVideoSnippet--;
3660 return o; 3666 return o;
3661 } 3667 }
3662 3668
3663 checkVideoSnippet(api.VideoSnippet o) { 3669 checkVideoSnippet(api.VideoSnippet o) {
3664 buildCounterVideoSnippet++; 3670 buildCounterVideoSnippet++;
3665 if (buildCounterVideoSnippet < 3) { 3671 if (buildCounterVideoSnippet < 3) {
3666 unittest.expect(o.categoryId, unittest.equals('foo')); 3672 unittest.expect(o.categoryId, unittest.equals('foo'));
3667 unittest.expect(o.channelId, unittest.equals('foo')); 3673 unittest.expect(o.channelId, unittest.equals('foo'));
3668 unittest.expect(o.channelTitle, unittest.equals('foo')); 3674 unittest.expect(o.channelTitle, unittest.equals('foo'));
3669 unittest.expect(o.description, unittest.equals('foo')); 3675 unittest.expect(o.description, unittest.equals('foo'));
3670 unittest.expect(o.liveBroadcastContent, unittest.equals('foo')); 3676 unittest.expect(o.liveBroadcastContent, unittest.equals('foo'));
3671 unittest.expect(o.publishedAt, unittest.equals(core.DateTime.parse("2002-02- 27T14:01:02"))); 3677 unittest.expect(o.publishedAt, unittest.equals(core.DateTime.parse("2002-02- 27T14:01:02")));
3672 checkUnnamed398(o.tags); 3678 checkUnnamed1043(o.tags);
3673 checkThumbnailDetails(o.thumbnails); 3679 checkThumbnailDetails(o.thumbnails);
3674 unittest.expect(o.title, unittest.equals('foo')); 3680 unittest.expect(o.title, unittest.equals('foo'));
3675 } 3681 }
3676 buildCounterVideoSnippet--; 3682 buildCounterVideoSnippet--;
3677 } 3683 }
3678 3684
3679 core.int buildCounterVideoStatistics = 0; 3685 core.int buildCounterVideoStatistics = 0;
3680 buildVideoStatistics() { 3686 buildVideoStatistics() {
3681 var o = new api.VideoStatistics(); 3687 var o = new api.VideoStatistics();
3682 buildCounterVideoStatistics++; 3688 buildCounterVideoStatistics++;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
3729 unittest.expect(o.license, unittest.equals('foo')); 3735 unittest.expect(o.license, unittest.equals('foo'));
3730 unittest.expect(o.privacyStatus, unittest.equals('foo')); 3736 unittest.expect(o.privacyStatus, unittest.equals('foo'));
3731 unittest.expect(o.publicStatsViewable, unittest.isTrue); 3737 unittest.expect(o.publicStatsViewable, unittest.isTrue);
3732 unittest.expect(o.publishAt, unittest.equals(core.DateTime.parse("2002-02-27 T14:01:02"))); 3738 unittest.expect(o.publishAt, unittest.equals(core.DateTime.parse("2002-02-27 T14:01:02")));
3733 unittest.expect(o.rejectionReason, unittest.equals('foo')); 3739 unittest.expect(o.rejectionReason, unittest.equals('foo'));
3734 unittest.expect(o.uploadStatus, unittest.equals('foo')); 3740 unittest.expect(o.uploadStatus, unittest.equals('foo'));
3735 } 3741 }
3736 buildCounterVideoStatus--; 3742 buildCounterVideoStatus--;
3737 } 3743 }
3738 3744
3739 buildUnnamed399() { 3745 buildUnnamed1044() {
3740 var o = new core.List<core.String>(); 3746 var o = new core.List<core.String>();
3741 o.add("foo"); 3747 o.add("foo");
3742 o.add("foo"); 3748 o.add("foo");
3743 return o; 3749 return o;
3744 } 3750 }
3745 3751
3746 checkUnnamed399(core.List<core.String> o) { 3752 checkUnnamed1044(core.List<core.String> o) {
3747 unittest.expect(o, unittest.hasLength(2)); 3753 unittest.expect(o, unittest.hasLength(2));
3748 unittest.expect(o[0], unittest.equals('foo')); 3754 unittest.expect(o[0], unittest.equals('foo'));
3749 unittest.expect(o[1], unittest.equals('foo')); 3755 unittest.expect(o[1], unittest.equals('foo'));
3750 } 3756 }
3751 3757
3752 buildUnnamed400() { 3758 buildUnnamed1045() {
3753 var o = new core.List<core.String>(); 3759 var o = new core.List<core.String>();
3754 o.add("foo"); 3760 o.add("foo");
3755 o.add("foo"); 3761 o.add("foo");
3756 return o; 3762 return o;
3757 } 3763 }
3758 3764
3759 checkUnnamed400(core.List<core.String> o) { 3765 checkUnnamed1045(core.List<core.String> o) {
3760 unittest.expect(o, unittest.hasLength(2)); 3766 unittest.expect(o, unittest.hasLength(2));
3761 unittest.expect(o[0], unittest.equals('foo')); 3767 unittest.expect(o[0], unittest.equals('foo'));
3762 unittest.expect(o[1], unittest.equals('foo')); 3768 unittest.expect(o[1], unittest.equals('foo'));
3763 } 3769 }
3764 3770
3765 buildUnnamed401() { 3771 buildUnnamed1046() {
3766 var o = new core.List<core.String>(); 3772 var o = new core.List<core.String>();
3767 o.add("foo"); 3773 o.add("foo");
3768 o.add("foo"); 3774 o.add("foo");
3769 return o; 3775 return o;
3770 } 3776 }
3771 3777
3772 checkUnnamed401(core.List<core.String> o) { 3778 checkUnnamed1046(core.List<core.String> o) {
3773 unittest.expect(o, unittest.hasLength(2)); 3779 unittest.expect(o, unittest.hasLength(2));
3774 unittest.expect(o[0], unittest.equals('foo')); 3780 unittest.expect(o[0], unittest.equals('foo'));
3775 unittest.expect(o[1], unittest.equals('foo')); 3781 unittest.expect(o[1], unittest.equals('foo'));
3776 } 3782 }
3777 3783
3778 buildUnnamed402() { 3784 buildUnnamed1047() {
3779 var o = new core.List<core.String>(); 3785 var o = new core.List<core.String>();
3780 o.add("foo"); 3786 o.add("foo");
3781 o.add("foo"); 3787 o.add("foo");
3782 return o; 3788 return o;
3783 } 3789 }
3784 3790
3785 checkUnnamed402(core.List<core.String> o) { 3791 checkUnnamed1047(core.List<core.String> o) {
3786 unittest.expect(o, unittest.hasLength(2)); 3792 unittest.expect(o, unittest.hasLength(2));
3787 unittest.expect(o[0], unittest.equals('foo')); 3793 unittest.expect(o[0], unittest.equals('foo'));
3788 unittest.expect(o[1], unittest.equals('foo')); 3794 unittest.expect(o[1], unittest.equals('foo'));
3789 } 3795 }
3790 3796
3791 buildUnnamed403() { 3797 buildUnnamed1048() {
3792 var o = new core.List<api.VideoSuggestionsTagSuggestion>(); 3798 var o = new core.List<api.VideoSuggestionsTagSuggestion>();
3793 o.add(buildVideoSuggestionsTagSuggestion()); 3799 o.add(buildVideoSuggestionsTagSuggestion());
3794 o.add(buildVideoSuggestionsTagSuggestion()); 3800 o.add(buildVideoSuggestionsTagSuggestion());
3795 return o; 3801 return o;
3796 } 3802 }
3797 3803
3798 checkUnnamed403(core.List<api.VideoSuggestionsTagSuggestion> o) { 3804 checkUnnamed1048(core.List<api.VideoSuggestionsTagSuggestion> o) {
3799 unittest.expect(o, unittest.hasLength(2)); 3805 unittest.expect(o, unittest.hasLength(2));
3800 checkVideoSuggestionsTagSuggestion(o[0]); 3806 checkVideoSuggestionsTagSuggestion(o[0]);
3801 checkVideoSuggestionsTagSuggestion(o[1]); 3807 checkVideoSuggestionsTagSuggestion(o[1]);
3802 } 3808 }
3803 3809
3804 core.int buildCounterVideoSuggestions = 0; 3810 core.int buildCounterVideoSuggestions = 0;
3805 buildVideoSuggestions() { 3811 buildVideoSuggestions() {
3806 var o = new api.VideoSuggestions(); 3812 var o = new api.VideoSuggestions();
3807 buildCounterVideoSuggestions++; 3813 buildCounterVideoSuggestions++;
3808 if (buildCounterVideoSuggestions < 3) { 3814 if (buildCounterVideoSuggestions < 3) {
3809 o.editorSuggestions = buildUnnamed399(); 3815 o.editorSuggestions = buildUnnamed1044();
3810 o.processingErrors = buildUnnamed400(); 3816 o.processingErrors = buildUnnamed1045();
3811 o.processingHints = buildUnnamed401(); 3817 o.processingHints = buildUnnamed1046();
3812 o.processingWarnings = buildUnnamed402(); 3818 o.processingWarnings = buildUnnamed1047();
3813 o.tagSuggestions = buildUnnamed403(); 3819 o.tagSuggestions = buildUnnamed1048();
3814 } 3820 }
3815 buildCounterVideoSuggestions--; 3821 buildCounterVideoSuggestions--;
3816 return o; 3822 return o;
3817 } 3823 }
3818 3824
3819 checkVideoSuggestions(api.VideoSuggestions o) { 3825 checkVideoSuggestions(api.VideoSuggestions o) {
3820 buildCounterVideoSuggestions++; 3826 buildCounterVideoSuggestions++;
3821 if (buildCounterVideoSuggestions < 3) { 3827 if (buildCounterVideoSuggestions < 3) {
3822 checkUnnamed399(o.editorSuggestions); 3828 checkUnnamed1044(o.editorSuggestions);
3823 checkUnnamed400(o.processingErrors); 3829 checkUnnamed1045(o.processingErrors);
3824 checkUnnamed401(o.processingHints); 3830 checkUnnamed1046(o.processingHints);
3825 checkUnnamed402(o.processingWarnings); 3831 checkUnnamed1047(o.processingWarnings);
3826 checkUnnamed403(o.tagSuggestions); 3832 checkUnnamed1048(o.tagSuggestions);
3827 } 3833 }
3828 buildCounterVideoSuggestions--; 3834 buildCounterVideoSuggestions--;
3829 } 3835 }
3830 3836
3831 buildUnnamed404() { 3837 buildUnnamed1049() {
3832 var o = new core.List<core.String>(); 3838 var o = new core.List<core.String>();
3833 o.add("foo"); 3839 o.add("foo");
3834 o.add("foo"); 3840 o.add("foo");
3835 return o; 3841 return o;
3836 } 3842 }
3837 3843
3838 checkUnnamed404(core.List<core.String> o) { 3844 checkUnnamed1049(core.List<core.String> o) {
3839 unittest.expect(o, unittest.hasLength(2)); 3845 unittest.expect(o, unittest.hasLength(2));
3840 unittest.expect(o[0], unittest.equals('foo')); 3846 unittest.expect(o[0], unittest.equals('foo'));
3841 unittest.expect(o[1], unittest.equals('foo')); 3847 unittest.expect(o[1], unittest.equals('foo'));
3842 } 3848 }
3843 3849
3844 core.int buildCounterVideoSuggestionsTagSuggestion = 0; 3850 core.int buildCounterVideoSuggestionsTagSuggestion = 0;
3845 buildVideoSuggestionsTagSuggestion() { 3851 buildVideoSuggestionsTagSuggestion() {
3846 var o = new api.VideoSuggestionsTagSuggestion(); 3852 var o = new api.VideoSuggestionsTagSuggestion();
3847 buildCounterVideoSuggestionsTagSuggestion++; 3853 buildCounterVideoSuggestionsTagSuggestion++;
3848 if (buildCounterVideoSuggestionsTagSuggestion < 3) { 3854 if (buildCounterVideoSuggestionsTagSuggestion < 3) {
3849 o.categoryRestricts = buildUnnamed404(); 3855 o.categoryRestricts = buildUnnamed1049();
3850 o.tag = "foo"; 3856 o.tag = "foo";
3851 } 3857 }
3852 buildCounterVideoSuggestionsTagSuggestion--; 3858 buildCounterVideoSuggestionsTagSuggestion--;
3853 return o; 3859 return o;
3854 } 3860 }
3855 3861
3856 checkVideoSuggestionsTagSuggestion(api.VideoSuggestionsTagSuggestion o) { 3862 checkVideoSuggestionsTagSuggestion(api.VideoSuggestionsTagSuggestion o) {
3857 buildCounterVideoSuggestionsTagSuggestion++; 3863 buildCounterVideoSuggestionsTagSuggestion++;
3858 if (buildCounterVideoSuggestionsTagSuggestion < 3) { 3864 if (buildCounterVideoSuggestionsTagSuggestion < 3) {
3859 checkUnnamed404(o.categoryRestricts); 3865 checkUnnamed1049(o.categoryRestricts);
3860 unittest.expect(o.tag, unittest.equals('foo')); 3866 unittest.expect(o.tag, unittest.equals('foo'));
3861 } 3867 }
3862 buildCounterVideoSuggestionsTagSuggestion--; 3868 buildCounterVideoSuggestionsTagSuggestion--;
3863 } 3869 }
3864 3870
3865 buildUnnamed405() { 3871 buildUnnamed1050() {
3866 var o = new core.List<core.String>(); 3872 var o = new core.List<core.String>();
3867 o.add("foo"); 3873 o.add("foo");
3868 o.add("foo"); 3874 o.add("foo");
3869 return o; 3875 return o;
3870 } 3876 }
3871 3877
3872 checkUnnamed405(core.List<core.String> o) { 3878 checkUnnamed1050(core.List<core.String> o) {
3873 unittest.expect(o, unittest.hasLength(2)); 3879 unittest.expect(o, unittest.hasLength(2));
3874 unittest.expect(o[0], unittest.equals('foo')); 3880 unittest.expect(o[0], unittest.equals('foo'));
3875 unittest.expect(o[1], unittest.equals('foo')); 3881 unittest.expect(o[1], unittest.equals('foo'));
3876 } 3882 }
3877 3883
3878 buildUnnamed406() { 3884 buildUnnamed1051() {
3879 var o = new core.List<core.String>(); 3885 var o = new core.List<core.String>();
3880 o.add("foo"); 3886 o.add("foo");
3881 o.add("foo"); 3887 o.add("foo");
3882 return o; 3888 return o;
3883 } 3889 }
3884 3890
3885 checkUnnamed406(core.List<core.String> o) { 3891 checkUnnamed1051(core.List<core.String> o) {
3886 unittest.expect(o, unittest.hasLength(2)); 3892 unittest.expect(o, unittest.hasLength(2));
3887 unittest.expect(o[0], unittest.equals('foo')); 3893 unittest.expect(o[0], unittest.equals('foo'));
3888 unittest.expect(o[1], unittest.equals('foo')); 3894 unittest.expect(o[1], unittest.equals('foo'));
3889 } 3895 }
3890 3896
3891 core.int buildCounterVideoTopicDetails = 0; 3897 core.int buildCounterVideoTopicDetails = 0;
3892 buildVideoTopicDetails() { 3898 buildVideoTopicDetails() {
3893 var o = new api.VideoTopicDetails(); 3899 var o = new api.VideoTopicDetails();
3894 buildCounterVideoTopicDetails++; 3900 buildCounterVideoTopicDetails++;
3895 if (buildCounterVideoTopicDetails < 3) { 3901 if (buildCounterVideoTopicDetails < 3) {
3896 o.relevantTopicIds = buildUnnamed405(); 3902 o.relevantTopicIds = buildUnnamed1050();
3897 o.topicIds = buildUnnamed406(); 3903 o.topicIds = buildUnnamed1051();
3898 } 3904 }
3899 buildCounterVideoTopicDetails--; 3905 buildCounterVideoTopicDetails--;
3900 return o; 3906 return o;
3901 } 3907 }
3902 3908
3903 checkVideoTopicDetails(api.VideoTopicDetails o) { 3909 checkVideoTopicDetails(api.VideoTopicDetails o) {
3904 buildCounterVideoTopicDetails++; 3910 buildCounterVideoTopicDetails++;
3905 if (buildCounterVideoTopicDetails < 3) { 3911 if (buildCounterVideoTopicDetails < 3) {
3906 checkUnnamed405(o.relevantTopicIds); 3912 checkUnnamed1050(o.relevantTopicIds);
3907 checkUnnamed406(o.topicIds); 3913 checkUnnamed1051(o.topicIds);
3908 } 3914 }
3909 buildCounterVideoTopicDetails--; 3915 buildCounterVideoTopicDetails--;
3910 } 3916 }
3911 3917
3912 core.int buildCounterWatchSettings = 0; 3918 core.int buildCounterWatchSettings = 0;
3913 buildWatchSettings() { 3919 buildWatchSettings() {
3914 var o = new api.WatchSettings(); 3920 var o = new api.WatchSettings();
3915 buildCounterWatchSettings++; 3921 buildCounterWatchSettings++;
3916 if (buildCounterWatchSettings < 3) { 3922 if (buildCounterWatchSettings < 3) {
3917 o.backgroundColor = "foo"; 3923 o.backgroundColor = "foo";
(...skipping 3655 matching lines...) Expand 10 before | Expand all | Expand 10 after
7573 return new async.Future.value(common_test.stringResponse(200, h, resp)); 7579 return new async.Future.value(common_test.stringResponse(200, h, resp));
7574 }), true); 7580 }), true);
7575 res.unset(arg_channelId, onBehalfOfContentOwner: arg_onBehalfOfContentOwne r).then(unittest.expectAsync((_) {})); 7581 res.unset(arg_channelId, onBehalfOfContentOwner: arg_onBehalfOfContentOwne r).then(unittest.expectAsync((_) {}));
7576 }); 7582 });
7577 7583
7578 }); 7584 });
7579 7585
7580 7586
7581 } 7587 }
7582 7588
OLDNEW
« no previous file with comments | « generated/googleapis/test/webmasters/v3_test.dart ('k') | generated/googleapis/test/youtubeanalytics/v1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698