| Index: generated/googleapis/test/drive/v3_test.dart
|
| diff --git a/generated/googleapis/test/drive/v3_test.dart b/generated/googleapis/test/drive/v3_test.dart
|
| index 1cf67d4724f876dc2f281790becf0743a18acfa4..c99bae19b921486e63ca3cf281ca6e9ac3a391ae 100644
|
| --- a/generated/googleapis/test/drive/v3_test.dart
|
| +++ b/generated/googleapis/test/drive/v3_test.dart
|
| @@ -51,79 +51,79 @@ http.StreamedResponse stringResponse(
|
| return new http.StreamedResponse(stream, status, headers: headers);
|
| }
|
|
|
| -buildUnnamed1672() {
|
| +buildUnnamed2502() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed1672(core.List<core.String> o) {
|
| +checkUnnamed2502(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| }
|
|
|
| -buildUnnamed1673() {
|
| +buildUnnamed2503() {
|
| var o = new core.Map<core.String, core.List<core.String>>();
|
| - o["x"] = buildUnnamed1672();
|
| - o["y"] = buildUnnamed1672();
|
| + o["x"] = buildUnnamed2502();
|
| + o["y"] = buildUnnamed2502();
|
| return o;
|
| }
|
|
|
| -checkUnnamed1673(core.Map<core.String, core.List<core.String>> o) {
|
| +checkUnnamed2503(core.Map<core.String, core.List<core.String>> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| - checkUnnamed1672(o["x"]);
|
| - checkUnnamed1672(o["y"]);
|
| + checkUnnamed2502(o["x"]);
|
| + checkUnnamed2502(o["y"]);
|
| }
|
|
|
| -buildUnnamed1674() {
|
| +buildUnnamed2504() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed1674(core.List<core.String> o) {
|
| +checkUnnamed2504(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| }
|
|
|
| -buildUnnamed1675() {
|
| +buildUnnamed2505() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed1675(core.List<core.String> o) {
|
| +checkUnnamed2505(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| }
|
|
|
| -buildUnnamed1676() {
|
| +buildUnnamed2506() {
|
| var o = new core.Map<core.String, core.List<core.String>>();
|
| - o["x"] = buildUnnamed1675();
|
| - o["y"] = buildUnnamed1675();
|
| + o["x"] = buildUnnamed2505();
|
| + o["y"] = buildUnnamed2505();
|
| return o;
|
| }
|
|
|
| -checkUnnamed1676(core.Map<core.String, core.List<core.String>> o) {
|
| +checkUnnamed2506(core.Map<core.String, core.List<core.String>> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| - checkUnnamed1675(o["x"]);
|
| - checkUnnamed1675(o["y"]);
|
| + checkUnnamed2505(o["x"]);
|
| + checkUnnamed2505(o["y"]);
|
| }
|
|
|
| -buildUnnamed1677() {
|
| +buildUnnamed2507() {
|
| var o = new core.Map<core.String, core.String>();
|
| o["x"] = "foo";
|
| o["y"] = "foo";
|
| return o;
|
| }
|
|
|
| -checkUnnamed1677(core.Map<core.String, core.String> o) {
|
| +checkUnnamed2507(core.Map<core.String, core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o["x"], unittest.equals('foo'));
|
| unittest.expect(o["y"], unittest.equals('foo'));
|
| @@ -160,11 +160,11 @@ buildAbout() {
|
| buildCounterAbout++;
|
| if (buildCounterAbout < 3) {
|
| o.appInstalled = true;
|
| - o.exportFormats = buildUnnamed1673();
|
| - o.folderColorPalette = buildUnnamed1674();
|
| - o.importFormats = buildUnnamed1676();
|
| + o.exportFormats = buildUnnamed2503();
|
| + o.folderColorPalette = buildUnnamed2504();
|
| + o.importFormats = buildUnnamed2506();
|
| o.kind = "foo";
|
| - o.maxImportSizes = buildUnnamed1677();
|
| + o.maxImportSizes = buildUnnamed2507();
|
| o.maxUploadSize = "foo";
|
| o.storageQuota = buildAboutStorageQuota();
|
| o.user = buildUser();
|
| @@ -177,11 +177,11 @@ checkAbout(api.About o) {
|
| buildCounterAbout++;
|
| if (buildCounterAbout < 3) {
|
| unittest.expect(o.appInstalled, unittest.isTrue);
|
| - checkUnnamed1673(o.exportFormats);
|
| - checkUnnamed1674(o.folderColorPalette);
|
| - checkUnnamed1676(o.importFormats);
|
| + checkUnnamed2503(o.exportFormats);
|
| + checkUnnamed2504(o.folderColorPalette);
|
| + checkUnnamed2506(o.importFormats);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| - checkUnnamed1677(o.maxImportSizes);
|
| + checkUnnamed2507(o.maxImportSizes);
|
| unittest.expect(o.maxUploadSize, unittest.equals('foo'));
|
| checkAboutStorageQuota(o.storageQuota);
|
| checkUser(o.user);
|
| @@ -216,14 +216,14 @@ checkChange(api.Change o) {
|
| buildCounterChange--;
|
| }
|
|
|
| -buildUnnamed1678() {
|
| +buildUnnamed2508() {
|
| var o = new core.List<api.Change>();
|
| o.add(buildChange());
|
| o.add(buildChange());
|
| return o;
|
| }
|
|
|
| -checkUnnamed1678(core.List<api.Change> o) {
|
| +checkUnnamed2508(core.List<api.Change> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkChange(o[0]);
|
| checkChange(o[1]);
|
| @@ -234,7 +234,7 @@ buildChangeList() {
|
| var o = new api.ChangeList();
|
| buildCounterChangeList++;
|
| if (buildCounterChangeList < 3) {
|
| - o.changes = buildUnnamed1678();
|
| + o.changes = buildUnnamed2508();
|
| o.kind = "foo";
|
| o.newStartPageToken = "foo";
|
| o.nextPageToken = "foo";
|
| @@ -246,7 +246,7 @@ buildChangeList() {
|
| checkChangeList(api.ChangeList o) {
|
| buildCounterChangeList++;
|
| if (buildCounterChangeList < 3) {
|
| - checkUnnamed1678(o.changes);
|
| + checkUnnamed2508(o.changes);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.newStartPageToken, unittest.equals('foo'));
|
| unittest.expect(o.nextPageToken, unittest.equals('foo'));
|
| @@ -254,14 +254,14 @@ checkChangeList(api.ChangeList o) {
|
| buildCounterChangeList--;
|
| }
|
|
|
| -buildUnnamed1679() {
|
| +buildUnnamed2509() {
|
| var o = new core.Map<core.String, core.String>();
|
| o["x"] = "foo";
|
| o["y"] = "foo";
|
| return o;
|
| }
|
|
|
| -checkUnnamed1679(core.Map<core.String, core.String> o) {
|
| +checkUnnamed2509(core.Map<core.String, core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o["x"], unittest.equals('foo'));
|
| unittest.expect(o["y"], unittest.equals('foo'));
|
| @@ -276,7 +276,7 @@ buildChannel() {
|
| o.expiration = "foo";
|
| o.id = "foo";
|
| o.kind = "foo";
|
| - o.params = buildUnnamed1679();
|
| + o.params = buildUnnamed2509();
|
| o.payload = true;
|
| o.resourceId = "foo";
|
| o.resourceUri = "foo";
|
| @@ -294,7 +294,7 @@ checkChannel(api.Channel o) {
|
| unittest.expect(o.expiration, unittest.equals('foo'));
|
| unittest.expect(o.id, unittest.equals('foo'));
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| - checkUnnamed1679(o.params);
|
| + checkUnnamed2509(o.params);
|
| unittest.expect(o.payload, unittest.isTrue);
|
| unittest.expect(o.resourceId, unittest.equals('foo'));
|
| unittest.expect(o.resourceUri, unittest.equals('foo'));
|
| @@ -325,14 +325,14 @@ checkCommentQuotedFileContent(api.CommentQuotedFileContent o) {
|
| buildCounterCommentQuotedFileContent--;
|
| }
|
|
|
| -buildUnnamed1680() {
|
| +buildUnnamed2510() {
|
| var o = new core.List<api.Reply>();
|
| o.add(buildReply());
|
| o.add(buildReply());
|
| return o;
|
| }
|
|
|
| -checkUnnamed1680(core.List<api.Reply> o) {
|
| +checkUnnamed2510(core.List<api.Reply> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkReply(o[0]);
|
| checkReply(o[1]);
|
| @@ -353,7 +353,7 @@ buildComment() {
|
| o.kind = "foo";
|
| o.modifiedTime = core.DateTime.parse("2002-02-27T14:01:02");
|
| o.quotedFileContent = buildCommentQuotedFileContent();
|
| - o.replies = buildUnnamed1680();
|
| + o.replies = buildUnnamed2510();
|
| o.resolved = true;
|
| }
|
| buildCounterComment--;
|
| @@ -373,20 +373,20 @@ checkComment(api.Comment o) {
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.modifiedTime, unittest.equals(core.DateTime.parse("2002-02-27T14:01:02")));
|
| checkCommentQuotedFileContent(o.quotedFileContent);
|
| - checkUnnamed1680(o.replies);
|
| + checkUnnamed2510(o.replies);
|
| unittest.expect(o.resolved, unittest.isTrue);
|
| }
|
| buildCounterComment--;
|
| }
|
|
|
| -buildUnnamed1681() {
|
| +buildUnnamed2511() {
|
| var o = new core.List<api.Comment>();
|
| o.add(buildComment());
|
| o.add(buildComment());
|
| return o;
|
| }
|
|
|
| -checkUnnamed1681(core.List<api.Comment> o) {
|
| +checkUnnamed2511(core.List<api.Comment> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkComment(o[0]);
|
| checkComment(o[1]);
|
| @@ -397,7 +397,7 @@ buildCommentList() {
|
| var o = new api.CommentList();
|
| buildCounterCommentList++;
|
| if (buildCounterCommentList < 3) {
|
| - o.comments = buildUnnamed1681();
|
| + o.comments = buildUnnamed2511();
|
| o.kind = "foo";
|
| o.nextPageToken = "foo";
|
| }
|
| @@ -408,21 +408,21 @@ buildCommentList() {
|
| checkCommentList(api.CommentList o) {
|
| buildCounterCommentList++;
|
| if (buildCounterCommentList < 3) {
|
| - checkUnnamed1681(o.comments);
|
| + checkUnnamed2511(o.comments);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.nextPageToken, unittest.equals('foo'));
|
| }
|
| buildCounterCommentList--;
|
| }
|
|
|
| -buildUnnamed1682() {
|
| +buildUnnamed2512() {
|
| var o = new core.Map<core.String, core.String>();
|
| o["x"] = "foo";
|
| o["y"] = "foo";
|
| return o;
|
| }
|
|
|
| -checkUnnamed1682(core.Map<core.String, core.String> o) {
|
| +checkUnnamed2512(core.Map<core.String, core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o["x"], unittest.equals('foo'));
|
| unittest.expect(o["y"], unittest.equals('foo'));
|
| @@ -579,66 +579,66 @@ checkFileImageMediaMetadata(api.FileImageMediaMetadata o) {
|
| buildCounterFileImageMediaMetadata--;
|
| }
|
|
|
| -buildUnnamed1683() {
|
| +buildUnnamed2513() {
|
| var o = new core.List<api.User>();
|
| o.add(buildUser());
|
| o.add(buildUser());
|
| return o;
|
| }
|
|
|
| -checkUnnamed1683(core.List<api.User> o) {
|
| +checkUnnamed2513(core.List<api.User> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkUser(o[0]);
|
| checkUser(o[1]);
|
| }
|
|
|
| -buildUnnamed1684() {
|
| +buildUnnamed2514() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed1684(core.List<core.String> o) {
|
| +checkUnnamed2514(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| }
|
|
|
| -buildUnnamed1685() {
|
| +buildUnnamed2515() {
|
| var o = new core.List<api.Permission>();
|
| o.add(buildPermission());
|
| o.add(buildPermission());
|
| return o;
|
| }
|
|
|
| -checkUnnamed1685(core.List<api.Permission> o) {
|
| +checkUnnamed2515(core.List<api.Permission> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkPermission(o[0]);
|
| checkPermission(o[1]);
|
| }
|
|
|
| -buildUnnamed1686() {
|
| +buildUnnamed2516() {
|
| var o = new core.Map<core.String, core.String>();
|
| o["x"] = "foo";
|
| o["y"] = "foo";
|
| return o;
|
| }
|
|
|
| -checkUnnamed1686(core.Map<core.String, core.String> o) {
|
| +checkUnnamed2516(core.Map<core.String, core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o["x"], unittest.equals('foo'));
|
| unittest.expect(o["y"], unittest.equals('foo'));
|
| }
|
|
|
| -buildUnnamed1687() {
|
| +buildUnnamed2517() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed1687(core.List<core.String> o) {
|
| +checkUnnamed2517(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| @@ -672,7 +672,7 @@ buildFile() {
|
| var o = new api.File();
|
| buildCounterFile++;
|
| if (buildCounterFile < 3) {
|
| - o.appProperties = buildUnnamed1682();
|
| + o.appProperties = buildUnnamed2512();
|
| o.capabilities = buildFileCapabilities();
|
| o.contentHints = buildFileContentHints();
|
| o.createdTime = core.DateTime.parse("2002-02-27T14:01:02");
|
| @@ -695,16 +695,16 @@ buildFile() {
|
| o.name = "foo";
|
| o.originalFilename = "foo";
|
| o.ownedByMe = true;
|
| - o.owners = buildUnnamed1683();
|
| - o.parents = buildUnnamed1684();
|
| - o.permissions = buildUnnamed1685();
|
| - o.properties = buildUnnamed1686();
|
| + o.owners = buildUnnamed2513();
|
| + o.parents = buildUnnamed2514();
|
| + o.permissions = buildUnnamed2515();
|
| + o.properties = buildUnnamed2516();
|
| o.quotaBytesUsed = "foo";
|
| o.shared = true;
|
| o.sharedWithMeTime = core.DateTime.parse("2002-02-27T14:01:02");
|
| o.sharingUser = buildUser();
|
| o.size = "foo";
|
| - o.spaces = buildUnnamed1687();
|
| + o.spaces = buildUnnamed2517();
|
| o.starred = true;
|
| o.thumbnailLink = "foo";
|
| o.trashed = true;
|
| @@ -724,7 +724,7 @@ buildFile() {
|
| checkFile(api.File o) {
|
| buildCounterFile++;
|
| if (buildCounterFile < 3) {
|
| - checkUnnamed1682(o.appProperties);
|
| + checkUnnamed2512(o.appProperties);
|
| checkFileCapabilities(o.capabilities);
|
| checkFileContentHints(o.contentHints);
|
| unittest.expect(o.createdTime, unittest.equals(core.DateTime.parse("2002-02-27T14:01:02")));
|
| @@ -747,16 +747,16 @@ checkFile(api.File o) {
|
| unittest.expect(o.name, unittest.equals('foo'));
|
| unittest.expect(o.originalFilename, unittest.equals('foo'));
|
| unittest.expect(o.ownedByMe, unittest.isTrue);
|
| - checkUnnamed1683(o.owners);
|
| - checkUnnamed1684(o.parents);
|
| - checkUnnamed1685(o.permissions);
|
| - checkUnnamed1686(o.properties);
|
| + checkUnnamed2513(o.owners);
|
| + checkUnnamed2514(o.parents);
|
| + checkUnnamed2515(o.permissions);
|
| + checkUnnamed2516(o.properties);
|
| unittest.expect(o.quotaBytesUsed, unittest.equals('foo'));
|
| unittest.expect(o.shared, unittest.isTrue);
|
| unittest.expect(o.sharedWithMeTime, unittest.equals(core.DateTime.parse("2002-02-27T14:01:02")));
|
| checkUser(o.sharingUser);
|
| unittest.expect(o.size, unittest.equals('foo'));
|
| - checkUnnamed1687(o.spaces);
|
| + checkUnnamed2517(o.spaces);
|
| unittest.expect(o.starred, unittest.isTrue);
|
| unittest.expect(o.thumbnailLink, unittest.equals('foo'));
|
| unittest.expect(o.trashed, unittest.isTrue);
|
| @@ -772,14 +772,14 @@ checkFile(api.File o) {
|
| buildCounterFile--;
|
| }
|
|
|
| -buildUnnamed1688() {
|
| +buildUnnamed2518() {
|
| var o = new core.List<api.File>();
|
| o.add(buildFile());
|
| o.add(buildFile());
|
| return o;
|
| }
|
|
|
| -checkUnnamed1688(core.List<api.File> o) {
|
| +checkUnnamed2518(core.List<api.File> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkFile(o[0]);
|
| checkFile(o[1]);
|
| @@ -790,7 +790,7 @@ buildFileList() {
|
| var o = new api.FileList();
|
| buildCounterFileList++;
|
| if (buildCounterFileList < 3) {
|
| - o.files = buildUnnamed1688();
|
| + o.files = buildUnnamed2518();
|
| o.kind = "foo";
|
| o.nextPageToken = "foo";
|
| }
|
| @@ -801,21 +801,21 @@ buildFileList() {
|
| checkFileList(api.FileList o) {
|
| buildCounterFileList++;
|
| if (buildCounterFileList < 3) {
|
| - checkUnnamed1688(o.files);
|
| + checkUnnamed2518(o.files);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.nextPageToken, unittest.equals('foo'));
|
| }
|
| buildCounterFileList--;
|
| }
|
|
|
| -buildUnnamed1689() {
|
| +buildUnnamed2519() {
|
| var o = new core.List<core.String>();
|
| o.add("foo");
|
| o.add("foo");
|
| return o;
|
| }
|
|
|
| -checkUnnamed1689(core.List<core.String> o) {
|
| +checkUnnamed2519(core.List<core.String> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| unittest.expect(o[0], unittest.equals('foo'));
|
| unittest.expect(o[1], unittest.equals('foo'));
|
| @@ -826,7 +826,7 @@ buildGeneratedIds() {
|
| var o = new api.GeneratedIds();
|
| buildCounterGeneratedIds++;
|
| if (buildCounterGeneratedIds < 3) {
|
| - o.ids = buildUnnamed1689();
|
| + o.ids = buildUnnamed2519();
|
| o.kind = "foo";
|
| o.space = "foo";
|
| }
|
| @@ -837,7 +837,7 @@ buildGeneratedIds() {
|
| checkGeneratedIds(api.GeneratedIds o) {
|
| buildCounterGeneratedIds++;
|
| if (buildCounterGeneratedIds < 3) {
|
| - checkUnnamed1689(o.ids);
|
| + checkUnnamed2519(o.ids);
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.space, unittest.equals('foo'));
|
| }
|
| @@ -881,14 +881,14 @@ checkPermission(api.Permission o) {
|
| buildCounterPermission--;
|
| }
|
|
|
| -buildUnnamed1690() {
|
| +buildUnnamed2520() {
|
| var o = new core.List<api.Permission>();
|
| o.add(buildPermission());
|
| o.add(buildPermission());
|
| return o;
|
| }
|
|
|
| -checkUnnamed1690(core.List<api.Permission> o) {
|
| +checkUnnamed2520(core.List<api.Permission> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkPermission(o[0]);
|
| checkPermission(o[1]);
|
| @@ -900,7 +900,7 @@ buildPermissionList() {
|
| buildCounterPermissionList++;
|
| if (buildCounterPermissionList < 3) {
|
| o.kind = "foo";
|
| - o.permissions = buildUnnamed1690();
|
| + o.permissions = buildUnnamed2520();
|
| }
|
| buildCounterPermissionList--;
|
| return o;
|
| @@ -910,7 +910,7 @@ checkPermissionList(api.PermissionList o) {
|
| buildCounterPermissionList++;
|
| if (buildCounterPermissionList < 3) {
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| - checkUnnamed1690(o.permissions);
|
| + checkUnnamed2520(o.permissions);
|
| }
|
| buildCounterPermissionList--;
|
| }
|
| @@ -950,14 +950,14 @@ checkReply(api.Reply o) {
|
| buildCounterReply--;
|
| }
|
|
|
| -buildUnnamed1691() {
|
| +buildUnnamed2521() {
|
| var o = new core.List<api.Reply>();
|
| o.add(buildReply());
|
| o.add(buildReply());
|
| return o;
|
| }
|
|
|
| -checkUnnamed1691(core.List<api.Reply> o) {
|
| +checkUnnamed2521(core.List<api.Reply> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkReply(o[0]);
|
| checkReply(o[1]);
|
| @@ -970,7 +970,7 @@ buildReplyList() {
|
| if (buildCounterReplyList < 3) {
|
| o.kind = "foo";
|
| o.nextPageToken = "foo";
|
| - o.replies = buildUnnamed1691();
|
| + o.replies = buildUnnamed2521();
|
| }
|
| buildCounterReplyList--;
|
| return o;
|
| @@ -981,7 +981,7 @@ checkReplyList(api.ReplyList o) {
|
| if (buildCounterReplyList < 3) {
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| unittest.expect(o.nextPageToken, unittest.equals('foo'));
|
| - checkUnnamed1691(o.replies);
|
| + checkUnnamed2521(o.replies);
|
| }
|
| buildCounterReplyList--;
|
| }
|
| @@ -1027,14 +1027,14 @@ checkRevision(api.Revision o) {
|
| buildCounterRevision--;
|
| }
|
|
|
| -buildUnnamed1692() {
|
| +buildUnnamed2522() {
|
| var o = new core.List<api.Revision>();
|
| o.add(buildRevision());
|
| o.add(buildRevision());
|
| return o;
|
| }
|
|
|
| -checkUnnamed1692(core.List<api.Revision> o) {
|
| +checkUnnamed2522(core.List<api.Revision> o) {
|
| unittest.expect(o, unittest.hasLength(2));
|
| checkRevision(o[0]);
|
| checkRevision(o[1]);
|
| @@ -1046,7 +1046,7 @@ buildRevisionList() {
|
| buildCounterRevisionList++;
|
| if (buildCounterRevisionList < 3) {
|
| o.kind = "foo";
|
| - o.revisions = buildUnnamed1692();
|
| + o.revisions = buildUnnamed2522();
|
| }
|
| buildCounterRevisionList--;
|
| return o;
|
| @@ -1056,7 +1056,7 @@ checkRevisionList(api.RevisionList o) {
|
| buildCounterRevisionList++;
|
| if (buildCounterRevisionList < 3) {
|
| unittest.expect(o.kind, unittest.equals('foo'));
|
| - checkUnnamed1692(o.revisions);
|
| + checkUnnamed2522(o.revisions);
|
| }
|
| buildCounterRevisionList--;
|
| }
|
|
|