| OLD | NEW |
| 1 library googleapis.orkut.v2.test; | 1 library googleapis.orkut.v2.test; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
| 9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
| 10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 checkAclItems(api.AclItems o) { | 31 checkAclItems(api.AclItems o) { |
| 32 buildCounterAclItems++; | 32 buildCounterAclItems++; |
| 33 if (buildCounterAclItems < 3) { | 33 if (buildCounterAclItems < 3) { |
| 34 unittest.expect(o.id, unittest.equals('foo')); | 34 unittest.expect(o.id, unittest.equals('foo')); |
| 35 unittest.expect(o.type, unittest.equals('foo')); | 35 unittest.expect(o.type, unittest.equals('foo')); |
| 36 } | 36 } |
| 37 buildCounterAclItems--; | 37 buildCounterAclItems--; |
| 38 } | 38 } |
| 39 | 39 |
| 40 buildUnnamed143() { | 40 buildUnnamed181() { |
| 41 var o = new core.List<api.AclItems>(); | 41 var o = new core.List<api.AclItems>(); |
| 42 o.add(buildAclItems()); | 42 o.add(buildAclItems()); |
| 43 o.add(buildAclItems()); | 43 o.add(buildAclItems()); |
| 44 return o; | 44 return o; |
| 45 } | 45 } |
| 46 | 46 |
| 47 checkUnnamed143(core.List<api.AclItems> o) { | 47 checkUnnamed181(core.List<api.AclItems> o) { |
| 48 unittest.expect(o, unittest.hasLength(2)); | 48 unittest.expect(o, unittest.hasLength(2)); |
| 49 checkAclItems(o[0]); | 49 checkAclItems(o[0]); |
| 50 checkAclItems(o[1]); | 50 checkAclItems(o[1]); |
| 51 } | 51 } |
| 52 | 52 |
| 53 core.int buildCounterAcl = 0; | 53 core.int buildCounterAcl = 0; |
| 54 buildAcl() { | 54 buildAcl() { |
| 55 var o = new api.Acl(); | 55 var o = new api.Acl(); |
| 56 buildCounterAcl++; | 56 buildCounterAcl++; |
| 57 if (buildCounterAcl < 3) { | 57 if (buildCounterAcl < 3) { |
| 58 o.description = "foo"; | 58 o.description = "foo"; |
| 59 o.items = buildUnnamed143(); | 59 o.items = buildUnnamed181(); |
| 60 o.kind = "foo"; | 60 o.kind = "foo"; |
| 61 o.totalParticipants = 42; | 61 o.totalParticipants = 42; |
| 62 } | 62 } |
| 63 buildCounterAcl--; | 63 buildCounterAcl--; |
| 64 return o; | 64 return o; |
| 65 } | 65 } |
| 66 | 66 |
| 67 checkAcl(api.Acl o) { | 67 checkAcl(api.Acl o) { |
| 68 buildCounterAcl++; | 68 buildCounterAcl++; |
| 69 if (buildCounterAcl < 3) { | 69 if (buildCounterAcl < 3) { |
| 70 unittest.expect(o.description, unittest.equals('foo')); | 70 unittest.expect(o.description, unittest.equals('foo')); |
| 71 checkUnnamed143(o.items); | 71 checkUnnamed181(o.items); |
| 72 unittest.expect(o.kind, unittest.equals('foo')); | 72 unittest.expect(o.kind, unittest.equals('foo')); |
| 73 unittest.expect(o.totalParticipants, unittest.equals(42)); | 73 unittest.expect(o.totalParticipants, unittest.equals(42)); |
| 74 } | 74 } |
| 75 buildCounterAcl--; | 75 buildCounterAcl--; |
| 76 } | 76 } |
| 77 | 77 |
| 78 buildUnnamed144() { | 78 buildUnnamed182() { |
| 79 var o = new core.List<api.OrkutLinkResource>(); | 79 var o = new core.List<api.OrkutLinkResource>(); |
| 80 o.add(buildOrkutLinkResource()); | 80 o.add(buildOrkutLinkResource()); |
| 81 o.add(buildOrkutLinkResource()); | 81 o.add(buildOrkutLinkResource()); |
| 82 return o; | 82 return o; |
| 83 } | 83 } |
| 84 | 84 |
| 85 checkUnnamed144(core.List<api.OrkutLinkResource> o) { | 85 checkUnnamed182(core.List<api.OrkutLinkResource> o) { |
| 86 unittest.expect(o, unittest.hasLength(2)); | 86 unittest.expect(o, unittest.hasLength(2)); |
| 87 checkOrkutLinkResource(o[0]); | 87 checkOrkutLinkResource(o[0]); |
| 88 checkOrkutLinkResource(o[1]); | 88 checkOrkutLinkResource(o[1]); |
| 89 } | 89 } |
| 90 | 90 |
| 91 buildUnnamed145() { | 91 buildUnnamed183() { |
| 92 var o = new core.List<api.OrkutActivityobjectsResource>(); | 92 var o = new core.List<api.OrkutActivityobjectsResource>(); |
| 93 o.add(buildOrkutActivityobjectsResource()); | 93 o.add(buildOrkutActivityobjectsResource()); |
| 94 o.add(buildOrkutActivityobjectsResource()); | 94 o.add(buildOrkutActivityobjectsResource()); |
| 95 return o; | 95 return o; |
| 96 } | 96 } |
| 97 | 97 |
| 98 checkUnnamed145(core.List<api.OrkutActivityobjectsResource> o) { | 98 checkUnnamed183(core.List<api.OrkutActivityobjectsResource> o) { |
| 99 unittest.expect(o, unittest.hasLength(2)); | 99 unittest.expect(o, unittest.hasLength(2)); |
| 100 checkOrkutActivityobjectsResource(o[0]); | 100 checkOrkutActivityobjectsResource(o[0]); |
| 101 checkOrkutActivityobjectsResource(o[1]); | 101 checkOrkutActivityobjectsResource(o[1]); |
| 102 } | 102 } |
| 103 | 103 |
| 104 buildUnnamed146() { | 104 buildUnnamed184() { |
| 105 var o = new core.List<api.Comment>(); | 105 var o = new core.List<api.Comment>(); |
| 106 o.add(buildComment()); | 106 o.add(buildComment()); |
| 107 o.add(buildComment()); | 107 o.add(buildComment()); |
| 108 return o; | 108 return o; |
| 109 } | 109 } |
| 110 | 110 |
| 111 checkUnnamed146(core.List<api.Comment> o) { | 111 checkUnnamed184(core.List<api.Comment> o) { |
| 112 unittest.expect(o, unittest.hasLength(2)); | 112 unittest.expect(o, unittest.hasLength(2)); |
| 113 checkComment(o[0]); | 113 checkComment(o[0]); |
| 114 checkComment(o[1]); | 114 checkComment(o[1]); |
| 115 } | 115 } |
| 116 | 116 |
| 117 core.int buildCounterActivityObjectReplies = 0; | 117 core.int buildCounterActivityObjectReplies = 0; |
| 118 buildActivityObjectReplies() { | 118 buildActivityObjectReplies() { |
| 119 var o = new api.ActivityObjectReplies(); | 119 var o = new api.ActivityObjectReplies(); |
| 120 buildCounterActivityObjectReplies++; | 120 buildCounterActivityObjectReplies++; |
| 121 if (buildCounterActivityObjectReplies < 3) { | 121 if (buildCounterActivityObjectReplies < 3) { |
| 122 o.items = buildUnnamed146(); | 122 o.items = buildUnnamed184(); |
| 123 o.totalItems = "foo"; | 123 o.totalItems = "foo"; |
| 124 o.url = "foo"; | 124 o.url = "foo"; |
| 125 } | 125 } |
| 126 buildCounterActivityObjectReplies--; | 126 buildCounterActivityObjectReplies--; |
| 127 return o; | 127 return o; |
| 128 } | 128 } |
| 129 | 129 |
| 130 checkActivityObjectReplies(api.ActivityObjectReplies o) { | 130 checkActivityObjectReplies(api.ActivityObjectReplies o) { |
| 131 buildCounterActivityObjectReplies++; | 131 buildCounterActivityObjectReplies++; |
| 132 if (buildCounterActivityObjectReplies < 3) { | 132 if (buildCounterActivityObjectReplies < 3) { |
| 133 checkUnnamed146(o.items); | 133 checkUnnamed184(o.items); |
| 134 unittest.expect(o.totalItems, unittest.equals('foo')); | 134 unittest.expect(o.totalItems, unittest.equals('foo')); |
| 135 unittest.expect(o.url, unittest.equals('foo')); | 135 unittest.expect(o.url, unittest.equals('foo')); |
| 136 } | 136 } |
| 137 buildCounterActivityObjectReplies--; | 137 buildCounterActivityObjectReplies--; |
| 138 } | 138 } |
| 139 | 139 |
| 140 core.int buildCounterActivityObject = 0; | 140 core.int buildCounterActivityObject = 0; |
| 141 buildActivityObject() { | 141 buildActivityObject() { |
| 142 var o = new api.ActivityObject(); | 142 var o = new api.ActivityObject(); |
| 143 buildCounterActivityObject++; | 143 buildCounterActivityObject++; |
| 144 if (buildCounterActivityObject < 3) { | 144 if (buildCounterActivityObject < 3) { |
| 145 o.content = "foo"; | 145 o.content = "foo"; |
| 146 o.items = buildUnnamed145(); | 146 o.items = buildUnnamed183(); |
| 147 o.objectType = "foo"; | 147 o.objectType = "foo"; |
| 148 o.replies = buildActivityObjectReplies(); | 148 o.replies = buildActivityObjectReplies(); |
| 149 } | 149 } |
| 150 buildCounterActivityObject--; | 150 buildCounterActivityObject--; |
| 151 return o; | 151 return o; |
| 152 } | 152 } |
| 153 | 153 |
| 154 checkActivityObject(api.ActivityObject o) { | 154 checkActivityObject(api.ActivityObject o) { |
| 155 buildCounterActivityObject++; | 155 buildCounterActivityObject++; |
| 156 if (buildCounterActivityObject < 3) { | 156 if (buildCounterActivityObject < 3) { |
| 157 unittest.expect(o.content, unittest.equals('foo')); | 157 unittest.expect(o.content, unittest.equals('foo')); |
| 158 checkUnnamed145(o.items); | 158 checkUnnamed183(o.items); |
| 159 unittest.expect(o.objectType, unittest.equals('foo')); | 159 unittest.expect(o.objectType, unittest.equals('foo')); |
| 160 checkActivityObjectReplies(o.replies); | 160 checkActivityObjectReplies(o.replies); |
| 161 } | 161 } |
| 162 buildCounterActivityObject--; | 162 buildCounterActivityObject--; |
| 163 } | 163 } |
| 164 | 164 |
| 165 core.int buildCounterActivity = 0; | 165 core.int buildCounterActivity = 0; |
| 166 buildActivity() { | 166 buildActivity() { |
| 167 var o = new api.Activity(); | 167 var o = new api.Activity(); |
| 168 buildCounterActivity++; | 168 buildCounterActivity++; |
| 169 if (buildCounterActivity < 3) { | 169 if (buildCounterActivity < 3) { |
| 170 o.access = buildAcl(); | 170 o.access = buildAcl(); |
| 171 o.actor = buildOrkutAuthorResource(); | 171 o.actor = buildOrkutAuthorResource(); |
| 172 o.id = "foo"; | 172 o.id = "foo"; |
| 173 o.kind = "foo"; | 173 o.kind = "foo"; |
| 174 o.links = buildUnnamed144(); | 174 o.links = buildUnnamed182(); |
| 175 o.object = buildActivityObject(); | 175 o.object = buildActivityObject(); |
| 176 o.published = core.DateTime.parse("2002-02-27T14:01:02"); | 176 o.published = core.DateTime.parse("2002-02-27T14:01:02"); |
| 177 o.title = "foo"; | 177 o.title = "foo"; |
| 178 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 178 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 179 o.verb = "foo"; | 179 o.verb = "foo"; |
| 180 } | 180 } |
| 181 buildCounterActivity--; | 181 buildCounterActivity--; |
| 182 return o; | 182 return o; |
| 183 } | 183 } |
| 184 | 184 |
| 185 checkActivity(api.Activity o) { | 185 checkActivity(api.Activity o) { |
| 186 buildCounterActivity++; | 186 buildCounterActivity++; |
| 187 if (buildCounterActivity < 3) { | 187 if (buildCounterActivity < 3) { |
| 188 checkAcl(o.access); | 188 checkAcl(o.access); |
| 189 checkOrkutAuthorResource(o.actor); | 189 checkOrkutAuthorResource(o.actor); |
| 190 unittest.expect(o.id, unittest.equals('foo')); | 190 unittest.expect(o.id, unittest.equals('foo')); |
| 191 unittest.expect(o.kind, unittest.equals('foo')); | 191 unittest.expect(o.kind, unittest.equals('foo')); |
| 192 checkUnnamed144(o.links); | 192 checkUnnamed182(o.links); |
| 193 checkActivityObject(o.object); | 193 checkActivityObject(o.object); |
| 194 unittest.expect(o.published, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 194 unittest.expect(o.published, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 195 unittest.expect(o.title, unittest.equals('foo')); | 195 unittest.expect(o.title, unittest.equals('foo')); |
| 196 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 196 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 197 unittest.expect(o.verb, unittest.equals('foo')); | 197 unittest.expect(o.verb, unittest.equals('foo')); |
| 198 } | 198 } |
| 199 buildCounterActivity--; | 199 buildCounterActivity--; |
| 200 } | 200 } |
| 201 | 201 |
| 202 buildUnnamed147() { | 202 buildUnnamed185() { |
| 203 var o = new core.List<api.Activity>(); | 203 var o = new core.List<api.Activity>(); |
| 204 o.add(buildActivity()); | 204 o.add(buildActivity()); |
| 205 o.add(buildActivity()); | 205 o.add(buildActivity()); |
| 206 return o; | 206 return o; |
| 207 } | 207 } |
| 208 | 208 |
| 209 checkUnnamed147(core.List<api.Activity> o) { | 209 checkUnnamed185(core.List<api.Activity> o) { |
| 210 unittest.expect(o, unittest.hasLength(2)); | 210 unittest.expect(o, unittest.hasLength(2)); |
| 211 checkActivity(o[0]); | 211 checkActivity(o[0]); |
| 212 checkActivity(o[1]); | 212 checkActivity(o[1]); |
| 213 } | 213 } |
| 214 | 214 |
| 215 core.int buildCounterActivityList = 0; | 215 core.int buildCounterActivityList = 0; |
| 216 buildActivityList() { | 216 buildActivityList() { |
| 217 var o = new api.ActivityList(); | 217 var o = new api.ActivityList(); |
| 218 buildCounterActivityList++; | 218 buildCounterActivityList++; |
| 219 if (buildCounterActivityList < 3) { | 219 if (buildCounterActivityList < 3) { |
| 220 o.items = buildUnnamed147(); | 220 o.items = buildUnnamed185(); |
| 221 o.kind = "foo"; | 221 o.kind = "foo"; |
| 222 o.nextPageToken = "foo"; | 222 o.nextPageToken = "foo"; |
| 223 } | 223 } |
| 224 buildCounterActivityList--; | 224 buildCounterActivityList--; |
| 225 return o; | 225 return o; |
| 226 } | 226 } |
| 227 | 227 |
| 228 checkActivityList(api.ActivityList o) { | 228 checkActivityList(api.ActivityList o) { |
| 229 buildCounterActivityList++; | 229 buildCounterActivityList++; |
| 230 if (buildCounterActivityList < 3) { | 230 if (buildCounterActivityList < 3) { |
| 231 checkUnnamed147(o.items); | 231 checkUnnamed185(o.items); |
| 232 unittest.expect(o.kind, unittest.equals('foo')); | 232 unittest.expect(o.kind, unittest.equals('foo')); |
| 233 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 233 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 234 } | 234 } |
| 235 buildCounterActivityList--; | 235 buildCounterActivityList--; |
| 236 } | 236 } |
| 237 | 237 |
| 238 core.int buildCounterBadge = 0; | 238 core.int buildCounterBadge = 0; |
| 239 buildBadge() { | 239 buildBadge() { |
| 240 var o = new api.Badge(); | 240 var o = new api.Badge(); |
| 241 buildCounterBadge++; | 241 buildCounterBadge++; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 263 unittest.expect(o.description, unittest.equals('foo')); | 263 unittest.expect(o.description, unittest.equals('foo')); |
| 264 unittest.expect(o.id, unittest.equals('foo')); | 264 unittest.expect(o.id, unittest.equals('foo')); |
| 265 unittest.expect(o.kind, unittest.equals('foo')); | 265 unittest.expect(o.kind, unittest.equals('foo')); |
| 266 unittest.expect(o.sponsorLogo, unittest.equals('foo')); | 266 unittest.expect(o.sponsorLogo, unittest.equals('foo')); |
| 267 unittest.expect(o.sponsorName, unittest.equals('foo')); | 267 unittest.expect(o.sponsorName, unittest.equals('foo')); |
| 268 unittest.expect(o.sponsorUrl, unittest.equals('foo')); | 268 unittest.expect(o.sponsorUrl, unittest.equals('foo')); |
| 269 } | 269 } |
| 270 buildCounterBadge--; | 270 buildCounterBadge--; |
| 271 } | 271 } |
| 272 | 272 |
| 273 buildUnnamed148() { | 273 buildUnnamed186() { |
| 274 var o = new core.List<api.Badge>(); | 274 var o = new core.List<api.Badge>(); |
| 275 o.add(buildBadge()); | 275 o.add(buildBadge()); |
| 276 o.add(buildBadge()); | 276 o.add(buildBadge()); |
| 277 return o; | 277 return o; |
| 278 } | 278 } |
| 279 | 279 |
| 280 checkUnnamed148(core.List<api.Badge> o) { | 280 checkUnnamed186(core.List<api.Badge> o) { |
| 281 unittest.expect(o, unittest.hasLength(2)); | 281 unittest.expect(o, unittest.hasLength(2)); |
| 282 checkBadge(o[0]); | 282 checkBadge(o[0]); |
| 283 checkBadge(o[1]); | 283 checkBadge(o[1]); |
| 284 } | 284 } |
| 285 | 285 |
| 286 core.int buildCounterBadgeList = 0; | 286 core.int buildCounterBadgeList = 0; |
| 287 buildBadgeList() { | 287 buildBadgeList() { |
| 288 var o = new api.BadgeList(); | 288 var o = new api.BadgeList(); |
| 289 buildCounterBadgeList++; | 289 buildCounterBadgeList++; |
| 290 if (buildCounterBadgeList < 3) { | 290 if (buildCounterBadgeList < 3) { |
| 291 o.items = buildUnnamed148(); | 291 o.items = buildUnnamed186(); |
| 292 o.kind = "foo"; | 292 o.kind = "foo"; |
| 293 } | 293 } |
| 294 buildCounterBadgeList--; | 294 buildCounterBadgeList--; |
| 295 return o; | 295 return o; |
| 296 } | 296 } |
| 297 | 297 |
| 298 checkBadgeList(api.BadgeList o) { | 298 checkBadgeList(api.BadgeList o) { |
| 299 buildCounterBadgeList++; | 299 buildCounterBadgeList++; |
| 300 if (buildCounterBadgeList < 3) { | 300 if (buildCounterBadgeList < 3) { |
| 301 checkUnnamed148(o.items); | 301 checkUnnamed186(o.items); |
| 302 unittest.expect(o.kind, unittest.equals('foo')); | 302 unittest.expect(o.kind, unittest.equals('foo')); |
| 303 } | 303 } |
| 304 buildCounterBadgeList--; | 304 buildCounterBadgeList--; |
| 305 } | 305 } |
| 306 | 306 |
| 307 core.int buildCounterCommentInReplyTo = 0; | 307 core.int buildCounterCommentInReplyTo = 0; |
| 308 buildCommentInReplyTo() { | 308 buildCommentInReplyTo() { |
| 309 var o = new api.CommentInReplyTo(); | 309 var o = new api.CommentInReplyTo(); |
| 310 buildCounterCommentInReplyTo++; | 310 buildCounterCommentInReplyTo++; |
| 311 if (buildCounterCommentInReplyTo < 3) { | 311 if (buildCounterCommentInReplyTo < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 322 buildCounterCommentInReplyTo++; | 322 buildCounterCommentInReplyTo++; |
| 323 if (buildCounterCommentInReplyTo < 3) { | 323 if (buildCounterCommentInReplyTo < 3) { |
| 324 unittest.expect(o.href, unittest.equals('foo')); | 324 unittest.expect(o.href, unittest.equals('foo')); |
| 325 unittest.expect(o.ref, unittest.equals('foo')); | 325 unittest.expect(o.ref, unittest.equals('foo')); |
| 326 unittest.expect(o.rel, unittest.equals('foo')); | 326 unittest.expect(o.rel, unittest.equals('foo')); |
| 327 unittest.expect(o.type, unittest.equals('foo')); | 327 unittest.expect(o.type, unittest.equals('foo')); |
| 328 } | 328 } |
| 329 buildCounterCommentInReplyTo--; | 329 buildCounterCommentInReplyTo--; |
| 330 } | 330 } |
| 331 | 331 |
| 332 buildUnnamed149() { | 332 buildUnnamed187() { |
| 333 var o = new core.List<api.OrkutLinkResource>(); | 333 var o = new core.List<api.OrkutLinkResource>(); |
| 334 o.add(buildOrkutLinkResource()); | 334 o.add(buildOrkutLinkResource()); |
| 335 o.add(buildOrkutLinkResource()); | 335 o.add(buildOrkutLinkResource()); |
| 336 return o; | 336 return o; |
| 337 } | 337 } |
| 338 | 338 |
| 339 checkUnnamed149(core.List<api.OrkutLinkResource> o) { | 339 checkUnnamed187(core.List<api.OrkutLinkResource> o) { |
| 340 unittest.expect(o, unittest.hasLength(2)); | 340 unittest.expect(o, unittest.hasLength(2)); |
| 341 checkOrkutLinkResource(o[0]); | 341 checkOrkutLinkResource(o[0]); |
| 342 checkOrkutLinkResource(o[1]); | 342 checkOrkutLinkResource(o[1]); |
| 343 } | 343 } |
| 344 | 344 |
| 345 core.int buildCounterComment = 0; | 345 core.int buildCounterComment = 0; |
| 346 buildComment() { | 346 buildComment() { |
| 347 var o = new api.Comment(); | 347 var o = new api.Comment(); |
| 348 buildCounterComment++; | 348 buildCounterComment++; |
| 349 if (buildCounterComment < 3) { | 349 if (buildCounterComment < 3) { |
| 350 o.actor = buildOrkutAuthorResource(); | 350 o.actor = buildOrkutAuthorResource(); |
| 351 o.content = "foo"; | 351 o.content = "foo"; |
| 352 o.id = "foo"; | 352 o.id = "foo"; |
| 353 o.inReplyTo = buildCommentInReplyTo(); | 353 o.inReplyTo = buildCommentInReplyTo(); |
| 354 o.kind = "foo"; | 354 o.kind = "foo"; |
| 355 o.links = buildUnnamed149(); | 355 o.links = buildUnnamed187(); |
| 356 o.published = core.DateTime.parse("2002-02-27T14:01:02"); | 356 o.published = core.DateTime.parse("2002-02-27T14:01:02"); |
| 357 } | 357 } |
| 358 buildCounterComment--; | 358 buildCounterComment--; |
| 359 return o; | 359 return o; |
| 360 } | 360 } |
| 361 | 361 |
| 362 checkComment(api.Comment o) { | 362 checkComment(api.Comment o) { |
| 363 buildCounterComment++; | 363 buildCounterComment++; |
| 364 if (buildCounterComment < 3) { | 364 if (buildCounterComment < 3) { |
| 365 checkOrkutAuthorResource(o.actor); | 365 checkOrkutAuthorResource(o.actor); |
| 366 unittest.expect(o.content, unittest.equals('foo')); | 366 unittest.expect(o.content, unittest.equals('foo')); |
| 367 unittest.expect(o.id, unittest.equals('foo')); | 367 unittest.expect(o.id, unittest.equals('foo')); |
| 368 checkCommentInReplyTo(o.inReplyTo); | 368 checkCommentInReplyTo(o.inReplyTo); |
| 369 unittest.expect(o.kind, unittest.equals('foo')); | 369 unittest.expect(o.kind, unittest.equals('foo')); |
| 370 checkUnnamed149(o.links); | 370 checkUnnamed187(o.links); |
| 371 unittest.expect(o.published, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 371 unittest.expect(o.published, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 372 } | 372 } |
| 373 buildCounterComment--; | 373 buildCounterComment--; |
| 374 } | 374 } |
| 375 | 375 |
| 376 buildUnnamed150() { | 376 buildUnnamed188() { |
| 377 var o = new core.List<api.Comment>(); | 377 var o = new core.List<api.Comment>(); |
| 378 o.add(buildComment()); | 378 o.add(buildComment()); |
| 379 o.add(buildComment()); | 379 o.add(buildComment()); |
| 380 return o; | 380 return o; |
| 381 } | 381 } |
| 382 | 382 |
| 383 checkUnnamed150(core.List<api.Comment> o) { | 383 checkUnnamed188(core.List<api.Comment> o) { |
| 384 unittest.expect(o, unittest.hasLength(2)); | 384 unittest.expect(o, unittest.hasLength(2)); |
| 385 checkComment(o[0]); | 385 checkComment(o[0]); |
| 386 checkComment(o[1]); | 386 checkComment(o[1]); |
| 387 } | 387 } |
| 388 | 388 |
| 389 core.int buildCounterCommentList = 0; | 389 core.int buildCounterCommentList = 0; |
| 390 buildCommentList() { | 390 buildCommentList() { |
| 391 var o = new api.CommentList(); | 391 var o = new api.CommentList(); |
| 392 buildCounterCommentList++; | 392 buildCounterCommentList++; |
| 393 if (buildCounterCommentList < 3) { | 393 if (buildCounterCommentList < 3) { |
| 394 o.items = buildUnnamed150(); | 394 o.items = buildUnnamed188(); |
| 395 o.kind = "foo"; | 395 o.kind = "foo"; |
| 396 o.nextPageToken = "foo"; | 396 o.nextPageToken = "foo"; |
| 397 o.previousPageToken = "foo"; | 397 o.previousPageToken = "foo"; |
| 398 } | 398 } |
| 399 buildCounterCommentList--; | 399 buildCounterCommentList--; |
| 400 return o; | 400 return o; |
| 401 } | 401 } |
| 402 | 402 |
| 403 checkCommentList(api.CommentList o) { | 403 checkCommentList(api.CommentList o) { |
| 404 buildCounterCommentList++; | 404 buildCounterCommentList++; |
| 405 if (buildCounterCommentList < 3) { | 405 if (buildCounterCommentList < 3) { |
| 406 checkUnnamed150(o.items); | 406 checkUnnamed188(o.items); |
| 407 unittest.expect(o.kind, unittest.equals('foo')); | 407 unittest.expect(o.kind, unittest.equals('foo')); |
| 408 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 408 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 409 unittest.expect(o.previousPageToken, unittest.equals('foo')); | 409 unittest.expect(o.previousPageToken, unittest.equals('foo')); |
| 410 } | 410 } |
| 411 buildCounterCommentList--; | 411 buildCounterCommentList--; |
| 412 } | 412 } |
| 413 | 413 |
| 414 buildUnnamed151() { | 414 buildUnnamed189() { |
| 415 var o = new core.List<api.OrkutAuthorResource>(); | 415 var o = new core.List<api.OrkutAuthorResource>(); |
| 416 o.add(buildOrkutAuthorResource()); | 416 o.add(buildOrkutAuthorResource()); |
| 417 o.add(buildOrkutAuthorResource()); | 417 o.add(buildOrkutAuthorResource()); |
| 418 return o; | 418 return o; |
| 419 } | 419 } |
| 420 | 420 |
| 421 checkUnnamed151(core.List<api.OrkutAuthorResource> o) { | 421 checkUnnamed189(core.List<api.OrkutAuthorResource> o) { |
| 422 unittest.expect(o, unittest.hasLength(2)); | 422 unittest.expect(o, unittest.hasLength(2)); |
| 423 checkOrkutAuthorResource(o[0]); | 423 checkOrkutAuthorResource(o[0]); |
| 424 checkOrkutAuthorResource(o[1]); | 424 checkOrkutAuthorResource(o[1]); |
| 425 } | 425 } |
| 426 | 426 |
| 427 buildUnnamed152() { | 427 buildUnnamed190() { |
| 428 var o = new core.List<api.OrkutLinkResource>(); | 428 var o = new core.List<api.OrkutLinkResource>(); |
| 429 o.add(buildOrkutLinkResource()); | 429 o.add(buildOrkutLinkResource()); |
| 430 o.add(buildOrkutLinkResource()); | 430 o.add(buildOrkutLinkResource()); |
| 431 return o; | 431 return o; |
| 432 } | 432 } |
| 433 | 433 |
| 434 checkUnnamed152(core.List<api.OrkutLinkResource> o) { | 434 checkUnnamed190(core.List<api.OrkutLinkResource> o) { |
| 435 unittest.expect(o, unittest.hasLength(2)); | 435 unittest.expect(o, unittest.hasLength(2)); |
| 436 checkOrkutLinkResource(o[0]); | 436 checkOrkutLinkResource(o[0]); |
| 437 checkOrkutLinkResource(o[1]); | 437 checkOrkutLinkResource(o[1]); |
| 438 } | 438 } |
| 439 | 439 |
| 440 buildUnnamed153() { | 440 buildUnnamed191() { |
| 441 var o = new core.List<api.OrkutAuthorResource>(); | 441 var o = new core.List<api.OrkutAuthorResource>(); |
| 442 o.add(buildOrkutAuthorResource()); | 442 o.add(buildOrkutAuthorResource()); |
| 443 o.add(buildOrkutAuthorResource()); | 443 o.add(buildOrkutAuthorResource()); |
| 444 return o; | 444 return o; |
| 445 } | 445 } |
| 446 | 446 |
| 447 checkUnnamed153(core.List<api.OrkutAuthorResource> o) { | 447 checkUnnamed191(core.List<api.OrkutAuthorResource> o) { |
| 448 unittest.expect(o, unittest.hasLength(2)); | 448 unittest.expect(o, unittest.hasLength(2)); |
| 449 checkOrkutAuthorResource(o[0]); | 449 checkOrkutAuthorResource(o[0]); |
| 450 checkOrkutAuthorResource(o[1]); | 450 checkOrkutAuthorResource(o[1]); |
| 451 } | 451 } |
| 452 | 452 |
| 453 core.int buildCounterCommunity = 0; | 453 core.int buildCounterCommunity = 0; |
| 454 buildCommunity() { | 454 buildCommunity() { |
| 455 var o = new api.Community(); | 455 var o = new api.Community(); |
| 456 buildCounterCommunity++; | 456 buildCounterCommunity++; |
| 457 if (buildCounterCommunity < 3) { | 457 if (buildCounterCommunity < 3) { |
| 458 o.category = "foo"; | 458 o.category = "foo"; |
| 459 o.coOwners = buildUnnamed151(); | 459 o.coOwners = buildUnnamed189(); |
| 460 o.creationDate = core.DateTime.parse("2002-02-27T14:01:02"); | 460 o.creationDate = core.DateTime.parse("2002-02-27T14:01:02"); |
| 461 o.description = "foo"; | 461 o.description = "foo"; |
| 462 o.id = 42; | 462 o.id = 42; |
| 463 o.kind = "foo"; | 463 o.kind = "foo"; |
| 464 o.language = "foo"; | 464 o.language = "foo"; |
| 465 o.links = buildUnnamed152(); | 465 o.links = buildUnnamed190(); |
| 466 o.location = "foo"; | 466 o.location = "foo"; |
| 467 o.memberCount = 42; | 467 o.memberCount = 42; |
| 468 o.moderators = buildUnnamed153(); | 468 o.moderators = buildUnnamed191(); |
| 469 o.name = "foo"; | 469 o.name = "foo"; |
| 470 o.owner = buildOrkutAuthorResource(); | 470 o.owner = buildOrkutAuthorResource(); |
| 471 o.photoUrl = "foo"; | 471 o.photoUrl = "foo"; |
| 472 } | 472 } |
| 473 buildCounterCommunity--; | 473 buildCounterCommunity--; |
| 474 return o; | 474 return o; |
| 475 } | 475 } |
| 476 | 476 |
| 477 checkCommunity(api.Community o) { | 477 checkCommunity(api.Community o) { |
| 478 buildCounterCommunity++; | 478 buildCounterCommunity++; |
| 479 if (buildCounterCommunity < 3) { | 479 if (buildCounterCommunity < 3) { |
| 480 unittest.expect(o.category, unittest.equals('foo')); | 480 unittest.expect(o.category, unittest.equals('foo')); |
| 481 checkUnnamed151(o.coOwners); | 481 checkUnnamed189(o.coOwners); |
| 482 unittest.expect(o.creationDate, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); | 482 unittest.expect(o.creationDate, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); |
| 483 unittest.expect(o.description, unittest.equals('foo')); | 483 unittest.expect(o.description, unittest.equals('foo')); |
| 484 unittest.expect(o.id, unittest.equals(42)); | 484 unittest.expect(o.id, unittest.equals(42)); |
| 485 unittest.expect(o.kind, unittest.equals('foo')); | 485 unittest.expect(o.kind, unittest.equals('foo')); |
| 486 unittest.expect(o.language, unittest.equals('foo')); | 486 unittest.expect(o.language, unittest.equals('foo')); |
| 487 checkUnnamed152(o.links); | 487 checkUnnamed190(o.links); |
| 488 unittest.expect(o.location, unittest.equals('foo')); | 488 unittest.expect(o.location, unittest.equals('foo')); |
| 489 unittest.expect(o.memberCount, unittest.equals(42)); | 489 unittest.expect(o.memberCount, unittest.equals(42)); |
| 490 checkUnnamed153(o.moderators); | 490 checkUnnamed191(o.moderators); |
| 491 unittest.expect(o.name, unittest.equals('foo')); | 491 unittest.expect(o.name, unittest.equals('foo')); |
| 492 checkOrkutAuthorResource(o.owner); | 492 checkOrkutAuthorResource(o.owner); |
| 493 unittest.expect(o.photoUrl, unittest.equals('foo')); | 493 unittest.expect(o.photoUrl, unittest.equals('foo')); |
| 494 } | 494 } |
| 495 buildCounterCommunity--; | 495 buildCounterCommunity--; |
| 496 } | 496 } |
| 497 | 497 |
| 498 buildUnnamed154() { | 498 buildUnnamed192() { |
| 499 var o = new core.List<api.Community>(); | 499 var o = new core.List<api.Community>(); |
| 500 o.add(buildCommunity()); | 500 o.add(buildCommunity()); |
| 501 o.add(buildCommunity()); | 501 o.add(buildCommunity()); |
| 502 return o; | 502 return o; |
| 503 } | 503 } |
| 504 | 504 |
| 505 checkUnnamed154(core.List<api.Community> o) { | 505 checkUnnamed192(core.List<api.Community> o) { |
| 506 unittest.expect(o, unittest.hasLength(2)); | 506 unittest.expect(o, unittest.hasLength(2)); |
| 507 checkCommunity(o[0]); | 507 checkCommunity(o[0]); |
| 508 checkCommunity(o[1]); | 508 checkCommunity(o[1]); |
| 509 } | 509 } |
| 510 | 510 |
| 511 core.int buildCounterCommunityList = 0; | 511 core.int buildCounterCommunityList = 0; |
| 512 buildCommunityList() { | 512 buildCommunityList() { |
| 513 var o = new api.CommunityList(); | 513 var o = new api.CommunityList(); |
| 514 buildCounterCommunityList++; | 514 buildCounterCommunityList++; |
| 515 if (buildCounterCommunityList < 3) { | 515 if (buildCounterCommunityList < 3) { |
| 516 o.items = buildUnnamed154(); | 516 o.items = buildUnnamed192(); |
| 517 o.kind = "foo"; | 517 o.kind = "foo"; |
| 518 } | 518 } |
| 519 buildCounterCommunityList--; | 519 buildCounterCommunityList--; |
| 520 return o; | 520 return o; |
| 521 } | 521 } |
| 522 | 522 |
| 523 checkCommunityList(api.CommunityList o) { | 523 checkCommunityList(api.CommunityList o) { |
| 524 buildCounterCommunityList++; | 524 buildCounterCommunityList++; |
| 525 if (buildCounterCommunityList < 3) { | 525 if (buildCounterCommunityList < 3) { |
| 526 checkUnnamed154(o.items); | 526 checkUnnamed192(o.items); |
| 527 unittest.expect(o.kind, unittest.equals('foo')); | 527 unittest.expect(o.kind, unittest.equals('foo')); |
| 528 } | 528 } |
| 529 buildCounterCommunityList--; | 529 buildCounterCommunityList--; |
| 530 } | 530 } |
| 531 | 531 |
| 532 core.int buildCounterCommunityMembers = 0; | 532 core.int buildCounterCommunityMembers = 0; |
| 533 buildCommunityMembers() { | 533 buildCommunityMembers() { |
| 534 var o = new api.CommunityMembers(); | 534 var o = new api.CommunityMembers(); |
| 535 buildCounterCommunityMembers++; | 535 buildCounterCommunityMembers++; |
| 536 if (buildCounterCommunityMembers < 3) { | 536 if (buildCounterCommunityMembers < 3) { |
| 537 o.communityMembershipStatus = buildCommunityMembershipStatus(); | 537 o.communityMembershipStatus = buildCommunityMembershipStatus(); |
| 538 o.kind = "foo"; | 538 o.kind = "foo"; |
| 539 o.person = buildOrkutActivitypersonResource(); | 539 o.person = buildOrkutActivitypersonResource(); |
| 540 } | 540 } |
| 541 buildCounterCommunityMembers--; | 541 buildCounterCommunityMembers--; |
| 542 return o; | 542 return o; |
| 543 } | 543 } |
| 544 | 544 |
| 545 checkCommunityMembers(api.CommunityMembers o) { | 545 checkCommunityMembers(api.CommunityMembers o) { |
| 546 buildCounterCommunityMembers++; | 546 buildCounterCommunityMembers++; |
| 547 if (buildCounterCommunityMembers < 3) { | 547 if (buildCounterCommunityMembers < 3) { |
| 548 checkCommunityMembershipStatus(o.communityMembershipStatus); | 548 checkCommunityMembershipStatus(o.communityMembershipStatus); |
| 549 unittest.expect(o.kind, unittest.equals('foo')); | 549 unittest.expect(o.kind, unittest.equals('foo')); |
| 550 checkOrkutActivitypersonResource(o.person); | 550 checkOrkutActivitypersonResource(o.person); |
| 551 } | 551 } |
| 552 buildCounterCommunityMembers--; | 552 buildCounterCommunityMembers--; |
| 553 } | 553 } |
| 554 | 554 |
| 555 buildUnnamed155() { | 555 buildUnnamed193() { |
| 556 var o = new core.List<api.CommunityMembers>(); | 556 var o = new core.List<api.CommunityMembers>(); |
| 557 o.add(buildCommunityMembers()); | 557 o.add(buildCommunityMembers()); |
| 558 o.add(buildCommunityMembers()); | 558 o.add(buildCommunityMembers()); |
| 559 return o; | 559 return o; |
| 560 } | 560 } |
| 561 | 561 |
| 562 checkUnnamed155(core.List<api.CommunityMembers> o) { | 562 checkUnnamed193(core.List<api.CommunityMembers> o) { |
| 563 unittest.expect(o, unittest.hasLength(2)); | 563 unittest.expect(o, unittest.hasLength(2)); |
| 564 checkCommunityMembers(o[0]); | 564 checkCommunityMembers(o[0]); |
| 565 checkCommunityMembers(o[1]); | 565 checkCommunityMembers(o[1]); |
| 566 } | 566 } |
| 567 | 567 |
| 568 core.int buildCounterCommunityMembersList = 0; | 568 core.int buildCounterCommunityMembersList = 0; |
| 569 buildCommunityMembersList() { | 569 buildCommunityMembersList() { |
| 570 var o = new api.CommunityMembersList(); | 570 var o = new api.CommunityMembersList(); |
| 571 buildCounterCommunityMembersList++; | 571 buildCounterCommunityMembersList++; |
| 572 if (buildCounterCommunityMembersList < 3) { | 572 if (buildCounterCommunityMembersList < 3) { |
| 573 o.firstPageToken = "foo"; | 573 o.firstPageToken = "foo"; |
| 574 o.items = buildUnnamed155(); | 574 o.items = buildUnnamed193(); |
| 575 o.kind = "foo"; | 575 o.kind = "foo"; |
| 576 o.lastPageToken = "foo"; | 576 o.lastPageToken = "foo"; |
| 577 o.nextPageToken = "foo"; | 577 o.nextPageToken = "foo"; |
| 578 o.prevPageToken = "foo"; | 578 o.prevPageToken = "foo"; |
| 579 } | 579 } |
| 580 buildCounterCommunityMembersList--; | 580 buildCounterCommunityMembersList--; |
| 581 return o; | 581 return o; |
| 582 } | 582 } |
| 583 | 583 |
| 584 checkCommunityMembersList(api.CommunityMembersList o) { | 584 checkCommunityMembersList(api.CommunityMembersList o) { |
| 585 buildCounterCommunityMembersList++; | 585 buildCounterCommunityMembersList++; |
| 586 if (buildCounterCommunityMembersList < 3) { | 586 if (buildCounterCommunityMembersList < 3) { |
| 587 unittest.expect(o.firstPageToken, unittest.equals('foo')); | 587 unittest.expect(o.firstPageToken, unittest.equals('foo')); |
| 588 checkUnnamed155(o.items); | 588 checkUnnamed193(o.items); |
| 589 unittest.expect(o.kind, unittest.equals('foo')); | 589 unittest.expect(o.kind, unittest.equals('foo')); |
| 590 unittest.expect(o.lastPageToken, unittest.equals('foo')); | 590 unittest.expect(o.lastPageToken, unittest.equals('foo')); |
| 591 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 591 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 592 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 592 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 593 } | 593 } |
| 594 buildCounterCommunityMembersList--; | 594 buildCounterCommunityMembersList--; |
| 595 } | 595 } |
| 596 | 596 |
| 597 core.int buildCounterCommunityMembershipStatus = 0; | 597 core.int buildCounterCommunityMembershipStatus = 0; |
| 598 buildCommunityMembershipStatus() { | 598 buildCommunityMembershipStatus() { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 626 unittest.expect(o.isModerator, unittest.isTrue); | 626 unittest.expect(o.isModerator, unittest.isTrue); |
| 627 unittest.expect(o.isOwner, unittest.isTrue); | 627 unittest.expect(o.isOwner, unittest.isTrue); |
| 628 unittest.expect(o.isRestoreAvailable, unittest.isTrue); | 628 unittest.expect(o.isRestoreAvailable, unittest.isTrue); |
| 629 unittest.expect(o.isTakebackAvailable, unittest.isTrue); | 629 unittest.expect(o.isTakebackAvailable, unittest.isTrue); |
| 630 unittest.expect(o.kind, unittest.equals('foo')); | 630 unittest.expect(o.kind, unittest.equals('foo')); |
| 631 unittest.expect(o.status, unittest.equals('foo')); | 631 unittest.expect(o.status, unittest.equals('foo')); |
| 632 } | 632 } |
| 633 buildCounterCommunityMembershipStatus--; | 633 buildCounterCommunityMembershipStatus--; |
| 634 } | 634 } |
| 635 | 635 |
| 636 buildUnnamed156() { | 636 buildUnnamed194() { |
| 637 var o = new core.List<api.OrkutLinkResource>(); | 637 var o = new core.List<api.OrkutLinkResource>(); |
| 638 o.add(buildOrkutLinkResource()); | 638 o.add(buildOrkutLinkResource()); |
| 639 o.add(buildOrkutLinkResource()); | 639 o.add(buildOrkutLinkResource()); |
| 640 return o; | 640 return o; |
| 641 } | 641 } |
| 642 | 642 |
| 643 checkUnnamed156(core.List<api.OrkutLinkResource> o) { | 643 checkUnnamed194(core.List<api.OrkutLinkResource> o) { |
| 644 unittest.expect(o, unittest.hasLength(2)); | 644 unittest.expect(o, unittest.hasLength(2)); |
| 645 checkOrkutLinkResource(o[0]); | 645 checkOrkutLinkResource(o[0]); |
| 646 checkOrkutLinkResource(o[1]); | 646 checkOrkutLinkResource(o[1]); |
| 647 } | 647 } |
| 648 | 648 |
| 649 core.int buildCounterCommunityMessage = 0; | 649 core.int buildCounterCommunityMessage = 0; |
| 650 buildCommunityMessage() { | 650 buildCommunityMessage() { |
| 651 var o = new api.CommunityMessage(); | 651 var o = new api.CommunityMessage(); |
| 652 buildCounterCommunityMessage++; | 652 buildCounterCommunityMessage++; |
| 653 if (buildCounterCommunityMessage < 3) { | 653 if (buildCounterCommunityMessage < 3) { |
| 654 o.addedDate = core.DateTime.parse("2002-02-27T14:01:02"); | 654 o.addedDate = core.DateTime.parse("2002-02-27T14:01:02"); |
| 655 o.author = buildOrkutAuthorResource(); | 655 o.author = buildOrkutAuthorResource(); |
| 656 o.body = "foo"; | 656 o.body = "foo"; |
| 657 o.id = "foo"; | 657 o.id = "foo"; |
| 658 o.isSpam = true; | 658 o.isSpam = true; |
| 659 o.kind = "foo"; | 659 o.kind = "foo"; |
| 660 o.links = buildUnnamed156(); | 660 o.links = buildUnnamed194(); |
| 661 o.subject = "foo"; | 661 o.subject = "foo"; |
| 662 } | 662 } |
| 663 buildCounterCommunityMessage--; | 663 buildCounterCommunityMessage--; |
| 664 return o; | 664 return o; |
| 665 } | 665 } |
| 666 | 666 |
| 667 checkCommunityMessage(api.CommunityMessage o) { | 667 checkCommunityMessage(api.CommunityMessage o) { |
| 668 buildCounterCommunityMessage++; | 668 buildCounterCommunityMessage++; |
| 669 if (buildCounterCommunityMessage < 3) { | 669 if (buildCounterCommunityMessage < 3) { |
| 670 unittest.expect(o.addedDate, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 670 unittest.expect(o.addedDate, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 671 checkOrkutAuthorResource(o.author); | 671 checkOrkutAuthorResource(o.author); |
| 672 unittest.expect(o.body, unittest.equals('foo')); | 672 unittest.expect(o.body, unittest.equals('foo')); |
| 673 unittest.expect(o.id, unittest.equals('foo')); | 673 unittest.expect(o.id, unittest.equals('foo')); |
| 674 unittest.expect(o.isSpam, unittest.isTrue); | 674 unittest.expect(o.isSpam, unittest.isTrue); |
| 675 unittest.expect(o.kind, unittest.equals('foo')); | 675 unittest.expect(o.kind, unittest.equals('foo')); |
| 676 checkUnnamed156(o.links); | 676 checkUnnamed194(o.links); |
| 677 unittest.expect(o.subject, unittest.equals('foo')); | 677 unittest.expect(o.subject, unittest.equals('foo')); |
| 678 } | 678 } |
| 679 buildCounterCommunityMessage--; | 679 buildCounterCommunityMessage--; |
| 680 } | 680 } |
| 681 | 681 |
| 682 buildUnnamed157() { | 682 buildUnnamed195() { |
| 683 var o = new core.List<api.CommunityMessage>(); | 683 var o = new core.List<api.CommunityMessage>(); |
| 684 o.add(buildCommunityMessage()); | 684 o.add(buildCommunityMessage()); |
| 685 o.add(buildCommunityMessage()); | 685 o.add(buildCommunityMessage()); |
| 686 return o; | 686 return o; |
| 687 } | 687 } |
| 688 | 688 |
| 689 checkUnnamed157(core.List<api.CommunityMessage> o) { | 689 checkUnnamed195(core.List<api.CommunityMessage> o) { |
| 690 unittest.expect(o, unittest.hasLength(2)); | 690 unittest.expect(o, unittest.hasLength(2)); |
| 691 checkCommunityMessage(o[0]); | 691 checkCommunityMessage(o[0]); |
| 692 checkCommunityMessage(o[1]); | 692 checkCommunityMessage(o[1]); |
| 693 } | 693 } |
| 694 | 694 |
| 695 core.int buildCounterCommunityMessageList = 0; | 695 core.int buildCounterCommunityMessageList = 0; |
| 696 buildCommunityMessageList() { | 696 buildCommunityMessageList() { |
| 697 var o = new api.CommunityMessageList(); | 697 var o = new api.CommunityMessageList(); |
| 698 buildCounterCommunityMessageList++; | 698 buildCounterCommunityMessageList++; |
| 699 if (buildCounterCommunityMessageList < 3) { | 699 if (buildCounterCommunityMessageList < 3) { |
| 700 o.firstPageToken = "foo"; | 700 o.firstPageToken = "foo"; |
| 701 o.items = buildUnnamed157(); | 701 o.items = buildUnnamed195(); |
| 702 o.kind = "foo"; | 702 o.kind = "foo"; |
| 703 o.lastPageToken = "foo"; | 703 o.lastPageToken = "foo"; |
| 704 o.nextPageToken = "foo"; | 704 o.nextPageToken = "foo"; |
| 705 o.prevPageToken = "foo"; | 705 o.prevPageToken = "foo"; |
| 706 } | 706 } |
| 707 buildCounterCommunityMessageList--; | 707 buildCounterCommunityMessageList--; |
| 708 return o; | 708 return o; |
| 709 } | 709 } |
| 710 | 710 |
| 711 checkCommunityMessageList(api.CommunityMessageList o) { | 711 checkCommunityMessageList(api.CommunityMessageList o) { |
| 712 buildCounterCommunityMessageList++; | 712 buildCounterCommunityMessageList++; |
| 713 if (buildCounterCommunityMessageList < 3) { | 713 if (buildCounterCommunityMessageList < 3) { |
| 714 unittest.expect(o.firstPageToken, unittest.equals('foo')); | 714 unittest.expect(o.firstPageToken, unittest.equals('foo')); |
| 715 checkUnnamed157(o.items); | 715 checkUnnamed195(o.items); |
| 716 unittest.expect(o.kind, unittest.equals('foo')); | 716 unittest.expect(o.kind, unittest.equals('foo')); |
| 717 unittest.expect(o.lastPageToken, unittest.equals('foo')); | 717 unittest.expect(o.lastPageToken, unittest.equals('foo')); |
| 718 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 718 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 719 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 719 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 720 } | 720 } |
| 721 buildCounterCommunityMessageList--; | 721 buildCounterCommunityMessageList--; |
| 722 } | 722 } |
| 723 | 723 |
| 724 core.int buildCounterCommunityPollImage = 0; | 724 core.int buildCounterCommunityPollImage = 0; |
| 725 buildCommunityPollImage() { | 725 buildCommunityPollImage() { |
| 726 var o = new api.CommunityPollImage(); | 726 var o = new api.CommunityPollImage(); |
| 727 buildCounterCommunityPollImage++; | 727 buildCounterCommunityPollImage++; |
| 728 if (buildCounterCommunityPollImage < 3) { | 728 if (buildCounterCommunityPollImage < 3) { |
| 729 o.url = "foo"; | 729 o.url = "foo"; |
| 730 } | 730 } |
| 731 buildCounterCommunityPollImage--; | 731 buildCounterCommunityPollImage--; |
| 732 return o; | 732 return o; |
| 733 } | 733 } |
| 734 | 734 |
| 735 checkCommunityPollImage(api.CommunityPollImage o) { | 735 checkCommunityPollImage(api.CommunityPollImage o) { |
| 736 buildCounterCommunityPollImage++; | 736 buildCounterCommunityPollImage++; |
| 737 if (buildCounterCommunityPollImage < 3) { | 737 if (buildCounterCommunityPollImage < 3) { |
| 738 unittest.expect(o.url, unittest.equals('foo')); | 738 unittest.expect(o.url, unittest.equals('foo')); |
| 739 } | 739 } |
| 740 buildCounterCommunityPollImage--; | 740 buildCounterCommunityPollImage--; |
| 741 } | 741 } |
| 742 | 742 |
| 743 buildUnnamed158() { | 743 buildUnnamed196() { |
| 744 var o = new core.List<api.OrkutLinkResource>(); | 744 var o = new core.List<api.OrkutLinkResource>(); |
| 745 o.add(buildOrkutLinkResource()); | 745 o.add(buildOrkutLinkResource()); |
| 746 o.add(buildOrkutLinkResource()); | 746 o.add(buildOrkutLinkResource()); |
| 747 return o; | 747 return o; |
| 748 } | 748 } |
| 749 | 749 |
| 750 checkUnnamed158(core.List<api.OrkutLinkResource> o) { | 750 checkUnnamed196(core.List<api.OrkutLinkResource> o) { |
| 751 unittest.expect(o, unittest.hasLength(2)); | 751 unittest.expect(o, unittest.hasLength(2)); |
| 752 checkOrkutLinkResource(o[0]); | 752 checkOrkutLinkResource(o[0]); |
| 753 checkOrkutLinkResource(o[1]); | 753 checkOrkutLinkResource(o[1]); |
| 754 } | 754 } |
| 755 | 755 |
| 756 buildUnnamed159() { | 756 buildUnnamed197() { |
| 757 var o = new core.List<api.OrkutCommunitypolloptionResource>(); | 757 var o = new core.List<api.OrkutCommunitypolloptionResource>(); |
| 758 o.add(buildOrkutCommunitypolloptionResource()); | 758 o.add(buildOrkutCommunitypolloptionResource()); |
| 759 o.add(buildOrkutCommunitypolloptionResource()); | 759 o.add(buildOrkutCommunitypolloptionResource()); |
| 760 return o; | 760 return o; |
| 761 } | 761 } |
| 762 | 762 |
| 763 checkUnnamed159(core.List<api.OrkutCommunitypolloptionResource> o) { | 763 checkUnnamed197(core.List<api.OrkutCommunitypolloptionResource> o) { |
| 764 unittest.expect(o, unittest.hasLength(2)); | 764 unittest.expect(o, unittest.hasLength(2)); |
| 765 checkOrkutCommunitypolloptionResource(o[0]); | 765 checkOrkutCommunitypolloptionResource(o[0]); |
| 766 checkOrkutCommunitypolloptionResource(o[1]); | 766 checkOrkutCommunitypolloptionResource(o[1]); |
| 767 } | 767 } |
| 768 | 768 |
| 769 buildUnnamed160() { | 769 buildUnnamed198() { |
| 770 var o = new core.List<core.int>(); | 770 var o = new core.List<core.int>(); |
| 771 o.add(42); | 771 o.add(42); |
| 772 o.add(42); | 772 o.add(42); |
| 773 return o; | 773 return o; |
| 774 } | 774 } |
| 775 | 775 |
| 776 checkUnnamed160(core.List<core.int> o) { | 776 checkUnnamed198(core.List<core.int> o) { |
| 777 unittest.expect(o, unittest.hasLength(2)); | 777 unittest.expect(o, unittest.hasLength(2)); |
| 778 unittest.expect(o[0], unittest.equals(42)); | 778 unittest.expect(o[0], unittest.equals(42)); |
| 779 unittest.expect(o[1], unittest.equals(42)); | 779 unittest.expect(o[1], unittest.equals(42)); |
| 780 } | 780 } |
| 781 | 781 |
| 782 core.int buildCounterCommunityPoll = 0; | 782 core.int buildCounterCommunityPoll = 0; |
| 783 buildCommunityPoll() { | 783 buildCommunityPoll() { |
| 784 var o = new api.CommunityPoll(); | 784 var o = new api.CommunityPoll(); |
| 785 buildCounterCommunityPoll++; | 785 buildCounterCommunityPoll++; |
| 786 if (buildCounterCommunityPoll < 3) { | 786 if (buildCounterCommunityPoll < 3) { |
| 787 o.author = buildOrkutAuthorResource(); | 787 o.author = buildOrkutAuthorResource(); |
| 788 o.communityId = 42; | 788 o.communityId = 42; |
| 789 o.creationTime = core.DateTime.parse("2002-02-27T14:01:02"); | 789 o.creationTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 790 o.description = "foo"; | 790 o.description = "foo"; |
| 791 o.endingTime = core.DateTime.parse("2002-02-27T14:01:02"); | 791 o.endingTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 792 o.hasVoted = true; | 792 o.hasVoted = true; |
| 793 o.id = "foo"; | 793 o.id = "foo"; |
| 794 o.image = buildCommunityPollImage(); | 794 o.image = buildCommunityPollImage(); |
| 795 o.isClosed = true; | 795 o.isClosed = true; |
| 796 o.isMultipleAnswers = true; | 796 o.isMultipleAnswers = true; |
| 797 o.isOpenForVoting = true; | 797 o.isOpenForVoting = true; |
| 798 o.isRestricted = true; | 798 o.isRestricted = true; |
| 799 o.isSpam = true; | 799 o.isSpam = true; |
| 800 o.isUsersVotePublic = true; | 800 o.isUsersVotePublic = true; |
| 801 o.isVotingAllowedForNonMembers = true; | 801 o.isVotingAllowedForNonMembers = true; |
| 802 o.kind = "foo"; | 802 o.kind = "foo"; |
| 803 o.lastUpdate = core.DateTime.parse("2002-02-27T14:01:02"); | 803 o.lastUpdate = core.DateTime.parse("2002-02-27T14:01:02"); |
| 804 o.links = buildUnnamed158(); | 804 o.links = buildUnnamed196(); |
| 805 o.options = buildUnnamed159(); | 805 o.options = buildUnnamed197(); |
| 806 o.question = "foo"; | 806 o.question = "foo"; |
| 807 o.totalNumberOfVotes = 42; | 807 o.totalNumberOfVotes = 42; |
| 808 o.votedOptions = buildUnnamed160(); | 808 o.votedOptions = buildUnnamed198(); |
| 809 } | 809 } |
| 810 buildCounterCommunityPoll--; | 810 buildCounterCommunityPoll--; |
| 811 return o; | 811 return o; |
| 812 } | 812 } |
| 813 | 813 |
| 814 checkCommunityPoll(api.CommunityPoll o) { | 814 checkCommunityPoll(api.CommunityPoll o) { |
| 815 buildCounterCommunityPoll++; | 815 buildCounterCommunityPoll++; |
| 816 if (buildCounterCommunityPoll < 3) { | 816 if (buildCounterCommunityPoll < 3) { |
| 817 checkOrkutAuthorResource(o.author); | 817 checkOrkutAuthorResource(o.author); |
| 818 unittest.expect(o.communityId, unittest.equals(42)); | 818 unittest.expect(o.communityId, unittest.equals(42)); |
| 819 unittest.expect(o.creationTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); | 819 unittest.expect(o.creationTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); |
| 820 unittest.expect(o.description, unittest.equals('foo')); | 820 unittest.expect(o.description, unittest.equals('foo')); |
| 821 unittest.expect(o.endingTime, unittest.equals(core.DateTime.parse("2002-02-2
7T14:01:02"))); | 821 unittest.expect(o.endingTime, unittest.equals(core.DateTime.parse("2002-02-2
7T14:01:02"))); |
| 822 unittest.expect(o.hasVoted, unittest.isTrue); | 822 unittest.expect(o.hasVoted, unittest.isTrue); |
| 823 unittest.expect(o.id, unittest.equals('foo')); | 823 unittest.expect(o.id, unittest.equals('foo')); |
| 824 checkCommunityPollImage(o.image); | 824 checkCommunityPollImage(o.image); |
| 825 unittest.expect(o.isClosed, unittest.isTrue); | 825 unittest.expect(o.isClosed, unittest.isTrue); |
| 826 unittest.expect(o.isMultipleAnswers, unittest.isTrue); | 826 unittest.expect(o.isMultipleAnswers, unittest.isTrue); |
| 827 unittest.expect(o.isOpenForVoting, unittest.isTrue); | 827 unittest.expect(o.isOpenForVoting, unittest.isTrue); |
| 828 unittest.expect(o.isRestricted, unittest.isTrue); | 828 unittest.expect(o.isRestricted, unittest.isTrue); |
| 829 unittest.expect(o.isSpam, unittest.isTrue); | 829 unittest.expect(o.isSpam, unittest.isTrue); |
| 830 unittest.expect(o.isUsersVotePublic, unittest.isTrue); | 830 unittest.expect(o.isUsersVotePublic, unittest.isTrue); |
| 831 unittest.expect(o.isVotingAllowedForNonMembers, unittest.isTrue); | 831 unittest.expect(o.isVotingAllowedForNonMembers, unittest.isTrue); |
| 832 unittest.expect(o.kind, unittest.equals('foo')); | 832 unittest.expect(o.kind, unittest.equals('foo')); |
| 833 unittest.expect(o.lastUpdate, unittest.equals(core.DateTime.parse("2002-02-2
7T14:01:02"))); | 833 unittest.expect(o.lastUpdate, unittest.equals(core.DateTime.parse("2002-02-2
7T14:01:02"))); |
| 834 checkUnnamed158(o.links); | 834 checkUnnamed196(o.links); |
| 835 checkUnnamed159(o.options); | 835 checkUnnamed197(o.options); |
| 836 unittest.expect(o.question, unittest.equals('foo')); | 836 unittest.expect(o.question, unittest.equals('foo')); |
| 837 unittest.expect(o.totalNumberOfVotes, unittest.equals(42)); | 837 unittest.expect(o.totalNumberOfVotes, unittest.equals(42)); |
| 838 checkUnnamed160(o.votedOptions); | 838 checkUnnamed198(o.votedOptions); |
| 839 } | 839 } |
| 840 buildCounterCommunityPoll--; | 840 buildCounterCommunityPoll--; |
| 841 } | 841 } |
| 842 | 842 |
| 843 core.int buildCounterCommunityPollComment = 0; | 843 core.int buildCounterCommunityPollComment = 0; |
| 844 buildCommunityPollComment() { | 844 buildCommunityPollComment() { |
| 845 var o = new api.CommunityPollComment(); | 845 var o = new api.CommunityPollComment(); |
| 846 buildCounterCommunityPollComment++; | 846 buildCounterCommunityPollComment++; |
| 847 if (buildCounterCommunityPollComment < 3) { | 847 if (buildCounterCommunityPollComment < 3) { |
| 848 o.addedDate = core.DateTime.parse("2002-02-27T14:01:02"); | 848 o.addedDate = core.DateTime.parse("2002-02-27T14:01:02"); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 860 if (buildCounterCommunityPollComment < 3) { | 860 if (buildCounterCommunityPollComment < 3) { |
| 861 unittest.expect(o.addedDate, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 861 unittest.expect(o.addedDate, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 862 checkOrkutAuthorResource(o.author); | 862 checkOrkutAuthorResource(o.author); |
| 863 unittest.expect(o.body, unittest.equals('foo')); | 863 unittest.expect(o.body, unittest.equals('foo')); |
| 864 unittest.expect(o.id, unittest.equals(42)); | 864 unittest.expect(o.id, unittest.equals(42)); |
| 865 unittest.expect(o.kind, unittest.equals('foo')); | 865 unittest.expect(o.kind, unittest.equals('foo')); |
| 866 } | 866 } |
| 867 buildCounterCommunityPollComment--; | 867 buildCounterCommunityPollComment--; |
| 868 } | 868 } |
| 869 | 869 |
| 870 buildUnnamed161() { | 870 buildUnnamed199() { |
| 871 var o = new core.List<api.CommunityPollComment>(); | 871 var o = new core.List<api.CommunityPollComment>(); |
| 872 o.add(buildCommunityPollComment()); | 872 o.add(buildCommunityPollComment()); |
| 873 o.add(buildCommunityPollComment()); | 873 o.add(buildCommunityPollComment()); |
| 874 return o; | 874 return o; |
| 875 } | 875 } |
| 876 | 876 |
| 877 checkUnnamed161(core.List<api.CommunityPollComment> o) { | 877 checkUnnamed199(core.List<api.CommunityPollComment> o) { |
| 878 unittest.expect(o, unittest.hasLength(2)); | 878 unittest.expect(o, unittest.hasLength(2)); |
| 879 checkCommunityPollComment(o[0]); | 879 checkCommunityPollComment(o[0]); |
| 880 checkCommunityPollComment(o[1]); | 880 checkCommunityPollComment(o[1]); |
| 881 } | 881 } |
| 882 | 882 |
| 883 core.int buildCounterCommunityPollCommentList = 0; | 883 core.int buildCounterCommunityPollCommentList = 0; |
| 884 buildCommunityPollCommentList() { | 884 buildCommunityPollCommentList() { |
| 885 var o = new api.CommunityPollCommentList(); | 885 var o = new api.CommunityPollCommentList(); |
| 886 buildCounterCommunityPollCommentList++; | 886 buildCounterCommunityPollCommentList++; |
| 887 if (buildCounterCommunityPollCommentList < 3) { | 887 if (buildCounterCommunityPollCommentList < 3) { |
| 888 o.firstPageToken = "foo"; | 888 o.firstPageToken = "foo"; |
| 889 o.items = buildUnnamed161(); | 889 o.items = buildUnnamed199(); |
| 890 o.kind = "foo"; | 890 o.kind = "foo"; |
| 891 o.lastPageToken = "foo"; | 891 o.lastPageToken = "foo"; |
| 892 o.nextPageToken = "foo"; | 892 o.nextPageToken = "foo"; |
| 893 o.prevPageToken = "foo"; | 893 o.prevPageToken = "foo"; |
| 894 } | 894 } |
| 895 buildCounterCommunityPollCommentList--; | 895 buildCounterCommunityPollCommentList--; |
| 896 return o; | 896 return o; |
| 897 } | 897 } |
| 898 | 898 |
| 899 checkCommunityPollCommentList(api.CommunityPollCommentList o) { | 899 checkCommunityPollCommentList(api.CommunityPollCommentList o) { |
| 900 buildCounterCommunityPollCommentList++; | 900 buildCounterCommunityPollCommentList++; |
| 901 if (buildCounterCommunityPollCommentList < 3) { | 901 if (buildCounterCommunityPollCommentList < 3) { |
| 902 unittest.expect(o.firstPageToken, unittest.equals('foo')); | 902 unittest.expect(o.firstPageToken, unittest.equals('foo')); |
| 903 checkUnnamed161(o.items); | 903 checkUnnamed199(o.items); |
| 904 unittest.expect(o.kind, unittest.equals('foo')); | 904 unittest.expect(o.kind, unittest.equals('foo')); |
| 905 unittest.expect(o.lastPageToken, unittest.equals('foo')); | 905 unittest.expect(o.lastPageToken, unittest.equals('foo')); |
| 906 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 906 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 907 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 907 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 908 } | 908 } |
| 909 buildCounterCommunityPollCommentList--; | 909 buildCounterCommunityPollCommentList--; |
| 910 } | 910 } |
| 911 | 911 |
| 912 buildUnnamed162() { | 912 buildUnnamed200() { |
| 913 var o = new core.List<api.CommunityPoll>(); | 913 var o = new core.List<api.CommunityPoll>(); |
| 914 o.add(buildCommunityPoll()); | 914 o.add(buildCommunityPoll()); |
| 915 o.add(buildCommunityPoll()); | 915 o.add(buildCommunityPoll()); |
| 916 return o; | 916 return o; |
| 917 } | 917 } |
| 918 | 918 |
| 919 checkUnnamed162(core.List<api.CommunityPoll> o) { | 919 checkUnnamed200(core.List<api.CommunityPoll> o) { |
| 920 unittest.expect(o, unittest.hasLength(2)); | 920 unittest.expect(o, unittest.hasLength(2)); |
| 921 checkCommunityPoll(o[0]); | 921 checkCommunityPoll(o[0]); |
| 922 checkCommunityPoll(o[1]); | 922 checkCommunityPoll(o[1]); |
| 923 } | 923 } |
| 924 | 924 |
| 925 core.int buildCounterCommunityPollList = 0; | 925 core.int buildCounterCommunityPollList = 0; |
| 926 buildCommunityPollList() { | 926 buildCommunityPollList() { |
| 927 var o = new api.CommunityPollList(); | 927 var o = new api.CommunityPollList(); |
| 928 buildCounterCommunityPollList++; | 928 buildCounterCommunityPollList++; |
| 929 if (buildCounterCommunityPollList < 3) { | 929 if (buildCounterCommunityPollList < 3) { |
| 930 o.firstPageToken = "foo"; | 930 o.firstPageToken = "foo"; |
| 931 o.items = buildUnnamed162(); | 931 o.items = buildUnnamed200(); |
| 932 o.kind = "foo"; | 932 o.kind = "foo"; |
| 933 o.lastPageToken = "foo"; | 933 o.lastPageToken = "foo"; |
| 934 o.nextPageToken = "foo"; | 934 o.nextPageToken = "foo"; |
| 935 o.prevPageToken = "foo"; | 935 o.prevPageToken = "foo"; |
| 936 } | 936 } |
| 937 buildCounterCommunityPollList--; | 937 buildCounterCommunityPollList--; |
| 938 return o; | 938 return o; |
| 939 } | 939 } |
| 940 | 940 |
| 941 checkCommunityPollList(api.CommunityPollList o) { | 941 checkCommunityPollList(api.CommunityPollList o) { |
| 942 buildCounterCommunityPollList++; | 942 buildCounterCommunityPollList++; |
| 943 if (buildCounterCommunityPollList < 3) { | 943 if (buildCounterCommunityPollList < 3) { |
| 944 unittest.expect(o.firstPageToken, unittest.equals('foo')); | 944 unittest.expect(o.firstPageToken, unittest.equals('foo')); |
| 945 checkUnnamed162(o.items); | 945 checkUnnamed200(o.items); |
| 946 unittest.expect(o.kind, unittest.equals('foo')); | 946 unittest.expect(o.kind, unittest.equals('foo')); |
| 947 unittest.expect(o.lastPageToken, unittest.equals('foo')); | 947 unittest.expect(o.lastPageToken, unittest.equals('foo')); |
| 948 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 948 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 949 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 949 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 950 } | 950 } |
| 951 buildCounterCommunityPollList--; | 951 buildCounterCommunityPollList--; |
| 952 } | 952 } |
| 953 | 953 |
| 954 buildUnnamed163() { | 954 buildUnnamed201() { |
| 955 var o = new core.List<core.int>(); | 955 var o = new core.List<core.int>(); |
| 956 o.add(42); | 956 o.add(42); |
| 957 o.add(42); | 957 o.add(42); |
| 958 return o; | 958 return o; |
| 959 } | 959 } |
| 960 | 960 |
| 961 checkUnnamed163(core.List<core.int> o) { | 961 checkUnnamed201(core.List<core.int> o) { |
| 962 unittest.expect(o, unittest.hasLength(2)); | 962 unittest.expect(o, unittest.hasLength(2)); |
| 963 unittest.expect(o[0], unittest.equals(42)); | 963 unittest.expect(o[0], unittest.equals(42)); |
| 964 unittest.expect(o[1], unittest.equals(42)); | 964 unittest.expect(o[1], unittest.equals(42)); |
| 965 } | 965 } |
| 966 | 966 |
| 967 core.int buildCounterCommunityPollVote = 0; | 967 core.int buildCounterCommunityPollVote = 0; |
| 968 buildCommunityPollVote() { | 968 buildCommunityPollVote() { |
| 969 var o = new api.CommunityPollVote(); | 969 var o = new api.CommunityPollVote(); |
| 970 buildCounterCommunityPollVote++; | 970 buildCounterCommunityPollVote++; |
| 971 if (buildCounterCommunityPollVote < 3) { | 971 if (buildCounterCommunityPollVote < 3) { |
| 972 o.isVotevisible = true; | 972 o.isVotevisible = true; |
| 973 o.kind = "foo"; | 973 o.kind = "foo"; |
| 974 o.optionIds = buildUnnamed163(); | 974 o.optionIds = buildUnnamed201(); |
| 975 } | 975 } |
| 976 buildCounterCommunityPollVote--; | 976 buildCounterCommunityPollVote--; |
| 977 return o; | 977 return o; |
| 978 } | 978 } |
| 979 | 979 |
| 980 checkCommunityPollVote(api.CommunityPollVote o) { | 980 checkCommunityPollVote(api.CommunityPollVote o) { |
| 981 buildCounterCommunityPollVote++; | 981 buildCounterCommunityPollVote++; |
| 982 if (buildCounterCommunityPollVote < 3) { | 982 if (buildCounterCommunityPollVote < 3) { |
| 983 unittest.expect(o.isVotevisible, unittest.isTrue); | 983 unittest.expect(o.isVotevisible, unittest.isTrue); |
| 984 unittest.expect(o.kind, unittest.equals('foo')); | 984 unittest.expect(o.kind, unittest.equals('foo')); |
| 985 checkUnnamed163(o.optionIds); | 985 checkUnnamed201(o.optionIds); |
| 986 } | 986 } |
| 987 buildCounterCommunityPollVote--; | 987 buildCounterCommunityPollVote--; |
| 988 } | 988 } |
| 989 | 989 |
| 990 buildUnnamed164() { | 990 buildUnnamed202() { |
| 991 var o = new core.List<api.OrkutLinkResource>(); | 991 var o = new core.List<api.OrkutLinkResource>(); |
| 992 o.add(buildOrkutLinkResource()); | 992 o.add(buildOrkutLinkResource()); |
| 993 o.add(buildOrkutLinkResource()); | 993 o.add(buildOrkutLinkResource()); |
| 994 return o; | 994 return o; |
| 995 } | 995 } |
| 996 | 996 |
| 997 checkUnnamed164(core.List<api.OrkutLinkResource> o) { | 997 checkUnnamed202(core.List<api.OrkutLinkResource> o) { |
| 998 unittest.expect(o, unittest.hasLength(2)); | 998 unittest.expect(o, unittest.hasLength(2)); |
| 999 checkOrkutLinkResource(o[0]); | 999 checkOrkutLinkResource(o[0]); |
| 1000 checkOrkutLinkResource(o[1]); | 1000 checkOrkutLinkResource(o[1]); |
| 1001 } | 1001 } |
| 1002 | 1002 |
| 1003 buildUnnamed165() { | 1003 buildUnnamed203() { |
| 1004 var o = new core.List<api.CommunityMessage>(); | 1004 var o = new core.List<api.CommunityMessage>(); |
| 1005 o.add(buildCommunityMessage()); | 1005 o.add(buildCommunityMessage()); |
| 1006 o.add(buildCommunityMessage()); | 1006 o.add(buildCommunityMessage()); |
| 1007 return o; | 1007 return o; |
| 1008 } | 1008 } |
| 1009 | 1009 |
| 1010 checkUnnamed165(core.List<api.CommunityMessage> o) { | 1010 checkUnnamed203(core.List<api.CommunityMessage> o) { |
| 1011 unittest.expect(o, unittest.hasLength(2)); | 1011 unittest.expect(o, unittest.hasLength(2)); |
| 1012 checkCommunityMessage(o[0]); | 1012 checkCommunityMessage(o[0]); |
| 1013 checkCommunityMessage(o[1]); | 1013 checkCommunityMessage(o[1]); |
| 1014 } | 1014 } |
| 1015 | 1015 |
| 1016 core.int buildCounterCommunityTopic = 0; | 1016 core.int buildCounterCommunityTopic = 0; |
| 1017 buildCommunityTopic() { | 1017 buildCommunityTopic() { |
| 1018 var o = new api.CommunityTopic(); | 1018 var o = new api.CommunityTopic(); |
| 1019 buildCounterCommunityTopic++; | 1019 buildCounterCommunityTopic++; |
| 1020 if (buildCounterCommunityTopic < 3) { | 1020 if (buildCounterCommunityTopic < 3) { |
| 1021 o.author = buildOrkutAuthorResource(); | 1021 o.author = buildOrkutAuthorResource(); |
| 1022 o.body = "foo"; | 1022 o.body = "foo"; |
| 1023 o.id = "foo"; | 1023 o.id = "foo"; |
| 1024 o.isClosed = true; | 1024 o.isClosed = true; |
| 1025 o.kind = "foo"; | 1025 o.kind = "foo"; |
| 1026 o.lastUpdate = core.DateTime.parse("2002-02-27T14:01:02"); | 1026 o.lastUpdate = core.DateTime.parse("2002-02-27T14:01:02"); |
| 1027 o.latestMessageSnippet = "foo"; | 1027 o.latestMessageSnippet = "foo"; |
| 1028 o.links = buildUnnamed164(); | 1028 o.links = buildUnnamed202(); |
| 1029 o.messages = buildUnnamed165(); | 1029 o.messages = buildUnnamed203(); |
| 1030 o.numberOfReplies = 42; | 1030 o.numberOfReplies = 42; |
| 1031 o.title = "foo"; | 1031 o.title = "foo"; |
| 1032 } | 1032 } |
| 1033 buildCounterCommunityTopic--; | 1033 buildCounterCommunityTopic--; |
| 1034 return o; | 1034 return o; |
| 1035 } | 1035 } |
| 1036 | 1036 |
| 1037 checkCommunityTopic(api.CommunityTopic o) { | 1037 checkCommunityTopic(api.CommunityTopic o) { |
| 1038 buildCounterCommunityTopic++; | 1038 buildCounterCommunityTopic++; |
| 1039 if (buildCounterCommunityTopic < 3) { | 1039 if (buildCounterCommunityTopic < 3) { |
| 1040 checkOrkutAuthorResource(o.author); | 1040 checkOrkutAuthorResource(o.author); |
| 1041 unittest.expect(o.body, unittest.equals('foo')); | 1041 unittest.expect(o.body, unittest.equals('foo')); |
| 1042 unittest.expect(o.id, unittest.equals('foo')); | 1042 unittest.expect(o.id, unittest.equals('foo')); |
| 1043 unittest.expect(o.isClosed, unittest.isTrue); | 1043 unittest.expect(o.isClosed, unittest.isTrue); |
| 1044 unittest.expect(o.kind, unittest.equals('foo')); | 1044 unittest.expect(o.kind, unittest.equals('foo')); |
| 1045 unittest.expect(o.lastUpdate, unittest.equals(core.DateTime.parse("2002-02-2
7T14:01:02"))); | 1045 unittest.expect(o.lastUpdate, unittest.equals(core.DateTime.parse("2002-02-2
7T14:01:02"))); |
| 1046 unittest.expect(o.latestMessageSnippet, unittest.equals('foo')); | 1046 unittest.expect(o.latestMessageSnippet, unittest.equals('foo')); |
| 1047 checkUnnamed164(o.links); | 1047 checkUnnamed202(o.links); |
| 1048 checkUnnamed165(o.messages); | 1048 checkUnnamed203(o.messages); |
| 1049 unittest.expect(o.numberOfReplies, unittest.equals(42)); | 1049 unittest.expect(o.numberOfReplies, unittest.equals(42)); |
| 1050 unittest.expect(o.title, unittest.equals('foo')); | 1050 unittest.expect(o.title, unittest.equals('foo')); |
| 1051 } | 1051 } |
| 1052 buildCounterCommunityTopic--; | 1052 buildCounterCommunityTopic--; |
| 1053 } | 1053 } |
| 1054 | 1054 |
| 1055 buildUnnamed166() { | 1055 buildUnnamed204() { |
| 1056 var o = new core.List<api.CommunityTopic>(); | 1056 var o = new core.List<api.CommunityTopic>(); |
| 1057 o.add(buildCommunityTopic()); | 1057 o.add(buildCommunityTopic()); |
| 1058 o.add(buildCommunityTopic()); | 1058 o.add(buildCommunityTopic()); |
| 1059 return o; | 1059 return o; |
| 1060 } | 1060 } |
| 1061 | 1061 |
| 1062 checkUnnamed166(core.List<api.CommunityTopic> o) { | 1062 checkUnnamed204(core.List<api.CommunityTopic> o) { |
| 1063 unittest.expect(o, unittest.hasLength(2)); | 1063 unittest.expect(o, unittest.hasLength(2)); |
| 1064 checkCommunityTopic(o[0]); | 1064 checkCommunityTopic(o[0]); |
| 1065 checkCommunityTopic(o[1]); | 1065 checkCommunityTopic(o[1]); |
| 1066 } | 1066 } |
| 1067 | 1067 |
| 1068 core.int buildCounterCommunityTopicList = 0; | 1068 core.int buildCounterCommunityTopicList = 0; |
| 1069 buildCommunityTopicList() { | 1069 buildCommunityTopicList() { |
| 1070 var o = new api.CommunityTopicList(); | 1070 var o = new api.CommunityTopicList(); |
| 1071 buildCounterCommunityTopicList++; | 1071 buildCounterCommunityTopicList++; |
| 1072 if (buildCounterCommunityTopicList < 3) { | 1072 if (buildCounterCommunityTopicList < 3) { |
| 1073 o.firstPageToken = "foo"; | 1073 o.firstPageToken = "foo"; |
| 1074 o.items = buildUnnamed166(); | 1074 o.items = buildUnnamed204(); |
| 1075 o.kind = "foo"; | 1075 o.kind = "foo"; |
| 1076 o.lastPageToken = "foo"; | 1076 o.lastPageToken = "foo"; |
| 1077 o.nextPageToken = "foo"; | 1077 o.nextPageToken = "foo"; |
| 1078 o.prevPageToken = "foo"; | 1078 o.prevPageToken = "foo"; |
| 1079 } | 1079 } |
| 1080 buildCounterCommunityTopicList--; | 1080 buildCounterCommunityTopicList--; |
| 1081 return o; | 1081 return o; |
| 1082 } | 1082 } |
| 1083 | 1083 |
| 1084 checkCommunityTopicList(api.CommunityTopicList o) { | 1084 checkCommunityTopicList(api.CommunityTopicList o) { |
| 1085 buildCounterCommunityTopicList++; | 1085 buildCounterCommunityTopicList++; |
| 1086 if (buildCounterCommunityTopicList < 3) { | 1086 if (buildCounterCommunityTopicList < 3) { |
| 1087 unittest.expect(o.firstPageToken, unittest.equals('foo')); | 1087 unittest.expect(o.firstPageToken, unittest.equals('foo')); |
| 1088 checkUnnamed166(o.items); | 1088 checkUnnamed204(o.items); |
| 1089 unittest.expect(o.kind, unittest.equals('foo')); | 1089 unittest.expect(o.kind, unittest.equals('foo')); |
| 1090 unittest.expect(o.lastPageToken, unittest.equals('foo')); | 1090 unittest.expect(o.lastPageToken, unittest.equals('foo')); |
| 1091 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1091 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1092 unittest.expect(o.prevPageToken, unittest.equals('foo')); | 1092 unittest.expect(o.prevPageToken, unittest.equals('foo')); |
| 1093 } | 1093 } |
| 1094 buildCounterCommunityTopicList--; | 1094 buildCounterCommunityTopicList--; |
| 1095 } | 1095 } |
| 1096 | 1096 |
| 1097 buildUnnamed167() { | 1097 buildUnnamed205() { |
| 1098 var o = new core.List<api.OrkutCounterResource>(); | 1098 var o = new core.List<api.OrkutCounterResource>(); |
| 1099 o.add(buildOrkutCounterResource()); | 1099 o.add(buildOrkutCounterResource()); |
| 1100 o.add(buildOrkutCounterResource()); | 1100 o.add(buildOrkutCounterResource()); |
| 1101 return o; | 1101 return o; |
| 1102 } | 1102 } |
| 1103 | 1103 |
| 1104 checkUnnamed167(core.List<api.OrkutCounterResource> o) { | 1104 checkUnnamed205(core.List<api.OrkutCounterResource> o) { |
| 1105 unittest.expect(o, unittest.hasLength(2)); | 1105 unittest.expect(o, unittest.hasLength(2)); |
| 1106 checkOrkutCounterResource(o[0]); | 1106 checkOrkutCounterResource(o[0]); |
| 1107 checkOrkutCounterResource(o[1]); | 1107 checkOrkutCounterResource(o[1]); |
| 1108 } | 1108 } |
| 1109 | 1109 |
| 1110 core.int buildCounterCounters = 0; | 1110 core.int buildCounterCounters = 0; |
| 1111 buildCounters() { | 1111 buildCounters() { |
| 1112 var o = new api.Counters(); | 1112 var o = new api.Counters(); |
| 1113 buildCounterCounters++; | 1113 buildCounterCounters++; |
| 1114 if (buildCounterCounters < 3) { | 1114 if (buildCounterCounters < 3) { |
| 1115 o.items = buildUnnamed167(); | 1115 o.items = buildUnnamed205(); |
| 1116 o.kind = "foo"; | 1116 o.kind = "foo"; |
| 1117 } | 1117 } |
| 1118 buildCounterCounters--; | 1118 buildCounterCounters--; |
| 1119 return o; | 1119 return o; |
| 1120 } | 1120 } |
| 1121 | 1121 |
| 1122 checkCounters(api.Counters o) { | 1122 checkCounters(api.Counters o) { |
| 1123 buildCounterCounters++; | 1123 buildCounterCounters++; |
| 1124 if (buildCounterCounters < 3) { | 1124 if (buildCounterCounters < 3) { |
| 1125 checkUnnamed167(o.items); | 1125 checkUnnamed205(o.items); |
| 1126 unittest.expect(o.kind, unittest.equals('foo')); | 1126 unittest.expect(o.kind, unittest.equals('foo')); |
| 1127 } | 1127 } |
| 1128 buildCounterCounters--; | 1128 buildCounterCounters--; |
| 1129 } | 1129 } |
| 1130 | 1130 |
| 1131 buildUnnamed168() { | 1131 buildUnnamed206() { |
| 1132 var o = new core.List<api.OrkutLinkResource>(); | 1132 var o = new core.List<api.OrkutLinkResource>(); |
| 1133 o.add(buildOrkutLinkResource()); | 1133 o.add(buildOrkutLinkResource()); |
| 1134 o.add(buildOrkutLinkResource()); | 1134 o.add(buildOrkutLinkResource()); |
| 1135 return o; | 1135 return o; |
| 1136 } | 1136 } |
| 1137 | 1137 |
| 1138 checkUnnamed168(core.List<api.OrkutLinkResource> o) { | 1138 checkUnnamed206(core.List<api.OrkutLinkResource> o) { |
| 1139 unittest.expect(o, unittest.hasLength(2)); | 1139 unittest.expect(o, unittest.hasLength(2)); |
| 1140 checkOrkutLinkResource(o[0]); | 1140 checkOrkutLinkResource(o[0]); |
| 1141 checkOrkutLinkResource(o[1]); | 1141 checkOrkutLinkResource(o[1]); |
| 1142 } | 1142 } |
| 1143 | 1143 |
| 1144 core.int buildCounterOrkutActivityobjectsResource = 0; | 1144 core.int buildCounterOrkutActivityobjectsResource = 0; |
| 1145 buildOrkutActivityobjectsResource() { | 1145 buildOrkutActivityobjectsResource() { |
| 1146 var o = new api.OrkutActivityobjectsResource(); | 1146 var o = new api.OrkutActivityobjectsResource(); |
| 1147 buildCounterOrkutActivityobjectsResource++; | 1147 buildCounterOrkutActivityobjectsResource++; |
| 1148 if (buildCounterOrkutActivityobjectsResource < 3) { | 1148 if (buildCounterOrkutActivityobjectsResource < 3) { |
| 1149 o.community = buildCommunity(); | 1149 o.community = buildCommunity(); |
| 1150 o.content = "foo"; | 1150 o.content = "foo"; |
| 1151 o.displayName = "foo"; | 1151 o.displayName = "foo"; |
| 1152 o.id = "foo"; | 1152 o.id = "foo"; |
| 1153 o.links = buildUnnamed168(); | 1153 o.links = buildUnnamed206(); |
| 1154 o.objectType = "foo"; | 1154 o.objectType = "foo"; |
| 1155 o.person = buildOrkutActivitypersonResource(); | 1155 o.person = buildOrkutActivitypersonResource(); |
| 1156 } | 1156 } |
| 1157 buildCounterOrkutActivityobjectsResource--; | 1157 buildCounterOrkutActivityobjectsResource--; |
| 1158 return o; | 1158 return o; |
| 1159 } | 1159 } |
| 1160 | 1160 |
| 1161 checkOrkutActivityobjectsResource(api.OrkutActivityobjectsResource o) { | 1161 checkOrkutActivityobjectsResource(api.OrkutActivityobjectsResource o) { |
| 1162 buildCounterOrkutActivityobjectsResource++; | 1162 buildCounterOrkutActivityobjectsResource++; |
| 1163 if (buildCounterOrkutActivityobjectsResource < 3) { | 1163 if (buildCounterOrkutActivityobjectsResource < 3) { |
| 1164 checkCommunity(o.community); | 1164 checkCommunity(o.community); |
| 1165 unittest.expect(o.content, unittest.equals('foo')); | 1165 unittest.expect(o.content, unittest.equals('foo')); |
| 1166 unittest.expect(o.displayName, unittest.equals('foo')); | 1166 unittest.expect(o.displayName, unittest.equals('foo')); |
| 1167 unittest.expect(o.id, unittest.equals('foo')); | 1167 unittest.expect(o.id, unittest.equals('foo')); |
| 1168 checkUnnamed168(o.links); | 1168 checkUnnamed206(o.links); |
| 1169 unittest.expect(o.objectType, unittest.equals('foo')); | 1169 unittest.expect(o.objectType, unittest.equals('foo')); |
| 1170 checkOrkutActivitypersonResource(o.person); | 1170 checkOrkutActivitypersonResource(o.person); |
| 1171 } | 1171 } |
| 1172 buildCounterOrkutActivityobjectsResource--; | 1172 buildCounterOrkutActivityobjectsResource--; |
| 1173 } | 1173 } |
| 1174 | 1174 |
| 1175 core.int buildCounterOrkutActivitypersonResourceImage = 0; | 1175 core.int buildCounterOrkutActivitypersonResourceImage = 0; |
| 1176 buildOrkutActivitypersonResourceImage() { | 1176 buildOrkutActivitypersonResourceImage() { |
| 1177 var o = new api.OrkutActivitypersonResourceImage(); | 1177 var o = new api.OrkutActivitypersonResourceImage(); |
| 1178 buildCounterOrkutActivitypersonResourceImage++; | 1178 buildCounterOrkutActivitypersonResourceImage++; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1370 buildCounterOrkutLinkResource++; | 1370 buildCounterOrkutLinkResource++; |
| 1371 if (buildCounterOrkutLinkResource < 3) { | 1371 if (buildCounterOrkutLinkResource < 3) { |
| 1372 unittest.expect(o.href, unittest.equals('foo')); | 1372 unittest.expect(o.href, unittest.equals('foo')); |
| 1373 unittest.expect(o.rel, unittest.equals('foo')); | 1373 unittest.expect(o.rel, unittest.equals('foo')); |
| 1374 unittest.expect(o.title, unittest.equals('foo')); | 1374 unittest.expect(o.title, unittest.equals('foo')); |
| 1375 unittest.expect(o.type, unittest.equals('foo')); | 1375 unittest.expect(o.type, unittest.equals('foo')); |
| 1376 } | 1376 } |
| 1377 buildCounterOrkutLinkResource--; | 1377 buildCounterOrkutLinkResource--; |
| 1378 } | 1378 } |
| 1379 | 1379 |
| 1380 buildUnnamed169() { | 1380 buildUnnamed207() { |
| 1381 var o = new core.List<api.OrkutLinkResource>(); | 1381 var o = new core.List<api.OrkutLinkResource>(); |
| 1382 o.add(buildOrkutLinkResource()); | 1382 o.add(buildOrkutLinkResource()); |
| 1383 o.add(buildOrkutLinkResource()); | 1383 o.add(buildOrkutLinkResource()); |
| 1384 return o; | 1384 return o; |
| 1385 } | 1385 } |
| 1386 | 1386 |
| 1387 checkUnnamed169(core.List<api.OrkutLinkResource> o) { | 1387 checkUnnamed207(core.List<api.OrkutLinkResource> o) { |
| 1388 unittest.expect(o, unittest.hasLength(2)); | 1388 unittest.expect(o, unittest.hasLength(2)); |
| 1389 checkOrkutLinkResource(o[0]); | 1389 checkOrkutLinkResource(o[0]); |
| 1390 checkOrkutLinkResource(o[1]); | 1390 checkOrkutLinkResource(o[1]); |
| 1391 } | 1391 } |
| 1392 | 1392 |
| 1393 core.int buildCounterVisibility = 0; | 1393 core.int buildCounterVisibility = 0; |
| 1394 buildVisibility() { | 1394 buildVisibility() { |
| 1395 var o = new api.Visibility(); | 1395 var o = new api.Visibility(); |
| 1396 buildCounterVisibility++; | 1396 buildCounterVisibility++; |
| 1397 if (buildCounterVisibility < 3) { | 1397 if (buildCounterVisibility < 3) { |
| 1398 o.kind = "foo"; | 1398 o.kind = "foo"; |
| 1399 o.links = buildUnnamed169(); | 1399 o.links = buildUnnamed207(); |
| 1400 o.visibility = "foo"; | 1400 o.visibility = "foo"; |
| 1401 } | 1401 } |
| 1402 buildCounterVisibility--; | 1402 buildCounterVisibility--; |
| 1403 return o; | 1403 return o; |
| 1404 } | 1404 } |
| 1405 | 1405 |
| 1406 checkVisibility(api.Visibility o) { | 1406 checkVisibility(api.Visibility o) { |
| 1407 buildCounterVisibility++; | 1407 buildCounterVisibility++; |
| 1408 if (buildCounterVisibility < 3) { | 1408 if (buildCounterVisibility < 3) { |
| 1409 unittest.expect(o.kind, unittest.equals('foo')); | 1409 unittest.expect(o.kind, unittest.equals('foo')); |
| 1410 checkUnnamed169(o.links); | 1410 checkUnnamed207(o.links); |
| 1411 unittest.expect(o.visibility, unittest.equals('foo')); | 1411 unittest.expect(o.visibility, unittest.equals('foo')); |
| 1412 } | 1412 } |
| 1413 buildCounterVisibility--; | 1413 buildCounterVisibility--; |
| 1414 } | 1414 } |
| 1415 | 1415 |
| 1416 | 1416 |
| 1417 main() { | 1417 main() { |
| 1418 unittest.group("obj-schema-AclItems", () { | 1418 unittest.group("obj-schema-AclItems", () { |
| 1419 unittest.test("to-json--from-json", () { | 1419 unittest.test("to-json--from-json", () { |
| 1420 var o = buildAclItems(); | 1420 var o = buildAclItems(); |
| (...skipping 2406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3827 res.insert(arg_request).then(unittest.expectAsync(((api.Activity response)
{ | 3827 res.insert(arg_request).then(unittest.expectAsync(((api.Activity response)
{ |
| 3828 checkActivity(response); | 3828 checkActivity(response); |
| 3829 }))); | 3829 }))); |
| 3830 }); | 3830 }); |
| 3831 | 3831 |
| 3832 }); | 3832 }); |
| 3833 | 3833 |
| 3834 | 3834 |
| 3835 } | 3835 } |
| 3836 | 3836 |
| OLD | NEW |