OLD | NEW |
1 library googleapis.dfareporting.v2_0.test; | 1 library googleapis.dfareporting.v2_0.test; |
2 | 2 |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
5 import "dart:async" as async; | 5 import "dart:async" as async; |
6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
7 | 7 |
8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 } | 44 } |
45 } | 45 } |
46 } | 46 } |
47 | 47 |
48 http.StreamedResponse stringResponse( | 48 http.StreamedResponse stringResponse( |
49 core.int status, core.Map headers, core.String body) { | 49 core.int status, core.Map headers, core.String body) { |
50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); | 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); |
51 return new http.StreamedResponse(stream, status, headers: headers); | 51 return new http.StreamedResponse(stream, status, headers: headers); |
52 } | 52 } |
53 | 53 |
54 buildUnnamed258() { | 54 buildUnnamed807() { |
55 var o = new core.List<core.String>(); | 55 var o = new core.List<core.String>(); |
56 o.add("foo"); | 56 o.add("foo"); |
57 o.add("foo"); | 57 o.add("foo"); |
58 return o; | 58 return o; |
59 } | 59 } |
60 | 60 |
61 checkUnnamed258(core.List<core.String> o) { | 61 checkUnnamed807(core.List<core.String> o) { |
62 unittest.expect(o, unittest.hasLength(2)); | 62 unittest.expect(o, unittest.hasLength(2)); |
63 unittest.expect(o[0], unittest.equals('foo')); | 63 unittest.expect(o[0], unittest.equals('foo')); |
64 unittest.expect(o[1], unittest.equals('foo')); | 64 unittest.expect(o[1], unittest.equals('foo')); |
65 } | 65 } |
66 | 66 |
67 buildUnnamed259() { | 67 buildUnnamed808() { |
68 var o = new core.List<core.String>(); | 68 var o = new core.List<core.String>(); |
69 o.add("foo"); | 69 o.add("foo"); |
70 o.add("foo"); | 70 o.add("foo"); |
71 return o; | 71 return o; |
72 } | 72 } |
73 | 73 |
74 checkUnnamed259(core.List<core.String> o) { | 74 checkUnnamed808(core.List<core.String> o) { |
75 unittest.expect(o, unittest.hasLength(2)); | 75 unittest.expect(o, unittest.hasLength(2)); |
76 unittest.expect(o[0], unittest.equals('foo')); | 76 unittest.expect(o[0], unittest.equals('foo')); |
77 unittest.expect(o[1], unittest.equals('foo')); | 77 unittest.expect(o[1], unittest.equals('foo')); |
78 } | 78 } |
79 | 79 |
80 core.int buildCounterAccount = 0; | 80 core.int buildCounterAccount = 0; |
81 buildAccount() { | 81 buildAccount() { |
82 var o = new api.Account(); | 82 var o = new api.Account(); |
83 buildCounterAccount++; | 83 buildCounterAccount++; |
84 if (buildCounterAccount < 3) { | 84 if (buildCounterAccount < 3) { |
85 o.accountPermissionIds = buildUnnamed258(); | 85 o.accountPermissionIds = buildUnnamed807(); |
86 o.accountProfile = "foo"; | 86 o.accountProfile = "foo"; |
87 o.active = true; | 87 o.active = true; |
88 o.activeAdsLimitTier = "foo"; | 88 o.activeAdsLimitTier = "foo"; |
89 o.activeViewOptOut = true; | 89 o.activeViewOptOut = true; |
90 o.availablePermissionIds = buildUnnamed259(); | 90 o.availablePermissionIds = buildUnnamed808(); |
91 o.comscoreVceEnabled = true; | 91 o.comscoreVceEnabled = true; |
92 o.countryId = "foo"; | 92 o.countryId = "foo"; |
93 o.currencyId = "foo"; | 93 o.currencyId = "foo"; |
94 o.defaultCreativeSizeId = "foo"; | 94 o.defaultCreativeSizeId = "foo"; |
95 o.description = "foo"; | 95 o.description = "foo"; |
96 o.id = "foo"; | 96 o.id = "foo"; |
97 o.kind = "foo"; | 97 o.kind = "foo"; |
98 o.locale = "foo"; | 98 o.locale = "foo"; |
99 o.maximumImageSize = "foo"; | 99 o.maximumImageSize = "foo"; |
100 o.name = "foo"; | 100 o.name = "foo"; |
101 o.nielsenOcrEnabled = true; | 101 o.nielsenOcrEnabled = true; |
102 o.reportsConfiguration = buildReportsConfiguration(); | 102 o.reportsConfiguration = buildReportsConfiguration(); |
103 o.teaserSizeLimit = "foo"; | 103 o.teaserSizeLimit = "foo"; |
104 } | 104 } |
105 buildCounterAccount--; | 105 buildCounterAccount--; |
106 return o; | 106 return o; |
107 } | 107 } |
108 | 108 |
109 checkAccount(api.Account o) { | 109 checkAccount(api.Account o) { |
110 buildCounterAccount++; | 110 buildCounterAccount++; |
111 if (buildCounterAccount < 3) { | 111 if (buildCounterAccount < 3) { |
112 checkUnnamed258(o.accountPermissionIds); | 112 checkUnnamed807(o.accountPermissionIds); |
113 unittest.expect(o.accountProfile, unittest.equals('foo')); | 113 unittest.expect(o.accountProfile, unittest.equals('foo')); |
114 unittest.expect(o.active, unittest.isTrue); | 114 unittest.expect(o.active, unittest.isTrue); |
115 unittest.expect(o.activeAdsLimitTier, unittest.equals('foo')); | 115 unittest.expect(o.activeAdsLimitTier, unittest.equals('foo')); |
116 unittest.expect(o.activeViewOptOut, unittest.isTrue); | 116 unittest.expect(o.activeViewOptOut, unittest.isTrue); |
117 checkUnnamed259(o.availablePermissionIds); | 117 checkUnnamed808(o.availablePermissionIds); |
118 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); | 118 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); |
119 unittest.expect(o.countryId, unittest.equals('foo')); | 119 unittest.expect(o.countryId, unittest.equals('foo')); |
120 unittest.expect(o.currencyId, unittest.equals('foo')); | 120 unittest.expect(o.currencyId, unittest.equals('foo')); |
121 unittest.expect(o.defaultCreativeSizeId, unittest.equals('foo')); | 121 unittest.expect(o.defaultCreativeSizeId, unittest.equals('foo')); |
122 unittest.expect(o.description, unittest.equals('foo')); | 122 unittest.expect(o.description, unittest.equals('foo')); |
123 unittest.expect(o.id, unittest.equals('foo')); | 123 unittest.expect(o.id, unittest.equals('foo')); |
124 unittest.expect(o.kind, unittest.equals('foo')); | 124 unittest.expect(o.kind, unittest.equals('foo')); |
125 unittest.expect(o.locale, unittest.equals('foo')); | 125 unittest.expect(o.locale, unittest.equals('foo')); |
126 unittest.expect(o.maximumImageSize, unittest.equals('foo')); | 126 unittest.expect(o.maximumImageSize, unittest.equals('foo')); |
127 unittest.expect(o.name, unittest.equals('foo')); | 127 unittest.expect(o.name, unittest.equals('foo')); |
(...skipping 24 matching lines...) Expand all Loading... |
152 if (buildCounterAccountActiveAdSummary < 3) { | 152 if (buildCounterAccountActiveAdSummary < 3) { |
153 unittest.expect(o.accountId, unittest.equals('foo')); | 153 unittest.expect(o.accountId, unittest.equals('foo')); |
154 unittest.expect(o.activeAds, unittest.equals('foo')); | 154 unittest.expect(o.activeAds, unittest.equals('foo')); |
155 unittest.expect(o.activeAdsLimitTier, unittest.equals('foo')); | 155 unittest.expect(o.activeAdsLimitTier, unittest.equals('foo')); |
156 unittest.expect(o.availableAds, unittest.equals('foo')); | 156 unittest.expect(o.availableAds, unittest.equals('foo')); |
157 unittest.expect(o.kind, unittest.equals('foo')); | 157 unittest.expect(o.kind, unittest.equals('foo')); |
158 } | 158 } |
159 buildCounterAccountActiveAdSummary--; | 159 buildCounterAccountActiveAdSummary--; |
160 } | 160 } |
161 | 161 |
162 buildUnnamed260() { | 162 buildUnnamed809() { |
163 var o = new core.List<core.String>(); | 163 var o = new core.List<core.String>(); |
164 o.add("foo"); | 164 o.add("foo"); |
165 o.add("foo"); | 165 o.add("foo"); |
166 return o; | 166 return o; |
167 } | 167 } |
168 | 168 |
169 checkUnnamed260(core.List<core.String> o) { | 169 checkUnnamed809(core.List<core.String> o) { |
170 unittest.expect(o, unittest.hasLength(2)); | 170 unittest.expect(o, unittest.hasLength(2)); |
171 unittest.expect(o[0], unittest.equals('foo')); | 171 unittest.expect(o[0], unittest.equals('foo')); |
172 unittest.expect(o[1], unittest.equals('foo')); | 172 unittest.expect(o[1], unittest.equals('foo')); |
173 } | 173 } |
174 | 174 |
175 core.int buildCounterAccountPermission = 0; | 175 core.int buildCounterAccountPermission = 0; |
176 buildAccountPermission() { | 176 buildAccountPermission() { |
177 var o = new api.AccountPermission(); | 177 var o = new api.AccountPermission(); |
178 buildCounterAccountPermission++; | 178 buildCounterAccountPermission++; |
179 if (buildCounterAccountPermission < 3) { | 179 if (buildCounterAccountPermission < 3) { |
180 o.accountProfiles = buildUnnamed260(); | 180 o.accountProfiles = buildUnnamed809(); |
181 o.id = "foo"; | 181 o.id = "foo"; |
182 o.kind = "foo"; | 182 o.kind = "foo"; |
183 o.level = "foo"; | 183 o.level = "foo"; |
184 o.name = "foo"; | 184 o.name = "foo"; |
185 o.permissionGroupId = "foo"; | 185 o.permissionGroupId = "foo"; |
186 } | 186 } |
187 buildCounterAccountPermission--; | 187 buildCounterAccountPermission--; |
188 return o; | 188 return o; |
189 } | 189 } |
190 | 190 |
191 checkAccountPermission(api.AccountPermission o) { | 191 checkAccountPermission(api.AccountPermission o) { |
192 buildCounterAccountPermission++; | 192 buildCounterAccountPermission++; |
193 if (buildCounterAccountPermission < 3) { | 193 if (buildCounterAccountPermission < 3) { |
194 checkUnnamed260(o.accountProfiles); | 194 checkUnnamed809(o.accountProfiles); |
195 unittest.expect(o.id, unittest.equals('foo')); | 195 unittest.expect(o.id, unittest.equals('foo')); |
196 unittest.expect(o.kind, unittest.equals('foo')); | 196 unittest.expect(o.kind, unittest.equals('foo')); |
197 unittest.expect(o.level, unittest.equals('foo')); | 197 unittest.expect(o.level, unittest.equals('foo')); |
198 unittest.expect(o.name, unittest.equals('foo')); | 198 unittest.expect(o.name, unittest.equals('foo')); |
199 unittest.expect(o.permissionGroupId, unittest.equals('foo')); | 199 unittest.expect(o.permissionGroupId, unittest.equals('foo')); |
200 } | 200 } |
201 buildCounterAccountPermission--; | 201 buildCounterAccountPermission--; |
202 } | 202 } |
203 | 203 |
204 core.int buildCounterAccountPermissionGroup = 0; | 204 core.int buildCounterAccountPermissionGroup = 0; |
(...skipping 12 matching lines...) Expand all Loading... |
217 checkAccountPermissionGroup(api.AccountPermissionGroup o) { | 217 checkAccountPermissionGroup(api.AccountPermissionGroup o) { |
218 buildCounterAccountPermissionGroup++; | 218 buildCounterAccountPermissionGroup++; |
219 if (buildCounterAccountPermissionGroup < 3) { | 219 if (buildCounterAccountPermissionGroup < 3) { |
220 unittest.expect(o.id, unittest.equals('foo')); | 220 unittest.expect(o.id, unittest.equals('foo')); |
221 unittest.expect(o.kind, unittest.equals('foo')); | 221 unittest.expect(o.kind, unittest.equals('foo')); |
222 unittest.expect(o.name, unittest.equals('foo')); | 222 unittest.expect(o.name, unittest.equals('foo')); |
223 } | 223 } |
224 buildCounterAccountPermissionGroup--; | 224 buildCounterAccountPermissionGroup--; |
225 } | 225 } |
226 | 226 |
227 buildUnnamed261() { | 227 buildUnnamed810() { |
228 var o = new core.List<api.AccountPermissionGroup>(); | 228 var o = new core.List<api.AccountPermissionGroup>(); |
229 o.add(buildAccountPermissionGroup()); | 229 o.add(buildAccountPermissionGroup()); |
230 o.add(buildAccountPermissionGroup()); | 230 o.add(buildAccountPermissionGroup()); |
231 return o; | 231 return o; |
232 } | 232 } |
233 | 233 |
234 checkUnnamed261(core.List<api.AccountPermissionGroup> o) { | 234 checkUnnamed810(core.List<api.AccountPermissionGroup> o) { |
235 unittest.expect(o, unittest.hasLength(2)); | 235 unittest.expect(o, unittest.hasLength(2)); |
236 checkAccountPermissionGroup(o[0]); | 236 checkAccountPermissionGroup(o[0]); |
237 checkAccountPermissionGroup(o[1]); | 237 checkAccountPermissionGroup(o[1]); |
238 } | 238 } |
239 | 239 |
240 core.int buildCounterAccountPermissionGroupsListResponse = 0; | 240 core.int buildCounterAccountPermissionGroupsListResponse = 0; |
241 buildAccountPermissionGroupsListResponse() { | 241 buildAccountPermissionGroupsListResponse() { |
242 var o = new api.AccountPermissionGroupsListResponse(); | 242 var o = new api.AccountPermissionGroupsListResponse(); |
243 buildCounterAccountPermissionGroupsListResponse++; | 243 buildCounterAccountPermissionGroupsListResponse++; |
244 if (buildCounterAccountPermissionGroupsListResponse < 3) { | 244 if (buildCounterAccountPermissionGroupsListResponse < 3) { |
245 o.accountPermissionGroups = buildUnnamed261(); | 245 o.accountPermissionGroups = buildUnnamed810(); |
246 o.kind = "foo"; | 246 o.kind = "foo"; |
247 } | 247 } |
248 buildCounterAccountPermissionGroupsListResponse--; | 248 buildCounterAccountPermissionGroupsListResponse--; |
249 return o; | 249 return o; |
250 } | 250 } |
251 | 251 |
252 checkAccountPermissionGroupsListResponse(api.AccountPermissionGroupsListResponse
o) { | 252 checkAccountPermissionGroupsListResponse(api.AccountPermissionGroupsListResponse
o) { |
253 buildCounterAccountPermissionGroupsListResponse++; | 253 buildCounterAccountPermissionGroupsListResponse++; |
254 if (buildCounterAccountPermissionGroupsListResponse < 3) { | 254 if (buildCounterAccountPermissionGroupsListResponse < 3) { |
255 checkUnnamed261(o.accountPermissionGroups); | 255 checkUnnamed810(o.accountPermissionGroups); |
256 unittest.expect(o.kind, unittest.equals('foo')); | 256 unittest.expect(o.kind, unittest.equals('foo')); |
257 } | 257 } |
258 buildCounterAccountPermissionGroupsListResponse--; | 258 buildCounterAccountPermissionGroupsListResponse--; |
259 } | 259 } |
260 | 260 |
261 buildUnnamed262() { | 261 buildUnnamed811() { |
262 var o = new core.List<api.AccountPermission>(); | 262 var o = new core.List<api.AccountPermission>(); |
263 o.add(buildAccountPermission()); | 263 o.add(buildAccountPermission()); |
264 o.add(buildAccountPermission()); | 264 o.add(buildAccountPermission()); |
265 return o; | 265 return o; |
266 } | 266 } |
267 | 267 |
268 checkUnnamed262(core.List<api.AccountPermission> o) { | 268 checkUnnamed811(core.List<api.AccountPermission> o) { |
269 unittest.expect(o, unittest.hasLength(2)); | 269 unittest.expect(o, unittest.hasLength(2)); |
270 checkAccountPermission(o[0]); | 270 checkAccountPermission(o[0]); |
271 checkAccountPermission(o[1]); | 271 checkAccountPermission(o[1]); |
272 } | 272 } |
273 | 273 |
274 core.int buildCounterAccountPermissionsListResponse = 0; | 274 core.int buildCounterAccountPermissionsListResponse = 0; |
275 buildAccountPermissionsListResponse() { | 275 buildAccountPermissionsListResponse() { |
276 var o = new api.AccountPermissionsListResponse(); | 276 var o = new api.AccountPermissionsListResponse(); |
277 buildCounterAccountPermissionsListResponse++; | 277 buildCounterAccountPermissionsListResponse++; |
278 if (buildCounterAccountPermissionsListResponse < 3) { | 278 if (buildCounterAccountPermissionsListResponse < 3) { |
279 o.accountPermissions = buildUnnamed262(); | 279 o.accountPermissions = buildUnnamed811(); |
280 o.kind = "foo"; | 280 o.kind = "foo"; |
281 } | 281 } |
282 buildCounterAccountPermissionsListResponse--; | 282 buildCounterAccountPermissionsListResponse--; |
283 return o; | 283 return o; |
284 } | 284 } |
285 | 285 |
286 checkAccountPermissionsListResponse(api.AccountPermissionsListResponse o) { | 286 checkAccountPermissionsListResponse(api.AccountPermissionsListResponse o) { |
287 buildCounterAccountPermissionsListResponse++; | 287 buildCounterAccountPermissionsListResponse++; |
288 if (buildCounterAccountPermissionsListResponse < 3) { | 288 if (buildCounterAccountPermissionsListResponse < 3) { |
289 checkUnnamed262(o.accountPermissions); | 289 checkUnnamed811(o.accountPermissions); |
290 unittest.expect(o.kind, unittest.equals('foo')); | 290 unittest.expect(o.kind, unittest.equals('foo')); |
291 } | 291 } |
292 buildCounterAccountPermissionsListResponse--; | 292 buildCounterAccountPermissionsListResponse--; |
293 } | 293 } |
294 | 294 |
295 core.int buildCounterAccountUserProfile = 0; | 295 core.int buildCounterAccountUserProfile = 0; |
296 buildAccountUserProfile() { | 296 buildAccountUserProfile() { |
297 var o = new api.AccountUserProfile(); | 297 var o = new api.AccountUserProfile(); |
298 buildCounterAccountUserProfile++; | 298 buildCounterAccountUserProfile++; |
299 if (buildCounterAccountUserProfile < 3) { | 299 if (buildCounterAccountUserProfile < 3) { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 checkObjectFilter(o.siteFilter); | 334 checkObjectFilter(o.siteFilter); |
335 unittest.expect(o.subaccountId, unittest.equals('foo')); | 335 unittest.expect(o.subaccountId, unittest.equals('foo')); |
336 unittest.expect(o.traffickerType, unittest.equals('foo')); | 336 unittest.expect(o.traffickerType, unittest.equals('foo')); |
337 unittest.expect(o.userAccessType, unittest.equals('foo')); | 337 unittest.expect(o.userAccessType, unittest.equals('foo')); |
338 checkObjectFilter(o.userRoleFilter); | 338 checkObjectFilter(o.userRoleFilter); |
339 unittest.expect(o.userRoleId, unittest.equals('foo')); | 339 unittest.expect(o.userRoleId, unittest.equals('foo')); |
340 } | 340 } |
341 buildCounterAccountUserProfile--; | 341 buildCounterAccountUserProfile--; |
342 } | 342 } |
343 | 343 |
344 buildUnnamed263() { | 344 buildUnnamed812() { |
345 var o = new core.List<api.AccountUserProfile>(); | 345 var o = new core.List<api.AccountUserProfile>(); |
346 o.add(buildAccountUserProfile()); | 346 o.add(buildAccountUserProfile()); |
347 o.add(buildAccountUserProfile()); | 347 o.add(buildAccountUserProfile()); |
348 return o; | 348 return o; |
349 } | 349 } |
350 | 350 |
351 checkUnnamed263(core.List<api.AccountUserProfile> o) { | 351 checkUnnamed812(core.List<api.AccountUserProfile> o) { |
352 unittest.expect(o, unittest.hasLength(2)); | 352 unittest.expect(o, unittest.hasLength(2)); |
353 checkAccountUserProfile(o[0]); | 353 checkAccountUserProfile(o[0]); |
354 checkAccountUserProfile(o[1]); | 354 checkAccountUserProfile(o[1]); |
355 } | 355 } |
356 | 356 |
357 core.int buildCounterAccountUserProfilesListResponse = 0; | 357 core.int buildCounterAccountUserProfilesListResponse = 0; |
358 buildAccountUserProfilesListResponse() { | 358 buildAccountUserProfilesListResponse() { |
359 var o = new api.AccountUserProfilesListResponse(); | 359 var o = new api.AccountUserProfilesListResponse(); |
360 buildCounterAccountUserProfilesListResponse++; | 360 buildCounterAccountUserProfilesListResponse++; |
361 if (buildCounterAccountUserProfilesListResponse < 3) { | 361 if (buildCounterAccountUserProfilesListResponse < 3) { |
362 o.accountUserProfiles = buildUnnamed263(); | 362 o.accountUserProfiles = buildUnnamed812(); |
363 o.kind = "foo"; | 363 o.kind = "foo"; |
364 o.nextPageToken = "foo"; | 364 o.nextPageToken = "foo"; |
365 } | 365 } |
366 buildCounterAccountUserProfilesListResponse--; | 366 buildCounterAccountUserProfilesListResponse--; |
367 return o; | 367 return o; |
368 } | 368 } |
369 | 369 |
370 checkAccountUserProfilesListResponse(api.AccountUserProfilesListResponse o) { | 370 checkAccountUserProfilesListResponse(api.AccountUserProfilesListResponse o) { |
371 buildCounterAccountUserProfilesListResponse++; | 371 buildCounterAccountUserProfilesListResponse++; |
372 if (buildCounterAccountUserProfilesListResponse < 3) { | 372 if (buildCounterAccountUserProfilesListResponse < 3) { |
373 checkUnnamed263(o.accountUserProfiles); | 373 checkUnnamed812(o.accountUserProfiles); |
374 unittest.expect(o.kind, unittest.equals('foo')); | 374 unittest.expect(o.kind, unittest.equals('foo')); |
375 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 375 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
376 } | 376 } |
377 buildCounterAccountUserProfilesListResponse--; | 377 buildCounterAccountUserProfilesListResponse--; |
378 } | 378 } |
379 | 379 |
380 buildUnnamed264() { | 380 buildUnnamed813() { |
381 var o = new core.List<api.Account>(); | 381 var o = new core.List<api.Account>(); |
382 o.add(buildAccount()); | 382 o.add(buildAccount()); |
383 o.add(buildAccount()); | 383 o.add(buildAccount()); |
384 return o; | 384 return o; |
385 } | 385 } |
386 | 386 |
387 checkUnnamed264(core.List<api.Account> o) { | 387 checkUnnamed813(core.List<api.Account> o) { |
388 unittest.expect(o, unittest.hasLength(2)); | 388 unittest.expect(o, unittest.hasLength(2)); |
389 checkAccount(o[0]); | 389 checkAccount(o[0]); |
390 checkAccount(o[1]); | 390 checkAccount(o[1]); |
391 } | 391 } |
392 | 392 |
393 core.int buildCounterAccountsListResponse = 0; | 393 core.int buildCounterAccountsListResponse = 0; |
394 buildAccountsListResponse() { | 394 buildAccountsListResponse() { |
395 var o = new api.AccountsListResponse(); | 395 var o = new api.AccountsListResponse(); |
396 buildCounterAccountsListResponse++; | 396 buildCounterAccountsListResponse++; |
397 if (buildCounterAccountsListResponse < 3) { | 397 if (buildCounterAccountsListResponse < 3) { |
398 o.accounts = buildUnnamed264(); | 398 o.accounts = buildUnnamed813(); |
399 o.kind = "foo"; | 399 o.kind = "foo"; |
400 o.nextPageToken = "foo"; | 400 o.nextPageToken = "foo"; |
401 } | 401 } |
402 buildCounterAccountsListResponse--; | 402 buildCounterAccountsListResponse--; |
403 return o; | 403 return o; |
404 } | 404 } |
405 | 405 |
406 checkAccountsListResponse(api.AccountsListResponse o) { | 406 checkAccountsListResponse(api.AccountsListResponse o) { |
407 buildCounterAccountsListResponse++; | 407 buildCounterAccountsListResponse++; |
408 if (buildCounterAccountsListResponse < 3) { | 408 if (buildCounterAccountsListResponse < 3) { |
409 checkUnnamed264(o.accounts); | 409 checkUnnamed813(o.accounts); |
410 unittest.expect(o.kind, unittest.equals('foo')); | 410 unittest.expect(o.kind, unittest.equals('foo')); |
411 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 411 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
412 } | 412 } |
413 buildCounterAccountsListResponse--; | 413 buildCounterAccountsListResponse--; |
414 } | 414 } |
415 | 415 |
416 buildUnnamed265() { | 416 buildUnnamed814() { |
417 var o = new core.List<api.DimensionValue>(); | 417 var o = new core.List<api.DimensionValue>(); |
418 o.add(buildDimensionValue()); | 418 o.add(buildDimensionValue()); |
419 o.add(buildDimensionValue()); | 419 o.add(buildDimensionValue()); |
420 return o; | 420 return o; |
421 } | 421 } |
422 | 422 |
423 checkUnnamed265(core.List<api.DimensionValue> o) { | 423 checkUnnamed814(core.List<api.DimensionValue> o) { |
424 unittest.expect(o, unittest.hasLength(2)); | 424 unittest.expect(o, unittest.hasLength(2)); |
425 checkDimensionValue(o[0]); | 425 checkDimensionValue(o[0]); |
426 checkDimensionValue(o[1]); | 426 checkDimensionValue(o[1]); |
427 } | 427 } |
428 | 428 |
429 buildUnnamed266() { | 429 buildUnnamed815() { |
430 var o = new core.List<core.String>(); | 430 var o = new core.List<core.String>(); |
431 o.add("foo"); | 431 o.add("foo"); |
432 o.add("foo"); | 432 o.add("foo"); |
433 return o; | 433 return o; |
434 } | 434 } |
435 | 435 |
436 checkUnnamed266(core.List<core.String> o) { | 436 checkUnnamed815(core.List<core.String> o) { |
437 unittest.expect(o, unittest.hasLength(2)); | 437 unittest.expect(o, unittest.hasLength(2)); |
438 unittest.expect(o[0], unittest.equals('foo')); | 438 unittest.expect(o[0], unittest.equals('foo')); |
439 unittest.expect(o[1], unittest.equals('foo')); | 439 unittest.expect(o[1], unittest.equals('foo')); |
440 } | 440 } |
441 | 441 |
442 core.int buildCounterActivities = 0; | 442 core.int buildCounterActivities = 0; |
443 buildActivities() { | 443 buildActivities() { |
444 var o = new api.Activities(); | 444 var o = new api.Activities(); |
445 buildCounterActivities++; | 445 buildCounterActivities++; |
446 if (buildCounterActivities < 3) { | 446 if (buildCounterActivities < 3) { |
447 o.filters = buildUnnamed265(); | 447 o.filters = buildUnnamed814(); |
448 o.kind = "foo"; | 448 o.kind = "foo"; |
449 o.metricNames = buildUnnamed266(); | 449 o.metricNames = buildUnnamed815(); |
450 } | 450 } |
451 buildCounterActivities--; | 451 buildCounterActivities--; |
452 return o; | 452 return o; |
453 } | 453 } |
454 | 454 |
455 checkActivities(api.Activities o) { | 455 checkActivities(api.Activities o) { |
456 buildCounterActivities++; | 456 buildCounterActivities++; |
457 if (buildCounterActivities < 3) { | 457 if (buildCounterActivities < 3) { |
458 checkUnnamed265(o.filters); | 458 checkUnnamed814(o.filters); |
459 unittest.expect(o.kind, unittest.equals('foo')); | 459 unittest.expect(o.kind, unittest.equals('foo')); |
460 checkUnnamed266(o.metricNames); | 460 checkUnnamed815(o.metricNames); |
461 } | 461 } |
462 buildCounterActivities--; | 462 buildCounterActivities--; |
463 } | 463 } |
464 | 464 |
465 buildUnnamed267() { | 465 buildUnnamed816() { |
466 var o = new core.List<api.CreativeGroupAssignment>(); | 466 var o = new core.List<api.CreativeGroupAssignment>(); |
467 o.add(buildCreativeGroupAssignment()); | 467 o.add(buildCreativeGroupAssignment()); |
468 o.add(buildCreativeGroupAssignment()); | 468 o.add(buildCreativeGroupAssignment()); |
469 return o; | 469 return o; |
470 } | 470 } |
471 | 471 |
472 checkUnnamed267(core.List<api.CreativeGroupAssignment> o) { | 472 checkUnnamed816(core.List<api.CreativeGroupAssignment> o) { |
473 unittest.expect(o, unittest.hasLength(2)); | 473 unittest.expect(o, unittest.hasLength(2)); |
474 checkCreativeGroupAssignment(o[0]); | 474 checkCreativeGroupAssignment(o[0]); |
475 checkCreativeGroupAssignment(o[1]); | 475 checkCreativeGroupAssignment(o[1]); |
476 } | 476 } |
477 | 477 |
478 buildUnnamed268() { | 478 buildUnnamed817() { |
479 var o = new core.List<api.EventTagOverride>(); | 479 var o = new core.List<api.EventTagOverride>(); |
480 o.add(buildEventTagOverride()); | 480 o.add(buildEventTagOverride()); |
481 o.add(buildEventTagOverride()); | 481 o.add(buildEventTagOverride()); |
482 return o; | 482 return o; |
483 } | 483 } |
484 | 484 |
485 checkUnnamed268(core.List<api.EventTagOverride> o) { | 485 checkUnnamed817(core.List<api.EventTagOverride> o) { |
486 unittest.expect(o, unittest.hasLength(2)); | 486 unittest.expect(o, unittest.hasLength(2)); |
487 checkEventTagOverride(o[0]); | 487 checkEventTagOverride(o[0]); |
488 checkEventTagOverride(o[1]); | 488 checkEventTagOverride(o[1]); |
489 } | 489 } |
490 | 490 |
491 buildUnnamed269() { | 491 buildUnnamed818() { |
492 var o = new core.List<api.PlacementAssignment>(); | 492 var o = new core.List<api.PlacementAssignment>(); |
493 o.add(buildPlacementAssignment()); | 493 o.add(buildPlacementAssignment()); |
494 o.add(buildPlacementAssignment()); | 494 o.add(buildPlacementAssignment()); |
495 return o; | 495 return o; |
496 } | 496 } |
497 | 497 |
498 checkUnnamed269(core.List<api.PlacementAssignment> o) { | 498 checkUnnamed818(core.List<api.PlacementAssignment> o) { |
499 unittest.expect(o, unittest.hasLength(2)); | 499 unittest.expect(o, unittest.hasLength(2)); |
500 checkPlacementAssignment(o[0]); | 500 checkPlacementAssignment(o[0]); |
501 checkPlacementAssignment(o[1]); | 501 checkPlacementAssignment(o[1]); |
502 } | 502 } |
503 | 503 |
504 core.int buildCounterAd = 0; | 504 core.int buildCounterAd = 0; |
505 buildAd() { | 505 buildAd() { |
506 var o = new api.Ad(); | 506 var o = new api.Ad(); |
507 buildCounterAd++; | 507 buildCounterAd++; |
508 if (buildCounterAd < 3) { | 508 if (buildCounterAd < 3) { |
509 o.accountId = "foo"; | 509 o.accountId = "foo"; |
510 o.active = true; | 510 o.active = true; |
511 o.advertiserId = "foo"; | 511 o.advertiserId = "foo"; |
512 o.advertiserIdDimensionValue = buildDimensionValue(); | 512 o.advertiserIdDimensionValue = buildDimensionValue(); |
513 o.archived = true; | 513 o.archived = true; |
514 o.audienceSegmentId = "foo"; | 514 o.audienceSegmentId = "foo"; |
515 o.campaignId = "foo"; | 515 o.campaignId = "foo"; |
516 o.campaignIdDimensionValue = buildDimensionValue(); | 516 o.campaignIdDimensionValue = buildDimensionValue(); |
517 o.clickThroughUrl = buildClickThroughUrl(); | 517 o.clickThroughUrl = buildClickThroughUrl(); |
518 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); | 518 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); |
519 o.comments = "foo"; | 519 o.comments = "foo"; |
520 o.compatibility = "foo"; | 520 o.compatibility = "foo"; |
521 o.createInfo = buildLastModifiedInfo(); | 521 o.createInfo = buildLastModifiedInfo(); |
522 o.creativeGroupAssignments = buildUnnamed267(); | 522 o.creativeGroupAssignments = buildUnnamed816(); |
523 o.creativeRotation = buildCreativeRotation(); | 523 o.creativeRotation = buildCreativeRotation(); |
524 o.dayPartTargeting = buildDayPartTargeting(); | 524 o.dayPartTargeting = buildDayPartTargeting(); |
525 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); | 525 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); |
526 o.deliverySchedule = buildDeliverySchedule(); | 526 o.deliverySchedule = buildDeliverySchedule(); |
527 o.dynamicClickTracker = true; | 527 o.dynamicClickTracker = true; |
528 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); | 528 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); |
529 o.eventTagOverrides = buildUnnamed268(); | 529 o.eventTagOverrides = buildUnnamed817(); |
530 o.geoTargeting = buildGeoTargeting(); | 530 o.geoTargeting = buildGeoTargeting(); |
531 o.id = "foo"; | 531 o.id = "foo"; |
532 o.idDimensionValue = buildDimensionValue(); | 532 o.idDimensionValue = buildDimensionValue(); |
533 o.keyValueTargetingExpression = buildKeyValueTargetingExpression(); | 533 o.keyValueTargetingExpression = buildKeyValueTargetingExpression(); |
534 o.kind = "foo"; | 534 o.kind = "foo"; |
535 o.lastModifiedInfo = buildLastModifiedInfo(); | 535 o.lastModifiedInfo = buildLastModifiedInfo(); |
536 o.name = "foo"; | 536 o.name = "foo"; |
537 o.placementAssignments = buildUnnamed269(); | 537 o.placementAssignments = buildUnnamed818(); |
538 o.remarketingListExpression = buildListTargetingExpression(); | 538 o.remarketingListExpression = buildListTargetingExpression(); |
539 o.size = buildSize(); | 539 o.size = buildSize(); |
540 o.sslCompliant = true; | 540 o.sslCompliant = true; |
541 o.sslRequired = true; | 541 o.sslRequired = true; |
542 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 542 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
543 o.subaccountId = "foo"; | 543 o.subaccountId = "foo"; |
544 o.technologyTargeting = buildTechnologyTargeting(); | 544 o.technologyTargeting = buildTechnologyTargeting(); |
545 o.type = "foo"; | 545 o.type = "foo"; |
546 } | 546 } |
547 buildCounterAd--; | 547 buildCounterAd--; |
548 return o; | 548 return o; |
549 } | 549 } |
550 | 550 |
551 checkAd(api.Ad o) { | 551 checkAd(api.Ad o) { |
552 buildCounterAd++; | 552 buildCounterAd++; |
553 if (buildCounterAd < 3) { | 553 if (buildCounterAd < 3) { |
554 unittest.expect(o.accountId, unittest.equals('foo')); | 554 unittest.expect(o.accountId, unittest.equals('foo')); |
555 unittest.expect(o.active, unittest.isTrue); | 555 unittest.expect(o.active, unittest.isTrue); |
556 unittest.expect(o.advertiserId, unittest.equals('foo')); | 556 unittest.expect(o.advertiserId, unittest.equals('foo')); |
557 checkDimensionValue(o.advertiserIdDimensionValue); | 557 checkDimensionValue(o.advertiserIdDimensionValue); |
558 unittest.expect(o.archived, unittest.isTrue); | 558 unittest.expect(o.archived, unittest.isTrue); |
559 unittest.expect(o.audienceSegmentId, unittest.equals('foo')); | 559 unittest.expect(o.audienceSegmentId, unittest.equals('foo')); |
560 unittest.expect(o.campaignId, unittest.equals('foo')); | 560 unittest.expect(o.campaignId, unittest.equals('foo')); |
561 checkDimensionValue(o.campaignIdDimensionValue); | 561 checkDimensionValue(o.campaignIdDimensionValue); |
562 checkClickThroughUrl(o.clickThroughUrl); | 562 checkClickThroughUrl(o.clickThroughUrl); |
563 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); | 563 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); |
564 unittest.expect(o.comments, unittest.equals('foo')); | 564 unittest.expect(o.comments, unittest.equals('foo')); |
565 unittest.expect(o.compatibility, unittest.equals('foo')); | 565 unittest.expect(o.compatibility, unittest.equals('foo')); |
566 checkLastModifiedInfo(o.createInfo); | 566 checkLastModifiedInfo(o.createInfo); |
567 checkUnnamed267(o.creativeGroupAssignments); | 567 checkUnnamed816(o.creativeGroupAssignments); |
568 checkCreativeRotation(o.creativeRotation); | 568 checkCreativeRotation(o.creativeRotation); |
569 checkDayPartTargeting(o.dayPartTargeting); | 569 checkDayPartTargeting(o.dayPartTargeting); |
570 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); | 570 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); |
571 checkDeliverySchedule(o.deliverySchedule); | 571 checkDeliverySchedule(o.deliverySchedule); |
572 unittest.expect(o.dynamicClickTracker, unittest.isTrue); | 572 unittest.expect(o.dynamicClickTracker, unittest.isTrue); |
573 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 573 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
574 checkUnnamed268(o.eventTagOverrides); | 574 checkUnnamed817(o.eventTagOverrides); |
575 checkGeoTargeting(o.geoTargeting); | 575 checkGeoTargeting(o.geoTargeting); |
576 unittest.expect(o.id, unittest.equals('foo')); | 576 unittest.expect(o.id, unittest.equals('foo')); |
577 checkDimensionValue(o.idDimensionValue); | 577 checkDimensionValue(o.idDimensionValue); |
578 checkKeyValueTargetingExpression(o.keyValueTargetingExpression); | 578 checkKeyValueTargetingExpression(o.keyValueTargetingExpression); |
579 unittest.expect(o.kind, unittest.equals('foo')); | 579 unittest.expect(o.kind, unittest.equals('foo')); |
580 checkLastModifiedInfo(o.lastModifiedInfo); | 580 checkLastModifiedInfo(o.lastModifiedInfo); |
581 unittest.expect(o.name, unittest.equals('foo')); | 581 unittest.expect(o.name, unittest.equals('foo')); |
582 checkUnnamed269(o.placementAssignments); | 582 checkUnnamed818(o.placementAssignments); |
583 checkListTargetingExpression(o.remarketingListExpression); | 583 checkListTargetingExpression(o.remarketingListExpression); |
584 checkSize(o.size); | 584 checkSize(o.size); |
585 unittest.expect(o.sslCompliant, unittest.isTrue); | 585 unittest.expect(o.sslCompliant, unittest.isTrue); |
586 unittest.expect(o.sslRequired, unittest.isTrue); | 586 unittest.expect(o.sslRequired, unittest.isTrue); |
587 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 587 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
588 unittest.expect(o.subaccountId, unittest.equals('foo')); | 588 unittest.expect(o.subaccountId, unittest.equals('foo')); |
589 checkTechnologyTargeting(o.technologyTargeting); | 589 checkTechnologyTargeting(o.technologyTargeting); |
590 unittest.expect(o.type, unittest.equals('foo')); | 590 unittest.expect(o.type, unittest.equals('foo')); |
591 } | 591 } |
592 buildCounterAd--; | 592 buildCounterAd--; |
593 } | 593 } |
594 | 594 |
595 buildUnnamed270() { | 595 buildUnnamed819() { |
596 var o = new core.List<api.Ad>(); | 596 var o = new core.List<api.Ad>(); |
597 o.add(buildAd()); | 597 o.add(buildAd()); |
598 o.add(buildAd()); | 598 o.add(buildAd()); |
599 return o; | 599 return o; |
600 } | 600 } |
601 | 601 |
602 checkUnnamed270(core.List<api.Ad> o) { | 602 checkUnnamed819(core.List<api.Ad> o) { |
603 unittest.expect(o, unittest.hasLength(2)); | 603 unittest.expect(o, unittest.hasLength(2)); |
604 checkAd(o[0]); | 604 checkAd(o[0]); |
605 checkAd(o[1]); | 605 checkAd(o[1]); |
606 } | 606 } |
607 | 607 |
608 core.int buildCounterAdsListResponse = 0; | 608 core.int buildCounterAdsListResponse = 0; |
609 buildAdsListResponse() { | 609 buildAdsListResponse() { |
610 var o = new api.AdsListResponse(); | 610 var o = new api.AdsListResponse(); |
611 buildCounterAdsListResponse++; | 611 buildCounterAdsListResponse++; |
612 if (buildCounterAdsListResponse < 3) { | 612 if (buildCounterAdsListResponse < 3) { |
613 o.ads = buildUnnamed270(); | 613 o.ads = buildUnnamed819(); |
614 o.kind = "foo"; | 614 o.kind = "foo"; |
615 o.nextPageToken = "foo"; | 615 o.nextPageToken = "foo"; |
616 } | 616 } |
617 buildCounterAdsListResponse--; | 617 buildCounterAdsListResponse--; |
618 return o; | 618 return o; |
619 } | 619 } |
620 | 620 |
621 checkAdsListResponse(api.AdsListResponse o) { | 621 checkAdsListResponse(api.AdsListResponse o) { |
622 buildCounterAdsListResponse++; | 622 buildCounterAdsListResponse++; |
623 if (buildCounterAdsListResponse < 3) { | 623 if (buildCounterAdsListResponse < 3) { |
624 checkUnnamed270(o.ads); | 624 checkUnnamed819(o.ads); |
625 unittest.expect(o.kind, unittest.equals('foo')); | 625 unittest.expect(o.kind, unittest.equals('foo')); |
626 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 626 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
627 } | 627 } |
628 buildCounterAdsListResponse--; | 628 buildCounterAdsListResponse--; |
629 } | 629 } |
630 | 630 |
631 core.int buildCounterAdvertiser = 0; | 631 core.int buildCounterAdvertiser = 0; |
632 buildAdvertiser() { | 632 buildAdvertiser() { |
633 var o = new api.Advertiser(); | 633 var o = new api.Advertiser(); |
634 buildCounterAdvertiser++; | 634 buildCounterAdvertiser++; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 buildCounterAdvertiserGroup++; | 689 buildCounterAdvertiserGroup++; |
690 if (buildCounterAdvertiserGroup < 3) { | 690 if (buildCounterAdvertiserGroup < 3) { |
691 unittest.expect(o.accountId, unittest.equals('foo')); | 691 unittest.expect(o.accountId, unittest.equals('foo')); |
692 unittest.expect(o.id, unittest.equals('foo')); | 692 unittest.expect(o.id, unittest.equals('foo')); |
693 unittest.expect(o.kind, unittest.equals('foo')); | 693 unittest.expect(o.kind, unittest.equals('foo')); |
694 unittest.expect(o.name, unittest.equals('foo')); | 694 unittest.expect(o.name, unittest.equals('foo')); |
695 } | 695 } |
696 buildCounterAdvertiserGroup--; | 696 buildCounterAdvertiserGroup--; |
697 } | 697 } |
698 | 698 |
699 buildUnnamed271() { | 699 buildUnnamed820() { |
700 var o = new core.List<api.AdvertiserGroup>(); | 700 var o = new core.List<api.AdvertiserGroup>(); |
701 o.add(buildAdvertiserGroup()); | 701 o.add(buildAdvertiserGroup()); |
702 o.add(buildAdvertiserGroup()); | 702 o.add(buildAdvertiserGroup()); |
703 return o; | 703 return o; |
704 } | 704 } |
705 | 705 |
706 checkUnnamed271(core.List<api.AdvertiserGroup> o) { | 706 checkUnnamed820(core.List<api.AdvertiserGroup> o) { |
707 unittest.expect(o, unittest.hasLength(2)); | 707 unittest.expect(o, unittest.hasLength(2)); |
708 checkAdvertiserGroup(o[0]); | 708 checkAdvertiserGroup(o[0]); |
709 checkAdvertiserGroup(o[1]); | 709 checkAdvertiserGroup(o[1]); |
710 } | 710 } |
711 | 711 |
712 core.int buildCounterAdvertiserGroupsListResponse = 0; | 712 core.int buildCounterAdvertiserGroupsListResponse = 0; |
713 buildAdvertiserGroupsListResponse() { | 713 buildAdvertiserGroupsListResponse() { |
714 var o = new api.AdvertiserGroupsListResponse(); | 714 var o = new api.AdvertiserGroupsListResponse(); |
715 buildCounterAdvertiserGroupsListResponse++; | 715 buildCounterAdvertiserGroupsListResponse++; |
716 if (buildCounterAdvertiserGroupsListResponse < 3) { | 716 if (buildCounterAdvertiserGroupsListResponse < 3) { |
717 o.advertiserGroups = buildUnnamed271(); | 717 o.advertiserGroups = buildUnnamed820(); |
718 o.kind = "foo"; | 718 o.kind = "foo"; |
719 o.nextPageToken = "foo"; | 719 o.nextPageToken = "foo"; |
720 } | 720 } |
721 buildCounterAdvertiserGroupsListResponse--; | 721 buildCounterAdvertiserGroupsListResponse--; |
722 return o; | 722 return o; |
723 } | 723 } |
724 | 724 |
725 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { | 725 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { |
726 buildCounterAdvertiserGroupsListResponse++; | 726 buildCounterAdvertiserGroupsListResponse++; |
727 if (buildCounterAdvertiserGroupsListResponse < 3) { | 727 if (buildCounterAdvertiserGroupsListResponse < 3) { |
728 checkUnnamed271(o.advertiserGroups); | 728 checkUnnamed820(o.advertiserGroups); |
729 unittest.expect(o.kind, unittest.equals('foo')); | 729 unittest.expect(o.kind, unittest.equals('foo')); |
730 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 730 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
731 } | 731 } |
732 buildCounterAdvertiserGroupsListResponse--; | 732 buildCounterAdvertiserGroupsListResponse--; |
733 } | 733 } |
734 | 734 |
735 buildUnnamed272() { | 735 buildUnnamed821() { |
736 var o = new core.List<api.Advertiser>(); | 736 var o = new core.List<api.Advertiser>(); |
737 o.add(buildAdvertiser()); | 737 o.add(buildAdvertiser()); |
738 o.add(buildAdvertiser()); | 738 o.add(buildAdvertiser()); |
739 return o; | 739 return o; |
740 } | 740 } |
741 | 741 |
742 checkUnnamed272(core.List<api.Advertiser> o) { | 742 checkUnnamed821(core.List<api.Advertiser> o) { |
743 unittest.expect(o, unittest.hasLength(2)); | 743 unittest.expect(o, unittest.hasLength(2)); |
744 checkAdvertiser(o[0]); | 744 checkAdvertiser(o[0]); |
745 checkAdvertiser(o[1]); | 745 checkAdvertiser(o[1]); |
746 } | 746 } |
747 | 747 |
748 core.int buildCounterAdvertisersListResponse = 0; | 748 core.int buildCounterAdvertisersListResponse = 0; |
749 buildAdvertisersListResponse() { | 749 buildAdvertisersListResponse() { |
750 var o = new api.AdvertisersListResponse(); | 750 var o = new api.AdvertisersListResponse(); |
751 buildCounterAdvertisersListResponse++; | 751 buildCounterAdvertisersListResponse++; |
752 if (buildCounterAdvertisersListResponse < 3) { | 752 if (buildCounterAdvertisersListResponse < 3) { |
753 o.advertisers = buildUnnamed272(); | 753 o.advertisers = buildUnnamed821(); |
754 o.kind = "foo"; | 754 o.kind = "foo"; |
755 o.nextPageToken = "foo"; | 755 o.nextPageToken = "foo"; |
756 } | 756 } |
757 buildCounterAdvertisersListResponse--; | 757 buildCounterAdvertisersListResponse--; |
758 return o; | 758 return o; |
759 } | 759 } |
760 | 760 |
761 checkAdvertisersListResponse(api.AdvertisersListResponse o) { | 761 checkAdvertisersListResponse(api.AdvertisersListResponse o) { |
762 buildCounterAdvertisersListResponse++; | 762 buildCounterAdvertisersListResponse++; |
763 if (buildCounterAdvertisersListResponse < 3) { | 763 if (buildCounterAdvertisersListResponse < 3) { |
764 checkUnnamed272(o.advertisers); | 764 checkUnnamed821(o.advertisers); |
765 unittest.expect(o.kind, unittest.equals('foo')); | 765 unittest.expect(o.kind, unittest.equals('foo')); |
766 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 766 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
767 } | 767 } |
768 buildCounterAdvertisersListResponse--; | 768 buildCounterAdvertisersListResponse--; |
769 } | 769 } |
770 | 770 |
771 core.int buildCounterAudienceSegment = 0; | 771 core.int buildCounterAudienceSegment = 0; |
772 buildAudienceSegment() { | 772 buildAudienceSegment() { |
773 var o = new api.AudienceSegment(); | 773 var o = new api.AudienceSegment(); |
774 buildCounterAudienceSegment++; | 774 buildCounterAudienceSegment++; |
775 if (buildCounterAudienceSegment < 3) { | 775 if (buildCounterAudienceSegment < 3) { |
776 o.allocation = 42; | 776 o.allocation = 42; |
777 o.id = "foo"; | 777 o.id = "foo"; |
778 o.name = "foo"; | 778 o.name = "foo"; |
779 } | 779 } |
780 buildCounterAudienceSegment--; | 780 buildCounterAudienceSegment--; |
781 return o; | 781 return o; |
782 } | 782 } |
783 | 783 |
784 checkAudienceSegment(api.AudienceSegment o) { | 784 checkAudienceSegment(api.AudienceSegment o) { |
785 buildCounterAudienceSegment++; | 785 buildCounterAudienceSegment++; |
786 if (buildCounterAudienceSegment < 3) { | 786 if (buildCounterAudienceSegment < 3) { |
787 unittest.expect(o.allocation, unittest.equals(42)); | 787 unittest.expect(o.allocation, unittest.equals(42)); |
788 unittest.expect(o.id, unittest.equals('foo')); | 788 unittest.expect(o.id, unittest.equals('foo')); |
789 unittest.expect(o.name, unittest.equals('foo')); | 789 unittest.expect(o.name, unittest.equals('foo')); |
790 } | 790 } |
791 buildCounterAudienceSegment--; | 791 buildCounterAudienceSegment--; |
792 } | 792 } |
793 | 793 |
794 buildUnnamed273() { | 794 buildUnnamed822() { |
795 var o = new core.List<api.AudienceSegment>(); | 795 var o = new core.List<api.AudienceSegment>(); |
796 o.add(buildAudienceSegment()); | 796 o.add(buildAudienceSegment()); |
797 o.add(buildAudienceSegment()); | 797 o.add(buildAudienceSegment()); |
798 return o; | 798 return o; |
799 } | 799 } |
800 | 800 |
801 checkUnnamed273(core.List<api.AudienceSegment> o) { | 801 checkUnnamed822(core.List<api.AudienceSegment> o) { |
802 unittest.expect(o, unittest.hasLength(2)); | 802 unittest.expect(o, unittest.hasLength(2)); |
803 checkAudienceSegment(o[0]); | 803 checkAudienceSegment(o[0]); |
804 checkAudienceSegment(o[1]); | 804 checkAudienceSegment(o[1]); |
805 } | 805 } |
806 | 806 |
807 core.int buildCounterAudienceSegmentGroup = 0; | 807 core.int buildCounterAudienceSegmentGroup = 0; |
808 buildAudienceSegmentGroup() { | 808 buildAudienceSegmentGroup() { |
809 var o = new api.AudienceSegmentGroup(); | 809 var o = new api.AudienceSegmentGroup(); |
810 buildCounterAudienceSegmentGroup++; | 810 buildCounterAudienceSegmentGroup++; |
811 if (buildCounterAudienceSegmentGroup < 3) { | 811 if (buildCounterAudienceSegmentGroup < 3) { |
812 o.audienceSegments = buildUnnamed273(); | 812 o.audienceSegments = buildUnnamed822(); |
813 o.id = "foo"; | 813 o.id = "foo"; |
814 o.name = "foo"; | 814 o.name = "foo"; |
815 } | 815 } |
816 buildCounterAudienceSegmentGroup--; | 816 buildCounterAudienceSegmentGroup--; |
817 return o; | 817 return o; |
818 } | 818 } |
819 | 819 |
820 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { | 820 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { |
821 buildCounterAudienceSegmentGroup++; | 821 buildCounterAudienceSegmentGroup++; |
822 if (buildCounterAudienceSegmentGroup < 3) { | 822 if (buildCounterAudienceSegmentGroup < 3) { |
823 checkUnnamed273(o.audienceSegments); | 823 checkUnnamed822(o.audienceSegments); |
824 unittest.expect(o.id, unittest.equals('foo')); | 824 unittest.expect(o.id, unittest.equals('foo')); |
825 unittest.expect(o.name, unittest.equals('foo')); | 825 unittest.expect(o.name, unittest.equals('foo')); |
826 } | 826 } |
827 buildCounterAudienceSegmentGroup--; | 827 buildCounterAudienceSegmentGroup--; |
828 } | 828 } |
829 | 829 |
830 core.int buildCounterBrowser = 0; | 830 core.int buildCounterBrowser = 0; |
831 buildBrowser() { | 831 buildBrowser() { |
832 var o = new api.Browser(); | 832 var o = new api.Browser(); |
833 buildCounterBrowser++; | 833 buildCounterBrowser++; |
(...skipping 15 matching lines...) Expand all Loading... |
849 unittest.expect(o.browserVersionId, unittest.equals('foo')); | 849 unittest.expect(o.browserVersionId, unittest.equals('foo')); |
850 unittest.expect(o.dartId, unittest.equals('foo')); | 850 unittest.expect(o.dartId, unittest.equals('foo')); |
851 unittest.expect(o.kind, unittest.equals('foo')); | 851 unittest.expect(o.kind, unittest.equals('foo')); |
852 unittest.expect(o.majorVersion, unittest.equals('foo')); | 852 unittest.expect(o.majorVersion, unittest.equals('foo')); |
853 unittest.expect(o.minorVersion, unittest.equals('foo')); | 853 unittest.expect(o.minorVersion, unittest.equals('foo')); |
854 unittest.expect(o.name, unittest.equals('foo')); | 854 unittest.expect(o.name, unittest.equals('foo')); |
855 } | 855 } |
856 buildCounterBrowser--; | 856 buildCounterBrowser--; |
857 } | 857 } |
858 | 858 |
859 buildUnnamed274() { | 859 buildUnnamed823() { |
860 var o = new core.List<api.Browser>(); | 860 var o = new core.List<api.Browser>(); |
861 o.add(buildBrowser()); | 861 o.add(buildBrowser()); |
862 o.add(buildBrowser()); | 862 o.add(buildBrowser()); |
863 return o; | 863 return o; |
864 } | 864 } |
865 | 865 |
866 checkUnnamed274(core.List<api.Browser> o) { | 866 checkUnnamed823(core.List<api.Browser> o) { |
867 unittest.expect(o, unittest.hasLength(2)); | 867 unittest.expect(o, unittest.hasLength(2)); |
868 checkBrowser(o[0]); | 868 checkBrowser(o[0]); |
869 checkBrowser(o[1]); | 869 checkBrowser(o[1]); |
870 } | 870 } |
871 | 871 |
872 core.int buildCounterBrowsersListResponse = 0; | 872 core.int buildCounterBrowsersListResponse = 0; |
873 buildBrowsersListResponse() { | 873 buildBrowsersListResponse() { |
874 var o = new api.BrowsersListResponse(); | 874 var o = new api.BrowsersListResponse(); |
875 buildCounterBrowsersListResponse++; | 875 buildCounterBrowsersListResponse++; |
876 if (buildCounterBrowsersListResponse < 3) { | 876 if (buildCounterBrowsersListResponse < 3) { |
877 o.browsers = buildUnnamed274(); | 877 o.browsers = buildUnnamed823(); |
878 o.kind = "foo"; | 878 o.kind = "foo"; |
879 } | 879 } |
880 buildCounterBrowsersListResponse--; | 880 buildCounterBrowsersListResponse--; |
881 return o; | 881 return o; |
882 } | 882 } |
883 | 883 |
884 checkBrowsersListResponse(api.BrowsersListResponse o) { | 884 checkBrowsersListResponse(api.BrowsersListResponse o) { |
885 buildCounterBrowsersListResponse++; | 885 buildCounterBrowsersListResponse++; |
886 if (buildCounterBrowsersListResponse < 3) { | 886 if (buildCounterBrowsersListResponse < 3) { |
887 checkUnnamed274(o.browsers); | 887 checkUnnamed823(o.browsers); |
888 unittest.expect(o.kind, unittest.equals('foo')); | 888 unittest.expect(o.kind, unittest.equals('foo')); |
889 } | 889 } |
890 buildCounterBrowsersListResponse--; | 890 buildCounterBrowsersListResponse--; |
891 } | 891 } |
892 | 892 |
893 buildUnnamed275() { | 893 buildUnnamed824() { |
894 var o = new core.List<api.CreativeOptimizationConfiguration>(); | 894 var o = new core.List<api.CreativeOptimizationConfiguration>(); |
895 o.add(buildCreativeOptimizationConfiguration()); | 895 o.add(buildCreativeOptimizationConfiguration()); |
896 o.add(buildCreativeOptimizationConfiguration()); | 896 o.add(buildCreativeOptimizationConfiguration()); |
897 return o; | 897 return o; |
898 } | 898 } |
899 | 899 |
900 checkUnnamed275(core.List<api.CreativeOptimizationConfiguration> o) { | 900 checkUnnamed824(core.List<api.CreativeOptimizationConfiguration> o) { |
901 unittest.expect(o, unittest.hasLength(2)); | 901 unittest.expect(o, unittest.hasLength(2)); |
902 checkCreativeOptimizationConfiguration(o[0]); | 902 checkCreativeOptimizationConfiguration(o[0]); |
903 checkCreativeOptimizationConfiguration(o[1]); | 903 checkCreativeOptimizationConfiguration(o[1]); |
904 } | 904 } |
905 | 905 |
906 buildUnnamed276() { | 906 buildUnnamed825() { |
907 var o = new core.List<api.AudienceSegmentGroup>(); | 907 var o = new core.List<api.AudienceSegmentGroup>(); |
908 o.add(buildAudienceSegmentGroup()); | 908 o.add(buildAudienceSegmentGroup()); |
909 o.add(buildAudienceSegmentGroup()); | 909 o.add(buildAudienceSegmentGroup()); |
910 return o; | 910 return o; |
911 } | 911 } |
912 | 912 |
913 checkUnnamed276(core.List<api.AudienceSegmentGroup> o) { | 913 checkUnnamed825(core.List<api.AudienceSegmentGroup> o) { |
914 unittest.expect(o, unittest.hasLength(2)); | 914 unittest.expect(o, unittest.hasLength(2)); |
915 checkAudienceSegmentGroup(o[0]); | 915 checkAudienceSegmentGroup(o[0]); |
916 checkAudienceSegmentGroup(o[1]); | 916 checkAudienceSegmentGroup(o[1]); |
917 } | 917 } |
918 | 918 |
919 buildUnnamed277() { | 919 buildUnnamed826() { |
920 var o = new core.List<core.String>(); | 920 var o = new core.List<core.String>(); |
921 o.add("foo"); | 921 o.add("foo"); |
922 o.add("foo"); | 922 o.add("foo"); |
923 return o; | 923 return o; |
924 } | 924 } |
925 | 925 |
926 checkUnnamed277(core.List<core.String> o) { | 926 checkUnnamed826(core.List<core.String> o) { |
927 unittest.expect(o, unittest.hasLength(2)); | 927 unittest.expect(o, unittest.hasLength(2)); |
928 unittest.expect(o[0], unittest.equals('foo')); | 928 unittest.expect(o[0], unittest.equals('foo')); |
929 unittest.expect(o[1], unittest.equals('foo')); | 929 unittest.expect(o[1], unittest.equals('foo')); |
930 } | 930 } |
931 | 931 |
932 buildUnnamed278() { | 932 buildUnnamed827() { |
933 var o = new core.List<api.EventTagOverride>(); | 933 var o = new core.List<api.EventTagOverride>(); |
934 o.add(buildEventTagOverride()); | 934 o.add(buildEventTagOverride()); |
935 o.add(buildEventTagOverride()); | 935 o.add(buildEventTagOverride()); |
936 return o; | 936 return o; |
937 } | 937 } |
938 | 938 |
939 checkUnnamed278(core.List<api.EventTagOverride> o) { | 939 checkUnnamed827(core.List<api.EventTagOverride> o) { |
940 unittest.expect(o, unittest.hasLength(2)); | 940 unittest.expect(o, unittest.hasLength(2)); |
941 checkEventTagOverride(o[0]); | 941 checkEventTagOverride(o[0]); |
942 checkEventTagOverride(o[1]); | 942 checkEventTagOverride(o[1]); |
943 } | 943 } |
944 | 944 |
945 buildUnnamed279() { | 945 buildUnnamed828() { |
946 var o = new core.List<core.String>(); | 946 var o = new core.List<core.String>(); |
947 o.add("foo"); | 947 o.add("foo"); |
948 o.add("foo"); | 948 o.add("foo"); |
949 return o; | 949 return o; |
950 } | 950 } |
951 | 951 |
952 checkUnnamed279(core.List<core.String> o) { | 952 checkUnnamed828(core.List<core.String> o) { |
953 unittest.expect(o, unittest.hasLength(2)); | 953 unittest.expect(o, unittest.hasLength(2)); |
954 unittest.expect(o[0], unittest.equals('foo')); | 954 unittest.expect(o[0], unittest.equals('foo')); |
955 unittest.expect(o[1], unittest.equals('foo')); | 955 unittest.expect(o[1], unittest.equals('foo')); |
956 } | 956 } |
957 | 957 |
958 core.int buildCounterCampaign = 0; | 958 core.int buildCounterCampaign = 0; |
959 buildCampaign() { | 959 buildCampaign() { |
960 var o = new api.Campaign(); | 960 var o = new api.Campaign(); |
961 buildCounterCampaign++; | 961 buildCounterCampaign++; |
962 if (buildCounterCampaign < 3) { | 962 if (buildCounterCampaign < 3) { |
963 o.accountId = "foo"; | 963 o.accountId = "foo"; |
964 o.additionalCreativeOptimizationConfigurations = buildUnnamed275(); | 964 o.additionalCreativeOptimizationConfigurations = buildUnnamed824(); |
965 o.advertiserGroupId = "foo"; | 965 o.advertiserGroupId = "foo"; |
966 o.advertiserId = "foo"; | 966 o.advertiserId = "foo"; |
967 o.advertiserIdDimensionValue = buildDimensionValue(); | 967 o.advertiserIdDimensionValue = buildDimensionValue(); |
968 o.archived = true; | 968 o.archived = true; |
969 o.audienceSegmentGroups = buildUnnamed276(); | 969 o.audienceSegmentGroups = buildUnnamed825(); |
970 o.billingInvoiceCode = "foo"; | 970 o.billingInvoiceCode = "foo"; |
971 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); | 971 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); |
972 o.comment = "foo"; | 972 o.comment = "foo"; |
973 o.comscoreVceEnabled = true; | 973 o.comscoreVceEnabled = true; |
974 o.createInfo = buildLastModifiedInfo(); | 974 o.createInfo = buildLastModifiedInfo(); |
975 o.creativeGroupIds = buildUnnamed277(); | 975 o.creativeGroupIds = buildUnnamed826(); |
976 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); | 976 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); |
977 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); | 977 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); |
978 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 978 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
979 o.eventTagOverrides = buildUnnamed278(); | 979 o.eventTagOverrides = buildUnnamed827(); |
980 o.externalId = "foo"; | 980 o.externalId = "foo"; |
981 o.id = "foo"; | 981 o.id = "foo"; |
982 o.idDimensionValue = buildDimensionValue(); | 982 o.idDimensionValue = buildDimensionValue(); |
983 o.kind = "foo"; | 983 o.kind = "foo"; |
984 o.lastModifiedInfo = buildLastModifiedInfo(); | 984 o.lastModifiedInfo = buildLastModifiedInfo(); |
985 o.lookbackConfiguration = buildLookbackConfiguration(); | 985 o.lookbackConfiguration = buildLookbackConfiguration(); |
986 o.name = "foo"; | 986 o.name = "foo"; |
987 o.nielsenOcrEnabled = true; | 987 o.nielsenOcrEnabled = true; |
988 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 988 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
989 o.subaccountId = "foo"; | 989 o.subaccountId = "foo"; |
990 o.traffickerEmails = buildUnnamed279(); | 990 o.traffickerEmails = buildUnnamed828(); |
991 } | 991 } |
992 buildCounterCampaign--; | 992 buildCounterCampaign--; |
993 return o; | 993 return o; |
994 } | 994 } |
995 | 995 |
996 checkCampaign(api.Campaign o) { | 996 checkCampaign(api.Campaign o) { |
997 buildCounterCampaign++; | 997 buildCounterCampaign++; |
998 if (buildCounterCampaign < 3) { | 998 if (buildCounterCampaign < 3) { |
999 unittest.expect(o.accountId, unittest.equals('foo')); | 999 unittest.expect(o.accountId, unittest.equals('foo')); |
1000 checkUnnamed275(o.additionalCreativeOptimizationConfigurations); | 1000 checkUnnamed824(o.additionalCreativeOptimizationConfigurations); |
1001 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); | 1001 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); |
1002 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1002 unittest.expect(o.advertiserId, unittest.equals('foo')); |
1003 checkDimensionValue(o.advertiserIdDimensionValue); | 1003 checkDimensionValue(o.advertiserIdDimensionValue); |
1004 unittest.expect(o.archived, unittest.isTrue); | 1004 unittest.expect(o.archived, unittest.isTrue); |
1005 checkUnnamed276(o.audienceSegmentGroups); | 1005 checkUnnamed825(o.audienceSegmentGroups); |
1006 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); | 1006 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); |
1007 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); | 1007 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); |
1008 unittest.expect(o.comment, unittest.equals('foo')); | 1008 unittest.expect(o.comment, unittest.equals('foo')); |
1009 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); | 1009 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); |
1010 checkLastModifiedInfo(o.createInfo); | 1010 checkLastModifiedInfo(o.createInfo); |
1011 checkUnnamed277(o.creativeGroupIds); | 1011 checkUnnamed826(o.creativeGroupIds); |
1012 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); | 1012 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); |
1013 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); | 1013 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); |
1014 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 1014 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
1015 checkUnnamed278(o.eventTagOverrides); | 1015 checkUnnamed827(o.eventTagOverrides); |
1016 unittest.expect(o.externalId, unittest.equals('foo')); | 1016 unittest.expect(o.externalId, unittest.equals('foo')); |
1017 unittest.expect(o.id, unittest.equals('foo')); | 1017 unittest.expect(o.id, unittest.equals('foo')); |
1018 checkDimensionValue(o.idDimensionValue); | 1018 checkDimensionValue(o.idDimensionValue); |
1019 unittest.expect(o.kind, unittest.equals('foo')); | 1019 unittest.expect(o.kind, unittest.equals('foo')); |
1020 checkLastModifiedInfo(o.lastModifiedInfo); | 1020 checkLastModifiedInfo(o.lastModifiedInfo); |
1021 checkLookbackConfiguration(o.lookbackConfiguration); | 1021 checkLookbackConfiguration(o.lookbackConfiguration); |
1022 unittest.expect(o.name, unittest.equals('foo')); | 1022 unittest.expect(o.name, unittest.equals('foo')); |
1023 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); | 1023 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); |
1024 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 1024 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
1025 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1025 unittest.expect(o.subaccountId, unittest.equals('foo')); |
1026 checkUnnamed279(o.traffickerEmails); | 1026 checkUnnamed828(o.traffickerEmails); |
1027 } | 1027 } |
1028 buildCounterCampaign--; | 1028 buildCounterCampaign--; |
1029 } | 1029 } |
1030 | 1030 |
1031 core.int buildCounterCampaignCreativeAssociation = 0; | 1031 core.int buildCounterCampaignCreativeAssociation = 0; |
1032 buildCampaignCreativeAssociation() { | 1032 buildCampaignCreativeAssociation() { |
1033 var o = new api.CampaignCreativeAssociation(); | 1033 var o = new api.CampaignCreativeAssociation(); |
1034 buildCounterCampaignCreativeAssociation++; | 1034 buildCounterCampaignCreativeAssociation++; |
1035 if (buildCounterCampaignCreativeAssociation < 3) { | 1035 if (buildCounterCampaignCreativeAssociation < 3) { |
1036 o.creativeId = "foo"; | 1036 o.creativeId = "foo"; |
1037 o.kind = "foo"; | 1037 o.kind = "foo"; |
1038 } | 1038 } |
1039 buildCounterCampaignCreativeAssociation--; | 1039 buildCounterCampaignCreativeAssociation--; |
1040 return o; | 1040 return o; |
1041 } | 1041 } |
1042 | 1042 |
1043 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { | 1043 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { |
1044 buildCounterCampaignCreativeAssociation++; | 1044 buildCounterCampaignCreativeAssociation++; |
1045 if (buildCounterCampaignCreativeAssociation < 3) { | 1045 if (buildCounterCampaignCreativeAssociation < 3) { |
1046 unittest.expect(o.creativeId, unittest.equals('foo')); | 1046 unittest.expect(o.creativeId, unittest.equals('foo')); |
1047 unittest.expect(o.kind, unittest.equals('foo')); | 1047 unittest.expect(o.kind, unittest.equals('foo')); |
1048 } | 1048 } |
1049 buildCounterCampaignCreativeAssociation--; | 1049 buildCounterCampaignCreativeAssociation--; |
1050 } | 1050 } |
1051 | 1051 |
1052 buildUnnamed280() { | 1052 buildUnnamed829() { |
1053 var o = new core.List<api.CampaignCreativeAssociation>(); | 1053 var o = new core.List<api.CampaignCreativeAssociation>(); |
1054 o.add(buildCampaignCreativeAssociation()); | 1054 o.add(buildCampaignCreativeAssociation()); |
1055 o.add(buildCampaignCreativeAssociation()); | 1055 o.add(buildCampaignCreativeAssociation()); |
1056 return o; | 1056 return o; |
1057 } | 1057 } |
1058 | 1058 |
1059 checkUnnamed280(core.List<api.CampaignCreativeAssociation> o) { | 1059 checkUnnamed829(core.List<api.CampaignCreativeAssociation> o) { |
1060 unittest.expect(o, unittest.hasLength(2)); | 1060 unittest.expect(o, unittest.hasLength(2)); |
1061 checkCampaignCreativeAssociation(o[0]); | 1061 checkCampaignCreativeAssociation(o[0]); |
1062 checkCampaignCreativeAssociation(o[1]); | 1062 checkCampaignCreativeAssociation(o[1]); |
1063 } | 1063 } |
1064 | 1064 |
1065 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; | 1065 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; |
1066 buildCampaignCreativeAssociationsListResponse() { | 1066 buildCampaignCreativeAssociationsListResponse() { |
1067 var o = new api.CampaignCreativeAssociationsListResponse(); | 1067 var o = new api.CampaignCreativeAssociationsListResponse(); |
1068 buildCounterCampaignCreativeAssociationsListResponse++; | 1068 buildCounterCampaignCreativeAssociationsListResponse++; |
1069 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1069 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
1070 o.campaignCreativeAssociations = buildUnnamed280(); | 1070 o.campaignCreativeAssociations = buildUnnamed829(); |
1071 o.kind = "foo"; | 1071 o.kind = "foo"; |
1072 o.nextPageToken = "foo"; | 1072 o.nextPageToken = "foo"; |
1073 } | 1073 } |
1074 buildCounterCampaignCreativeAssociationsListResponse--; | 1074 buildCounterCampaignCreativeAssociationsListResponse--; |
1075 return o; | 1075 return o; |
1076 } | 1076 } |
1077 | 1077 |
1078 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { | 1078 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { |
1079 buildCounterCampaignCreativeAssociationsListResponse++; | 1079 buildCounterCampaignCreativeAssociationsListResponse++; |
1080 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1080 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
1081 checkUnnamed280(o.campaignCreativeAssociations); | 1081 checkUnnamed829(o.campaignCreativeAssociations); |
1082 unittest.expect(o.kind, unittest.equals('foo')); | 1082 unittest.expect(o.kind, unittest.equals('foo')); |
1083 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1083 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1084 } | 1084 } |
1085 buildCounterCampaignCreativeAssociationsListResponse--; | 1085 buildCounterCampaignCreativeAssociationsListResponse--; |
1086 } | 1086 } |
1087 | 1087 |
1088 buildUnnamed281() { | 1088 buildUnnamed830() { |
1089 var o = new core.List<api.Campaign>(); | 1089 var o = new core.List<api.Campaign>(); |
1090 o.add(buildCampaign()); | 1090 o.add(buildCampaign()); |
1091 o.add(buildCampaign()); | 1091 o.add(buildCampaign()); |
1092 return o; | 1092 return o; |
1093 } | 1093 } |
1094 | 1094 |
1095 checkUnnamed281(core.List<api.Campaign> o) { | 1095 checkUnnamed830(core.List<api.Campaign> o) { |
1096 unittest.expect(o, unittest.hasLength(2)); | 1096 unittest.expect(o, unittest.hasLength(2)); |
1097 checkCampaign(o[0]); | 1097 checkCampaign(o[0]); |
1098 checkCampaign(o[1]); | 1098 checkCampaign(o[1]); |
1099 } | 1099 } |
1100 | 1100 |
1101 core.int buildCounterCampaignsListResponse = 0; | 1101 core.int buildCounterCampaignsListResponse = 0; |
1102 buildCampaignsListResponse() { | 1102 buildCampaignsListResponse() { |
1103 var o = new api.CampaignsListResponse(); | 1103 var o = new api.CampaignsListResponse(); |
1104 buildCounterCampaignsListResponse++; | 1104 buildCounterCampaignsListResponse++; |
1105 if (buildCounterCampaignsListResponse < 3) { | 1105 if (buildCounterCampaignsListResponse < 3) { |
1106 o.campaigns = buildUnnamed281(); | 1106 o.campaigns = buildUnnamed830(); |
1107 o.kind = "foo"; | 1107 o.kind = "foo"; |
1108 o.nextPageToken = "foo"; | 1108 o.nextPageToken = "foo"; |
1109 } | 1109 } |
1110 buildCounterCampaignsListResponse--; | 1110 buildCounterCampaignsListResponse--; |
1111 return o; | 1111 return o; |
1112 } | 1112 } |
1113 | 1113 |
1114 checkCampaignsListResponse(api.CampaignsListResponse o) { | 1114 checkCampaignsListResponse(api.CampaignsListResponse o) { |
1115 buildCounterCampaignsListResponse++; | 1115 buildCounterCampaignsListResponse++; |
1116 if (buildCounterCampaignsListResponse < 3) { | 1116 if (buildCounterCampaignsListResponse < 3) { |
1117 checkUnnamed281(o.campaigns); | 1117 checkUnnamed830(o.campaigns); |
1118 unittest.expect(o.kind, unittest.equals('foo')); | 1118 unittest.expect(o.kind, unittest.equals('foo')); |
1119 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1119 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1120 } | 1120 } |
1121 buildCounterCampaignsListResponse--; | 1121 buildCounterCampaignsListResponse--; |
1122 } | 1122 } |
1123 | 1123 |
1124 core.int buildCounterChangeLog = 0; | 1124 core.int buildCounterChangeLog = 0; |
1125 buildChangeLog() { | 1125 buildChangeLog() { |
1126 var o = new api.ChangeLog(); | 1126 var o = new api.ChangeLog(); |
1127 buildCounterChangeLog++; | 1127 buildCounterChangeLog++; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1159 unittest.expect(o.objectType, unittest.equals('foo')); | 1159 unittest.expect(o.objectType, unittest.equals('foo')); |
1160 unittest.expect(o.oldValue, unittest.equals('foo')); | 1160 unittest.expect(o.oldValue, unittest.equals('foo')); |
1161 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1161 unittest.expect(o.subaccountId, unittest.equals('foo')); |
1162 unittest.expect(o.transactionId, unittest.equals('foo')); | 1162 unittest.expect(o.transactionId, unittest.equals('foo')); |
1163 unittest.expect(o.userProfileId, unittest.equals('foo')); | 1163 unittest.expect(o.userProfileId, unittest.equals('foo')); |
1164 unittest.expect(o.userProfileName, unittest.equals('foo')); | 1164 unittest.expect(o.userProfileName, unittest.equals('foo')); |
1165 } | 1165 } |
1166 buildCounterChangeLog--; | 1166 buildCounterChangeLog--; |
1167 } | 1167 } |
1168 | 1168 |
1169 buildUnnamed282() { | 1169 buildUnnamed831() { |
1170 var o = new core.List<api.ChangeLog>(); | 1170 var o = new core.List<api.ChangeLog>(); |
1171 o.add(buildChangeLog()); | 1171 o.add(buildChangeLog()); |
1172 o.add(buildChangeLog()); | 1172 o.add(buildChangeLog()); |
1173 return o; | 1173 return o; |
1174 } | 1174 } |
1175 | 1175 |
1176 checkUnnamed282(core.List<api.ChangeLog> o) { | 1176 checkUnnamed831(core.List<api.ChangeLog> o) { |
1177 unittest.expect(o, unittest.hasLength(2)); | 1177 unittest.expect(o, unittest.hasLength(2)); |
1178 checkChangeLog(o[0]); | 1178 checkChangeLog(o[0]); |
1179 checkChangeLog(o[1]); | 1179 checkChangeLog(o[1]); |
1180 } | 1180 } |
1181 | 1181 |
1182 core.int buildCounterChangeLogsListResponse = 0; | 1182 core.int buildCounterChangeLogsListResponse = 0; |
1183 buildChangeLogsListResponse() { | 1183 buildChangeLogsListResponse() { |
1184 var o = new api.ChangeLogsListResponse(); | 1184 var o = new api.ChangeLogsListResponse(); |
1185 buildCounterChangeLogsListResponse++; | 1185 buildCounterChangeLogsListResponse++; |
1186 if (buildCounterChangeLogsListResponse < 3) { | 1186 if (buildCounterChangeLogsListResponse < 3) { |
1187 o.changeLogs = buildUnnamed282(); | 1187 o.changeLogs = buildUnnamed831(); |
1188 o.kind = "foo"; | 1188 o.kind = "foo"; |
1189 o.nextPageToken = "foo"; | 1189 o.nextPageToken = "foo"; |
1190 } | 1190 } |
1191 buildCounterChangeLogsListResponse--; | 1191 buildCounterChangeLogsListResponse--; |
1192 return o; | 1192 return o; |
1193 } | 1193 } |
1194 | 1194 |
1195 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { | 1195 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { |
1196 buildCounterChangeLogsListResponse++; | 1196 buildCounterChangeLogsListResponse++; |
1197 if (buildCounterChangeLogsListResponse < 3) { | 1197 if (buildCounterChangeLogsListResponse < 3) { |
1198 checkUnnamed282(o.changeLogs); | 1198 checkUnnamed831(o.changeLogs); |
1199 unittest.expect(o.kind, unittest.equals('foo')); | 1199 unittest.expect(o.kind, unittest.equals('foo')); |
1200 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1200 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1201 } | 1201 } |
1202 buildCounterChangeLogsListResponse--; | 1202 buildCounterChangeLogsListResponse--; |
1203 } | 1203 } |
1204 | 1204 |
1205 buildUnnamed283() { | 1205 buildUnnamed832() { |
1206 var o = new core.List<api.City>(); | 1206 var o = new core.List<api.City>(); |
1207 o.add(buildCity()); | 1207 o.add(buildCity()); |
1208 o.add(buildCity()); | 1208 o.add(buildCity()); |
1209 return o; | 1209 return o; |
1210 } | 1210 } |
1211 | 1211 |
1212 checkUnnamed283(core.List<api.City> o) { | 1212 checkUnnamed832(core.List<api.City> o) { |
1213 unittest.expect(o, unittest.hasLength(2)); | 1213 unittest.expect(o, unittest.hasLength(2)); |
1214 checkCity(o[0]); | 1214 checkCity(o[0]); |
1215 checkCity(o[1]); | 1215 checkCity(o[1]); |
1216 } | 1216 } |
1217 | 1217 |
1218 core.int buildCounterCitiesListResponse = 0; | 1218 core.int buildCounterCitiesListResponse = 0; |
1219 buildCitiesListResponse() { | 1219 buildCitiesListResponse() { |
1220 var o = new api.CitiesListResponse(); | 1220 var o = new api.CitiesListResponse(); |
1221 buildCounterCitiesListResponse++; | 1221 buildCounterCitiesListResponse++; |
1222 if (buildCounterCitiesListResponse < 3) { | 1222 if (buildCounterCitiesListResponse < 3) { |
1223 o.cities = buildUnnamed283(); | 1223 o.cities = buildUnnamed832(); |
1224 o.kind = "foo"; | 1224 o.kind = "foo"; |
1225 } | 1225 } |
1226 buildCounterCitiesListResponse--; | 1226 buildCounterCitiesListResponse--; |
1227 return o; | 1227 return o; |
1228 } | 1228 } |
1229 | 1229 |
1230 checkCitiesListResponse(api.CitiesListResponse o) { | 1230 checkCitiesListResponse(api.CitiesListResponse o) { |
1231 buildCounterCitiesListResponse++; | 1231 buildCounterCitiesListResponse++; |
1232 if (buildCounterCitiesListResponse < 3) { | 1232 if (buildCounterCitiesListResponse < 3) { |
1233 checkUnnamed283(o.cities); | 1233 checkUnnamed832(o.cities); |
1234 unittest.expect(o.kind, unittest.equals('foo')); | 1234 unittest.expect(o.kind, unittest.equals('foo')); |
1235 } | 1235 } |
1236 buildCounterCitiesListResponse--; | 1236 buildCounterCitiesListResponse--; |
1237 } | 1237 } |
1238 | 1238 |
1239 core.int buildCounterCity = 0; | 1239 core.int buildCounterCity = 0; |
1240 buildCity() { | 1240 buildCity() { |
1241 var o = new api.City(); | 1241 var o = new api.City(); |
1242 buildCounterCity++; | 1242 buildCounterCity++; |
1243 if (buildCounterCity < 3) { | 1243 if (buildCounterCity < 3) { |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1404 checkConnectionType(api.ConnectionType o) { | 1404 checkConnectionType(api.ConnectionType o) { |
1405 buildCounterConnectionType++; | 1405 buildCounterConnectionType++; |
1406 if (buildCounterConnectionType < 3) { | 1406 if (buildCounterConnectionType < 3) { |
1407 unittest.expect(o.id, unittest.equals('foo')); | 1407 unittest.expect(o.id, unittest.equals('foo')); |
1408 unittest.expect(o.kind, unittest.equals('foo')); | 1408 unittest.expect(o.kind, unittest.equals('foo')); |
1409 unittest.expect(o.name, unittest.equals('foo')); | 1409 unittest.expect(o.name, unittest.equals('foo')); |
1410 } | 1410 } |
1411 buildCounterConnectionType--; | 1411 buildCounterConnectionType--; |
1412 } | 1412 } |
1413 | 1413 |
1414 buildUnnamed284() { | 1414 buildUnnamed833() { |
1415 var o = new core.List<api.ConnectionType>(); | 1415 var o = new core.List<api.ConnectionType>(); |
1416 o.add(buildConnectionType()); | 1416 o.add(buildConnectionType()); |
1417 o.add(buildConnectionType()); | 1417 o.add(buildConnectionType()); |
1418 return o; | 1418 return o; |
1419 } | 1419 } |
1420 | 1420 |
1421 checkUnnamed284(core.List<api.ConnectionType> o) { | 1421 checkUnnamed833(core.List<api.ConnectionType> o) { |
1422 unittest.expect(o, unittest.hasLength(2)); | 1422 unittest.expect(o, unittest.hasLength(2)); |
1423 checkConnectionType(o[0]); | 1423 checkConnectionType(o[0]); |
1424 checkConnectionType(o[1]); | 1424 checkConnectionType(o[1]); |
1425 } | 1425 } |
1426 | 1426 |
1427 core.int buildCounterConnectionTypesListResponse = 0; | 1427 core.int buildCounterConnectionTypesListResponse = 0; |
1428 buildConnectionTypesListResponse() { | 1428 buildConnectionTypesListResponse() { |
1429 var o = new api.ConnectionTypesListResponse(); | 1429 var o = new api.ConnectionTypesListResponse(); |
1430 buildCounterConnectionTypesListResponse++; | 1430 buildCounterConnectionTypesListResponse++; |
1431 if (buildCounterConnectionTypesListResponse < 3) { | 1431 if (buildCounterConnectionTypesListResponse < 3) { |
1432 o.connectionTypes = buildUnnamed284(); | 1432 o.connectionTypes = buildUnnamed833(); |
1433 o.kind = "foo"; | 1433 o.kind = "foo"; |
1434 } | 1434 } |
1435 buildCounterConnectionTypesListResponse--; | 1435 buildCounterConnectionTypesListResponse--; |
1436 return o; | 1436 return o; |
1437 } | 1437 } |
1438 | 1438 |
1439 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { | 1439 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { |
1440 buildCounterConnectionTypesListResponse++; | 1440 buildCounterConnectionTypesListResponse++; |
1441 if (buildCounterConnectionTypesListResponse < 3) { | 1441 if (buildCounterConnectionTypesListResponse < 3) { |
1442 checkUnnamed284(o.connectionTypes); | 1442 checkUnnamed833(o.connectionTypes); |
1443 unittest.expect(o.kind, unittest.equals('foo')); | 1443 unittest.expect(o.kind, unittest.equals('foo')); |
1444 } | 1444 } |
1445 buildCounterConnectionTypesListResponse--; | 1445 buildCounterConnectionTypesListResponse--; |
1446 } | 1446 } |
1447 | 1447 |
1448 buildUnnamed285() { | 1448 buildUnnamed834() { |
1449 var o = new core.List<api.ContentCategory>(); | 1449 var o = new core.List<api.ContentCategory>(); |
1450 o.add(buildContentCategory()); | 1450 o.add(buildContentCategory()); |
1451 o.add(buildContentCategory()); | 1451 o.add(buildContentCategory()); |
1452 return o; | 1452 return o; |
1453 } | 1453 } |
1454 | 1454 |
1455 checkUnnamed285(core.List<api.ContentCategory> o) { | 1455 checkUnnamed834(core.List<api.ContentCategory> o) { |
1456 unittest.expect(o, unittest.hasLength(2)); | 1456 unittest.expect(o, unittest.hasLength(2)); |
1457 checkContentCategory(o[0]); | 1457 checkContentCategory(o[0]); |
1458 checkContentCategory(o[1]); | 1458 checkContentCategory(o[1]); |
1459 } | 1459 } |
1460 | 1460 |
1461 core.int buildCounterContentCategoriesListResponse = 0; | 1461 core.int buildCounterContentCategoriesListResponse = 0; |
1462 buildContentCategoriesListResponse() { | 1462 buildContentCategoriesListResponse() { |
1463 var o = new api.ContentCategoriesListResponse(); | 1463 var o = new api.ContentCategoriesListResponse(); |
1464 buildCounterContentCategoriesListResponse++; | 1464 buildCounterContentCategoriesListResponse++; |
1465 if (buildCounterContentCategoriesListResponse < 3) { | 1465 if (buildCounterContentCategoriesListResponse < 3) { |
1466 o.contentCategories = buildUnnamed285(); | 1466 o.contentCategories = buildUnnamed834(); |
1467 o.kind = "foo"; | 1467 o.kind = "foo"; |
1468 o.nextPageToken = "foo"; | 1468 o.nextPageToken = "foo"; |
1469 } | 1469 } |
1470 buildCounterContentCategoriesListResponse--; | 1470 buildCounterContentCategoriesListResponse--; |
1471 return o; | 1471 return o; |
1472 } | 1472 } |
1473 | 1473 |
1474 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { | 1474 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { |
1475 buildCounterContentCategoriesListResponse++; | 1475 buildCounterContentCategoriesListResponse++; |
1476 if (buildCounterContentCategoriesListResponse < 3) { | 1476 if (buildCounterContentCategoriesListResponse < 3) { |
1477 checkUnnamed285(o.contentCategories); | 1477 checkUnnamed834(o.contentCategories); |
1478 unittest.expect(o.kind, unittest.equals('foo')); | 1478 unittest.expect(o.kind, unittest.equals('foo')); |
1479 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1479 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1480 } | 1480 } |
1481 buildCounterContentCategoriesListResponse--; | 1481 buildCounterContentCategoriesListResponse--; |
1482 } | 1482 } |
1483 | 1483 |
1484 core.int buildCounterContentCategory = 0; | 1484 core.int buildCounterContentCategory = 0; |
1485 buildContentCategory() { | 1485 buildContentCategory() { |
1486 var o = new api.ContentCategory(); | 1486 var o = new api.ContentCategory(); |
1487 buildCounterContentCategory++; | 1487 buildCounterContentCategory++; |
(...skipping 13 matching lines...) Expand all Loading... |
1501 if (buildCounterContentCategory < 3) { | 1501 if (buildCounterContentCategory < 3) { |
1502 unittest.expect(o.accountId, unittest.equals('foo')); | 1502 unittest.expect(o.accountId, unittest.equals('foo')); |
1503 unittest.expect(o.description, unittest.equals('foo')); | 1503 unittest.expect(o.description, unittest.equals('foo')); |
1504 unittest.expect(o.id, unittest.equals('foo')); | 1504 unittest.expect(o.id, unittest.equals('foo')); |
1505 unittest.expect(o.kind, unittest.equals('foo')); | 1505 unittest.expect(o.kind, unittest.equals('foo')); |
1506 unittest.expect(o.name, unittest.equals('foo')); | 1506 unittest.expect(o.name, unittest.equals('foo')); |
1507 } | 1507 } |
1508 buildCounterContentCategory--; | 1508 buildCounterContentCategory--; |
1509 } | 1509 } |
1510 | 1510 |
1511 buildUnnamed286() { | 1511 buildUnnamed835() { |
1512 var o = new core.List<api.Country>(); | 1512 var o = new core.List<api.Country>(); |
1513 o.add(buildCountry()); | 1513 o.add(buildCountry()); |
1514 o.add(buildCountry()); | 1514 o.add(buildCountry()); |
1515 return o; | 1515 return o; |
1516 } | 1516 } |
1517 | 1517 |
1518 checkUnnamed286(core.List<api.Country> o) { | 1518 checkUnnamed835(core.List<api.Country> o) { |
1519 unittest.expect(o, unittest.hasLength(2)); | 1519 unittest.expect(o, unittest.hasLength(2)); |
1520 checkCountry(o[0]); | 1520 checkCountry(o[0]); |
1521 checkCountry(o[1]); | 1521 checkCountry(o[1]); |
1522 } | 1522 } |
1523 | 1523 |
1524 core.int buildCounterCountriesListResponse = 0; | 1524 core.int buildCounterCountriesListResponse = 0; |
1525 buildCountriesListResponse() { | 1525 buildCountriesListResponse() { |
1526 var o = new api.CountriesListResponse(); | 1526 var o = new api.CountriesListResponse(); |
1527 buildCounterCountriesListResponse++; | 1527 buildCounterCountriesListResponse++; |
1528 if (buildCounterCountriesListResponse < 3) { | 1528 if (buildCounterCountriesListResponse < 3) { |
1529 o.countries = buildUnnamed286(); | 1529 o.countries = buildUnnamed835(); |
1530 o.kind = "foo"; | 1530 o.kind = "foo"; |
1531 } | 1531 } |
1532 buildCounterCountriesListResponse--; | 1532 buildCounterCountriesListResponse--; |
1533 return o; | 1533 return o; |
1534 } | 1534 } |
1535 | 1535 |
1536 checkCountriesListResponse(api.CountriesListResponse o) { | 1536 checkCountriesListResponse(api.CountriesListResponse o) { |
1537 buildCounterCountriesListResponse++; | 1537 buildCounterCountriesListResponse++; |
1538 if (buildCounterCountriesListResponse < 3) { | 1538 if (buildCounterCountriesListResponse < 3) { |
1539 checkUnnamed286(o.countries); | 1539 checkUnnamed835(o.countries); |
1540 unittest.expect(o.kind, unittest.equals('foo')); | 1540 unittest.expect(o.kind, unittest.equals('foo')); |
1541 } | 1541 } |
1542 buildCounterCountriesListResponse--; | 1542 buildCounterCountriesListResponse--; |
1543 } | 1543 } |
1544 | 1544 |
1545 core.int buildCounterCountry = 0; | 1545 core.int buildCounterCountry = 0; |
1546 buildCountry() { | 1546 buildCountry() { |
1547 var o = new api.Country(); | 1547 var o = new api.Country(); |
1548 buildCounterCountry++; | 1548 buildCounterCountry++; |
1549 if (buildCounterCountry < 3) { | 1549 if (buildCounterCountry < 3) { |
(...skipping 12 matching lines...) Expand all Loading... |
1562 if (buildCounterCountry < 3) { | 1562 if (buildCounterCountry < 3) { |
1563 unittest.expect(o.countryCode, unittest.equals('foo')); | 1563 unittest.expect(o.countryCode, unittest.equals('foo')); |
1564 unittest.expect(o.dartId, unittest.equals('foo')); | 1564 unittest.expect(o.dartId, unittest.equals('foo')); |
1565 unittest.expect(o.kind, unittest.equals('foo')); | 1565 unittest.expect(o.kind, unittest.equals('foo')); |
1566 unittest.expect(o.name, unittest.equals('foo')); | 1566 unittest.expect(o.name, unittest.equals('foo')); |
1567 unittest.expect(o.sslEnabled, unittest.isTrue); | 1567 unittest.expect(o.sslEnabled, unittest.isTrue); |
1568 } | 1568 } |
1569 buildCounterCountry--; | 1569 buildCounterCountry--; |
1570 } | 1570 } |
1571 | 1571 |
1572 buildUnnamed287() { | 1572 buildUnnamed836() { |
1573 var o = new core.List<core.String>(); | 1573 var o = new core.List<core.String>(); |
1574 o.add("foo"); | 1574 o.add("foo"); |
1575 o.add("foo"); | 1575 o.add("foo"); |
1576 return o; | 1576 return o; |
1577 } | 1577 } |
1578 | 1578 |
1579 checkUnnamed287(core.List<core.String> o) { | 1579 checkUnnamed836(core.List<core.String> o) { |
1580 unittest.expect(o, unittest.hasLength(2)); | 1580 unittest.expect(o, unittest.hasLength(2)); |
1581 unittest.expect(o[0], unittest.equals('foo')); | 1581 unittest.expect(o[0], unittest.equals('foo')); |
1582 unittest.expect(o[1], unittest.equals('foo')); | 1582 unittest.expect(o[1], unittest.equals('foo')); |
1583 } | 1583 } |
1584 | 1584 |
1585 buildUnnamed288() { | 1585 buildUnnamed837() { |
1586 var o = new core.List<core.String>(); | 1586 var o = new core.List<core.String>(); |
1587 o.add("foo"); | 1587 o.add("foo"); |
1588 o.add("foo"); | 1588 o.add("foo"); |
1589 return o; | 1589 return o; |
1590 } | 1590 } |
1591 | 1591 |
1592 checkUnnamed288(core.List<core.String> o) { | 1592 checkUnnamed837(core.List<core.String> o) { |
1593 unittest.expect(o, unittest.hasLength(2)); | 1593 unittest.expect(o, unittest.hasLength(2)); |
1594 unittest.expect(o[0], unittest.equals('foo')); | 1594 unittest.expect(o[0], unittest.equals('foo')); |
1595 unittest.expect(o[1], unittest.equals('foo')); | 1595 unittest.expect(o[1], unittest.equals('foo')); |
1596 } | 1596 } |
1597 | 1597 |
1598 buildUnnamed289() { | 1598 buildUnnamed838() { |
1599 var o = new core.List<api.ClickTag>(); | 1599 var o = new core.List<api.ClickTag>(); |
1600 o.add(buildClickTag()); | 1600 o.add(buildClickTag()); |
1601 o.add(buildClickTag()); | 1601 o.add(buildClickTag()); |
1602 return o; | 1602 return o; |
1603 } | 1603 } |
1604 | 1604 |
1605 checkUnnamed289(core.List<api.ClickTag> o) { | 1605 checkUnnamed838(core.List<api.ClickTag> o) { |
1606 unittest.expect(o, unittest.hasLength(2)); | 1606 unittest.expect(o, unittest.hasLength(2)); |
1607 checkClickTag(o[0]); | 1607 checkClickTag(o[0]); |
1608 checkClickTag(o[1]); | 1608 checkClickTag(o[1]); |
1609 } | 1609 } |
1610 | 1610 |
1611 buildUnnamed290() { | 1611 buildUnnamed839() { |
1612 var o = new core.List<core.String>(); | 1612 var o = new core.List<core.String>(); |
1613 o.add("foo"); | 1613 o.add("foo"); |
1614 o.add("foo"); | 1614 o.add("foo"); |
1615 return o; | 1615 return o; |
1616 } | 1616 } |
1617 | 1617 |
1618 checkUnnamed290(core.List<core.String> o) { | 1618 checkUnnamed839(core.List<core.String> o) { |
1619 unittest.expect(o, unittest.hasLength(2)); | 1619 unittest.expect(o, unittest.hasLength(2)); |
1620 unittest.expect(o[0], unittest.equals('foo')); | 1620 unittest.expect(o[0], unittest.equals('foo')); |
1621 unittest.expect(o[1], unittest.equals('foo')); | 1621 unittest.expect(o[1], unittest.equals('foo')); |
1622 } | 1622 } |
1623 | 1623 |
1624 buildUnnamed291() { | 1624 buildUnnamed840() { |
1625 var o = new core.List<core.String>(); | 1625 var o = new core.List<core.String>(); |
1626 o.add("foo"); | 1626 o.add("foo"); |
1627 o.add("foo"); | 1627 o.add("foo"); |
1628 return o; | 1628 return o; |
1629 } | 1629 } |
1630 | 1630 |
1631 checkUnnamed291(core.List<core.String> o) { | 1631 checkUnnamed840(core.List<core.String> o) { |
1632 unittest.expect(o, unittest.hasLength(2)); | 1632 unittest.expect(o, unittest.hasLength(2)); |
1633 unittest.expect(o[0], unittest.equals('foo')); | 1633 unittest.expect(o[0], unittest.equals('foo')); |
1634 unittest.expect(o[1], unittest.equals('foo')); | 1634 unittest.expect(o[1], unittest.equals('foo')); |
1635 } | 1635 } |
1636 | 1636 |
1637 buildUnnamed292() { | 1637 buildUnnamed841() { |
1638 var o = new core.List<api.CreativeCustomEvent>(); | 1638 var o = new core.List<api.CreativeCustomEvent>(); |
1639 o.add(buildCreativeCustomEvent()); | 1639 o.add(buildCreativeCustomEvent()); |
1640 o.add(buildCreativeCustomEvent()); | 1640 o.add(buildCreativeCustomEvent()); |
1641 return o; | 1641 return o; |
1642 } | 1642 } |
1643 | 1643 |
1644 checkUnnamed292(core.List<api.CreativeCustomEvent> o) { | 1644 checkUnnamed841(core.List<api.CreativeCustomEvent> o) { |
1645 unittest.expect(o, unittest.hasLength(2)); | 1645 unittest.expect(o, unittest.hasLength(2)); |
1646 checkCreativeCustomEvent(o[0]); | 1646 checkCreativeCustomEvent(o[0]); |
1647 checkCreativeCustomEvent(o[1]); | 1647 checkCreativeCustomEvent(o[1]); |
1648 } | 1648 } |
1649 | 1649 |
1650 buildUnnamed293() { | 1650 buildUnnamed842() { |
1651 var o = new core.List<api.CreativeAsset>(); | 1651 var o = new core.List<api.CreativeAsset>(); |
1652 o.add(buildCreativeAsset()); | 1652 o.add(buildCreativeAsset()); |
1653 o.add(buildCreativeAsset()); | 1653 o.add(buildCreativeAsset()); |
1654 return o; | 1654 return o; |
1655 } | 1655 } |
1656 | 1656 |
1657 checkUnnamed293(core.List<api.CreativeAsset> o) { | 1657 checkUnnamed842(core.List<api.CreativeAsset> o) { |
1658 unittest.expect(o, unittest.hasLength(2)); | 1658 unittest.expect(o, unittest.hasLength(2)); |
1659 checkCreativeAsset(o[0]); | 1659 checkCreativeAsset(o[0]); |
1660 checkCreativeAsset(o[1]); | 1660 checkCreativeAsset(o[1]); |
1661 } | 1661 } |
1662 | 1662 |
1663 buildUnnamed294() { | 1663 buildUnnamed843() { |
1664 var o = new core.List<api.CreativeFieldAssignment>(); | 1664 var o = new core.List<api.CreativeFieldAssignment>(); |
1665 o.add(buildCreativeFieldAssignment()); | 1665 o.add(buildCreativeFieldAssignment()); |
1666 o.add(buildCreativeFieldAssignment()); | 1666 o.add(buildCreativeFieldAssignment()); |
1667 return o; | 1667 return o; |
1668 } | 1668 } |
1669 | 1669 |
1670 checkUnnamed294(core.List<api.CreativeFieldAssignment> o) { | 1670 checkUnnamed843(core.List<api.CreativeFieldAssignment> o) { |
1671 unittest.expect(o, unittest.hasLength(2)); | 1671 unittest.expect(o, unittest.hasLength(2)); |
1672 checkCreativeFieldAssignment(o[0]); | 1672 checkCreativeFieldAssignment(o[0]); |
1673 checkCreativeFieldAssignment(o[1]); | 1673 checkCreativeFieldAssignment(o[1]); |
1674 } | 1674 } |
1675 | 1675 |
1676 buildUnnamed295() { | 1676 buildUnnamed844() { |
1677 var o = new core.List<core.String>(); | 1677 var o = new core.List<core.String>(); |
1678 o.add("foo"); | 1678 o.add("foo"); |
1679 o.add("foo"); | 1679 o.add("foo"); |
1680 return o; | 1680 return o; |
1681 } | 1681 } |
1682 | 1682 |
1683 checkUnnamed295(core.List<core.String> o) { | 1683 checkUnnamed844(core.List<core.String> o) { |
1684 unittest.expect(o, unittest.hasLength(2)); | 1684 unittest.expect(o, unittest.hasLength(2)); |
1685 unittest.expect(o[0], unittest.equals('foo')); | 1685 unittest.expect(o[0], unittest.equals('foo')); |
1686 unittest.expect(o[1], unittest.equals('foo')); | 1686 unittest.expect(o[1], unittest.equals('foo')); |
1687 } | 1687 } |
1688 | 1688 |
1689 buildUnnamed296() { | 1689 buildUnnamed845() { |
1690 var o = new core.List<api.CreativeCustomEvent>(); | 1690 var o = new core.List<api.CreativeCustomEvent>(); |
1691 o.add(buildCreativeCustomEvent()); | 1691 o.add(buildCreativeCustomEvent()); |
1692 o.add(buildCreativeCustomEvent()); | 1692 o.add(buildCreativeCustomEvent()); |
1693 return o; | 1693 return o; |
1694 } | 1694 } |
1695 | 1695 |
1696 checkUnnamed296(core.List<api.CreativeCustomEvent> o) { | 1696 checkUnnamed845(core.List<api.CreativeCustomEvent> o) { |
1697 unittest.expect(o, unittest.hasLength(2)); | 1697 unittest.expect(o, unittest.hasLength(2)); |
1698 checkCreativeCustomEvent(o[0]); | 1698 checkCreativeCustomEvent(o[0]); |
1699 checkCreativeCustomEvent(o[1]); | 1699 checkCreativeCustomEvent(o[1]); |
1700 } | 1700 } |
1701 | 1701 |
1702 buildUnnamed297() { | 1702 buildUnnamed846() { |
1703 var o = new core.List<api.ThirdPartyTrackingUrl>(); | 1703 var o = new core.List<api.ThirdPartyTrackingUrl>(); |
1704 o.add(buildThirdPartyTrackingUrl()); | 1704 o.add(buildThirdPartyTrackingUrl()); |
1705 o.add(buildThirdPartyTrackingUrl()); | 1705 o.add(buildThirdPartyTrackingUrl()); |
1706 return o; | 1706 return o; |
1707 } | 1707 } |
1708 | 1708 |
1709 checkUnnamed297(core.List<api.ThirdPartyTrackingUrl> o) { | 1709 checkUnnamed846(core.List<api.ThirdPartyTrackingUrl> o) { |
1710 unittest.expect(o, unittest.hasLength(2)); | 1710 unittest.expect(o, unittest.hasLength(2)); |
1711 checkThirdPartyTrackingUrl(o[0]); | 1711 checkThirdPartyTrackingUrl(o[0]); |
1712 checkThirdPartyTrackingUrl(o[1]); | 1712 checkThirdPartyTrackingUrl(o[1]); |
1713 } | 1713 } |
1714 | 1714 |
1715 buildUnnamed298() { | 1715 buildUnnamed847() { |
1716 var o = new core.List<api.CreativeCustomEvent>(); | 1716 var o = new core.List<api.CreativeCustomEvent>(); |
1717 o.add(buildCreativeCustomEvent()); | 1717 o.add(buildCreativeCustomEvent()); |
1718 o.add(buildCreativeCustomEvent()); | 1718 o.add(buildCreativeCustomEvent()); |
1719 return o; | 1719 return o; |
1720 } | 1720 } |
1721 | 1721 |
1722 checkUnnamed298(core.List<api.CreativeCustomEvent> o) { | 1722 checkUnnamed847(core.List<api.CreativeCustomEvent> o) { |
1723 unittest.expect(o, unittest.hasLength(2)); | 1723 unittest.expect(o, unittest.hasLength(2)); |
1724 checkCreativeCustomEvent(o[0]); | 1724 checkCreativeCustomEvent(o[0]); |
1725 checkCreativeCustomEvent(o[1]); | 1725 checkCreativeCustomEvent(o[1]); |
1726 } | 1726 } |
1727 | 1727 |
1728 core.int buildCounterCreative = 0; | 1728 core.int buildCounterCreative = 0; |
1729 buildCreative() { | 1729 buildCreative() { |
1730 var o = new api.Creative(); | 1730 var o = new api.Creative(); |
1731 buildCounterCreative++; | 1731 buildCounterCreative++; |
1732 if (buildCounterCreative < 3) { | 1732 if (buildCounterCreative < 3) { |
1733 o.accountId = "foo"; | 1733 o.accountId = "foo"; |
1734 o.active = true; | 1734 o.active = true; |
1735 o.adParameters = "foo"; | 1735 o.adParameters = "foo"; |
1736 o.adTagKeys = buildUnnamed287(); | 1736 o.adTagKeys = buildUnnamed836(); |
1737 o.advertiserId = "foo"; | 1737 o.advertiserId = "foo"; |
1738 o.allowScriptAccess = true; | 1738 o.allowScriptAccess = true; |
1739 o.archived = true; | 1739 o.archived = true; |
1740 o.artworkType = "foo"; | 1740 o.artworkType = "foo"; |
1741 o.authoringTool = "foo"; | 1741 o.authoringTool = "foo"; |
1742 o.autoAdvanceImages = true; | 1742 o.autoAdvanceImages = true; |
1743 o.backgroundColor = "foo"; | 1743 o.backgroundColor = "foo"; |
1744 o.backupImageClickThroughUrl = "foo"; | 1744 o.backupImageClickThroughUrl = "foo"; |
1745 o.backupImageFeatures = buildUnnamed288(); | 1745 o.backupImageFeatures = buildUnnamed837(); |
1746 o.backupImageReportingLabel = "foo"; | 1746 o.backupImageReportingLabel = "foo"; |
1747 o.backupImageTargetWindow = buildTargetWindow(); | 1747 o.backupImageTargetWindow = buildTargetWindow(); |
1748 o.clickTags = buildUnnamed289(); | 1748 o.clickTags = buildUnnamed838(); |
1749 o.commercialId = "foo"; | 1749 o.commercialId = "foo"; |
1750 o.companionCreatives = buildUnnamed290(); | 1750 o.companionCreatives = buildUnnamed839(); |
1751 o.compatibility = buildUnnamed291(); | 1751 o.compatibility = buildUnnamed840(); |
1752 o.counterCustomEvents = buildUnnamed292(); | 1752 o.counterCustomEvents = buildUnnamed841(); |
1753 o.creativeAssets = buildUnnamed293(); | 1753 o.creativeAssets = buildUnnamed842(); |
1754 o.creativeFieldAssignments = buildUnnamed294(); | 1754 o.creativeFieldAssignments = buildUnnamed843(); |
1755 o.customKeyValues = buildUnnamed295(); | 1755 o.customKeyValues = buildUnnamed844(); |
1756 o.exitCustomEvents = buildUnnamed296(); | 1756 o.exitCustomEvents = buildUnnamed845(); |
1757 o.fsCommand = buildFsCommand(); | 1757 o.fsCommand = buildFsCommand(); |
1758 o.htmlCode = "foo"; | 1758 o.htmlCode = "foo"; |
1759 o.htmlCodeLocked = true; | 1759 o.htmlCodeLocked = true; |
1760 o.id = "foo"; | 1760 o.id = "foo"; |
1761 o.idDimensionValue = buildDimensionValue(); | 1761 o.idDimensionValue = buildDimensionValue(); |
1762 o.kind = "foo"; | 1762 o.kind = "foo"; |
1763 o.lastModifiedInfo = buildLastModifiedInfo(); | 1763 o.lastModifiedInfo = buildLastModifiedInfo(); |
1764 o.latestTraffickedCreativeId = "foo"; | 1764 o.latestTraffickedCreativeId = "foo"; |
1765 o.name = "foo"; | 1765 o.name = "foo"; |
1766 o.overrideCss = "foo"; | 1766 o.overrideCss = "foo"; |
1767 o.redirectUrl = "foo"; | 1767 o.redirectUrl = "foo"; |
1768 o.renderingId = "foo"; | 1768 o.renderingId = "foo"; |
1769 o.renderingIdDimensionValue = buildDimensionValue(); | 1769 o.renderingIdDimensionValue = buildDimensionValue(); |
1770 o.requiredFlashPluginVersion = "foo"; | 1770 o.requiredFlashPluginVersion = "foo"; |
1771 o.requiredFlashVersion = 42; | 1771 o.requiredFlashVersion = 42; |
1772 o.size = buildSize(); | 1772 o.size = buildSize(); |
1773 o.skippable = true; | 1773 o.skippable = true; |
1774 o.sslCompliant = true; | 1774 o.sslCompliant = true; |
1775 o.studioAdvertiserId = "foo"; | 1775 o.studioAdvertiserId = "foo"; |
1776 o.studioCreativeId = "foo"; | 1776 o.studioCreativeId = "foo"; |
1777 o.studioTraffickedCreativeId = "foo"; | 1777 o.studioTraffickedCreativeId = "foo"; |
1778 o.subaccountId = "foo"; | 1778 o.subaccountId = "foo"; |
1779 o.thirdPartyBackupImageImpressionsUrl = "foo"; | 1779 o.thirdPartyBackupImageImpressionsUrl = "foo"; |
1780 o.thirdPartyRichMediaImpressionsUrl = "foo"; | 1780 o.thirdPartyRichMediaImpressionsUrl = "foo"; |
1781 o.thirdPartyUrls = buildUnnamed297(); | 1781 o.thirdPartyUrls = buildUnnamed846(); |
1782 o.timerCustomEvents = buildUnnamed298(); | 1782 o.timerCustomEvents = buildUnnamed847(); |
1783 o.totalFileSize = "foo"; | 1783 o.totalFileSize = "foo"; |
1784 o.type = "foo"; | 1784 o.type = "foo"; |
1785 o.version = 42; | 1785 o.version = 42; |
1786 o.videoDescription = "foo"; | 1786 o.videoDescription = "foo"; |
1787 o.videoDuration = 42.0; | 1787 o.videoDuration = 42.0; |
1788 } | 1788 } |
1789 buildCounterCreative--; | 1789 buildCounterCreative--; |
1790 return o; | 1790 return o; |
1791 } | 1791 } |
1792 | 1792 |
1793 checkCreative(api.Creative o) { | 1793 checkCreative(api.Creative o) { |
1794 buildCounterCreative++; | 1794 buildCounterCreative++; |
1795 if (buildCounterCreative < 3) { | 1795 if (buildCounterCreative < 3) { |
1796 unittest.expect(o.accountId, unittest.equals('foo')); | 1796 unittest.expect(o.accountId, unittest.equals('foo')); |
1797 unittest.expect(o.active, unittest.isTrue); | 1797 unittest.expect(o.active, unittest.isTrue); |
1798 unittest.expect(o.adParameters, unittest.equals('foo')); | 1798 unittest.expect(o.adParameters, unittest.equals('foo')); |
1799 checkUnnamed287(o.adTagKeys); | 1799 checkUnnamed836(o.adTagKeys); |
1800 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1800 unittest.expect(o.advertiserId, unittest.equals('foo')); |
1801 unittest.expect(o.allowScriptAccess, unittest.isTrue); | 1801 unittest.expect(o.allowScriptAccess, unittest.isTrue); |
1802 unittest.expect(o.archived, unittest.isTrue); | 1802 unittest.expect(o.archived, unittest.isTrue); |
1803 unittest.expect(o.artworkType, unittest.equals('foo')); | 1803 unittest.expect(o.artworkType, unittest.equals('foo')); |
1804 unittest.expect(o.authoringTool, unittest.equals('foo')); | 1804 unittest.expect(o.authoringTool, unittest.equals('foo')); |
1805 unittest.expect(o.autoAdvanceImages, unittest.isTrue); | 1805 unittest.expect(o.autoAdvanceImages, unittest.isTrue); |
1806 unittest.expect(o.backgroundColor, unittest.equals('foo')); | 1806 unittest.expect(o.backgroundColor, unittest.equals('foo')); |
1807 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); | 1807 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); |
1808 checkUnnamed288(o.backupImageFeatures); | 1808 checkUnnamed837(o.backupImageFeatures); |
1809 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); | 1809 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); |
1810 checkTargetWindow(o.backupImageTargetWindow); | 1810 checkTargetWindow(o.backupImageTargetWindow); |
1811 checkUnnamed289(o.clickTags); | 1811 checkUnnamed838(o.clickTags); |
1812 unittest.expect(o.commercialId, unittest.equals('foo')); | 1812 unittest.expect(o.commercialId, unittest.equals('foo')); |
1813 checkUnnamed290(o.companionCreatives); | 1813 checkUnnamed839(o.companionCreatives); |
1814 checkUnnamed291(o.compatibility); | 1814 checkUnnamed840(o.compatibility); |
1815 checkUnnamed292(o.counterCustomEvents); | 1815 checkUnnamed841(o.counterCustomEvents); |
1816 checkUnnamed293(o.creativeAssets); | 1816 checkUnnamed842(o.creativeAssets); |
1817 checkUnnamed294(o.creativeFieldAssignments); | 1817 checkUnnamed843(o.creativeFieldAssignments); |
1818 checkUnnamed295(o.customKeyValues); | 1818 checkUnnamed844(o.customKeyValues); |
1819 checkUnnamed296(o.exitCustomEvents); | 1819 checkUnnamed845(o.exitCustomEvents); |
1820 checkFsCommand(o.fsCommand); | 1820 checkFsCommand(o.fsCommand); |
1821 unittest.expect(o.htmlCode, unittest.equals('foo')); | 1821 unittest.expect(o.htmlCode, unittest.equals('foo')); |
1822 unittest.expect(o.htmlCodeLocked, unittest.isTrue); | 1822 unittest.expect(o.htmlCodeLocked, unittest.isTrue); |
1823 unittest.expect(o.id, unittest.equals('foo')); | 1823 unittest.expect(o.id, unittest.equals('foo')); |
1824 checkDimensionValue(o.idDimensionValue); | 1824 checkDimensionValue(o.idDimensionValue); |
1825 unittest.expect(o.kind, unittest.equals('foo')); | 1825 unittest.expect(o.kind, unittest.equals('foo')); |
1826 checkLastModifiedInfo(o.lastModifiedInfo); | 1826 checkLastModifiedInfo(o.lastModifiedInfo); |
1827 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); | 1827 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); |
1828 unittest.expect(o.name, unittest.equals('foo')); | 1828 unittest.expect(o.name, unittest.equals('foo')); |
1829 unittest.expect(o.overrideCss, unittest.equals('foo')); | 1829 unittest.expect(o.overrideCss, unittest.equals('foo')); |
1830 unittest.expect(o.redirectUrl, unittest.equals('foo')); | 1830 unittest.expect(o.redirectUrl, unittest.equals('foo')); |
1831 unittest.expect(o.renderingId, unittest.equals('foo')); | 1831 unittest.expect(o.renderingId, unittest.equals('foo')); |
1832 checkDimensionValue(o.renderingIdDimensionValue); | 1832 checkDimensionValue(o.renderingIdDimensionValue); |
1833 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); | 1833 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); |
1834 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); | 1834 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); |
1835 checkSize(o.size); | 1835 checkSize(o.size); |
1836 unittest.expect(o.skippable, unittest.isTrue); | 1836 unittest.expect(o.skippable, unittest.isTrue); |
1837 unittest.expect(o.sslCompliant, unittest.isTrue); | 1837 unittest.expect(o.sslCompliant, unittest.isTrue); |
1838 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); | 1838 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); |
1839 unittest.expect(o.studioCreativeId, unittest.equals('foo')); | 1839 unittest.expect(o.studioCreativeId, unittest.equals('foo')); |
1840 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); | 1840 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); |
1841 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1841 unittest.expect(o.subaccountId, unittest.equals('foo')); |
1842 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); | 1842 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); |
1843 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; | 1843 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; |
1844 checkUnnamed297(o.thirdPartyUrls); | 1844 checkUnnamed846(o.thirdPartyUrls); |
1845 checkUnnamed298(o.timerCustomEvents); | 1845 checkUnnamed847(o.timerCustomEvents); |
1846 unittest.expect(o.totalFileSize, unittest.equals('foo')); | 1846 unittest.expect(o.totalFileSize, unittest.equals('foo')); |
1847 unittest.expect(o.type, unittest.equals('foo')); | 1847 unittest.expect(o.type, unittest.equals('foo')); |
1848 unittest.expect(o.version, unittest.equals(42)); | 1848 unittest.expect(o.version, unittest.equals(42)); |
1849 unittest.expect(o.videoDescription, unittest.equals('foo')); | 1849 unittest.expect(o.videoDescription, unittest.equals('foo')); |
1850 unittest.expect(o.videoDuration, unittest.equals(42.0)); | 1850 unittest.expect(o.videoDuration, unittest.equals(42.0)); |
1851 } | 1851 } |
1852 buildCounterCreative--; | 1852 buildCounterCreative--; |
1853 } | 1853 } |
1854 | 1854 |
1855 buildUnnamed299() { | 1855 buildUnnamed848() { |
1856 var o = new core.List<core.String>(); | 1856 var o = new core.List<core.String>(); |
1857 o.add("foo"); | 1857 o.add("foo"); |
1858 o.add("foo"); | 1858 o.add("foo"); |
1859 return o; | 1859 return o; |
1860 } | 1860 } |
1861 | 1861 |
1862 checkUnnamed299(core.List<core.String> o) { | 1862 checkUnnamed848(core.List<core.String> o) { |
1863 unittest.expect(o, unittest.hasLength(2)); | 1863 unittest.expect(o, unittest.hasLength(2)); |
1864 unittest.expect(o[0], unittest.equals('foo')); | 1864 unittest.expect(o[0], unittest.equals('foo')); |
1865 unittest.expect(o[1], unittest.equals('foo')); | 1865 unittest.expect(o[1], unittest.equals('foo')); |
1866 } | 1866 } |
1867 | 1867 |
1868 core.int buildCounterCreativeAsset = 0; | 1868 core.int buildCounterCreativeAsset = 0; |
1869 buildCreativeAsset() { | 1869 buildCreativeAsset() { |
1870 var o = new api.CreativeAsset(); | 1870 var o = new api.CreativeAsset(); |
1871 buildCounterCreativeAsset++; | 1871 buildCounterCreativeAsset++; |
1872 if (buildCounterCreativeAsset < 3) { | 1872 if (buildCounterCreativeAsset < 3) { |
1873 o.actionScript3 = true; | 1873 o.actionScript3 = true; |
1874 o.active = true; | 1874 o.active = true; |
1875 o.alignment = "foo"; | 1875 o.alignment = "foo"; |
1876 o.artworkType = "foo"; | 1876 o.artworkType = "foo"; |
1877 o.assetIdentifier = buildCreativeAssetId(); | 1877 o.assetIdentifier = buildCreativeAssetId(); |
1878 o.backupImageExit = buildCreativeCustomEvent(); | 1878 o.backupImageExit = buildCreativeCustomEvent(); |
1879 o.bitRate = 42; | 1879 o.bitRate = 42; |
1880 o.childAssetType = "foo"; | 1880 o.childAssetType = "foo"; |
1881 o.collapsedSize = buildSize(); | 1881 o.collapsedSize = buildSize(); |
1882 o.customStartTimeValue = 42; | 1882 o.customStartTimeValue = 42; |
1883 o.detectedFeatures = buildUnnamed299(); | 1883 o.detectedFeatures = buildUnnamed848(); |
1884 o.displayType = "foo"; | 1884 o.displayType = "foo"; |
1885 o.duration = 42; | 1885 o.duration = 42; |
1886 o.durationType = "foo"; | 1886 o.durationType = "foo"; |
1887 o.expandedDimension = buildSize(); | 1887 o.expandedDimension = buildSize(); |
1888 o.fileSize = "foo"; | 1888 o.fileSize = "foo"; |
1889 o.flashVersion = 42; | 1889 o.flashVersion = 42; |
1890 o.hideFlashObjects = true; | 1890 o.hideFlashObjects = true; |
1891 o.hideSelectionBoxes = true; | 1891 o.hideSelectionBoxes = true; |
1892 o.horizontallyLocked = true; | 1892 o.horizontallyLocked = true; |
1893 o.id = "foo"; | 1893 o.id = "foo"; |
(...skipping 29 matching lines...) Expand all Loading... |
1923 unittest.expect(o.actionScript3, unittest.isTrue); | 1923 unittest.expect(o.actionScript3, unittest.isTrue); |
1924 unittest.expect(o.active, unittest.isTrue); | 1924 unittest.expect(o.active, unittest.isTrue); |
1925 unittest.expect(o.alignment, unittest.equals('foo')); | 1925 unittest.expect(o.alignment, unittest.equals('foo')); |
1926 unittest.expect(o.artworkType, unittest.equals('foo')); | 1926 unittest.expect(o.artworkType, unittest.equals('foo')); |
1927 checkCreativeAssetId(o.assetIdentifier); | 1927 checkCreativeAssetId(o.assetIdentifier); |
1928 checkCreativeCustomEvent(o.backupImageExit); | 1928 checkCreativeCustomEvent(o.backupImageExit); |
1929 unittest.expect(o.bitRate, unittest.equals(42)); | 1929 unittest.expect(o.bitRate, unittest.equals(42)); |
1930 unittest.expect(o.childAssetType, unittest.equals('foo')); | 1930 unittest.expect(o.childAssetType, unittest.equals('foo')); |
1931 checkSize(o.collapsedSize); | 1931 checkSize(o.collapsedSize); |
1932 unittest.expect(o.customStartTimeValue, unittest.equals(42)); | 1932 unittest.expect(o.customStartTimeValue, unittest.equals(42)); |
1933 checkUnnamed299(o.detectedFeatures); | 1933 checkUnnamed848(o.detectedFeatures); |
1934 unittest.expect(o.displayType, unittest.equals('foo')); | 1934 unittest.expect(o.displayType, unittest.equals('foo')); |
1935 unittest.expect(o.duration, unittest.equals(42)); | 1935 unittest.expect(o.duration, unittest.equals(42)); |
1936 unittest.expect(o.durationType, unittest.equals('foo')); | 1936 unittest.expect(o.durationType, unittest.equals('foo')); |
1937 checkSize(o.expandedDimension); | 1937 checkSize(o.expandedDimension); |
1938 unittest.expect(o.fileSize, unittest.equals('foo')); | 1938 unittest.expect(o.fileSize, unittest.equals('foo')); |
1939 unittest.expect(o.flashVersion, unittest.equals(42)); | 1939 unittest.expect(o.flashVersion, unittest.equals(42)); |
1940 unittest.expect(o.hideFlashObjects, unittest.isTrue); | 1940 unittest.expect(o.hideFlashObjects, unittest.isTrue); |
1941 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); | 1941 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); |
1942 unittest.expect(o.horizontallyLocked, unittest.isTrue); | 1942 unittest.expect(o.horizontallyLocked, unittest.isTrue); |
1943 unittest.expect(o.id, unittest.equals('foo')); | 1943 unittest.expect(o.id, unittest.equals('foo')); |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1980 | 1980 |
1981 checkCreativeAssetId(api.CreativeAssetId o) { | 1981 checkCreativeAssetId(api.CreativeAssetId o) { |
1982 buildCounterCreativeAssetId++; | 1982 buildCounterCreativeAssetId++; |
1983 if (buildCounterCreativeAssetId < 3) { | 1983 if (buildCounterCreativeAssetId < 3) { |
1984 unittest.expect(o.name, unittest.equals('foo')); | 1984 unittest.expect(o.name, unittest.equals('foo')); |
1985 unittest.expect(o.type, unittest.equals('foo')); | 1985 unittest.expect(o.type, unittest.equals('foo')); |
1986 } | 1986 } |
1987 buildCounterCreativeAssetId--; | 1987 buildCounterCreativeAssetId--; |
1988 } | 1988 } |
1989 | 1989 |
1990 buildUnnamed300() { | 1990 buildUnnamed849() { |
1991 var o = new core.List<api.ClickTag>(); | 1991 var o = new core.List<api.ClickTag>(); |
1992 o.add(buildClickTag()); | 1992 o.add(buildClickTag()); |
1993 o.add(buildClickTag()); | 1993 o.add(buildClickTag()); |
1994 return o; | 1994 return o; |
1995 } | 1995 } |
1996 | 1996 |
1997 checkUnnamed300(core.List<api.ClickTag> o) { | 1997 checkUnnamed849(core.List<api.ClickTag> o) { |
1998 unittest.expect(o, unittest.hasLength(2)); | 1998 unittest.expect(o, unittest.hasLength(2)); |
1999 checkClickTag(o[0]); | 1999 checkClickTag(o[0]); |
2000 checkClickTag(o[1]); | 2000 checkClickTag(o[1]); |
2001 } | 2001 } |
2002 | 2002 |
2003 buildUnnamed301() { | 2003 buildUnnamed850() { |
2004 var o = new core.List<core.String>(); | 2004 var o = new core.List<core.String>(); |
2005 o.add("foo"); | 2005 o.add("foo"); |
2006 o.add("foo"); | 2006 o.add("foo"); |
2007 return o; | 2007 return o; |
2008 } | 2008 } |
2009 | 2009 |
2010 checkUnnamed301(core.List<core.String> o) { | 2010 checkUnnamed850(core.List<core.String> o) { |
2011 unittest.expect(o, unittest.hasLength(2)); | 2011 unittest.expect(o, unittest.hasLength(2)); |
2012 unittest.expect(o[0], unittest.equals('foo')); | 2012 unittest.expect(o[0], unittest.equals('foo')); |
2013 unittest.expect(o[1], unittest.equals('foo')); | 2013 unittest.expect(o[1], unittest.equals('foo')); |
2014 } | 2014 } |
2015 | 2015 |
2016 buildUnnamed302() { | 2016 buildUnnamed851() { |
2017 var o = new core.List<core.String>(); | 2017 var o = new core.List<core.String>(); |
2018 o.add("foo"); | 2018 o.add("foo"); |
2019 o.add("foo"); | 2019 o.add("foo"); |
2020 return o; | 2020 return o; |
2021 } | 2021 } |
2022 | 2022 |
2023 checkUnnamed302(core.List<core.String> o) { | 2023 checkUnnamed851(core.List<core.String> o) { |
2024 unittest.expect(o, unittest.hasLength(2)); | 2024 unittest.expect(o, unittest.hasLength(2)); |
2025 unittest.expect(o[0], unittest.equals('foo')); | 2025 unittest.expect(o[0], unittest.equals('foo')); |
2026 unittest.expect(o[1], unittest.equals('foo')); | 2026 unittest.expect(o[1], unittest.equals('foo')); |
2027 } | 2027 } |
2028 | 2028 |
2029 core.int buildCounterCreativeAssetMetadata = 0; | 2029 core.int buildCounterCreativeAssetMetadata = 0; |
2030 buildCreativeAssetMetadata() { | 2030 buildCreativeAssetMetadata() { |
2031 var o = new api.CreativeAssetMetadata(); | 2031 var o = new api.CreativeAssetMetadata(); |
2032 buildCounterCreativeAssetMetadata++; | 2032 buildCounterCreativeAssetMetadata++; |
2033 if (buildCounterCreativeAssetMetadata < 3) { | 2033 if (buildCounterCreativeAssetMetadata < 3) { |
2034 o.assetIdentifier = buildCreativeAssetId(); | 2034 o.assetIdentifier = buildCreativeAssetId(); |
2035 o.clickTags = buildUnnamed300(); | 2035 o.clickTags = buildUnnamed849(); |
2036 o.detectedFeatures = buildUnnamed301(); | 2036 o.detectedFeatures = buildUnnamed850(); |
2037 o.kind = "foo"; | 2037 o.kind = "foo"; |
2038 o.warnedValidationRules = buildUnnamed302(); | 2038 o.warnedValidationRules = buildUnnamed851(); |
2039 } | 2039 } |
2040 buildCounterCreativeAssetMetadata--; | 2040 buildCounterCreativeAssetMetadata--; |
2041 return o; | 2041 return o; |
2042 } | 2042 } |
2043 | 2043 |
2044 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { | 2044 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { |
2045 buildCounterCreativeAssetMetadata++; | 2045 buildCounterCreativeAssetMetadata++; |
2046 if (buildCounterCreativeAssetMetadata < 3) { | 2046 if (buildCounterCreativeAssetMetadata < 3) { |
2047 checkCreativeAssetId(o.assetIdentifier); | 2047 checkCreativeAssetId(o.assetIdentifier); |
2048 checkUnnamed300(o.clickTags); | 2048 checkUnnamed849(o.clickTags); |
2049 checkUnnamed301(o.detectedFeatures); | 2049 checkUnnamed850(o.detectedFeatures); |
2050 unittest.expect(o.kind, unittest.equals('foo')); | 2050 unittest.expect(o.kind, unittest.equals('foo')); |
2051 checkUnnamed302(o.warnedValidationRules); | 2051 checkUnnamed851(o.warnedValidationRules); |
2052 } | 2052 } |
2053 buildCounterCreativeAssetMetadata--; | 2053 buildCounterCreativeAssetMetadata--; |
2054 } | 2054 } |
2055 | 2055 |
2056 buildUnnamed303() { | 2056 buildUnnamed852() { |
2057 var o = new core.List<api.CompanionClickThroughOverride>(); | 2057 var o = new core.List<api.CompanionClickThroughOverride>(); |
2058 o.add(buildCompanionClickThroughOverride()); | 2058 o.add(buildCompanionClickThroughOverride()); |
2059 o.add(buildCompanionClickThroughOverride()); | 2059 o.add(buildCompanionClickThroughOverride()); |
2060 return o; | 2060 return o; |
2061 } | 2061 } |
2062 | 2062 |
2063 checkUnnamed303(core.List<api.CompanionClickThroughOverride> o) { | 2063 checkUnnamed852(core.List<api.CompanionClickThroughOverride> o) { |
2064 unittest.expect(o, unittest.hasLength(2)); | 2064 unittest.expect(o, unittest.hasLength(2)); |
2065 checkCompanionClickThroughOverride(o[0]); | 2065 checkCompanionClickThroughOverride(o[0]); |
2066 checkCompanionClickThroughOverride(o[1]); | 2066 checkCompanionClickThroughOverride(o[1]); |
2067 } | 2067 } |
2068 | 2068 |
2069 buildUnnamed304() { | 2069 buildUnnamed853() { |
2070 var o = new core.List<api.CreativeGroupAssignment>(); | 2070 var o = new core.List<api.CreativeGroupAssignment>(); |
2071 o.add(buildCreativeGroupAssignment()); | 2071 o.add(buildCreativeGroupAssignment()); |
2072 o.add(buildCreativeGroupAssignment()); | 2072 o.add(buildCreativeGroupAssignment()); |
2073 return o; | 2073 return o; |
2074 } | 2074 } |
2075 | 2075 |
2076 checkUnnamed304(core.List<api.CreativeGroupAssignment> o) { | 2076 checkUnnamed853(core.List<api.CreativeGroupAssignment> o) { |
2077 unittest.expect(o, unittest.hasLength(2)); | 2077 unittest.expect(o, unittest.hasLength(2)); |
2078 checkCreativeGroupAssignment(o[0]); | 2078 checkCreativeGroupAssignment(o[0]); |
2079 checkCreativeGroupAssignment(o[1]); | 2079 checkCreativeGroupAssignment(o[1]); |
2080 } | 2080 } |
2081 | 2081 |
2082 buildUnnamed305() { | 2082 buildUnnamed854() { |
2083 var o = new core.List<api.RichMediaExitOverride>(); | 2083 var o = new core.List<api.RichMediaExitOverride>(); |
2084 o.add(buildRichMediaExitOverride()); | 2084 o.add(buildRichMediaExitOverride()); |
2085 o.add(buildRichMediaExitOverride()); | 2085 o.add(buildRichMediaExitOverride()); |
2086 return o; | 2086 return o; |
2087 } | 2087 } |
2088 | 2088 |
2089 checkUnnamed305(core.List<api.RichMediaExitOverride> o) { | 2089 checkUnnamed854(core.List<api.RichMediaExitOverride> o) { |
2090 unittest.expect(o, unittest.hasLength(2)); | 2090 unittest.expect(o, unittest.hasLength(2)); |
2091 checkRichMediaExitOverride(o[0]); | 2091 checkRichMediaExitOverride(o[0]); |
2092 checkRichMediaExitOverride(o[1]); | 2092 checkRichMediaExitOverride(o[1]); |
2093 } | 2093 } |
2094 | 2094 |
2095 core.int buildCounterCreativeAssignment = 0; | 2095 core.int buildCounterCreativeAssignment = 0; |
2096 buildCreativeAssignment() { | 2096 buildCreativeAssignment() { |
2097 var o = new api.CreativeAssignment(); | 2097 var o = new api.CreativeAssignment(); |
2098 buildCounterCreativeAssignment++; | 2098 buildCounterCreativeAssignment++; |
2099 if (buildCounterCreativeAssignment < 3) { | 2099 if (buildCounterCreativeAssignment < 3) { |
2100 o.active = true; | 2100 o.active = true; |
2101 o.applyEventTags = true; | 2101 o.applyEventTags = true; |
2102 o.clickThroughUrl = buildClickThroughUrl(); | 2102 o.clickThroughUrl = buildClickThroughUrl(); |
2103 o.companionCreativeOverrides = buildUnnamed303(); | 2103 o.companionCreativeOverrides = buildUnnamed852(); |
2104 o.creativeGroupAssignments = buildUnnamed304(); | 2104 o.creativeGroupAssignments = buildUnnamed853(); |
2105 o.creativeId = "foo"; | 2105 o.creativeId = "foo"; |
2106 o.creativeIdDimensionValue = buildDimensionValue(); | 2106 o.creativeIdDimensionValue = buildDimensionValue(); |
2107 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2107 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); |
2108 o.richMediaExitOverrides = buildUnnamed305(); | 2108 o.richMediaExitOverrides = buildUnnamed854(); |
2109 o.sequence = 42; | 2109 o.sequence = 42; |
2110 o.sslCompliant = true; | 2110 o.sslCompliant = true; |
2111 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2111 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
2112 o.weight = 42; | 2112 o.weight = 42; |
2113 } | 2113 } |
2114 buildCounterCreativeAssignment--; | 2114 buildCounterCreativeAssignment--; |
2115 return o; | 2115 return o; |
2116 } | 2116 } |
2117 | 2117 |
2118 checkCreativeAssignment(api.CreativeAssignment o) { | 2118 checkCreativeAssignment(api.CreativeAssignment o) { |
2119 buildCounterCreativeAssignment++; | 2119 buildCounterCreativeAssignment++; |
2120 if (buildCounterCreativeAssignment < 3) { | 2120 if (buildCounterCreativeAssignment < 3) { |
2121 unittest.expect(o.active, unittest.isTrue); | 2121 unittest.expect(o.active, unittest.isTrue); |
2122 unittest.expect(o.applyEventTags, unittest.isTrue); | 2122 unittest.expect(o.applyEventTags, unittest.isTrue); |
2123 checkClickThroughUrl(o.clickThroughUrl); | 2123 checkClickThroughUrl(o.clickThroughUrl); |
2124 checkUnnamed303(o.companionCreativeOverrides); | 2124 checkUnnamed852(o.companionCreativeOverrides); |
2125 checkUnnamed304(o.creativeGroupAssignments); | 2125 checkUnnamed853(o.creativeGroupAssignments); |
2126 unittest.expect(o.creativeId, unittest.equals('foo')); | 2126 unittest.expect(o.creativeId, unittest.equals('foo')); |
2127 checkDimensionValue(o.creativeIdDimensionValue); | 2127 checkDimensionValue(o.creativeIdDimensionValue); |
2128 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2128 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
2129 checkUnnamed305(o.richMediaExitOverrides); | 2129 checkUnnamed854(o.richMediaExitOverrides); |
2130 unittest.expect(o.sequence, unittest.equals(42)); | 2130 unittest.expect(o.sequence, unittest.equals(42)); |
2131 unittest.expect(o.sslCompliant, unittest.isTrue); | 2131 unittest.expect(o.sslCompliant, unittest.isTrue); |
2132 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 2132 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
2133 unittest.expect(o.weight, unittest.equals(42)); | 2133 unittest.expect(o.weight, unittest.equals(42)); |
2134 } | 2134 } |
2135 buildCounterCreativeAssignment--; | 2135 buildCounterCreativeAssignment--; |
2136 } | 2136 } |
2137 | 2137 |
2138 core.int buildCounterCreativeCustomEvent = 0; | 2138 core.int buildCounterCreativeCustomEvent = 0; |
2139 buildCreativeCustomEvent() { | 2139 buildCreativeCustomEvent() { |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2240 checkCreativeFieldValue(api.CreativeFieldValue o) { | 2240 checkCreativeFieldValue(api.CreativeFieldValue o) { |
2241 buildCounterCreativeFieldValue++; | 2241 buildCounterCreativeFieldValue++; |
2242 if (buildCounterCreativeFieldValue < 3) { | 2242 if (buildCounterCreativeFieldValue < 3) { |
2243 unittest.expect(o.id, unittest.equals('foo')); | 2243 unittest.expect(o.id, unittest.equals('foo')); |
2244 unittest.expect(o.kind, unittest.equals('foo')); | 2244 unittest.expect(o.kind, unittest.equals('foo')); |
2245 unittest.expect(o.value, unittest.equals('foo')); | 2245 unittest.expect(o.value, unittest.equals('foo')); |
2246 } | 2246 } |
2247 buildCounterCreativeFieldValue--; | 2247 buildCounterCreativeFieldValue--; |
2248 } | 2248 } |
2249 | 2249 |
2250 buildUnnamed306() { | 2250 buildUnnamed855() { |
2251 var o = new core.List<api.CreativeFieldValue>(); | 2251 var o = new core.List<api.CreativeFieldValue>(); |
2252 o.add(buildCreativeFieldValue()); | 2252 o.add(buildCreativeFieldValue()); |
2253 o.add(buildCreativeFieldValue()); | 2253 o.add(buildCreativeFieldValue()); |
2254 return o; | 2254 return o; |
2255 } | 2255 } |
2256 | 2256 |
2257 checkUnnamed306(core.List<api.CreativeFieldValue> o) { | 2257 checkUnnamed855(core.List<api.CreativeFieldValue> o) { |
2258 unittest.expect(o, unittest.hasLength(2)); | 2258 unittest.expect(o, unittest.hasLength(2)); |
2259 checkCreativeFieldValue(o[0]); | 2259 checkCreativeFieldValue(o[0]); |
2260 checkCreativeFieldValue(o[1]); | 2260 checkCreativeFieldValue(o[1]); |
2261 } | 2261 } |
2262 | 2262 |
2263 core.int buildCounterCreativeFieldValuesListResponse = 0; | 2263 core.int buildCounterCreativeFieldValuesListResponse = 0; |
2264 buildCreativeFieldValuesListResponse() { | 2264 buildCreativeFieldValuesListResponse() { |
2265 var o = new api.CreativeFieldValuesListResponse(); | 2265 var o = new api.CreativeFieldValuesListResponse(); |
2266 buildCounterCreativeFieldValuesListResponse++; | 2266 buildCounterCreativeFieldValuesListResponse++; |
2267 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2267 if (buildCounterCreativeFieldValuesListResponse < 3) { |
2268 o.creativeFieldValues = buildUnnamed306(); | 2268 o.creativeFieldValues = buildUnnamed855(); |
2269 o.kind = "foo"; | 2269 o.kind = "foo"; |
2270 o.nextPageToken = "foo"; | 2270 o.nextPageToken = "foo"; |
2271 } | 2271 } |
2272 buildCounterCreativeFieldValuesListResponse--; | 2272 buildCounterCreativeFieldValuesListResponse--; |
2273 return o; | 2273 return o; |
2274 } | 2274 } |
2275 | 2275 |
2276 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { | 2276 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { |
2277 buildCounterCreativeFieldValuesListResponse++; | 2277 buildCounterCreativeFieldValuesListResponse++; |
2278 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2278 if (buildCounterCreativeFieldValuesListResponse < 3) { |
2279 checkUnnamed306(o.creativeFieldValues); | 2279 checkUnnamed855(o.creativeFieldValues); |
2280 unittest.expect(o.kind, unittest.equals('foo')); | 2280 unittest.expect(o.kind, unittest.equals('foo')); |
2281 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2281 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2282 } | 2282 } |
2283 buildCounterCreativeFieldValuesListResponse--; | 2283 buildCounterCreativeFieldValuesListResponse--; |
2284 } | 2284 } |
2285 | 2285 |
2286 buildUnnamed307() { | 2286 buildUnnamed856() { |
2287 var o = new core.List<api.CreativeField>(); | 2287 var o = new core.List<api.CreativeField>(); |
2288 o.add(buildCreativeField()); | 2288 o.add(buildCreativeField()); |
2289 o.add(buildCreativeField()); | 2289 o.add(buildCreativeField()); |
2290 return o; | 2290 return o; |
2291 } | 2291 } |
2292 | 2292 |
2293 checkUnnamed307(core.List<api.CreativeField> o) { | 2293 checkUnnamed856(core.List<api.CreativeField> o) { |
2294 unittest.expect(o, unittest.hasLength(2)); | 2294 unittest.expect(o, unittest.hasLength(2)); |
2295 checkCreativeField(o[0]); | 2295 checkCreativeField(o[0]); |
2296 checkCreativeField(o[1]); | 2296 checkCreativeField(o[1]); |
2297 } | 2297 } |
2298 | 2298 |
2299 core.int buildCounterCreativeFieldsListResponse = 0; | 2299 core.int buildCounterCreativeFieldsListResponse = 0; |
2300 buildCreativeFieldsListResponse() { | 2300 buildCreativeFieldsListResponse() { |
2301 var o = new api.CreativeFieldsListResponse(); | 2301 var o = new api.CreativeFieldsListResponse(); |
2302 buildCounterCreativeFieldsListResponse++; | 2302 buildCounterCreativeFieldsListResponse++; |
2303 if (buildCounterCreativeFieldsListResponse < 3) { | 2303 if (buildCounterCreativeFieldsListResponse < 3) { |
2304 o.creativeFields = buildUnnamed307(); | 2304 o.creativeFields = buildUnnamed856(); |
2305 o.kind = "foo"; | 2305 o.kind = "foo"; |
2306 o.nextPageToken = "foo"; | 2306 o.nextPageToken = "foo"; |
2307 } | 2307 } |
2308 buildCounterCreativeFieldsListResponse--; | 2308 buildCounterCreativeFieldsListResponse--; |
2309 return o; | 2309 return o; |
2310 } | 2310 } |
2311 | 2311 |
2312 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { | 2312 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { |
2313 buildCounterCreativeFieldsListResponse++; | 2313 buildCounterCreativeFieldsListResponse++; |
2314 if (buildCounterCreativeFieldsListResponse < 3) { | 2314 if (buildCounterCreativeFieldsListResponse < 3) { |
2315 checkUnnamed307(o.creativeFields); | 2315 checkUnnamed856(o.creativeFields); |
2316 unittest.expect(o.kind, unittest.equals('foo')); | 2316 unittest.expect(o.kind, unittest.equals('foo')); |
2317 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2317 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2318 } | 2318 } |
2319 buildCounterCreativeFieldsListResponse--; | 2319 buildCounterCreativeFieldsListResponse--; |
2320 } | 2320 } |
2321 | 2321 |
2322 core.int buildCounterCreativeGroup = 0; | 2322 core.int buildCounterCreativeGroup = 0; |
2323 buildCreativeGroup() { | 2323 buildCreativeGroup() { |
2324 var o = new api.CreativeGroup(); | 2324 var o = new api.CreativeGroup(); |
2325 buildCounterCreativeGroup++; | 2325 buildCounterCreativeGroup++; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2366 | 2366 |
2367 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { | 2367 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { |
2368 buildCounterCreativeGroupAssignment++; | 2368 buildCounterCreativeGroupAssignment++; |
2369 if (buildCounterCreativeGroupAssignment < 3) { | 2369 if (buildCounterCreativeGroupAssignment < 3) { |
2370 unittest.expect(o.creativeGroupId, unittest.equals('foo')); | 2370 unittest.expect(o.creativeGroupId, unittest.equals('foo')); |
2371 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); | 2371 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); |
2372 } | 2372 } |
2373 buildCounterCreativeGroupAssignment--; | 2373 buildCounterCreativeGroupAssignment--; |
2374 } | 2374 } |
2375 | 2375 |
2376 buildUnnamed308() { | 2376 buildUnnamed857() { |
2377 var o = new core.List<api.CreativeGroup>(); | 2377 var o = new core.List<api.CreativeGroup>(); |
2378 o.add(buildCreativeGroup()); | 2378 o.add(buildCreativeGroup()); |
2379 o.add(buildCreativeGroup()); | 2379 o.add(buildCreativeGroup()); |
2380 return o; | 2380 return o; |
2381 } | 2381 } |
2382 | 2382 |
2383 checkUnnamed308(core.List<api.CreativeGroup> o) { | 2383 checkUnnamed857(core.List<api.CreativeGroup> o) { |
2384 unittest.expect(o, unittest.hasLength(2)); | 2384 unittest.expect(o, unittest.hasLength(2)); |
2385 checkCreativeGroup(o[0]); | 2385 checkCreativeGroup(o[0]); |
2386 checkCreativeGroup(o[1]); | 2386 checkCreativeGroup(o[1]); |
2387 } | 2387 } |
2388 | 2388 |
2389 core.int buildCounterCreativeGroupsListResponse = 0; | 2389 core.int buildCounterCreativeGroupsListResponse = 0; |
2390 buildCreativeGroupsListResponse() { | 2390 buildCreativeGroupsListResponse() { |
2391 var o = new api.CreativeGroupsListResponse(); | 2391 var o = new api.CreativeGroupsListResponse(); |
2392 buildCounterCreativeGroupsListResponse++; | 2392 buildCounterCreativeGroupsListResponse++; |
2393 if (buildCounterCreativeGroupsListResponse < 3) { | 2393 if (buildCounterCreativeGroupsListResponse < 3) { |
2394 o.creativeGroups = buildUnnamed308(); | 2394 o.creativeGroups = buildUnnamed857(); |
2395 o.kind = "foo"; | 2395 o.kind = "foo"; |
2396 o.nextPageToken = "foo"; | 2396 o.nextPageToken = "foo"; |
2397 } | 2397 } |
2398 buildCounterCreativeGroupsListResponse--; | 2398 buildCounterCreativeGroupsListResponse--; |
2399 return o; | 2399 return o; |
2400 } | 2400 } |
2401 | 2401 |
2402 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { | 2402 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { |
2403 buildCounterCreativeGroupsListResponse++; | 2403 buildCounterCreativeGroupsListResponse++; |
2404 if (buildCounterCreativeGroupsListResponse < 3) { | 2404 if (buildCounterCreativeGroupsListResponse < 3) { |
2405 checkUnnamed308(o.creativeGroups); | 2405 checkUnnamed857(o.creativeGroups); |
2406 unittest.expect(o.kind, unittest.equals('foo')); | 2406 unittest.expect(o.kind, unittest.equals('foo')); |
2407 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2407 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2408 } | 2408 } |
2409 buildCounterCreativeGroupsListResponse--; | 2409 buildCounterCreativeGroupsListResponse--; |
2410 } | 2410 } |
2411 | 2411 |
2412 buildUnnamed309() { | 2412 buildUnnamed858() { |
2413 var o = new core.List<api.OptimizationActivity>(); | 2413 var o = new core.List<api.OptimizationActivity>(); |
2414 o.add(buildOptimizationActivity()); | 2414 o.add(buildOptimizationActivity()); |
2415 o.add(buildOptimizationActivity()); | 2415 o.add(buildOptimizationActivity()); |
2416 return o; | 2416 return o; |
2417 } | 2417 } |
2418 | 2418 |
2419 checkUnnamed309(core.List<api.OptimizationActivity> o) { | 2419 checkUnnamed858(core.List<api.OptimizationActivity> o) { |
2420 unittest.expect(o, unittest.hasLength(2)); | 2420 unittest.expect(o, unittest.hasLength(2)); |
2421 checkOptimizationActivity(o[0]); | 2421 checkOptimizationActivity(o[0]); |
2422 checkOptimizationActivity(o[1]); | 2422 checkOptimizationActivity(o[1]); |
2423 } | 2423 } |
2424 | 2424 |
2425 core.int buildCounterCreativeOptimizationConfiguration = 0; | 2425 core.int buildCounterCreativeOptimizationConfiguration = 0; |
2426 buildCreativeOptimizationConfiguration() { | 2426 buildCreativeOptimizationConfiguration() { |
2427 var o = new api.CreativeOptimizationConfiguration(); | 2427 var o = new api.CreativeOptimizationConfiguration(); |
2428 buildCounterCreativeOptimizationConfiguration++; | 2428 buildCounterCreativeOptimizationConfiguration++; |
2429 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2429 if (buildCounterCreativeOptimizationConfiguration < 3) { |
2430 o.id = "foo"; | 2430 o.id = "foo"; |
2431 o.name = "foo"; | 2431 o.name = "foo"; |
2432 o.optimizationActivitys = buildUnnamed309(); | 2432 o.optimizationActivitys = buildUnnamed858(); |
2433 o.optimizationModel = "foo"; | 2433 o.optimizationModel = "foo"; |
2434 } | 2434 } |
2435 buildCounterCreativeOptimizationConfiguration--; | 2435 buildCounterCreativeOptimizationConfiguration--; |
2436 return o; | 2436 return o; |
2437 } | 2437 } |
2438 | 2438 |
2439 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ | 2439 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ |
2440 buildCounterCreativeOptimizationConfiguration++; | 2440 buildCounterCreativeOptimizationConfiguration++; |
2441 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2441 if (buildCounterCreativeOptimizationConfiguration < 3) { |
2442 unittest.expect(o.id, unittest.equals('foo')); | 2442 unittest.expect(o.id, unittest.equals('foo')); |
2443 unittest.expect(o.name, unittest.equals('foo')); | 2443 unittest.expect(o.name, unittest.equals('foo')); |
2444 checkUnnamed309(o.optimizationActivitys); | 2444 checkUnnamed858(o.optimizationActivitys); |
2445 unittest.expect(o.optimizationModel, unittest.equals('foo')); | 2445 unittest.expect(o.optimizationModel, unittest.equals('foo')); |
2446 } | 2446 } |
2447 buildCounterCreativeOptimizationConfiguration--; | 2447 buildCounterCreativeOptimizationConfiguration--; |
2448 } | 2448 } |
2449 | 2449 |
2450 buildUnnamed310() { | 2450 buildUnnamed859() { |
2451 var o = new core.List<api.CreativeAssignment>(); | 2451 var o = new core.List<api.CreativeAssignment>(); |
2452 o.add(buildCreativeAssignment()); | 2452 o.add(buildCreativeAssignment()); |
2453 o.add(buildCreativeAssignment()); | 2453 o.add(buildCreativeAssignment()); |
2454 return o; | 2454 return o; |
2455 } | 2455 } |
2456 | 2456 |
2457 checkUnnamed310(core.List<api.CreativeAssignment> o) { | 2457 checkUnnamed859(core.List<api.CreativeAssignment> o) { |
2458 unittest.expect(o, unittest.hasLength(2)); | 2458 unittest.expect(o, unittest.hasLength(2)); |
2459 checkCreativeAssignment(o[0]); | 2459 checkCreativeAssignment(o[0]); |
2460 checkCreativeAssignment(o[1]); | 2460 checkCreativeAssignment(o[1]); |
2461 } | 2461 } |
2462 | 2462 |
2463 core.int buildCounterCreativeRotation = 0; | 2463 core.int buildCounterCreativeRotation = 0; |
2464 buildCreativeRotation() { | 2464 buildCreativeRotation() { |
2465 var o = new api.CreativeRotation(); | 2465 var o = new api.CreativeRotation(); |
2466 buildCounterCreativeRotation++; | 2466 buildCounterCreativeRotation++; |
2467 if (buildCounterCreativeRotation < 3) { | 2467 if (buildCounterCreativeRotation < 3) { |
2468 o.creativeAssignments = buildUnnamed310(); | 2468 o.creativeAssignments = buildUnnamed859(); |
2469 o.creativeOptimizationConfigurationId = "foo"; | 2469 o.creativeOptimizationConfigurationId = "foo"; |
2470 o.type = "foo"; | 2470 o.type = "foo"; |
2471 o.weightCalculationStrategy = "foo"; | 2471 o.weightCalculationStrategy = "foo"; |
2472 } | 2472 } |
2473 buildCounterCreativeRotation--; | 2473 buildCounterCreativeRotation--; |
2474 return o; | 2474 return o; |
2475 } | 2475 } |
2476 | 2476 |
2477 checkCreativeRotation(api.CreativeRotation o) { | 2477 checkCreativeRotation(api.CreativeRotation o) { |
2478 buildCounterCreativeRotation++; | 2478 buildCounterCreativeRotation++; |
2479 if (buildCounterCreativeRotation < 3) { | 2479 if (buildCounterCreativeRotation < 3) { |
2480 checkUnnamed310(o.creativeAssignments); | 2480 checkUnnamed859(o.creativeAssignments); |
2481 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); | 2481 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); |
2482 unittest.expect(o.type, unittest.equals('foo')); | 2482 unittest.expect(o.type, unittest.equals('foo')); |
2483 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); | 2483 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); |
2484 } | 2484 } |
2485 buildCounterCreativeRotation--; | 2485 buildCounterCreativeRotation--; |
2486 } | 2486 } |
2487 | 2487 |
2488 core.int buildCounterCreativeSettings = 0; | 2488 core.int buildCounterCreativeSettings = 0; |
2489 buildCreativeSettings() { | 2489 buildCreativeSettings() { |
2490 var o = new api.CreativeSettings(); | 2490 var o = new api.CreativeSettings(); |
2491 buildCounterCreativeSettings++; | 2491 buildCounterCreativeSettings++; |
2492 if (buildCounterCreativeSettings < 3) { | 2492 if (buildCounterCreativeSettings < 3) { |
2493 o.iFrameFooter = "foo"; | 2493 o.iFrameFooter = "foo"; |
2494 o.iFrameHeader = "foo"; | 2494 o.iFrameHeader = "foo"; |
2495 } | 2495 } |
2496 buildCounterCreativeSettings--; | 2496 buildCounterCreativeSettings--; |
2497 return o; | 2497 return o; |
2498 } | 2498 } |
2499 | 2499 |
2500 checkCreativeSettings(api.CreativeSettings o) { | 2500 checkCreativeSettings(api.CreativeSettings o) { |
2501 buildCounterCreativeSettings++; | 2501 buildCounterCreativeSettings++; |
2502 if (buildCounterCreativeSettings < 3) { | 2502 if (buildCounterCreativeSettings < 3) { |
2503 unittest.expect(o.iFrameFooter, unittest.equals('foo')); | 2503 unittest.expect(o.iFrameFooter, unittest.equals('foo')); |
2504 unittest.expect(o.iFrameHeader, unittest.equals('foo')); | 2504 unittest.expect(o.iFrameHeader, unittest.equals('foo')); |
2505 } | 2505 } |
2506 buildCounterCreativeSettings--; | 2506 buildCounterCreativeSettings--; |
2507 } | 2507 } |
2508 | 2508 |
2509 buildUnnamed311() { | 2509 buildUnnamed860() { |
2510 var o = new core.List<api.Creative>(); | 2510 var o = new core.List<api.Creative>(); |
2511 o.add(buildCreative()); | 2511 o.add(buildCreative()); |
2512 o.add(buildCreative()); | 2512 o.add(buildCreative()); |
2513 return o; | 2513 return o; |
2514 } | 2514 } |
2515 | 2515 |
2516 checkUnnamed311(core.List<api.Creative> o) { | 2516 checkUnnamed860(core.List<api.Creative> o) { |
2517 unittest.expect(o, unittest.hasLength(2)); | 2517 unittest.expect(o, unittest.hasLength(2)); |
2518 checkCreative(o[0]); | 2518 checkCreative(o[0]); |
2519 checkCreative(o[1]); | 2519 checkCreative(o[1]); |
2520 } | 2520 } |
2521 | 2521 |
2522 core.int buildCounterCreativesListResponse = 0; | 2522 core.int buildCounterCreativesListResponse = 0; |
2523 buildCreativesListResponse() { | 2523 buildCreativesListResponse() { |
2524 var o = new api.CreativesListResponse(); | 2524 var o = new api.CreativesListResponse(); |
2525 buildCounterCreativesListResponse++; | 2525 buildCounterCreativesListResponse++; |
2526 if (buildCounterCreativesListResponse < 3) { | 2526 if (buildCounterCreativesListResponse < 3) { |
2527 o.creatives = buildUnnamed311(); | 2527 o.creatives = buildUnnamed860(); |
2528 o.kind = "foo"; | 2528 o.kind = "foo"; |
2529 o.nextPageToken = "foo"; | 2529 o.nextPageToken = "foo"; |
2530 } | 2530 } |
2531 buildCounterCreativesListResponse--; | 2531 buildCounterCreativesListResponse--; |
2532 return o; | 2532 return o; |
2533 } | 2533 } |
2534 | 2534 |
2535 checkCreativesListResponse(api.CreativesListResponse o) { | 2535 checkCreativesListResponse(api.CreativesListResponse o) { |
2536 buildCounterCreativesListResponse++; | 2536 buildCounterCreativesListResponse++; |
2537 if (buildCounterCreativesListResponse < 3) { | 2537 if (buildCounterCreativesListResponse < 3) { |
2538 checkUnnamed311(o.creatives); | 2538 checkUnnamed860(o.creatives); |
2539 unittest.expect(o.kind, unittest.equals('foo')); | 2539 unittest.expect(o.kind, unittest.equals('foo')); |
2540 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2540 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2541 } | 2541 } |
2542 buildCounterCreativesListResponse--; | 2542 buildCounterCreativesListResponse--; |
2543 } | 2543 } |
2544 | 2544 |
2545 buildUnnamed312() { | 2545 buildUnnamed861() { |
2546 var o = new core.List<api.Dimension>(); | 2546 var o = new core.List<api.Dimension>(); |
2547 o.add(buildDimension()); | 2547 o.add(buildDimension()); |
2548 o.add(buildDimension()); | 2548 o.add(buildDimension()); |
2549 return o; | 2549 return o; |
2550 } | 2550 } |
2551 | 2551 |
2552 checkUnnamed312(core.List<api.Dimension> o) { | 2552 checkUnnamed861(core.List<api.Dimension> o) { |
2553 unittest.expect(o, unittest.hasLength(2)); | 2553 unittest.expect(o, unittest.hasLength(2)); |
2554 checkDimension(o[0]); | 2554 checkDimension(o[0]); |
2555 checkDimension(o[1]); | 2555 checkDimension(o[1]); |
2556 } | 2556 } |
2557 | 2557 |
2558 buildUnnamed313() { | 2558 buildUnnamed862() { |
2559 var o = new core.List<api.Dimension>(); | 2559 var o = new core.List<api.Dimension>(); |
2560 o.add(buildDimension()); | 2560 o.add(buildDimension()); |
2561 o.add(buildDimension()); | 2561 o.add(buildDimension()); |
2562 return o; | 2562 return o; |
2563 } | 2563 } |
2564 | 2564 |
2565 checkUnnamed313(core.List<api.Dimension> o) { | 2565 checkUnnamed862(core.List<api.Dimension> o) { |
2566 unittest.expect(o, unittest.hasLength(2)); | 2566 unittest.expect(o, unittest.hasLength(2)); |
2567 checkDimension(o[0]); | 2567 checkDimension(o[0]); |
2568 checkDimension(o[1]); | 2568 checkDimension(o[1]); |
2569 } | 2569 } |
2570 | 2570 |
2571 buildUnnamed314() { | 2571 buildUnnamed863() { |
2572 var o = new core.List<api.Metric>(); | 2572 var o = new core.List<api.Metric>(); |
2573 o.add(buildMetric()); | 2573 o.add(buildMetric()); |
2574 o.add(buildMetric()); | 2574 o.add(buildMetric()); |
2575 return o; | 2575 return o; |
2576 } | 2576 } |
2577 | 2577 |
2578 checkUnnamed314(core.List<api.Metric> o) { | 2578 checkUnnamed863(core.List<api.Metric> o) { |
2579 unittest.expect(o, unittest.hasLength(2)); | 2579 unittest.expect(o, unittest.hasLength(2)); |
2580 checkMetric(o[0]); | 2580 checkMetric(o[0]); |
2581 checkMetric(o[1]); | 2581 checkMetric(o[1]); |
2582 } | 2582 } |
2583 | 2583 |
2584 buildUnnamed315() { | 2584 buildUnnamed864() { |
2585 var o = new core.List<api.Metric>(); | 2585 var o = new core.List<api.Metric>(); |
2586 o.add(buildMetric()); | 2586 o.add(buildMetric()); |
2587 o.add(buildMetric()); | 2587 o.add(buildMetric()); |
2588 return o; | 2588 return o; |
2589 } | 2589 } |
2590 | 2590 |
2591 checkUnnamed315(core.List<api.Metric> o) { | 2591 checkUnnamed864(core.List<api.Metric> o) { |
2592 unittest.expect(o, unittest.hasLength(2)); | 2592 unittest.expect(o, unittest.hasLength(2)); |
2593 checkMetric(o[0]); | 2593 checkMetric(o[0]); |
2594 checkMetric(o[1]); | 2594 checkMetric(o[1]); |
2595 } | 2595 } |
2596 | 2596 |
2597 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; | 2597 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; |
2598 buildCrossDimensionReachReportCompatibleFields() { | 2598 buildCrossDimensionReachReportCompatibleFields() { |
2599 var o = new api.CrossDimensionReachReportCompatibleFields(); | 2599 var o = new api.CrossDimensionReachReportCompatibleFields(); |
2600 buildCounterCrossDimensionReachReportCompatibleFields++; | 2600 buildCounterCrossDimensionReachReportCompatibleFields++; |
2601 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2601 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
2602 o.breakdown = buildUnnamed312(); | 2602 o.breakdown = buildUnnamed861(); |
2603 o.dimensionFilters = buildUnnamed313(); | 2603 o.dimensionFilters = buildUnnamed862(); |
2604 o.kind = "foo"; | 2604 o.kind = "foo"; |
2605 o.metrics = buildUnnamed314(); | 2605 o.metrics = buildUnnamed863(); |
2606 o.overlapMetrics = buildUnnamed315(); | 2606 o.overlapMetrics = buildUnnamed864(); |
2607 } | 2607 } |
2608 buildCounterCrossDimensionReachReportCompatibleFields--; | 2608 buildCounterCrossDimensionReachReportCompatibleFields--; |
2609 return o; | 2609 return o; |
2610 } | 2610 } |
2611 | 2611 |
2612 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { | 2612 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { |
2613 buildCounterCrossDimensionReachReportCompatibleFields++; | 2613 buildCounterCrossDimensionReachReportCompatibleFields++; |
2614 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2614 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
2615 checkUnnamed312(o.breakdown); | 2615 checkUnnamed861(o.breakdown); |
2616 checkUnnamed313(o.dimensionFilters); | 2616 checkUnnamed862(o.dimensionFilters); |
2617 unittest.expect(o.kind, unittest.equals('foo')); | 2617 unittest.expect(o.kind, unittest.equals('foo')); |
2618 checkUnnamed314(o.metrics); | 2618 checkUnnamed863(o.metrics); |
2619 checkUnnamed315(o.overlapMetrics); | 2619 checkUnnamed864(o.overlapMetrics); |
2620 } | 2620 } |
2621 buildCounterCrossDimensionReachReportCompatibleFields--; | 2621 buildCounterCrossDimensionReachReportCompatibleFields--; |
2622 } | 2622 } |
2623 | 2623 |
2624 buildUnnamed316() { | 2624 buildUnnamed865() { |
2625 var o = new core.List<api.DimensionValue>(); | 2625 var o = new core.List<api.DimensionValue>(); |
2626 o.add(buildDimensionValue()); | 2626 o.add(buildDimensionValue()); |
2627 o.add(buildDimensionValue()); | 2627 o.add(buildDimensionValue()); |
2628 return o; | 2628 return o; |
2629 } | 2629 } |
2630 | 2630 |
2631 checkUnnamed316(core.List<api.DimensionValue> o) { | 2631 checkUnnamed865(core.List<api.DimensionValue> o) { |
2632 unittest.expect(o, unittest.hasLength(2)); | 2632 unittest.expect(o, unittest.hasLength(2)); |
2633 checkDimensionValue(o[0]); | 2633 checkDimensionValue(o[0]); |
2634 checkDimensionValue(o[1]); | 2634 checkDimensionValue(o[1]); |
2635 } | 2635 } |
2636 | 2636 |
2637 core.int buildCounterCustomRichMediaEvents = 0; | 2637 core.int buildCounterCustomRichMediaEvents = 0; |
2638 buildCustomRichMediaEvents() { | 2638 buildCustomRichMediaEvents() { |
2639 var o = new api.CustomRichMediaEvents(); | 2639 var o = new api.CustomRichMediaEvents(); |
2640 buildCounterCustomRichMediaEvents++; | 2640 buildCounterCustomRichMediaEvents++; |
2641 if (buildCounterCustomRichMediaEvents < 3) { | 2641 if (buildCounterCustomRichMediaEvents < 3) { |
2642 o.filteredEventIds = buildUnnamed316(); | 2642 o.filteredEventIds = buildUnnamed865(); |
2643 o.kind = "foo"; | 2643 o.kind = "foo"; |
2644 } | 2644 } |
2645 buildCounterCustomRichMediaEvents--; | 2645 buildCounterCustomRichMediaEvents--; |
2646 return o; | 2646 return o; |
2647 } | 2647 } |
2648 | 2648 |
2649 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { | 2649 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { |
2650 buildCounterCustomRichMediaEvents++; | 2650 buildCounterCustomRichMediaEvents++; |
2651 if (buildCounterCustomRichMediaEvents < 3) { | 2651 if (buildCounterCustomRichMediaEvents < 3) { |
2652 checkUnnamed316(o.filteredEventIds); | 2652 checkUnnamed865(o.filteredEventIds); |
2653 unittest.expect(o.kind, unittest.equals('foo')); | 2653 unittest.expect(o.kind, unittest.equals('foo')); |
2654 } | 2654 } |
2655 buildCounterCustomRichMediaEvents--; | 2655 buildCounterCustomRichMediaEvents--; |
2656 } | 2656 } |
2657 | 2657 |
2658 core.int buildCounterDateRange = 0; | 2658 core.int buildCounterDateRange = 0; |
2659 buildDateRange() { | 2659 buildDateRange() { |
2660 var o = new api.DateRange(); | 2660 var o = new api.DateRange(); |
2661 buildCounterDateRange++; | 2661 buildCounterDateRange++; |
2662 if (buildCounterDateRange < 3) { | 2662 if (buildCounterDateRange < 3) { |
(...skipping 10 matching lines...) Expand all Loading... |
2673 buildCounterDateRange++; | 2673 buildCounterDateRange++; |
2674 if (buildCounterDateRange < 3) { | 2674 if (buildCounterDateRange < 3) { |
2675 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2675 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
2676 unittest.expect(o.kind, unittest.equals('foo')); | 2676 unittest.expect(o.kind, unittest.equals('foo')); |
2677 unittest.expect(o.relativeDateRange, unittest.equals('foo')); | 2677 unittest.expect(o.relativeDateRange, unittest.equals('foo')); |
2678 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2678 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
2679 } | 2679 } |
2680 buildCounterDateRange--; | 2680 buildCounterDateRange--; |
2681 } | 2681 } |
2682 | 2682 |
2683 buildUnnamed317() { | 2683 buildUnnamed866() { |
2684 var o = new core.List<core.String>(); | 2684 var o = new core.List<core.String>(); |
2685 o.add("foo"); | 2685 o.add("foo"); |
2686 o.add("foo"); | 2686 o.add("foo"); |
2687 return o; | 2687 return o; |
2688 } | 2688 } |
2689 | 2689 |
2690 checkUnnamed317(core.List<core.String> o) { | 2690 checkUnnamed866(core.List<core.String> o) { |
2691 unittest.expect(o, unittest.hasLength(2)); | 2691 unittest.expect(o, unittest.hasLength(2)); |
2692 unittest.expect(o[0], unittest.equals('foo')); | 2692 unittest.expect(o[0], unittest.equals('foo')); |
2693 unittest.expect(o[1], unittest.equals('foo')); | 2693 unittest.expect(o[1], unittest.equals('foo')); |
2694 } | 2694 } |
2695 | 2695 |
2696 buildUnnamed318() { | 2696 buildUnnamed867() { |
2697 var o = new core.List<core.int>(); | 2697 var o = new core.List<core.int>(); |
2698 o.add(42); | 2698 o.add(42); |
2699 o.add(42); | 2699 o.add(42); |
2700 return o; | 2700 return o; |
2701 } | 2701 } |
2702 | 2702 |
2703 checkUnnamed318(core.List<core.int> o) { | 2703 checkUnnamed867(core.List<core.int> o) { |
2704 unittest.expect(o, unittest.hasLength(2)); | 2704 unittest.expect(o, unittest.hasLength(2)); |
2705 unittest.expect(o[0], unittest.equals(42)); | 2705 unittest.expect(o[0], unittest.equals(42)); |
2706 unittest.expect(o[1], unittest.equals(42)); | 2706 unittest.expect(o[1], unittest.equals(42)); |
2707 } | 2707 } |
2708 | 2708 |
2709 core.int buildCounterDayPartTargeting = 0; | 2709 core.int buildCounterDayPartTargeting = 0; |
2710 buildDayPartTargeting() { | 2710 buildDayPartTargeting() { |
2711 var o = new api.DayPartTargeting(); | 2711 var o = new api.DayPartTargeting(); |
2712 buildCounterDayPartTargeting++; | 2712 buildCounterDayPartTargeting++; |
2713 if (buildCounterDayPartTargeting < 3) { | 2713 if (buildCounterDayPartTargeting < 3) { |
2714 o.daysOfWeek = buildUnnamed317(); | 2714 o.daysOfWeek = buildUnnamed866(); |
2715 o.hoursOfDay = buildUnnamed318(); | 2715 o.hoursOfDay = buildUnnamed867(); |
2716 o.userLocalTime = true; | 2716 o.userLocalTime = true; |
2717 } | 2717 } |
2718 buildCounterDayPartTargeting--; | 2718 buildCounterDayPartTargeting--; |
2719 return o; | 2719 return o; |
2720 } | 2720 } |
2721 | 2721 |
2722 checkDayPartTargeting(api.DayPartTargeting o) { | 2722 checkDayPartTargeting(api.DayPartTargeting o) { |
2723 buildCounterDayPartTargeting++; | 2723 buildCounterDayPartTargeting++; |
2724 if (buildCounterDayPartTargeting < 3) { | 2724 if (buildCounterDayPartTargeting < 3) { |
2725 checkUnnamed317(o.daysOfWeek); | 2725 checkUnnamed866(o.daysOfWeek); |
2726 checkUnnamed318(o.hoursOfDay); | 2726 checkUnnamed867(o.hoursOfDay); |
2727 unittest.expect(o.userLocalTime, unittest.isTrue); | 2727 unittest.expect(o.userLocalTime, unittest.isTrue); |
2728 } | 2728 } |
2729 buildCounterDayPartTargeting--; | 2729 buildCounterDayPartTargeting--; |
2730 } | 2730 } |
2731 | 2731 |
2732 core.int buildCounterDefaultClickThroughEventTagProperties = 0; | 2732 core.int buildCounterDefaultClickThroughEventTagProperties = 0; |
2733 buildDefaultClickThroughEventTagProperties() { | 2733 buildDefaultClickThroughEventTagProperties() { |
2734 var o = new api.DefaultClickThroughEventTagProperties(); | 2734 var o = new api.DefaultClickThroughEventTagProperties(); |
2735 buildCounterDefaultClickThroughEventTagProperties++; | 2735 buildCounterDefaultClickThroughEventTagProperties++; |
2736 if (buildCounterDefaultClickThroughEventTagProperties < 3) { | 2736 if (buildCounterDefaultClickThroughEventTagProperties < 3) { |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2868 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2868 unittest.expect(o.dimensionName, unittest.equals('foo')); |
2869 unittest.expect(o.etag, unittest.equals('foo')); | 2869 unittest.expect(o.etag, unittest.equals('foo')); |
2870 unittest.expect(o.id, unittest.equals('foo')); | 2870 unittest.expect(o.id, unittest.equals('foo')); |
2871 unittest.expect(o.kind, unittest.equals('foo')); | 2871 unittest.expect(o.kind, unittest.equals('foo')); |
2872 unittest.expect(o.matchType, unittest.equals('foo')); | 2872 unittest.expect(o.matchType, unittest.equals('foo')); |
2873 unittest.expect(o.value, unittest.equals('foo')); | 2873 unittest.expect(o.value, unittest.equals('foo')); |
2874 } | 2874 } |
2875 buildCounterDimensionValue--; | 2875 buildCounterDimensionValue--; |
2876 } | 2876 } |
2877 | 2877 |
2878 buildUnnamed319() { | 2878 buildUnnamed868() { |
2879 var o = new core.List<api.DimensionValue>(); | 2879 var o = new core.List<api.DimensionValue>(); |
2880 o.add(buildDimensionValue()); | 2880 o.add(buildDimensionValue()); |
2881 o.add(buildDimensionValue()); | 2881 o.add(buildDimensionValue()); |
2882 return o; | 2882 return o; |
2883 } | 2883 } |
2884 | 2884 |
2885 checkUnnamed319(core.List<api.DimensionValue> o) { | 2885 checkUnnamed868(core.List<api.DimensionValue> o) { |
2886 unittest.expect(o, unittest.hasLength(2)); | 2886 unittest.expect(o, unittest.hasLength(2)); |
2887 checkDimensionValue(o[0]); | 2887 checkDimensionValue(o[0]); |
2888 checkDimensionValue(o[1]); | 2888 checkDimensionValue(o[1]); |
2889 } | 2889 } |
2890 | 2890 |
2891 core.int buildCounterDimensionValueList = 0; | 2891 core.int buildCounterDimensionValueList = 0; |
2892 buildDimensionValueList() { | 2892 buildDimensionValueList() { |
2893 var o = new api.DimensionValueList(); | 2893 var o = new api.DimensionValueList(); |
2894 buildCounterDimensionValueList++; | 2894 buildCounterDimensionValueList++; |
2895 if (buildCounterDimensionValueList < 3) { | 2895 if (buildCounterDimensionValueList < 3) { |
2896 o.etag = "foo"; | 2896 o.etag = "foo"; |
2897 o.items = buildUnnamed319(); | 2897 o.items = buildUnnamed868(); |
2898 o.kind = "foo"; | 2898 o.kind = "foo"; |
2899 o.nextPageToken = "foo"; | 2899 o.nextPageToken = "foo"; |
2900 } | 2900 } |
2901 buildCounterDimensionValueList--; | 2901 buildCounterDimensionValueList--; |
2902 return o; | 2902 return o; |
2903 } | 2903 } |
2904 | 2904 |
2905 checkDimensionValueList(api.DimensionValueList o) { | 2905 checkDimensionValueList(api.DimensionValueList o) { |
2906 buildCounterDimensionValueList++; | 2906 buildCounterDimensionValueList++; |
2907 if (buildCounterDimensionValueList < 3) { | 2907 if (buildCounterDimensionValueList < 3) { |
2908 unittest.expect(o.etag, unittest.equals('foo')); | 2908 unittest.expect(o.etag, unittest.equals('foo')); |
2909 checkUnnamed319(o.items); | 2909 checkUnnamed868(o.items); |
2910 unittest.expect(o.kind, unittest.equals('foo')); | 2910 unittest.expect(o.kind, unittest.equals('foo')); |
2911 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2911 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2912 } | 2912 } |
2913 buildCounterDimensionValueList--; | 2913 buildCounterDimensionValueList--; |
2914 } | 2914 } |
2915 | 2915 |
2916 buildUnnamed320() { | 2916 buildUnnamed869() { |
2917 var o = new core.List<api.DimensionFilter>(); | 2917 var o = new core.List<api.DimensionFilter>(); |
2918 o.add(buildDimensionFilter()); | 2918 o.add(buildDimensionFilter()); |
2919 o.add(buildDimensionFilter()); | 2919 o.add(buildDimensionFilter()); |
2920 return o; | 2920 return o; |
2921 } | 2921 } |
2922 | 2922 |
2923 checkUnnamed320(core.List<api.DimensionFilter> o) { | 2923 checkUnnamed869(core.List<api.DimensionFilter> o) { |
2924 unittest.expect(o, unittest.hasLength(2)); | 2924 unittest.expect(o, unittest.hasLength(2)); |
2925 checkDimensionFilter(o[0]); | 2925 checkDimensionFilter(o[0]); |
2926 checkDimensionFilter(o[1]); | 2926 checkDimensionFilter(o[1]); |
2927 } | 2927 } |
2928 | 2928 |
2929 core.int buildCounterDimensionValueRequest = 0; | 2929 core.int buildCounterDimensionValueRequest = 0; |
2930 buildDimensionValueRequest() { | 2930 buildDimensionValueRequest() { |
2931 var o = new api.DimensionValueRequest(); | 2931 var o = new api.DimensionValueRequest(); |
2932 buildCounterDimensionValueRequest++; | 2932 buildCounterDimensionValueRequest++; |
2933 if (buildCounterDimensionValueRequest < 3) { | 2933 if (buildCounterDimensionValueRequest < 3) { |
2934 o.dimensionName = "foo"; | 2934 o.dimensionName = "foo"; |
2935 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2935 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
2936 o.filters = buildUnnamed320(); | 2936 o.filters = buildUnnamed869(); |
2937 o.kind = "foo"; | 2937 o.kind = "foo"; |
2938 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2938 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
2939 } | 2939 } |
2940 buildCounterDimensionValueRequest--; | 2940 buildCounterDimensionValueRequest--; |
2941 return o; | 2941 return o; |
2942 } | 2942 } |
2943 | 2943 |
2944 checkDimensionValueRequest(api.DimensionValueRequest o) { | 2944 checkDimensionValueRequest(api.DimensionValueRequest o) { |
2945 buildCounterDimensionValueRequest++; | 2945 buildCounterDimensionValueRequest++; |
2946 if (buildCounterDimensionValueRequest < 3) { | 2946 if (buildCounterDimensionValueRequest < 3) { |
2947 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2947 unittest.expect(o.dimensionName, unittest.equals('foo')); |
2948 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2948 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
2949 checkUnnamed320(o.filters); | 2949 checkUnnamed869(o.filters); |
2950 unittest.expect(o.kind, unittest.equals('foo')); | 2950 unittest.expect(o.kind, unittest.equals('foo')); |
2951 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2951 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
2952 } | 2952 } |
2953 buildCounterDimensionValueRequest--; | 2953 buildCounterDimensionValueRequest--; |
2954 } | 2954 } |
2955 | 2955 |
2956 buildUnnamed321() { | 2956 buildUnnamed870() { |
2957 var o = new core.List<api.DirectorySiteContactAssignment>(); | 2957 var o = new core.List<api.DirectorySiteContactAssignment>(); |
2958 o.add(buildDirectorySiteContactAssignment()); | 2958 o.add(buildDirectorySiteContactAssignment()); |
2959 o.add(buildDirectorySiteContactAssignment()); | 2959 o.add(buildDirectorySiteContactAssignment()); |
2960 return o; | 2960 return o; |
2961 } | 2961 } |
2962 | 2962 |
2963 checkUnnamed321(core.List<api.DirectorySiteContactAssignment> o) { | 2963 checkUnnamed870(core.List<api.DirectorySiteContactAssignment> o) { |
2964 unittest.expect(o, unittest.hasLength(2)); | 2964 unittest.expect(o, unittest.hasLength(2)); |
2965 checkDirectorySiteContactAssignment(o[0]); | 2965 checkDirectorySiteContactAssignment(o[0]); |
2966 checkDirectorySiteContactAssignment(o[1]); | 2966 checkDirectorySiteContactAssignment(o[1]); |
2967 } | 2967 } |
2968 | 2968 |
2969 buildUnnamed322() { | 2969 buildUnnamed871() { |
2970 var o = new core.List<core.String>(); | 2970 var o = new core.List<core.String>(); |
2971 o.add("foo"); | 2971 o.add("foo"); |
2972 o.add("foo"); | 2972 o.add("foo"); |
2973 return o; | 2973 return o; |
2974 } | 2974 } |
2975 | 2975 |
2976 checkUnnamed322(core.List<core.String> o) { | 2976 checkUnnamed871(core.List<core.String> o) { |
2977 unittest.expect(o, unittest.hasLength(2)); | 2977 unittest.expect(o, unittest.hasLength(2)); |
2978 unittest.expect(o[0], unittest.equals('foo')); | 2978 unittest.expect(o[0], unittest.equals('foo')); |
2979 unittest.expect(o[1], unittest.equals('foo')); | 2979 unittest.expect(o[1], unittest.equals('foo')); |
2980 } | 2980 } |
2981 | 2981 |
2982 buildUnnamed323() { | 2982 buildUnnamed872() { |
2983 var o = new core.List<core.String>(); | 2983 var o = new core.List<core.String>(); |
2984 o.add("foo"); | 2984 o.add("foo"); |
2985 o.add("foo"); | 2985 o.add("foo"); |
2986 return o; | 2986 return o; |
2987 } | 2987 } |
2988 | 2988 |
2989 checkUnnamed323(core.List<core.String> o) { | 2989 checkUnnamed872(core.List<core.String> o) { |
2990 unittest.expect(o, unittest.hasLength(2)); | 2990 unittest.expect(o, unittest.hasLength(2)); |
2991 unittest.expect(o[0], unittest.equals('foo')); | 2991 unittest.expect(o[0], unittest.equals('foo')); |
2992 unittest.expect(o[1], unittest.equals('foo')); | 2992 unittest.expect(o[1], unittest.equals('foo')); |
2993 } | 2993 } |
2994 | 2994 |
2995 core.int buildCounterDirectorySite = 0; | 2995 core.int buildCounterDirectorySite = 0; |
2996 buildDirectorySite() { | 2996 buildDirectorySite() { |
2997 var o = new api.DirectorySite(); | 2997 var o = new api.DirectorySite(); |
2998 buildCounterDirectorySite++; | 2998 buildCounterDirectorySite++; |
2999 if (buildCounterDirectorySite < 3) { | 2999 if (buildCounterDirectorySite < 3) { |
3000 o.active = true; | 3000 o.active = true; |
3001 o.contactAssignments = buildUnnamed321(); | 3001 o.contactAssignments = buildUnnamed870(); |
3002 o.countryId = "foo"; | 3002 o.countryId = "foo"; |
3003 o.currencyId = "foo"; | 3003 o.currencyId = "foo"; |
3004 o.description = "foo"; | 3004 o.description = "foo"; |
3005 o.id = "foo"; | 3005 o.id = "foo"; |
3006 o.idDimensionValue = buildDimensionValue(); | 3006 o.idDimensionValue = buildDimensionValue(); |
3007 o.inpageTagFormats = buildUnnamed322(); | 3007 o.inpageTagFormats = buildUnnamed871(); |
3008 o.interstitialTagFormats = buildUnnamed323(); | 3008 o.interstitialTagFormats = buildUnnamed872(); |
3009 o.kind = "foo"; | 3009 o.kind = "foo"; |
3010 o.name = "foo"; | 3010 o.name = "foo"; |
3011 o.parentId = "foo"; | 3011 o.parentId = "foo"; |
3012 o.settings = buildDirectorySiteSettings(); | 3012 o.settings = buildDirectorySiteSettings(); |
3013 o.url = "foo"; | 3013 o.url = "foo"; |
3014 } | 3014 } |
3015 buildCounterDirectorySite--; | 3015 buildCounterDirectorySite--; |
3016 return o; | 3016 return o; |
3017 } | 3017 } |
3018 | 3018 |
3019 checkDirectorySite(api.DirectorySite o) { | 3019 checkDirectorySite(api.DirectorySite o) { |
3020 buildCounterDirectorySite++; | 3020 buildCounterDirectorySite++; |
3021 if (buildCounterDirectorySite < 3) { | 3021 if (buildCounterDirectorySite < 3) { |
3022 unittest.expect(o.active, unittest.isTrue); | 3022 unittest.expect(o.active, unittest.isTrue); |
3023 checkUnnamed321(o.contactAssignments); | 3023 checkUnnamed870(o.contactAssignments); |
3024 unittest.expect(o.countryId, unittest.equals('foo')); | 3024 unittest.expect(o.countryId, unittest.equals('foo')); |
3025 unittest.expect(o.currencyId, unittest.equals('foo')); | 3025 unittest.expect(o.currencyId, unittest.equals('foo')); |
3026 unittest.expect(o.description, unittest.equals('foo')); | 3026 unittest.expect(o.description, unittest.equals('foo')); |
3027 unittest.expect(o.id, unittest.equals('foo')); | 3027 unittest.expect(o.id, unittest.equals('foo')); |
3028 checkDimensionValue(o.idDimensionValue); | 3028 checkDimensionValue(o.idDimensionValue); |
3029 checkUnnamed322(o.inpageTagFormats); | 3029 checkUnnamed871(o.inpageTagFormats); |
3030 checkUnnamed323(o.interstitialTagFormats); | 3030 checkUnnamed872(o.interstitialTagFormats); |
3031 unittest.expect(o.kind, unittest.equals('foo')); | 3031 unittest.expect(o.kind, unittest.equals('foo')); |
3032 unittest.expect(o.name, unittest.equals('foo')); | 3032 unittest.expect(o.name, unittest.equals('foo')); |
3033 unittest.expect(o.parentId, unittest.equals('foo')); | 3033 unittest.expect(o.parentId, unittest.equals('foo')); |
3034 checkDirectorySiteSettings(o.settings); | 3034 checkDirectorySiteSettings(o.settings); |
3035 unittest.expect(o.url, unittest.equals('foo')); | 3035 unittest.expect(o.url, unittest.equals('foo')); |
3036 } | 3036 } |
3037 buildCounterDirectorySite--; | 3037 buildCounterDirectorySite--; |
3038 } | 3038 } |
3039 | 3039 |
3040 core.int buildCounterDirectorySiteContact = 0; | 3040 core.int buildCounterDirectorySiteContact = 0; |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3082 | 3082 |
3083 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { | 3083 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { |
3084 buildCounterDirectorySiteContactAssignment++; | 3084 buildCounterDirectorySiteContactAssignment++; |
3085 if (buildCounterDirectorySiteContactAssignment < 3) { | 3085 if (buildCounterDirectorySiteContactAssignment < 3) { |
3086 unittest.expect(o.contactId, unittest.equals('foo')); | 3086 unittest.expect(o.contactId, unittest.equals('foo')); |
3087 unittest.expect(o.visibility, unittest.equals('foo')); | 3087 unittest.expect(o.visibility, unittest.equals('foo')); |
3088 } | 3088 } |
3089 buildCounterDirectorySiteContactAssignment--; | 3089 buildCounterDirectorySiteContactAssignment--; |
3090 } | 3090 } |
3091 | 3091 |
3092 buildUnnamed324() { | 3092 buildUnnamed873() { |
3093 var o = new core.List<api.DirectorySiteContact>(); | 3093 var o = new core.List<api.DirectorySiteContact>(); |
3094 o.add(buildDirectorySiteContact()); | 3094 o.add(buildDirectorySiteContact()); |
3095 o.add(buildDirectorySiteContact()); | 3095 o.add(buildDirectorySiteContact()); |
3096 return o; | 3096 return o; |
3097 } | 3097 } |
3098 | 3098 |
3099 checkUnnamed324(core.List<api.DirectorySiteContact> o) { | 3099 checkUnnamed873(core.List<api.DirectorySiteContact> o) { |
3100 unittest.expect(o, unittest.hasLength(2)); | 3100 unittest.expect(o, unittest.hasLength(2)); |
3101 checkDirectorySiteContact(o[0]); | 3101 checkDirectorySiteContact(o[0]); |
3102 checkDirectorySiteContact(o[1]); | 3102 checkDirectorySiteContact(o[1]); |
3103 } | 3103 } |
3104 | 3104 |
3105 core.int buildCounterDirectorySiteContactsListResponse = 0; | 3105 core.int buildCounterDirectorySiteContactsListResponse = 0; |
3106 buildDirectorySiteContactsListResponse() { | 3106 buildDirectorySiteContactsListResponse() { |
3107 var o = new api.DirectorySiteContactsListResponse(); | 3107 var o = new api.DirectorySiteContactsListResponse(); |
3108 buildCounterDirectorySiteContactsListResponse++; | 3108 buildCounterDirectorySiteContactsListResponse++; |
3109 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3109 if (buildCounterDirectorySiteContactsListResponse < 3) { |
3110 o.directorySiteContacts = buildUnnamed324(); | 3110 o.directorySiteContacts = buildUnnamed873(); |
3111 o.kind = "foo"; | 3111 o.kind = "foo"; |
3112 o.nextPageToken = "foo"; | 3112 o.nextPageToken = "foo"; |
3113 } | 3113 } |
3114 buildCounterDirectorySiteContactsListResponse--; | 3114 buildCounterDirectorySiteContactsListResponse--; |
3115 return o; | 3115 return o; |
3116 } | 3116 } |
3117 | 3117 |
3118 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ | 3118 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ |
3119 buildCounterDirectorySiteContactsListResponse++; | 3119 buildCounterDirectorySiteContactsListResponse++; |
3120 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3120 if (buildCounterDirectorySiteContactsListResponse < 3) { |
3121 checkUnnamed324(o.directorySiteContacts); | 3121 checkUnnamed873(o.directorySiteContacts); |
3122 unittest.expect(o.kind, unittest.equals('foo')); | 3122 unittest.expect(o.kind, unittest.equals('foo')); |
3123 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3123 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3124 } | 3124 } |
3125 buildCounterDirectorySiteContactsListResponse--; | 3125 buildCounterDirectorySiteContactsListResponse--; |
3126 } | 3126 } |
3127 | 3127 |
3128 core.int buildCounterDirectorySiteSettings = 0; | 3128 core.int buildCounterDirectorySiteSettings = 0; |
3129 buildDirectorySiteSettings() { | 3129 buildDirectorySiteSettings() { |
3130 var o = new api.DirectorySiteSettings(); | 3130 var o = new api.DirectorySiteSettings(); |
3131 buildCounterDirectorySiteSettings++; | 3131 buildCounterDirectorySiteSettings++; |
(...skipping 17 matching lines...) Expand all Loading... |
3149 checkDfpSettings(o.dfpSettings); | 3149 checkDfpSettings(o.dfpSettings); |
3150 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); | 3150 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); |
3151 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); | 3151 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); |
3152 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); | 3152 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); |
3153 unittest.expect(o.verificationTagOptOut, unittest.isTrue); | 3153 unittest.expect(o.verificationTagOptOut, unittest.isTrue); |
3154 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 3154 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
3155 } | 3155 } |
3156 buildCounterDirectorySiteSettings--; | 3156 buildCounterDirectorySiteSettings--; |
3157 } | 3157 } |
3158 | 3158 |
3159 buildUnnamed325() { | 3159 buildUnnamed874() { |
3160 var o = new core.List<api.DirectorySite>(); | 3160 var o = new core.List<api.DirectorySite>(); |
3161 o.add(buildDirectorySite()); | 3161 o.add(buildDirectorySite()); |
3162 o.add(buildDirectorySite()); | 3162 o.add(buildDirectorySite()); |
3163 return o; | 3163 return o; |
3164 } | 3164 } |
3165 | 3165 |
3166 checkUnnamed325(core.List<api.DirectorySite> o) { | 3166 checkUnnamed874(core.List<api.DirectorySite> o) { |
3167 unittest.expect(o, unittest.hasLength(2)); | 3167 unittest.expect(o, unittest.hasLength(2)); |
3168 checkDirectorySite(o[0]); | 3168 checkDirectorySite(o[0]); |
3169 checkDirectorySite(o[1]); | 3169 checkDirectorySite(o[1]); |
3170 } | 3170 } |
3171 | 3171 |
3172 core.int buildCounterDirectorySitesListResponse = 0; | 3172 core.int buildCounterDirectorySitesListResponse = 0; |
3173 buildDirectorySitesListResponse() { | 3173 buildDirectorySitesListResponse() { |
3174 var o = new api.DirectorySitesListResponse(); | 3174 var o = new api.DirectorySitesListResponse(); |
3175 buildCounterDirectorySitesListResponse++; | 3175 buildCounterDirectorySitesListResponse++; |
3176 if (buildCounterDirectorySitesListResponse < 3) { | 3176 if (buildCounterDirectorySitesListResponse < 3) { |
3177 o.directorySites = buildUnnamed325(); | 3177 o.directorySites = buildUnnamed874(); |
3178 o.kind = "foo"; | 3178 o.kind = "foo"; |
3179 o.nextPageToken = "foo"; | 3179 o.nextPageToken = "foo"; |
3180 } | 3180 } |
3181 buildCounterDirectorySitesListResponse--; | 3181 buildCounterDirectorySitesListResponse--; |
3182 return o; | 3182 return o; |
3183 } | 3183 } |
3184 | 3184 |
3185 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { | 3185 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { |
3186 buildCounterDirectorySitesListResponse++; | 3186 buildCounterDirectorySitesListResponse++; |
3187 if (buildCounterDirectorySitesListResponse < 3) { | 3187 if (buildCounterDirectorySitesListResponse < 3) { |
3188 checkUnnamed325(o.directorySites); | 3188 checkUnnamed874(o.directorySites); |
3189 unittest.expect(o.kind, unittest.equals('foo')); | 3189 unittest.expect(o.kind, unittest.equals('foo')); |
3190 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3190 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3191 } | 3191 } |
3192 buildCounterDirectorySitesListResponse--; | 3192 buildCounterDirectorySitesListResponse--; |
3193 } | 3193 } |
3194 | 3194 |
3195 buildUnnamed326() { | 3195 buildUnnamed875() { |
3196 var o = new core.List<core.String>(); | 3196 var o = new core.List<core.String>(); |
3197 o.add("foo"); | 3197 o.add("foo"); |
3198 o.add("foo"); | 3198 o.add("foo"); |
3199 return o; | 3199 return o; |
3200 } | 3200 } |
3201 | 3201 |
3202 checkUnnamed326(core.List<core.String> o) { | 3202 checkUnnamed875(core.List<core.String> o) { |
3203 unittest.expect(o, unittest.hasLength(2)); | 3203 unittest.expect(o, unittest.hasLength(2)); |
3204 unittest.expect(o[0], unittest.equals('foo')); | 3204 unittest.expect(o[0], unittest.equals('foo')); |
3205 unittest.expect(o[1], unittest.equals('foo')); | 3205 unittest.expect(o[1], unittest.equals('foo')); |
3206 } | 3206 } |
3207 | 3207 |
3208 core.int buildCounterEventTag = 0; | 3208 core.int buildCounterEventTag = 0; |
3209 buildEventTag() { | 3209 buildEventTag() { |
3210 var o = new api.EventTag(); | 3210 var o = new api.EventTag(); |
3211 buildCounterEventTag++; | 3211 buildCounterEventTag++; |
3212 if (buildCounterEventTag < 3) { | 3212 if (buildCounterEventTag < 3) { |
3213 o.accountId = "foo"; | 3213 o.accountId = "foo"; |
3214 o.advertiserId = "foo"; | 3214 o.advertiserId = "foo"; |
3215 o.advertiserIdDimensionValue = buildDimensionValue(); | 3215 o.advertiserIdDimensionValue = buildDimensionValue(); |
3216 o.campaignId = "foo"; | 3216 o.campaignId = "foo"; |
3217 o.campaignIdDimensionValue = buildDimensionValue(); | 3217 o.campaignIdDimensionValue = buildDimensionValue(); |
3218 o.enabledByDefault = true; | 3218 o.enabledByDefault = true; |
3219 o.id = "foo"; | 3219 o.id = "foo"; |
3220 o.kind = "foo"; | 3220 o.kind = "foo"; |
3221 o.name = "foo"; | 3221 o.name = "foo"; |
3222 o.siteFilterType = "foo"; | 3222 o.siteFilterType = "foo"; |
3223 o.siteIds = buildUnnamed326(); | 3223 o.siteIds = buildUnnamed875(); |
3224 o.sslCompliant = true; | 3224 o.sslCompliant = true; |
3225 o.status = "foo"; | 3225 o.status = "foo"; |
3226 o.subaccountId = "foo"; | 3226 o.subaccountId = "foo"; |
3227 o.type = "foo"; | 3227 o.type = "foo"; |
3228 o.url = "foo"; | 3228 o.url = "foo"; |
3229 o.urlEscapeLevels = 42; | 3229 o.urlEscapeLevels = 42; |
3230 } | 3230 } |
3231 buildCounterEventTag--; | 3231 buildCounterEventTag--; |
3232 return o; | 3232 return o; |
3233 } | 3233 } |
3234 | 3234 |
3235 checkEventTag(api.EventTag o) { | 3235 checkEventTag(api.EventTag o) { |
3236 buildCounterEventTag++; | 3236 buildCounterEventTag++; |
3237 if (buildCounterEventTag < 3) { | 3237 if (buildCounterEventTag < 3) { |
3238 unittest.expect(o.accountId, unittest.equals('foo')); | 3238 unittest.expect(o.accountId, unittest.equals('foo')); |
3239 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3239 unittest.expect(o.advertiserId, unittest.equals('foo')); |
3240 checkDimensionValue(o.advertiserIdDimensionValue); | 3240 checkDimensionValue(o.advertiserIdDimensionValue); |
3241 unittest.expect(o.campaignId, unittest.equals('foo')); | 3241 unittest.expect(o.campaignId, unittest.equals('foo')); |
3242 checkDimensionValue(o.campaignIdDimensionValue); | 3242 checkDimensionValue(o.campaignIdDimensionValue); |
3243 unittest.expect(o.enabledByDefault, unittest.isTrue); | 3243 unittest.expect(o.enabledByDefault, unittest.isTrue); |
3244 unittest.expect(o.id, unittest.equals('foo')); | 3244 unittest.expect(o.id, unittest.equals('foo')); |
3245 unittest.expect(o.kind, unittest.equals('foo')); | 3245 unittest.expect(o.kind, unittest.equals('foo')); |
3246 unittest.expect(o.name, unittest.equals('foo')); | 3246 unittest.expect(o.name, unittest.equals('foo')); |
3247 unittest.expect(o.siteFilterType, unittest.equals('foo')); | 3247 unittest.expect(o.siteFilterType, unittest.equals('foo')); |
3248 checkUnnamed326(o.siteIds); | 3248 checkUnnamed875(o.siteIds); |
3249 unittest.expect(o.sslCompliant, unittest.isTrue); | 3249 unittest.expect(o.sslCompliant, unittest.isTrue); |
3250 unittest.expect(o.status, unittest.equals('foo')); | 3250 unittest.expect(o.status, unittest.equals('foo')); |
3251 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3251 unittest.expect(o.subaccountId, unittest.equals('foo')); |
3252 unittest.expect(o.type, unittest.equals('foo')); | 3252 unittest.expect(o.type, unittest.equals('foo')); |
3253 unittest.expect(o.url, unittest.equals('foo')); | 3253 unittest.expect(o.url, unittest.equals('foo')); |
3254 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); | 3254 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); |
3255 } | 3255 } |
3256 buildCounterEventTag--; | 3256 buildCounterEventTag--; |
3257 } | 3257 } |
3258 | 3258 |
(...skipping 11 matching lines...) Expand all Loading... |
3270 | 3270 |
3271 checkEventTagOverride(api.EventTagOverride o) { | 3271 checkEventTagOverride(api.EventTagOverride o) { |
3272 buildCounterEventTagOverride++; | 3272 buildCounterEventTagOverride++; |
3273 if (buildCounterEventTagOverride < 3) { | 3273 if (buildCounterEventTagOverride < 3) { |
3274 unittest.expect(o.enabled, unittest.isTrue); | 3274 unittest.expect(o.enabled, unittest.isTrue); |
3275 unittest.expect(o.id, unittest.equals('foo')); | 3275 unittest.expect(o.id, unittest.equals('foo')); |
3276 } | 3276 } |
3277 buildCounterEventTagOverride--; | 3277 buildCounterEventTagOverride--; |
3278 } | 3278 } |
3279 | 3279 |
3280 buildUnnamed327() { | 3280 buildUnnamed876() { |
3281 var o = new core.List<api.EventTag>(); | 3281 var o = new core.List<api.EventTag>(); |
3282 o.add(buildEventTag()); | 3282 o.add(buildEventTag()); |
3283 o.add(buildEventTag()); | 3283 o.add(buildEventTag()); |
3284 return o; | 3284 return o; |
3285 } | 3285 } |
3286 | 3286 |
3287 checkUnnamed327(core.List<api.EventTag> o) { | 3287 checkUnnamed876(core.List<api.EventTag> o) { |
3288 unittest.expect(o, unittest.hasLength(2)); | 3288 unittest.expect(o, unittest.hasLength(2)); |
3289 checkEventTag(o[0]); | 3289 checkEventTag(o[0]); |
3290 checkEventTag(o[1]); | 3290 checkEventTag(o[1]); |
3291 } | 3291 } |
3292 | 3292 |
3293 core.int buildCounterEventTagsListResponse = 0; | 3293 core.int buildCounterEventTagsListResponse = 0; |
3294 buildEventTagsListResponse() { | 3294 buildEventTagsListResponse() { |
3295 var o = new api.EventTagsListResponse(); | 3295 var o = new api.EventTagsListResponse(); |
3296 buildCounterEventTagsListResponse++; | 3296 buildCounterEventTagsListResponse++; |
3297 if (buildCounterEventTagsListResponse < 3) { | 3297 if (buildCounterEventTagsListResponse < 3) { |
3298 o.eventTags = buildUnnamed327(); | 3298 o.eventTags = buildUnnamed876(); |
3299 o.kind = "foo"; | 3299 o.kind = "foo"; |
3300 } | 3300 } |
3301 buildCounterEventTagsListResponse--; | 3301 buildCounterEventTagsListResponse--; |
3302 return o; | 3302 return o; |
3303 } | 3303 } |
3304 | 3304 |
3305 checkEventTagsListResponse(api.EventTagsListResponse o) { | 3305 checkEventTagsListResponse(api.EventTagsListResponse o) { |
3306 buildCounterEventTagsListResponse++; | 3306 buildCounterEventTagsListResponse++; |
3307 if (buildCounterEventTagsListResponse < 3) { | 3307 if (buildCounterEventTagsListResponse < 3) { |
3308 checkUnnamed327(o.eventTags); | 3308 checkUnnamed876(o.eventTags); |
3309 unittest.expect(o.kind, unittest.equals('foo')); | 3309 unittest.expect(o.kind, unittest.equals('foo')); |
3310 } | 3310 } |
3311 buildCounterEventTagsListResponse--; | 3311 buildCounterEventTagsListResponse--; |
3312 } | 3312 } |
3313 | 3313 |
3314 core.int buildCounterFileUrls = 0; | 3314 core.int buildCounterFileUrls = 0; |
3315 buildFileUrls() { | 3315 buildFileUrls() { |
3316 var o = new api.FileUrls(); | 3316 var o = new api.FileUrls(); |
3317 buildCounterFileUrls++; | 3317 buildCounterFileUrls++; |
3318 if (buildCounterFileUrls < 3) { | 3318 if (buildCounterFileUrls < 3) { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3362 unittest.expect(o.id, unittest.equals('foo')); | 3362 unittest.expect(o.id, unittest.equals('foo')); |
3363 unittest.expect(o.kind, unittest.equals('foo')); | 3363 unittest.expect(o.kind, unittest.equals('foo')); |
3364 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); | 3364 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); |
3365 unittest.expect(o.reportId, unittest.equals('foo')); | 3365 unittest.expect(o.reportId, unittest.equals('foo')); |
3366 unittest.expect(o.status, unittest.equals('foo')); | 3366 unittest.expect(o.status, unittest.equals('foo')); |
3367 checkFileUrls(o.urls); | 3367 checkFileUrls(o.urls); |
3368 } | 3368 } |
3369 buildCounterFile--; | 3369 buildCounterFile--; |
3370 } | 3370 } |
3371 | 3371 |
3372 buildUnnamed328() { | 3372 buildUnnamed877() { |
3373 var o = new core.List<api.File>(); | 3373 var o = new core.List<api.File>(); |
3374 o.add(buildFile()); | 3374 o.add(buildFile()); |
3375 o.add(buildFile()); | 3375 o.add(buildFile()); |
3376 return o; | 3376 return o; |
3377 } | 3377 } |
3378 | 3378 |
3379 checkUnnamed328(core.List<api.File> o) { | 3379 checkUnnamed877(core.List<api.File> o) { |
3380 unittest.expect(o, unittest.hasLength(2)); | 3380 unittest.expect(o, unittest.hasLength(2)); |
3381 checkFile(o[0]); | 3381 checkFile(o[0]); |
3382 checkFile(o[1]); | 3382 checkFile(o[1]); |
3383 } | 3383 } |
3384 | 3384 |
3385 core.int buildCounterFileList = 0; | 3385 core.int buildCounterFileList = 0; |
3386 buildFileList() { | 3386 buildFileList() { |
3387 var o = new api.FileList(); | 3387 var o = new api.FileList(); |
3388 buildCounterFileList++; | 3388 buildCounterFileList++; |
3389 if (buildCounterFileList < 3) { | 3389 if (buildCounterFileList < 3) { |
3390 o.etag = "foo"; | 3390 o.etag = "foo"; |
3391 o.items = buildUnnamed328(); | 3391 o.items = buildUnnamed877(); |
3392 o.kind = "foo"; | 3392 o.kind = "foo"; |
3393 o.nextPageToken = "foo"; | 3393 o.nextPageToken = "foo"; |
3394 } | 3394 } |
3395 buildCounterFileList--; | 3395 buildCounterFileList--; |
3396 return o; | 3396 return o; |
3397 } | 3397 } |
3398 | 3398 |
3399 checkFileList(api.FileList o) { | 3399 checkFileList(api.FileList o) { |
3400 buildCounterFileList++; | 3400 buildCounterFileList++; |
3401 if (buildCounterFileList < 3) { | 3401 if (buildCounterFileList < 3) { |
3402 unittest.expect(o.etag, unittest.equals('foo')); | 3402 unittest.expect(o.etag, unittest.equals('foo')); |
3403 checkUnnamed328(o.items); | 3403 checkUnnamed877(o.items); |
3404 unittest.expect(o.kind, unittest.equals('foo')); | 3404 unittest.expect(o.kind, unittest.equals('foo')); |
3405 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3405 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3406 } | 3406 } |
3407 buildCounterFileList--; | 3407 buildCounterFileList--; |
3408 } | 3408 } |
3409 | 3409 |
3410 core.int buildCounterFloodlightActivitiesGenerateTagResponse = 0; | 3410 core.int buildCounterFloodlightActivitiesGenerateTagResponse = 0; |
3411 buildFloodlightActivitiesGenerateTagResponse() { | 3411 buildFloodlightActivitiesGenerateTagResponse() { |
3412 var o = new api.FloodlightActivitiesGenerateTagResponse(); | 3412 var o = new api.FloodlightActivitiesGenerateTagResponse(); |
3413 buildCounterFloodlightActivitiesGenerateTagResponse++; | 3413 buildCounterFloodlightActivitiesGenerateTagResponse++; |
3414 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { | 3414 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { |
3415 o.floodlightActivityTag = "foo"; | 3415 o.floodlightActivityTag = "foo"; |
3416 o.kind = "foo"; | 3416 o.kind = "foo"; |
3417 } | 3417 } |
3418 buildCounterFloodlightActivitiesGenerateTagResponse--; | 3418 buildCounterFloodlightActivitiesGenerateTagResponse--; |
3419 return o; | 3419 return o; |
3420 } | 3420 } |
3421 | 3421 |
3422 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { | 3422 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { |
3423 buildCounterFloodlightActivitiesGenerateTagResponse++; | 3423 buildCounterFloodlightActivitiesGenerateTagResponse++; |
3424 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { | 3424 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { |
3425 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); | 3425 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); |
3426 unittest.expect(o.kind, unittest.equals('foo')); | 3426 unittest.expect(o.kind, unittest.equals('foo')); |
3427 } | 3427 } |
3428 buildCounterFloodlightActivitiesGenerateTagResponse--; | 3428 buildCounterFloodlightActivitiesGenerateTagResponse--; |
3429 } | 3429 } |
3430 | 3430 |
3431 buildUnnamed329() { | 3431 buildUnnamed878() { |
3432 var o = new core.List<api.FloodlightActivity>(); | 3432 var o = new core.List<api.FloodlightActivity>(); |
3433 o.add(buildFloodlightActivity()); | 3433 o.add(buildFloodlightActivity()); |
3434 o.add(buildFloodlightActivity()); | 3434 o.add(buildFloodlightActivity()); |
3435 return o; | 3435 return o; |
3436 } | 3436 } |
3437 | 3437 |
3438 checkUnnamed329(core.List<api.FloodlightActivity> o) { | 3438 checkUnnamed878(core.List<api.FloodlightActivity> o) { |
3439 unittest.expect(o, unittest.hasLength(2)); | 3439 unittest.expect(o, unittest.hasLength(2)); |
3440 checkFloodlightActivity(o[0]); | 3440 checkFloodlightActivity(o[0]); |
3441 checkFloodlightActivity(o[1]); | 3441 checkFloodlightActivity(o[1]); |
3442 } | 3442 } |
3443 | 3443 |
3444 core.int buildCounterFloodlightActivitiesListResponse = 0; | 3444 core.int buildCounterFloodlightActivitiesListResponse = 0; |
3445 buildFloodlightActivitiesListResponse() { | 3445 buildFloodlightActivitiesListResponse() { |
3446 var o = new api.FloodlightActivitiesListResponse(); | 3446 var o = new api.FloodlightActivitiesListResponse(); |
3447 buildCounterFloodlightActivitiesListResponse++; | 3447 buildCounterFloodlightActivitiesListResponse++; |
3448 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3448 if (buildCounterFloodlightActivitiesListResponse < 3) { |
3449 o.floodlightActivities = buildUnnamed329(); | 3449 o.floodlightActivities = buildUnnamed878(); |
3450 o.kind = "foo"; | 3450 o.kind = "foo"; |
3451 o.nextPageToken = "foo"; | 3451 o.nextPageToken = "foo"; |
3452 } | 3452 } |
3453 buildCounterFloodlightActivitiesListResponse--; | 3453 buildCounterFloodlightActivitiesListResponse--; |
3454 return o; | 3454 return o; |
3455 } | 3455 } |
3456 | 3456 |
3457 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { | 3457 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { |
3458 buildCounterFloodlightActivitiesListResponse++; | 3458 buildCounterFloodlightActivitiesListResponse++; |
3459 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3459 if (buildCounterFloodlightActivitiesListResponse < 3) { |
3460 checkUnnamed329(o.floodlightActivities); | 3460 checkUnnamed878(o.floodlightActivities); |
3461 unittest.expect(o.kind, unittest.equals('foo')); | 3461 unittest.expect(o.kind, unittest.equals('foo')); |
3462 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3462 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3463 } | 3463 } |
3464 buildCounterFloodlightActivitiesListResponse--; | 3464 buildCounterFloodlightActivitiesListResponse--; |
3465 } | 3465 } |
3466 | 3466 |
3467 buildUnnamed330() { | 3467 buildUnnamed879() { |
3468 var o = new core.List<api.FloodlightActivityDynamicTag>(); | 3468 var o = new core.List<api.FloodlightActivityDynamicTag>(); |
3469 o.add(buildFloodlightActivityDynamicTag()); | 3469 o.add(buildFloodlightActivityDynamicTag()); |
3470 o.add(buildFloodlightActivityDynamicTag()); | 3470 o.add(buildFloodlightActivityDynamicTag()); |
3471 return o; | 3471 return o; |
3472 } | 3472 } |
3473 | 3473 |
3474 checkUnnamed330(core.List<api.FloodlightActivityDynamicTag> o) { | 3474 checkUnnamed879(core.List<api.FloodlightActivityDynamicTag> o) { |
3475 unittest.expect(o, unittest.hasLength(2)); | 3475 unittest.expect(o, unittest.hasLength(2)); |
3476 checkFloodlightActivityDynamicTag(o[0]); | 3476 checkFloodlightActivityDynamicTag(o[0]); |
3477 checkFloodlightActivityDynamicTag(o[1]); | 3477 checkFloodlightActivityDynamicTag(o[1]); |
3478 } | 3478 } |
3479 | 3479 |
3480 buildUnnamed331() { | 3480 buildUnnamed880() { |
3481 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); | 3481 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); |
3482 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3482 o.add(buildFloodlightActivityPublisherDynamicTag()); |
3483 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3483 o.add(buildFloodlightActivityPublisherDynamicTag()); |
3484 return o; | 3484 return o; |
3485 } | 3485 } |
3486 | 3486 |
3487 checkUnnamed331(core.List<api.FloodlightActivityPublisherDynamicTag> o) { | 3487 checkUnnamed880(core.List<api.FloodlightActivityPublisherDynamicTag> o) { |
3488 unittest.expect(o, unittest.hasLength(2)); | 3488 unittest.expect(o, unittest.hasLength(2)); |
3489 checkFloodlightActivityPublisherDynamicTag(o[0]); | 3489 checkFloodlightActivityPublisherDynamicTag(o[0]); |
3490 checkFloodlightActivityPublisherDynamicTag(o[1]); | 3490 checkFloodlightActivityPublisherDynamicTag(o[1]); |
3491 } | 3491 } |
3492 | 3492 |
3493 buildUnnamed332() { | 3493 buildUnnamed881() { |
3494 var o = new core.List<core.String>(); | 3494 var o = new core.List<core.String>(); |
3495 o.add("foo"); | 3495 o.add("foo"); |
3496 o.add("foo"); | 3496 o.add("foo"); |
3497 return o; | 3497 return o; |
3498 } | 3498 } |
3499 | 3499 |
3500 checkUnnamed332(core.List<core.String> o) { | 3500 checkUnnamed881(core.List<core.String> o) { |
3501 unittest.expect(o, unittest.hasLength(2)); | 3501 unittest.expect(o, unittest.hasLength(2)); |
3502 unittest.expect(o[0], unittest.equals('foo')); | 3502 unittest.expect(o[0], unittest.equals('foo')); |
3503 unittest.expect(o[1], unittest.equals('foo')); | 3503 unittest.expect(o[1], unittest.equals('foo')); |
3504 } | 3504 } |
3505 | 3505 |
3506 core.int buildCounterFloodlightActivity = 0; | 3506 core.int buildCounterFloodlightActivity = 0; |
3507 buildFloodlightActivity() { | 3507 buildFloodlightActivity() { |
3508 var o = new api.FloodlightActivity(); | 3508 var o = new api.FloodlightActivity(); |
3509 buildCounterFloodlightActivity++; | 3509 buildCounterFloodlightActivity++; |
3510 if (buildCounterFloodlightActivity < 3) { | 3510 if (buildCounterFloodlightActivity < 3) { |
3511 o.accountId = "foo"; | 3511 o.accountId = "foo"; |
3512 o.advertiserId = "foo"; | 3512 o.advertiserId = "foo"; |
3513 o.advertiserIdDimensionValue = buildDimensionValue(); | 3513 o.advertiserIdDimensionValue = buildDimensionValue(); |
3514 o.cacheBustingType = "foo"; | 3514 o.cacheBustingType = "foo"; |
3515 o.countingMethod = "foo"; | 3515 o.countingMethod = "foo"; |
3516 o.defaultTags = buildUnnamed330(); | 3516 o.defaultTags = buildUnnamed879(); |
3517 o.expectedUrl = "foo"; | 3517 o.expectedUrl = "foo"; |
3518 o.floodlightActivityGroupId = "foo"; | 3518 o.floodlightActivityGroupId = "foo"; |
3519 o.floodlightActivityGroupName = "foo"; | 3519 o.floodlightActivityGroupName = "foo"; |
3520 o.floodlightActivityGroupTagString = "foo"; | 3520 o.floodlightActivityGroupTagString = "foo"; |
3521 o.floodlightActivityGroupType = "foo"; | 3521 o.floodlightActivityGroupType = "foo"; |
3522 o.floodlightConfigurationId = "foo"; | 3522 o.floodlightConfigurationId = "foo"; |
3523 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); | 3523 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); |
3524 o.hidden = true; | 3524 o.hidden = true; |
3525 o.id = "foo"; | 3525 o.id = "foo"; |
3526 o.idDimensionValue = buildDimensionValue(); | 3526 o.idDimensionValue = buildDimensionValue(); |
3527 o.imageTagEnabled = true; | 3527 o.imageTagEnabled = true; |
3528 o.kind = "foo"; | 3528 o.kind = "foo"; |
3529 o.name = "foo"; | 3529 o.name = "foo"; |
3530 o.notes = "foo"; | 3530 o.notes = "foo"; |
3531 o.publisherTags = buildUnnamed331(); | 3531 o.publisherTags = buildUnnamed880(); |
3532 o.secure = true; | 3532 o.secure = true; |
3533 o.sslCompliant = true; | 3533 o.sslCompliant = true; |
3534 o.sslRequired = true; | 3534 o.sslRequired = true; |
3535 o.subaccountId = "foo"; | 3535 o.subaccountId = "foo"; |
3536 o.tagFormat = "foo"; | 3536 o.tagFormat = "foo"; |
3537 o.tagString = "foo"; | 3537 o.tagString = "foo"; |
3538 o.userDefinedVariableTypes = buildUnnamed332(); | 3538 o.userDefinedVariableTypes = buildUnnamed881(); |
3539 } | 3539 } |
3540 buildCounterFloodlightActivity--; | 3540 buildCounterFloodlightActivity--; |
3541 return o; | 3541 return o; |
3542 } | 3542 } |
3543 | 3543 |
3544 checkFloodlightActivity(api.FloodlightActivity o) { | 3544 checkFloodlightActivity(api.FloodlightActivity o) { |
3545 buildCounterFloodlightActivity++; | 3545 buildCounterFloodlightActivity++; |
3546 if (buildCounterFloodlightActivity < 3) { | 3546 if (buildCounterFloodlightActivity < 3) { |
3547 unittest.expect(o.accountId, unittest.equals('foo')); | 3547 unittest.expect(o.accountId, unittest.equals('foo')); |
3548 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3548 unittest.expect(o.advertiserId, unittest.equals('foo')); |
3549 checkDimensionValue(o.advertiserIdDimensionValue); | 3549 checkDimensionValue(o.advertiserIdDimensionValue); |
3550 unittest.expect(o.cacheBustingType, unittest.equals('foo')); | 3550 unittest.expect(o.cacheBustingType, unittest.equals('foo')); |
3551 unittest.expect(o.countingMethod, unittest.equals('foo')); | 3551 unittest.expect(o.countingMethod, unittest.equals('foo')); |
3552 checkUnnamed330(o.defaultTags); | 3552 checkUnnamed879(o.defaultTags); |
3553 unittest.expect(o.expectedUrl, unittest.equals('foo')); | 3553 unittest.expect(o.expectedUrl, unittest.equals('foo')); |
3554 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); | 3554 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); |
3555 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); | 3555 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); |
3556 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); | 3556 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); |
3557 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); | 3557 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); |
3558 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 3558 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
3559 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); | 3559 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); |
3560 unittest.expect(o.hidden, unittest.isTrue); | 3560 unittest.expect(o.hidden, unittest.isTrue); |
3561 unittest.expect(o.id, unittest.equals('foo')); | 3561 unittest.expect(o.id, unittest.equals('foo')); |
3562 checkDimensionValue(o.idDimensionValue); | 3562 checkDimensionValue(o.idDimensionValue); |
3563 unittest.expect(o.imageTagEnabled, unittest.isTrue); | 3563 unittest.expect(o.imageTagEnabled, unittest.isTrue); |
3564 unittest.expect(o.kind, unittest.equals('foo')); | 3564 unittest.expect(o.kind, unittest.equals('foo')); |
3565 unittest.expect(o.name, unittest.equals('foo')); | 3565 unittest.expect(o.name, unittest.equals('foo')); |
3566 unittest.expect(o.notes, unittest.equals('foo')); | 3566 unittest.expect(o.notes, unittest.equals('foo')); |
3567 checkUnnamed331(o.publisherTags); | 3567 checkUnnamed880(o.publisherTags); |
3568 unittest.expect(o.secure, unittest.isTrue); | 3568 unittest.expect(o.secure, unittest.isTrue); |
3569 unittest.expect(o.sslCompliant, unittest.isTrue); | 3569 unittest.expect(o.sslCompliant, unittest.isTrue); |
3570 unittest.expect(o.sslRequired, unittest.isTrue); | 3570 unittest.expect(o.sslRequired, unittest.isTrue); |
3571 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3571 unittest.expect(o.subaccountId, unittest.equals('foo')); |
3572 unittest.expect(o.tagFormat, unittest.equals('foo')); | 3572 unittest.expect(o.tagFormat, unittest.equals('foo')); |
3573 unittest.expect(o.tagString, unittest.equals('foo')); | 3573 unittest.expect(o.tagString, unittest.equals('foo')); |
3574 checkUnnamed332(o.userDefinedVariableTypes); | 3574 checkUnnamed881(o.userDefinedVariableTypes); |
3575 } | 3575 } |
3576 buildCounterFloodlightActivity--; | 3576 buildCounterFloodlightActivity--; |
3577 } | 3577 } |
3578 | 3578 |
3579 core.int buildCounterFloodlightActivityDynamicTag = 0; | 3579 core.int buildCounterFloodlightActivityDynamicTag = 0; |
3580 buildFloodlightActivityDynamicTag() { | 3580 buildFloodlightActivityDynamicTag() { |
3581 var o = new api.FloodlightActivityDynamicTag(); | 3581 var o = new api.FloodlightActivityDynamicTag(); |
3582 buildCounterFloodlightActivityDynamicTag++; | 3582 buildCounterFloodlightActivityDynamicTag++; |
3583 if (buildCounterFloodlightActivityDynamicTag < 3) { | 3583 if (buildCounterFloodlightActivityDynamicTag < 3) { |
3584 o.id = "foo"; | 3584 o.id = "foo"; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3633 checkDimensionValue(o.idDimensionValue); | 3633 checkDimensionValue(o.idDimensionValue); |
3634 unittest.expect(o.kind, unittest.equals('foo')); | 3634 unittest.expect(o.kind, unittest.equals('foo')); |
3635 unittest.expect(o.name, unittest.equals('foo')); | 3635 unittest.expect(o.name, unittest.equals('foo')); |
3636 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3636 unittest.expect(o.subaccountId, unittest.equals('foo')); |
3637 unittest.expect(o.tagString, unittest.equals('foo')); | 3637 unittest.expect(o.tagString, unittest.equals('foo')); |
3638 unittest.expect(o.type, unittest.equals('foo')); | 3638 unittest.expect(o.type, unittest.equals('foo')); |
3639 } | 3639 } |
3640 buildCounterFloodlightActivityGroup--; | 3640 buildCounterFloodlightActivityGroup--; |
3641 } | 3641 } |
3642 | 3642 |
3643 buildUnnamed333() { | 3643 buildUnnamed882() { |
3644 var o = new core.List<api.FloodlightActivityGroup>(); | 3644 var o = new core.List<api.FloodlightActivityGroup>(); |
3645 o.add(buildFloodlightActivityGroup()); | 3645 o.add(buildFloodlightActivityGroup()); |
3646 o.add(buildFloodlightActivityGroup()); | 3646 o.add(buildFloodlightActivityGroup()); |
3647 return o; | 3647 return o; |
3648 } | 3648 } |
3649 | 3649 |
3650 checkUnnamed333(core.List<api.FloodlightActivityGroup> o) { | 3650 checkUnnamed882(core.List<api.FloodlightActivityGroup> o) { |
3651 unittest.expect(o, unittest.hasLength(2)); | 3651 unittest.expect(o, unittest.hasLength(2)); |
3652 checkFloodlightActivityGroup(o[0]); | 3652 checkFloodlightActivityGroup(o[0]); |
3653 checkFloodlightActivityGroup(o[1]); | 3653 checkFloodlightActivityGroup(o[1]); |
3654 } | 3654 } |
3655 | 3655 |
3656 core.int buildCounterFloodlightActivityGroupsListResponse = 0; | 3656 core.int buildCounterFloodlightActivityGroupsListResponse = 0; |
3657 buildFloodlightActivityGroupsListResponse() { | 3657 buildFloodlightActivityGroupsListResponse() { |
3658 var o = new api.FloodlightActivityGroupsListResponse(); | 3658 var o = new api.FloodlightActivityGroupsListResponse(); |
3659 buildCounterFloodlightActivityGroupsListResponse++; | 3659 buildCounterFloodlightActivityGroupsListResponse++; |
3660 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3660 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
3661 o.floodlightActivityGroups = buildUnnamed333(); | 3661 o.floodlightActivityGroups = buildUnnamed882(); |
3662 o.kind = "foo"; | 3662 o.kind = "foo"; |
3663 o.nextPageToken = "foo"; | 3663 o.nextPageToken = "foo"; |
3664 } | 3664 } |
3665 buildCounterFloodlightActivityGroupsListResponse--; | 3665 buildCounterFloodlightActivityGroupsListResponse--; |
3666 return o; | 3666 return o; |
3667 } | 3667 } |
3668 | 3668 |
3669 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { | 3669 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { |
3670 buildCounterFloodlightActivityGroupsListResponse++; | 3670 buildCounterFloodlightActivityGroupsListResponse++; |
3671 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3671 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
3672 checkUnnamed333(o.floodlightActivityGroups); | 3672 checkUnnamed882(o.floodlightActivityGroups); |
3673 unittest.expect(o.kind, unittest.equals('foo')); | 3673 unittest.expect(o.kind, unittest.equals('foo')); |
3674 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3674 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3675 } | 3675 } |
3676 buildCounterFloodlightActivityGroupsListResponse--; | 3676 buildCounterFloodlightActivityGroupsListResponse--; |
3677 } | 3677 } |
3678 | 3678 |
3679 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; | 3679 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; |
3680 buildFloodlightActivityPublisherDynamicTag() { | 3680 buildFloodlightActivityPublisherDynamicTag() { |
3681 var o = new api.FloodlightActivityPublisherDynamicTag(); | 3681 var o = new api.FloodlightActivityPublisherDynamicTag(); |
3682 buildCounterFloodlightActivityPublisherDynamicTag++; | 3682 buildCounterFloodlightActivityPublisherDynamicTag++; |
(...skipping 15 matching lines...) Expand all Loading... |
3698 unittest.expect(o.clickThrough, unittest.isTrue); | 3698 unittest.expect(o.clickThrough, unittest.isTrue); |
3699 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 3699 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
3700 checkFloodlightActivityDynamicTag(o.dynamicTag); | 3700 checkFloodlightActivityDynamicTag(o.dynamicTag); |
3701 unittest.expect(o.siteId, unittest.equals('foo')); | 3701 unittest.expect(o.siteId, unittest.equals('foo')); |
3702 checkDimensionValue(o.siteIdDimensionValue); | 3702 checkDimensionValue(o.siteIdDimensionValue); |
3703 unittest.expect(o.viewThrough, unittest.isTrue); | 3703 unittest.expect(o.viewThrough, unittest.isTrue); |
3704 } | 3704 } |
3705 buildCounterFloodlightActivityPublisherDynamicTag--; | 3705 buildCounterFloodlightActivityPublisherDynamicTag--; |
3706 } | 3706 } |
3707 | 3707 |
3708 buildUnnamed334() { | 3708 buildUnnamed883() { |
3709 var o = new core.List<core.String>(); | 3709 var o = new core.List<core.String>(); |
3710 o.add("foo"); | 3710 o.add("foo"); |
3711 o.add("foo"); | 3711 o.add("foo"); |
3712 return o; | 3712 return o; |
3713 } | 3713 } |
3714 | 3714 |
3715 checkUnnamed334(core.List<core.String> o) { | 3715 checkUnnamed883(core.List<core.String> o) { |
3716 unittest.expect(o, unittest.hasLength(2)); | 3716 unittest.expect(o, unittest.hasLength(2)); |
3717 unittest.expect(o[0], unittest.equals('foo')); | 3717 unittest.expect(o[0], unittest.equals('foo')); |
3718 unittest.expect(o[1], unittest.equals('foo')); | 3718 unittest.expect(o[1], unittest.equals('foo')); |
3719 } | 3719 } |
3720 | 3720 |
3721 buildUnnamed335() { | 3721 buildUnnamed884() { |
3722 var o = new core.List<api.UserDefinedVariableConfiguration>(); | 3722 var o = new core.List<api.UserDefinedVariableConfiguration>(); |
3723 o.add(buildUserDefinedVariableConfiguration()); | 3723 o.add(buildUserDefinedVariableConfiguration()); |
3724 o.add(buildUserDefinedVariableConfiguration()); | 3724 o.add(buildUserDefinedVariableConfiguration()); |
3725 return o; | 3725 return o; |
3726 } | 3726 } |
3727 | 3727 |
3728 checkUnnamed335(core.List<api.UserDefinedVariableConfiguration> o) { | 3728 checkUnnamed884(core.List<api.UserDefinedVariableConfiguration> o) { |
3729 unittest.expect(o, unittest.hasLength(2)); | 3729 unittest.expect(o, unittest.hasLength(2)); |
3730 checkUserDefinedVariableConfiguration(o[0]); | 3730 checkUserDefinedVariableConfiguration(o[0]); |
3731 checkUserDefinedVariableConfiguration(o[1]); | 3731 checkUserDefinedVariableConfiguration(o[1]); |
3732 } | 3732 } |
3733 | 3733 |
3734 core.int buildCounterFloodlightConfiguration = 0; | 3734 core.int buildCounterFloodlightConfiguration = 0; |
3735 buildFloodlightConfiguration() { | 3735 buildFloodlightConfiguration() { |
3736 var o = new api.FloodlightConfiguration(); | 3736 var o = new api.FloodlightConfiguration(); |
3737 buildCounterFloodlightConfiguration++; | 3737 buildCounterFloodlightConfiguration++; |
3738 if (buildCounterFloodlightConfiguration < 3) { | 3738 if (buildCounterFloodlightConfiguration < 3) { |
3739 o.accountId = "foo"; | 3739 o.accountId = "foo"; |
3740 o.advertiserId = "foo"; | 3740 o.advertiserId = "foo"; |
3741 o.advertiserIdDimensionValue = buildDimensionValue(); | 3741 o.advertiserIdDimensionValue = buildDimensionValue(); |
3742 o.analyticsDataSharingEnabled = true; | 3742 o.analyticsDataSharingEnabled = true; |
3743 o.exposureToConversionEnabled = true; | 3743 o.exposureToConversionEnabled = true; |
3744 o.firstDayOfWeek = "foo"; | 3744 o.firstDayOfWeek = "foo"; |
3745 o.id = "foo"; | 3745 o.id = "foo"; |
3746 o.idDimensionValue = buildDimensionValue(); | 3746 o.idDimensionValue = buildDimensionValue(); |
3747 o.kind = "foo"; | 3747 o.kind = "foo"; |
3748 o.lookbackConfiguration = buildLookbackConfiguration(); | 3748 o.lookbackConfiguration = buildLookbackConfiguration(); |
3749 o.naturalSearchConversionAttributionOption = "foo"; | 3749 o.naturalSearchConversionAttributionOption = "foo"; |
3750 o.omnitureSettings = buildOmnitureSettings(); | 3750 o.omnitureSettings = buildOmnitureSettings(); |
3751 o.sslRequired = true; | 3751 o.sslRequired = true; |
3752 o.standardVariableTypes = buildUnnamed334(); | 3752 o.standardVariableTypes = buildUnnamed883(); |
3753 o.subaccountId = "foo"; | 3753 o.subaccountId = "foo"; |
3754 o.tagSettings = buildTagSettings(); | 3754 o.tagSettings = buildTagSettings(); |
3755 o.userDefinedVariableConfigurations = buildUnnamed335(); | 3755 o.userDefinedVariableConfigurations = buildUnnamed884(); |
3756 } | 3756 } |
3757 buildCounterFloodlightConfiguration--; | 3757 buildCounterFloodlightConfiguration--; |
3758 return o; | 3758 return o; |
3759 } | 3759 } |
3760 | 3760 |
3761 checkFloodlightConfiguration(api.FloodlightConfiguration o) { | 3761 checkFloodlightConfiguration(api.FloodlightConfiguration o) { |
3762 buildCounterFloodlightConfiguration++; | 3762 buildCounterFloodlightConfiguration++; |
3763 if (buildCounterFloodlightConfiguration < 3) { | 3763 if (buildCounterFloodlightConfiguration < 3) { |
3764 unittest.expect(o.accountId, unittest.equals('foo')); | 3764 unittest.expect(o.accountId, unittest.equals('foo')); |
3765 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3765 unittest.expect(o.advertiserId, unittest.equals('foo')); |
3766 checkDimensionValue(o.advertiserIdDimensionValue); | 3766 checkDimensionValue(o.advertiserIdDimensionValue); |
3767 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); | 3767 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); |
3768 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); | 3768 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); |
3769 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); | 3769 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); |
3770 unittest.expect(o.id, unittest.equals('foo')); | 3770 unittest.expect(o.id, unittest.equals('foo')); |
3771 checkDimensionValue(o.idDimensionValue); | 3771 checkDimensionValue(o.idDimensionValue); |
3772 unittest.expect(o.kind, unittest.equals('foo')); | 3772 unittest.expect(o.kind, unittest.equals('foo')); |
3773 checkLookbackConfiguration(o.lookbackConfiguration); | 3773 checkLookbackConfiguration(o.lookbackConfiguration); |
3774 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); | 3774 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); |
3775 checkOmnitureSettings(o.omnitureSettings); | 3775 checkOmnitureSettings(o.omnitureSettings); |
3776 unittest.expect(o.sslRequired, unittest.isTrue); | 3776 unittest.expect(o.sslRequired, unittest.isTrue); |
3777 checkUnnamed334(o.standardVariableTypes); | 3777 checkUnnamed883(o.standardVariableTypes); |
3778 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3778 unittest.expect(o.subaccountId, unittest.equals('foo')); |
3779 checkTagSettings(o.tagSettings); | 3779 checkTagSettings(o.tagSettings); |
3780 checkUnnamed335(o.userDefinedVariableConfigurations); | 3780 checkUnnamed884(o.userDefinedVariableConfigurations); |
3781 } | 3781 } |
3782 buildCounterFloodlightConfiguration--; | 3782 buildCounterFloodlightConfiguration--; |
3783 } | 3783 } |
3784 | 3784 |
3785 buildUnnamed336() { | 3785 buildUnnamed885() { |
3786 var o = new core.List<api.FloodlightConfiguration>(); | 3786 var o = new core.List<api.FloodlightConfiguration>(); |
3787 o.add(buildFloodlightConfiguration()); | 3787 o.add(buildFloodlightConfiguration()); |
3788 o.add(buildFloodlightConfiguration()); | 3788 o.add(buildFloodlightConfiguration()); |
3789 return o; | 3789 return o; |
3790 } | 3790 } |
3791 | 3791 |
3792 checkUnnamed336(core.List<api.FloodlightConfiguration> o) { | 3792 checkUnnamed885(core.List<api.FloodlightConfiguration> o) { |
3793 unittest.expect(o, unittest.hasLength(2)); | 3793 unittest.expect(o, unittest.hasLength(2)); |
3794 checkFloodlightConfiguration(o[0]); | 3794 checkFloodlightConfiguration(o[0]); |
3795 checkFloodlightConfiguration(o[1]); | 3795 checkFloodlightConfiguration(o[1]); |
3796 } | 3796 } |
3797 | 3797 |
3798 core.int buildCounterFloodlightConfigurationsListResponse = 0; | 3798 core.int buildCounterFloodlightConfigurationsListResponse = 0; |
3799 buildFloodlightConfigurationsListResponse() { | 3799 buildFloodlightConfigurationsListResponse() { |
3800 var o = new api.FloodlightConfigurationsListResponse(); | 3800 var o = new api.FloodlightConfigurationsListResponse(); |
3801 buildCounterFloodlightConfigurationsListResponse++; | 3801 buildCounterFloodlightConfigurationsListResponse++; |
3802 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3802 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
3803 o.floodlightConfigurations = buildUnnamed336(); | 3803 o.floodlightConfigurations = buildUnnamed885(); |
3804 o.kind = "foo"; | 3804 o.kind = "foo"; |
3805 } | 3805 } |
3806 buildCounterFloodlightConfigurationsListResponse--; | 3806 buildCounterFloodlightConfigurationsListResponse--; |
3807 return o; | 3807 return o; |
3808 } | 3808 } |
3809 | 3809 |
3810 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { | 3810 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { |
3811 buildCounterFloodlightConfigurationsListResponse++; | 3811 buildCounterFloodlightConfigurationsListResponse++; |
3812 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3812 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
3813 checkUnnamed336(o.floodlightConfigurations); | 3813 checkUnnamed885(o.floodlightConfigurations); |
3814 unittest.expect(o.kind, unittest.equals('foo')); | 3814 unittest.expect(o.kind, unittest.equals('foo')); |
3815 } | 3815 } |
3816 buildCounterFloodlightConfigurationsListResponse--; | 3816 buildCounterFloodlightConfigurationsListResponse--; |
3817 } | 3817 } |
3818 | 3818 |
3819 buildUnnamed337() { | 3819 buildUnnamed886() { |
3820 var o = new core.List<api.Dimension>(); | 3820 var o = new core.List<api.Dimension>(); |
3821 o.add(buildDimension()); | 3821 o.add(buildDimension()); |
3822 o.add(buildDimension()); | 3822 o.add(buildDimension()); |
3823 return o; | 3823 return o; |
3824 } | 3824 } |
3825 | 3825 |
3826 checkUnnamed337(core.List<api.Dimension> o) { | 3826 checkUnnamed886(core.List<api.Dimension> o) { |
3827 unittest.expect(o, unittest.hasLength(2)); | 3827 unittest.expect(o, unittest.hasLength(2)); |
3828 checkDimension(o[0]); | 3828 checkDimension(o[0]); |
3829 checkDimension(o[1]); | 3829 checkDimension(o[1]); |
3830 } | 3830 } |
3831 | 3831 |
3832 buildUnnamed338() { | 3832 buildUnnamed887() { |
3833 var o = new core.List<api.Dimension>(); | 3833 var o = new core.List<api.Dimension>(); |
3834 o.add(buildDimension()); | 3834 o.add(buildDimension()); |
3835 o.add(buildDimension()); | 3835 o.add(buildDimension()); |
3836 return o; | 3836 return o; |
3837 } | 3837 } |
3838 | 3838 |
3839 checkUnnamed338(core.List<api.Dimension> o) { | 3839 checkUnnamed887(core.List<api.Dimension> o) { |
3840 unittest.expect(o, unittest.hasLength(2)); | 3840 unittest.expect(o, unittest.hasLength(2)); |
3841 checkDimension(o[0]); | 3841 checkDimension(o[0]); |
3842 checkDimension(o[1]); | 3842 checkDimension(o[1]); |
3843 } | 3843 } |
3844 | 3844 |
3845 buildUnnamed339() { | 3845 buildUnnamed888() { |
3846 var o = new core.List<api.Metric>(); | 3846 var o = new core.List<api.Metric>(); |
3847 o.add(buildMetric()); | 3847 o.add(buildMetric()); |
3848 o.add(buildMetric()); | 3848 o.add(buildMetric()); |
3849 return o; | 3849 return o; |
3850 } | 3850 } |
3851 | 3851 |
3852 checkUnnamed339(core.List<api.Metric> o) { | 3852 checkUnnamed888(core.List<api.Metric> o) { |
3853 unittest.expect(o, unittest.hasLength(2)); | 3853 unittest.expect(o, unittest.hasLength(2)); |
3854 checkMetric(o[0]); | 3854 checkMetric(o[0]); |
3855 checkMetric(o[1]); | 3855 checkMetric(o[1]); |
3856 } | 3856 } |
3857 | 3857 |
3858 core.int buildCounterFloodlightReportCompatibleFields = 0; | 3858 core.int buildCounterFloodlightReportCompatibleFields = 0; |
3859 buildFloodlightReportCompatibleFields() { | 3859 buildFloodlightReportCompatibleFields() { |
3860 var o = new api.FloodlightReportCompatibleFields(); | 3860 var o = new api.FloodlightReportCompatibleFields(); |
3861 buildCounterFloodlightReportCompatibleFields++; | 3861 buildCounterFloodlightReportCompatibleFields++; |
3862 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3862 if (buildCounterFloodlightReportCompatibleFields < 3) { |
3863 o.dimensionFilters = buildUnnamed337(); | 3863 o.dimensionFilters = buildUnnamed886(); |
3864 o.dimensions = buildUnnamed338(); | 3864 o.dimensions = buildUnnamed887(); |
3865 o.kind = "foo"; | 3865 o.kind = "foo"; |
3866 o.metrics = buildUnnamed339(); | 3866 o.metrics = buildUnnamed888(); |
3867 } | 3867 } |
3868 buildCounterFloodlightReportCompatibleFields--; | 3868 buildCounterFloodlightReportCompatibleFields--; |
3869 return o; | 3869 return o; |
3870 } | 3870 } |
3871 | 3871 |
3872 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { | 3872 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { |
3873 buildCounterFloodlightReportCompatibleFields++; | 3873 buildCounterFloodlightReportCompatibleFields++; |
3874 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3874 if (buildCounterFloodlightReportCompatibleFields < 3) { |
3875 checkUnnamed337(o.dimensionFilters); | 3875 checkUnnamed886(o.dimensionFilters); |
3876 checkUnnamed338(o.dimensions); | 3876 checkUnnamed887(o.dimensions); |
3877 unittest.expect(o.kind, unittest.equals('foo')); | 3877 unittest.expect(o.kind, unittest.equals('foo')); |
3878 checkUnnamed339(o.metrics); | 3878 checkUnnamed888(o.metrics); |
3879 } | 3879 } |
3880 buildCounterFloodlightReportCompatibleFields--; | 3880 buildCounterFloodlightReportCompatibleFields--; |
3881 } | 3881 } |
3882 | 3882 |
3883 core.int buildCounterFrequencyCap = 0; | 3883 core.int buildCounterFrequencyCap = 0; |
3884 buildFrequencyCap() { | 3884 buildFrequencyCap() { |
3885 var o = new api.FrequencyCap(); | 3885 var o = new api.FrequencyCap(); |
3886 buildCounterFrequencyCap++; | 3886 buildCounterFrequencyCap++; |
3887 if (buildCounterFrequencyCap < 3) { | 3887 if (buildCounterFrequencyCap < 3) { |
3888 o.duration = "foo"; | 3888 o.duration = "foo"; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3921 if (buildCounterFsCommand < 3) { | 3921 if (buildCounterFsCommand < 3) { |
3922 unittest.expect(o.left, unittest.equals(42)); | 3922 unittest.expect(o.left, unittest.equals(42)); |
3923 unittest.expect(o.positionOption, unittest.equals('foo')); | 3923 unittest.expect(o.positionOption, unittest.equals('foo')); |
3924 unittest.expect(o.top, unittest.equals(42)); | 3924 unittest.expect(o.top, unittest.equals(42)); |
3925 unittest.expect(o.windowHeight, unittest.equals(42)); | 3925 unittest.expect(o.windowHeight, unittest.equals(42)); |
3926 unittest.expect(o.windowWidth, unittest.equals(42)); | 3926 unittest.expect(o.windowWidth, unittest.equals(42)); |
3927 } | 3927 } |
3928 buildCounterFsCommand--; | 3928 buildCounterFsCommand--; |
3929 } | 3929 } |
3930 | 3930 |
3931 buildUnnamed340() { | 3931 buildUnnamed889() { |
3932 var o = new core.List<api.City>(); | 3932 var o = new core.List<api.City>(); |
3933 o.add(buildCity()); | 3933 o.add(buildCity()); |
3934 o.add(buildCity()); | 3934 o.add(buildCity()); |
3935 return o; | 3935 return o; |
3936 } | 3936 } |
3937 | 3937 |
3938 checkUnnamed340(core.List<api.City> o) { | 3938 checkUnnamed889(core.List<api.City> o) { |
3939 unittest.expect(o, unittest.hasLength(2)); | 3939 unittest.expect(o, unittest.hasLength(2)); |
3940 checkCity(o[0]); | 3940 checkCity(o[0]); |
3941 checkCity(o[1]); | 3941 checkCity(o[1]); |
3942 } | 3942 } |
3943 | 3943 |
3944 buildUnnamed341() { | 3944 buildUnnamed890() { |
3945 var o = new core.List<api.Country>(); | 3945 var o = new core.List<api.Country>(); |
3946 o.add(buildCountry()); | 3946 o.add(buildCountry()); |
3947 o.add(buildCountry()); | 3947 o.add(buildCountry()); |
3948 return o; | 3948 return o; |
3949 } | 3949 } |
3950 | 3950 |
3951 checkUnnamed341(core.List<api.Country> o) { | 3951 checkUnnamed890(core.List<api.Country> o) { |
3952 unittest.expect(o, unittest.hasLength(2)); | 3952 unittest.expect(o, unittest.hasLength(2)); |
3953 checkCountry(o[0]); | 3953 checkCountry(o[0]); |
3954 checkCountry(o[1]); | 3954 checkCountry(o[1]); |
3955 } | 3955 } |
3956 | 3956 |
3957 buildUnnamed342() { | 3957 buildUnnamed891() { |
3958 var o = new core.List<api.Metro>(); | 3958 var o = new core.List<api.Metro>(); |
3959 o.add(buildMetro()); | 3959 o.add(buildMetro()); |
3960 o.add(buildMetro()); | 3960 o.add(buildMetro()); |
3961 return o; | 3961 return o; |
3962 } | 3962 } |
3963 | 3963 |
3964 checkUnnamed342(core.List<api.Metro> o) { | 3964 checkUnnamed891(core.List<api.Metro> o) { |
3965 unittest.expect(o, unittest.hasLength(2)); | 3965 unittest.expect(o, unittest.hasLength(2)); |
3966 checkMetro(o[0]); | 3966 checkMetro(o[0]); |
3967 checkMetro(o[1]); | 3967 checkMetro(o[1]); |
3968 } | 3968 } |
3969 | 3969 |
3970 buildUnnamed343() { | 3970 buildUnnamed892() { |
3971 var o = new core.List<api.PostalCode>(); | 3971 var o = new core.List<api.PostalCode>(); |
3972 o.add(buildPostalCode()); | 3972 o.add(buildPostalCode()); |
3973 o.add(buildPostalCode()); | 3973 o.add(buildPostalCode()); |
3974 return o; | 3974 return o; |
3975 } | 3975 } |
3976 | 3976 |
3977 checkUnnamed343(core.List<api.PostalCode> o) { | 3977 checkUnnamed892(core.List<api.PostalCode> o) { |
3978 unittest.expect(o, unittest.hasLength(2)); | 3978 unittest.expect(o, unittest.hasLength(2)); |
3979 checkPostalCode(o[0]); | 3979 checkPostalCode(o[0]); |
3980 checkPostalCode(o[1]); | 3980 checkPostalCode(o[1]); |
3981 } | 3981 } |
3982 | 3982 |
3983 buildUnnamed344() { | 3983 buildUnnamed893() { |
3984 var o = new core.List<api.Region>(); | 3984 var o = new core.List<api.Region>(); |
3985 o.add(buildRegion()); | 3985 o.add(buildRegion()); |
3986 o.add(buildRegion()); | 3986 o.add(buildRegion()); |
3987 return o; | 3987 return o; |
3988 } | 3988 } |
3989 | 3989 |
3990 checkUnnamed344(core.List<api.Region> o) { | 3990 checkUnnamed893(core.List<api.Region> o) { |
3991 unittest.expect(o, unittest.hasLength(2)); | 3991 unittest.expect(o, unittest.hasLength(2)); |
3992 checkRegion(o[0]); | 3992 checkRegion(o[0]); |
3993 checkRegion(o[1]); | 3993 checkRegion(o[1]); |
3994 } | 3994 } |
3995 | 3995 |
3996 core.int buildCounterGeoTargeting = 0; | 3996 core.int buildCounterGeoTargeting = 0; |
3997 buildGeoTargeting() { | 3997 buildGeoTargeting() { |
3998 var o = new api.GeoTargeting(); | 3998 var o = new api.GeoTargeting(); |
3999 buildCounterGeoTargeting++; | 3999 buildCounterGeoTargeting++; |
4000 if (buildCounterGeoTargeting < 3) { | 4000 if (buildCounterGeoTargeting < 3) { |
4001 o.cities = buildUnnamed340(); | 4001 o.cities = buildUnnamed889(); |
4002 o.countries = buildUnnamed341(); | 4002 o.countries = buildUnnamed890(); |
4003 o.excludeCountries = true; | 4003 o.excludeCountries = true; |
4004 o.metros = buildUnnamed342(); | 4004 o.metros = buildUnnamed891(); |
4005 o.postalCodes = buildUnnamed343(); | 4005 o.postalCodes = buildUnnamed892(); |
4006 o.regions = buildUnnamed344(); | 4006 o.regions = buildUnnamed893(); |
4007 } | 4007 } |
4008 buildCounterGeoTargeting--; | 4008 buildCounterGeoTargeting--; |
4009 return o; | 4009 return o; |
4010 } | 4010 } |
4011 | 4011 |
4012 checkGeoTargeting(api.GeoTargeting o) { | 4012 checkGeoTargeting(api.GeoTargeting o) { |
4013 buildCounterGeoTargeting++; | 4013 buildCounterGeoTargeting++; |
4014 if (buildCounterGeoTargeting < 3) { | 4014 if (buildCounterGeoTargeting < 3) { |
4015 checkUnnamed340(o.cities); | 4015 checkUnnamed889(o.cities); |
4016 checkUnnamed341(o.countries); | 4016 checkUnnamed890(o.countries); |
4017 unittest.expect(o.excludeCountries, unittest.isTrue); | 4017 unittest.expect(o.excludeCountries, unittest.isTrue); |
4018 checkUnnamed342(o.metros); | 4018 checkUnnamed891(o.metros); |
4019 checkUnnamed343(o.postalCodes); | 4019 checkUnnamed892(o.postalCodes); |
4020 checkUnnamed344(o.regions); | 4020 checkUnnamed893(o.regions); |
4021 } | 4021 } |
4022 buildCounterGeoTargeting--; | 4022 buildCounterGeoTargeting--; |
4023 } | 4023 } |
4024 | 4024 |
4025 core.int buildCounterKeyValueTargetingExpression = 0; | 4025 core.int buildCounterKeyValueTargetingExpression = 0; |
4026 buildKeyValueTargetingExpression() { | 4026 buildKeyValueTargetingExpression() { |
4027 var o = new api.KeyValueTargetingExpression(); | 4027 var o = new api.KeyValueTargetingExpression(); |
4028 buildCounterKeyValueTargetingExpression++; | 4028 buildCounterKeyValueTargetingExpression++; |
4029 if (buildCounterKeyValueTargetingExpression < 3) { | 4029 if (buildCounterKeyValueTargetingExpression < 3) { |
4030 o.expression = "foo"; | 4030 o.expression = "foo"; |
(...skipping 30 matching lines...) Expand all Loading... |
4061 if (buildCounterLandingPage < 3) { | 4061 if (buildCounterLandingPage < 3) { |
4062 unittest.expect(o.default_, unittest.isTrue); | 4062 unittest.expect(o.default_, unittest.isTrue); |
4063 unittest.expect(o.id, unittest.equals('foo')); | 4063 unittest.expect(o.id, unittest.equals('foo')); |
4064 unittest.expect(o.kind, unittest.equals('foo')); | 4064 unittest.expect(o.kind, unittest.equals('foo')); |
4065 unittest.expect(o.name, unittest.equals('foo')); | 4065 unittest.expect(o.name, unittest.equals('foo')); |
4066 unittest.expect(o.url, unittest.equals('foo')); | 4066 unittest.expect(o.url, unittest.equals('foo')); |
4067 } | 4067 } |
4068 buildCounterLandingPage--; | 4068 buildCounterLandingPage--; |
4069 } | 4069 } |
4070 | 4070 |
4071 buildUnnamed345() { | 4071 buildUnnamed894() { |
4072 var o = new core.List<api.LandingPage>(); | 4072 var o = new core.List<api.LandingPage>(); |
4073 o.add(buildLandingPage()); | 4073 o.add(buildLandingPage()); |
4074 o.add(buildLandingPage()); | 4074 o.add(buildLandingPage()); |
4075 return o; | 4075 return o; |
4076 } | 4076 } |
4077 | 4077 |
4078 checkUnnamed345(core.List<api.LandingPage> o) { | 4078 checkUnnamed894(core.List<api.LandingPage> o) { |
4079 unittest.expect(o, unittest.hasLength(2)); | 4079 unittest.expect(o, unittest.hasLength(2)); |
4080 checkLandingPage(o[0]); | 4080 checkLandingPage(o[0]); |
4081 checkLandingPage(o[1]); | 4081 checkLandingPage(o[1]); |
4082 } | 4082 } |
4083 | 4083 |
4084 core.int buildCounterLandingPagesListResponse = 0; | 4084 core.int buildCounterLandingPagesListResponse = 0; |
4085 buildLandingPagesListResponse() { | 4085 buildLandingPagesListResponse() { |
4086 var o = new api.LandingPagesListResponse(); | 4086 var o = new api.LandingPagesListResponse(); |
4087 buildCounterLandingPagesListResponse++; | 4087 buildCounterLandingPagesListResponse++; |
4088 if (buildCounterLandingPagesListResponse < 3) { | 4088 if (buildCounterLandingPagesListResponse < 3) { |
4089 o.kind = "foo"; | 4089 o.kind = "foo"; |
4090 o.landingPages = buildUnnamed345(); | 4090 o.landingPages = buildUnnamed894(); |
4091 } | 4091 } |
4092 buildCounterLandingPagesListResponse--; | 4092 buildCounterLandingPagesListResponse--; |
4093 return o; | 4093 return o; |
4094 } | 4094 } |
4095 | 4095 |
4096 checkLandingPagesListResponse(api.LandingPagesListResponse o) { | 4096 checkLandingPagesListResponse(api.LandingPagesListResponse o) { |
4097 buildCounterLandingPagesListResponse++; | 4097 buildCounterLandingPagesListResponse++; |
4098 if (buildCounterLandingPagesListResponse < 3) { | 4098 if (buildCounterLandingPagesListResponse < 3) { |
4099 unittest.expect(o.kind, unittest.equals('foo')); | 4099 unittest.expect(o.kind, unittest.equals('foo')); |
4100 checkUnnamed345(o.landingPages); | 4100 checkUnnamed894(o.landingPages); |
4101 } | 4101 } |
4102 buildCounterLandingPagesListResponse--; | 4102 buildCounterLandingPagesListResponse--; |
4103 } | 4103 } |
4104 | 4104 |
4105 core.int buildCounterLastModifiedInfo = 0; | 4105 core.int buildCounterLastModifiedInfo = 0; |
4106 buildLastModifiedInfo() { | 4106 buildLastModifiedInfo() { |
4107 var o = new api.LastModifiedInfo(); | 4107 var o = new api.LastModifiedInfo(); |
4108 buildCounterLastModifiedInfo++; | 4108 buildCounterLastModifiedInfo++; |
4109 if (buildCounterLastModifiedInfo < 3) { | 4109 if (buildCounterLastModifiedInfo < 3) { |
4110 o.time = "foo"; | 4110 o.time = "foo"; |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4206 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4206 unittest.expect(o.countryDartId, unittest.equals('foo')); |
4207 unittest.expect(o.dartId, unittest.equals('foo')); | 4207 unittest.expect(o.dartId, unittest.equals('foo')); |
4208 unittest.expect(o.dmaId, unittest.equals('foo')); | 4208 unittest.expect(o.dmaId, unittest.equals('foo')); |
4209 unittest.expect(o.kind, unittest.equals('foo')); | 4209 unittest.expect(o.kind, unittest.equals('foo')); |
4210 unittest.expect(o.metroCode, unittest.equals('foo')); | 4210 unittest.expect(o.metroCode, unittest.equals('foo')); |
4211 unittest.expect(o.name, unittest.equals('foo')); | 4211 unittest.expect(o.name, unittest.equals('foo')); |
4212 } | 4212 } |
4213 buildCounterMetro--; | 4213 buildCounterMetro--; |
4214 } | 4214 } |
4215 | 4215 |
4216 buildUnnamed346() { | 4216 buildUnnamed895() { |
4217 var o = new core.List<api.Metro>(); | 4217 var o = new core.List<api.Metro>(); |
4218 o.add(buildMetro()); | 4218 o.add(buildMetro()); |
4219 o.add(buildMetro()); | 4219 o.add(buildMetro()); |
4220 return o; | 4220 return o; |
4221 } | 4221 } |
4222 | 4222 |
4223 checkUnnamed346(core.List<api.Metro> o) { | 4223 checkUnnamed895(core.List<api.Metro> o) { |
4224 unittest.expect(o, unittest.hasLength(2)); | 4224 unittest.expect(o, unittest.hasLength(2)); |
4225 checkMetro(o[0]); | 4225 checkMetro(o[0]); |
4226 checkMetro(o[1]); | 4226 checkMetro(o[1]); |
4227 } | 4227 } |
4228 | 4228 |
4229 core.int buildCounterMetrosListResponse = 0; | 4229 core.int buildCounterMetrosListResponse = 0; |
4230 buildMetrosListResponse() { | 4230 buildMetrosListResponse() { |
4231 var o = new api.MetrosListResponse(); | 4231 var o = new api.MetrosListResponse(); |
4232 buildCounterMetrosListResponse++; | 4232 buildCounterMetrosListResponse++; |
4233 if (buildCounterMetrosListResponse < 3) { | 4233 if (buildCounterMetrosListResponse < 3) { |
4234 o.kind = "foo"; | 4234 o.kind = "foo"; |
4235 o.metros = buildUnnamed346(); | 4235 o.metros = buildUnnamed895(); |
4236 } | 4236 } |
4237 buildCounterMetrosListResponse--; | 4237 buildCounterMetrosListResponse--; |
4238 return o; | 4238 return o; |
4239 } | 4239 } |
4240 | 4240 |
4241 checkMetrosListResponse(api.MetrosListResponse o) { | 4241 checkMetrosListResponse(api.MetrosListResponse o) { |
4242 buildCounterMetrosListResponse++; | 4242 buildCounterMetrosListResponse++; |
4243 if (buildCounterMetrosListResponse < 3) { | 4243 if (buildCounterMetrosListResponse < 3) { |
4244 unittest.expect(o.kind, unittest.equals('foo')); | 4244 unittest.expect(o.kind, unittest.equals('foo')); |
4245 checkUnnamed346(o.metros); | 4245 checkUnnamed895(o.metros); |
4246 } | 4246 } |
4247 buildCounterMetrosListResponse--; | 4247 buildCounterMetrosListResponse--; |
4248 } | 4248 } |
4249 | 4249 |
4250 core.int buildCounterMobileCarrier = 0; | 4250 core.int buildCounterMobileCarrier = 0; |
4251 buildMobileCarrier() { | 4251 buildMobileCarrier() { |
4252 var o = new api.MobileCarrier(); | 4252 var o = new api.MobileCarrier(); |
4253 buildCounterMobileCarrier++; | 4253 buildCounterMobileCarrier++; |
4254 if (buildCounterMobileCarrier < 3) { | 4254 if (buildCounterMobileCarrier < 3) { |
4255 o.countryCode = "foo"; | 4255 o.countryCode = "foo"; |
(...skipping 11 matching lines...) Expand all Loading... |
4267 if (buildCounterMobileCarrier < 3) { | 4267 if (buildCounterMobileCarrier < 3) { |
4268 unittest.expect(o.countryCode, unittest.equals('foo')); | 4268 unittest.expect(o.countryCode, unittest.equals('foo')); |
4269 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4269 unittest.expect(o.countryDartId, unittest.equals('foo')); |
4270 unittest.expect(o.id, unittest.equals('foo')); | 4270 unittest.expect(o.id, unittest.equals('foo')); |
4271 unittest.expect(o.kind, unittest.equals('foo')); | 4271 unittest.expect(o.kind, unittest.equals('foo')); |
4272 unittest.expect(o.name, unittest.equals('foo')); | 4272 unittest.expect(o.name, unittest.equals('foo')); |
4273 } | 4273 } |
4274 buildCounterMobileCarrier--; | 4274 buildCounterMobileCarrier--; |
4275 } | 4275 } |
4276 | 4276 |
4277 buildUnnamed347() { | 4277 buildUnnamed896() { |
4278 var o = new core.List<api.MobileCarrier>(); | 4278 var o = new core.List<api.MobileCarrier>(); |
4279 o.add(buildMobileCarrier()); | 4279 o.add(buildMobileCarrier()); |
4280 o.add(buildMobileCarrier()); | 4280 o.add(buildMobileCarrier()); |
4281 return o; | 4281 return o; |
4282 } | 4282 } |
4283 | 4283 |
4284 checkUnnamed347(core.List<api.MobileCarrier> o) { | 4284 checkUnnamed896(core.List<api.MobileCarrier> o) { |
4285 unittest.expect(o, unittest.hasLength(2)); | 4285 unittest.expect(o, unittest.hasLength(2)); |
4286 checkMobileCarrier(o[0]); | 4286 checkMobileCarrier(o[0]); |
4287 checkMobileCarrier(o[1]); | 4287 checkMobileCarrier(o[1]); |
4288 } | 4288 } |
4289 | 4289 |
4290 core.int buildCounterMobileCarriersListResponse = 0; | 4290 core.int buildCounterMobileCarriersListResponse = 0; |
4291 buildMobileCarriersListResponse() { | 4291 buildMobileCarriersListResponse() { |
4292 var o = new api.MobileCarriersListResponse(); | 4292 var o = new api.MobileCarriersListResponse(); |
4293 buildCounterMobileCarriersListResponse++; | 4293 buildCounterMobileCarriersListResponse++; |
4294 if (buildCounterMobileCarriersListResponse < 3) { | 4294 if (buildCounterMobileCarriersListResponse < 3) { |
4295 o.kind = "foo"; | 4295 o.kind = "foo"; |
4296 o.mobileCarriers = buildUnnamed347(); | 4296 o.mobileCarriers = buildUnnamed896(); |
4297 } | 4297 } |
4298 buildCounterMobileCarriersListResponse--; | 4298 buildCounterMobileCarriersListResponse--; |
4299 return o; | 4299 return o; |
4300 } | 4300 } |
4301 | 4301 |
4302 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { | 4302 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { |
4303 buildCounterMobileCarriersListResponse++; | 4303 buildCounterMobileCarriersListResponse++; |
4304 if (buildCounterMobileCarriersListResponse < 3) { | 4304 if (buildCounterMobileCarriersListResponse < 3) { |
4305 unittest.expect(o.kind, unittest.equals('foo')); | 4305 unittest.expect(o.kind, unittest.equals('foo')); |
4306 checkUnnamed347(o.mobileCarriers); | 4306 checkUnnamed896(o.mobileCarriers); |
4307 } | 4307 } |
4308 buildCounterMobileCarriersListResponse--; | 4308 buildCounterMobileCarriersListResponse--; |
4309 } | 4309 } |
4310 | 4310 |
4311 buildUnnamed348() { | 4311 buildUnnamed897() { |
4312 var o = new core.List<core.String>(); | 4312 var o = new core.List<core.String>(); |
4313 o.add("foo"); | 4313 o.add("foo"); |
4314 o.add("foo"); | 4314 o.add("foo"); |
4315 return o; | 4315 return o; |
4316 } | 4316 } |
4317 | 4317 |
4318 checkUnnamed348(core.List<core.String> o) { | 4318 checkUnnamed897(core.List<core.String> o) { |
4319 unittest.expect(o, unittest.hasLength(2)); | 4319 unittest.expect(o, unittest.hasLength(2)); |
4320 unittest.expect(o[0], unittest.equals('foo')); | 4320 unittest.expect(o[0], unittest.equals('foo')); |
4321 unittest.expect(o[1], unittest.equals('foo')); | 4321 unittest.expect(o[1], unittest.equals('foo')); |
4322 } | 4322 } |
4323 | 4323 |
4324 core.int buildCounterObjectFilter = 0; | 4324 core.int buildCounterObjectFilter = 0; |
4325 buildObjectFilter() { | 4325 buildObjectFilter() { |
4326 var o = new api.ObjectFilter(); | 4326 var o = new api.ObjectFilter(); |
4327 buildCounterObjectFilter++; | 4327 buildCounterObjectFilter++; |
4328 if (buildCounterObjectFilter < 3) { | 4328 if (buildCounterObjectFilter < 3) { |
4329 o.kind = "foo"; | 4329 o.kind = "foo"; |
4330 o.objectIds = buildUnnamed348(); | 4330 o.objectIds = buildUnnamed897(); |
4331 o.status = "foo"; | 4331 o.status = "foo"; |
4332 } | 4332 } |
4333 buildCounterObjectFilter--; | 4333 buildCounterObjectFilter--; |
4334 return o; | 4334 return o; |
4335 } | 4335 } |
4336 | 4336 |
4337 checkObjectFilter(api.ObjectFilter o) { | 4337 checkObjectFilter(api.ObjectFilter o) { |
4338 buildCounterObjectFilter++; | 4338 buildCounterObjectFilter++; |
4339 if (buildCounterObjectFilter < 3) { | 4339 if (buildCounterObjectFilter < 3) { |
4340 unittest.expect(o.kind, unittest.equals('foo')); | 4340 unittest.expect(o.kind, unittest.equals('foo')); |
4341 checkUnnamed348(o.objectIds); | 4341 checkUnnamed897(o.objectIds); |
4342 unittest.expect(o.status, unittest.equals('foo')); | 4342 unittest.expect(o.status, unittest.equals('foo')); |
4343 } | 4343 } |
4344 buildCounterObjectFilter--; | 4344 buildCounterObjectFilter--; |
4345 } | 4345 } |
4346 | 4346 |
4347 core.int buildCounterOffsetPosition = 0; | 4347 core.int buildCounterOffsetPosition = 0; |
4348 buildOffsetPosition() { | 4348 buildOffsetPosition() { |
4349 var o = new api.OffsetPosition(); | 4349 var o = new api.OffsetPosition(); |
4350 buildCounterOffsetPosition++; | 4350 buildCounterOffsetPosition++; |
4351 if (buildCounterOffsetPosition < 3) { | 4351 if (buildCounterOffsetPosition < 3) { |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4435 unittest.expect(o.id, unittest.equals('foo')); | 4435 unittest.expect(o.id, unittest.equals('foo')); |
4436 unittest.expect(o.kind, unittest.equals('foo')); | 4436 unittest.expect(o.kind, unittest.equals('foo')); |
4437 unittest.expect(o.majorVersion, unittest.equals('foo')); | 4437 unittest.expect(o.majorVersion, unittest.equals('foo')); |
4438 unittest.expect(o.minorVersion, unittest.equals('foo')); | 4438 unittest.expect(o.minorVersion, unittest.equals('foo')); |
4439 unittest.expect(o.name, unittest.equals('foo')); | 4439 unittest.expect(o.name, unittest.equals('foo')); |
4440 checkOperatingSystem(o.operatingSystem); | 4440 checkOperatingSystem(o.operatingSystem); |
4441 } | 4441 } |
4442 buildCounterOperatingSystemVersion--; | 4442 buildCounterOperatingSystemVersion--; |
4443 } | 4443 } |
4444 | 4444 |
4445 buildUnnamed349() { | 4445 buildUnnamed898() { |
4446 var o = new core.List<api.OperatingSystemVersion>(); | 4446 var o = new core.List<api.OperatingSystemVersion>(); |
4447 o.add(buildOperatingSystemVersion()); | 4447 o.add(buildOperatingSystemVersion()); |
4448 o.add(buildOperatingSystemVersion()); | 4448 o.add(buildOperatingSystemVersion()); |
4449 return o; | 4449 return o; |
4450 } | 4450 } |
4451 | 4451 |
4452 checkUnnamed349(core.List<api.OperatingSystemVersion> o) { | 4452 checkUnnamed898(core.List<api.OperatingSystemVersion> o) { |
4453 unittest.expect(o, unittest.hasLength(2)); | 4453 unittest.expect(o, unittest.hasLength(2)); |
4454 checkOperatingSystemVersion(o[0]); | 4454 checkOperatingSystemVersion(o[0]); |
4455 checkOperatingSystemVersion(o[1]); | 4455 checkOperatingSystemVersion(o[1]); |
4456 } | 4456 } |
4457 | 4457 |
4458 core.int buildCounterOperatingSystemVersionsListResponse = 0; | 4458 core.int buildCounterOperatingSystemVersionsListResponse = 0; |
4459 buildOperatingSystemVersionsListResponse() { | 4459 buildOperatingSystemVersionsListResponse() { |
4460 var o = new api.OperatingSystemVersionsListResponse(); | 4460 var o = new api.OperatingSystemVersionsListResponse(); |
4461 buildCounterOperatingSystemVersionsListResponse++; | 4461 buildCounterOperatingSystemVersionsListResponse++; |
4462 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4462 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
4463 o.kind = "foo"; | 4463 o.kind = "foo"; |
4464 o.operatingSystemVersions = buildUnnamed349(); | 4464 o.operatingSystemVersions = buildUnnamed898(); |
4465 } | 4465 } |
4466 buildCounterOperatingSystemVersionsListResponse--; | 4466 buildCounterOperatingSystemVersionsListResponse--; |
4467 return o; | 4467 return o; |
4468 } | 4468 } |
4469 | 4469 |
4470 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { | 4470 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { |
4471 buildCounterOperatingSystemVersionsListResponse++; | 4471 buildCounterOperatingSystemVersionsListResponse++; |
4472 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4472 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
4473 unittest.expect(o.kind, unittest.equals('foo')); | 4473 unittest.expect(o.kind, unittest.equals('foo')); |
4474 checkUnnamed349(o.operatingSystemVersions); | 4474 checkUnnamed898(o.operatingSystemVersions); |
4475 } | 4475 } |
4476 buildCounterOperatingSystemVersionsListResponse--; | 4476 buildCounterOperatingSystemVersionsListResponse--; |
4477 } | 4477 } |
4478 | 4478 |
4479 buildUnnamed350() { | 4479 buildUnnamed899() { |
4480 var o = new core.List<api.OperatingSystem>(); | 4480 var o = new core.List<api.OperatingSystem>(); |
4481 o.add(buildOperatingSystem()); | 4481 o.add(buildOperatingSystem()); |
4482 o.add(buildOperatingSystem()); | 4482 o.add(buildOperatingSystem()); |
4483 return o; | 4483 return o; |
4484 } | 4484 } |
4485 | 4485 |
4486 checkUnnamed350(core.List<api.OperatingSystem> o) { | 4486 checkUnnamed899(core.List<api.OperatingSystem> o) { |
4487 unittest.expect(o, unittest.hasLength(2)); | 4487 unittest.expect(o, unittest.hasLength(2)); |
4488 checkOperatingSystem(o[0]); | 4488 checkOperatingSystem(o[0]); |
4489 checkOperatingSystem(o[1]); | 4489 checkOperatingSystem(o[1]); |
4490 } | 4490 } |
4491 | 4491 |
4492 core.int buildCounterOperatingSystemsListResponse = 0; | 4492 core.int buildCounterOperatingSystemsListResponse = 0; |
4493 buildOperatingSystemsListResponse() { | 4493 buildOperatingSystemsListResponse() { |
4494 var o = new api.OperatingSystemsListResponse(); | 4494 var o = new api.OperatingSystemsListResponse(); |
4495 buildCounterOperatingSystemsListResponse++; | 4495 buildCounterOperatingSystemsListResponse++; |
4496 if (buildCounterOperatingSystemsListResponse < 3) { | 4496 if (buildCounterOperatingSystemsListResponse < 3) { |
4497 o.kind = "foo"; | 4497 o.kind = "foo"; |
4498 o.operatingSystems = buildUnnamed350(); | 4498 o.operatingSystems = buildUnnamed899(); |
4499 } | 4499 } |
4500 buildCounterOperatingSystemsListResponse--; | 4500 buildCounterOperatingSystemsListResponse--; |
4501 return o; | 4501 return o; |
4502 } | 4502 } |
4503 | 4503 |
4504 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { | 4504 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { |
4505 buildCounterOperatingSystemsListResponse++; | 4505 buildCounterOperatingSystemsListResponse++; |
4506 if (buildCounterOperatingSystemsListResponse < 3) { | 4506 if (buildCounterOperatingSystemsListResponse < 3) { |
4507 unittest.expect(o.kind, unittest.equals('foo')); | 4507 unittest.expect(o.kind, unittest.equals('foo')); |
4508 checkUnnamed350(o.operatingSystems); | 4508 checkUnnamed899(o.operatingSystems); |
4509 } | 4509 } |
4510 buildCounterOperatingSystemsListResponse--; | 4510 buildCounterOperatingSystemsListResponse--; |
4511 } | 4511 } |
4512 | 4512 |
4513 core.int buildCounterOptimizationActivity = 0; | 4513 core.int buildCounterOptimizationActivity = 0; |
4514 buildOptimizationActivity() { | 4514 buildOptimizationActivity() { |
4515 var o = new api.OptimizationActivity(); | 4515 var o = new api.OptimizationActivity(); |
4516 buildCounterOptimizationActivity++; | 4516 buildCounterOptimizationActivity++; |
4517 if (buildCounterOptimizationActivity < 3) { | 4517 if (buildCounterOptimizationActivity < 3) { |
4518 o.floodlightActivityId = "foo"; | 4518 o.floodlightActivityId = "foo"; |
4519 o.floodlightActivityIdDimensionValue = buildDimensionValue(); | 4519 o.floodlightActivityIdDimensionValue = buildDimensionValue(); |
4520 o.weight = 42; | 4520 o.weight = 42; |
4521 } | 4521 } |
4522 buildCounterOptimizationActivity--; | 4522 buildCounterOptimizationActivity--; |
4523 return o; | 4523 return o; |
4524 } | 4524 } |
4525 | 4525 |
4526 checkOptimizationActivity(api.OptimizationActivity o) { | 4526 checkOptimizationActivity(api.OptimizationActivity o) { |
4527 buildCounterOptimizationActivity++; | 4527 buildCounterOptimizationActivity++; |
4528 if (buildCounterOptimizationActivity < 3) { | 4528 if (buildCounterOptimizationActivity < 3) { |
4529 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4529 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
4530 checkDimensionValue(o.floodlightActivityIdDimensionValue); | 4530 checkDimensionValue(o.floodlightActivityIdDimensionValue); |
4531 unittest.expect(o.weight, unittest.equals(42)); | 4531 unittest.expect(o.weight, unittest.equals(42)); |
4532 } | 4532 } |
4533 buildCounterOptimizationActivity--; | 4533 buildCounterOptimizationActivity--; |
4534 } | 4534 } |
4535 | 4535 |
4536 buildUnnamed351() { | 4536 buildUnnamed900() { |
4537 var o = new core.List<api.Dimension>(); | 4537 var o = new core.List<api.Dimension>(); |
4538 o.add(buildDimension()); | 4538 o.add(buildDimension()); |
4539 o.add(buildDimension()); | 4539 o.add(buildDimension()); |
4540 return o; | 4540 return o; |
4541 } | 4541 } |
4542 | 4542 |
4543 checkUnnamed351(core.List<api.Dimension> o) { | 4543 checkUnnamed900(core.List<api.Dimension> o) { |
4544 unittest.expect(o, unittest.hasLength(2)); | 4544 unittest.expect(o, unittest.hasLength(2)); |
4545 checkDimension(o[0]); | 4545 checkDimension(o[0]); |
4546 checkDimension(o[1]); | 4546 checkDimension(o[1]); |
4547 } | 4547 } |
4548 | 4548 |
4549 buildUnnamed352() { | 4549 buildUnnamed901() { |
4550 var o = new core.List<api.Dimension>(); | 4550 var o = new core.List<api.Dimension>(); |
4551 o.add(buildDimension()); | 4551 o.add(buildDimension()); |
4552 o.add(buildDimension()); | 4552 o.add(buildDimension()); |
4553 return o; | 4553 return o; |
4554 } | 4554 } |
4555 | 4555 |
4556 checkUnnamed352(core.List<api.Dimension> o) { | 4556 checkUnnamed901(core.List<api.Dimension> o) { |
4557 unittest.expect(o, unittest.hasLength(2)); | 4557 unittest.expect(o, unittest.hasLength(2)); |
4558 checkDimension(o[0]); | 4558 checkDimension(o[0]); |
4559 checkDimension(o[1]); | 4559 checkDimension(o[1]); |
4560 } | 4560 } |
4561 | 4561 |
4562 buildUnnamed353() { | 4562 buildUnnamed902() { |
4563 var o = new core.List<api.Metric>(); | 4563 var o = new core.List<api.Metric>(); |
4564 o.add(buildMetric()); | 4564 o.add(buildMetric()); |
4565 o.add(buildMetric()); | 4565 o.add(buildMetric()); |
4566 return o; | 4566 return o; |
4567 } | 4567 } |
4568 | 4568 |
4569 checkUnnamed353(core.List<api.Metric> o) { | 4569 checkUnnamed902(core.List<api.Metric> o) { |
4570 unittest.expect(o, unittest.hasLength(2)); | 4570 unittest.expect(o, unittest.hasLength(2)); |
4571 checkMetric(o[0]); | 4571 checkMetric(o[0]); |
4572 checkMetric(o[1]); | 4572 checkMetric(o[1]); |
4573 } | 4573 } |
4574 | 4574 |
4575 buildUnnamed354() { | 4575 buildUnnamed903() { |
4576 var o = new core.List<api.Dimension>(); | 4576 var o = new core.List<api.Dimension>(); |
4577 o.add(buildDimension()); | 4577 o.add(buildDimension()); |
4578 o.add(buildDimension()); | 4578 o.add(buildDimension()); |
4579 return o; | 4579 return o; |
4580 } | 4580 } |
4581 | 4581 |
4582 checkUnnamed354(core.List<api.Dimension> o) { | 4582 checkUnnamed903(core.List<api.Dimension> o) { |
4583 unittest.expect(o, unittest.hasLength(2)); | 4583 unittest.expect(o, unittest.hasLength(2)); |
4584 checkDimension(o[0]); | 4584 checkDimension(o[0]); |
4585 checkDimension(o[1]); | 4585 checkDimension(o[1]); |
4586 } | 4586 } |
4587 | 4587 |
4588 core.int buildCounterPathToConversionReportCompatibleFields = 0; | 4588 core.int buildCounterPathToConversionReportCompatibleFields = 0; |
4589 buildPathToConversionReportCompatibleFields() { | 4589 buildPathToConversionReportCompatibleFields() { |
4590 var o = new api.PathToConversionReportCompatibleFields(); | 4590 var o = new api.PathToConversionReportCompatibleFields(); |
4591 buildCounterPathToConversionReportCompatibleFields++; | 4591 buildCounterPathToConversionReportCompatibleFields++; |
4592 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 4592 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
4593 o.conversionDimensions = buildUnnamed351(); | 4593 o.conversionDimensions = buildUnnamed900(); |
4594 o.customFloodlightVariables = buildUnnamed352(); | 4594 o.customFloodlightVariables = buildUnnamed901(); |
4595 o.kind = "foo"; | 4595 o.kind = "foo"; |
4596 o.metrics = buildUnnamed353(); | 4596 o.metrics = buildUnnamed902(); |
4597 o.perInteractionDimensions = buildUnnamed354(); | 4597 o.perInteractionDimensions = buildUnnamed903(); |
4598 } | 4598 } |
4599 buildCounterPathToConversionReportCompatibleFields--; | 4599 buildCounterPathToConversionReportCompatibleFields--; |
4600 return o; | 4600 return o; |
4601 } | 4601 } |
4602 | 4602 |
4603 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { | 4603 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { |
4604 buildCounterPathToConversionReportCompatibleFields++; | 4604 buildCounterPathToConversionReportCompatibleFields++; |
4605 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 4605 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
4606 checkUnnamed351(o.conversionDimensions); | 4606 checkUnnamed900(o.conversionDimensions); |
4607 checkUnnamed352(o.customFloodlightVariables); | 4607 checkUnnamed901(o.customFloodlightVariables); |
4608 unittest.expect(o.kind, unittest.equals('foo')); | 4608 unittest.expect(o.kind, unittest.equals('foo')); |
4609 checkUnnamed353(o.metrics); | 4609 checkUnnamed902(o.metrics); |
4610 checkUnnamed354(o.perInteractionDimensions); | 4610 checkUnnamed903(o.perInteractionDimensions); |
4611 } | 4611 } |
4612 buildCounterPathToConversionReportCompatibleFields--; | 4612 buildCounterPathToConversionReportCompatibleFields--; |
4613 } | 4613 } |
4614 | 4614 |
4615 buildUnnamed355() { | 4615 buildUnnamed904() { |
4616 var o = new core.List<core.String>(); | 4616 var o = new core.List<core.String>(); |
4617 o.add("foo"); | 4617 o.add("foo"); |
4618 o.add("foo"); | 4618 o.add("foo"); |
4619 return o; | 4619 return o; |
4620 } | 4620 } |
4621 | 4621 |
4622 checkUnnamed355(core.List<core.String> o) { | 4622 checkUnnamed904(core.List<core.String> o) { |
4623 unittest.expect(o, unittest.hasLength(2)); | 4623 unittest.expect(o, unittest.hasLength(2)); |
4624 unittest.expect(o[0], unittest.equals('foo')); | 4624 unittest.expect(o[0], unittest.equals('foo')); |
4625 unittest.expect(o[1], unittest.equals('foo')); | 4625 unittest.expect(o[1], unittest.equals('foo')); |
4626 } | 4626 } |
4627 | 4627 |
4628 core.int buildCounterPlacement = 0; | 4628 core.int buildCounterPlacement = 0; |
4629 buildPlacement() { | 4629 buildPlacement() { |
4630 var o = new api.Placement(); | 4630 var o = new api.Placement(); |
4631 buildCounterPlacement++; | 4631 buildCounterPlacement++; |
4632 if (buildCounterPlacement < 3) { | 4632 if (buildCounterPlacement < 3) { |
(...skipping 24 matching lines...) Expand all Loading... |
4657 o.placementStrategyId = "foo"; | 4657 o.placementStrategyId = "foo"; |
4658 o.pricingSchedule = buildPricingSchedule(); | 4658 o.pricingSchedule = buildPricingSchedule(); |
4659 o.primary = true; | 4659 o.primary = true; |
4660 o.publisherUpdateInfo = buildLastModifiedInfo(); | 4660 o.publisherUpdateInfo = buildLastModifiedInfo(); |
4661 o.siteId = "foo"; | 4661 o.siteId = "foo"; |
4662 o.siteIdDimensionValue = buildDimensionValue(); | 4662 o.siteIdDimensionValue = buildDimensionValue(); |
4663 o.size = buildSize(); | 4663 o.size = buildSize(); |
4664 o.sslRequired = true; | 4664 o.sslRequired = true; |
4665 o.status = "foo"; | 4665 o.status = "foo"; |
4666 o.subaccountId = "foo"; | 4666 o.subaccountId = "foo"; |
4667 o.tagFormats = buildUnnamed355(); | 4667 o.tagFormats = buildUnnamed904(); |
4668 o.tagSetting = buildTagSetting(); | 4668 o.tagSetting = buildTagSetting(); |
4669 } | 4669 } |
4670 buildCounterPlacement--; | 4670 buildCounterPlacement--; |
4671 return o; | 4671 return o; |
4672 } | 4672 } |
4673 | 4673 |
4674 checkPlacement(api.Placement o) { | 4674 checkPlacement(api.Placement o) { |
4675 buildCounterPlacement++; | 4675 buildCounterPlacement++; |
4676 if (buildCounterPlacement < 3) { | 4676 if (buildCounterPlacement < 3) { |
4677 unittest.expect(o.accountId, unittest.equals('foo')); | 4677 unittest.expect(o.accountId, unittest.equals('foo')); |
(...skipping 23 matching lines...) Expand all Loading... |
4701 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 4701 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
4702 checkPricingSchedule(o.pricingSchedule); | 4702 checkPricingSchedule(o.pricingSchedule); |
4703 unittest.expect(o.primary, unittest.isTrue); | 4703 unittest.expect(o.primary, unittest.isTrue); |
4704 checkLastModifiedInfo(o.publisherUpdateInfo); | 4704 checkLastModifiedInfo(o.publisherUpdateInfo); |
4705 unittest.expect(o.siteId, unittest.equals('foo')); | 4705 unittest.expect(o.siteId, unittest.equals('foo')); |
4706 checkDimensionValue(o.siteIdDimensionValue); | 4706 checkDimensionValue(o.siteIdDimensionValue); |
4707 checkSize(o.size); | 4707 checkSize(o.size); |
4708 unittest.expect(o.sslRequired, unittest.isTrue); | 4708 unittest.expect(o.sslRequired, unittest.isTrue); |
4709 unittest.expect(o.status, unittest.equals('foo')); | 4709 unittest.expect(o.status, unittest.equals('foo')); |
4710 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4710 unittest.expect(o.subaccountId, unittest.equals('foo')); |
4711 checkUnnamed355(o.tagFormats); | 4711 checkUnnamed904(o.tagFormats); |
4712 checkTagSetting(o.tagSetting); | 4712 checkTagSetting(o.tagSetting); |
4713 } | 4713 } |
4714 buildCounterPlacement--; | 4714 buildCounterPlacement--; |
4715 } | 4715 } |
4716 | 4716 |
4717 core.int buildCounterPlacementAssignment = 0; | 4717 core.int buildCounterPlacementAssignment = 0; |
4718 buildPlacementAssignment() { | 4718 buildPlacementAssignment() { |
4719 var o = new api.PlacementAssignment(); | 4719 var o = new api.PlacementAssignment(); |
4720 buildCounterPlacementAssignment++; | 4720 buildCounterPlacementAssignment++; |
4721 if (buildCounterPlacementAssignment < 3) { | 4721 if (buildCounterPlacementAssignment < 3) { |
(...skipping 10 matching lines...) Expand all Loading... |
4732 buildCounterPlacementAssignment++; | 4732 buildCounterPlacementAssignment++; |
4733 if (buildCounterPlacementAssignment < 3) { | 4733 if (buildCounterPlacementAssignment < 3) { |
4734 unittest.expect(o.active, unittest.isTrue); | 4734 unittest.expect(o.active, unittest.isTrue); |
4735 unittest.expect(o.placementId, unittest.equals('foo')); | 4735 unittest.expect(o.placementId, unittest.equals('foo')); |
4736 checkDimensionValue(o.placementIdDimensionValue); | 4736 checkDimensionValue(o.placementIdDimensionValue); |
4737 unittest.expect(o.sslRequired, unittest.isTrue); | 4737 unittest.expect(o.sslRequired, unittest.isTrue); |
4738 } | 4738 } |
4739 buildCounterPlacementAssignment--; | 4739 buildCounterPlacementAssignment--; |
4740 } | 4740 } |
4741 | 4741 |
4742 buildUnnamed356() { | 4742 buildUnnamed905() { |
4743 var o = new core.List<core.String>(); | 4743 var o = new core.List<core.String>(); |
4744 o.add("foo"); | 4744 o.add("foo"); |
4745 o.add("foo"); | 4745 o.add("foo"); |
4746 return o; | 4746 return o; |
4747 } | 4747 } |
4748 | 4748 |
4749 checkUnnamed356(core.List<core.String> o) { | 4749 checkUnnamed905(core.List<core.String> o) { |
4750 unittest.expect(o, unittest.hasLength(2)); | 4750 unittest.expect(o, unittest.hasLength(2)); |
4751 unittest.expect(o[0], unittest.equals('foo')); | 4751 unittest.expect(o[0], unittest.equals('foo')); |
4752 unittest.expect(o[1], unittest.equals('foo')); | 4752 unittest.expect(o[1], unittest.equals('foo')); |
4753 } | 4753 } |
4754 | 4754 |
4755 core.int buildCounterPlacementGroup = 0; | 4755 core.int buildCounterPlacementGroup = 0; |
4756 buildPlacementGroup() { | 4756 buildPlacementGroup() { |
4757 var o = new api.PlacementGroup(); | 4757 var o = new api.PlacementGroup(); |
4758 buildCounterPlacementGroup++; | 4758 buildCounterPlacementGroup++; |
4759 if (buildCounterPlacementGroup < 3) { | 4759 if (buildCounterPlacementGroup < 3) { |
4760 o.accountId = "foo"; | 4760 o.accountId = "foo"; |
4761 o.advertiserId = "foo"; | 4761 o.advertiserId = "foo"; |
4762 o.advertiserIdDimensionValue = buildDimensionValue(); | 4762 o.advertiserIdDimensionValue = buildDimensionValue(); |
4763 o.archived = true; | 4763 o.archived = true; |
4764 o.campaignId = "foo"; | 4764 o.campaignId = "foo"; |
4765 o.campaignIdDimensionValue = buildDimensionValue(); | 4765 o.campaignIdDimensionValue = buildDimensionValue(); |
4766 o.childPlacementIds = buildUnnamed356(); | 4766 o.childPlacementIds = buildUnnamed905(); |
4767 o.comment = "foo"; | 4767 o.comment = "foo"; |
4768 o.contentCategoryId = "foo"; | 4768 o.contentCategoryId = "foo"; |
4769 o.createInfo = buildLastModifiedInfo(); | 4769 o.createInfo = buildLastModifiedInfo(); |
4770 o.directorySiteId = "foo"; | 4770 o.directorySiteId = "foo"; |
4771 o.directorySiteIdDimensionValue = buildDimensionValue(); | 4771 o.directorySiteIdDimensionValue = buildDimensionValue(); |
4772 o.externalId = "foo"; | 4772 o.externalId = "foo"; |
4773 o.id = "foo"; | 4773 o.id = "foo"; |
4774 o.idDimensionValue = buildDimensionValue(); | 4774 o.idDimensionValue = buildDimensionValue(); |
4775 o.kind = "foo"; | 4775 o.kind = "foo"; |
4776 o.lastModifiedInfo = buildLastModifiedInfo(); | 4776 o.lastModifiedInfo = buildLastModifiedInfo(); |
(...skipping 14 matching lines...) Expand all Loading... |
4791 | 4791 |
4792 checkPlacementGroup(api.PlacementGroup o) { | 4792 checkPlacementGroup(api.PlacementGroup o) { |
4793 buildCounterPlacementGroup++; | 4793 buildCounterPlacementGroup++; |
4794 if (buildCounterPlacementGroup < 3) { | 4794 if (buildCounterPlacementGroup < 3) { |
4795 unittest.expect(o.accountId, unittest.equals('foo')); | 4795 unittest.expect(o.accountId, unittest.equals('foo')); |
4796 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4796 unittest.expect(o.advertiserId, unittest.equals('foo')); |
4797 checkDimensionValue(o.advertiserIdDimensionValue); | 4797 checkDimensionValue(o.advertiserIdDimensionValue); |
4798 unittest.expect(o.archived, unittest.isTrue); | 4798 unittest.expect(o.archived, unittest.isTrue); |
4799 unittest.expect(o.campaignId, unittest.equals('foo')); | 4799 unittest.expect(o.campaignId, unittest.equals('foo')); |
4800 checkDimensionValue(o.campaignIdDimensionValue); | 4800 checkDimensionValue(o.campaignIdDimensionValue); |
4801 checkUnnamed356(o.childPlacementIds); | 4801 checkUnnamed905(o.childPlacementIds); |
4802 unittest.expect(o.comment, unittest.equals('foo')); | 4802 unittest.expect(o.comment, unittest.equals('foo')); |
4803 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 4803 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
4804 checkLastModifiedInfo(o.createInfo); | 4804 checkLastModifiedInfo(o.createInfo); |
4805 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 4805 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
4806 checkDimensionValue(o.directorySiteIdDimensionValue); | 4806 checkDimensionValue(o.directorySiteIdDimensionValue); |
4807 unittest.expect(o.externalId, unittest.equals('foo')); | 4807 unittest.expect(o.externalId, unittest.equals('foo')); |
4808 unittest.expect(o.id, unittest.equals('foo')); | 4808 unittest.expect(o.id, unittest.equals('foo')); |
4809 checkDimensionValue(o.idDimensionValue); | 4809 checkDimensionValue(o.idDimensionValue); |
4810 unittest.expect(o.kind, unittest.equals('foo')); | 4810 unittest.expect(o.kind, unittest.equals('foo')); |
4811 checkLastModifiedInfo(o.lastModifiedInfo); | 4811 checkLastModifiedInfo(o.lastModifiedInfo); |
4812 unittest.expect(o.name, unittest.equals('foo')); | 4812 unittest.expect(o.name, unittest.equals('foo')); |
4813 unittest.expect(o.placementGroupType, unittest.equals('foo')); | 4813 unittest.expect(o.placementGroupType, unittest.equals('foo')); |
4814 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 4814 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
4815 checkPricingSchedule(o.pricingSchedule); | 4815 checkPricingSchedule(o.pricingSchedule); |
4816 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); | 4816 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); |
4817 checkDimensionValue(o.primaryPlacementIdDimensionValue); | 4817 checkDimensionValue(o.primaryPlacementIdDimensionValue); |
4818 checkProgrammaticSetting(o.programmaticSetting); | 4818 checkProgrammaticSetting(o.programmaticSetting); |
4819 unittest.expect(o.siteId, unittest.equals('foo')); | 4819 unittest.expect(o.siteId, unittest.equals('foo')); |
4820 checkDimensionValue(o.siteIdDimensionValue); | 4820 checkDimensionValue(o.siteIdDimensionValue); |
4821 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4821 unittest.expect(o.subaccountId, unittest.equals('foo')); |
4822 } | 4822 } |
4823 buildCounterPlacementGroup--; | 4823 buildCounterPlacementGroup--; |
4824 } | 4824 } |
4825 | 4825 |
4826 buildUnnamed357() { | 4826 buildUnnamed906() { |
4827 var o = new core.List<api.PlacementGroup>(); | 4827 var o = new core.List<api.PlacementGroup>(); |
4828 o.add(buildPlacementGroup()); | 4828 o.add(buildPlacementGroup()); |
4829 o.add(buildPlacementGroup()); | 4829 o.add(buildPlacementGroup()); |
4830 return o; | 4830 return o; |
4831 } | 4831 } |
4832 | 4832 |
4833 checkUnnamed357(core.List<api.PlacementGroup> o) { | 4833 checkUnnamed906(core.List<api.PlacementGroup> o) { |
4834 unittest.expect(o, unittest.hasLength(2)); | 4834 unittest.expect(o, unittest.hasLength(2)); |
4835 checkPlacementGroup(o[0]); | 4835 checkPlacementGroup(o[0]); |
4836 checkPlacementGroup(o[1]); | 4836 checkPlacementGroup(o[1]); |
4837 } | 4837 } |
4838 | 4838 |
4839 core.int buildCounterPlacementGroupsListResponse = 0; | 4839 core.int buildCounterPlacementGroupsListResponse = 0; |
4840 buildPlacementGroupsListResponse() { | 4840 buildPlacementGroupsListResponse() { |
4841 var o = new api.PlacementGroupsListResponse(); | 4841 var o = new api.PlacementGroupsListResponse(); |
4842 buildCounterPlacementGroupsListResponse++; | 4842 buildCounterPlacementGroupsListResponse++; |
4843 if (buildCounterPlacementGroupsListResponse < 3) { | 4843 if (buildCounterPlacementGroupsListResponse < 3) { |
4844 o.kind = "foo"; | 4844 o.kind = "foo"; |
4845 o.nextPageToken = "foo"; | 4845 o.nextPageToken = "foo"; |
4846 o.placementGroups = buildUnnamed357(); | 4846 o.placementGroups = buildUnnamed906(); |
4847 } | 4847 } |
4848 buildCounterPlacementGroupsListResponse--; | 4848 buildCounterPlacementGroupsListResponse--; |
4849 return o; | 4849 return o; |
4850 } | 4850 } |
4851 | 4851 |
4852 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { | 4852 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { |
4853 buildCounterPlacementGroupsListResponse++; | 4853 buildCounterPlacementGroupsListResponse++; |
4854 if (buildCounterPlacementGroupsListResponse < 3) { | 4854 if (buildCounterPlacementGroupsListResponse < 3) { |
4855 unittest.expect(o.kind, unittest.equals('foo')); | 4855 unittest.expect(o.kind, unittest.equals('foo')); |
4856 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4856 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
4857 checkUnnamed357(o.placementGroups); | 4857 checkUnnamed906(o.placementGroups); |
4858 } | 4858 } |
4859 buildCounterPlacementGroupsListResponse--; | 4859 buildCounterPlacementGroupsListResponse--; |
4860 } | 4860 } |
4861 | 4861 |
4862 buildUnnamed358() { | 4862 buildUnnamed907() { |
4863 var o = new core.List<api.PlacementStrategy>(); | 4863 var o = new core.List<api.PlacementStrategy>(); |
4864 o.add(buildPlacementStrategy()); | 4864 o.add(buildPlacementStrategy()); |
4865 o.add(buildPlacementStrategy()); | 4865 o.add(buildPlacementStrategy()); |
4866 return o; | 4866 return o; |
4867 } | 4867 } |
4868 | 4868 |
4869 checkUnnamed358(core.List<api.PlacementStrategy> o) { | 4869 checkUnnamed907(core.List<api.PlacementStrategy> o) { |
4870 unittest.expect(o, unittest.hasLength(2)); | 4870 unittest.expect(o, unittest.hasLength(2)); |
4871 checkPlacementStrategy(o[0]); | 4871 checkPlacementStrategy(o[0]); |
4872 checkPlacementStrategy(o[1]); | 4872 checkPlacementStrategy(o[1]); |
4873 } | 4873 } |
4874 | 4874 |
4875 core.int buildCounterPlacementStrategiesListResponse = 0; | 4875 core.int buildCounterPlacementStrategiesListResponse = 0; |
4876 buildPlacementStrategiesListResponse() { | 4876 buildPlacementStrategiesListResponse() { |
4877 var o = new api.PlacementStrategiesListResponse(); | 4877 var o = new api.PlacementStrategiesListResponse(); |
4878 buildCounterPlacementStrategiesListResponse++; | 4878 buildCounterPlacementStrategiesListResponse++; |
4879 if (buildCounterPlacementStrategiesListResponse < 3) { | 4879 if (buildCounterPlacementStrategiesListResponse < 3) { |
4880 o.kind = "foo"; | 4880 o.kind = "foo"; |
4881 o.nextPageToken = "foo"; | 4881 o.nextPageToken = "foo"; |
4882 o.placementStrategies = buildUnnamed358(); | 4882 o.placementStrategies = buildUnnamed907(); |
4883 } | 4883 } |
4884 buildCounterPlacementStrategiesListResponse--; | 4884 buildCounterPlacementStrategiesListResponse--; |
4885 return o; | 4885 return o; |
4886 } | 4886 } |
4887 | 4887 |
4888 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { | 4888 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { |
4889 buildCounterPlacementStrategiesListResponse++; | 4889 buildCounterPlacementStrategiesListResponse++; |
4890 if (buildCounterPlacementStrategiesListResponse < 3) { | 4890 if (buildCounterPlacementStrategiesListResponse < 3) { |
4891 unittest.expect(o.kind, unittest.equals('foo')); | 4891 unittest.expect(o.kind, unittest.equals('foo')); |
4892 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4892 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
4893 checkUnnamed358(o.placementStrategies); | 4893 checkUnnamed907(o.placementStrategies); |
4894 } | 4894 } |
4895 buildCounterPlacementStrategiesListResponse--; | 4895 buildCounterPlacementStrategiesListResponse--; |
4896 } | 4896 } |
4897 | 4897 |
4898 core.int buildCounterPlacementStrategy = 0; | 4898 core.int buildCounterPlacementStrategy = 0; |
4899 buildPlacementStrategy() { | 4899 buildPlacementStrategy() { |
4900 var o = new api.PlacementStrategy(); | 4900 var o = new api.PlacementStrategy(); |
4901 buildCounterPlacementStrategy++; | 4901 buildCounterPlacementStrategy++; |
4902 if (buildCounterPlacementStrategy < 3) { | 4902 if (buildCounterPlacementStrategy < 3) { |
4903 o.accountId = "foo"; | 4903 o.accountId = "foo"; |
4904 o.id = "foo"; | 4904 o.id = "foo"; |
4905 o.kind = "foo"; | 4905 o.kind = "foo"; |
4906 o.name = "foo"; | 4906 o.name = "foo"; |
4907 } | 4907 } |
4908 buildCounterPlacementStrategy--; | 4908 buildCounterPlacementStrategy--; |
4909 return o; | 4909 return o; |
4910 } | 4910 } |
4911 | 4911 |
4912 checkPlacementStrategy(api.PlacementStrategy o) { | 4912 checkPlacementStrategy(api.PlacementStrategy o) { |
4913 buildCounterPlacementStrategy++; | 4913 buildCounterPlacementStrategy++; |
4914 if (buildCounterPlacementStrategy < 3) { | 4914 if (buildCounterPlacementStrategy < 3) { |
4915 unittest.expect(o.accountId, unittest.equals('foo')); | 4915 unittest.expect(o.accountId, unittest.equals('foo')); |
4916 unittest.expect(o.id, unittest.equals('foo')); | 4916 unittest.expect(o.id, unittest.equals('foo')); |
4917 unittest.expect(o.kind, unittest.equals('foo')); | 4917 unittest.expect(o.kind, unittest.equals('foo')); |
4918 unittest.expect(o.name, unittest.equals('foo')); | 4918 unittest.expect(o.name, unittest.equals('foo')); |
4919 } | 4919 } |
4920 buildCounterPlacementStrategy--; | 4920 buildCounterPlacementStrategy--; |
4921 } | 4921 } |
4922 | 4922 |
4923 buildUnnamed359() { | 4923 buildUnnamed908() { |
4924 var o = new core.List<api.TagData>(); | 4924 var o = new core.List<api.TagData>(); |
4925 o.add(buildTagData()); | 4925 o.add(buildTagData()); |
4926 o.add(buildTagData()); | 4926 o.add(buildTagData()); |
4927 return o; | 4927 return o; |
4928 } | 4928 } |
4929 | 4929 |
4930 checkUnnamed359(core.List<api.TagData> o) { | 4930 checkUnnamed908(core.List<api.TagData> o) { |
4931 unittest.expect(o, unittest.hasLength(2)); | 4931 unittest.expect(o, unittest.hasLength(2)); |
4932 checkTagData(o[0]); | 4932 checkTagData(o[0]); |
4933 checkTagData(o[1]); | 4933 checkTagData(o[1]); |
4934 } | 4934 } |
4935 | 4935 |
4936 core.int buildCounterPlacementTag = 0; | 4936 core.int buildCounterPlacementTag = 0; |
4937 buildPlacementTag() { | 4937 buildPlacementTag() { |
4938 var o = new api.PlacementTag(); | 4938 var o = new api.PlacementTag(); |
4939 buildCounterPlacementTag++; | 4939 buildCounterPlacementTag++; |
4940 if (buildCounterPlacementTag < 3) { | 4940 if (buildCounterPlacementTag < 3) { |
4941 o.placementId = "foo"; | 4941 o.placementId = "foo"; |
4942 o.tagDatas = buildUnnamed359(); | 4942 o.tagDatas = buildUnnamed908(); |
4943 } | 4943 } |
4944 buildCounterPlacementTag--; | 4944 buildCounterPlacementTag--; |
4945 return o; | 4945 return o; |
4946 } | 4946 } |
4947 | 4947 |
4948 checkPlacementTag(api.PlacementTag o) { | 4948 checkPlacementTag(api.PlacementTag o) { |
4949 buildCounterPlacementTag++; | 4949 buildCounterPlacementTag++; |
4950 if (buildCounterPlacementTag < 3) { | 4950 if (buildCounterPlacementTag < 3) { |
4951 unittest.expect(o.placementId, unittest.equals('foo')); | 4951 unittest.expect(o.placementId, unittest.equals('foo')); |
4952 checkUnnamed359(o.tagDatas); | 4952 checkUnnamed908(o.tagDatas); |
4953 } | 4953 } |
4954 buildCounterPlacementTag--; | 4954 buildCounterPlacementTag--; |
4955 } | 4955 } |
4956 | 4956 |
4957 buildUnnamed360() { | 4957 buildUnnamed909() { |
4958 var o = new core.List<api.PlacementTag>(); | 4958 var o = new core.List<api.PlacementTag>(); |
4959 o.add(buildPlacementTag()); | 4959 o.add(buildPlacementTag()); |
4960 o.add(buildPlacementTag()); | 4960 o.add(buildPlacementTag()); |
4961 return o; | 4961 return o; |
4962 } | 4962 } |
4963 | 4963 |
4964 checkUnnamed360(core.List<api.PlacementTag> o) { | 4964 checkUnnamed909(core.List<api.PlacementTag> o) { |
4965 unittest.expect(o, unittest.hasLength(2)); | 4965 unittest.expect(o, unittest.hasLength(2)); |
4966 checkPlacementTag(o[0]); | 4966 checkPlacementTag(o[0]); |
4967 checkPlacementTag(o[1]); | 4967 checkPlacementTag(o[1]); |
4968 } | 4968 } |
4969 | 4969 |
4970 core.int buildCounterPlacementsGenerateTagsResponse = 0; | 4970 core.int buildCounterPlacementsGenerateTagsResponse = 0; |
4971 buildPlacementsGenerateTagsResponse() { | 4971 buildPlacementsGenerateTagsResponse() { |
4972 var o = new api.PlacementsGenerateTagsResponse(); | 4972 var o = new api.PlacementsGenerateTagsResponse(); |
4973 buildCounterPlacementsGenerateTagsResponse++; | 4973 buildCounterPlacementsGenerateTagsResponse++; |
4974 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 4974 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
4975 o.kind = "foo"; | 4975 o.kind = "foo"; |
4976 o.placementTags = buildUnnamed360(); | 4976 o.placementTags = buildUnnamed909(); |
4977 } | 4977 } |
4978 buildCounterPlacementsGenerateTagsResponse--; | 4978 buildCounterPlacementsGenerateTagsResponse--; |
4979 return o; | 4979 return o; |
4980 } | 4980 } |
4981 | 4981 |
4982 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { | 4982 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { |
4983 buildCounterPlacementsGenerateTagsResponse++; | 4983 buildCounterPlacementsGenerateTagsResponse++; |
4984 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 4984 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
4985 unittest.expect(o.kind, unittest.equals('foo')); | 4985 unittest.expect(o.kind, unittest.equals('foo')); |
4986 checkUnnamed360(o.placementTags); | 4986 checkUnnamed909(o.placementTags); |
4987 } | 4987 } |
4988 buildCounterPlacementsGenerateTagsResponse--; | 4988 buildCounterPlacementsGenerateTagsResponse--; |
4989 } | 4989 } |
4990 | 4990 |
4991 buildUnnamed361() { | 4991 buildUnnamed910() { |
4992 var o = new core.List<api.Placement>(); | 4992 var o = new core.List<api.Placement>(); |
4993 o.add(buildPlacement()); | 4993 o.add(buildPlacement()); |
4994 o.add(buildPlacement()); | 4994 o.add(buildPlacement()); |
4995 return o; | 4995 return o; |
4996 } | 4996 } |
4997 | 4997 |
4998 checkUnnamed361(core.List<api.Placement> o) { | 4998 checkUnnamed910(core.List<api.Placement> o) { |
4999 unittest.expect(o, unittest.hasLength(2)); | 4999 unittest.expect(o, unittest.hasLength(2)); |
5000 checkPlacement(o[0]); | 5000 checkPlacement(o[0]); |
5001 checkPlacement(o[1]); | 5001 checkPlacement(o[1]); |
5002 } | 5002 } |
5003 | 5003 |
5004 core.int buildCounterPlacementsListResponse = 0; | 5004 core.int buildCounterPlacementsListResponse = 0; |
5005 buildPlacementsListResponse() { | 5005 buildPlacementsListResponse() { |
5006 var o = new api.PlacementsListResponse(); | 5006 var o = new api.PlacementsListResponse(); |
5007 buildCounterPlacementsListResponse++; | 5007 buildCounterPlacementsListResponse++; |
5008 if (buildCounterPlacementsListResponse < 3) { | 5008 if (buildCounterPlacementsListResponse < 3) { |
5009 o.kind = "foo"; | 5009 o.kind = "foo"; |
5010 o.nextPageToken = "foo"; | 5010 o.nextPageToken = "foo"; |
5011 o.placements = buildUnnamed361(); | 5011 o.placements = buildUnnamed910(); |
5012 } | 5012 } |
5013 buildCounterPlacementsListResponse--; | 5013 buildCounterPlacementsListResponse--; |
5014 return o; | 5014 return o; |
5015 } | 5015 } |
5016 | 5016 |
5017 checkPlacementsListResponse(api.PlacementsListResponse o) { | 5017 checkPlacementsListResponse(api.PlacementsListResponse o) { |
5018 buildCounterPlacementsListResponse++; | 5018 buildCounterPlacementsListResponse++; |
5019 if (buildCounterPlacementsListResponse < 3) { | 5019 if (buildCounterPlacementsListResponse < 3) { |
5020 unittest.expect(o.kind, unittest.equals('foo')); | 5020 unittest.expect(o.kind, unittest.equals('foo')); |
5021 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5021 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
5022 checkUnnamed361(o.placements); | 5022 checkUnnamed910(o.placements); |
5023 } | 5023 } |
5024 buildCounterPlacementsListResponse--; | 5024 buildCounterPlacementsListResponse--; |
5025 } | 5025 } |
5026 | 5026 |
5027 core.int buildCounterPlatformType = 0; | 5027 core.int buildCounterPlatformType = 0; |
5028 buildPlatformType() { | 5028 buildPlatformType() { |
5029 var o = new api.PlatformType(); | 5029 var o = new api.PlatformType(); |
5030 buildCounterPlatformType++; | 5030 buildCounterPlatformType++; |
5031 if (buildCounterPlatformType < 3) { | 5031 if (buildCounterPlatformType < 3) { |
5032 o.id = "foo"; | 5032 o.id = "foo"; |
5033 o.kind = "foo"; | 5033 o.kind = "foo"; |
5034 o.name = "foo"; | 5034 o.name = "foo"; |
5035 } | 5035 } |
5036 buildCounterPlatformType--; | 5036 buildCounterPlatformType--; |
5037 return o; | 5037 return o; |
5038 } | 5038 } |
5039 | 5039 |
5040 checkPlatformType(api.PlatformType o) { | 5040 checkPlatformType(api.PlatformType o) { |
5041 buildCounterPlatformType++; | 5041 buildCounterPlatformType++; |
5042 if (buildCounterPlatformType < 3) { | 5042 if (buildCounterPlatformType < 3) { |
5043 unittest.expect(o.id, unittest.equals('foo')); | 5043 unittest.expect(o.id, unittest.equals('foo')); |
5044 unittest.expect(o.kind, unittest.equals('foo')); | 5044 unittest.expect(o.kind, unittest.equals('foo')); |
5045 unittest.expect(o.name, unittest.equals('foo')); | 5045 unittest.expect(o.name, unittest.equals('foo')); |
5046 } | 5046 } |
5047 buildCounterPlatformType--; | 5047 buildCounterPlatformType--; |
5048 } | 5048 } |
5049 | 5049 |
5050 buildUnnamed362() { | 5050 buildUnnamed911() { |
5051 var o = new core.List<api.PlatformType>(); | 5051 var o = new core.List<api.PlatformType>(); |
5052 o.add(buildPlatformType()); | 5052 o.add(buildPlatformType()); |
5053 o.add(buildPlatformType()); | 5053 o.add(buildPlatformType()); |
5054 return o; | 5054 return o; |
5055 } | 5055 } |
5056 | 5056 |
5057 checkUnnamed362(core.List<api.PlatformType> o) { | 5057 checkUnnamed911(core.List<api.PlatformType> o) { |
5058 unittest.expect(o, unittest.hasLength(2)); | 5058 unittest.expect(o, unittest.hasLength(2)); |
5059 checkPlatformType(o[0]); | 5059 checkPlatformType(o[0]); |
5060 checkPlatformType(o[1]); | 5060 checkPlatformType(o[1]); |
5061 } | 5061 } |
5062 | 5062 |
5063 core.int buildCounterPlatformTypesListResponse = 0; | 5063 core.int buildCounterPlatformTypesListResponse = 0; |
5064 buildPlatformTypesListResponse() { | 5064 buildPlatformTypesListResponse() { |
5065 var o = new api.PlatformTypesListResponse(); | 5065 var o = new api.PlatformTypesListResponse(); |
5066 buildCounterPlatformTypesListResponse++; | 5066 buildCounterPlatformTypesListResponse++; |
5067 if (buildCounterPlatformTypesListResponse < 3) { | 5067 if (buildCounterPlatformTypesListResponse < 3) { |
5068 o.kind = "foo"; | 5068 o.kind = "foo"; |
5069 o.platformTypes = buildUnnamed362(); | 5069 o.platformTypes = buildUnnamed911(); |
5070 } | 5070 } |
5071 buildCounterPlatformTypesListResponse--; | 5071 buildCounterPlatformTypesListResponse--; |
5072 return o; | 5072 return o; |
5073 } | 5073 } |
5074 | 5074 |
5075 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { | 5075 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { |
5076 buildCounterPlatformTypesListResponse++; | 5076 buildCounterPlatformTypesListResponse++; |
5077 if (buildCounterPlatformTypesListResponse < 3) { | 5077 if (buildCounterPlatformTypesListResponse < 3) { |
5078 unittest.expect(o.kind, unittest.equals('foo')); | 5078 unittest.expect(o.kind, unittest.equals('foo')); |
5079 checkUnnamed362(o.platformTypes); | 5079 checkUnnamed911(o.platformTypes); |
5080 } | 5080 } |
5081 buildCounterPlatformTypesListResponse--; | 5081 buildCounterPlatformTypesListResponse--; |
5082 } | 5082 } |
5083 | 5083 |
5084 core.int buildCounterPopupWindowProperties = 0; | 5084 core.int buildCounterPopupWindowProperties = 0; |
5085 buildPopupWindowProperties() { | 5085 buildPopupWindowProperties() { |
5086 var o = new api.PopupWindowProperties(); | 5086 var o = new api.PopupWindowProperties(); |
5087 buildCounterPopupWindowProperties++; | 5087 buildCounterPopupWindowProperties++; |
5088 if (buildCounterPopupWindowProperties < 3) { | 5088 if (buildCounterPopupWindowProperties < 3) { |
5089 o.dimension = buildSize(); | 5089 o.dimension = buildSize(); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5134 buildCounterPostalCode++; | 5134 buildCounterPostalCode++; |
5135 if (buildCounterPostalCode < 3) { | 5135 if (buildCounterPostalCode < 3) { |
5136 unittest.expect(o.countryCode, unittest.equals('foo')); | 5136 unittest.expect(o.countryCode, unittest.equals('foo')); |
5137 unittest.expect(o.countryDartId, unittest.equals('foo')); | 5137 unittest.expect(o.countryDartId, unittest.equals('foo')); |
5138 unittest.expect(o.id, unittest.equals('foo')); | 5138 unittest.expect(o.id, unittest.equals('foo')); |
5139 unittest.expect(o.kind, unittest.equals('foo')); | 5139 unittest.expect(o.kind, unittest.equals('foo')); |
5140 } | 5140 } |
5141 buildCounterPostalCode--; | 5141 buildCounterPostalCode--; |
5142 } | 5142 } |
5143 | 5143 |
5144 buildUnnamed363() { | 5144 buildUnnamed912() { |
5145 var o = new core.List<api.PostalCode>(); | 5145 var o = new core.List<api.PostalCode>(); |
5146 o.add(buildPostalCode()); | 5146 o.add(buildPostalCode()); |
5147 o.add(buildPostalCode()); | 5147 o.add(buildPostalCode()); |
5148 return o; | 5148 return o; |
5149 } | 5149 } |
5150 | 5150 |
5151 checkUnnamed363(core.List<api.PostalCode> o) { | 5151 checkUnnamed912(core.List<api.PostalCode> o) { |
5152 unittest.expect(o, unittest.hasLength(2)); | 5152 unittest.expect(o, unittest.hasLength(2)); |
5153 checkPostalCode(o[0]); | 5153 checkPostalCode(o[0]); |
5154 checkPostalCode(o[1]); | 5154 checkPostalCode(o[1]); |
5155 } | 5155 } |
5156 | 5156 |
5157 core.int buildCounterPostalCodesListResponse = 0; | 5157 core.int buildCounterPostalCodesListResponse = 0; |
5158 buildPostalCodesListResponse() { | 5158 buildPostalCodesListResponse() { |
5159 var o = new api.PostalCodesListResponse(); | 5159 var o = new api.PostalCodesListResponse(); |
5160 buildCounterPostalCodesListResponse++; | 5160 buildCounterPostalCodesListResponse++; |
5161 if (buildCounterPostalCodesListResponse < 3) { | 5161 if (buildCounterPostalCodesListResponse < 3) { |
5162 o.kind = "foo"; | 5162 o.kind = "foo"; |
5163 o.postalCodes = buildUnnamed363(); | 5163 o.postalCodes = buildUnnamed912(); |
5164 } | 5164 } |
5165 buildCounterPostalCodesListResponse--; | 5165 buildCounterPostalCodesListResponse--; |
5166 return o; | 5166 return o; |
5167 } | 5167 } |
5168 | 5168 |
5169 checkPostalCodesListResponse(api.PostalCodesListResponse o) { | 5169 checkPostalCodesListResponse(api.PostalCodesListResponse o) { |
5170 buildCounterPostalCodesListResponse++; | 5170 buildCounterPostalCodesListResponse++; |
5171 if (buildCounterPostalCodesListResponse < 3) { | 5171 if (buildCounterPostalCodesListResponse < 3) { |
5172 unittest.expect(o.kind, unittest.equals('foo')); | 5172 unittest.expect(o.kind, unittest.equals('foo')); |
5173 checkUnnamed363(o.postalCodes); | 5173 checkUnnamed912(o.postalCodes); |
5174 } | 5174 } |
5175 buildCounterPostalCodesListResponse--; | 5175 buildCounterPostalCodesListResponse--; |
5176 } | 5176 } |
5177 | 5177 |
5178 buildUnnamed364() { | 5178 buildUnnamed913() { |
5179 var o = new core.List<api.PricingSchedulePricingPeriod>(); | 5179 var o = new core.List<api.PricingSchedulePricingPeriod>(); |
5180 o.add(buildPricingSchedulePricingPeriod()); | 5180 o.add(buildPricingSchedulePricingPeriod()); |
5181 o.add(buildPricingSchedulePricingPeriod()); | 5181 o.add(buildPricingSchedulePricingPeriod()); |
5182 return o; | 5182 return o; |
5183 } | 5183 } |
5184 | 5184 |
5185 checkUnnamed364(core.List<api.PricingSchedulePricingPeriod> o) { | 5185 checkUnnamed913(core.List<api.PricingSchedulePricingPeriod> o) { |
5186 unittest.expect(o, unittest.hasLength(2)); | 5186 unittest.expect(o, unittest.hasLength(2)); |
5187 checkPricingSchedulePricingPeriod(o[0]); | 5187 checkPricingSchedulePricingPeriod(o[0]); |
5188 checkPricingSchedulePricingPeriod(o[1]); | 5188 checkPricingSchedulePricingPeriod(o[1]); |
5189 } | 5189 } |
5190 | 5190 |
5191 core.int buildCounterPricingSchedule = 0; | 5191 core.int buildCounterPricingSchedule = 0; |
5192 buildPricingSchedule() { | 5192 buildPricingSchedule() { |
5193 var o = new api.PricingSchedule(); | 5193 var o = new api.PricingSchedule(); |
5194 buildCounterPricingSchedule++; | 5194 buildCounterPricingSchedule++; |
5195 if (buildCounterPricingSchedule < 3) { | 5195 if (buildCounterPricingSchedule < 3) { |
5196 o.capCostOption = "foo"; | 5196 o.capCostOption = "foo"; |
5197 o.disregardOverdelivery = true; | 5197 o.disregardOverdelivery = true; |
5198 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5198 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
5199 o.flighted = true; | 5199 o.flighted = true; |
5200 o.floodlightActivityId = "foo"; | 5200 o.floodlightActivityId = "foo"; |
5201 o.pricingPeriods = buildUnnamed364(); | 5201 o.pricingPeriods = buildUnnamed913(); |
5202 o.pricingType = "foo"; | 5202 o.pricingType = "foo"; |
5203 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5203 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
5204 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5204 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
5205 } | 5205 } |
5206 buildCounterPricingSchedule--; | 5206 buildCounterPricingSchedule--; |
5207 return o; | 5207 return o; |
5208 } | 5208 } |
5209 | 5209 |
5210 checkPricingSchedule(api.PricingSchedule o) { | 5210 checkPricingSchedule(api.PricingSchedule o) { |
5211 buildCounterPricingSchedule++; | 5211 buildCounterPricingSchedule++; |
5212 if (buildCounterPricingSchedule < 3) { | 5212 if (buildCounterPricingSchedule < 3) { |
5213 unittest.expect(o.capCostOption, unittest.equals('foo')); | 5213 unittest.expect(o.capCostOption, unittest.equals('foo')); |
5214 unittest.expect(o.disregardOverdelivery, unittest.isTrue); | 5214 unittest.expect(o.disregardOverdelivery, unittest.isTrue); |
5215 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5215 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
5216 unittest.expect(o.flighted, unittest.isTrue); | 5216 unittest.expect(o.flighted, unittest.isTrue); |
5217 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 5217 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
5218 checkUnnamed364(o.pricingPeriods); | 5218 checkUnnamed913(o.pricingPeriods); |
5219 unittest.expect(o.pricingType, unittest.equals('foo')); | 5219 unittest.expect(o.pricingType, unittest.equals('foo')); |
5220 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5220 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
5221 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); | 5221 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); |
5222 } | 5222 } |
5223 buildCounterPricingSchedule--; | 5223 buildCounterPricingSchedule--; |
5224 } | 5224 } |
5225 | 5225 |
5226 core.int buildCounterPricingSchedulePricingPeriod = 0; | 5226 core.int buildCounterPricingSchedulePricingPeriod = 0; |
5227 buildPricingSchedulePricingPeriod() { | 5227 buildPricingSchedulePricingPeriod() { |
5228 var o = new api.PricingSchedulePricingPeriod(); | 5228 var o = new api.PricingSchedulePricingPeriod(); |
(...skipping 14 matching lines...) Expand all Loading... |
5243 if (buildCounterPricingSchedulePricingPeriod < 3) { | 5243 if (buildCounterPricingSchedulePricingPeriod < 3) { |
5244 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5244 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
5245 unittest.expect(o.pricingComment, unittest.equals('foo')); | 5245 unittest.expect(o.pricingComment, unittest.equals('foo')); |
5246 unittest.expect(o.rateOrCostNanos, unittest.equals('foo')); | 5246 unittest.expect(o.rateOrCostNanos, unittest.equals('foo')); |
5247 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5247 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
5248 unittest.expect(o.units, unittest.equals('foo')); | 5248 unittest.expect(o.units, unittest.equals('foo')); |
5249 } | 5249 } |
5250 buildCounterPricingSchedulePricingPeriod--; | 5250 buildCounterPricingSchedulePricingPeriod--; |
5251 } | 5251 } |
5252 | 5252 |
5253 buildUnnamed365() { | 5253 buildUnnamed914() { |
5254 var o = new core.List<core.String>(); | 5254 var o = new core.List<core.String>(); |
5255 o.add("foo"); | 5255 o.add("foo"); |
5256 o.add("foo"); | 5256 o.add("foo"); |
5257 return o; | 5257 return o; |
5258 } | 5258 } |
5259 | 5259 |
5260 checkUnnamed365(core.List<core.String> o) { | 5260 checkUnnamed914(core.List<core.String> o) { |
5261 unittest.expect(o, unittest.hasLength(2)); | 5261 unittest.expect(o, unittest.hasLength(2)); |
5262 unittest.expect(o[0], unittest.equals('foo')); | 5262 unittest.expect(o[0], unittest.equals('foo')); |
5263 unittest.expect(o[1], unittest.equals('foo')); | 5263 unittest.expect(o[1], unittest.equals('foo')); |
5264 } | 5264 } |
5265 | 5265 |
5266 buildUnnamed366() { | 5266 buildUnnamed915() { |
5267 var o = new core.List<core.String>(); | 5267 var o = new core.List<core.String>(); |
5268 o.add("foo"); | 5268 o.add("foo"); |
5269 o.add("foo"); | 5269 o.add("foo"); |
5270 return o; | 5270 return o; |
5271 } | 5271 } |
5272 | 5272 |
5273 checkUnnamed366(core.List<core.String> o) { | 5273 checkUnnamed915(core.List<core.String> o) { |
5274 unittest.expect(o, unittest.hasLength(2)); | 5274 unittest.expect(o, unittest.hasLength(2)); |
5275 unittest.expect(o[0], unittest.equals('foo')); | 5275 unittest.expect(o[0], unittest.equals('foo')); |
5276 unittest.expect(o[1], unittest.equals('foo')); | 5276 unittest.expect(o[1], unittest.equals('foo')); |
5277 } | 5277 } |
5278 | 5278 |
5279 core.int buildCounterProgrammaticSetting = 0; | 5279 core.int buildCounterProgrammaticSetting = 0; |
5280 buildProgrammaticSetting() { | 5280 buildProgrammaticSetting() { |
5281 var o = new api.ProgrammaticSetting(); | 5281 var o = new api.ProgrammaticSetting(); |
5282 buildCounterProgrammaticSetting++; | 5282 buildCounterProgrammaticSetting++; |
5283 if (buildCounterProgrammaticSetting < 3) { | 5283 if (buildCounterProgrammaticSetting < 3) { |
5284 o.adxDealIds = buildUnnamed365(); | 5284 o.adxDealIds = buildUnnamed914(); |
5285 o.insertionOrderId = "foo"; | 5285 o.insertionOrderId = "foo"; |
5286 o.insertionOrderIdStatus = true; | 5286 o.insertionOrderIdStatus = true; |
5287 o.mediaCostNanos = "foo"; | 5287 o.mediaCostNanos = "foo"; |
5288 o.programmatic = true; | 5288 o.programmatic = true; |
5289 o.traffickerEmails = buildUnnamed366(); | 5289 o.traffickerEmails = buildUnnamed915(); |
5290 } | 5290 } |
5291 buildCounterProgrammaticSetting--; | 5291 buildCounterProgrammaticSetting--; |
5292 return o; | 5292 return o; |
5293 } | 5293 } |
5294 | 5294 |
5295 checkProgrammaticSetting(api.ProgrammaticSetting o) { | 5295 checkProgrammaticSetting(api.ProgrammaticSetting o) { |
5296 buildCounterProgrammaticSetting++; | 5296 buildCounterProgrammaticSetting++; |
5297 if (buildCounterProgrammaticSetting < 3) { | 5297 if (buildCounterProgrammaticSetting < 3) { |
5298 checkUnnamed365(o.adxDealIds); | 5298 checkUnnamed914(o.adxDealIds); |
5299 unittest.expect(o.insertionOrderId, unittest.equals('foo')); | 5299 unittest.expect(o.insertionOrderId, unittest.equals('foo')); |
5300 unittest.expect(o.insertionOrderIdStatus, unittest.isTrue); | 5300 unittest.expect(o.insertionOrderIdStatus, unittest.isTrue); |
5301 unittest.expect(o.mediaCostNanos, unittest.equals('foo')); | 5301 unittest.expect(o.mediaCostNanos, unittest.equals('foo')); |
5302 unittest.expect(o.programmatic, unittest.isTrue); | 5302 unittest.expect(o.programmatic, unittest.isTrue); |
5303 checkUnnamed366(o.traffickerEmails); | 5303 checkUnnamed915(o.traffickerEmails); |
5304 } | 5304 } |
5305 buildCounterProgrammaticSetting--; | 5305 buildCounterProgrammaticSetting--; |
5306 } | 5306 } |
5307 | 5307 |
5308 buildUnnamed367() { | 5308 buildUnnamed916() { |
5309 var o = new core.List<api.Dimension>(); | 5309 var o = new core.List<api.Dimension>(); |
5310 o.add(buildDimension()); | 5310 o.add(buildDimension()); |
5311 o.add(buildDimension()); | 5311 o.add(buildDimension()); |
5312 return o; | 5312 return o; |
5313 } | 5313 } |
5314 | 5314 |
5315 checkUnnamed367(core.List<api.Dimension> o) { | 5315 checkUnnamed916(core.List<api.Dimension> o) { |
5316 unittest.expect(o, unittest.hasLength(2)); | 5316 unittest.expect(o, unittest.hasLength(2)); |
5317 checkDimension(o[0]); | 5317 checkDimension(o[0]); |
5318 checkDimension(o[1]); | 5318 checkDimension(o[1]); |
5319 } | 5319 } |
5320 | 5320 |
5321 buildUnnamed368() { | 5321 buildUnnamed917() { |
5322 var o = new core.List<api.Dimension>(); | 5322 var o = new core.List<api.Dimension>(); |
5323 o.add(buildDimension()); | 5323 o.add(buildDimension()); |
5324 o.add(buildDimension()); | 5324 o.add(buildDimension()); |
5325 return o; | 5325 return o; |
5326 } | 5326 } |
5327 | 5327 |
5328 checkUnnamed368(core.List<api.Dimension> o) { | 5328 checkUnnamed917(core.List<api.Dimension> o) { |
5329 unittest.expect(o, unittest.hasLength(2)); | 5329 unittest.expect(o, unittest.hasLength(2)); |
5330 checkDimension(o[0]); | 5330 checkDimension(o[0]); |
5331 checkDimension(o[1]); | 5331 checkDimension(o[1]); |
5332 } | 5332 } |
5333 | 5333 |
5334 buildUnnamed369() { | 5334 buildUnnamed918() { |
5335 var o = new core.List<api.Metric>(); | 5335 var o = new core.List<api.Metric>(); |
5336 o.add(buildMetric()); | 5336 o.add(buildMetric()); |
5337 o.add(buildMetric()); | 5337 o.add(buildMetric()); |
5338 return o; | 5338 return o; |
5339 } | 5339 } |
5340 | 5340 |
5341 checkUnnamed369(core.List<api.Metric> o) { | 5341 checkUnnamed918(core.List<api.Metric> o) { |
5342 unittest.expect(o, unittest.hasLength(2)); | 5342 unittest.expect(o, unittest.hasLength(2)); |
5343 checkMetric(o[0]); | 5343 checkMetric(o[0]); |
5344 checkMetric(o[1]); | 5344 checkMetric(o[1]); |
5345 } | 5345 } |
5346 | 5346 |
5347 buildUnnamed370() { | 5347 buildUnnamed919() { |
5348 var o = new core.List<api.Metric>(); | 5348 var o = new core.List<api.Metric>(); |
5349 o.add(buildMetric()); | 5349 o.add(buildMetric()); |
5350 o.add(buildMetric()); | 5350 o.add(buildMetric()); |
5351 return o; | 5351 return o; |
5352 } | 5352 } |
5353 | 5353 |
5354 checkUnnamed370(core.List<api.Metric> o) { | 5354 checkUnnamed919(core.List<api.Metric> o) { |
5355 unittest.expect(o, unittest.hasLength(2)); | 5355 unittest.expect(o, unittest.hasLength(2)); |
5356 checkMetric(o[0]); | 5356 checkMetric(o[0]); |
5357 checkMetric(o[1]); | 5357 checkMetric(o[1]); |
5358 } | 5358 } |
5359 | 5359 |
5360 buildUnnamed371() { | 5360 buildUnnamed920() { |
5361 var o = new core.List<api.Metric>(); | 5361 var o = new core.List<api.Metric>(); |
5362 o.add(buildMetric()); | 5362 o.add(buildMetric()); |
5363 o.add(buildMetric()); | 5363 o.add(buildMetric()); |
5364 return o; | 5364 return o; |
5365 } | 5365 } |
5366 | 5366 |
5367 checkUnnamed371(core.List<api.Metric> o) { | 5367 checkUnnamed920(core.List<api.Metric> o) { |
5368 unittest.expect(o, unittest.hasLength(2)); | 5368 unittest.expect(o, unittest.hasLength(2)); |
5369 checkMetric(o[0]); | 5369 checkMetric(o[0]); |
5370 checkMetric(o[1]); | 5370 checkMetric(o[1]); |
5371 } | 5371 } |
5372 | 5372 |
5373 core.int buildCounterReachReportCompatibleFields = 0; | 5373 core.int buildCounterReachReportCompatibleFields = 0; |
5374 buildReachReportCompatibleFields() { | 5374 buildReachReportCompatibleFields() { |
5375 var o = new api.ReachReportCompatibleFields(); | 5375 var o = new api.ReachReportCompatibleFields(); |
5376 buildCounterReachReportCompatibleFields++; | 5376 buildCounterReachReportCompatibleFields++; |
5377 if (buildCounterReachReportCompatibleFields < 3) { | 5377 if (buildCounterReachReportCompatibleFields < 3) { |
5378 o.dimensionFilters = buildUnnamed367(); | 5378 o.dimensionFilters = buildUnnamed916(); |
5379 o.dimensions = buildUnnamed368(); | 5379 o.dimensions = buildUnnamed917(); |
5380 o.kind = "foo"; | 5380 o.kind = "foo"; |
5381 o.metrics = buildUnnamed369(); | 5381 o.metrics = buildUnnamed918(); |
5382 o.pivotedActivityMetrics = buildUnnamed370(); | 5382 o.pivotedActivityMetrics = buildUnnamed919(); |
5383 o.reachByFrequencyMetrics = buildUnnamed371(); | 5383 o.reachByFrequencyMetrics = buildUnnamed920(); |
5384 } | 5384 } |
5385 buildCounterReachReportCompatibleFields--; | 5385 buildCounterReachReportCompatibleFields--; |
5386 return o; | 5386 return o; |
5387 } | 5387 } |
5388 | 5388 |
5389 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { | 5389 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { |
5390 buildCounterReachReportCompatibleFields++; | 5390 buildCounterReachReportCompatibleFields++; |
5391 if (buildCounterReachReportCompatibleFields < 3) { | 5391 if (buildCounterReachReportCompatibleFields < 3) { |
5392 checkUnnamed367(o.dimensionFilters); | 5392 checkUnnamed916(o.dimensionFilters); |
5393 checkUnnamed368(o.dimensions); | 5393 checkUnnamed917(o.dimensions); |
5394 unittest.expect(o.kind, unittest.equals('foo')); | 5394 unittest.expect(o.kind, unittest.equals('foo')); |
5395 checkUnnamed369(o.metrics); | 5395 checkUnnamed918(o.metrics); |
5396 checkUnnamed370(o.pivotedActivityMetrics); | 5396 checkUnnamed919(o.pivotedActivityMetrics); |
5397 checkUnnamed371(o.reachByFrequencyMetrics); | 5397 checkUnnamed920(o.reachByFrequencyMetrics); |
5398 } | 5398 } |
5399 buildCounterReachReportCompatibleFields--; | 5399 buildCounterReachReportCompatibleFields--; |
5400 } | 5400 } |
5401 | 5401 |
5402 core.int buildCounterRecipient = 0; | 5402 core.int buildCounterRecipient = 0; |
5403 buildRecipient() { | 5403 buildRecipient() { |
5404 var o = new api.Recipient(); | 5404 var o = new api.Recipient(); |
5405 buildCounterRecipient++; | 5405 buildCounterRecipient++; |
5406 if (buildCounterRecipient < 3) { | 5406 if (buildCounterRecipient < 3) { |
5407 o.deliveryType = "foo"; | 5407 o.deliveryType = "foo"; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5444 unittest.expect(o.countryCode, unittest.equals('foo')); | 5444 unittest.expect(o.countryCode, unittest.equals('foo')); |
5445 unittest.expect(o.countryDartId, unittest.equals('foo')); | 5445 unittest.expect(o.countryDartId, unittest.equals('foo')); |
5446 unittest.expect(o.dartId, unittest.equals('foo')); | 5446 unittest.expect(o.dartId, unittest.equals('foo')); |
5447 unittest.expect(o.kind, unittest.equals('foo')); | 5447 unittest.expect(o.kind, unittest.equals('foo')); |
5448 unittest.expect(o.name, unittest.equals('foo')); | 5448 unittest.expect(o.name, unittest.equals('foo')); |
5449 unittest.expect(o.regionCode, unittest.equals('foo')); | 5449 unittest.expect(o.regionCode, unittest.equals('foo')); |
5450 } | 5450 } |
5451 buildCounterRegion--; | 5451 buildCounterRegion--; |
5452 } | 5452 } |
5453 | 5453 |
5454 buildUnnamed372() { | 5454 buildUnnamed921() { |
5455 var o = new core.List<api.Region>(); | 5455 var o = new core.List<api.Region>(); |
5456 o.add(buildRegion()); | 5456 o.add(buildRegion()); |
5457 o.add(buildRegion()); | 5457 o.add(buildRegion()); |
5458 return o; | 5458 return o; |
5459 } | 5459 } |
5460 | 5460 |
5461 checkUnnamed372(core.List<api.Region> o) { | 5461 checkUnnamed921(core.List<api.Region> o) { |
5462 unittest.expect(o, unittest.hasLength(2)); | 5462 unittest.expect(o, unittest.hasLength(2)); |
5463 checkRegion(o[0]); | 5463 checkRegion(o[0]); |
5464 checkRegion(o[1]); | 5464 checkRegion(o[1]); |
5465 } | 5465 } |
5466 | 5466 |
5467 core.int buildCounterRegionsListResponse = 0; | 5467 core.int buildCounterRegionsListResponse = 0; |
5468 buildRegionsListResponse() { | 5468 buildRegionsListResponse() { |
5469 var o = new api.RegionsListResponse(); | 5469 var o = new api.RegionsListResponse(); |
5470 buildCounterRegionsListResponse++; | 5470 buildCounterRegionsListResponse++; |
5471 if (buildCounterRegionsListResponse < 3) { | 5471 if (buildCounterRegionsListResponse < 3) { |
5472 o.kind = "foo"; | 5472 o.kind = "foo"; |
5473 o.regions = buildUnnamed372(); | 5473 o.regions = buildUnnamed921(); |
5474 } | 5474 } |
5475 buildCounterRegionsListResponse--; | 5475 buildCounterRegionsListResponse--; |
5476 return o; | 5476 return o; |
5477 } | 5477 } |
5478 | 5478 |
5479 checkRegionsListResponse(api.RegionsListResponse o) { | 5479 checkRegionsListResponse(api.RegionsListResponse o) { |
5480 buildCounterRegionsListResponse++; | 5480 buildCounterRegionsListResponse++; |
5481 if (buildCounterRegionsListResponse < 3) { | 5481 if (buildCounterRegionsListResponse < 3) { |
5482 unittest.expect(o.kind, unittest.equals('foo')); | 5482 unittest.expect(o.kind, unittest.equals('foo')); |
5483 checkUnnamed372(o.regions); | 5483 checkUnnamed921(o.regions); |
5484 } | 5484 } |
5485 buildCounterRegionsListResponse--; | 5485 buildCounterRegionsListResponse--; |
5486 } | 5486 } |
5487 | 5487 |
5488 buildUnnamed373() { | 5488 buildUnnamed922() { |
5489 var o = new core.List<api.DimensionValue>(); | 5489 var o = new core.List<api.DimensionValue>(); |
5490 o.add(buildDimensionValue()); | 5490 o.add(buildDimensionValue()); |
5491 o.add(buildDimensionValue()); | 5491 o.add(buildDimensionValue()); |
5492 return o; | 5492 return o; |
5493 } | 5493 } |
5494 | 5494 |
5495 checkUnnamed373(core.List<api.DimensionValue> o) { | 5495 checkUnnamed922(core.List<api.DimensionValue> o) { |
5496 unittest.expect(o, unittest.hasLength(2)); | 5496 unittest.expect(o, unittest.hasLength(2)); |
5497 checkDimensionValue(o[0]); | 5497 checkDimensionValue(o[0]); |
5498 checkDimensionValue(o[1]); | 5498 checkDimensionValue(o[1]); |
5499 } | 5499 } |
5500 | 5500 |
5501 buildUnnamed374() { | 5501 buildUnnamed923() { |
5502 var o = new core.List<api.SortedDimension>(); | 5502 var o = new core.List<api.SortedDimension>(); |
5503 o.add(buildSortedDimension()); | 5503 o.add(buildSortedDimension()); |
5504 o.add(buildSortedDimension()); | 5504 o.add(buildSortedDimension()); |
5505 return o; | 5505 return o; |
5506 } | 5506 } |
5507 | 5507 |
5508 checkUnnamed374(core.List<api.SortedDimension> o) { | 5508 checkUnnamed923(core.List<api.SortedDimension> o) { |
5509 unittest.expect(o, unittest.hasLength(2)); | 5509 unittest.expect(o, unittest.hasLength(2)); |
5510 checkSortedDimension(o[0]); | 5510 checkSortedDimension(o[0]); |
5511 checkSortedDimension(o[1]); | 5511 checkSortedDimension(o[1]); |
5512 } | 5512 } |
5513 | 5513 |
5514 buildUnnamed375() { | 5514 buildUnnamed924() { |
5515 var o = new core.List<core.String>(); | 5515 var o = new core.List<core.String>(); |
5516 o.add("foo"); | 5516 o.add("foo"); |
5517 o.add("foo"); | 5517 o.add("foo"); |
5518 return o; | 5518 return o; |
5519 } | 5519 } |
5520 | 5520 |
5521 checkUnnamed375(core.List<core.String> o) { | 5521 checkUnnamed924(core.List<core.String> o) { |
5522 unittest.expect(o, unittest.hasLength(2)); | 5522 unittest.expect(o, unittest.hasLength(2)); |
5523 unittest.expect(o[0], unittest.equals('foo')); | 5523 unittest.expect(o[0], unittest.equals('foo')); |
5524 unittest.expect(o[1], unittest.equals('foo')); | 5524 unittest.expect(o[1], unittest.equals('foo')); |
5525 } | 5525 } |
5526 | 5526 |
5527 core.int buildCounterReportCriteria = 0; | 5527 core.int buildCounterReportCriteria = 0; |
5528 buildReportCriteria() { | 5528 buildReportCriteria() { |
5529 var o = new api.ReportCriteria(); | 5529 var o = new api.ReportCriteria(); |
5530 buildCounterReportCriteria++; | 5530 buildCounterReportCriteria++; |
5531 if (buildCounterReportCriteria < 3) { | 5531 if (buildCounterReportCriteria < 3) { |
5532 o.activities = buildActivities(); | 5532 o.activities = buildActivities(); |
5533 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 5533 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
5534 o.dateRange = buildDateRange(); | 5534 o.dateRange = buildDateRange(); |
5535 o.dimensionFilters = buildUnnamed373(); | 5535 o.dimensionFilters = buildUnnamed922(); |
5536 o.dimensions = buildUnnamed374(); | 5536 o.dimensions = buildUnnamed923(); |
5537 o.metricNames = buildUnnamed375(); | 5537 o.metricNames = buildUnnamed924(); |
5538 } | 5538 } |
5539 buildCounterReportCriteria--; | 5539 buildCounterReportCriteria--; |
5540 return o; | 5540 return o; |
5541 } | 5541 } |
5542 | 5542 |
5543 checkReportCriteria(api.ReportCriteria o) { | 5543 checkReportCriteria(api.ReportCriteria o) { |
5544 buildCounterReportCriteria++; | 5544 buildCounterReportCriteria++; |
5545 if (buildCounterReportCriteria < 3) { | 5545 if (buildCounterReportCriteria < 3) { |
5546 checkActivities(o.activities); | 5546 checkActivities(o.activities); |
5547 checkCustomRichMediaEvents(o.customRichMediaEvents); | 5547 checkCustomRichMediaEvents(o.customRichMediaEvents); |
5548 checkDateRange(o.dateRange); | 5548 checkDateRange(o.dateRange); |
5549 checkUnnamed373(o.dimensionFilters); | 5549 checkUnnamed922(o.dimensionFilters); |
5550 checkUnnamed374(o.dimensions); | 5550 checkUnnamed923(o.dimensions); |
5551 checkUnnamed375(o.metricNames); | 5551 checkUnnamed924(o.metricNames); |
5552 } | 5552 } |
5553 buildCounterReportCriteria--; | 5553 buildCounterReportCriteria--; |
5554 } | 5554 } |
5555 | 5555 |
5556 buildUnnamed376() { | 5556 buildUnnamed925() { |
5557 var o = new core.List<api.SortedDimension>(); | 5557 var o = new core.List<api.SortedDimension>(); |
5558 o.add(buildSortedDimension()); | 5558 o.add(buildSortedDimension()); |
5559 o.add(buildSortedDimension()); | 5559 o.add(buildSortedDimension()); |
5560 return o; | 5560 return o; |
5561 } | 5561 } |
5562 | 5562 |
5563 checkUnnamed376(core.List<api.SortedDimension> o) { | 5563 checkUnnamed925(core.List<api.SortedDimension> o) { |
5564 unittest.expect(o, unittest.hasLength(2)); | 5564 unittest.expect(o, unittest.hasLength(2)); |
5565 checkSortedDimension(o[0]); | 5565 checkSortedDimension(o[0]); |
5566 checkSortedDimension(o[1]); | 5566 checkSortedDimension(o[1]); |
5567 } | 5567 } |
5568 | 5568 |
5569 buildUnnamed377() { | 5569 buildUnnamed926() { |
5570 var o = new core.List<api.DimensionValue>(); | 5570 var o = new core.List<api.DimensionValue>(); |
5571 o.add(buildDimensionValue()); | 5571 o.add(buildDimensionValue()); |
5572 o.add(buildDimensionValue()); | 5572 o.add(buildDimensionValue()); |
5573 return o; | 5573 return o; |
5574 } | 5574 } |
5575 | 5575 |
5576 checkUnnamed377(core.List<api.DimensionValue> o) { | 5576 checkUnnamed926(core.List<api.DimensionValue> o) { |
5577 unittest.expect(o, unittest.hasLength(2)); | 5577 unittest.expect(o, unittest.hasLength(2)); |
5578 checkDimensionValue(o[0]); | 5578 checkDimensionValue(o[0]); |
5579 checkDimensionValue(o[1]); | 5579 checkDimensionValue(o[1]); |
5580 } | 5580 } |
5581 | 5581 |
5582 buildUnnamed378() { | 5582 buildUnnamed927() { |
5583 var o = new core.List<core.String>(); | 5583 var o = new core.List<core.String>(); |
5584 o.add("foo"); | 5584 o.add("foo"); |
5585 o.add("foo"); | 5585 o.add("foo"); |
5586 return o; | 5586 return o; |
5587 } | 5587 } |
5588 | 5588 |
5589 checkUnnamed378(core.List<core.String> o) { | 5589 checkUnnamed927(core.List<core.String> o) { |
5590 unittest.expect(o, unittest.hasLength(2)); | 5590 unittest.expect(o, unittest.hasLength(2)); |
5591 unittest.expect(o[0], unittest.equals('foo')); | 5591 unittest.expect(o[0], unittest.equals('foo')); |
5592 unittest.expect(o[1], unittest.equals('foo')); | 5592 unittest.expect(o[1], unittest.equals('foo')); |
5593 } | 5593 } |
5594 | 5594 |
5595 buildUnnamed379() { | 5595 buildUnnamed928() { |
5596 var o = new core.List<core.String>(); | 5596 var o = new core.List<core.String>(); |
5597 o.add("foo"); | 5597 o.add("foo"); |
5598 o.add("foo"); | 5598 o.add("foo"); |
5599 return o; | 5599 return o; |
5600 } | 5600 } |
5601 | 5601 |
5602 checkUnnamed379(core.List<core.String> o) { | 5602 checkUnnamed928(core.List<core.String> o) { |
5603 unittest.expect(o, unittest.hasLength(2)); | 5603 unittest.expect(o, unittest.hasLength(2)); |
5604 unittest.expect(o[0], unittest.equals('foo')); | 5604 unittest.expect(o[0], unittest.equals('foo')); |
5605 unittest.expect(o[1], unittest.equals('foo')); | 5605 unittest.expect(o[1], unittest.equals('foo')); |
5606 } | 5606 } |
5607 | 5607 |
5608 core.int buildCounterReportCrossDimensionReachCriteria = 0; | 5608 core.int buildCounterReportCrossDimensionReachCriteria = 0; |
5609 buildReportCrossDimensionReachCriteria() { | 5609 buildReportCrossDimensionReachCriteria() { |
5610 var o = new api.ReportCrossDimensionReachCriteria(); | 5610 var o = new api.ReportCrossDimensionReachCriteria(); |
5611 buildCounterReportCrossDimensionReachCriteria++; | 5611 buildCounterReportCrossDimensionReachCriteria++; |
5612 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 5612 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
5613 o.breakdown = buildUnnamed376(); | 5613 o.breakdown = buildUnnamed925(); |
5614 o.dateRange = buildDateRange(); | 5614 o.dateRange = buildDateRange(); |
5615 o.dimension = "foo"; | 5615 o.dimension = "foo"; |
5616 o.dimensionFilters = buildUnnamed377(); | 5616 o.dimensionFilters = buildUnnamed926(); |
5617 o.metricNames = buildUnnamed378(); | 5617 o.metricNames = buildUnnamed927(); |
5618 o.overlapMetricNames = buildUnnamed379(); | 5618 o.overlapMetricNames = buildUnnamed928(); |
5619 o.pivoted = true; | 5619 o.pivoted = true; |
5620 } | 5620 } |
5621 buildCounterReportCrossDimensionReachCriteria--; | 5621 buildCounterReportCrossDimensionReachCriteria--; |
5622 return o; | 5622 return o; |
5623 } | 5623 } |
5624 | 5624 |
5625 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ | 5625 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ |
5626 buildCounterReportCrossDimensionReachCriteria++; | 5626 buildCounterReportCrossDimensionReachCriteria++; |
5627 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 5627 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
5628 checkUnnamed376(o.breakdown); | 5628 checkUnnamed925(o.breakdown); |
5629 checkDateRange(o.dateRange); | 5629 checkDateRange(o.dateRange); |
5630 unittest.expect(o.dimension, unittest.equals('foo')); | 5630 unittest.expect(o.dimension, unittest.equals('foo')); |
5631 checkUnnamed377(o.dimensionFilters); | 5631 checkUnnamed926(o.dimensionFilters); |
5632 checkUnnamed378(o.metricNames); | 5632 checkUnnamed927(o.metricNames); |
5633 checkUnnamed379(o.overlapMetricNames); | 5633 checkUnnamed928(o.overlapMetricNames); |
5634 unittest.expect(o.pivoted, unittest.isTrue); | 5634 unittest.expect(o.pivoted, unittest.isTrue); |
5635 } | 5635 } |
5636 buildCounterReportCrossDimensionReachCriteria--; | 5636 buildCounterReportCrossDimensionReachCriteria--; |
5637 } | 5637 } |
5638 | 5638 |
5639 buildUnnamed380() { | 5639 buildUnnamed929() { |
5640 var o = new core.List<api.Recipient>(); | 5640 var o = new core.List<api.Recipient>(); |
5641 o.add(buildRecipient()); | 5641 o.add(buildRecipient()); |
5642 o.add(buildRecipient()); | 5642 o.add(buildRecipient()); |
5643 return o; | 5643 return o; |
5644 } | 5644 } |
5645 | 5645 |
5646 checkUnnamed380(core.List<api.Recipient> o) { | 5646 checkUnnamed929(core.List<api.Recipient> o) { |
5647 unittest.expect(o, unittest.hasLength(2)); | 5647 unittest.expect(o, unittest.hasLength(2)); |
5648 checkRecipient(o[0]); | 5648 checkRecipient(o[0]); |
5649 checkRecipient(o[1]); | 5649 checkRecipient(o[1]); |
5650 } | 5650 } |
5651 | 5651 |
5652 core.int buildCounterReportDelivery = 0; | 5652 core.int buildCounterReportDelivery = 0; |
5653 buildReportDelivery() { | 5653 buildReportDelivery() { |
5654 var o = new api.ReportDelivery(); | 5654 var o = new api.ReportDelivery(); |
5655 buildCounterReportDelivery++; | 5655 buildCounterReportDelivery++; |
5656 if (buildCounterReportDelivery < 3) { | 5656 if (buildCounterReportDelivery < 3) { |
5657 o.emailOwner = true; | 5657 o.emailOwner = true; |
5658 o.emailOwnerDeliveryType = "foo"; | 5658 o.emailOwnerDeliveryType = "foo"; |
5659 o.message = "foo"; | 5659 o.message = "foo"; |
5660 o.recipients = buildUnnamed380(); | 5660 o.recipients = buildUnnamed929(); |
5661 } | 5661 } |
5662 buildCounterReportDelivery--; | 5662 buildCounterReportDelivery--; |
5663 return o; | 5663 return o; |
5664 } | 5664 } |
5665 | 5665 |
5666 checkReportDelivery(api.ReportDelivery o) { | 5666 checkReportDelivery(api.ReportDelivery o) { |
5667 buildCounterReportDelivery++; | 5667 buildCounterReportDelivery++; |
5668 if (buildCounterReportDelivery < 3) { | 5668 if (buildCounterReportDelivery < 3) { |
5669 unittest.expect(o.emailOwner, unittest.isTrue); | 5669 unittest.expect(o.emailOwner, unittest.isTrue); |
5670 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); | 5670 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); |
5671 unittest.expect(o.message, unittest.equals('foo')); | 5671 unittest.expect(o.message, unittest.equals('foo')); |
5672 checkUnnamed380(o.recipients); | 5672 checkUnnamed929(o.recipients); |
5673 } | 5673 } |
5674 buildCounterReportDelivery--; | 5674 buildCounterReportDelivery--; |
5675 } | 5675 } |
5676 | 5676 |
5677 buildUnnamed381() { | 5677 buildUnnamed930() { |
5678 var o = new core.List<api.DimensionValue>(); | 5678 var o = new core.List<api.DimensionValue>(); |
5679 o.add(buildDimensionValue()); | 5679 o.add(buildDimensionValue()); |
5680 o.add(buildDimensionValue()); | 5680 o.add(buildDimensionValue()); |
5681 return o; | 5681 return o; |
5682 } | 5682 } |
5683 | 5683 |
5684 checkUnnamed381(core.List<api.DimensionValue> o) { | 5684 checkUnnamed930(core.List<api.DimensionValue> o) { |
5685 unittest.expect(o, unittest.hasLength(2)); | 5685 unittest.expect(o, unittest.hasLength(2)); |
5686 checkDimensionValue(o[0]); | 5686 checkDimensionValue(o[0]); |
5687 checkDimensionValue(o[1]); | 5687 checkDimensionValue(o[1]); |
5688 } | 5688 } |
5689 | 5689 |
5690 buildUnnamed382() { | 5690 buildUnnamed931() { |
5691 var o = new core.List<api.DimensionValue>(); | 5691 var o = new core.List<api.DimensionValue>(); |
5692 o.add(buildDimensionValue()); | 5692 o.add(buildDimensionValue()); |
5693 o.add(buildDimensionValue()); | 5693 o.add(buildDimensionValue()); |
5694 return o; | 5694 return o; |
5695 } | 5695 } |
5696 | 5696 |
5697 checkUnnamed382(core.List<api.DimensionValue> o) { | 5697 checkUnnamed931(core.List<api.DimensionValue> o) { |
5698 unittest.expect(o, unittest.hasLength(2)); | 5698 unittest.expect(o, unittest.hasLength(2)); |
5699 checkDimensionValue(o[0]); | 5699 checkDimensionValue(o[0]); |
5700 checkDimensionValue(o[1]); | 5700 checkDimensionValue(o[1]); |
5701 } | 5701 } |
5702 | 5702 |
5703 buildUnnamed383() { | 5703 buildUnnamed932() { |
5704 var o = new core.List<api.SortedDimension>(); | 5704 var o = new core.List<api.SortedDimension>(); |
5705 o.add(buildSortedDimension()); | 5705 o.add(buildSortedDimension()); |
5706 o.add(buildSortedDimension()); | 5706 o.add(buildSortedDimension()); |
5707 return o; | 5707 return o; |
5708 } | 5708 } |
5709 | 5709 |
5710 checkUnnamed383(core.List<api.SortedDimension> o) { | 5710 checkUnnamed932(core.List<api.SortedDimension> o) { |
5711 unittest.expect(o, unittest.hasLength(2)); | 5711 unittest.expect(o, unittest.hasLength(2)); |
5712 checkSortedDimension(o[0]); | 5712 checkSortedDimension(o[0]); |
5713 checkSortedDimension(o[1]); | 5713 checkSortedDimension(o[1]); |
5714 } | 5714 } |
5715 | 5715 |
5716 buildUnnamed384() { | 5716 buildUnnamed933() { |
5717 var o = new core.List<core.String>(); | 5717 var o = new core.List<core.String>(); |
5718 o.add("foo"); | 5718 o.add("foo"); |
5719 o.add("foo"); | 5719 o.add("foo"); |
5720 return o; | 5720 return o; |
5721 } | 5721 } |
5722 | 5722 |
5723 checkUnnamed384(core.List<core.String> o) { | 5723 checkUnnamed933(core.List<core.String> o) { |
5724 unittest.expect(o, unittest.hasLength(2)); | 5724 unittest.expect(o, unittest.hasLength(2)); |
5725 unittest.expect(o[0], unittest.equals('foo')); | 5725 unittest.expect(o[0], unittest.equals('foo')); |
5726 unittest.expect(o[1], unittest.equals('foo')); | 5726 unittest.expect(o[1], unittest.equals('foo')); |
5727 } | 5727 } |
5728 | 5728 |
5729 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; | 5729 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; |
5730 buildReportFloodlightCriteriaReportProperties() { | 5730 buildReportFloodlightCriteriaReportProperties() { |
5731 var o = new api.ReportFloodlightCriteriaReportProperties(); | 5731 var o = new api.ReportFloodlightCriteriaReportProperties(); |
5732 buildCounterReportFloodlightCriteriaReportProperties++; | 5732 buildCounterReportFloodlightCriteriaReportProperties++; |
5733 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { | 5733 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { |
(...skipping 13 matching lines...) Expand all Loading... |
5747 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); | 5747 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); |
5748 } | 5748 } |
5749 buildCounterReportFloodlightCriteriaReportProperties--; | 5749 buildCounterReportFloodlightCriteriaReportProperties--; |
5750 } | 5750 } |
5751 | 5751 |
5752 core.int buildCounterReportFloodlightCriteria = 0; | 5752 core.int buildCounterReportFloodlightCriteria = 0; |
5753 buildReportFloodlightCriteria() { | 5753 buildReportFloodlightCriteria() { |
5754 var o = new api.ReportFloodlightCriteria(); | 5754 var o = new api.ReportFloodlightCriteria(); |
5755 buildCounterReportFloodlightCriteria++; | 5755 buildCounterReportFloodlightCriteria++; |
5756 if (buildCounterReportFloodlightCriteria < 3) { | 5756 if (buildCounterReportFloodlightCriteria < 3) { |
5757 o.customRichMediaEvents = buildUnnamed381(); | 5757 o.customRichMediaEvents = buildUnnamed930(); |
5758 o.dateRange = buildDateRange(); | 5758 o.dateRange = buildDateRange(); |
5759 o.dimensionFilters = buildUnnamed382(); | 5759 o.dimensionFilters = buildUnnamed931(); |
5760 o.dimensions = buildUnnamed383(); | 5760 o.dimensions = buildUnnamed932(); |
5761 o.floodlightConfigId = buildDimensionValue(); | 5761 o.floodlightConfigId = buildDimensionValue(); |
5762 o.metricNames = buildUnnamed384(); | 5762 o.metricNames = buildUnnamed933(); |
5763 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); | 5763 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); |
5764 } | 5764 } |
5765 buildCounterReportFloodlightCriteria--; | 5765 buildCounterReportFloodlightCriteria--; |
5766 return o; | 5766 return o; |
5767 } | 5767 } |
5768 | 5768 |
5769 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { | 5769 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { |
5770 buildCounterReportFloodlightCriteria++; | 5770 buildCounterReportFloodlightCriteria++; |
5771 if (buildCounterReportFloodlightCriteria < 3) { | 5771 if (buildCounterReportFloodlightCriteria < 3) { |
5772 checkUnnamed381(o.customRichMediaEvents); | 5772 checkUnnamed930(o.customRichMediaEvents); |
5773 checkDateRange(o.dateRange); | 5773 checkDateRange(o.dateRange); |
5774 checkUnnamed382(o.dimensionFilters); | 5774 checkUnnamed931(o.dimensionFilters); |
5775 checkUnnamed383(o.dimensions); | 5775 checkUnnamed932(o.dimensions); |
5776 checkDimensionValue(o.floodlightConfigId); | 5776 checkDimensionValue(o.floodlightConfigId); |
5777 checkUnnamed384(o.metricNames); | 5777 checkUnnamed933(o.metricNames); |
5778 checkReportFloodlightCriteriaReportProperties(o.reportProperties); | 5778 checkReportFloodlightCriteriaReportProperties(o.reportProperties); |
5779 } | 5779 } |
5780 buildCounterReportFloodlightCriteria--; | 5780 buildCounterReportFloodlightCriteria--; |
5781 } | 5781 } |
5782 | 5782 |
5783 buildUnnamed385() { | 5783 buildUnnamed934() { |
5784 var o = new core.List<api.DimensionValue>(); | 5784 var o = new core.List<api.DimensionValue>(); |
5785 o.add(buildDimensionValue()); | 5785 o.add(buildDimensionValue()); |
5786 o.add(buildDimensionValue()); | 5786 o.add(buildDimensionValue()); |
5787 return o; | 5787 return o; |
5788 } | 5788 } |
5789 | 5789 |
5790 checkUnnamed385(core.List<api.DimensionValue> o) { | 5790 checkUnnamed934(core.List<api.DimensionValue> o) { |
5791 unittest.expect(o, unittest.hasLength(2)); | 5791 unittest.expect(o, unittest.hasLength(2)); |
5792 checkDimensionValue(o[0]); | 5792 checkDimensionValue(o[0]); |
5793 checkDimensionValue(o[1]); | 5793 checkDimensionValue(o[1]); |
5794 } | 5794 } |
5795 | 5795 |
5796 buildUnnamed386() { | 5796 buildUnnamed935() { |
5797 var o = new core.List<api.SortedDimension>(); | 5797 var o = new core.List<api.SortedDimension>(); |
5798 o.add(buildSortedDimension()); | 5798 o.add(buildSortedDimension()); |
5799 o.add(buildSortedDimension()); | 5799 o.add(buildSortedDimension()); |
5800 return o; | 5800 return o; |
5801 } | 5801 } |
5802 | 5802 |
5803 checkUnnamed386(core.List<api.SortedDimension> o) { | 5803 checkUnnamed935(core.List<api.SortedDimension> o) { |
5804 unittest.expect(o, unittest.hasLength(2)); | 5804 unittest.expect(o, unittest.hasLength(2)); |
5805 checkSortedDimension(o[0]); | 5805 checkSortedDimension(o[0]); |
5806 checkSortedDimension(o[1]); | 5806 checkSortedDimension(o[1]); |
5807 } | 5807 } |
5808 | 5808 |
5809 buildUnnamed387() { | 5809 buildUnnamed936() { |
5810 var o = new core.List<api.SortedDimension>(); | 5810 var o = new core.List<api.SortedDimension>(); |
5811 o.add(buildSortedDimension()); | 5811 o.add(buildSortedDimension()); |
5812 o.add(buildSortedDimension()); | 5812 o.add(buildSortedDimension()); |
5813 return o; | 5813 return o; |
5814 } | 5814 } |
5815 | 5815 |
5816 checkUnnamed387(core.List<api.SortedDimension> o) { | 5816 checkUnnamed936(core.List<api.SortedDimension> o) { |
5817 unittest.expect(o, unittest.hasLength(2)); | 5817 unittest.expect(o, unittest.hasLength(2)); |
5818 checkSortedDimension(o[0]); | 5818 checkSortedDimension(o[0]); |
5819 checkSortedDimension(o[1]); | 5819 checkSortedDimension(o[1]); |
5820 } | 5820 } |
5821 | 5821 |
5822 buildUnnamed388() { | 5822 buildUnnamed937() { |
5823 var o = new core.List<api.DimensionValue>(); | 5823 var o = new core.List<api.DimensionValue>(); |
5824 o.add(buildDimensionValue()); | 5824 o.add(buildDimensionValue()); |
5825 o.add(buildDimensionValue()); | 5825 o.add(buildDimensionValue()); |
5826 return o; | 5826 return o; |
5827 } | 5827 } |
5828 | 5828 |
5829 checkUnnamed388(core.List<api.DimensionValue> o) { | 5829 checkUnnamed937(core.List<api.DimensionValue> o) { |
5830 unittest.expect(o, unittest.hasLength(2)); | 5830 unittest.expect(o, unittest.hasLength(2)); |
5831 checkDimensionValue(o[0]); | 5831 checkDimensionValue(o[0]); |
5832 checkDimensionValue(o[1]); | 5832 checkDimensionValue(o[1]); |
5833 } | 5833 } |
5834 | 5834 |
5835 buildUnnamed389() { | 5835 buildUnnamed938() { |
5836 var o = new core.List<core.String>(); | 5836 var o = new core.List<core.String>(); |
5837 o.add("foo"); | 5837 o.add("foo"); |
5838 o.add("foo"); | 5838 o.add("foo"); |
5839 return o; | 5839 return o; |
5840 } | 5840 } |
5841 | 5841 |
5842 checkUnnamed389(core.List<core.String> o) { | 5842 checkUnnamed938(core.List<core.String> o) { |
5843 unittest.expect(o, unittest.hasLength(2)); | 5843 unittest.expect(o, unittest.hasLength(2)); |
5844 unittest.expect(o[0], unittest.equals('foo')); | 5844 unittest.expect(o[0], unittest.equals('foo')); |
5845 unittest.expect(o[1], unittest.equals('foo')); | 5845 unittest.expect(o[1], unittest.equals('foo')); |
5846 } | 5846 } |
5847 | 5847 |
5848 buildUnnamed390() { | 5848 buildUnnamed939() { |
5849 var o = new core.List<api.SortedDimension>(); | 5849 var o = new core.List<api.SortedDimension>(); |
5850 o.add(buildSortedDimension()); | 5850 o.add(buildSortedDimension()); |
5851 o.add(buildSortedDimension()); | 5851 o.add(buildSortedDimension()); |
5852 return o; | 5852 return o; |
5853 } | 5853 } |
5854 | 5854 |
5855 checkUnnamed390(core.List<api.SortedDimension> o) { | 5855 checkUnnamed939(core.List<api.SortedDimension> o) { |
5856 unittest.expect(o, unittest.hasLength(2)); | 5856 unittest.expect(o, unittest.hasLength(2)); |
5857 checkSortedDimension(o[0]); | 5857 checkSortedDimension(o[0]); |
5858 checkSortedDimension(o[1]); | 5858 checkSortedDimension(o[1]); |
5859 } | 5859 } |
5860 | 5860 |
5861 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; | 5861 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; |
5862 buildReportPathToConversionCriteriaReportProperties() { | 5862 buildReportPathToConversionCriteriaReportProperties() { |
5863 var o = new api.ReportPathToConversionCriteriaReportProperties(); | 5863 var o = new api.ReportPathToConversionCriteriaReportProperties(); |
5864 buildCounterReportPathToConversionCriteriaReportProperties++; | 5864 buildCounterReportPathToConversionCriteriaReportProperties++; |
5865 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { | 5865 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { |
(...skipping 25 matching lines...) Expand all Loading... |
5891 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); | 5891 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); |
5892 } | 5892 } |
5893 buildCounterReportPathToConversionCriteriaReportProperties--; | 5893 buildCounterReportPathToConversionCriteriaReportProperties--; |
5894 } | 5894 } |
5895 | 5895 |
5896 core.int buildCounterReportPathToConversionCriteria = 0; | 5896 core.int buildCounterReportPathToConversionCriteria = 0; |
5897 buildReportPathToConversionCriteria() { | 5897 buildReportPathToConversionCriteria() { |
5898 var o = new api.ReportPathToConversionCriteria(); | 5898 var o = new api.ReportPathToConversionCriteria(); |
5899 buildCounterReportPathToConversionCriteria++; | 5899 buildCounterReportPathToConversionCriteria++; |
5900 if (buildCounterReportPathToConversionCriteria < 3) { | 5900 if (buildCounterReportPathToConversionCriteria < 3) { |
5901 o.activityFilters = buildUnnamed385(); | 5901 o.activityFilters = buildUnnamed934(); |
5902 o.conversionDimensions = buildUnnamed386(); | 5902 o.conversionDimensions = buildUnnamed935(); |
5903 o.customFloodlightVariables = buildUnnamed387(); | 5903 o.customFloodlightVariables = buildUnnamed936(); |
5904 o.customRichMediaEvents = buildUnnamed388(); | 5904 o.customRichMediaEvents = buildUnnamed937(); |
5905 o.dateRange = buildDateRange(); | 5905 o.dateRange = buildDateRange(); |
5906 o.floodlightConfigId = buildDimensionValue(); | 5906 o.floodlightConfigId = buildDimensionValue(); |
5907 o.metricNames = buildUnnamed389(); | 5907 o.metricNames = buildUnnamed938(); |
5908 o.perInteractionDimensions = buildUnnamed390(); | 5908 o.perInteractionDimensions = buildUnnamed939(); |
5909 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); | 5909 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); |
5910 } | 5910 } |
5911 buildCounterReportPathToConversionCriteria--; | 5911 buildCounterReportPathToConversionCriteria--; |
5912 return o; | 5912 return o; |
5913 } | 5913 } |
5914 | 5914 |
5915 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { | 5915 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { |
5916 buildCounterReportPathToConversionCriteria++; | 5916 buildCounterReportPathToConversionCriteria++; |
5917 if (buildCounterReportPathToConversionCriteria < 3) { | 5917 if (buildCounterReportPathToConversionCriteria < 3) { |
5918 checkUnnamed385(o.activityFilters); | 5918 checkUnnamed934(o.activityFilters); |
5919 checkUnnamed386(o.conversionDimensions); | 5919 checkUnnamed935(o.conversionDimensions); |
5920 checkUnnamed387(o.customFloodlightVariables); | 5920 checkUnnamed936(o.customFloodlightVariables); |
5921 checkUnnamed388(o.customRichMediaEvents); | 5921 checkUnnamed937(o.customRichMediaEvents); |
5922 checkDateRange(o.dateRange); | 5922 checkDateRange(o.dateRange); |
5923 checkDimensionValue(o.floodlightConfigId); | 5923 checkDimensionValue(o.floodlightConfigId); |
5924 checkUnnamed389(o.metricNames); | 5924 checkUnnamed938(o.metricNames); |
5925 checkUnnamed390(o.perInteractionDimensions); | 5925 checkUnnamed939(o.perInteractionDimensions); |
5926 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); | 5926 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); |
5927 } | 5927 } |
5928 buildCounterReportPathToConversionCriteria--; | 5928 buildCounterReportPathToConversionCriteria--; |
5929 } | 5929 } |
5930 | 5930 |
5931 buildUnnamed391() { | 5931 buildUnnamed940() { |
5932 var o = new core.List<api.DimensionValue>(); | 5932 var o = new core.List<api.DimensionValue>(); |
5933 o.add(buildDimensionValue()); | 5933 o.add(buildDimensionValue()); |
5934 o.add(buildDimensionValue()); | 5934 o.add(buildDimensionValue()); |
5935 return o; | 5935 return o; |
5936 } | 5936 } |
5937 | 5937 |
5938 checkUnnamed391(core.List<api.DimensionValue> o) { | 5938 checkUnnamed940(core.List<api.DimensionValue> o) { |
5939 unittest.expect(o, unittest.hasLength(2)); | 5939 unittest.expect(o, unittest.hasLength(2)); |
5940 checkDimensionValue(o[0]); | 5940 checkDimensionValue(o[0]); |
5941 checkDimensionValue(o[1]); | 5941 checkDimensionValue(o[1]); |
5942 } | 5942 } |
5943 | 5943 |
5944 buildUnnamed392() { | 5944 buildUnnamed941() { |
5945 var o = new core.List<api.SortedDimension>(); | 5945 var o = new core.List<api.SortedDimension>(); |
5946 o.add(buildSortedDimension()); | 5946 o.add(buildSortedDimension()); |
5947 o.add(buildSortedDimension()); | 5947 o.add(buildSortedDimension()); |
5948 return o; | 5948 return o; |
5949 } | 5949 } |
5950 | 5950 |
5951 checkUnnamed392(core.List<api.SortedDimension> o) { | 5951 checkUnnamed941(core.List<api.SortedDimension> o) { |
5952 unittest.expect(o, unittest.hasLength(2)); | 5952 unittest.expect(o, unittest.hasLength(2)); |
5953 checkSortedDimension(o[0]); | 5953 checkSortedDimension(o[0]); |
5954 checkSortedDimension(o[1]); | 5954 checkSortedDimension(o[1]); |
5955 } | 5955 } |
5956 | 5956 |
5957 buildUnnamed393() { | 5957 buildUnnamed942() { |
5958 var o = new core.List<core.String>(); | 5958 var o = new core.List<core.String>(); |
5959 o.add("foo"); | 5959 o.add("foo"); |
5960 o.add("foo"); | 5960 o.add("foo"); |
5961 return o; | 5961 return o; |
5962 } | 5962 } |
5963 | 5963 |
5964 checkUnnamed393(core.List<core.String> o) { | 5964 checkUnnamed942(core.List<core.String> o) { |
5965 unittest.expect(o, unittest.hasLength(2)); | 5965 unittest.expect(o, unittest.hasLength(2)); |
5966 unittest.expect(o[0], unittest.equals('foo')); | 5966 unittest.expect(o[0], unittest.equals('foo')); |
5967 unittest.expect(o[1], unittest.equals('foo')); | 5967 unittest.expect(o[1], unittest.equals('foo')); |
5968 } | 5968 } |
5969 | 5969 |
5970 buildUnnamed394() { | 5970 buildUnnamed943() { |
5971 var o = new core.List<core.String>(); | 5971 var o = new core.List<core.String>(); |
5972 o.add("foo"); | 5972 o.add("foo"); |
5973 o.add("foo"); | 5973 o.add("foo"); |
5974 return o; | 5974 return o; |
5975 } | 5975 } |
5976 | 5976 |
5977 checkUnnamed394(core.List<core.String> o) { | 5977 checkUnnamed943(core.List<core.String> o) { |
5978 unittest.expect(o, unittest.hasLength(2)); | 5978 unittest.expect(o, unittest.hasLength(2)); |
5979 unittest.expect(o[0], unittest.equals('foo')); | 5979 unittest.expect(o[0], unittest.equals('foo')); |
5980 unittest.expect(o[1], unittest.equals('foo')); | 5980 unittest.expect(o[1], unittest.equals('foo')); |
5981 } | 5981 } |
5982 | 5982 |
5983 core.int buildCounterReportReachCriteria = 0; | 5983 core.int buildCounterReportReachCriteria = 0; |
5984 buildReportReachCriteria() { | 5984 buildReportReachCriteria() { |
5985 var o = new api.ReportReachCriteria(); | 5985 var o = new api.ReportReachCriteria(); |
5986 buildCounterReportReachCriteria++; | 5986 buildCounterReportReachCriteria++; |
5987 if (buildCounterReportReachCriteria < 3) { | 5987 if (buildCounterReportReachCriteria < 3) { |
5988 o.activities = buildActivities(); | 5988 o.activities = buildActivities(); |
5989 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 5989 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
5990 o.dateRange = buildDateRange(); | 5990 o.dateRange = buildDateRange(); |
5991 o.dimensionFilters = buildUnnamed391(); | 5991 o.dimensionFilters = buildUnnamed940(); |
5992 o.dimensions = buildUnnamed392(); | 5992 o.dimensions = buildUnnamed941(); |
5993 o.enableAllDimensionCombinations = true; | 5993 o.enableAllDimensionCombinations = true; |
5994 o.metricNames = buildUnnamed393(); | 5994 o.metricNames = buildUnnamed942(); |
5995 o.reachByFrequencyMetricNames = buildUnnamed394(); | 5995 o.reachByFrequencyMetricNames = buildUnnamed943(); |
5996 } | 5996 } |
5997 buildCounterReportReachCriteria--; | 5997 buildCounterReportReachCriteria--; |
5998 return o; | 5998 return o; |
5999 } | 5999 } |
6000 | 6000 |
6001 checkReportReachCriteria(api.ReportReachCriteria o) { | 6001 checkReportReachCriteria(api.ReportReachCriteria o) { |
6002 buildCounterReportReachCriteria++; | 6002 buildCounterReportReachCriteria++; |
6003 if (buildCounterReportReachCriteria < 3) { | 6003 if (buildCounterReportReachCriteria < 3) { |
6004 checkActivities(o.activities); | 6004 checkActivities(o.activities); |
6005 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6005 checkCustomRichMediaEvents(o.customRichMediaEvents); |
6006 checkDateRange(o.dateRange); | 6006 checkDateRange(o.dateRange); |
6007 checkUnnamed391(o.dimensionFilters); | 6007 checkUnnamed940(o.dimensionFilters); |
6008 checkUnnamed392(o.dimensions); | 6008 checkUnnamed941(o.dimensions); |
6009 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); | 6009 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); |
6010 checkUnnamed393(o.metricNames); | 6010 checkUnnamed942(o.metricNames); |
6011 checkUnnamed394(o.reachByFrequencyMetricNames); | 6011 checkUnnamed943(o.reachByFrequencyMetricNames); |
6012 } | 6012 } |
6013 buildCounterReportReachCriteria--; | 6013 buildCounterReportReachCriteria--; |
6014 } | 6014 } |
6015 | 6015 |
6016 buildUnnamed395() { | 6016 buildUnnamed944() { |
6017 var o = new core.List<core.String>(); | 6017 var o = new core.List<core.String>(); |
6018 o.add("foo"); | 6018 o.add("foo"); |
6019 o.add("foo"); | 6019 o.add("foo"); |
6020 return o; | 6020 return o; |
6021 } | 6021 } |
6022 | 6022 |
6023 checkUnnamed395(core.List<core.String> o) { | 6023 checkUnnamed944(core.List<core.String> o) { |
6024 unittest.expect(o, unittest.hasLength(2)); | 6024 unittest.expect(o, unittest.hasLength(2)); |
6025 unittest.expect(o[0], unittest.equals('foo')); | 6025 unittest.expect(o[0], unittest.equals('foo')); |
6026 unittest.expect(o[1], unittest.equals('foo')); | 6026 unittest.expect(o[1], unittest.equals('foo')); |
6027 } | 6027 } |
6028 | 6028 |
6029 core.int buildCounterReportSchedule = 0; | 6029 core.int buildCounterReportSchedule = 0; |
6030 buildReportSchedule() { | 6030 buildReportSchedule() { |
6031 var o = new api.ReportSchedule(); | 6031 var o = new api.ReportSchedule(); |
6032 buildCounterReportSchedule++; | 6032 buildCounterReportSchedule++; |
6033 if (buildCounterReportSchedule < 3) { | 6033 if (buildCounterReportSchedule < 3) { |
6034 o.active = true; | 6034 o.active = true; |
6035 o.every = 42; | 6035 o.every = 42; |
6036 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6036 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
6037 o.repeats = "foo"; | 6037 o.repeats = "foo"; |
6038 o.repeatsOnWeekDays = buildUnnamed395(); | 6038 o.repeatsOnWeekDays = buildUnnamed944(); |
6039 o.runsOnDayOfMonth = "foo"; | 6039 o.runsOnDayOfMonth = "foo"; |
6040 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6040 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
6041 } | 6041 } |
6042 buildCounterReportSchedule--; | 6042 buildCounterReportSchedule--; |
6043 return o; | 6043 return o; |
6044 } | 6044 } |
6045 | 6045 |
6046 checkReportSchedule(api.ReportSchedule o) { | 6046 checkReportSchedule(api.ReportSchedule o) { |
6047 buildCounterReportSchedule++; | 6047 buildCounterReportSchedule++; |
6048 if (buildCounterReportSchedule < 3) { | 6048 if (buildCounterReportSchedule < 3) { |
6049 unittest.expect(o.active, unittest.isTrue); | 6049 unittest.expect(o.active, unittest.isTrue); |
6050 unittest.expect(o.every, unittest.equals(42)); | 6050 unittest.expect(o.every, unittest.equals(42)); |
6051 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); | 6051 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); |
6052 unittest.expect(o.repeats, unittest.equals('foo')); | 6052 unittest.expect(o.repeats, unittest.equals('foo')); |
6053 checkUnnamed395(o.repeatsOnWeekDays); | 6053 checkUnnamed944(o.repeatsOnWeekDays); |
6054 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); | 6054 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); |
6055 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6055 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
6056 } | 6056 } |
6057 buildCounterReportSchedule--; | 6057 buildCounterReportSchedule--; |
6058 } | 6058 } |
6059 | 6059 |
6060 core.int buildCounterReport = 0; | 6060 core.int buildCounterReport = 0; |
6061 buildReport() { | 6061 buildReport() { |
6062 var o = new api.Report(); | 6062 var o = new api.Report(); |
6063 buildCounterReport++; | 6063 buildCounterReport++; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6103 unittest.expect(o.ownerProfileId, unittest.equals('foo')); | 6103 unittest.expect(o.ownerProfileId, unittest.equals('foo')); |
6104 checkReportPathToConversionCriteria(o.pathToConversionCriteria); | 6104 checkReportPathToConversionCriteria(o.pathToConversionCriteria); |
6105 checkReportReachCriteria(o.reachCriteria); | 6105 checkReportReachCriteria(o.reachCriteria); |
6106 checkReportSchedule(o.schedule); | 6106 checkReportSchedule(o.schedule); |
6107 unittest.expect(o.subAccountId, unittest.equals('foo')); | 6107 unittest.expect(o.subAccountId, unittest.equals('foo')); |
6108 unittest.expect(o.type, unittest.equals('foo')); | 6108 unittest.expect(o.type, unittest.equals('foo')); |
6109 } | 6109 } |
6110 buildCounterReport--; | 6110 buildCounterReport--; |
6111 } | 6111 } |
6112 | 6112 |
6113 buildUnnamed396() { | 6113 buildUnnamed945() { |
6114 var o = new core.List<api.Dimension>(); | 6114 var o = new core.List<api.Dimension>(); |
6115 o.add(buildDimension()); | 6115 o.add(buildDimension()); |
6116 o.add(buildDimension()); | 6116 o.add(buildDimension()); |
6117 return o; | 6117 return o; |
6118 } | 6118 } |
6119 | 6119 |
6120 checkUnnamed396(core.List<api.Dimension> o) { | 6120 checkUnnamed945(core.List<api.Dimension> o) { |
6121 unittest.expect(o, unittest.hasLength(2)); | 6121 unittest.expect(o, unittest.hasLength(2)); |
6122 checkDimension(o[0]); | 6122 checkDimension(o[0]); |
6123 checkDimension(o[1]); | 6123 checkDimension(o[1]); |
6124 } | 6124 } |
6125 | 6125 |
6126 buildUnnamed397() { | 6126 buildUnnamed946() { |
6127 var o = new core.List<api.Dimension>(); | 6127 var o = new core.List<api.Dimension>(); |
6128 o.add(buildDimension()); | 6128 o.add(buildDimension()); |
6129 o.add(buildDimension()); | 6129 o.add(buildDimension()); |
6130 return o; | 6130 return o; |
6131 } | 6131 } |
6132 | 6132 |
6133 checkUnnamed397(core.List<api.Dimension> o) { | 6133 checkUnnamed946(core.List<api.Dimension> o) { |
6134 unittest.expect(o, unittest.hasLength(2)); | 6134 unittest.expect(o, unittest.hasLength(2)); |
6135 checkDimension(o[0]); | 6135 checkDimension(o[0]); |
6136 checkDimension(o[1]); | 6136 checkDimension(o[1]); |
6137 } | 6137 } |
6138 | 6138 |
6139 buildUnnamed398() { | 6139 buildUnnamed947() { |
6140 var o = new core.List<api.Metric>(); | 6140 var o = new core.List<api.Metric>(); |
6141 o.add(buildMetric()); | 6141 o.add(buildMetric()); |
6142 o.add(buildMetric()); | 6142 o.add(buildMetric()); |
6143 return o; | 6143 return o; |
6144 } | 6144 } |
6145 | 6145 |
6146 checkUnnamed398(core.List<api.Metric> o) { | 6146 checkUnnamed947(core.List<api.Metric> o) { |
6147 unittest.expect(o, unittest.hasLength(2)); | 6147 unittest.expect(o, unittest.hasLength(2)); |
6148 checkMetric(o[0]); | 6148 checkMetric(o[0]); |
6149 checkMetric(o[1]); | 6149 checkMetric(o[1]); |
6150 } | 6150 } |
6151 | 6151 |
6152 buildUnnamed399() { | 6152 buildUnnamed948() { |
6153 var o = new core.List<api.Metric>(); | 6153 var o = new core.List<api.Metric>(); |
6154 o.add(buildMetric()); | 6154 o.add(buildMetric()); |
6155 o.add(buildMetric()); | 6155 o.add(buildMetric()); |
6156 return o; | 6156 return o; |
6157 } | 6157 } |
6158 | 6158 |
6159 checkUnnamed399(core.List<api.Metric> o) { | 6159 checkUnnamed948(core.List<api.Metric> o) { |
6160 unittest.expect(o, unittest.hasLength(2)); | 6160 unittest.expect(o, unittest.hasLength(2)); |
6161 checkMetric(o[0]); | 6161 checkMetric(o[0]); |
6162 checkMetric(o[1]); | 6162 checkMetric(o[1]); |
6163 } | 6163 } |
6164 | 6164 |
6165 core.int buildCounterReportCompatibleFields = 0; | 6165 core.int buildCounterReportCompatibleFields = 0; |
6166 buildReportCompatibleFields() { | 6166 buildReportCompatibleFields() { |
6167 var o = new api.ReportCompatibleFields(); | 6167 var o = new api.ReportCompatibleFields(); |
6168 buildCounterReportCompatibleFields++; | 6168 buildCounterReportCompatibleFields++; |
6169 if (buildCounterReportCompatibleFields < 3) { | 6169 if (buildCounterReportCompatibleFields < 3) { |
6170 o.dimensionFilters = buildUnnamed396(); | 6170 o.dimensionFilters = buildUnnamed945(); |
6171 o.dimensions = buildUnnamed397(); | 6171 o.dimensions = buildUnnamed946(); |
6172 o.kind = "foo"; | 6172 o.kind = "foo"; |
6173 o.metrics = buildUnnamed398(); | 6173 o.metrics = buildUnnamed947(); |
6174 o.pivotedActivityMetrics = buildUnnamed399(); | 6174 o.pivotedActivityMetrics = buildUnnamed948(); |
6175 } | 6175 } |
6176 buildCounterReportCompatibleFields--; | 6176 buildCounterReportCompatibleFields--; |
6177 return o; | 6177 return o; |
6178 } | 6178 } |
6179 | 6179 |
6180 checkReportCompatibleFields(api.ReportCompatibleFields o) { | 6180 checkReportCompatibleFields(api.ReportCompatibleFields o) { |
6181 buildCounterReportCompatibleFields++; | 6181 buildCounterReportCompatibleFields++; |
6182 if (buildCounterReportCompatibleFields < 3) { | 6182 if (buildCounterReportCompatibleFields < 3) { |
6183 checkUnnamed396(o.dimensionFilters); | 6183 checkUnnamed945(o.dimensionFilters); |
6184 checkUnnamed397(o.dimensions); | 6184 checkUnnamed946(o.dimensions); |
6185 unittest.expect(o.kind, unittest.equals('foo')); | 6185 unittest.expect(o.kind, unittest.equals('foo')); |
6186 checkUnnamed398(o.metrics); | 6186 checkUnnamed947(o.metrics); |
6187 checkUnnamed399(o.pivotedActivityMetrics); | 6187 checkUnnamed948(o.pivotedActivityMetrics); |
6188 } | 6188 } |
6189 buildCounterReportCompatibleFields--; | 6189 buildCounterReportCompatibleFields--; |
6190 } | 6190 } |
6191 | 6191 |
6192 buildUnnamed400() { | 6192 buildUnnamed949() { |
6193 var o = new core.List<api.Report>(); | 6193 var o = new core.List<api.Report>(); |
6194 o.add(buildReport()); | 6194 o.add(buildReport()); |
6195 o.add(buildReport()); | 6195 o.add(buildReport()); |
6196 return o; | 6196 return o; |
6197 } | 6197 } |
6198 | 6198 |
6199 checkUnnamed400(core.List<api.Report> o) { | 6199 checkUnnamed949(core.List<api.Report> o) { |
6200 unittest.expect(o, unittest.hasLength(2)); | 6200 unittest.expect(o, unittest.hasLength(2)); |
6201 checkReport(o[0]); | 6201 checkReport(o[0]); |
6202 checkReport(o[1]); | 6202 checkReport(o[1]); |
6203 } | 6203 } |
6204 | 6204 |
6205 core.int buildCounterReportList = 0; | 6205 core.int buildCounterReportList = 0; |
6206 buildReportList() { | 6206 buildReportList() { |
6207 var o = new api.ReportList(); | 6207 var o = new api.ReportList(); |
6208 buildCounterReportList++; | 6208 buildCounterReportList++; |
6209 if (buildCounterReportList < 3) { | 6209 if (buildCounterReportList < 3) { |
6210 o.etag = "foo"; | 6210 o.etag = "foo"; |
6211 o.items = buildUnnamed400(); | 6211 o.items = buildUnnamed949(); |
6212 o.kind = "foo"; | 6212 o.kind = "foo"; |
6213 o.nextPageToken = "foo"; | 6213 o.nextPageToken = "foo"; |
6214 } | 6214 } |
6215 buildCounterReportList--; | 6215 buildCounterReportList--; |
6216 return o; | 6216 return o; |
6217 } | 6217 } |
6218 | 6218 |
6219 checkReportList(api.ReportList o) { | 6219 checkReportList(api.ReportList o) { |
6220 buildCounterReportList++; | 6220 buildCounterReportList++; |
6221 if (buildCounterReportList < 3) { | 6221 if (buildCounterReportList < 3) { |
6222 unittest.expect(o.etag, unittest.equals('foo')); | 6222 unittest.expect(o.etag, unittest.equals('foo')); |
6223 checkUnnamed400(o.items); | 6223 checkUnnamed949(o.items); |
6224 unittest.expect(o.kind, unittest.equals('foo')); | 6224 unittest.expect(o.kind, unittest.equals('foo')); |
6225 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6225 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
6226 } | 6226 } |
6227 buildCounterReportList--; | 6227 buildCounterReportList--; |
6228 } | 6228 } |
6229 | 6229 |
6230 core.int buildCounterReportsConfiguration = 0; | 6230 core.int buildCounterReportsConfiguration = 0; |
6231 buildReportsConfiguration() { | 6231 buildReportsConfiguration() { |
6232 var o = new api.ReportsConfiguration(); | 6232 var o = new api.ReportsConfiguration(); |
6233 buildCounterReportsConfiguration++; | 6233 buildCounterReportsConfiguration++; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6266 checkRichMediaExitOverride(api.RichMediaExitOverride o) { | 6266 checkRichMediaExitOverride(api.RichMediaExitOverride o) { |
6267 buildCounterRichMediaExitOverride++; | 6267 buildCounterRichMediaExitOverride++; |
6268 if (buildCounterRichMediaExitOverride < 3) { | 6268 if (buildCounterRichMediaExitOverride < 3) { |
6269 unittest.expect(o.customExitUrl, unittest.equals('foo')); | 6269 unittest.expect(o.customExitUrl, unittest.equals('foo')); |
6270 unittest.expect(o.exitId, unittest.equals('foo')); | 6270 unittest.expect(o.exitId, unittest.equals('foo')); |
6271 unittest.expect(o.useCustomExitUrl, unittest.isTrue); | 6271 unittest.expect(o.useCustomExitUrl, unittest.isTrue); |
6272 } | 6272 } |
6273 buildCounterRichMediaExitOverride--; | 6273 buildCounterRichMediaExitOverride--; |
6274 } | 6274 } |
6275 | 6275 |
6276 buildUnnamed401() { | 6276 buildUnnamed950() { |
6277 var o = new core.List<api.SiteContact>(); | 6277 var o = new core.List<api.SiteContact>(); |
6278 o.add(buildSiteContact()); | 6278 o.add(buildSiteContact()); |
6279 o.add(buildSiteContact()); | 6279 o.add(buildSiteContact()); |
6280 return o; | 6280 return o; |
6281 } | 6281 } |
6282 | 6282 |
6283 checkUnnamed401(core.List<api.SiteContact> o) { | 6283 checkUnnamed950(core.List<api.SiteContact> o) { |
6284 unittest.expect(o, unittest.hasLength(2)); | 6284 unittest.expect(o, unittest.hasLength(2)); |
6285 checkSiteContact(o[0]); | 6285 checkSiteContact(o[0]); |
6286 checkSiteContact(o[1]); | 6286 checkSiteContact(o[1]); |
6287 } | 6287 } |
6288 | 6288 |
6289 core.int buildCounterSite = 0; | 6289 core.int buildCounterSite = 0; |
6290 buildSite() { | 6290 buildSite() { |
6291 var o = new api.Site(); | 6291 var o = new api.Site(); |
6292 buildCounterSite++; | 6292 buildCounterSite++; |
6293 if (buildCounterSite < 3) { | 6293 if (buildCounterSite < 3) { |
6294 o.accountId = "foo"; | 6294 o.accountId = "foo"; |
6295 o.approved = true; | 6295 o.approved = true; |
6296 o.directorySiteId = "foo"; | 6296 o.directorySiteId = "foo"; |
6297 o.directorySiteIdDimensionValue = buildDimensionValue(); | 6297 o.directorySiteIdDimensionValue = buildDimensionValue(); |
6298 o.id = "foo"; | 6298 o.id = "foo"; |
6299 o.idDimensionValue = buildDimensionValue(); | 6299 o.idDimensionValue = buildDimensionValue(); |
6300 o.keyName = "foo"; | 6300 o.keyName = "foo"; |
6301 o.kind = "foo"; | 6301 o.kind = "foo"; |
6302 o.name = "foo"; | 6302 o.name = "foo"; |
6303 o.siteContacts = buildUnnamed401(); | 6303 o.siteContacts = buildUnnamed950(); |
6304 o.siteSettings = buildSiteSettings(); | 6304 o.siteSettings = buildSiteSettings(); |
6305 o.subaccountId = "foo"; | 6305 o.subaccountId = "foo"; |
6306 } | 6306 } |
6307 buildCounterSite--; | 6307 buildCounterSite--; |
6308 return o; | 6308 return o; |
6309 } | 6309 } |
6310 | 6310 |
6311 checkSite(api.Site o) { | 6311 checkSite(api.Site o) { |
6312 buildCounterSite++; | 6312 buildCounterSite++; |
6313 if (buildCounterSite < 3) { | 6313 if (buildCounterSite < 3) { |
6314 unittest.expect(o.accountId, unittest.equals('foo')); | 6314 unittest.expect(o.accountId, unittest.equals('foo')); |
6315 unittest.expect(o.approved, unittest.isTrue); | 6315 unittest.expect(o.approved, unittest.isTrue); |
6316 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 6316 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
6317 checkDimensionValue(o.directorySiteIdDimensionValue); | 6317 checkDimensionValue(o.directorySiteIdDimensionValue); |
6318 unittest.expect(o.id, unittest.equals('foo')); | 6318 unittest.expect(o.id, unittest.equals('foo')); |
6319 checkDimensionValue(o.idDimensionValue); | 6319 checkDimensionValue(o.idDimensionValue); |
6320 unittest.expect(o.keyName, unittest.equals('foo')); | 6320 unittest.expect(o.keyName, unittest.equals('foo')); |
6321 unittest.expect(o.kind, unittest.equals('foo')); | 6321 unittest.expect(o.kind, unittest.equals('foo')); |
6322 unittest.expect(o.name, unittest.equals('foo')); | 6322 unittest.expect(o.name, unittest.equals('foo')); |
6323 checkUnnamed401(o.siteContacts); | 6323 checkUnnamed950(o.siteContacts); |
6324 checkSiteSettings(o.siteSettings); | 6324 checkSiteSettings(o.siteSettings); |
6325 unittest.expect(o.subaccountId, unittest.equals('foo')); | 6325 unittest.expect(o.subaccountId, unittest.equals('foo')); |
6326 } | 6326 } |
6327 buildCounterSite--; | 6327 buildCounterSite--; |
6328 } | 6328 } |
6329 | 6329 |
6330 core.int buildCounterSiteContact = 0; | 6330 core.int buildCounterSiteContact = 0; |
6331 buildSiteContact() { | 6331 buildSiteContact() { |
6332 var o = new api.SiteContact(); | 6332 var o = new api.SiteContact(); |
6333 buildCounterSiteContact++; | 6333 buildCounterSiteContact++; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6376 unittest.expect(o.activeViewOptOut, unittest.isTrue); | 6376 unittest.expect(o.activeViewOptOut, unittest.isTrue); |
6377 checkCreativeSettings(o.creativeSettings); | 6377 checkCreativeSettings(o.creativeSettings); |
6378 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); | 6378 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); |
6379 unittest.expect(o.disableNewCookie, unittest.isTrue); | 6379 unittest.expect(o.disableNewCookie, unittest.isTrue); |
6380 checkLookbackConfiguration(o.lookbackConfiguration); | 6380 checkLookbackConfiguration(o.lookbackConfiguration); |
6381 checkTagSetting(o.tagSetting); | 6381 checkTagSetting(o.tagSetting); |
6382 } | 6382 } |
6383 buildCounterSiteSettings--; | 6383 buildCounterSiteSettings--; |
6384 } | 6384 } |
6385 | 6385 |
6386 buildUnnamed402() { | 6386 buildUnnamed951() { |
6387 var o = new core.List<api.Site>(); | 6387 var o = new core.List<api.Site>(); |
6388 o.add(buildSite()); | 6388 o.add(buildSite()); |
6389 o.add(buildSite()); | 6389 o.add(buildSite()); |
6390 return o; | 6390 return o; |
6391 } | 6391 } |
6392 | 6392 |
6393 checkUnnamed402(core.List<api.Site> o) { | 6393 checkUnnamed951(core.List<api.Site> o) { |
6394 unittest.expect(o, unittest.hasLength(2)); | 6394 unittest.expect(o, unittest.hasLength(2)); |
6395 checkSite(o[0]); | 6395 checkSite(o[0]); |
6396 checkSite(o[1]); | 6396 checkSite(o[1]); |
6397 } | 6397 } |
6398 | 6398 |
6399 core.int buildCounterSitesListResponse = 0; | 6399 core.int buildCounterSitesListResponse = 0; |
6400 buildSitesListResponse() { | 6400 buildSitesListResponse() { |
6401 var o = new api.SitesListResponse(); | 6401 var o = new api.SitesListResponse(); |
6402 buildCounterSitesListResponse++; | 6402 buildCounterSitesListResponse++; |
6403 if (buildCounterSitesListResponse < 3) { | 6403 if (buildCounterSitesListResponse < 3) { |
6404 o.kind = "foo"; | 6404 o.kind = "foo"; |
6405 o.nextPageToken = "foo"; | 6405 o.nextPageToken = "foo"; |
6406 o.sites = buildUnnamed402(); | 6406 o.sites = buildUnnamed951(); |
6407 } | 6407 } |
6408 buildCounterSitesListResponse--; | 6408 buildCounterSitesListResponse--; |
6409 return o; | 6409 return o; |
6410 } | 6410 } |
6411 | 6411 |
6412 checkSitesListResponse(api.SitesListResponse o) { | 6412 checkSitesListResponse(api.SitesListResponse o) { |
6413 buildCounterSitesListResponse++; | 6413 buildCounterSitesListResponse++; |
6414 if (buildCounterSitesListResponse < 3) { | 6414 if (buildCounterSitesListResponse < 3) { |
6415 unittest.expect(o.kind, unittest.equals('foo')); | 6415 unittest.expect(o.kind, unittest.equals('foo')); |
6416 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6416 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
6417 checkUnnamed402(o.sites); | 6417 checkUnnamed951(o.sites); |
6418 } | 6418 } |
6419 buildCounterSitesListResponse--; | 6419 buildCounterSitesListResponse--; |
6420 } | 6420 } |
6421 | 6421 |
6422 core.int buildCounterSize = 0; | 6422 core.int buildCounterSize = 0; |
6423 buildSize() { | 6423 buildSize() { |
6424 var o = new api.Size(); | 6424 var o = new api.Size(); |
6425 buildCounterSize++; | 6425 buildCounterSize++; |
6426 if (buildCounterSize < 3) { | 6426 if (buildCounterSize < 3) { |
6427 o.height = 42; | 6427 o.height = 42; |
(...skipping 11 matching lines...) Expand all Loading... |
6439 if (buildCounterSize < 3) { | 6439 if (buildCounterSize < 3) { |
6440 unittest.expect(o.height, unittest.equals(42)); | 6440 unittest.expect(o.height, unittest.equals(42)); |
6441 unittest.expect(o.iab, unittest.isTrue); | 6441 unittest.expect(o.iab, unittest.isTrue); |
6442 unittest.expect(o.id, unittest.equals('foo')); | 6442 unittest.expect(o.id, unittest.equals('foo')); |
6443 unittest.expect(o.kind, unittest.equals('foo')); | 6443 unittest.expect(o.kind, unittest.equals('foo')); |
6444 unittest.expect(o.width, unittest.equals(42)); | 6444 unittest.expect(o.width, unittest.equals(42)); |
6445 } | 6445 } |
6446 buildCounterSize--; | 6446 buildCounterSize--; |
6447 } | 6447 } |
6448 | 6448 |
6449 buildUnnamed403() { | 6449 buildUnnamed952() { |
6450 var o = new core.List<api.Size>(); | 6450 var o = new core.List<api.Size>(); |
6451 o.add(buildSize()); | 6451 o.add(buildSize()); |
6452 o.add(buildSize()); | 6452 o.add(buildSize()); |
6453 return o; | 6453 return o; |
6454 } | 6454 } |
6455 | 6455 |
6456 checkUnnamed403(core.List<api.Size> o) { | 6456 checkUnnamed952(core.List<api.Size> o) { |
6457 unittest.expect(o, unittest.hasLength(2)); | 6457 unittest.expect(o, unittest.hasLength(2)); |
6458 checkSize(o[0]); | 6458 checkSize(o[0]); |
6459 checkSize(o[1]); | 6459 checkSize(o[1]); |
6460 } | 6460 } |
6461 | 6461 |
6462 core.int buildCounterSizesListResponse = 0; | 6462 core.int buildCounterSizesListResponse = 0; |
6463 buildSizesListResponse() { | 6463 buildSizesListResponse() { |
6464 var o = new api.SizesListResponse(); | 6464 var o = new api.SizesListResponse(); |
6465 buildCounterSizesListResponse++; | 6465 buildCounterSizesListResponse++; |
6466 if (buildCounterSizesListResponse < 3) { | 6466 if (buildCounterSizesListResponse < 3) { |
6467 o.kind = "foo"; | 6467 o.kind = "foo"; |
6468 o.sizes = buildUnnamed403(); | 6468 o.sizes = buildUnnamed952(); |
6469 } | 6469 } |
6470 buildCounterSizesListResponse--; | 6470 buildCounterSizesListResponse--; |
6471 return o; | 6471 return o; |
6472 } | 6472 } |
6473 | 6473 |
6474 checkSizesListResponse(api.SizesListResponse o) { | 6474 checkSizesListResponse(api.SizesListResponse o) { |
6475 buildCounterSizesListResponse++; | 6475 buildCounterSizesListResponse++; |
6476 if (buildCounterSizesListResponse < 3) { | 6476 if (buildCounterSizesListResponse < 3) { |
6477 unittest.expect(o.kind, unittest.equals('foo')); | 6477 unittest.expect(o.kind, unittest.equals('foo')); |
6478 checkUnnamed403(o.sizes); | 6478 checkUnnamed952(o.sizes); |
6479 } | 6479 } |
6480 buildCounterSizesListResponse--; | 6480 buildCounterSizesListResponse--; |
6481 } | 6481 } |
6482 | 6482 |
6483 core.int buildCounterSortedDimension = 0; | 6483 core.int buildCounterSortedDimension = 0; |
6484 buildSortedDimension() { | 6484 buildSortedDimension() { |
6485 var o = new api.SortedDimension(); | 6485 var o = new api.SortedDimension(); |
6486 buildCounterSortedDimension++; | 6486 buildCounterSortedDimension++; |
6487 if (buildCounterSortedDimension < 3) { | 6487 if (buildCounterSortedDimension < 3) { |
6488 o.kind = "foo"; | 6488 o.kind = "foo"; |
6489 o.name = "foo"; | 6489 o.name = "foo"; |
6490 o.sortOrder = "foo"; | 6490 o.sortOrder = "foo"; |
6491 } | 6491 } |
6492 buildCounterSortedDimension--; | 6492 buildCounterSortedDimension--; |
6493 return o; | 6493 return o; |
6494 } | 6494 } |
6495 | 6495 |
6496 checkSortedDimension(api.SortedDimension o) { | 6496 checkSortedDimension(api.SortedDimension o) { |
6497 buildCounterSortedDimension++; | 6497 buildCounterSortedDimension++; |
6498 if (buildCounterSortedDimension < 3) { | 6498 if (buildCounterSortedDimension < 3) { |
6499 unittest.expect(o.kind, unittest.equals('foo')); | 6499 unittest.expect(o.kind, unittest.equals('foo')); |
6500 unittest.expect(o.name, unittest.equals('foo')); | 6500 unittest.expect(o.name, unittest.equals('foo')); |
6501 unittest.expect(o.sortOrder, unittest.equals('foo')); | 6501 unittest.expect(o.sortOrder, unittest.equals('foo')); |
6502 } | 6502 } |
6503 buildCounterSortedDimension--; | 6503 buildCounterSortedDimension--; |
6504 } | 6504 } |
6505 | 6505 |
6506 buildUnnamed404() { | 6506 buildUnnamed953() { |
6507 var o = new core.List<core.String>(); | 6507 var o = new core.List<core.String>(); |
6508 o.add("foo"); | 6508 o.add("foo"); |
6509 o.add("foo"); | 6509 o.add("foo"); |
6510 return o; | 6510 return o; |
6511 } | 6511 } |
6512 | 6512 |
6513 checkUnnamed404(core.List<core.String> o) { | 6513 checkUnnamed953(core.List<core.String> o) { |
6514 unittest.expect(o, unittest.hasLength(2)); | 6514 unittest.expect(o, unittest.hasLength(2)); |
6515 unittest.expect(o[0], unittest.equals('foo')); | 6515 unittest.expect(o[0], unittest.equals('foo')); |
6516 unittest.expect(o[1], unittest.equals('foo')); | 6516 unittest.expect(o[1], unittest.equals('foo')); |
6517 } | 6517 } |
6518 | 6518 |
6519 core.int buildCounterSubaccount = 0; | 6519 core.int buildCounterSubaccount = 0; |
6520 buildSubaccount() { | 6520 buildSubaccount() { |
6521 var o = new api.Subaccount(); | 6521 var o = new api.Subaccount(); |
6522 buildCounterSubaccount++; | 6522 buildCounterSubaccount++; |
6523 if (buildCounterSubaccount < 3) { | 6523 if (buildCounterSubaccount < 3) { |
6524 o.accountId = "foo"; | 6524 o.accountId = "foo"; |
6525 o.availablePermissionIds = buildUnnamed404(); | 6525 o.availablePermissionIds = buildUnnamed953(); |
6526 o.id = "foo"; | 6526 o.id = "foo"; |
6527 o.kind = "foo"; | 6527 o.kind = "foo"; |
6528 o.name = "foo"; | 6528 o.name = "foo"; |
6529 } | 6529 } |
6530 buildCounterSubaccount--; | 6530 buildCounterSubaccount--; |
6531 return o; | 6531 return o; |
6532 } | 6532 } |
6533 | 6533 |
6534 checkSubaccount(api.Subaccount o) { | 6534 checkSubaccount(api.Subaccount o) { |
6535 buildCounterSubaccount++; | 6535 buildCounterSubaccount++; |
6536 if (buildCounterSubaccount < 3) { | 6536 if (buildCounterSubaccount < 3) { |
6537 unittest.expect(o.accountId, unittest.equals('foo')); | 6537 unittest.expect(o.accountId, unittest.equals('foo')); |
6538 checkUnnamed404(o.availablePermissionIds); | 6538 checkUnnamed953(o.availablePermissionIds); |
6539 unittest.expect(o.id, unittest.equals('foo')); | 6539 unittest.expect(o.id, unittest.equals('foo')); |
6540 unittest.expect(o.kind, unittest.equals('foo')); | 6540 unittest.expect(o.kind, unittest.equals('foo')); |
6541 unittest.expect(o.name, unittest.equals('foo')); | 6541 unittest.expect(o.name, unittest.equals('foo')); |
6542 } | 6542 } |
6543 buildCounterSubaccount--; | 6543 buildCounterSubaccount--; |
6544 } | 6544 } |
6545 | 6545 |
6546 buildUnnamed405() { | 6546 buildUnnamed954() { |
6547 var o = new core.List<api.Subaccount>(); | 6547 var o = new core.List<api.Subaccount>(); |
6548 o.add(buildSubaccount()); | 6548 o.add(buildSubaccount()); |
6549 o.add(buildSubaccount()); | 6549 o.add(buildSubaccount()); |
6550 return o; | 6550 return o; |
6551 } | 6551 } |
6552 | 6552 |
6553 checkUnnamed405(core.List<api.Subaccount> o) { | 6553 checkUnnamed954(core.List<api.Subaccount> o) { |
6554 unittest.expect(o, unittest.hasLength(2)); | 6554 unittest.expect(o, unittest.hasLength(2)); |
6555 checkSubaccount(o[0]); | 6555 checkSubaccount(o[0]); |
6556 checkSubaccount(o[1]); | 6556 checkSubaccount(o[1]); |
6557 } | 6557 } |
6558 | 6558 |
6559 core.int buildCounterSubaccountsListResponse = 0; | 6559 core.int buildCounterSubaccountsListResponse = 0; |
6560 buildSubaccountsListResponse() { | 6560 buildSubaccountsListResponse() { |
6561 var o = new api.SubaccountsListResponse(); | 6561 var o = new api.SubaccountsListResponse(); |
6562 buildCounterSubaccountsListResponse++; | 6562 buildCounterSubaccountsListResponse++; |
6563 if (buildCounterSubaccountsListResponse < 3) { | 6563 if (buildCounterSubaccountsListResponse < 3) { |
6564 o.kind = "foo"; | 6564 o.kind = "foo"; |
6565 o.nextPageToken = "foo"; | 6565 o.nextPageToken = "foo"; |
6566 o.subaccounts = buildUnnamed405(); | 6566 o.subaccounts = buildUnnamed954(); |
6567 } | 6567 } |
6568 buildCounterSubaccountsListResponse--; | 6568 buildCounterSubaccountsListResponse--; |
6569 return o; | 6569 return o; |
6570 } | 6570 } |
6571 | 6571 |
6572 checkSubaccountsListResponse(api.SubaccountsListResponse o) { | 6572 checkSubaccountsListResponse(api.SubaccountsListResponse o) { |
6573 buildCounterSubaccountsListResponse++; | 6573 buildCounterSubaccountsListResponse++; |
6574 if (buildCounterSubaccountsListResponse < 3) { | 6574 if (buildCounterSubaccountsListResponse < 3) { |
6575 unittest.expect(o.kind, unittest.equals('foo')); | 6575 unittest.expect(o.kind, unittest.equals('foo')); |
6576 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6576 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
6577 checkUnnamed405(o.subaccounts); | 6577 checkUnnamed954(o.subaccounts); |
6578 } | 6578 } |
6579 buildCounterSubaccountsListResponse--; | 6579 buildCounterSubaccountsListResponse--; |
6580 } | 6580 } |
6581 | 6581 |
6582 core.int buildCounterTagData = 0; | 6582 core.int buildCounterTagData = 0; |
6583 buildTagData() { | 6583 buildTagData() { |
6584 var o = new api.TagData(); | 6584 var o = new api.TagData(); |
6585 buildCounterTagData++; | 6585 buildCounterTagData++; |
6586 if (buildCounterTagData < 3) { | 6586 if (buildCounterTagData < 3) { |
6587 o.adId = "foo"; | 6587 o.adId = "foo"; |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6666 | 6666 |
6667 checkTargetWindow(api.TargetWindow o) { | 6667 checkTargetWindow(api.TargetWindow o) { |
6668 buildCounterTargetWindow++; | 6668 buildCounterTargetWindow++; |
6669 if (buildCounterTargetWindow < 3) { | 6669 if (buildCounterTargetWindow < 3) { |
6670 unittest.expect(o.customHtml, unittest.equals('foo')); | 6670 unittest.expect(o.customHtml, unittest.equals('foo')); |
6671 unittest.expect(o.targetWindowOption, unittest.equals('foo')); | 6671 unittest.expect(o.targetWindowOption, unittest.equals('foo')); |
6672 } | 6672 } |
6673 buildCounterTargetWindow--; | 6673 buildCounterTargetWindow--; |
6674 } | 6674 } |
6675 | 6675 |
6676 buildUnnamed406() { | 6676 buildUnnamed955() { |
6677 var o = new core.List<api.Browser>(); | 6677 var o = new core.List<api.Browser>(); |
6678 o.add(buildBrowser()); | 6678 o.add(buildBrowser()); |
6679 o.add(buildBrowser()); | 6679 o.add(buildBrowser()); |
6680 return o; | 6680 return o; |
6681 } | 6681 } |
6682 | 6682 |
6683 checkUnnamed406(core.List<api.Browser> o) { | 6683 checkUnnamed955(core.List<api.Browser> o) { |
6684 unittest.expect(o, unittest.hasLength(2)); | 6684 unittest.expect(o, unittest.hasLength(2)); |
6685 checkBrowser(o[0]); | 6685 checkBrowser(o[0]); |
6686 checkBrowser(o[1]); | 6686 checkBrowser(o[1]); |
6687 } | 6687 } |
6688 | 6688 |
6689 buildUnnamed407() { | 6689 buildUnnamed956() { |
6690 var o = new core.List<api.ConnectionType>(); | 6690 var o = new core.List<api.ConnectionType>(); |
6691 o.add(buildConnectionType()); | 6691 o.add(buildConnectionType()); |
6692 o.add(buildConnectionType()); | 6692 o.add(buildConnectionType()); |
6693 return o; | 6693 return o; |
6694 } | 6694 } |
6695 | 6695 |
6696 checkUnnamed407(core.List<api.ConnectionType> o) { | 6696 checkUnnamed956(core.List<api.ConnectionType> o) { |
6697 unittest.expect(o, unittest.hasLength(2)); | 6697 unittest.expect(o, unittest.hasLength(2)); |
6698 checkConnectionType(o[0]); | 6698 checkConnectionType(o[0]); |
6699 checkConnectionType(o[1]); | 6699 checkConnectionType(o[1]); |
6700 } | 6700 } |
6701 | 6701 |
6702 buildUnnamed408() { | 6702 buildUnnamed957() { |
6703 var o = new core.List<api.MobileCarrier>(); | 6703 var o = new core.List<api.MobileCarrier>(); |
6704 o.add(buildMobileCarrier()); | 6704 o.add(buildMobileCarrier()); |
6705 o.add(buildMobileCarrier()); | 6705 o.add(buildMobileCarrier()); |
6706 return o; | 6706 return o; |
6707 } | 6707 } |
6708 | 6708 |
6709 checkUnnamed408(core.List<api.MobileCarrier> o) { | 6709 checkUnnamed957(core.List<api.MobileCarrier> o) { |
6710 unittest.expect(o, unittest.hasLength(2)); | 6710 unittest.expect(o, unittest.hasLength(2)); |
6711 checkMobileCarrier(o[0]); | 6711 checkMobileCarrier(o[0]); |
6712 checkMobileCarrier(o[1]); | 6712 checkMobileCarrier(o[1]); |
6713 } | 6713 } |
6714 | 6714 |
6715 buildUnnamed409() { | 6715 buildUnnamed958() { |
6716 var o = new core.List<api.OperatingSystemVersion>(); | 6716 var o = new core.List<api.OperatingSystemVersion>(); |
6717 o.add(buildOperatingSystemVersion()); | 6717 o.add(buildOperatingSystemVersion()); |
6718 o.add(buildOperatingSystemVersion()); | 6718 o.add(buildOperatingSystemVersion()); |
6719 return o; | 6719 return o; |
6720 } | 6720 } |
6721 | 6721 |
6722 checkUnnamed409(core.List<api.OperatingSystemVersion> o) { | 6722 checkUnnamed958(core.List<api.OperatingSystemVersion> o) { |
6723 unittest.expect(o, unittest.hasLength(2)); | 6723 unittest.expect(o, unittest.hasLength(2)); |
6724 checkOperatingSystemVersion(o[0]); | 6724 checkOperatingSystemVersion(o[0]); |
6725 checkOperatingSystemVersion(o[1]); | 6725 checkOperatingSystemVersion(o[1]); |
6726 } | 6726 } |
6727 | 6727 |
6728 buildUnnamed410() { | 6728 buildUnnamed959() { |
6729 var o = new core.List<api.OperatingSystem>(); | 6729 var o = new core.List<api.OperatingSystem>(); |
6730 o.add(buildOperatingSystem()); | 6730 o.add(buildOperatingSystem()); |
6731 o.add(buildOperatingSystem()); | 6731 o.add(buildOperatingSystem()); |
6732 return o; | 6732 return o; |
6733 } | 6733 } |
6734 | 6734 |
6735 checkUnnamed410(core.List<api.OperatingSystem> o) { | 6735 checkUnnamed959(core.List<api.OperatingSystem> o) { |
6736 unittest.expect(o, unittest.hasLength(2)); | 6736 unittest.expect(o, unittest.hasLength(2)); |
6737 checkOperatingSystem(o[0]); | 6737 checkOperatingSystem(o[0]); |
6738 checkOperatingSystem(o[1]); | 6738 checkOperatingSystem(o[1]); |
6739 } | 6739 } |
6740 | 6740 |
6741 buildUnnamed411() { | 6741 buildUnnamed960() { |
6742 var o = new core.List<api.PlatformType>(); | 6742 var o = new core.List<api.PlatformType>(); |
6743 o.add(buildPlatformType()); | 6743 o.add(buildPlatformType()); |
6744 o.add(buildPlatformType()); | 6744 o.add(buildPlatformType()); |
6745 return o; | 6745 return o; |
6746 } | 6746 } |
6747 | 6747 |
6748 checkUnnamed411(core.List<api.PlatformType> o) { | 6748 checkUnnamed960(core.List<api.PlatformType> o) { |
6749 unittest.expect(o, unittest.hasLength(2)); | 6749 unittest.expect(o, unittest.hasLength(2)); |
6750 checkPlatformType(o[0]); | 6750 checkPlatformType(o[0]); |
6751 checkPlatformType(o[1]); | 6751 checkPlatformType(o[1]); |
6752 } | 6752 } |
6753 | 6753 |
6754 core.int buildCounterTechnologyTargeting = 0; | 6754 core.int buildCounterTechnologyTargeting = 0; |
6755 buildTechnologyTargeting() { | 6755 buildTechnologyTargeting() { |
6756 var o = new api.TechnologyTargeting(); | 6756 var o = new api.TechnologyTargeting(); |
6757 buildCounterTechnologyTargeting++; | 6757 buildCounterTechnologyTargeting++; |
6758 if (buildCounterTechnologyTargeting < 3) { | 6758 if (buildCounterTechnologyTargeting < 3) { |
6759 o.browsers = buildUnnamed406(); | 6759 o.browsers = buildUnnamed955(); |
6760 o.connectionTypes = buildUnnamed407(); | 6760 o.connectionTypes = buildUnnamed956(); |
6761 o.mobileCarriers = buildUnnamed408(); | 6761 o.mobileCarriers = buildUnnamed957(); |
6762 o.operatingSystemVersions = buildUnnamed409(); | 6762 o.operatingSystemVersions = buildUnnamed958(); |
6763 o.operatingSystems = buildUnnamed410(); | 6763 o.operatingSystems = buildUnnamed959(); |
6764 o.platformTypes = buildUnnamed411(); | 6764 o.platformTypes = buildUnnamed960(); |
6765 } | 6765 } |
6766 buildCounterTechnologyTargeting--; | 6766 buildCounterTechnologyTargeting--; |
6767 return o; | 6767 return o; |
6768 } | 6768 } |
6769 | 6769 |
6770 checkTechnologyTargeting(api.TechnologyTargeting o) { | 6770 checkTechnologyTargeting(api.TechnologyTargeting o) { |
6771 buildCounterTechnologyTargeting++; | 6771 buildCounterTechnologyTargeting++; |
6772 if (buildCounterTechnologyTargeting < 3) { | 6772 if (buildCounterTechnologyTargeting < 3) { |
6773 checkUnnamed406(o.browsers); | 6773 checkUnnamed955(o.browsers); |
6774 checkUnnamed407(o.connectionTypes); | 6774 checkUnnamed956(o.connectionTypes); |
6775 checkUnnamed408(o.mobileCarriers); | 6775 checkUnnamed957(o.mobileCarriers); |
6776 checkUnnamed409(o.operatingSystemVersions); | 6776 checkUnnamed958(o.operatingSystemVersions); |
6777 checkUnnamed410(o.operatingSystems); | 6777 checkUnnamed959(o.operatingSystems); |
6778 checkUnnamed411(o.platformTypes); | 6778 checkUnnamed960(o.platformTypes); |
6779 } | 6779 } |
6780 buildCounterTechnologyTargeting--; | 6780 buildCounterTechnologyTargeting--; |
6781 } | 6781 } |
6782 | 6782 |
6783 core.int buildCounterThirdPartyTrackingUrl = 0; | 6783 core.int buildCounterThirdPartyTrackingUrl = 0; |
6784 buildThirdPartyTrackingUrl() { | 6784 buildThirdPartyTrackingUrl() { |
6785 var o = new api.ThirdPartyTrackingUrl(); | 6785 var o = new api.ThirdPartyTrackingUrl(); |
6786 buildCounterThirdPartyTrackingUrl++; | 6786 buildCounterThirdPartyTrackingUrl++; |
6787 if (buildCounterThirdPartyTrackingUrl < 3) { | 6787 if (buildCounterThirdPartyTrackingUrl < 3) { |
6788 o.thirdPartyUrlType = "foo"; | 6788 o.thirdPartyUrlType = "foo"; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6850 unittest.expect(o.etag, unittest.equals('foo')); | 6850 unittest.expect(o.etag, unittest.equals('foo')); |
6851 unittest.expect(o.kind, unittest.equals('foo')); | 6851 unittest.expect(o.kind, unittest.equals('foo')); |
6852 unittest.expect(o.profileId, unittest.equals('foo')); | 6852 unittest.expect(o.profileId, unittest.equals('foo')); |
6853 unittest.expect(o.subAccountId, unittest.equals('foo')); | 6853 unittest.expect(o.subAccountId, unittest.equals('foo')); |
6854 unittest.expect(o.subAccountName, unittest.equals('foo')); | 6854 unittest.expect(o.subAccountName, unittest.equals('foo')); |
6855 unittest.expect(o.userName, unittest.equals('foo')); | 6855 unittest.expect(o.userName, unittest.equals('foo')); |
6856 } | 6856 } |
6857 buildCounterUserProfile--; | 6857 buildCounterUserProfile--; |
6858 } | 6858 } |
6859 | 6859 |
6860 buildUnnamed412() { | 6860 buildUnnamed961() { |
6861 var o = new core.List<api.UserProfile>(); | 6861 var o = new core.List<api.UserProfile>(); |
6862 o.add(buildUserProfile()); | 6862 o.add(buildUserProfile()); |
6863 o.add(buildUserProfile()); | 6863 o.add(buildUserProfile()); |
6864 return o; | 6864 return o; |
6865 } | 6865 } |
6866 | 6866 |
6867 checkUnnamed412(core.List<api.UserProfile> o) { | 6867 checkUnnamed961(core.List<api.UserProfile> o) { |
6868 unittest.expect(o, unittest.hasLength(2)); | 6868 unittest.expect(o, unittest.hasLength(2)); |
6869 checkUserProfile(o[0]); | 6869 checkUserProfile(o[0]); |
6870 checkUserProfile(o[1]); | 6870 checkUserProfile(o[1]); |
6871 } | 6871 } |
6872 | 6872 |
6873 core.int buildCounterUserProfileList = 0; | 6873 core.int buildCounterUserProfileList = 0; |
6874 buildUserProfileList() { | 6874 buildUserProfileList() { |
6875 var o = new api.UserProfileList(); | 6875 var o = new api.UserProfileList(); |
6876 buildCounterUserProfileList++; | 6876 buildCounterUserProfileList++; |
6877 if (buildCounterUserProfileList < 3) { | 6877 if (buildCounterUserProfileList < 3) { |
6878 o.etag = "foo"; | 6878 o.etag = "foo"; |
6879 o.items = buildUnnamed412(); | 6879 o.items = buildUnnamed961(); |
6880 o.kind = "foo"; | 6880 o.kind = "foo"; |
6881 } | 6881 } |
6882 buildCounterUserProfileList--; | 6882 buildCounterUserProfileList--; |
6883 return o; | 6883 return o; |
6884 } | 6884 } |
6885 | 6885 |
6886 checkUserProfileList(api.UserProfileList o) { | 6886 checkUserProfileList(api.UserProfileList o) { |
6887 buildCounterUserProfileList++; | 6887 buildCounterUserProfileList++; |
6888 if (buildCounterUserProfileList < 3) { | 6888 if (buildCounterUserProfileList < 3) { |
6889 unittest.expect(o.etag, unittest.equals('foo')); | 6889 unittest.expect(o.etag, unittest.equals('foo')); |
6890 checkUnnamed412(o.items); | 6890 checkUnnamed961(o.items); |
6891 unittest.expect(o.kind, unittest.equals('foo')); | 6891 unittest.expect(o.kind, unittest.equals('foo')); |
6892 } | 6892 } |
6893 buildCounterUserProfileList--; | 6893 buildCounterUserProfileList--; |
6894 } | 6894 } |
6895 | 6895 |
6896 buildUnnamed413() { | 6896 buildUnnamed962() { |
6897 var o = new core.List<api.UserRolePermission>(); | 6897 var o = new core.List<api.UserRolePermission>(); |
6898 o.add(buildUserRolePermission()); | 6898 o.add(buildUserRolePermission()); |
6899 o.add(buildUserRolePermission()); | 6899 o.add(buildUserRolePermission()); |
6900 return o; | 6900 return o; |
6901 } | 6901 } |
6902 | 6902 |
6903 checkUnnamed413(core.List<api.UserRolePermission> o) { | 6903 checkUnnamed962(core.List<api.UserRolePermission> o) { |
6904 unittest.expect(o, unittest.hasLength(2)); | 6904 unittest.expect(o, unittest.hasLength(2)); |
6905 checkUserRolePermission(o[0]); | 6905 checkUserRolePermission(o[0]); |
6906 checkUserRolePermission(o[1]); | 6906 checkUserRolePermission(o[1]); |
6907 } | 6907 } |
6908 | 6908 |
6909 core.int buildCounterUserRole = 0; | 6909 core.int buildCounterUserRole = 0; |
6910 buildUserRole() { | 6910 buildUserRole() { |
6911 var o = new api.UserRole(); | 6911 var o = new api.UserRole(); |
6912 buildCounterUserRole++; | 6912 buildCounterUserRole++; |
6913 if (buildCounterUserRole < 3) { | 6913 if (buildCounterUserRole < 3) { |
6914 o.accountId = "foo"; | 6914 o.accountId = "foo"; |
6915 o.defaultUserRole = true; | 6915 o.defaultUserRole = true; |
6916 o.id = "foo"; | 6916 o.id = "foo"; |
6917 o.kind = "foo"; | 6917 o.kind = "foo"; |
6918 o.name = "foo"; | 6918 o.name = "foo"; |
6919 o.parentUserRoleId = "foo"; | 6919 o.parentUserRoleId = "foo"; |
6920 o.permissions = buildUnnamed413(); | 6920 o.permissions = buildUnnamed962(); |
6921 o.subaccountId = "foo"; | 6921 o.subaccountId = "foo"; |
6922 } | 6922 } |
6923 buildCounterUserRole--; | 6923 buildCounterUserRole--; |
6924 return o; | 6924 return o; |
6925 } | 6925 } |
6926 | 6926 |
6927 checkUserRole(api.UserRole o) { | 6927 checkUserRole(api.UserRole o) { |
6928 buildCounterUserRole++; | 6928 buildCounterUserRole++; |
6929 if (buildCounterUserRole < 3) { | 6929 if (buildCounterUserRole < 3) { |
6930 unittest.expect(o.accountId, unittest.equals('foo')); | 6930 unittest.expect(o.accountId, unittest.equals('foo')); |
6931 unittest.expect(o.defaultUserRole, unittest.isTrue); | 6931 unittest.expect(o.defaultUserRole, unittest.isTrue); |
6932 unittest.expect(o.id, unittest.equals('foo')); | 6932 unittest.expect(o.id, unittest.equals('foo')); |
6933 unittest.expect(o.kind, unittest.equals('foo')); | 6933 unittest.expect(o.kind, unittest.equals('foo')); |
6934 unittest.expect(o.name, unittest.equals('foo')); | 6934 unittest.expect(o.name, unittest.equals('foo')); |
6935 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); | 6935 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); |
6936 checkUnnamed413(o.permissions); | 6936 checkUnnamed962(o.permissions); |
6937 unittest.expect(o.subaccountId, unittest.equals('foo')); | 6937 unittest.expect(o.subaccountId, unittest.equals('foo')); |
6938 } | 6938 } |
6939 buildCounterUserRole--; | 6939 buildCounterUserRole--; |
6940 } | 6940 } |
6941 | 6941 |
6942 core.int buildCounterUserRolePermission = 0; | 6942 core.int buildCounterUserRolePermission = 0; |
6943 buildUserRolePermission() { | 6943 buildUserRolePermission() { |
6944 var o = new api.UserRolePermission(); | 6944 var o = new api.UserRolePermission(); |
6945 buildCounterUserRolePermission++; | 6945 buildCounterUserRolePermission++; |
6946 if (buildCounterUserRolePermission < 3) { | 6946 if (buildCounterUserRolePermission < 3) { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6982 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { | 6982 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { |
6983 buildCounterUserRolePermissionGroup++; | 6983 buildCounterUserRolePermissionGroup++; |
6984 if (buildCounterUserRolePermissionGroup < 3) { | 6984 if (buildCounterUserRolePermissionGroup < 3) { |
6985 unittest.expect(o.id, unittest.equals('foo')); | 6985 unittest.expect(o.id, unittest.equals('foo')); |
6986 unittest.expect(o.kind, unittest.equals('foo')); | 6986 unittest.expect(o.kind, unittest.equals('foo')); |
6987 unittest.expect(o.name, unittest.equals('foo')); | 6987 unittest.expect(o.name, unittest.equals('foo')); |
6988 } | 6988 } |
6989 buildCounterUserRolePermissionGroup--; | 6989 buildCounterUserRolePermissionGroup--; |
6990 } | 6990 } |
6991 | 6991 |
6992 buildUnnamed414() { | 6992 buildUnnamed963() { |
6993 var o = new core.List<api.UserRolePermissionGroup>(); | 6993 var o = new core.List<api.UserRolePermissionGroup>(); |
6994 o.add(buildUserRolePermissionGroup()); | 6994 o.add(buildUserRolePermissionGroup()); |
6995 o.add(buildUserRolePermissionGroup()); | 6995 o.add(buildUserRolePermissionGroup()); |
6996 return o; | 6996 return o; |
6997 } | 6997 } |
6998 | 6998 |
6999 checkUnnamed414(core.List<api.UserRolePermissionGroup> o) { | 6999 checkUnnamed963(core.List<api.UserRolePermissionGroup> o) { |
7000 unittest.expect(o, unittest.hasLength(2)); | 7000 unittest.expect(o, unittest.hasLength(2)); |
7001 checkUserRolePermissionGroup(o[0]); | 7001 checkUserRolePermissionGroup(o[0]); |
7002 checkUserRolePermissionGroup(o[1]); | 7002 checkUserRolePermissionGroup(o[1]); |
7003 } | 7003 } |
7004 | 7004 |
7005 core.int buildCounterUserRolePermissionGroupsListResponse = 0; | 7005 core.int buildCounterUserRolePermissionGroupsListResponse = 0; |
7006 buildUserRolePermissionGroupsListResponse() { | 7006 buildUserRolePermissionGroupsListResponse() { |
7007 var o = new api.UserRolePermissionGroupsListResponse(); | 7007 var o = new api.UserRolePermissionGroupsListResponse(); |
7008 buildCounterUserRolePermissionGroupsListResponse++; | 7008 buildCounterUserRolePermissionGroupsListResponse++; |
7009 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7009 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
7010 o.kind = "foo"; | 7010 o.kind = "foo"; |
7011 o.userRolePermissionGroups = buildUnnamed414(); | 7011 o.userRolePermissionGroups = buildUnnamed963(); |
7012 } | 7012 } |
7013 buildCounterUserRolePermissionGroupsListResponse--; | 7013 buildCounterUserRolePermissionGroupsListResponse--; |
7014 return o; | 7014 return o; |
7015 } | 7015 } |
7016 | 7016 |
7017 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { | 7017 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { |
7018 buildCounterUserRolePermissionGroupsListResponse++; | 7018 buildCounterUserRolePermissionGroupsListResponse++; |
7019 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7019 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
7020 unittest.expect(o.kind, unittest.equals('foo')); | 7020 unittest.expect(o.kind, unittest.equals('foo')); |
7021 checkUnnamed414(o.userRolePermissionGroups); | 7021 checkUnnamed963(o.userRolePermissionGroups); |
7022 } | 7022 } |
7023 buildCounterUserRolePermissionGroupsListResponse--; | 7023 buildCounterUserRolePermissionGroupsListResponse--; |
7024 } | 7024 } |
7025 | 7025 |
7026 buildUnnamed415() { | 7026 buildUnnamed964() { |
7027 var o = new core.List<api.UserRolePermission>(); | 7027 var o = new core.List<api.UserRolePermission>(); |
7028 o.add(buildUserRolePermission()); | 7028 o.add(buildUserRolePermission()); |
7029 o.add(buildUserRolePermission()); | 7029 o.add(buildUserRolePermission()); |
7030 return o; | 7030 return o; |
7031 } | 7031 } |
7032 | 7032 |
7033 checkUnnamed415(core.List<api.UserRolePermission> o) { | 7033 checkUnnamed964(core.List<api.UserRolePermission> o) { |
7034 unittest.expect(o, unittest.hasLength(2)); | 7034 unittest.expect(o, unittest.hasLength(2)); |
7035 checkUserRolePermission(o[0]); | 7035 checkUserRolePermission(o[0]); |
7036 checkUserRolePermission(o[1]); | 7036 checkUserRolePermission(o[1]); |
7037 } | 7037 } |
7038 | 7038 |
7039 core.int buildCounterUserRolePermissionsListResponse = 0; | 7039 core.int buildCounterUserRolePermissionsListResponse = 0; |
7040 buildUserRolePermissionsListResponse() { | 7040 buildUserRolePermissionsListResponse() { |
7041 var o = new api.UserRolePermissionsListResponse(); | 7041 var o = new api.UserRolePermissionsListResponse(); |
7042 buildCounterUserRolePermissionsListResponse++; | 7042 buildCounterUserRolePermissionsListResponse++; |
7043 if (buildCounterUserRolePermissionsListResponse < 3) { | 7043 if (buildCounterUserRolePermissionsListResponse < 3) { |
7044 o.kind = "foo"; | 7044 o.kind = "foo"; |
7045 o.userRolePermissions = buildUnnamed415(); | 7045 o.userRolePermissions = buildUnnamed964(); |
7046 } | 7046 } |
7047 buildCounterUserRolePermissionsListResponse--; | 7047 buildCounterUserRolePermissionsListResponse--; |
7048 return o; | 7048 return o; |
7049 } | 7049 } |
7050 | 7050 |
7051 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { | 7051 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { |
7052 buildCounterUserRolePermissionsListResponse++; | 7052 buildCounterUserRolePermissionsListResponse++; |
7053 if (buildCounterUserRolePermissionsListResponse < 3) { | 7053 if (buildCounterUserRolePermissionsListResponse < 3) { |
7054 unittest.expect(o.kind, unittest.equals('foo')); | 7054 unittest.expect(o.kind, unittest.equals('foo')); |
7055 checkUnnamed415(o.userRolePermissions); | 7055 checkUnnamed964(o.userRolePermissions); |
7056 } | 7056 } |
7057 buildCounterUserRolePermissionsListResponse--; | 7057 buildCounterUserRolePermissionsListResponse--; |
7058 } | 7058 } |
7059 | 7059 |
7060 buildUnnamed416() { | 7060 buildUnnamed965() { |
7061 var o = new core.List<api.UserRole>(); | 7061 var o = new core.List<api.UserRole>(); |
7062 o.add(buildUserRole()); | 7062 o.add(buildUserRole()); |
7063 o.add(buildUserRole()); | 7063 o.add(buildUserRole()); |
7064 return o; | 7064 return o; |
7065 } | 7065 } |
7066 | 7066 |
7067 checkUnnamed416(core.List<api.UserRole> o) { | 7067 checkUnnamed965(core.List<api.UserRole> o) { |
7068 unittest.expect(o, unittest.hasLength(2)); | 7068 unittest.expect(o, unittest.hasLength(2)); |
7069 checkUserRole(o[0]); | 7069 checkUserRole(o[0]); |
7070 checkUserRole(o[1]); | 7070 checkUserRole(o[1]); |
7071 } | 7071 } |
7072 | 7072 |
7073 core.int buildCounterUserRolesListResponse = 0; | 7073 core.int buildCounterUserRolesListResponse = 0; |
7074 buildUserRolesListResponse() { | 7074 buildUserRolesListResponse() { |
7075 var o = new api.UserRolesListResponse(); | 7075 var o = new api.UserRolesListResponse(); |
7076 buildCounterUserRolesListResponse++; | 7076 buildCounterUserRolesListResponse++; |
7077 if (buildCounterUserRolesListResponse < 3) { | 7077 if (buildCounterUserRolesListResponse < 3) { |
7078 o.kind = "foo"; | 7078 o.kind = "foo"; |
7079 o.nextPageToken = "foo"; | 7079 o.nextPageToken = "foo"; |
7080 o.userRoles = buildUnnamed416(); | 7080 o.userRoles = buildUnnamed965(); |
7081 } | 7081 } |
7082 buildCounterUserRolesListResponse--; | 7082 buildCounterUserRolesListResponse--; |
7083 return o; | 7083 return o; |
7084 } | 7084 } |
7085 | 7085 |
7086 checkUserRolesListResponse(api.UserRolesListResponse o) { | 7086 checkUserRolesListResponse(api.UserRolesListResponse o) { |
7087 buildCounterUserRolesListResponse++; | 7087 buildCounterUserRolesListResponse++; |
7088 if (buildCounterUserRolesListResponse < 3) { | 7088 if (buildCounterUserRolesListResponse < 3) { |
7089 unittest.expect(o.kind, unittest.equals('foo')); | 7089 unittest.expect(o.kind, unittest.equals('foo')); |
7090 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7090 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
7091 checkUnnamed416(o.userRoles); | 7091 checkUnnamed965(o.userRoles); |
7092 } | 7092 } |
7093 buildCounterUserRolesListResponse--; | 7093 buildCounterUserRolesListResponse--; |
7094 } | 7094 } |
7095 | 7095 |
7096 buildUnnamed417() { | 7096 buildUnnamed966() { |
7097 var o = new core.List<core.String>(); | 7097 var o = new core.List<core.String>(); |
7098 o.add("foo"); | 7098 o.add("foo"); |
7099 o.add("foo"); | 7099 o.add("foo"); |
7100 return o; | 7100 return o; |
7101 } | 7101 } |
7102 | 7102 |
7103 checkUnnamed417(core.List<core.String> o) { | 7103 checkUnnamed966(core.List<core.String> o) { |
7104 unittest.expect(o, unittest.hasLength(2)); | 7104 unittest.expect(o, unittest.hasLength(2)); |
7105 unittest.expect(o[0], unittest.equals('foo')); | 7105 unittest.expect(o[0], unittest.equals('foo')); |
7106 unittest.expect(o[1], unittest.equals('foo')); | 7106 unittest.expect(o[1], unittest.equals('foo')); |
7107 } | 7107 } |
7108 | 7108 |
7109 buildUnnamed418() { | 7109 buildUnnamed967() { |
7110 var o = new core.List<core.String>(); | 7110 var o = new core.List<core.String>(); |
7111 o.add("foo"); | 7111 o.add("foo"); |
7112 o.add("foo"); | 7112 o.add("foo"); |
7113 return o; | 7113 return o; |
7114 } | 7114 } |
7115 | 7115 |
7116 checkUnnamed418(core.List<core.String> o) { | 7116 checkUnnamed967(core.List<core.String> o) { |
7117 unittest.expect(o, unittest.hasLength(2)); | 7117 unittest.expect(o, unittest.hasLength(2)); |
7118 unittest.expect(o[0], unittest.equals('foo')); | 7118 unittest.expect(o[0], unittest.equals('foo')); |
7119 unittest.expect(o[1], unittest.equals('foo')); | 7119 unittest.expect(o[1], unittest.equals('foo')); |
7120 } | 7120 } |
7121 | 7121 |
7122 buildUnnamed419() { | 7122 buildUnnamed968() { |
7123 var o = new core.List<core.String>(); | 7123 var o = new core.List<core.String>(); |
7124 o.add("foo"); | 7124 o.add("foo"); |
7125 o.add("foo"); | 7125 o.add("foo"); |
7126 return o; | 7126 return o; |
7127 } | 7127 } |
7128 | 7128 |
7129 checkUnnamed419(core.List<core.String> o) { | 7129 checkUnnamed968(core.List<core.String> o) { |
7130 unittest.expect(o, unittest.hasLength(2)); | 7130 unittest.expect(o, unittest.hasLength(2)); |
7131 unittest.expect(o[0], unittest.equals('foo')); | 7131 unittest.expect(o[0], unittest.equals('foo')); |
7132 unittest.expect(o[1], unittest.equals('foo')); | 7132 unittest.expect(o[1], unittest.equals('foo')); |
7133 } | 7133 } |
7134 | 7134 |
7135 buildUnnamed420() { | 7135 buildUnnamed969() { |
7136 var o = new core.List<core.String>(); | 7136 var o = new core.List<core.String>(); |
7137 o.add("foo"); | 7137 o.add("foo"); |
7138 o.add("foo"); | 7138 o.add("foo"); |
7139 return o; | 7139 return o; |
7140 } | 7140 } |
7141 | 7141 |
7142 checkUnnamed420(core.List<core.String> o) { | 7142 checkUnnamed969(core.List<core.String> o) { |
7143 unittest.expect(o, unittest.hasLength(2)); | 7143 unittest.expect(o, unittest.hasLength(2)); |
7144 unittest.expect(o[0], unittest.equals('foo')); | 7144 unittest.expect(o[0], unittest.equals('foo')); |
7145 unittest.expect(o[1], unittest.equals('foo')); | 7145 unittest.expect(o[1], unittest.equals('foo')); |
7146 } | 7146 } |
7147 | 7147 |
7148 buildUnnamed421() { | 7148 buildUnnamed970() { |
7149 var o = new core.List<core.String>(); | 7149 var o = new core.List<core.String>(); |
7150 o.add("foo"); | 7150 o.add("foo"); |
7151 o.add("foo"); | 7151 o.add("foo"); |
7152 return o; | 7152 return o; |
7153 } | 7153 } |
7154 | 7154 |
7155 checkUnnamed421(core.List<core.String> o) { | 7155 checkUnnamed970(core.List<core.String> o) { |
7156 unittest.expect(o, unittest.hasLength(2)); | 7156 unittest.expect(o, unittest.hasLength(2)); |
7157 unittest.expect(o[0], unittest.equals('foo')); | 7157 unittest.expect(o[0], unittest.equals('foo')); |
7158 unittest.expect(o[1], unittest.equals('foo')); | 7158 unittest.expect(o[1], unittest.equals('foo')); |
7159 } | 7159 } |
7160 | 7160 |
7161 buildUnnamed422() { | 7161 buildUnnamed971() { |
7162 var o = new core.List<core.String>(); | 7162 var o = new core.List<core.String>(); |
7163 o.add("foo"); | 7163 o.add("foo"); |
7164 o.add("foo"); | 7164 o.add("foo"); |
7165 return o; | 7165 return o; |
7166 } | 7166 } |
7167 | 7167 |
7168 checkUnnamed422(core.List<core.String> o) { | 7168 checkUnnamed971(core.List<core.String> o) { |
7169 unittest.expect(o, unittest.hasLength(2)); | 7169 unittest.expect(o, unittest.hasLength(2)); |
7170 unittest.expect(o[0], unittest.equals('foo')); | 7170 unittest.expect(o[0], unittest.equals('foo')); |
7171 unittest.expect(o[1], unittest.equals('foo')); | 7171 unittest.expect(o[1], unittest.equals('foo')); |
7172 } | 7172 } |
7173 | 7173 |
7174 buildUnnamed423() { | 7174 buildUnnamed972() { |
7175 var o = new core.List<core.String>(); | 7175 var o = new core.List<core.String>(); |
7176 o.add("foo"); | 7176 o.add("foo"); |
7177 o.add("foo"); | 7177 o.add("foo"); |
7178 return o; | 7178 return o; |
7179 } | 7179 } |
7180 | 7180 |
7181 checkUnnamed423(core.List<core.String> o) { | 7181 checkUnnamed972(core.List<core.String> o) { |
7182 unittest.expect(o, unittest.hasLength(2)); | 7182 unittest.expect(o, unittest.hasLength(2)); |
7183 unittest.expect(o[0], unittest.equals('foo')); | 7183 unittest.expect(o[0], unittest.equals('foo')); |
7184 unittest.expect(o[1], unittest.equals('foo')); | 7184 unittest.expect(o[1], unittest.equals('foo')); |
7185 } | 7185 } |
7186 | 7186 |
7187 buildUnnamed424() { | 7187 buildUnnamed973() { |
7188 var o = new core.List<core.String>(); | 7188 var o = new core.List<core.String>(); |
7189 o.add("foo"); | 7189 o.add("foo"); |
7190 o.add("foo"); | 7190 o.add("foo"); |
7191 return o; | 7191 return o; |
7192 } | 7192 } |
7193 | 7193 |
7194 checkUnnamed424(core.List<core.String> o) { | 7194 checkUnnamed973(core.List<core.String> o) { |
7195 unittest.expect(o, unittest.hasLength(2)); | 7195 unittest.expect(o, unittest.hasLength(2)); |
7196 unittest.expect(o[0], unittest.equals('foo')); | 7196 unittest.expect(o[0], unittest.equals('foo')); |
7197 unittest.expect(o[1], unittest.equals('foo')); | 7197 unittest.expect(o[1], unittest.equals('foo')); |
7198 } | 7198 } |
7199 | 7199 |
7200 buildUnnamed425() { | 7200 buildUnnamed974() { |
7201 var o = new core.List<core.String>(); | 7201 var o = new core.List<core.String>(); |
7202 o.add("foo"); | 7202 o.add("foo"); |
7203 o.add("foo"); | 7203 o.add("foo"); |
7204 return o; | 7204 return o; |
7205 } | 7205 } |
7206 | 7206 |
7207 checkUnnamed425(core.List<core.String> o) { | 7207 checkUnnamed974(core.List<core.String> o) { |
7208 unittest.expect(o, unittest.hasLength(2)); | 7208 unittest.expect(o, unittest.hasLength(2)); |
7209 unittest.expect(o[0], unittest.equals('foo')); | 7209 unittest.expect(o[0], unittest.equals('foo')); |
7210 unittest.expect(o[1], unittest.equals('foo')); | 7210 unittest.expect(o[1], unittest.equals('foo')); |
7211 } | 7211 } |
7212 | 7212 |
7213 buildUnnamed426() { | 7213 buildUnnamed975() { |
7214 var o = new core.List<core.String>(); | 7214 var o = new core.List<core.String>(); |
7215 o.add("foo"); | 7215 o.add("foo"); |
7216 o.add("foo"); | 7216 o.add("foo"); |
7217 return o; | 7217 return o; |
7218 } | 7218 } |
7219 | 7219 |
7220 checkUnnamed426(core.List<core.String> o) { | 7220 checkUnnamed975(core.List<core.String> o) { |
7221 unittest.expect(o, unittest.hasLength(2)); | 7221 unittest.expect(o, unittest.hasLength(2)); |
7222 unittest.expect(o[0], unittest.equals('foo')); | 7222 unittest.expect(o[0], unittest.equals('foo')); |
7223 unittest.expect(o[1], unittest.equals('foo')); | 7223 unittest.expect(o[1], unittest.equals('foo')); |
7224 } | 7224 } |
7225 | 7225 |
7226 buildUnnamed427() { | 7226 buildUnnamed976() { |
7227 var o = new core.List<core.String>(); | 7227 var o = new core.List<core.String>(); |
7228 o.add("foo"); | 7228 o.add("foo"); |
7229 o.add("foo"); | 7229 o.add("foo"); |
7230 return o; | 7230 return o; |
7231 } | 7231 } |
7232 | 7232 |
7233 checkUnnamed427(core.List<core.String> o) { | 7233 checkUnnamed976(core.List<core.String> o) { |
7234 unittest.expect(o, unittest.hasLength(2)); | 7234 unittest.expect(o, unittest.hasLength(2)); |
7235 unittest.expect(o[0], unittest.equals('foo')); | 7235 unittest.expect(o[0], unittest.equals('foo')); |
7236 unittest.expect(o[1], unittest.equals('foo')); | 7236 unittest.expect(o[1], unittest.equals('foo')); |
7237 } | 7237 } |
7238 | 7238 |
7239 buildUnnamed428() { | 7239 buildUnnamed977() { |
7240 var o = new core.List<core.String>(); | 7240 var o = new core.List<core.String>(); |
7241 o.add("foo"); | 7241 o.add("foo"); |
7242 o.add("foo"); | 7242 o.add("foo"); |
7243 return o; | 7243 return o; |
7244 } | 7244 } |
7245 | 7245 |
7246 checkUnnamed428(core.List<core.String> o) { | 7246 checkUnnamed977(core.List<core.String> o) { |
7247 unittest.expect(o, unittest.hasLength(2)); | 7247 unittest.expect(o, unittest.hasLength(2)); |
7248 unittest.expect(o[0], unittest.equals('foo')); | 7248 unittest.expect(o[0], unittest.equals('foo')); |
7249 unittest.expect(o[1], unittest.equals('foo')); | 7249 unittest.expect(o[1], unittest.equals('foo')); |
7250 } | 7250 } |
7251 | 7251 |
7252 buildUnnamed429() { | 7252 buildUnnamed978() { |
7253 var o = new core.List<core.String>(); | 7253 var o = new core.List<core.String>(); |
7254 o.add("foo"); | 7254 o.add("foo"); |
7255 o.add("foo"); | 7255 o.add("foo"); |
7256 return o; | 7256 return o; |
7257 } | 7257 } |
7258 | 7258 |
7259 checkUnnamed429(core.List<core.String> o) { | 7259 checkUnnamed978(core.List<core.String> o) { |
7260 unittest.expect(o, unittest.hasLength(2)); | 7260 unittest.expect(o, unittest.hasLength(2)); |
7261 unittest.expect(o[0], unittest.equals('foo')); | 7261 unittest.expect(o[0], unittest.equals('foo')); |
7262 unittest.expect(o[1], unittest.equals('foo')); | 7262 unittest.expect(o[1], unittest.equals('foo')); |
7263 } | 7263 } |
7264 | 7264 |
7265 buildUnnamed430() { | 7265 buildUnnamed979() { |
7266 var o = new core.List<core.String>(); | 7266 var o = new core.List<core.String>(); |
7267 o.add("foo"); | 7267 o.add("foo"); |
7268 o.add("foo"); | 7268 o.add("foo"); |
7269 return o; | 7269 return o; |
7270 } | 7270 } |
7271 | 7271 |
7272 checkUnnamed430(core.List<core.String> o) { | 7272 checkUnnamed979(core.List<core.String> o) { |
7273 unittest.expect(o, unittest.hasLength(2)); | 7273 unittest.expect(o, unittest.hasLength(2)); |
7274 unittest.expect(o[0], unittest.equals('foo')); | 7274 unittest.expect(o[0], unittest.equals('foo')); |
7275 unittest.expect(o[1], unittest.equals('foo')); | 7275 unittest.expect(o[1], unittest.equals('foo')); |
7276 } | 7276 } |
7277 | 7277 |
7278 buildUnnamed431() { | 7278 buildUnnamed980() { |
7279 var o = new core.List<core.String>(); | 7279 var o = new core.List<core.String>(); |
7280 o.add("foo"); | 7280 o.add("foo"); |
7281 o.add("foo"); | 7281 o.add("foo"); |
7282 return o; | 7282 return o; |
7283 } | 7283 } |
7284 | 7284 |
7285 checkUnnamed431(core.List<core.String> o) { | 7285 checkUnnamed980(core.List<core.String> o) { |
7286 unittest.expect(o, unittest.hasLength(2)); | 7286 unittest.expect(o, unittest.hasLength(2)); |
7287 unittest.expect(o[0], unittest.equals('foo')); | 7287 unittest.expect(o[0], unittest.equals('foo')); |
7288 unittest.expect(o[1], unittest.equals('foo')); | 7288 unittest.expect(o[1], unittest.equals('foo')); |
7289 } | 7289 } |
7290 | 7290 |
7291 buildUnnamed432() { | 7291 buildUnnamed981() { |
7292 var o = new core.List<core.String>(); | 7292 var o = new core.List<core.String>(); |
7293 o.add("foo"); | 7293 o.add("foo"); |
7294 o.add("foo"); | 7294 o.add("foo"); |
7295 return o; | 7295 return o; |
7296 } | 7296 } |
7297 | 7297 |
7298 checkUnnamed432(core.List<core.String> o) { | 7298 checkUnnamed981(core.List<core.String> o) { |
7299 unittest.expect(o, unittest.hasLength(2)); | 7299 unittest.expect(o, unittest.hasLength(2)); |
7300 unittest.expect(o[0], unittest.equals('foo')); | 7300 unittest.expect(o[0], unittest.equals('foo')); |
7301 unittest.expect(o[1], unittest.equals('foo')); | 7301 unittest.expect(o[1], unittest.equals('foo')); |
7302 } | 7302 } |
7303 | 7303 |
7304 buildUnnamed433() { | 7304 buildUnnamed982() { |
7305 var o = new core.List<core.String>(); | 7305 var o = new core.List<core.String>(); |
7306 o.add("foo"); | 7306 o.add("foo"); |
7307 o.add("foo"); | 7307 o.add("foo"); |
7308 return o; | 7308 return o; |
7309 } | 7309 } |
7310 | 7310 |
7311 checkUnnamed433(core.List<core.String> o) { | 7311 checkUnnamed982(core.List<core.String> o) { |
7312 unittest.expect(o, unittest.hasLength(2)); | 7312 unittest.expect(o, unittest.hasLength(2)); |
7313 unittest.expect(o[0], unittest.equals('foo')); | 7313 unittest.expect(o[0], unittest.equals('foo')); |
7314 unittest.expect(o[1], unittest.equals('foo')); | 7314 unittest.expect(o[1], unittest.equals('foo')); |
7315 } | 7315 } |
7316 | 7316 |
7317 buildUnnamed434() { | 7317 buildUnnamed983() { |
7318 var o = new core.List<core.String>(); | 7318 var o = new core.List<core.String>(); |
7319 o.add("foo"); | 7319 o.add("foo"); |
7320 o.add("foo"); | 7320 o.add("foo"); |
7321 return o; | 7321 return o; |
7322 } | 7322 } |
7323 | 7323 |
7324 checkUnnamed434(core.List<core.String> o) { | 7324 checkUnnamed983(core.List<core.String> o) { |
7325 unittest.expect(o, unittest.hasLength(2)); | 7325 unittest.expect(o, unittest.hasLength(2)); |
7326 unittest.expect(o[0], unittest.equals('foo')); | 7326 unittest.expect(o[0], unittest.equals('foo')); |
7327 unittest.expect(o[1], unittest.equals('foo')); | 7327 unittest.expect(o[1], unittest.equals('foo')); |
7328 } | 7328 } |
7329 | 7329 |
7330 buildUnnamed435() { | 7330 buildUnnamed984() { |
7331 var o = new core.List<core.String>(); | 7331 var o = new core.List<core.String>(); |
7332 o.add("foo"); | 7332 o.add("foo"); |
7333 o.add("foo"); | 7333 o.add("foo"); |
7334 return o; | 7334 return o; |
7335 } | 7335 } |
7336 | 7336 |
7337 checkUnnamed435(core.List<core.String> o) { | 7337 checkUnnamed984(core.List<core.String> o) { |
7338 unittest.expect(o, unittest.hasLength(2)); | 7338 unittest.expect(o, unittest.hasLength(2)); |
7339 unittest.expect(o[0], unittest.equals('foo')); | 7339 unittest.expect(o[0], unittest.equals('foo')); |
7340 unittest.expect(o[1], unittest.equals('foo')); | 7340 unittest.expect(o[1], unittest.equals('foo')); |
7341 } | 7341 } |
7342 | 7342 |
7343 buildUnnamed436() { | 7343 buildUnnamed985() { |
7344 var o = new core.List<core.String>(); | 7344 var o = new core.List<core.String>(); |
7345 o.add("foo"); | 7345 o.add("foo"); |
7346 o.add("foo"); | 7346 o.add("foo"); |
7347 return o; | 7347 return o; |
7348 } | 7348 } |
7349 | 7349 |
7350 checkUnnamed436(core.List<core.String> o) { | 7350 checkUnnamed985(core.List<core.String> o) { |
7351 unittest.expect(o, unittest.hasLength(2)); | 7351 unittest.expect(o, unittest.hasLength(2)); |
7352 unittest.expect(o[0], unittest.equals('foo')); | 7352 unittest.expect(o[0], unittest.equals('foo')); |
7353 unittest.expect(o[1], unittest.equals('foo')); | 7353 unittest.expect(o[1], unittest.equals('foo')); |
7354 } | 7354 } |
7355 | 7355 |
7356 buildUnnamed437() { | 7356 buildUnnamed986() { |
7357 var o = new core.List<core.String>(); | 7357 var o = new core.List<core.String>(); |
7358 o.add("foo"); | 7358 o.add("foo"); |
7359 o.add("foo"); | 7359 o.add("foo"); |
7360 return o; | 7360 return o; |
7361 } | 7361 } |
7362 | 7362 |
7363 checkUnnamed437(core.List<core.String> o) { | 7363 checkUnnamed986(core.List<core.String> o) { |
7364 unittest.expect(o, unittest.hasLength(2)); | 7364 unittest.expect(o, unittest.hasLength(2)); |
7365 unittest.expect(o[0], unittest.equals('foo')); | 7365 unittest.expect(o[0], unittest.equals('foo')); |
7366 unittest.expect(o[1], unittest.equals('foo')); | 7366 unittest.expect(o[1], unittest.equals('foo')); |
7367 } | 7367 } |
7368 | 7368 |
7369 buildUnnamed438() { | 7369 buildUnnamed987() { |
7370 var o = new core.List<core.String>(); | 7370 var o = new core.List<core.String>(); |
7371 o.add("foo"); | 7371 o.add("foo"); |
7372 o.add("foo"); | 7372 o.add("foo"); |
7373 return o; | 7373 return o; |
7374 } | 7374 } |
7375 | 7375 |
7376 checkUnnamed438(core.List<core.String> o) { | 7376 checkUnnamed987(core.List<core.String> o) { |
7377 unittest.expect(o, unittest.hasLength(2)); | 7377 unittest.expect(o, unittest.hasLength(2)); |
7378 unittest.expect(o[0], unittest.equals('foo')); | 7378 unittest.expect(o[0], unittest.equals('foo')); |
7379 unittest.expect(o[1], unittest.equals('foo')); | 7379 unittest.expect(o[1], unittest.equals('foo')); |
7380 } | 7380 } |
7381 | 7381 |
7382 buildUnnamed439() { | 7382 buildUnnamed988() { |
7383 var o = new core.List<core.String>(); | 7383 var o = new core.List<core.String>(); |
7384 o.add("foo"); | 7384 o.add("foo"); |
7385 o.add("foo"); | 7385 o.add("foo"); |
7386 return o; | 7386 return o; |
7387 } | 7387 } |
7388 | 7388 |
7389 checkUnnamed439(core.List<core.String> o) { | 7389 checkUnnamed988(core.List<core.String> o) { |
7390 unittest.expect(o, unittest.hasLength(2)); | 7390 unittest.expect(o, unittest.hasLength(2)); |
7391 unittest.expect(o[0], unittest.equals('foo')); | 7391 unittest.expect(o[0], unittest.equals('foo')); |
7392 unittest.expect(o[1], unittest.equals('foo')); | 7392 unittest.expect(o[1], unittest.equals('foo')); |
7393 } | 7393 } |
7394 | 7394 |
7395 buildUnnamed440() { | 7395 buildUnnamed989() { |
7396 var o = new core.List<core.String>(); | 7396 var o = new core.List<core.String>(); |
7397 o.add("foo"); | 7397 o.add("foo"); |
7398 o.add("foo"); | 7398 o.add("foo"); |
7399 return o; | 7399 return o; |
7400 } | 7400 } |
7401 | 7401 |
7402 checkUnnamed440(core.List<core.String> o) { | 7402 checkUnnamed989(core.List<core.String> o) { |
7403 unittest.expect(o, unittest.hasLength(2)); | 7403 unittest.expect(o, unittest.hasLength(2)); |
7404 unittest.expect(o[0], unittest.equals('foo')); | 7404 unittest.expect(o[0], unittest.equals('foo')); |
7405 unittest.expect(o[1], unittest.equals('foo')); | 7405 unittest.expect(o[1], unittest.equals('foo')); |
7406 } | 7406 } |
7407 | 7407 |
7408 buildUnnamed441() { | 7408 buildUnnamed990() { |
7409 var o = new core.List<core.String>(); | 7409 var o = new core.List<core.String>(); |
7410 o.add("foo"); | 7410 o.add("foo"); |
7411 o.add("foo"); | 7411 o.add("foo"); |
7412 return o; | 7412 return o; |
7413 } | 7413 } |
7414 | 7414 |
7415 checkUnnamed441(core.List<core.String> o) { | 7415 checkUnnamed990(core.List<core.String> o) { |
7416 unittest.expect(o, unittest.hasLength(2)); | 7416 unittest.expect(o, unittest.hasLength(2)); |
7417 unittest.expect(o[0], unittest.equals('foo')); | 7417 unittest.expect(o[0], unittest.equals('foo')); |
7418 unittest.expect(o[1], unittest.equals('foo')); | 7418 unittest.expect(o[1], unittest.equals('foo')); |
7419 } | 7419 } |
7420 | 7420 |
7421 buildUnnamed442() { | 7421 buildUnnamed991() { |
7422 var o = new core.List<core.String>(); | 7422 var o = new core.List<core.String>(); |
7423 o.add("foo"); | 7423 o.add("foo"); |
7424 o.add("foo"); | 7424 o.add("foo"); |
7425 return o; | 7425 return o; |
7426 } | 7426 } |
7427 | 7427 |
7428 checkUnnamed442(core.List<core.String> o) { | 7428 checkUnnamed991(core.List<core.String> o) { |
7429 unittest.expect(o, unittest.hasLength(2)); | 7429 unittest.expect(o, unittest.hasLength(2)); |
7430 unittest.expect(o[0], unittest.equals('foo')); | 7430 unittest.expect(o[0], unittest.equals('foo')); |
7431 unittest.expect(o[1], unittest.equals('foo')); | 7431 unittest.expect(o[1], unittest.equals('foo')); |
7432 } | 7432 } |
7433 | 7433 |
7434 buildUnnamed443() { | 7434 buildUnnamed992() { |
7435 var o = new core.List<core.String>(); | 7435 var o = new core.List<core.String>(); |
7436 o.add("foo"); | 7436 o.add("foo"); |
7437 o.add("foo"); | 7437 o.add("foo"); |
7438 return o; | 7438 return o; |
7439 } | 7439 } |
7440 | 7440 |
7441 checkUnnamed443(core.List<core.String> o) { | 7441 checkUnnamed992(core.List<core.String> o) { |
7442 unittest.expect(o, unittest.hasLength(2)); | 7442 unittest.expect(o, unittest.hasLength(2)); |
7443 unittest.expect(o[0], unittest.equals('foo')); | 7443 unittest.expect(o[0], unittest.equals('foo')); |
7444 unittest.expect(o[1], unittest.equals('foo')); | 7444 unittest.expect(o[1], unittest.equals('foo')); |
7445 } | 7445 } |
7446 | 7446 |
7447 buildUnnamed444() { | 7447 buildUnnamed993() { |
7448 var o = new core.List<core.String>(); | 7448 var o = new core.List<core.String>(); |
7449 o.add("foo"); | 7449 o.add("foo"); |
7450 o.add("foo"); | 7450 o.add("foo"); |
7451 return o; | 7451 return o; |
7452 } | 7452 } |
7453 | 7453 |
7454 checkUnnamed444(core.List<core.String> o) { | 7454 checkUnnamed993(core.List<core.String> o) { |
7455 unittest.expect(o, unittest.hasLength(2)); | 7455 unittest.expect(o, unittest.hasLength(2)); |
7456 unittest.expect(o[0], unittest.equals('foo')); | 7456 unittest.expect(o[0], unittest.equals('foo')); |
7457 unittest.expect(o[1], unittest.equals('foo')); | 7457 unittest.expect(o[1], unittest.equals('foo')); |
7458 } | 7458 } |
7459 | 7459 |
7460 buildUnnamed445() { | 7460 buildUnnamed994() { |
7461 var o = new core.List<core.String>(); | 7461 var o = new core.List<core.String>(); |
7462 o.add("foo"); | 7462 o.add("foo"); |
7463 o.add("foo"); | 7463 o.add("foo"); |
7464 return o; | 7464 return o; |
7465 } | 7465 } |
7466 | 7466 |
7467 checkUnnamed445(core.List<core.String> o) { | 7467 checkUnnamed994(core.List<core.String> o) { |
7468 unittest.expect(o, unittest.hasLength(2)); | 7468 unittest.expect(o, unittest.hasLength(2)); |
7469 unittest.expect(o[0], unittest.equals('foo')); | 7469 unittest.expect(o[0], unittest.equals('foo')); |
7470 unittest.expect(o[1], unittest.equals('foo')); | 7470 unittest.expect(o[1], unittest.equals('foo')); |
7471 } | 7471 } |
7472 | 7472 |
7473 buildUnnamed446() { | 7473 buildUnnamed995() { |
7474 var o = new core.List<core.String>(); | 7474 var o = new core.List<core.String>(); |
7475 o.add("foo"); | 7475 o.add("foo"); |
7476 o.add("foo"); | 7476 o.add("foo"); |
7477 return o; | 7477 return o; |
7478 } | 7478 } |
7479 | 7479 |
7480 checkUnnamed446(core.List<core.String> o) { | 7480 checkUnnamed995(core.List<core.String> o) { |
7481 unittest.expect(o, unittest.hasLength(2)); | 7481 unittest.expect(o, unittest.hasLength(2)); |
7482 unittest.expect(o[0], unittest.equals('foo')); | 7482 unittest.expect(o[0], unittest.equals('foo')); |
7483 unittest.expect(o[1], unittest.equals('foo')); | 7483 unittest.expect(o[1], unittest.equals('foo')); |
7484 } | 7484 } |
7485 | 7485 |
7486 buildUnnamed447() { | 7486 buildUnnamed996() { |
7487 var o = new core.List<core.String>(); | 7487 var o = new core.List<core.String>(); |
7488 o.add("foo"); | 7488 o.add("foo"); |
7489 o.add("foo"); | 7489 o.add("foo"); |
7490 return o; | 7490 return o; |
7491 } | 7491 } |
7492 | 7492 |
7493 checkUnnamed447(core.List<core.String> o) { | 7493 checkUnnamed996(core.List<core.String> o) { |
7494 unittest.expect(o, unittest.hasLength(2)); | 7494 unittest.expect(o, unittest.hasLength(2)); |
7495 unittest.expect(o[0], unittest.equals('foo')); | 7495 unittest.expect(o[0], unittest.equals('foo')); |
7496 unittest.expect(o[1], unittest.equals('foo')); | 7496 unittest.expect(o[1], unittest.equals('foo')); |
7497 } | 7497 } |
7498 | 7498 |
7499 buildUnnamed448() { | 7499 buildUnnamed997() { |
7500 var o = new core.List<core.String>(); | 7500 var o = new core.List<core.String>(); |
7501 o.add("foo"); | 7501 o.add("foo"); |
7502 o.add("foo"); | 7502 o.add("foo"); |
7503 return o; | 7503 return o; |
7504 } | 7504 } |
7505 | 7505 |
7506 checkUnnamed448(core.List<core.String> o) { | 7506 checkUnnamed997(core.List<core.String> o) { |
7507 unittest.expect(o, unittest.hasLength(2)); | 7507 unittest.expect(o, unittest.hasLength(2)); |
7508 unittest.expect(o[0], unittest.equals('foo')); | 7508 unittest.expect(o[0], unittest.equals('foo')); |
7509 unittest.expect(o[1], unittest.equals('foo')); | 7509 unittest.expect(o[1], unittest.equals('foo')); |
7510 } | 7510 } |
7511 | 7511 |
7512 buildUnnamed449() { | 7512 buildUnnamed998() { |
7513 var o = new core.List<core.String>(); | 7513 var o = new core.List<core.String>(); |
7514 o.add("foo"); | 7514 o.add("foo"); |
7515 o.add("foo"); | 7515 o.add("foo"); |
7516 return o; | 7516 return o; |
7517 } | 7517 } |
7518 | 7518 |
7519 checkUnnamed449(core.List<core.String> o) { | 7519 checkUnnamed998(core.List<core.String> o) { |
7520 unittest.expect(o, unittest.hasLength(2)); | 7520 unittest.expect(o, unittest.hasLength(2)); |
7521 unittest.expect(o[0], unittest.equals('foo')); | 7521 unittest.expect(o[0], unittest.equals('foo')); |
7522 unittest.expect(o[1], unittest.equals('foo')); | 7522 unittest.expect(o[1], unittest.equals('foo')); |
7523 } | 7523 } |
7524 | 7524 |
7525 buildUnnamed450() { | 7525 buildUnnamed999() { |
7526 var o = new core.List<core.String>(); | 7526 var o = new core.List<core.String>(); |
7527 o.add("foo"); | 7527 o.add("foo"); |
7528 o.add("foo"); | 7528 o.add("foo"); |
7529 return o; | 7529 return o; |
7530 } | 7530 } |
7531 | 7531 |
7532 checkUnnamed450(core.List<core.String> o) { | 7532 checkUnnamed999(core.List<core.String> o) { |
7533 unittest.expect(o, unittest.hasLength(2)); | 7533 unittest.expect(o, unittest.hasLength(2)); |
7534 unittest.expect(o[0], unittest.equals('foo')); | 7534 unittest.expect(o[0], unittest.equals('foo')); |
7535 unittest.expect(o[1], unittest.equals('foo')); | 7535 unittest.expect(o[1], unittest.equals('foo')); |
7536 } | 7536 } |
7537 | 7537 |
7538 buildUnnamed451() { | 7538 buildUnnamed1000() { |
7539 var o = new core.List<core.String>(); | 7539 var o = new core.List<core.String>(); |
7540 o.add("foo"); | 7540 o.add("foo"); |
7541 o.add("foo"); | 7541 o.add("foo"); |
7542 return o; | 7542 return o; |
7543 } | 7543 } |
7544 | 7544 |
7545 checkUnnamed451(core.List<core.String> o) { | 7545 checkUnnamed1000(core.List<core.String> o) { |
7546 unittest.expect(o, unittest.hasLength(2)); | 7546 unittest.expect(o, unittest.hasLength(2)); |
7547 unittest.expect(o[0], unittest.equals('foo')); | 7547 unittest.expect(o[0], unittest.equals('foo')); |
7548 unittest.expect(o[1], unittest.equals('foo')); | 7548 unittest.expect(o[1], unittest.equals('foo')); |
7549 } | 7549 } |
7550 | 7550 |
7551 buildUnnamed452() { | 7551 buildUnnamed1001() { |
7552 var o = new core.List<core.String>(); | 7552 var o = new core.List<core.String>(); |
7553 o.add("foo"); | 7553 o.add("foo"); |
7554 o.add("foo"); | 7554 o.add("foo"); |
7555 return o; | 7555 return o; |
7556 } | 7556 } |
7557 | 7557 |
7558 checkUnnamed452(core.List<core.String> o) { | 7558 checkUnnamed1001(core.List<core.String> o) { |
7559 unittest.expect(o, unittest.hasLength(2)); | 7559 unittest.expect(o, unittest.hasLength(2)); |
7560 unittest.expect(o[0], unittest.equals('foo')); | 7560 unittest.expect(o[0], unittest.equals('foo')); |
7561 unittest.expect(o[1], unittest.equals('foo')); | 7561 unittest.expect(o[1], unittest.equals('foo')); |
7562 } | 7562 } |
7563 | 7563 |
7564 buildUnnamed453() { | 7564 buildUnnamed1002() { |
7565 var o = new core.List<core.String>(); | 7565 var o = new core.List<core.String>(); |
7566 o.add("foo"); | 7566 o.add("foo"); |
7567 o.add("foo"); | 7567 o.add("foo"); |
7568 return o; | 7568 return o; |
7569 } | 7569 } |
7570 | 7570 |
7571 checkUnnamed453(core.List<core.String> o) { | 7571 checkUnnamed1002(core.List<core.String> o) { |
7572 unittest.expect(o, unittest.hasLength(2)); | 7572 unittest.expect(o, unittest.hasLength(2)); |
7573 unittest.expect(o[0], unittest.equals('foo')); | 7573 unittest.expect(o[0], unittest.equals('foo')); |
7574 unittest.expect(o[1], unittest.equals('foo')); | 7574 unittest.expect(o[1], unittest.equals('foo')); |
7575 } | 7575 } |
7576 | 7576 |
7577 buildUnnamed454() { | 7577 buildUnnamed1003() { |
7578 var o = new core.List<core.String>(); | 7578 var o = new core.List<core.String>(); |
7579 o.add("foo"); | 7579 o.add("foo"); |
7580 o.add("foo"); | 7580 o.add("foo"); |
7581 return o; | 7581 return o; |
7582 } | 7582 } |
7583 | 7583 |
7584 checkUnnamed454(core.List<core.String> o) { | 7584 checkUnnamed1003(core.List<core.String> o) { |
7585 unittest.expect(o, unittest.hasLength(2)); | 7585 unittest.expect(o, unittest.hasLength(2)); |
7586 unittest.expect(o[0], unittest.equals('foo')); | 7586 unittest.expect(o[0], unittest.equals('foo')); |
7587 unittest.expect(o[1], unittest.equals('foo')); | 7587 unittest.expect(o[1], unittest.equals('foo')); |
7588 } | 7588 } |
7589 | 7589 |
7590 buildUnnamed455() { | 7590 buildUnnamed1004() { |
7591 var o = new core.List<core.String>(); | 7591 var o = new core.List<core.String>(); |
7592 o.add("foo"); | 7592 o.add("foo"); |
7593 o.add("foo"); | 7593 o.add("foo"); |
7594 return o; | 7594 return o; |
7595 } | 7595 } |
7596 | 7596 |
7597 checkUnnamed455(core.List<core.String> o) { | 7597 checkUnnamed1004(core.List<core.String> o) { |
7598 unittest.expect(o, unittest.hasLength(2)); | 7598 unittest.expect(o, unittest.hasLength(2)); |
7599 unittest.expect(o[0], unittest.equals('foo')); | 7599 unittest.expect(o[0], unittest.equals('foo')); |
7600 unittest.expect(o[1], unittest.equals('foo')); | 7600 unittest.expect(o[1], unittest.equals('foo')); |
7601 } | 7601 } |
7602 | 7602 |
7603 buildUnnamed456() { | 7603 buildUnnamed1005() { |
7604 var o = new core.List<core.String>(); | 7604 var o = new core.List<core.String>(); |
7605 o.add("foo"); | 7605 o.add("foo"); |
7606 o.add("foo"); | 7606 o.add("foo"); |
7607 return o; | 7607 return o; |
7608 } | 7608 } |
7609 | 7609 |
7610 checkUnnamed456(core.List<core.String> o) { | 7610 checkUnnamed1005(core.List<core.String> o) { |
7611 unittest.expect(o, unittest.hasLength(2)); | 7611 unittest.expect(o, unittest.hasLength(2)); |
7612 unittest.expect(o[0], unittest.equals('foo')); | 7612 unittest.expect(o[0], unittest.equals('foo')); |
7613 unittest.expect(o[1], unittest.equals('foo')); | 7613 unittest.expect(o[1], unittest.equals('foo')); |
7614 } | 7614 } |
7615 | 7615 |
7616 buildUnnamed457() { | 7616 buildUnnamed1006() { |
7617 var o = new core.List<core.String>(); | 7617 var o = new core.List<core.String>(); |
7618 o.add("foo"); | 7618 o.add("foo"); |
7619 o.add("foo"); | 7619 o.add("foo"); |
7620 return o; | 7620 return o; |
7621 } | 7621 } |
7622 | 7622 |
7623 checkUnnamed457(core.List<core.String> o) { | 7623 checkUnnamed1006(core.List<core.String> o) { |
7624 unittest.expect(o, unittest.hasLength(2)); | 7624 unittest.expect(o, unittest.hasLength(2)); |
7625 unittest.expect(o[0], unittest.equals('foo')); | 7625 unittest.expect(o[0], unittest.equals('foo')); |
7626 unittest.expect(o[1], unittest.equals('foo')); | 7626 unittest.expect(o[1], unittest.equals('foo')); |
7627 } | 7627 } |
7628 | 7628 |
7629 buildUnnamed458() { | 7629 buildUnnamed1007() { |
7630 var o = new core.List<core.String>(); | 7630 var o = new core.List<core.String>(); |
7631 o.add("foo"); | 7631 o.add("foo"); |
7632 o.add("foo"); | 7632 o.add("foo"); |
7633 return o; | 7633 return o; |
7634 } | 7634 } |
7635 | 7635 |
7636 checkUnnamed458(core.List<core.String> o) { | 7636 checkUnnamed1007(core.List<core.String> o) { |
7637 unittest.expect(o, unittest.hasLength(2)); | 7637 unittest.expect(o, unittest.hasLength(2)); |
7638 unittest.expect(o[0], unittest.equals('foo')); | 7638 unittest.expect(o[0], unittest.equals('foo')); |
7639 unittest.expect(o[1], unittest.equals('foo')); | 7639 unittest.expect(o[1], unittest.equals('foo')); |
7640 } | 7640 } |
7641 | 7641 |
7642 buildUnnamed459() { | 7642 buildUnnamed1008() { |
7643 var o = new core.List<core.String>(); | 7643 var o = new core.List<core.String>(); |
7644 o.add("foo"); | 7644 o.add("foo"); |
7645 o.add("foo"); | 7645 o.add("foo"); |
7646 return o; | 7646 return o; |
7647 } | 7647 } |
7648 | 7648 |
7649 checkUnnamed459(core.List<core.String> o) { | 7649 checkUnnamed1008(core.List<core.String> o) { |
7650 unittest.expect(o, unittest.hasLength(2)); | 7650 unittest.expect(o, unittest.hasLength(2)); |
7651 unittest.expect(o[0], unittest.equals('foo')); | 7651 unittest.expect(o[0], unittest.equals('foo')); |
7652 unittest.expect(o[1], unittest.equals('foo')); | 7652 unittest.expect(o[1], unittest.equals('foo')); |
7653 } | 7653 } |
7654 | 7654 |
7655 buildUnnamed460() { | 7655 buildUnnamed1009() { |
7656 var o = new core.List<core.String>(); | 7656 var o = new core.List<core.String>(); |
7657 o.add("foo"); | 7657 o.add("foo"); |
7658 o.add("foo"); | 7658 o.add("foo"); |
7659 return o; | 7659 return o; |
7660 } | 7660 } |
7661 | 7661 |
7662 checkUnnamed460(core.List<core.String> o) { | 7662 checkUnnamed1009(core.List<core.String> o) { |
7663 unittest.expect(o, unittest.hasLength(2)); | 7663 unittest.expect(o, unittest.hasLength(2)); |
7664 unittest.expect(o[0], unittest.equals('foo')); | 7664 unittest.expect(o[0], unittest.equals('foo')); |
7665 unittest.expect(o[1], unittest.equals('foo')); | 7665 unittest.expect(o[1], unittest.equals('foo')); |
7666 } | 7666 } |
7667 | 7667 |
7668 buildUnnamed461() { | 7668 buildUnnamed1010() { |
7669 var o = new core.List<core.String>(); | 7669 var o = new core.List<core.String>(); |
7670 o.add("foo"); | 7670 o.add("foo"); |
7671 o.add("foo"); | 7671 o.add("foo"); |
7672 return o; | 7672 return o; |
7673 } | 7673 } |
7674 | 7674 |
7675 checkUnnamed461(core.List<core.String> o) { | 7675 checkUnnamed1010(core.List<core.String> o) { |
7676 unittest.expect(o, unittest.hasLength(2)); | 7676 unittest.expect(o, unittest.hasLength(2)); |
7677 unittest.expect(o[0], unittest.equals('foo')); | 7677 unittest.expect(o[0], unittest.equals('foo')); |
7678 unittest.expect(o[1], unittest.equals('foo')); | 7678 unittest.expect(o[1], unittest.equals('foo')); |
7679 } | 7679 } |
7680 | 7680 |
7681 buildUnnamed462() { | 7681 buildUnnamed1011() { |
7682 var o = new core.List<core.String>(); | 7682 var o = new core.List<core.String>(); |
7683 o.add("foo"); | 7683 o.add("foo"); |
7684 o.add("foo"); | 7684 o.add("foo"); |
7685 return o; | 7685 return o; |
7686 } | 7686 } |
7687 | 7687 |
7688 checkUnnamed462(core.List<core.String> o) { | 7688 checkUnnamed1011(core.List<core.String> o) { |
7689 unittest.expect(o, unittest.hasLength(2)); | 7689 unittest.expect(o, unittest.hasLength(2)); |
7690 unittest.expect(o[0], unittest.equals('foo')); | 7690 unittest.expect(o[0], unittest.equals('foo')); |
7691 unittest.expect(o[1], unittest.equals('foo')); | 7691 unittest.expect(o[1], unittest.equals('foo')); |
7692 } | 7692 } |
7693 | 7693 |
7694 buildUnnamed463() { | 7694 buildUnnamed1012() { |
7695 var o = new core.List<core.String>(); | 7695 var o = new core.List<core.String>(); |
7696 o.add("foo"); | 7696 o.add("foo"); |
7697 o.add("foo"); | 7697 o.add("foo"); |
7698 return o; | 7698 return o; |
7699 } | 7699 } |
7700 | 7700 |
7701 checkUnnamed463(core.List<core.String> o) { | 7701 checkUnnamed1012(core.List<core.String> o) { |
7702 unittest.expect(o, unittest.hasLength(2)); | 7702 unittest.expect(o, unittest.hasLength(2)); |
7703 unittest.expect(o[0], unittest.equals('foo')); | 7703 unittest.expect(o[0], unittest.equals('foo')); |
7704 unittest.expect(o[1], unittest.equals('foo')); | 7704 unittest.expect(o[1], unittest.equals('foo')); |
7705 } | 7705 } |
7706 | 7706 |
7707 buildUnnamed464() { | 7707 buildUnnamed1013() { |
7708 var o = new core.List<core.String>(); | 7708 var o = new core.List<core.String>(); |
7709 o.add("foo"); | 7709 o.add("foo"); |
7710 o.add("foo"); | 7710 o.add("foo"); |
7711 return o; | 7711 return o; |
7712 } | 7712 } |
7713 | 7713 |
7714 checkUnnamed464(core.List<core.String> o) { | 7714 checkUnnamed1013(core.List<core.String> o) { |
7715 unittest.expect(o, unittest.hasLength(2)); | 7715 unittest.expect(o, unittest.hasLength(2)); |
7716 unittest.expect(o[0], unittest.equals('foo')); | 7716 unittest.expect(o[0], unittest.equals('foo')); |
7717 unittest.expect(o[1], unittest.equals('foo')); | 7717 unittest.expect(o[1], unittest.equals('foo')); |
7718 } | 7718 } |
7719 | 7719 |
7720 buildUnnamed465() { | 7720 buildUnnamed1014() { |
7721 var o = new core.List<core.String>(); | 7721 var o = new core.List<core.String>(); |
7722 o.add("foo"); | 7722 o.add("foo"); |
7723 o.add("foo"); | 7723 o.add("foo"); |
7724 return o; | 7724 return o; |
7725 } | 7725 } |
7726 | 7726 |
7727 checkUnnamed465(core.List<core.String> o) { | 7727 checkUnnamed1014(core.List<core.String> o) { |
7728 unittest.expect(o, unittest.hasLength(2)); | 7728 unittest.expect(o, unittest.hasLength(2)); |
7729 unittest.expect(o[0], unittest.equals('foo')); | 7729 unittest.expect(o[0], unittest.equals('foo')); |
7730 unittest.expect(o[1], unittest.equals('foo')); | 7730 unittest.expect(o[1], unittest.equals('foo')); |
7731 } | 7731 } |
7732 | 7732 |
7733 buildUnnamed466() { | 7733 buildUnnamed1015() { |
7734 var o = new core.List<core.String>(); | 7734 var o = new core.List<core.String>(); |
7735 o.add("foo"); | 7735 o.add("foo"); |
7736 o.add("foo"); | 7736 o.add("foo"); |
7737 return o; | 7737 return o; |
7738 } | 7738 } |
7739 | 7739 |
7740 checkUnnamed466(core.List<core.String> o) { | 7740 checkUnnamed1015(core.List<core.String> o) { |
7741 unittest.expect(o, unittest.hasLength(2)); | 7741 unittest.expect(o, unittest.hasLength(2)); |
7742 unittest.expect(o[0], unittest.equals('foo')); | 7742 unittest.expect(o[0], unittest.equals('foo')); |
7743 unittest.expect(o[1], unittest.equals('foo')); | 7743 unittest.expect(o[1], unittest.equals('foo')); |
7744 } | 7744 } |
7745 | 7745 |
7746 buildUnnamed467() { | 7746 buildUnnamed1016() { |
7747 var o = new core.List<core.String>(); | 7747 var o = new core.List<core.String>(); |
7748 o.add("foo"); | 7748 o.add("foo"); |
7749 o.add("foo"); | 7749 o.add("foo"); |
7750 return o; | 7750 return o; |
7751 } | 7751 } |
7752 | 7752 |
7753 checkUnnamed467(core.List<core.String> o) { | 7753 checkUnnamed1016(core.List<core.String> o) { |
7754 unittest.expect(o, unittest.hasLength(2)); | 7754 unittest.expect(o, unittest.hasLength(2)); |
7755 unittest.expect(o[0], unittest.equals('foo')); | 7755 unittest.expect(o[0], unittest.equals('foo')); |
7756 unittest.expect(o[1], unittest.equals('foo')); | 7756 unittest.expect(o[1], unittest.equals('foo')); |
7757 } | 7757 } |
7758 | 7758 |
7759 buildUnnamed468() { | 7759 buildUnnamed1017() { |
7760 var o = new core.List<core.String>(); | 7760 var o = new core.List<core.String>(); |
7761 o.add("foo"); | 7761 o.add("foo"); |
7762 o.add("foo"); | 7762 o.add("foo"); |
7763 return o; | 7763 return o; |
7764 } | 7764 } |
7765 | 7765 |
7766 checkUnnamed468(core.List<core.String> o) { | 7766 checkUnnamed1017(core.List<core.String> o) { |
7767 unittest.expect(o, unittest.hasLength(2)); | 7767 unittest.expect(o, unittest.hasLength(2)); |
7768 unittest.expect(o[0], unittest.equals('foo')); | 7768 unittest.expect(o[0], unittest.equals('foo')); |
7769 unittest.expect(o[1], unittest.equals('foo')); | 7769 unittest.expect(o[1], unittest.equals('foo')); |
7770 } | 7770 } |
7771 | 7771 |
7772 buildUnnamed469() { | 7772 buildUnnamed1018() { |
7773 var o = new core.List<core.String>(); | 7773 var o = new core.List<core.String>(); |
7774 o.add("foo"); | 7774 o.add("foo"); |
7775 o.add("foo"); | 7775 o.add("foo"); |
7776 return o; | 7776 return o; |
7777 } | 7777 } |
7778 | 7778 |
7779 checkUnnamed469(core.List<core.String> o) { | 7779 checkUnnamed1018(core.List<core.String> o) { |
7780 unittest.expect(o, unittest.hasLength(2)); | 7780 unittest.expect(o, unittest.hasLength(2)); |
7781 unittest.expect(o[0], unittest.equals('foo')); | 7781 unittest.expect(o[0], unittest.equals('foo')); |
7782 unittest.expect(o[1], unittest.equals('foo')); | 7782 unittest.expect(o[1], unittest.equals('foo')); |
7783 } | 7783 } |
7784 | 7784 |
7785 buildUnnamed470() { | 7785 buildUnnamed1019() { |
7786 var o = new core.List<core.String>(); | 7786 var o = new core.List<core.String>(); |
7787 o.add("foo"); | 7787 o.add("foo"); |
7788 o.add("foo"); | 7788 o.add("foo"); |
7789 return o; | 7789 return o; |
7790 } | 7790 } |
7791 | 7791 |
7792 checkUnnamed470(core.List<core.String> o) { | 7792 checkUnnamed1019(core.List<core.String> o) { |
7793 unittest.expect(o, unittest.hasLength(2)); | 7793 unittest.expect(o, unittest.hasLength(2)); |
7794 unittest.expect(o[0], unittest.equals('foo')); | 7794 unittest.expect(o[0], unittest.equals('foo')); |
7795 unittest.expect(o[1], unittest.equals('foo')); | 7795 unittest.expect(o[1], unittest.equals('foo')); |
7796 } | 7796 } |
7797 | 7797 |
7798 buildUnnamed471() { | 7798 buildUnnamed1020() { |
7799 var o = new core.List<core.String>(); | 7799 var o = new core.List<core.String>(); |
7800 o.add("foo"); | 7800 o.add("foo"); |
7801 o.add("foo"); | 7801 o.add("foo"); |
7802 return o; | 7802 return o; |
7803 } | 7803 } |
7804 | 7804 |
7805 checkUnnamed471(core.List<core.String> o) { | 7805 checkUnnamed1020(core.List<core.String> o) { |
7806 unittest.expect(o, unittest.hasLength(2)); | 7806 unittest.expect(o, unittest.hasLength(2)); |
7807 unittest.expect(o[0], unittest.equals('foo')); | 7807 unittest.expect(o[0], unittest.equals('foo')); |
7808 unittest.expect(o[1], unittest.equals('foo')); | 7808 unittest.expect(o[1], unittest.equals('foo')); |
7809 } | 7809 } |
7810 | 7810 |
7811 buildUnnamed472() { | 7811 buildUnnamed1021() { |
7812 var o = new core.List<core.String>(); | 7812 var o = new core.List<core.String>(); |
7813 o.add("foo"); | 7813 o.add("foo"); |
7814 o.add("foo"); | 7814 o.add("foo"); |
7815 return o; | 7815 return o; |
7816 } | 7816 } |
7817 | 7817 |
7818 checkUnnamed472(core.List<core.String> o) { | 7818 checkUnnamed1021(core.List<core.String> o) { |
7819 unittest.expect(o, unittest.hasLength(2)); | 7819 unittest.expect(o, unittest.hasLength(2)); |
7820 unittest.expect(o[0], unittest.equals('foo')); | 7820 unittest.expect(o[0], unittest.equals('foo')); |
7821 unittest.expect(o[1], unittest.equals('foo')); | 7821 unittest.expect(o[1], unittest.equals('foo')); |
7822 } | 7822 } |
7823 | 7823 |
7824 buildUnnamed473() { | 7824 buildUnnamed1022() { |
7825 var o = new core.List<core.String>(); | 7825 var o = new core.List<core.String>(); |
7826 o.add("foo"); | 7826 o.add("foo"); |
7827 o.add("foo"); | 7827 o.add("foo"); |
7828 return o; | 7828 return o; |
7829 } | 7829 } |
7830 | 7830 |
7831 checkUnnamed473(core.List<core.String> o) { | 7831 checkUnnamed1022(core.List<core.String> o) { |
7832 unittest.expect(o, unittest.hasLength(2)); | 7832 unittest.expect(o, unittest.hasLength(2)); |
7833 unittest.expect(o[0], unittest.equals('foo')); | 7833 unittest.expect(o[0], unittest.equals('foo')); |
7834 unittest.expect(o[1], unittest.equals('foo')); | 7834 unittest.expect(o[1], unittest.equals('foo')); |
7835 } | 7835 } |
7836 | 7836 |
7837 buildUnnamed474() { | 7837 buildUnnamed1023() { |
7838 var o = new core.List<core.String>(); | 7838 var o = new core.List<core.String>(); |
7839 o.add("foo"); | 7839 o.add("foo"); |
7840 o.add("foo"); | 7840 o.add("foo"); |
7841 return o; | 7841 return o; |
7842 } | 7842 } |
7843 | 7843 |
7844 checkUnnamed474(core.List<core.String> o) { | 7844 checkUnnamed1023(core.List<core.String> o) { |
7845 unittest.expect(o, unittest.hasLength(2)); | 7845 unittest.expect(o, unittest.hasLength(2)); |
7846 unittest.expect(o[0], unittest.equals('foo')); | 7846 unittest.expect(o[0], unittest.equals('foo')); |
7847 unittest.expect(o[1], unittest.equals('foo')); | 7847 unittest.expect(o[1], unittest.equals('foo')); |
7848 } | 7848 } |
7849 | 7849 |
7850 buildUnnamed475() { | 7850 buildUnnamed1024() { |
7851 var o = new core.List<core.String>(); | 7851 var o = new core.List<core.String>(); |
7852 o.add("foo"); | 7852 o.add("foo"); |
7853 o.add("foo"); | 7853 o.add("foo"); |
7854 return o; | 7854 return o; |
7855 } | 7855 } |
7856 | 7856 |
7857 checkUnnamed475(core.List<core.String> o) { | 7857 checkUnnamed1024(core.List<core.String> o) { |
7858 unittest.expect(o, unittest.hasLength(2)); | 7858 unittest.expect(o, unittest.hasLength(2)); |
7859 unittest.expect(o[0], unittest.equals('foo')); | 7859 unittest.expect(o[0], unittest.equals('foo')); |
7860 unittest.expect(o[1], unittest.equals('foo')); | 7860 unittest.expect(o[1], unittest.equals('foo')); |
7861 } | 7861 } |
7862 | 7862 |
7863 buildUnnamed476() { | 7863 buildUnnamed1025() { |
7864 var o = new core.List<core.String>(); | 7864 var o = new core.List<core.String>(); |
7865 o.add("foo"); | 7865 o.add("foo"); |
7866 o.add("foo"); | 7866 o.add("foo"); |
7867 return o; | 7867 return o; |
7868 } | 7868 } |
7869 | 7869 |
7870 checkUnnamed476(core.List<core.String> o) { | 7870 checkUnnamed1025(core.List<core.String> o) { |
7871 unittest.expect(o, unittest.hasLength(2)); | 7871 unittest.expect(o, unittest.hasLength(2)); |
7872 unittest.expect(o[0], unittest.equals('foo')); | 7872 unittest.expect(o[0], unittest.equals('foo')); |
7873 unittest.expect(o[1], unittest.equals('foo')); | 7873 unittest.expect(o[1], unittest.equals('foo')); |
7874 } | 7874 } |
7875 | 7875 |
7876 buildUnnamed477() { | 7876 buildUnnamed1026() { |
7877 var o = new core.List<core.String>(); | 7877 var o = new core.List<core.String>(); |
7878 o.add("foo"); | 7878 o.add("foo"); |
7879 o.add("foo"); | 7879 o.add("foo"); |
7880 return o; | 7880 return o; |
7881 } | 7881 } |
7882 | 7882 |
7883 checkUnnamed477(core.List<core.String> o) { | 7883 checkUnnamed1026(core.List<core.String> o) { |
7884 unittest.expect(o, unittest.hasLength(2)); | 7884 unittest.expect(o, unittest.hasLength(2)); |
7885 unittest.expect(o[0], unittest.equals('foo')); | 7885 unittest.expect(o[0], unittest.equals('foo')); |
7886 unittest.expect(o[1], unittest.equals('foo')); | 7886 unittest.expect(o[1], unittest.equals('foo')); |
7887 } | 7887 } |
7888 | 7888 |
7889 buildUnnamed478() { | 7889 buildUnnamed1027() { |
7890 var o = new core.List<core.String>(); | 7890 var o = new core.List<core.String>(); |
7891 o.add("foo"); | 7891 o.add("foo"); |
7892 o.add("foo"); | 7892 o.add("foo"); |
7893 return o; | 7893 return o; |
7894 } | 7894 } |
7895 | 7895 |
7896 checkUnnamed478(core.List<core.String> o) { | 7896 checkUnnamed1027(core.List<core.String> o) { |
7897 unittest.expect(o, unittest.hasLength(2)); | 7897 unittest.expect(o, unittest.hasLength(2)); |
7898 unittest.expect(o[0], unittest.equals('foo')); | 7898 unittest.expect(o[0], unittest.equals('foo')); |
7899 unittest.expect(o[1], unittest.equals('foo')); | 7899 unittest.expect(o[1], unittest.equals('foo')); |
7900 } | 7900 } |
7901 | 7901 |
7902 buildUnnamed479() { | 7902 buildUnnamed1028() { |
7903 var o = new core.List<core.String>(); | 7903 var o = new core.List<core.String>(); |
7904 o.add("foo"); | 7904 o.add("foo"); |
7905 o.add("foo"); | 7905 o.add("foo"); |
7906 return o; | 7906 return o; |
7907 } | 7907 } |
7908 | 7908 |
7909 checkUnnamed479(core.List<core.String> o) { | 7909 checkUnnamed1028(core.List<core.String> o) { |
7910 unittest.expect(o, unittest.hasLength(2)); | 7910 unittest.expect(o, unittest.hasLength(2)); |
7911 unittest.expect(o[0], unittest.equals('foo')); | 7911 unittest.expect(o[0], unittest.equals('foo')); |
7912 unittest.expect(o[1], unittest.equals('foo')); | 7912 unittest.expect(o[1], unittest.equals('foo')); |
7913 } | 7913 } |
7914 | 7914 |
7915 buildUnnamed480() { | 7915 buildUnnamed1029() { |
7916 var o = new core.List<core.String>(); | 7916 var o = new core.List<core.String>(); |
7917 o.add("foo"); | 7917 o.add("foo"); |
7918 o.add("foo"); | 7918 o.add("foo"); |
7919 return o; | 7919 return o; |
7920 } | 7920 } |
7921 | 7921 |
7922 checkUnnamed480(core.List<core.String> o) { | 7922 checkUnnamed1029(core.List<core.String> o) { |
7923 unittest.expect(o, unittest.hasLength(2)); | 7923 unittest.expect(o, unittest.hasLength(2)); |
7924 unittest.expect(o[0], unittest.equals('foo')); | 7924 unittest.expect(o[0], unittest.equals('foo')); |
7925 unittest.expect(o[1], unittest.equals('foo')); | 7925 unittest.expect(o[1], unittest.equals('foo')); |
7926 } | 7926 } |
7927 | 7927 |
7928 buildUnnamed481() { | 7928 buildUnnamed1030() { |
7929 var o = new core.List<core.String>(); | 7929 var o = new core.List<core.String>(); |
7930 o.add("foo"); | 7930 o.add("foo"); |
7931 o.add("foo"); | 7931 o.add("foo"); |
7932 return o; | 7932 return o; |
7933 } | 7933 } |
7934 | 7934 |
7935 checkUnnamed481(core.List<core.String> o) { | 7935 checkUnnamed1030(core.List<core.String> o) { |
7936 unittest.expect(o, unittest.hasLength(2)); | 7936 unittest.expect(o, unittest.hasLength(2)); |
7937 unittest.expect(o[0], unittest.equals('foo')); | 7937 unittest.expect(o[0], unittest.equals('foo')); |
7938 unittest.expect(o[1], unittest.equals('foo')); | 7938 unittest.expect(o[1], unittest.equals('foo')); |
7939 } | 7939 } |
7940 | 7940 |
7941 buildUnnamed482() { | 7941 buildUnnamed1031() { |
7942 var o = new core.List<core.String>(); | 7942 var o = new core.List<core.String>(); |
7943 o.add("foo"); | 7943 o.add("foo"); |
7944 o.add("foo"); | 7944 o.add("foo"); |
7945 return o; | 7945 return o; |
7946 } | 7946 } |
7947 | 7947 |
7948 checkUnnamed482(core.List<core.String> o) { | 7948 checkUnnamed1031(core.List<core.String> o) { |
7949 unittest.expect(o, unittest.hasLength(2)); | 7949 unittest.expect(o, unittest.hasLength(2)); |
7950 unittest.expect(o[0], unittest.equals('foo')); | 7950 unittest.expect(o[0], unittest.equals('foo')); |
7951 unittest.expect(o[1], unittest.equals('foo')); | 7951 unittest.expect(o[1], unittest.equals('foo')); |
7952 } | 7952 } |
7953 | 7953 |
7954 buildUnnamed483() { | 7954 buildUnnamed1032() { |
7955 var o = new core.List<core.String>(); | 7955 var o = new core.List<core.String>(); |
7956 o.add("foo"); | 7956 o.add("foo"); |
7957 o.add("foo"); | 7957 o.add("foo"); |
7958 return o; | 7958 return o; |
7959 } | 7959 } |
7960 | 7960 |
7961 checkUnnamed483(core.List<core.String> o) { | 7961 checkUnnamed1032(core.List<core.String> o) { |
7962 unittest.expect(o, unittest.hasLength(2)); | 7962 unittest.expect(o, unittest.hasLength(2)); |
7963 unittest.expect(o[0], unittest.equals('foo')); | 7963 unittest.expect(o[0], unittest.equals('foo')); |
7964 unittest.expect(o[1], unittest.equals('foo')); | 7964 unittest.expect(o[1], unittest.equals('foo')); |
7965 } | 7965 } |
7966 | 7966 |
7967 buildUnnamed484() { | 7967 buildUnnamed1033() { |
7968 var o = new core.List<core.String>(); | 7968 var o = new core.List<core.String>(); |
7969 o.add("foo"); | 7969 o.add("foo"); |
7970 o.add("foo"); | 7970 o.add("foo"); |
7971 return o; | 7971 return o; |
7972 } | 7972 } |
7973 | 7973 |
7974 checkUnnamed484(core.List<core.String> o) { | 7974 checkUnnamed1033(core.List<core.String> o) { |
7975 unittest.expect(o, unittest.hasLength(2)); | 7975 unittest.expect(o, unittest.hasLength(2)); |
7976 unittest.expect(o[0], unittest.equals('foo')); | 7976 unittest.expect(o[0], unittest.equals('foo')); |
7977 unittest.expect(o[1], unittest.equals('foo')); | 7977 unittest.expect(o[1], unittest.equals('foo')); |
7978 } | 7978 } |
7979 | 7979 |
7980 buildUnnamed485() { | 7980 buildUnnamed1034() { |
7981 var o = new core.List<core.String>(); | 7981 var o = new core.List<core.String>(); |
7982 o.add("foo"); | 7982 o.add("foo"); |
7983 o.add("foo"); | 7983 o.add("foo"); |
7984 return o; | 7984 return o; |
7985 } | 7985 } |
7986 | 7986 |
7987 checkUnnamed485(core.List<core.String> o) { | 7987 checkUnnamed1034(core.List<core.String> o) { |
7988 unittest.expect(o, unittest.hasLength(2)); | 7988 unittest.expect(o, unittest.hasLength(2)); |
7989 unittest.expect(o[0], unittest.equals('foo')); | 7989 unittest.expect(o[0], unittest.equals('foo')); |
7990 unittest.expect(o[1], unittest.equals('foo')); | 7990 unittest.expect(o[1], unittest.equals('foo')); |
7991 } | 7991 } |
7992 | 7992 |
7993 buildUnnamed486() { | 7993 buildUnnamed1035() { |
7994 var o = new core.List<core.String>(); | 7994 var o = new core.List<core.String>(); |
7995 o.add("foo"); | 7995 o.add("foo"); |
7996 o.add("foo"); | 7996 o.add("foo"); |
7997 return o; | 7997 return o; |
7998 } | 7998 } |
7999 | 7999 |
8000 checkUnnamed486(core.List<core.String> o) { | 8000 checkUnnamed1035(core.List<core.String> o) { |
8001 unittest.expect(o, unittest.hasLength(2)); | 8001 unittest.expect(o, unittest.hasLength(2)); |
8002 unittest.expect(o[0], unittest.equals('foo')); | 8002 unittest.expect(o[0], unittest.equals('foo')); |
8003 unittest.expect(o[1], unittest.equals('foo')); | 8003 unittest.expect(o[1], unittest.equals('foo')); |
8004 } | 8004 } |
8005 | 8005 |
8006 buildUnnamed487() { | 8006 buildUnnamed1036() { |
8007 var o = new core.List<core.String>(); | 8007 var o = new core.List<core.String>(); |
8008 o.add("foo"); | 8008 o.add("foo"); |
8009 o.add("foo"); | 8009 o.add("foo"); |
8010 return o; | 8010 return o; |
8011 } | 8011 } |
8012 | 8012 |
8013 checkUnnamed487(core.List<core.String> o) { | 8013 checkUnnamed1036(core.List<core.String> o) { |
8014 unittest.expect(o, unittest.hasLength(2)); | 8014 unittest.expect(o, unittest.hasLength(2)); |
8015 unittest.expect(o[0], unittest.equals('foo')); | 8015 unittest.expect(o[0], unittest.equals('foo')); |
8016 unittest.expect(o[1], unittest.equals('foo')); | 8016 unittest.expect(o[1], unittest.equals('foo')); |
8017 } | 8017 } |
8018 | 8018 |
8019 buildUnnamed488() { | 8019 buildUnnamed1037() { |
8020 var o = new core.List<core.String>(); | 8020 var o = new core.List<core.String>(); |
8021 o.add("foo"); | 8021 o.add("foo"); |
8022 o.add("foo"); | 8022 o.add("foo"); |
8023 return o; | 8023 return o; |
8024 } | 8024 } |
8025 | 8025 |
8026 checkUnnamed488(core.List<core.String> o) { | 8026 checkUnnamed1037(core.List<core.String> o) { |
8027 unittest.expect(o, unittest.hasLength(2)); | 8027 unittest.expect(o, unittest.hasLength(2)); |
8028 unittest.expect(o[0], unittest.equals('foo')); | 8028 unittest.expect(o[0], unittest.equals('foo')); |
8029 unittest.expect(o[1], unittest.equals('foo')); | 8029 unittest.expect(o[1], unittest.equals('foo')); |
8030 } | 8030 } |
8031 | 8031 |
8032 buildUnnamed489() { | 8032 buildUnnamed1038() { |
8033 var o = new core.List<core.String>(); | 8033 var o = new core.List<core.String>(); |
8034 o.add("foo"); | 8034 o.add("foo"); |
8035 o.add("foo"); | 8035 o.add("foo"); |
8036 return o; | 8036 return o; |
8037 } | 8037 } |
8038 | 8038 |
8039 checkUnnamed489(core.List<core.String> o) { | 8039 checkUnnamed1038(core.List<core.String> o) { |
8040 unittest.expect(o, unittest.hasLength(2)); | 8040 unittest.expect(o, unittest.hasLength(2)); |
8041 unittest.expect(o[0], unittest.equals('foo')); | 8041 unittest.expect(o[0], unittest.equals('foo')); |
8042 unittest.expect(o[1], unittest.equals('foo')); | 8042 unittest.expect(o[1], unittest.equals('foo')); |
8043 } | 8043 } |
8044 | 8044 |
8045 buildUnnamed490() { | 8045 buildUnnamed1039() { |
8046 var o = new core.List<core.String>(); | 8046 var o = new core.List<core.String>(); |
8047 o.add("foo"); | 8047 o.add("foo"); |
8048 o.add("foo"); | 8048 o.add("foo"); |
8049 return o; | 8049 return o; |
8050 } | 8050 } |
8051 | 8051 |
8052 checkUnnamed490(core.List<core.String> o) { | 8052 checkUnnamed1039(core.List<core.String> o) { |
8053 unittest.expect(o, unittest.hasLength(2)); | 8053 unittest.expect(o, unittest.hasLength(2)); |
8054 unittest.expect(o[0], unittest.equals('foo')); | 8054 unittest.expect(o[0], unittest.equals('foo')); |
8055 unittest.expect(o[1], unittest.equals('foo')); | 8055 unittest.expect(o[1], unittest.equals('foo')); |
8056 } | 8056 } |
8057 | 8057 |
8058 buildUnnamed491() { | 8058 buildUnnamed1040() { |
8059 var o = new core.List<core.String>(); | 8059 var o = new core.List<core.String>(); |
8060 o.add("foo"); | 8060 o.add("foo"); |
8061 o.add("foo"); | 8061 o.add("foo"); |
8062 return o; | 8062 return o; |
8063 } | 8063 } |
8064 | 8064 |
8065 checkUnnamed491(core.List<core.String> o) { | 8065 checkUnnamed1040(core.List<core.String> o) { |
8066 unittest.expect(o, unittest.hasLength(2)); | 8066 unittest.expect(o, unittest.hasLength(2)); |
8067 unittest.expect(o[0], unittest.equals('foo')); | 8067 unittest.expect(o[0], unittest.equals('foo')); |
8068 unittest.expect(o[1], unittest.equals('foo')); | 8068 unittest.expect(o[1], unittest.equals('foo')); |
8069 } | 8069 } |
8070 | 8070 |
8071 buildUnnamed492() { | 8071 buildUnnamed1041() { |
8072 var o = new core.List<core.String>(); | 8072 var o = new core.List<core.String>(); |
8073 o.add("foo"); | 8073 o.add("foo"); |
8074 o.add("foo"); | 8074 o.add("foo"); |
8075 return o; | 8075 return o; |
8076 } | 8076 } |
8077 | 8077 |
8078 checkUnnamed492(core.List<core.String> o) { | 8078 checkUnnamed1041(core.List<core.String> o) { |
8079 unittest.expect(o, unittest.hasLength(2)); | 8079 unittest.expect(o, unittest.hasLength(2)); |
8080 unittest.expect(o[0], unittest.equals('foo')); | 8080 unittest.expect(o[0], unittest.equals('foo')); |
8081 unittest.expect(o[1], unittest.equals('foo')); | 8081 unittest.expect(o[1], unittest.equals('foo')); |
8082 } | 8082 } |
8083 | 8083 |
8084 | 8084 |
8085 main() { | 8085 main() { |
8086 unittest.group("obj-schema-Account", () { | 8086 unittest.group("obj-schema-Account", () { |
8087 unittest.test("to-json--from-json", () { | 8087 unittest.test("to-json--from-json", () { |
8088 var o = buildAccount(); | 8088 var o = buildAccount(); |
8089 var od = new api.Account.fromJson(o.toJson()); | 8089 var od = new api.Account.fromJson(o.toJson()); |
8090 checkAccount(od); | 8090 checkAccount(od); |
8091 }); | 8091 }); |
(...skipping 1894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9986 checkAccountUserProfile(response); | 9986 checkAccountUserProfile(response); |
9987 }))); | 9987 }))); |
9988 }); | 9988 }); |
9989 | 9989 |
9990 unittest.test("method--list", () { | 9990 unittest.test("method--list", () { |
9991 | 9991 |
9992 var mock = new HttpServerMock(); | 9992 var mock = new HttpServerMock(); |
9993 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; | 9993 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; |
9994 var arg_profileId = "foo"; | 9994 var arg_profileId = "foo"; |
9995 var arg_active = true; | 9995 var arg_active = true; |
9996 var arg_ids = buildUnnamed417(); | 9996 var arg_ids = buildUnnamed966(); |
9997 var arg_maxResults = 42; | 9997 var arg_maxResults = 42; |
9998 var arg_pageToken = "foo"; | 9998 var arg_pageToken = "foo"; |
9999 var arg_searchString = "foo"; | 9999 var arg_searchString = "foo"; |
10000 var arg_sortField = "foo"; | 10000 var arg_sortField = "foo"; |
10001 var arg_sortOrder = "foo"; | 10001 var arg_sortOrder = "foo"; |
10002 var arg_subaccountId = "foo"; | 10002 var arg_subaccountId = "foo"; |
10003 var arg_userRoleId = "foo"; | 10003 var arg_userRoleId = "foo"; |
10004 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 10004 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
10005 var path = (req.url).path; | 10005 var path = (req.url).path; |
10006 var pathOffset = 0; | 10006 var pathOffset = 0; |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10234 checkAccount(response); | 10234 checkAccount(response); |
10235 }))); | 10235 }))); |
10236 }); | 10236 }); |
10237 | 10237 |
10238 unittest.test("method--list", () { | 10238 unittest.test("method--list", () { |
10239 | 10239 |
10240 var mock = new HttpServerMock(); | 10240 var mock = new HttpServerMock(); |
10241 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; | 10241 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; |
10242 var arg_profileId = "foo"; | 10242 var arg_profileId = "foo"; |
10243 var arg_active = true; | 10243 var arg_active = true; |
10244 var arg_ids = buildUnnamed418(); | 10244 var arg_ids = buildUnnamed967(); |
10245 var arg_maxResults = 42; | 10245 var arg_maxResults = 42; |
10246 var arg_pageToken = "foo"; | 10246 var arg_pageToken = "foo"; |
10247 var arg_searchString = "foo"; | 10247 var arg_searchString = "foo"; |
10248 var arg_sortField = "foo"; | 10248 var arg_sortField = "foo"; |
10249 var arg_sortOrder = "foo"; | 10249 var arg_sortOrder = "foo"; |
10250 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 10250 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
10251 var path = (req.url).path; | 10251 var path = (req.url).path; |
10252 var pathOffset = 0; | 10252 var pathOffset = 0; |
10253 var index; | 10253 var index; |
10254 var subPart; | 10254 var subPart; |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10537 }); | 10537 }); |
10538 | 10538 |
10539 unittest.test("method--list", () { | 10539 unittest.test("method--list", () { |
10540 | 10540 |
10541 var mock = new HttpServerMock(); | 10541 var mock = new HttpServerMock(); |
10542 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; | 10542 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; |
10543 var arg_profileId = "foo"; | 10543 var arg_profileId = "foo"; |
10544 var arg_active = true; | 10544 var arg_active = true; |
10545 var arg_advertiserId = "foo"; | 10545 var arg_advertiserId = "foo"; |
10546 var arg_archived = true; | 10546 var arg_archived = true; |
10547 var arg_audienceSegmentIds = buildUnnamed419(); | 10547 var arg_audienceSegmentIds = buildUnnamed968(); |
10548 var arg_campaignIds = buildUnnamed420(); | 10548 var arg_campaignIds = buildUnnamed969(); |
10549 var arg_compatibility = "foo"; | 10549 var arg_compatibility = "foo"; |
10550 var arg_creativeIds = buildUnnamed421(); | 10550 var arg_creativeIds = buildUnnamed970(); |
10551 var arg_creativeOptimizationConfigurationIds = buildUnnamed422(); | 10551 var arg_creativeOptimizationConfigurationIds = buildUnnamed971(); |
10552 var arg_creativeType = "foo"; | 10552 var arg_creativeType = "foo"; |
10553 var arg_dynamicClickTracker = true; | 10553 var arg_dynamicClickTracker = true; |
10554 var arg_ids = buildUnnamed423(); | 10554 var arg_ids = buildUnnamed972(); |
10555 var arg_landingPageIds = buildUnnamed424(); | 10555 var arg_landingPageIds = buildUnnamed973(); |
10556 var arg_maxResults = 42; | 10556 var arg_maxResults = 42; |
10557 var arg_overriddenEventTagId = "foo"; | 10557 var arg_overriddenEventTagId = "foo"; |
10558 var arg_pageToken = "foo"; | 10558 var arg_pageToken = "foo"; |
10559 var arg_placementIds = buildUnnamed425(); | 10559 var arg_placementIds = buildUnnamed974(); |
10560 var arg_remarketingListIds = buildUnnamed426(); | 10560 var arg_remarketingListIds = buildUnnamed975(); |
10561 var arg_searchString = "foo"; | 10561 var arg_searchString = "foo"; |
10562 var arg_sizeIds = buildUnnamed427(); | 10562 var arg_sizeIds = buildUnnamed976(); |
10563 var arg_sortField = "foo"; | 10563 var arg_sortField = "foo"; |
10564 var arg_sortOrder = "foo"; | 10564 var arg_sortOrder = "foo"; |
10565 var arg_sslCompliant = true; | 10565 var arg_sslCompliant = true; |
10566 var arg_sslRequired = true; | 10566 var arg_sslRequired = true; |
10567 var arg_type = buildUnnamed428(); | 10567 var arg_type = buildUnnamed977(); |
10568 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 10568 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
10569 var path = (req.url).path; | 10569 var path = (req.url).path; |
10570 var pathOffset = 0; | 10570 var pathOffset = 0; |
10571 var index; | 10571 var index; |
10572 var subPart; | 10572 var subPart; |
10573 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 10573 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
10574 pathOffset += 1; | 10574 pathOffset += 1; |
10575 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 10575 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
10576 pathOffset += 18; | 10576 pathOffset += 18; |
10577 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 10577 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10924 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { | 10924 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { |
10925 checkAdvertiserGroup(response); | 10925 checkAdvertiserGroup(response); |
10926 }))); | 10926 }))); |
10927 }); | 10927 }); |
10928 | 10928 |
10929 unittest.test("method--list", () { | 10929 unittest.test("method--list", () { |
10930 | 10930 |
10931 var mock = new HttpServerMock(); | 10931 var mock = new HttpServerMock(); |
10932 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; | 10932 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; |
10933 var arg_profileId = "foo"; | 10933 var arg_profileId = "foo"; |
10934 var arg_ids = buildUnnamed429(); | 10934 var arg_ids = buildUnnamed978(); |
10935 var arg_maxResults = 42; | 10935 var arg_maxResults = 42; |
10936 var arg_pageToken = "foo"; | 10936 var arg_pageToken = "foo"; |
10937 var arg_searchString = "foo"; | 10937 var arg_searchString = "foo"; |
10938 var arg_sortField = "foo"; | 10938 var arg_sortField = "foo"; |
10939 var arg_sortOrder = "foo"; | 10939 var arg_sortOrder = "foo"; |
10940 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 10940 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
10941 var path = (req.url).path; | 10941 var path = (req.url).path; |
10942 var pathOffset = 0; | 10942 var pathOffset = 0; |
10943 var index; | 10943 var index; |
10944 var subPart; | 10944 var subPart; |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11223 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { | 11223 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { |
11224 checkAdvertiser(response); | 11224 checkAdvertiser(response); |
11225 }))); | 11225 }))); |
11226 }); | 11226 }); |
11227 | 11227 |
11228 unittest.test("method--list", () { | 11228 unittest.test("method--list", () { |
11229 | 11229 |
11230 var mock = new HttpServerMock(); | 11230 var mock = new HttpServerMock(); |
11231 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; | 11231 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; |
11232 var arg_profileId = "foo"; | 11232 var arg_profileId = "foo"; |
11233 var arg_advertiserGroupIds = buildUnnamed430(); | 11233 var arg_advertiserGroupIds = buildUnnamed979(); |
11234 var arg_floodlightConfigurationIds = buildUnnamed431(); | 11234 var arg_floodlightConfigurationIds = buildUnnamed980(); |
11235 var arg_ids = buildUnnamed432(); | 11235 var arg_ids = buildUnnamed981(); |
11236 var arg_includeAdvertisersWithoutGroupsOnly = true; | 11236 var arg_includeAdvertisersWithoutGroupsOnly = true; |
11237 var arg_maxResults = 42; | 11237 var arg_maxResults = 42; |
11238 var arg_onlyParent = true; | 11238 var arg_onlyParent = true; |
11239 var arg_pageToken = "foo"; | 11239 var arg_pageToken = "foo"; |
11240 var arg_searchString = "foo"; | 11240 var arg_searchString = "foo"; |
11241 var arg_sortField = "foo"; | 11241 var arg_sortField = "foo"; |
11242 var arg_sortOrder = "foo"; | 11242 var arg_sortOrder = "foo"; |
11243 var arg_status = "foo"; | 11243 var arg_status = "foo"; |
11244 var arg_subaccountId = "foo"; | 11244 var arg_subaccountId = "foo"; |
11245 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11245 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11731 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { | 11731 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { |
11732 checkCampaign(response); | 11732 checkCampaign(response); |
11733 }))); | 11733 }))); |
11734 }); | 11734 }); |
11735 | 11735 |
11736 unittest.test("method--list", () { | 11736 unittest.test("method--list", () { |
11737 | 11737 |
11738 var mock = new HttpServerMock(); | 11738 var mock = new HttpServerMock(); |
11739 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; | 11739 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; |
11740 var arg_profileId = "foo"; | 11740 var arg_profileId = "foo"; |
11741 var arg_advertiserGroupIds = buildUnnamed433(); | 11741 var arg_advertiserGroupIds = buildUnnamed982(); |
11742 var arg_advertiserIds = buildUnnamed434(); | 11742 var arg_advertiserIds = buildUnnamed983(); |
11743 var arg_archived = true; | 11743 var arg_archived = true; |
11744 var arg_atLeastOneOptimizationActivity = true; | 11744 var arg_atLeastOneOptimizationActivity = true; |
11745 var arg_excludedIds = buildUnnamed435(); | 11745 var arg_excludedIds = buildUnnamed984(); |
11746 var arg_ids = buildUnnamed436(); | 11746 var arg_ids = buildUnnamed985(); |
11747 var arg_maxResults = 42; | 11747 var arg_maxResults = 42; |
11748 var arg_overriddenEventTagId = "foo"; | 11748 var arg_overriddenEventTagId = "foo"; |
11749 var arg_pageToken = "foo"; | 11749 var arg_pageToken = "foo"; |
11750 var arg_searchString = "foo"; | 11750 var arg_searchString = "foo"; |
11751 var arg_sortField = "foo"; | 11751 var arg_sortField = "foo"; |
11752 var arg_sortOrder = "foo"; | 11752 var arg_sortOrder = "foo"; |
11753 var arg_subaccountId = "foo"; | 11753 var arg_subaccountId = "foo"; |
11754 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11754 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
11755 var path = (req.url).path; | 11755 var path = (req.url).path; |
11756 var pathOffset = 0; | 11756 var pathOffset = 0; |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11988 checkChangeLog(response); | 11988 checkChangeLog(response); |
11989 }))); | 11989 }))); |
11990 }); | 11990 }); |
11991 | 11991 |
11992 unittest.test("method--list", () { | 11992 unittest.test("method--list", () { |
11993 | 11993 |
11994 var mock = new HttpServerMock(); | 11994 var mock = new HttpServerMock(); |
11995 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; | 11995 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; |
11996 var arg_profileId = "foo"; | 11996 var arg_profileId = "foo"; |
11997 var arg_action = "foo"; | 11997 var arg_action = "foo"; |
11998 var arg_ids = buildUnnamed437(); | 11998 var arg_ids = buildUnnamed986(); |
11999 var arg_maxChangeTime = "foo"; | 11999 var arg_maxChangeTime = "foo"; |
12000 var arg_maxResults = 42; | 12000 var arg_maxResults = 42; |
12001 var arg_minChangeTime = "foo"; | 12001 var arg_minChangeTime = "foo"; |
12002 var arg_objectIds = buildUnnamed438(); | 12002 var arg_objectIds = buildUnnamed987(); |
12003 var arg_objectType = "foo"; | 12003 var arg_objectType = "foo"; |
12004 var arg_pageToken = "foo"; | 12004 var arg_pageToken = "foo"; |
12005 var arg_searchString = "foo"; | 12005 var arg_searchString = "foo"; |
12006 var arg_userProfileIds = buildUnnamed439(); | 12006 var arg_userProfileIds = buildUnnamed988(); |
12007 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12007 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
12008 var path = (req.url).path; | 12008 var path = (req.url).path; |
12009 var pathOffset = 0; | 12009 var pathOffset = 0; |
12010 var index; | 12010 var index; |
12011 var subPart; | 12011 var subPart; |
12012 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 12012 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
12013 pathOffset += 1; | 12013 pathOffset += 1; |
12014 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 12014 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
12015 pathOffset += 18; | 12015 pathOffset += 18; |
12016 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 12016 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
12064 | 12064 |
12065 }); | 12065 }); |
12066 | 12066 |
12067 | 12067 |
12068 unittest.group("resource-CitiesResourceApi", () { | 12068 unittest.group("resource-CitiesResourceApi", () { |
12069 unittest.test("method--list", () { | 12069 unittest.test("method--list", () { |
12070 | 12070 |
12071 var mock = new HttpServerMock(); | 12071 var mock = new HttpServerMock(); |
12072 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; | 12072 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; |
12073 var arg_profileId = "foo"; | 12073 var arg_profileId = "foo"; |
12074 var arg_countryDartIds = buildUnnamed440(); | 12074 var arg_countryDartIds = buildUnnamed989(); |
12075 var arg_dartIds = buildUnnamed441(); | 12075 var arg_dartIds = buildUnnamed990(); |
12076 var arg_namePrefix = "foo"; | 12076 var arg_namePrefix = "foo"; |
12077 var arg_regionDartIds = buildUnnamed442(); | 12077 var arg_regionDartIds = buildUnnamed991(); |
12078 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12078 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
12079 var path = (req.url).path; | 12079 var path = (req.url).path; |
12080 var pathOffset = 0; | 12080 var pathOffset = 0; |
12081 var index; | 12081 var index; |
12082 var subPart; | 12082 var subPart; |
12083 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 12083 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
12084 pathOffset += 1; | 12084 pathOffset += 1; |
12085 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 12085 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
12086 pathOffset += 18; | 12086 pathOffset += 18; |
12087 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 12087 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
12355 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { | 12355 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { |
12356 checkContentCategory(response); | 12356 checkContentCategory(response); |
12357 }))); | 12357 }))); |
12358 }); | 12358 }); |
12359 | 12359 |
12360 unittest.test("method--list", () { | 12360 unittest.test("method--list", () { |
12361 | 12361 |
12362 var mock = new HttpServerMock(); | 12362 var mock = new HttpServerMock(); |
12363 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; | 12363 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; |
12364 var arg_profileId = "foo"; | 12364 var arg_profileId = "foo"; |
12365 var arg_ids = buildUnnamed443(); | 12365 var arg_ids = buildUnnamed992(); |
12366 var arg_maxResults = 42; | 12366 var arg_maxResults = 42; |
12367 var arg_pageToken = "foo"; | 12367 var arg_pageToken = "foo"; |
12368 var arg_searchString = "foo"; | 12368 var arg_searchString = "foo"; |
12369 var arg_sortField = "foo"; | 12369 var arg_sortField = "foo"; |
12370 var arg_sortOrder = "foo"; | 12370 var arg_sortOrder = "foo"; |
12371 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12371 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
12372 var path = (req.url).path; | 12372 var path = (req.url).path; |
12373 var pathOffset = 0; | 12373 var pathOffset = 0; |
12374 var index; | 12374 var index; |
12375 var subPart; | 12375 var subPart; |
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
12919 checkCreativeFieldValue(response); | 12919 checkCreativeFieldValue(response); |
12920 }))); | 12920 }))); |
12921 }); | 12921 }); |
12922 | 12922 |
12923 unittest.test("method--list", () { | 12923 unittest.test("method--list", () { |
12924 | 12924 |
12925 var mock = new HttpServerMock(); | 12925 var mock = new HttpServerMock(); |
12926 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; | 12926 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; |
12927 var arg_profileId = "foo"; | 12927 var arg_profileId = "foo"; |
12928 var arg_creativeFieldId = "foo"; | 12928 var arg_creativeFieldId = "foo"; |
12929 var arg_ids = buildUnnamed444(); | 12929 var arg_ids = buildUnnamed993(); |
12930 var arg_maxResults = 42; | 12930 var arg_maxResults = 42; |
12931 var arg_pageToken = "foo"; | 12931 var arg_pageToken = "foo"; |
12932 var arg_searchString = "foo"; | 12932 var arg_searchString = "foo"; |
12933 var arg_sortField = "foo"; | 12933 var arg_sortField = "foo"; |
12934 var arg_sortOrder = "foo"; | 12934 var arg_sortOrder = "foo"; |
12935 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12935 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
12936 var path = (req.url).path; | 12936 var path = (req.url).path; |
12937 var pathOffset = 0; | 12937 var pathOffset = 0; |
12938 var index; | 12938 var index; |
12939 var subPart; | 12939 var subPart; |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13296 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { | 13296 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { |
13297 checkCreativeField(response); | 13297 checkCreativeField(response); |
13298 }))); | 13298 }))); |
13299 }); | 13299 }); |
13300 | 13300 |
13301 unittest.test("method--list", () { | 13301 unittest.test("method--list", () { |
13302 | 13302 |
13303 var mock = new HttpServerMock(); | 13303 var mock = new HttpServerMock(); |
13304 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; | 13304 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; |
13305 var arg_profileId = "foo"; | 13305 var arg_profileId = "foo"; |
13306 var arg_advertiserIds = buildUnnamed445(); | 13306 var arg_advertiserIds = buildUnnamed994(); |
13307 var arg_ids = buildUnnamed446(); | 13307 var arg_ids = buildUnnamed995(); |
13308 var arg_maxResults = 42; | 13308 var arg_maxResults = 42; |
13309 var arg_pageToken = "foo"; | 13309 var arg_pageToken = "foo"; |
13310 var arg_searchString = "foo"; | 13310 var arg_searchString = "foo"; |
13311 var arg_sortField = "foo"; | 13311 var arg_sortField = "foo"; |
13312 var arg_sortOrder = "foo"; | 13312 var arg_sortOrder = "foo"; |
13313 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13313 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
13314 var path = (req.url).path; | 13314 var path = (req.url).path; |
13315 var pathOffset = 0; | 13315 var pathOffset = 0; |
13316 var index; | 13316 var index; |
13317 var subPart; | 13317 var subPart; |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13597 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { | 13597 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { |
13598 checkCreativeGroup(response); | 13598 checkCreativeGroup(response); |
13599 }))); | 13599 }))); |
13600 }); | 13600 }); |
13601 | 13601 |
13602 unittest.test("method--list", () { | 13602 unittest.test("method--list", () { |
13603 | 13603 |
13604 var mock = new HttpServerMock(); | 13604 var mock = new HttpServerMock(); |
13605 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; | 13605 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; |
13606 var arg_profileId = "foo"; | 13606 var arg_profileId = "foo"; |
13607 var arg_advertiserIds = buildUnnamed447(); | 13607 var arg_advertiserIds = buildUnnamed996(); |
13608 var arg_groupNumber = 42; | 13608 var arg_groupNumber = 42; |
13609 var arg_ids = buildUnnamed448(); | 13609 var arg_ids = buildUnnamed997(); |
13610 var arg_maxResults = 42; | 13610 var arg_maxResults = 42; |
13611 var arg_pageToken = "foo"; | 13611 var arg_pageToken = "foo"; |
13612 var arg_searchString = "foo"; | 13612 var arg_searchString = "foo"; |
13613 var arg_sortField = "foo"; | 13613 var arg_sortField = "foo"; |
13614 var arg_sortOrder = "foo"; | 13614 var arg_sortOrder = "foo"; |
13615 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13615 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
13616 var path = (req.url).path; | 13616 var path = (req.url).path; |
13617 var pathOffset = 0; | 13617 var pathOffset = 0; |
13618 var index; | 13618 var index; |
13619 var subPart; | 13619 var subPart; |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
13904 | 13904 |
13905 unittest.test("method--list", () { | 13905 unittest.test("method--list", () { |
13906 | 13906 |
13907 var mock = new HttpServerMock(); | 13907 var mock = new HttpServerMock(); |
13908 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; | 13908 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; |
13909 var arg_profileId = "foo"; | 13909 var arg_profileId = "foo"; |
13910 var arg_active = true; | 13910 var arg_active = true; |
13911 var arg_advertiserId = "foo"; | 13911 var arg_advertiserId = "foo"; |
13912 var arg_archived = true; | 13912 var arg_archived = true; |
13913 var arg_campaignId = "foo"; | 13913 var arg_campaignId = "foo"; |
13914 var arg_companionCreativeIds = buildUnnamed449(); | 13914 var arg_companionCreativeIds = buildUnnamed998(); |
13915 var arg_creativeFieldIds = buildUnnamed450(); | 13915 var arg_creativeFieldIds = buildUnnamed999(); |
13916 var arg_ids = buildUnnamed451(); | 13916 var arg_ids = buildUnnamed1000(); |
13917 var arg_maxResults = 42; | 13917 var arg_maxResults = 42; |
13918 var arg_pageToken = "foo"; | 13918 var arg_pageToken = "foo"; |
13919 var arg_renderingIds = buildUnnamed452(); | 13919 var arg_renderingIds = buildUnnamed1001(); |
13920 var arg_searchString = "foo"; | 13920 var arg_searchString = "foo"; |
13921 var arg_sizeIds = buildUnnamed453(); | 13921 var arg_sizeIds = buildUnnamed1002(); |
13922 var arg_sortField = "foo"; | 13922 var arg_sortField = "foo"; |
13923 var arg_sortOrder = "foo"; | 13923 var arg_sortOrder = "foo"; |
13924 var arg_studioCreativeId = "foo"; | 13924 var arg_studioCreativeId = "foo"; |
13925 var arg_types = buildUnnamed454(); | 13925 var arg_types = buildUnnamed1003(); |
13926 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13926 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
13927 var path = (req.url).path; | 13927 var path = (req.url).path; |
13928 var pathOffset = 0; | 13928 var pathOffset = 0; |
13929 var index; | 13929 var index; |
13930 var subPart; | 13930 var subPart; |
13931 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13931 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
13932 pathOffset += 1; | 13932 pathOffset += 1; |
13933 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 13933 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
13934 pathOffset += 18; | 13934 pathOffset += 18; |
13935 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13935 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14227 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { | 14227 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { |
14228 checkDirectorySiteContact(response); | 14228 checkDirectorySiteContact(response); |
14229 }))); | 14229 }))); |
14230 }); | 14230 }); |
14231 | 14231 |
14232 unittest.test("method--list", () { | 14232 unittest.test("method--list", () { |
14233 | 14233 |
14234 var mock = new HttpServerMock(); | 14234 var mock = new HttpServerMock(); |
14235 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; | 14235 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; |
14236 var arg_profileId = "foo"; | 14236 var arg_profileId = "foo"; |
14237 var arg_directorySiteIds = buildUnnamed455(); | 14237 var arg_directorySiteIds = buildUnnamed1004(); |
14238 var arg_ids = buildUnnamed456(); | 14238 var arg_ids = buildUnnamed1005(); |
14239 var arg_maxResults = 42; | 14239 var arg_maxResults = 42; |
14240 var arg_pageToken = "foo"; | 14240 var arg_pageToken = "foo"; |
14241 var arg_searchString = "foo"; | 14241 var arg_searchString = "foo"; |
14242 var arg_sortField = "foo"; | 14242 var arg_sortField = "foo"; |
14243 var arg_sortOrder = "foo"; | 14243 var arg_sortOrder = "foo"; |
14244 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14244 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
14245 var path = (req.url).path; | 14245 var path = (req.url).path; |
14246 var pathOffset = 0; | 14246 var pathOffset = 0; |
14247 var index; | 14247 var index; |
14248 var subPart; | 14248 var subPart; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14361 | 14361 |
14362 var mock = new HttpServerMock(); | 14362 var mock = new HttpServerMock(); |
14363 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; | 14363 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; |
14364 var arg_profileId = "foo"; | 14364 var arg_profileId = "foo"; |
14365 var arg_acceptsInStreamVideoPlacements = true; | 14365 var arg_acceptsInStreamVideoPlacements = true; |
14366 var arg_acceptsInterstitialPlacements = true; | 14366 var arg_acceptsInterstitialPlacements = true; |
14367 var arg_acceptsPublisherPaidPlacements = true; | 14367 var arg_acceptsPublisherPaidPlacements = true; |
14368 var arg_active = true; | 14368 var arg_active = true; |
14369 var arg_countryId = "foo"; | 14369 var arg_countryId = "foo"; |
14370 var arg_dfpNetworkCode = "foo"; | 14370 var arg_dfpNetworkCode = "foo"; |
14371 var arg_ids = buildUnnamed457(); | 14371 var arg_ids = buildUnnamed1006(); |
14372 var arg_maxResults = 42; | 14372 var arg_maxResults = 42; |
14373 var arg_pageToken = "foo"; | 14373 var arg_pageToken = "foo"; |
14374 var arg_parentId = "foo"; | 14374 var arg_parentId = "foo"; |
14375 var arg_searchString = "foo"; | 14375 var arg_searchString = "foo"; |
14376 var arg_sortField = "foo"; | 14376 var arg_sortField = "foo"; |
14377 var arg_sortOrder = "foo"; | 14377 var arg_sortOrder = "foo"; |
14378 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14378 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
14379 var path = (req.url).path; | 14379 var path = (req.url).path; |
14380 var pathOffset = 0; | 14380 var pathOffset = 0; |
14381 var index; | 14381 var index; |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14612 unittest.test("method--list", () { | 14612 unittest.test("method--list", () { |
14613 | 14613 |
14614 var mock = new HttpServerMock(); | 14614 var mock = new HttpServerMock(); |
14615 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; | 14615 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; |
14616 var arg_profileId = "foo"; | 14616 var arg_profileId = "foo"; |
14617 var arg_adId = "foo"; | 14617 var arg_adId = "foo"; |
14618 var arg_advertiserId = "foo"; | 14618 var arg_advertiserId = "foo"; |
14619 var arg_campaignId = "foo"; | 14619 var arg_campaignId = "foo"; |
14620 var arg_definitionsOnly = true; | 14620 var arg_definitionsOnly = true; |
14621 var arg_enabled = true; | 14621 var arg_enabled = true; |
14622 var arg_eventTagTypes = buildUnnamed458(); | 14622 var arg_eventTagTypes = buildUnnamed1007(); |
14623 var arg_ids = buildUnnamed459(); | 14623 var arg_ids = buildUnnamed1008(); |
14624 var arg_searchString = "foo"; | 14624 var arg_searchString = "foo"; |
14625 var arg_sortField = "foo"; | 14625 var arg_sortField = "foo"; |
14626 var arg_sortOrder = "foo"; | 14626 var arg_sortOrder = "foo"; |
14627 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14627 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
14628 var path = (req.url).path; | 14628 var path = (req.url).path; |
14629 var pathOffset = 0; | 14629 var pathOffset = 0; |
14630 var index; | 14630 var index; |
14631 var subPart; | 14631 var subPart; |
14632 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 14632 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
14633 pathOffset += 1; | 14633 pathOffset += 1; |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
15151 checkFloodlightActivity(response); | 15151 checkFloodlightActivity(response); |
15152 }))); | 15152 }))); |
15153 }); | 15153 }); |
15154 | 15154 |
15155 unittest.test("method--list", () { | 15155 unittest.test("method--list", () { |
15156 | 15156 |
15157 var mock = new HttpServerMock(); | 15157 var mock = new HttpServerMock(); |
15158 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; | 15158 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; |
15159 var arg_profileId = "foo"; | 15159 var arg_profileId = "foo"; |
15160 var arg_advertiserId = "foo"; | 15160 var arg_advertiserId = "foo"; |
15161 var arg_floodlightActivityGroupIds = buildUnnamed460(); | 15161 var arg_floodlightActivityGroupIds = buildUnnamed1009(); |
15162 var arg_floodlightActivityGroupName = "foo"; | 15162 var arg_floodlightActivityGroupName = "foo"; |
15163 var arg_floodlightActivityGroupTagString = "foo"; | 15163 var arg_floodlightActivityGroupTagString = "foo"; |
15164 var arg_floodlightActivityGroupType = "foo"; | 15164 var arg_floodlightActivityGroupType = "foo"; |
15165 var arg_floodlightConfigurationId = "foo"; | 15165 var arg_floodlightConfigurationId = "foo"; |
15166 var arg_ids = buildUnnamed461(); | 15166 var arg_ids = buildUnnamed1010(); |
15167 var arg_maxResults = 42; | 15167 var arg_maxResults = 42; |
15168 var arg_pageToken = "foo"; | 15168 var arg_pageToken = "foo"; |
15169 var arg_searchString = "foo"; | 15169 var arg_searchString = "foo"; |
15170 var arg_sortField = "foo"; | 15170 var arg_sortField = "foo"; |
15171 var arg_sortOrder = "foo"; | 15171 var arg_sortOrder = "foo"; |
15172 var arg_tagString = "foo"; | 15172 var arg_tagString = "foo"; |
15173 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15173 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
15174 var path = (req.url).path; | 15174 var path = (req.url).path; |
15175 var pathOffset = 0; | 15175 var pathOffset = 0; |
15176 var index; | 15176 var index; |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
15520 }))); | 15520 }))); |
15521 }); | 15521 }); |
15522 | 15522 |
15523 unittest.test("method--list", () { | 15523 unittest.test("method--list", () { |
15524 | 15524 |
15525 var mock = new HttpServerMock(); | 15525 var mock = new HttpServerMock(); |
15526 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; | 15526 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; |
15527 var arg_profileId = "foo"; | 15527 var arg_profileId = "foo"; |
15528 var arg_advertiserId = "foo"; | 15528 var arg_advertiserId = "foo"; |
15529 var arg_floodlightConfigurationId = "foo"; | 15529 var arg_floodlightConfigurationId = "foo"; |
15530 var arg_ids = buildUnnamed462(); | 15530 var arg_ids = buildUnnamed1011(); |
15531 var arg_maxResults = 42; | 15531 var arg_maxResults = 42; |
15532 var arg_pageToken = "foo"; | 15532 var arg_pageToken = "foo"; |
15533 var arg_searchString = "foo"; | 15533 var arg_searchString = "foo"; |
15534 var arg_sortField = "foo"; | 15534 var arg_sortField = "foo"; |
15535 var arg_sortOrder = "foo"; | 15535 var arg_sortOrder = "foo"; |
15536 var arg_type = "foo"; | 15536 var arg_type = "foo"; |
15537 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15537 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
15538 var path = (req.url).path; | 15538 var path = (req.url).path; |
15539 var pathOffset = 0; | 15539 var pathOffset = 0; |
15540 var index; | 15540 var index; |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
15766 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { | 15766 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { |
15767 checkFloodlightConfiguration(response); | 15767 checkFloodlightConfiguration(response); |
15768 }))); | 15768 }))); |
15769 }); | 15769 }); |
15770 | 15770 |
15771 unittest.test("method--list", () { | 15771 unittest.test("method--list", () { |
15772 | 15772 |
15773 var mock = new HttpServerMock(); | 15773 var mock = new HttpServerMock(); |
15774 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; | 15774 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; |
15775 var arg_profileId = "foo"; | 15775 var arg_profileId = "foo"; |
15776 var arg_ids = buildUnnamed463(); | 15776 var arg_ids = buildUnnamed1012(); |
15777 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15777 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
15778 var path = (req.url).path; | 15778 var path = (req.url).path; |
15779 var pathOffset = 0; | 15779 var pathOffset = 0; |
15780 var index; | 15780 var index; |
15781 var subPart; | 15781 var subPart; |
15782 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 15782 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
15783 pathOffset += 1; | 15783 pathOffset += 1; |
15784 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 15784 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
15785 pathOffset += 18; | 15785 pathOffset += 18; |
15786 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 15786 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
16673 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { | 16673 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { |
16674 checkPlacementGroup(response); | 16674 checkPlacementGroup(response); |
16675 }))); | 16675 }))); |
16676 }); | 16676 }); |
16677 | 16677 |
16678 unittest.test("method--list", () { | 16678 unittest.test("method--list", () { |
16679 | 16679 |
16680 var mock = new HttpServerMock(); | 16680 var mock = new HttpServerMock(); |
16681 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; | 16681 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; |
16682 var arg_profileId = "foo"; | 16682 var arg_profileId = "foo"; |
16683 var arg_advertiserIds = buildUnnamed464(); | 16683 var arg_advertiserIds = buildUnnamed1013(); |
16684 var arg_archived = true; | 16684 var arg_archived = true; |
16685 var arg_campaignIds = buildUnnamed465(); | 16685 var arg_campaignIds = buildUnnamed1014(); |
16686 var arg_contentCategoryIds = buildUnnamed466(); | 16686 var arg_contentCategoryIds = buildUnnamed1015(); |
16687 var arg_directorySiteIds = buildUnnamed467(); | 16687 var arg_directorySiteIds = buildUnnamed1016(); |
16688 var arg_ids = buildUnnamed468(); | 16688 var arg_ids = buildUnnamed1017(); |
16689 var arg_maxResults = 42; | 16689 var arg_maxResults = 42; |
16690 var arg_pageToken = "foo"; | 16690 var arg_pageToken = "foo"; |
16691 var arg_placementGroupType = "foo"; | 16691 var arg_placementGroupType = "foo"; |
16692 var arg_placementStrategyIds = buildUnnamed469(); | 16692 var arg_placementStrategyIds = buildUnnamed1018(); |
16693 var arg_pricingTypes = buildUnnamed470(); | 16693 var arg_pricingTypes = buildUnnamed1019(); |
16694 var arg_searchString = "foo"; | 16694 var arg_searchString = "foo"; |
16695 var arg_siteIds = buildUnnamed471(); | 16695 var arg_siteIds = buildUnnamed1020(); |
16696 var arg_sortField = "foo"; | 16696 var arg_sortField = "foo"; |
16697 var arg_sortOrder = "foo"; | 16697 var arg_sortOrder = "foo"; |
16698 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16698 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
16699 var path = (req.url).path; | 16699 var path = (req.url).path; |
16700 var pathOffset = 0; | 16700 var pathOffset = 0; |
16701 var index; | 16701 var index; |
16702 var subPart; | 16702 var subPart; |
16703 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16703 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
16704 pathOffset += 1; | 16704 pathOffset += 1; |
16705 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 16705 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
17045 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { | 17045 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { |
17046 checkPlacementStrategy(response); | 17046 checkPlacementStrategy(response); |
17047 }))); | 17047 }))); |
17048 }); | 17048 }); |
17049 | 17049 |
17050 unittest.test("method--list", () { | 17050 unittest.test("method--list", () { |
17051 | 17051 |
17052 var mock = new HttpServerMock(); | 17052 var mock = new HttpServerMock(); |
17053 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; | 17053 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; |
17054 var arg_profileId = "foo"; | 17054 var arg_profileId = "foo"; |
17055 var arg_ids = buildUnnamed472(); | 17055 var arg_ids = buildUnnamed1021(); |
17056 var arg_maxResults = 42; | 17056 var arg_maxResults = 42; |
17057 var arg_pageToken = "foo"; | 17057 var arg_pageToken = "foo"; |
17058 var arg_searchString = "foo"; | 17058 var arg_searchString = "foo"; |
17059 var arg_sortField = "foo"; | 17059 var arg_sortField = "foo"; |
17060 var arg_sortOrder = "foo"; | 17060 var arg_sortOrder = "foo"; |
17061 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17061 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
17062 var path = (req.url).path; | 17062 var path = (req.url).path; |
17063 var pathOffset = 0; | 17063 var pathOffset = 0; |
17064 var index; | 17064 var index; |
17065 var subPart; | 17065 var subPart; |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
17231 }); | 17231 }); |
17232 | 17232 |
17233 | 17233 |
17234 unittest.group("resource-PlacementsResourceApi", () { | 17234 unittest.group("resource-PlacementsResourceApi", () { |
17235 unittest.test("method--generatetags", () { | 17235 unittest.test("method--generatetags", () { |
17236 | 17236 |
17237 var mock = new HttpServerMock(); | 17237 var mock = new HttpServerMock(); |
17238 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 17238 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
17239 var arg_profileId = "foo"; | 17239 var arg_profileId = "foo"; |
17240 var arg_campaignId = "foo"; | 17240 var arg_campaignId = "foo"; |
17241 var arg_placementIds = buildUnnamed473(); | 17241 var arg_placementIds = buildUnnamed1022(); |
17242 var arg_tagFormats = buildUnnamed474(); | 17242 var arg_tagFormats = buildUnnamed1023(); |
17243 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17243 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
17244 var path = (req.url).path; | 17244 var path = (req.url).path; |
17245 var pathOffset = 0; | 17245 var pathOffset = 0; |
17246 var index; | 17246 var index; |
17247 var subPart; | 17247 var subPart; |
17248 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17248 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
17249 pathOffset += 1; | 17249 pathOffset += 1; |
17250 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 17250 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
17251 pathOffset += 18; | 17251 pathOffset += 18; |
17252 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 17252 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
17403 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { | 17403 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { |
17404 checkPlacement(response); | 17404 checkPlacement(response); |
17405 }))); | 17405 }))); |
17406 }); | 17406 }); |
17407 | 17407 |
17408 unittest.test("method--list", () { | 17408 unittest.test("method--list", () { |
17409 | 17409 |
17410 var mock = new HttpServerMock(); | 17410 var mock = new HttpServerMock(); |
17411 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 17411 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
17412 var arg_profileId = "foo"; | 17412 var arg_profileId = "foo"; |
17413 var arg_advertiserIds = buildUnnamed475(); | 17413 var arg_advertiserIds = buildUnnamed1024(); |
17414 var arg_archived = true; | 17414 var arg_archived = true; |
17415 var arg_campaignIds = buildUnnamed476(); | 17415 var arg_campaignIds = buildUnnamed1025(); |
17416 var arg_compatibilities = buildUnnamed477(); | 17416 var arg_compatibilities = buildUnnamed1026(); |
17417 var arg_contentCategoryIds = buildUnnamed478(); | 17417 var arg_contentCategoryIds = buildUnnamed1027(); |
17418 var arg_directorySiteIds = buildUnnamed479(); | 17418 var arg_directorySiteIds = buildUnnamed1028(); |
17419 var arg_groupIds = buildUnnamed480(); | 17419 var arg_groupIds = buildUnnamed1029(); |
17420 var arg_ids = buildUnnamed481(); | 17420 var arg_ids = buildUnnamed1030(); |
17421 var arg_maxResults = 42; | 17421 var arg_maxResults = 42; |
17422 var arg_pageToken = "foo"; | 17422 var arg_pageToken = "foo"; |
17423 var arg_paymentSource = "foo"; | 17423 var arg_paymentSource = "foo"; |
17424 var arg_placementStrategyIds = buildUnnamed482(); | 17424 var arg_placementStrategyIds = buildUnnamed1031(); |
17425 var arg_pricingTypes = buildUnnamed483(); | 17425 var arg_pricingTypes = buildUnnamed1032(); |
17426 var arg_searchString = "foo"; | 17426 var arg_searchString = "foo"; |
17427 var arg_siteIds = buildUnnamed484(); | 17427 var arg_siteIds = buildUnnamed1033(); |
17428 var arg_sizeIds = buildUnnamed485(); | 17428 var arg_sizeIds = buildUnnamed1034(); |
17429 var arg_sortField = "foo"; | 17429 var arg_sortField = "foo"; |
17430 var arg_sortOrder = "foo"; | 17430 var arg_sortOrder = "foo"; |
17431 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17431 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
17432 var path = (req.url).path; | 17432 var path = (req.url).path; |
17433 var pathOffset = 0; | 17433 var pathOffset = 0; |
17434 var index; | 17434 var index; |
17435 var subPart; | 17435 var subPart; |
17436 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17436 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
17437 pathOffset += 1; | 17437 pathOffset += 1; |
17438 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 17438 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
(...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
18524 unittest.test("method--list", () { | 18524 unittest.test("method--list", () { |
18525 | 18525 |
18526 var mock = new HttpServerMock(); | 18526 var mock = new HttpServerMock(); |
18527 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; | 18527 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; |
18528 var arg_profileId = "foo"; | 18528 var arg_profileId = "foo"; |
18529 var arg_acceptsInStreamVideoPlacements = true; | 18529 var arg_acceptsInStreamVideoPlacements = true; |
18530 var arg_acceptsInterstitialPlacements = true; | 18530 var arg_acceptsInterstitialPlacements = true; |
18531 var arg_acceptsPublisherPaidPlacements = true; | 18531 var arg_acceptsPublisherPaidPlacements = true; |
18532 var arg_adWordsSite = true; | 18532 var arg_adWordsSite = true; |
18533 var arg_approved = true; | 18533 var arg_approved = true; |
18534 var arg_campaignIds = buildUnnamed486(); | 18534 var arg_campaignIds = buildUnnamed1035(); |
18535 var arg_directorySiteIds = buildUnnamed487(); | 18535 var arg_directorySiteIds = buildUnnamed1036(); |
18536 var arg_ids = buildUnnamed488(); | 18536 var arg_ids = buildUnnamed1037(); |
18537 var arg_maxResults = 42; | 18537 var arg_maxResults = 42; |
18538 var arg_pageToken = "foo"; | 18538 var arg_pageToken = "foo"; |
18539 var arg_searchString = "foo"; | 18539 var arg_searchString = "foo"; |
18540 var arg_sortField = "foo"; | 18540 var arg_sortField = "foo"; |
18541 var arg_sortOrder = "foo"; | 18541 var arg_sortOrder = "foo"; |
18542 var arg_subaccountId = "foo"; | 18542 var arg_subaccountId = "foo"; |
18543 var arg_unmappedSite = true; | 18543 var arg_unmappedSite = true; |
18544 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18544 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
18545 var path = (req.url).path; | 18545 var path = (req.url).path; |
18546 var pathOffset = 0; | 18546 var pathOffset = 0; |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
18838 }))); | 18838 }))); |
18839 }); | 18839 }); |
18840 | 18840 |
18841 unittest.test("method--list", () { | 18841 unittest.test("method--list", () { |
18842 | 18842 |
18843 var mock = new HttpServerMock(); | 18843 var mock = new HttpServerMock(); |
18844 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; | 18844 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; |
18845 var arg_profileId = "foo"; | 18845 var arg_profileId = "foo"; |
18846 var arg_height = 42; | 18846 var arg_height = 42; |
18847 var arg_iabStandard = true; | 18847 var arg_iabStandard = true; |
18848 var arg_ids = buildUnnamed489(); | 18848 var arg_ids = buildUnnamed1038(); |
18849 var arg_width = 42; | 18849 var arg_width = 42; |
18850 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18850 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
18851 var path = (req.url).path; | 18851 var path = (req.url).path; |
18852 var pathOffset = 0; | 18852 var pathOffset = 0; |
18853 var index; | 18853 var index; |
18854 var subPart; | 18854 var subPart; |
18855 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18855 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
18856 pathOffset += 1; | 18856 pathOffset += 1; |
18857 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 18857 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
18858 pathOffset += 18; | 18858 pathOffset += 18; |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
19015 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { | 19015 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { |
19016 checkSubaccount(response); | 19016 checkSubaccount(response); |
19017 }))); | 19017 }))); |
19018 }); | 19018 }); |
19019 | 19019 |
19020 unittest.test("method--list", () { | 19020 unittest.test("method--list", () { |
19021 | 19021 |
19022 var mock = new HttpServerMock(); | 19022 var mock = new HttpServerMock(); |
19023 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; | 19023 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; |
19024 var arg_profileId = "foo"; | 19024 var arg_profileId = "foo"; |
19025 var arg_ids = buildUnnamed490(); | 19025 var arg_ids = buildUnnamed1039(); |
19026 var arg_maxResults = 42; | 19026 var arg_maxResults = 42; |
19027 var arg_pageToken = "foo"; | 19027 var arg_pageToken = "foo"; |
19028 var arg_searchString = "foo"; | 19028 var arg_searchString = "foo"; |
19029 var arg_sortField = "foo"; | 19029 var arg_sortField = "foo"; |
19030 var arg_sortOrder = "foo"; | 19030 var arg_sortOrder = "foo"; |
19031 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19031 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
19032 var path = (req.url).path; | 19032 var path = (req.url).path; |
19033 var pathOffset = 0; | 19033 var pathOffset = 0; |
19034 var index; | 19034 var index; |
19035 var subPart; | 19035 var subPart; |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
19469 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { | 19469 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { |
19470 checkUserRolePermission(response); | 19470 checkUserRolePermission(response); |
19471 }))); | 19471 }))); |
19472 }); | 19472 }); |
19473 | 19473 |
19474 unittest.test("method--list", () { | 19474 unittest.test("method--list", () { |
19475 | 19475 |
19476 var mock = new HttpServerMock(); | 19476 var mock = new HttpServerMock(); |
19477 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; | 19477 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; |
19478 var arg_profileId = "foo"; | 19478 var arg_profileId = "foo"; |
19479 var arg_ids = buildUnnamed491(); | 19479 var arg_ids = buildUnnamed1040(); |
19480 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19480 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
19481 var path = (req.url).path; | 19481 var path = (req.url).path; |
19482 var pathOffset = 0; | 19482 var pathOffset = 0; |
19483 var index; | 19483 var index; |
19484 var subPart; | 19484 var subPart; |
19485 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19485 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
19486 pathOffset += 1; | 19486 pathOffset += 1; |
19487 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); | 19487 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.0/")); |
19488 pathOffset += 18; | 19488 pathOffset += 18; |
19489 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 19489 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
19698 checkUserRole(response); | 19698 checkUserRole(response); |
19699 }))); | 19699 }))); |
19700 }); | 19700 }); |
19701 | 19701 |
19702 unittest.test("method--list", () { | 19702 unittest.test("method--list", () { |
19703 | 19703 |
19704 var mock = new HttpServerMock(); | 19704 var mock = new HttpServerMock(); |
19705 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; | 19705 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; |
19706 var arg_profileId = "foo"; | 19706 var arg_profileId = "foo"; |
19707 var arg_accountUserRoleOnly = true; | 19707 var arg_accountUserRoleOnly = true; |
19708 var arg_ids = buildUnnamed492(); | 19708 var arg_ids = buildUnnamed1041(); |
19709 var arg_maxResults = 42; | 19709 var arg_maxResults = 42; |
19710 var arg_pageToken = "foo"; | 19710 var arg_pageToken = "foo"; |
19711 var arg_searchString = "foo"; | 19711 var arg_searchString = "foo"; |
19712 var arg_sortField = "foo"; | 19712 var arg_sortField = "foo"; |
19713 var arg_sortOrder = "foo"; | 19713 var arg_sortOrder = "foo"; |
19714 var arg_subaccountId = "foo"; | 19714 var arg_subaccountId = "foo"; |
19715 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19715 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
19716 var path = (req.url).path; | 19716 var path = (req.url).path; |
19717 var pathOffset = 0; | 19717 var pathOffset = 0; |
19718 var index; | 19718 var index; |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
19882 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { | 19882 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { |
19883 checkUserRole(response); | 19883 checkUserRole(response); |
19884 }))); | 19884 }))); |
19885 }); | 19885 }); |
19886 | 19886 |
19887 }); | 19887 }); |
19888 | 19888 |
19889 | 19889 |
19890 } | 19890 } |
19891 | 19891 |
OLD | NEW |