OLD | NEW |
1 library googleapis.dfareporting.v2_6.test; | 1 library googleapis.dfareporting.v2_6.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...) 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 buildUnnamed2503() { | 54 buildUnnamed2597() { |
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 checkUnnamed2503(core.List<core.String> o) { | 61 checkUnnamed2597(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 buildUnnamed2504() { | 67 buildUnnamed2598() { |
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 checkUnnamed2504(core.List<core.String> o) { | 74 checkUnnamed2598(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 = buildUnnamed2503(); | 85 o.accountPermissionIds = buildUnnamed2597(); |
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 = buildUnnamed2504(); | 90 o.availablePermissionIds = buildUnnamed2598(); |
91 o.countryId = "foo"; | 91 o.countryId = "foo"; |
92 o.currencyId = "foo"; | 92 o.currencyId = "foo"; |
93 o.defaultCreativeSizeId = "foo"; | 93 o.defaultCreativeSizeId = "foo"; |
94 o.description = "foo"; | 94 o.description = "foo"; |
95 o.id = "foo"; | 95 o.id = "foo"; |
96 o.kind = "foo"; | 96 o.kind = "foo"; |
97 o.locale = "foo"; | 97 o.locale = "foo"; |
98 o.maximumImageSize = "foo"; | 98 o.maximumImageSize = "foo"; |
99 o.name = "foo"; | 99 o.name = "foo"; |
100 o.nielsenOcrEnabled = true; | 100 o.nielsenOcrEnabled = true; |
101 o.reportsConfiguration = buildReportsConfiguration(); | 101 o.reportsConfiguration = buildReportsConfiguration(); |
102 o.shareReportsWithTwitter = true; | 102 o.shareReportsWithTwitter = true; |
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 checkUnnamed2503(o.accountPermissionIds); | 112 checkUnnamed2597(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 checkUnnamed2504(o.availablePermissionIds); | 117 checkUnnamed2598(o.availablePermissionIds); |
118 unittest.expect(o.countryId, unittest.equals('foo')); | 118 unittest.expect(o.countryId, unittest.equals('foo')); |
119 unittest.expect(o.currencyId, unittest.equals('foo')); | 119 unittest.expect(o.currencyId, unittest.equals('foo')); |
120 unittest.expect(o.defaultCreativeSizeId, unittest.equals('foo')); | 120 unittest.expect(o.defaultCreativeSizeId, unittest.equals('foo')); |
121 unittest.expect(o.description, unittest.equals('foo')); | 121 unittest.expect(o.description, unittest.equals('foo')); |
122 unittest.expect(o.id, unittest.equals('foo')); | 122 unittest.expect(o.id, unittest.equals('foo')); |
123 unittest.expect(o.kind, unittest.equals('foo')); | 123 unittest.expect(o.kind, unittest.equals('foo')); |
124 unittest.expect(o.locale, unittest.equals('foo')); | 124 unittest.expect(o.locale, unittest.equals('foo')); |
125 unittest.expect(o.maximumImageSize, unittest.equals('foo')); | 125 unittest.expect(o.maximumImageSize, unittest.equals('foo')); |
126 unittest.expect(o.name, unittest.equals('foo')); | 126 unittest.expect(o.name, unittest.equals('foo')); |
127 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); | 127 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); |
(...skipping 24 matching lines...) 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 buildUnnamed2505() { | 162 buildUnnamed2599() { |
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 checkUnnamed2505(core.List<core.String> o) { | 169 checkUnnamed2599(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 = buildUnnamed2505(); | 180 o.accountProfiles = buildUnnamed2599(); |
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 checkUnnamed2505(o.accountProfiles); | 194 checkUnnamed2599(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...) 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 buildUnnamed2506() { | 227 buildUnnamed2600() { |
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 checkUnnamed2506(core.List<api.AccountPermissionGroup> o) { | 234 checkUnnamed2600(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 = buildUnnamed2506(); | 245 o.accountPermissionGroups = buildUnnamed2600(); |
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 checkUnnamed2506(o.accountPermissionGroups); | 255 checkUnnamed2600(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 buildUnnamed2507() { | 261 buildUnnamed2601() { |
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 checkUnnamed2507(core.List<api.AccountPermission> o) { | 268 checkUnnamed2601(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 = buildUnnamed2507(); | 279 o.accountPermissions = buildUnnamed2601(); |
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 checkUnnamed2507(o.accountPermissions); | 289 checkUnnamed2601(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...) 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 buildUnnamed2508() { | 344 buildUnnamed2602() { |
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 checkUnnamed2508(core.List<api.AccountUserProfile> o) { | 351 checkUnnamed2602(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 = buildUnnamed2508(); | 362 o.accountUserProfiles = buildUnnamed2602(); |
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 checkUnnamed2508(o.accountUserProfiles); | 373 checkUnnamed2602(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 buildUnnamed2509() { | 380 buildUnnamed2603() { |
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 checkUnnamed2509(core.List<api.Account> o) { | 387 checkUnnamed2603(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 = buildUnnamed2509(); | 398 o.accounts = buildUnnamed2603(); |
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 checkUnnamed2509(o.accounts); | 409 checkUnnamed2603(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 buildUnnamed2510() { | 416 buildUnnamed2604() { |
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 checkUnnamed2510(core.List<api.DimensionValue> o) { | 423 checkUnnamed2604(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 buildUnnamed2511() { | 429 buildUnnamed2605() { |
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 checkUnnamed2511(core.List<core.String> o) { | 436 checkUnnamed2605(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 = buildUnnamed2510(); | 447 o.filters = buildUnnamed2604(); |
448 o.kind = "foo"; | 448 o.kind = "foo"; |
449 o.metricNames = buildUnnamed2511(); | 449 o.metricNames = buildUnnamed2605(); |
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 checkUnnamed2510(o.filters); | 458 checkUnnamed2604(o.filters); |
459 unittest.expect(o.kind, unittest.equals('foo')); | 459 unittest.expect(o.kind, unittest.equals('foo')); |
460 checkUnnamed2511(o.metricNames); | 460 checkUnnamed2605(o.metricNames); |
461 } | 461 } |
462 buildCounterActivities--; | 462 buildCounterActivities--; |
463 } | 463 } |
464 | 464 |
465 buildUnnamed2512() { | 465 buildUnnamed2606() { |
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 checkUnnamed2512(core.List<api.CreativeGroupAssignment> o) { | 472 checkUnnamed2606(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 buildUnnamed2513() { | 478 buildUnnamed2607() { |
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 checkUnnamed2513(core.List<api.EventTagOverride> o) { | 485 checkUnnamed2607(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 buildUnnamed2514() { | 491 buildUnnamed2608() { |
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 checkUnnamed2514(core.List<api.PlacementAssignment> o) { | 498 checkUnnamed2608(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 = buildUnnamed2512(); | 522 o.creativeGroupAssignments = buildUnnamed2606(); |
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 = buildUnnamed2513(); | 529 o.eventTagOverrides = buildUnnamed2607(); |
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.languageTargeting = buildLanguageTargeting(); | 535 o.languageTargeting = buildLanguageTargeting(); |
536 o.lastModifiedInfo = buildLastModifiedInfo(); | 536 o.lastModifiedInfo = buildLastModifiedInfo(); |
537 o.name = "foo"; | 537 o.name = "foo"; |
538 o.placementAssignments = buildUnnamed2514(); | 538 o.placementAssignments = buildUnnamed2608(); |
539 o.remarketingListExpression = buildListTargetingExpression(); | 539 o.remarketingListExpression = buildListTargetingExpression(); |
540 o.size = buildSize(); | 540 o.size = buildSize(); |
541 o.sslCompliant = true; | 541 o.sslCompliant = true; |
542 o.sslRequired = true; | 542 o.sslRequired = true; |
543 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 543 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
544 o.subaccountId = "foo"; | 544 o.subaccountId = "foo"; |
545 o.targetingTemplateId = "foo"; | 545 o.targetingTemplateId = "foo"; |
546 o.technologyTargeting = buildTechnologyTargeting(); | 546 o.technologyTargeting = buildTechnologyTargeting(); |
547 o.type = "foo"; | 547 o.type = "foo"; |
548 } | 548 } |
(...skipping 10 matching lines...) Loading... |
559 checkDimensionValue(o.advertiserIdDimensionValue); | 559 checkDimensionValue(o.advertiserIdDimensionValue); |
560 unittest.expect(o.archived, unittest.isTrue); | 560 unittest.expect(o.archived, unittest.isTrue); |
561 unittest.expect(o.audienceSegmentId, unittest.equals('foo')); | 561 unittest.expect(o.audienceSegmentId, unittest.equals('foo')); |
562 unittest.expect(o.campaignId, unittest.equals('foo')); | 562 unittest.expect(o.campaignId, unittest.equals('foo')); |
563 checkDimensionValue(o.campaignIdDimensionValue); | 563 checkDimensionValue(o.campaignIdDimensionValue); |
564 checkClickThroughUrl(o.clickThroughUrl); | 564 checkClickThroughUrl(o.clickThroughUrl); |
565 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); | 565 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); |
566 unittest.expect(o.comments, unittest.equals('foo')); | 566 unittest.expect(o.comments, unittest.equals('foo')); |
567 unittest.expect(o.compatibility, unittest.equals('foo')); | 567 unittest.expect(o.compatibility, unittest.equals('foo')); |
568 checkLastModifiedInfo(o.createInfo); | 568 checkLastModifiedInfo(o.createInfo); |
569 checkUnnamed2512(o.creativeGroupAssignments); | 569 checkUnnamed2606(o.creativeGroupAssignments); |
570 checkCreativeRotation(o.creativeRotation); | 570 checkCreativeRotation(o.creativeRotation); |
571 checkDayPartTargeting(o.dayPartTargeting); | 571 checkDayPartTargeting(o.dayPartTargeting); |
572 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); | 572 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); |
573 checkDeliverySchedule(o.deliverySchedule); | 573 checkDeliverySchedule(o.deliverySchedule); |
574 unittest.expect(o.dynamicClickTracker, unittest.isTrue); | 574 unittest.expect(o.dynamicClickTracker, unittest.isTrue); |
575 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 575 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
576 checkUnnamed2513(o.eventTagOverrides); | 576 checkUnnamed2607(o.eventTagOverrides); |
577 checkGeoTargeting(o.geoTargeting); | 577 checkGeoTargeting(o.geoTargeting); |
578 unittest.expect(o.id, unittest.equals('foo')); | 578 unittest.expect(o.id, unittest.equals('foo')); |
579 checkDimensionValue(o.idDimensionValue); | 579 checkDimensionValue(o.idDimensionValue); |
580 checkKeyValueTargetingExpression(o.keyValueTargetingExpression); | 580 checkKeyValueTargetingExpression(o.keyValueTargetingExpression); |
581 unittest.expect(o.kind, unittest.equals('foo')); | 581 unittest.expect(o.kind, unittest.equals('foo')); |
582 checkLanguageTargeting(o.languageTargeting); | 582 checkLanguageTargeting(o.languageTargeting); |
583 checkLastModifiedInfo(o.lastModifiedInfo); | 583 checkLastModifiedInfo(o.lastModifiedInfo); |
584 unittest.expect(o.name, unittest.equals('foo')); | 584 unittest.expect(o.name, unittest.equals('foo')); |
585 checkUnnamed2514(o.placementAssignments); | 585 checkUnnamed2608(o.placementAssignments); |
586 checkListTargetingExpression(o.remarketingListExpression); | 586 checkListTargetingExpression(o.remarketingListExpression); |
587 checkSize(o.size); | 587 checkSize(o.size); |
588 unittest.expect(o.sslCompliant, unittest.isTrue); | 588 unittest.expect(o.sslCompliant, unittest.isTrue); |
589 unittest.expect(o.sslRequired, unittest.isTrue); | 589 unittest.expect(o.sslRequired, unittest.isTrue); |
590 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 590 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
591 unittest.expect(o.subaccountId, unittest.equals('foo')); | 591 unittest.expect(o.subaccountId, unittest.equals('foo')); |
592 unittest.expect(o.targetingTemplateId, unittest.equals('foo')); | 592 unittest.expect(o.targetingTemplateId, unittest.equals('foo')); |
593 checkTechnologyTargeting(o.technologyTargeting); | 593 checkTechnologyTargeting(o.technologyTargeting); |
594 unittest.expect(o.type, unittest.equals('foo')); | 594 unittest.expect(o.type, unittest.equals('foo')); |
595 } | 595 } |
(...skipping 26 matching lines...) Loading... |
622 unittest.expect(o.height, unittest.equals('foo')); | 622 unittest.expect(o.height, unittest.equals('foo')); |
623 unittest.expect(o.linkedPlacementId, unittest.equals('foo')); | 623 unittest.expect(o.linkedPlacementId, unittest.equals('foo')); |
624 unittest.expect(o.name, unittest.equals('foo')); | 624 unittest.expect(o.name, unittest.equals('foo')); |
625 unittest.expect(o.paymentSourceType, unittest.equals('foo')); | 625 unittest.expect(o.paymentSourceType, unittest.equals('foo')); |
626 unittest.expect(o.primary, unittest.isTrue); | 626 unittest.expect(o.primary, unittest.isTrue); |
627 unittest.expect(o.width, unittest.equals('foo')); | 627 unittest.expect(o.width, unittest.equals('foo')); |
628 } | 628 } |
629 buildCounterAdSlot--; | 629 buildCounterAdSlot--; |
630 } | 630 } |
631 | 631 |
632 buildUnnamed2515() { | 632 buildUnnamed2609() { |
633 var o = new core.List<api.Ad>(); | 633 var o = new core.List<api.Ad>(); |
634 o.add(buildAd()); | 634 o.add(buildAd()); |
635 o.add(buildAd()); | 635 o.add(buildAd()); |
636 return o; | 636 return o; |
637 } | 637 } |
638 | 638 |
639 checkUnnamed2515(core.List<api.Ad> o) { | 639 checkUnnamed2609(core.List<api.Ad> o) { |
640 unittest.expect(o, unittest.hasLength(2)); | 640 unittest.expect(o, unittest.hasLength(2)); |
641 checkAd(o[0]); | 641 checkAd(o[0]); |
642 checkAd(o[1]); | 642 checkAd(o[1]); |
643 } | 643 } |
644 | 644 |
645 core.int buildCounterAdsListResponse = 0; | 645 core.int buildCounterAdsListResponse = 0; |
646 buildAdsListResponse() { | 646 buildAdsListResponse() { |
647 var o = new api.AdsListResponse(); | 647 var o = new api.AdsListResponse(); |
648 buildCounterAdsListResponse++; | 648 buildCounterAdsListResponse++; |
649 if (buildCounterAdsListResponse < 3) { | 649 if (buildCounterAdsListResponse < 3) { |
650 o.ads = buildUnnamed2515(); | 650 o.ads = buildUnnamed2609(); |
651 o.kind = "foo"; | 651 o.kind = "foo"; |
652 o.nextPageToken = "foo"; | 652 o.nextPageToken = "foo"; |
653 } | 653 } |
654 buildCounterAdsListResponse--; | 654 buildCounterAdsListResponse--; |
655 return o; | 655 return o; |
656 } | 656 } |
657 | 657 |
658 checkAdsListResponse(api.AdsListResponse o) { | 658 checkAdsListResponse(api.AdsListResponse o) { |
659 buildCounterAdsListResponse++; | 659 buildCounterAdsListResponse++; |
660 if (buildCounterAdsListResponse < 3) { | 660 if (buildCounterAdsListResponse < 3) { |
661 checkUnnamed2515(o.ads); | 661 checkUnnamed2609(o.ads); |
662 unittest.expect(o.kind, unittest.equals('foo')); | 662 unittest.expect(o.kind, unittest.equals('foo')); |
663 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 663 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
664 } | 664 } |
665 buildCounterAdsListResponse--; | 665 buildCounterAdsListResponse--; |
666 } | 666 } |
667 | 667 |
668 core.int buildCounterAdvertiser = 0; | 668 core.int buildCounterAdvertiser = 0; |
669 buildAdvertiser() { | 669 buildAdvertiser() { |
670 var o = new api.Advertiser(); | 670 var o = new api.Advertiser(); |
671 buildCounterAdvertiser++; | 671 buildCounterAdvertiser++; |
(...skipping 58 matching lines...) Loading... |
730 buildCounterAdvertiserGroup++; | 730 buildCounterAdvertiserGroup++; |
731 if (buildCounterAdvertiserGroup < 3) { | 731 if (buildCounterAdvertiserGroup < 3) { |
732 unittest.expect(o.accountId, unittest.equals('foo')); | 732 unittest.expect(o.accountId, unittest.equals('foo')); |
733 unittest.expect(o.id, unittest.equals('foo')); | 733 unittest.expect(o.id, unittest.equals('foo')); |
734 unittest.expect(o.kind, unittest.equals('foo')); | 734 unittest.expect(o.kind, unittest.equals('foo')); |
735 unittest.expect(o.name, unittest.equals('foo')); | 735 unittest.expect(o.name, unittest.equals('foo')); |
736 } | 736 } |
737 buildCounterAdvertiserGroup--; | 737 buildCounterAdvertiserGroup--; |
738 } | 738 } |
739 | 739 |
740 buildUnnamed2516() { | 740 buildUnnamed2610() { |
741 var o = new core.List<api.AdvertiserGroup>(); | 741 var o = new core.List<api.AdvertiserGroup>(); |
742 o.add(buildAdvertiserGroup()); | 742 o.add(buildAdvertiserGroup()); |
743 o.add(buildAdvertiserGroup()); | 743 o.add(buildAdvertiserGroup()); |
744 return o; | 744 return o; |
745 } | 745 } |
746 | 746 |
747 checkUnnamed2516(core.List<api.AdvertiserGroup> o) { | 747 checkUnnamed2610(core.List<api.AdvertiserGroup> o) { |
748 unittest.expect(o, unittest.hasLength(2)); | 748 unittest.expect(o, unittest.hasLength(2)); |
749 checkAdvertiserGroup(o[0]); | 749 checkAdvertiserGroup(o[0]); |
750 checkAdvertiserGroup(o[1]); | 750 checkAdvertiserGroup(o[1]); |
751 } | 751 } |
752 | 752 |
753 core.int buildCounterAdvertiserGroupsListResponse = 0; | 753 core.int buildCounterAdvertiserGroupsListResponse = 0; |
754 buildAdvertiserGroupsListResponse() { | 754 buildAdvertiserGroupsListResponse() { |
755 var o = new api.AdvertiserGroupsListResponse(); | 755 var o = new api.AdvertiserGroupsListResponse(); |
756 buildCounterAdvertiserGroupsListResponse++; | 756 buildCounterAdvertiserGroupsListResponse++; |
757 if (buildCounterAdvertiserGroupsListResponse < 3) { | 757 if (buildCounterAdvertiserGroupsListResponse < 3) { |
758 o.advertiserGroups = buildUnnamed2516(); | 758 o.advertiserGroups = buildUnnamed2610(); |
759 o.kind = "foo"; | 759 o.kind = "foo"; |
760 o.nextPageToken = "foo"; | 760 o.nextPageToken = "foo"; |
761 } | 761 } |
762 buildCounterAdvertiserGroupsListResponse--; | 762 buildCounterAdvertiserGroupsListResponse--; |
763 return o; | 763 return o; |
764 } | 764 } |
765 | 765 |
766 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { | 766 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { |
767 buildCounterAdvertiserGroupsListResponse++; | 767 buildCounterAdvertiserGroupsListResponse++; |
768 if (buildCounterAdvertiserGroupsListResponse < 3) { | 768 if (buildCounterAdvertiserGroupsListResponse < 3) { |
769 checkUnnamed2516(o.advertiserGroups); | 769 checkUnnamed2610(o.advertiserGroups); |
770 unittest.expect(o.kind, unittest.equals('foo')); | 770 unittest.expect(o.kind, unittest.equals('foo')); |
771 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 771 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
772 } | 772 } |
773 buildCounterAdvertiserGroupsListResponse--; | 773 buildCounterAdvertiserGroupsListResponse--; |
774 } | 774 } |
775 | 775 |
776 buildUnnamed2517() { | 776 buildUnnamed2611() { |
777 var o = new core.List<api.Advertiser>(); | 777 var o = new core.List<api.Advertiser>(); |
778 o.add(buildAdvertiser()); | 778 o.add(buildAdvertiser()); |
779 o.add(buildAdvertiser()); | 779 o.add(buildAdvertiser()); |
780 return o; | 780 return o; |
781 } | 781 } |
782 | 782 |
783 checkUnnamed2517(core.List<api.Advertiser> o) { | 783 checkUnnamed2611(core.List<api.Advertiser> o) { |
784 unittest.expect(o, unittest.hasLength(2)); | 784 unittest.expect(o, unittest.hasLength(2)); |
785 checkAdvertiser(o[0]); | 785 checkAdvertiser(o[0]); |
786 checkAdvertiser(o[1]); | 786 checkAdvertiser(o[1]); |
787 } | 787 } |
788 | 788 |
789 core.int buildCounterAdvertisersListResponse = 0; | 789 core.int buildCounterAdvertisersListResponse = 0; |
790 buildAdvertisersListResponse() { | 790 buildAdvertisersListResponse() { |
791 var o = new api.AdvertisersListResponse(); | 791 var o = new api.AdvertisersListResponse(); |
792 buildCounterAdvertisersListResponse++; | 792 buildCounterAdvertisersListResponse++; |
793 if (buildCounterAdvertisersListResponse < 3) { | 793 if (buildCounterAdvertisersListResponse < 3) { |
794 o.advertisers = buildUnnamed2517(); | 794 o.advertisers = buildUnnamed2611(); |
795 o.kind = "foo"; | 795 o.kind = "foo"; |
796 o.nextPageToken = "foo"; | 796 o.nextPageToken = "foo"; |
797 } | 797 } |
798 buildCounterAdvertisersListResponse--; | 798 buildCounterAdvertisersListResponse--; |
799 return o; | 799 return o; |
800 } | 800 } |
801 | 801 |
802 checkAdvertisersListResponse(api.AdvertisersListResponse o) { | 802 checkAdvertisersListResponse(api.AdvertisersListResponse o) { |
803 buildCounterAdvertisersListResponse++; | 803 buildCounterAdvertisersListResponse++; |
804 if (buildCounterAdvertisersListResponse < 3) { | 804 if (buildCounterAdvertisersListResponse < 3) { |
805 checkUnnamed2517(o.advertisers); | 805 checkUnnamed2611(o.advertisers); |
806 unittest.expect(o.kind, unittest.equals('foo')); | 806 unittest.expect(o.kind, unittest.equals('foo')); |
807 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 807 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
808 } | 808 } |
809 buildCounterAdvertisersListResponse--; | 809 buildCounterAdvertisersListResponse--; |
810 } | 810 } |
811 | 811 |
812 core.int buildCounterAudienceSegment = 0; | 812 core.int buildCounterAudienceSegment = 0; |
813 buildAudienceSegment() { | 813 buildAudienceSegment() { |
814 var o = new api.AudienceSegment(); | 814 var o = new api.AudienceSegment(); |
815 buildCounterAudienceSegment++; | 815 buildCounterAudienceSegment++; |
816 if (buildCounterAudienceSegment < 3) { | 816 if (buildCounterAudienceSegment < 3) { |
817 o.allocation = 42; | 817 o.allocation = 42; |
818 o.id = "foo"; | 818 o.id = "foo"; |
819 o.name = "foo"; | 819 o.name = "foo"; |
820 } | 820 } |
821 buildCounterAudienceSegment--; | 821 buildCounterAudienceSegment--; |
822 return o; | 822 return o; |
823 } | 823 } |
824 | 824 |
825 checkAudienceSegment(api.AudienceSegment o) { | 825 checkAudienceSegment(api.AudienceSegment o) { |
826 buildCounterAudienceSegment++; | 826 buildCounterAudienceSegment++; |
827 if (buildCounterAudienceSegment < 3) { | 827 if (buildCounterAudienceSegment < 3) { |
828 unittest.expect(o.allocation, unittest.equals(42)); | 828 unittest.expect(o.allocation, unittest.equals(42)); |
829 unittest.expect(o.id, unittest.equals('foo')); | 829 unittest.expect(o.id, unittest.equals('foo')); |
830 unittest.expect(o.name, unittest.equals('foo')); | 830 unittest.expect(o.name, unittest.equals('foo')); |
831 } | 831 } |
832 buildCounterAudienceSegment--; | 832 buildCounterAudienceSegment--; |
833 } | 833 } |
834 | 834 |
835 buildUnnamed2518() { | 835 buildUnnamed2612() { |
836 var o = new core.List<api.AudienceSegment>(); | 836 var o = new core.List<api.AudienceSegment>(); |
837 o.add(buildAudienceSegment()); | 837 o.add(buildAudienceSegment()); |
838 o.add(buildAudienceSegment()); | 838 o.add(buildAudienceSegment()); |
839 return o; | 839 return o; |
840 } | 840 } |
841 | 841 |
842 checkUnnamed2518(core.List<api.AudienceSegment> o) { | 842 checkUnnamed2612(core.List<api.AudienceSegment> o) { |
843 unittest.expect(o, unittest.hasLength(2)); | 843 unittest.expect(o, unittest.hasLength(2)); |
844 checkAudienceSegment(o[0]); | 844 checkAudienceSegment(o[0]); |
845 checkAudienceSegment(o[1]); | 845 checkAudienceSegment(o[1]); |
846 } | 846 } |
847 | 847 |
848 core.int buildCounterAudienceSegmentGroup = 0; | 848 core.int buildCounterAudienceSegmentGroup = 0; |
849 buildAudienceSegmentGroup() { | 849 buildAudienceSegmentGroup() { |
850 var o = new api.AudienceSegmentGroup(); | 850 var o = new api.AudienceSegmentGroup(); |
851 buildCounterAudienceSegmentGroup++; | 851 buildCounterAudienceSegmentGroup++; |
852 if (buildCounterAudienceSegmentGroup < 3) { | 852 if (buildCounterAudienceSegmentGroup < 3) { |
853 o.audienceSegments = buildUnnamed2518(); | 853 o.audienceSegments = buildUnnamed2612(); |
854 o.id = "foo"; | 854 o.id = "foo"; |
855 o.name = "foo"; | 855 o.name = "foo"; |
856 } | 856 } |
857 buildCounterAudienceSegmentGroup--; | 857 buildCounterAudienceSegmentGroup--; |
858 return o; | 858 return o; |
859 } | 859 } |
860 | 860 |
861 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { | 861 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { |
862 buildCounterAudienceSegmentGroup++; | 862 buildCounterAudienceSegmentGroup++; |
863 if (buildCounterAudienceSegmentGroup < 3) { | 863 if (buildCounterAudienceSegmentGroup < 3) { |
864 checkUnnamed2518(o.audienceSegments); | 864 checkUnnamed2612(o.audienceSegments); |
865 unittest.expect(o.id, unittest.equals('foo')); | 865 unittest.expect(o.id, unittest.equals('foo')); |
866 unittest.expect(o.name, unittest.equals('foo')); | 866 unittest.expect(o.name, unittest.equals('foo')); |
867 } | 867 } |
868 buildCounterAudienceSegmentGroup--; | 868 buildCounterAudienceSegmentGroup--; |
869 } | 869 } |
870 | 870 |
871 core.int buildCounterBrowser = 0; | 871 core.int buildCounterBrowser = 0; |
872 buildBrowser() { | 872 buildBrowser() { |
873 var o = new api.Browser(); | 873 var o = new api.Browser(); |
874 buildCounterBrowser++; | 874 buildCounterBrowser++; |
(...skipping 15 matching lines...) Loading... |
890 unittest.expect(o.browserVersionId, unittest.equals('foo')); | 890 unittest.expect(o.browserVersionId, unittest.equals('foo')); |
891 unittest.expect(o.dartId, unittest.equals('foo')); | 891 unittest.expect(o.dartId, unittest.equals('foo')); |
892 unittest.expect(o.kind, unittest.equals('foo')); | 892 unittest.expect(o.kind, unittest.equals('foo')); |
893 unittest.expect(o.majorVersion, unittest.equals('foo')); | 893 unittest.expect(o.majorVersion, unittest.equals('foo')); |
894 unittest.expect(o.minorVersion, unittest.equals('foo')); | 894 unittest.expect(o.minorVersion, unittest.equals('foo')); |
895 unittest.expect(o.name, unittest.equals('foo')); | 895 unittest.expect(o.name, unittest.equals('foo')); |
896 } | 896 } |
897 buildCounterBrowser--; | 897 buildCounterBrowser--; |
898 } | 898 } |
899 | 899 |
900 buildUnnamed2519() { | 900 buildUnnamed2613() { |
901 var o = new core.List<api.Browser>(); | 901 var o = new core.List<api.Browser>(); |
902 o.add(buildBrowser()); | 902 o.add(buildBrowser()); |
903 o.add(buildBrowser()); | 903 o.add(buildBrowser()); |
904 return o; | 904 return o; |
905 } | 905 } |
906 | 906 |
907 checkUnnamed2519(core.List<api.Browser> o) { | 907 checkUnnamed2613(core.List<api.Browser> o) { |
908 unittest.expect(o, unittest.hasLength(2)); | 908 unittest.expect(o, unittest.hasLength(2)); |
909 checkBrowser(o[0]); | 909 checkBrowser(o[0]); |
910 checkBrowser(o[1]); | 910 checkBrowser(o[1]); |
911 } | 911 } |
912 | 912 |
913 core.int buildCounterBrowsersListResponse = 0; | 913 core.int buildCounterBrowsersListResponse = 0; |
914 buildBrowsersListResponse() { | 914 buildBrowsersListResponse() { |
915 var o = new api.BrowsersListResponse(); | 915 var o = new api.BrowsersListResponse(); |
916 buildCounterBrowsersListResponse++; | 916 buildCounterBrowsersListResponse++; |
917 if (buildCounterBrowsersListResponse < 3) { | 917 if (buildCounterBrowsersListResponse < 3) { |
918 o.browsers = buildUnnamed2519(); | 918 o.browsers = buildUnnamed2613(); |
919 o.kind = "foo"; | 919 o.kind = "foo"; |
920 } | 920 } |
921 buildCounterBrowsersListResponse--; | 921 buildCounterBrowsersListResponse--; |
922 return o; | 922 return o; |
923 } | 923 } |
924 | 924 |
925 checkBrowsersListResponse(api.BrowsersListResponse o) { | 925 checkBrowsersListResponse(api.BrowsersListResponse o) { |
926 buildCounterBrowsersListResponse++; | 926 buildCounterBrowsersListResponse++; |
927 if (buildCounterBrowsersListResponse < 3) { | 927 if (buildCounterBrowsersListResponse < 3) { |
928 checkUnnamed2519(o.browsers); | 928 checkUnnamed2613(o.browsers); |
929 unittest.expect(o.kind, unittest.equals('foo')); | 929 unittest.expect(o.kind, unittest.equals('foo')); |
930 } | 930 } |
931 buildCounterBrowsersListResponse--; | 931 buildCounterBrowsersListResponse--; |
932 } | 932 } |
933 | 933 |
934 buildUnnamed2520() { | 934 buildUnnamed2614() { |
935 var o = new core.List<api.CreativeOptimizationConfiguration>(); | 935 var o = new core.List<api.CreativeOptimizationConfiguration>(); |
936 o.add(buildCreativeOptimizationConfiguration()); | 936 o.add(buildCreativeOptimizationConfiguration()); |
937 o.add(buildCreativeOptimizationConfiguration()); | 937 o.add(buildCreativeOptimizationConfiguration()); |
938 return o; | 938 return o; |
939 } | 939 } |
940 | 940 |
941 checkUnnamed2520(core.List<api.CreativeOptimizationConfiguration> o) { | 941 checkUnnamed2614(core.List<api.CreativeOptimizationConfiguration> o) { |
942 unittest.expect(o, unittest.hasLength(2)); | 942 unittest.expect(o, unittest.hasLength(2)); |
943 checkCreativeOptimizationConfiguration(o[0]); | 943 checkCreativeOptimizationConfiguration(o[0]); |
944 checkCreativeOptimizationConfiguration(o[1]); | 944 checkCreativeOptimizationConfiguration(o[1]); |
945 } | 945 } |
946 | 946 |
947 buildUnnamed2521() { | 947 buildUnnamed2615() { |
948 var o = new core.List<api.AudienceSegmentGroup>(); | 948 var o = new core.List<api.AudienceSegmentGroup>(); |
949 o.add(buildAudienceSegmentGroup()); | 949 o.add(buildAudienceSegmentGroup()); |
950 o.add(buildAudienceSegmentGroup()); | 950 o.add(buildAudienceSegmentGroup()); |
951 return o; | 951 return o; |
952 } | 952 } |
953 | 953 |
954 checkUnnamed2521(core.List<api.AudienceSegmentGroup> o) { | 954 checkUnnamed2615(core.List<api.AudienceSegmentGroup> o) { |
955 unittest.expect(o, unittest.hasLength(2)); | 955 unittest.expect(o, unittest.hasLength(2)); |
956 checkAudienceSegmentGroup(o[0]); | 956 checkAudienceSegmentGroup(o[0]); |
957 checkAudienceSegmentGroup(o[1]); | 957 checkAudienceSegmentGroup(o[1]); |
958 } | 958 } |
959 | 959 |
960 buildUnnamed2522() { | 960 buildUnnamed2616() { |
961 var o = new core.List<core.String>(); | 961 var o = new core.List<core.String>(); |
962 o.add("foo"); | 962 o.add("foo"); |
963 o.add("foo"); | 963 o.add("foo"); |
964 return o; | 964 return o; |
965 } | 965 } |
966 | 966 |
967 checkUnnamed2522(core.List<core.String> o) { | 967 checkUnnamed2616(core.List<core.String> o) { |
968 unittest.expect(o, unittest.hasLength(2)); | 968 unittest.expect(o, unittest.hasLength(2)); |
969 unittest.expect(o[0], unittest.equals('foo')); | 969 unittest.expect(o[0], unittest.equals('foo')); |
970 unittest.expect(o[1], unittest.equals('foo')); | 970 unittest.expect(o[1], unittest.equals('foo')); |
971 } | 971 } |
972 | 972 |
973 buildUnnamed2523() { | 973 buildUnnamed2617() { |
974 var o = new core.List<api.EventTagOverride>(); | 974 var o = new core.List<api.EventTagOverride>(); |
975 o.add(buildEventTagOverride()); | 975 o.add(buildEventTagOverride()); |
976 o.add(buildEventTagOverride()); | 976 o.add(buildEventTagOverride()); |
977 return o; | 977 return o; |
978 } | 978 } |
979 | 979 |
980 checkUnnamed2523(core.List<api.EventTagOverride> o) { | 980 checkUnnamed2617(core.List<api.EventTagOverride> o) { |
981 unittest.expect(o, unittest.hasLength(2)); | 981 unittest.expect(o, unittest.hasLength(2)); |
982 checkEventTagOverride(o[0]); | 982 checkEventTagOverride(o[0]); |
983 checkEventTagOverride(o[1]); | 983 checkEventTagOverride(o[1]); |
984 } | 984 } |
985 | 985 |
986 buildUnnamed2524() { | 986 buildUnnamed2618() { |
987 var o = new core.List<core.String>(); | 987 var o = new core.List<core.String>(); |
988 o.add("foo"); | 988 o.add("foo"); |
989 o.add("foo"); | 989 o.add("foo"); |
990 return o; | 990 return o; |
991 } | 991 } |
992 | 992 |
993 checkUnnamed2524(core.List<core.String> o) { | 993 checkUnnamed2618(core.List<core.String> o) { |
994 unittest.expect(o, unittest.hasLength(2)); | 994 unittest.expect(o, unittest.hasLength(2)); |
995 unittest.expect(o[0], unittest.equals('foo')); | 995 unittest.expect(o[0], unittest.equals('foo')); |
996 unittest.expect(o[1], unittest.equals('foo')); | 996 unittest.expect(o[1], unittest.equals('foo')); |
997 } | 997 } |
998 | 998 |
999 core.int buildCounterCampaign = 0; | 999 core.int buildCounterCampaign = 0; |
1000 buildCampaign() { | 1000 buildCampaign() { |
1001 var o = new api.Campaign(); | 1001 var o = new api.Campaign(); |
1002 buildCounterCampaign++; | 1002 buildCounterCampaign++; |
1003 if (buildCounterCampaign < 3) { | 1003 if (buildCounterCampaign < 3) { |
1004 o.accountId = "foo"; | 1004 o.accountId = "foo"; |
1005 o.additionalCreativeOptimizationConfigurations = buildUnnamed2520(); | 1005 o.additionalCreativeOptimizationConfigurations = buildUnnamed2614(); |
1006 o.advertiserGroupId = "foo"; | 1006 o.advertiserGroupId = "foo"; |
1007 o.advertiserId = "foo"; | 1007 o.advertiserId = "foo"; |
1008 o.advertiserIdDimensionValue = buildDimensionValue(); | 1008 o.advertiserIdDimensionValue = buildDimensionValue(); |
1009 o.archived = true; | 1009 o.archived = true; |
1010 o.audienceSegmentGroups = buildUnnamed2521(); | 1010 o.audienceSegmentGroups = buildUnnamed2615(); |
1011 o.billingInvoiceCode = "foo"; | 1011 o.billingInvoiceCode = "foo"; |
1012 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); | 1012 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); |
1013 o.comment = "foo"; | 1013 o.comment = "foo"; |
1014 o.createInfo = buildLastModifiedInfo(); | 1014 o.createInfo = buildLastModifiedInfo(); |
1015 o.creativeGroupIds = buildUnnamed2522(); | 1015 o.creativeGroupIds = buildUnnamed2616(); |
1016 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); | 1016 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); |
1017 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); | 1017 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); |
1018 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 1018 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
1019 o.eventTagOverrides = buildUnnamed2523(); | 1019 o.eventTagOverrides = buildUnnamed2617(); |
1020 o.externalId = "foo"; | 1020 o.externalId = "foo"; |
1021 o.id = "foo"; | 1021 o.id = "foo"; |
1022 o.idDimensionValue = buildDimensionValue(); | 1022 o.idDimensionValue = buildDimensionValue(); |
1023 o.kind = "foo"; | 1023 o.kind = "foo"; |
1024 o.lastModifiedInfo = buildLastModifiedInfo(); | 1024 o.lastModifiedInfo = buildLastModifiedInfo(); |
1025 o.lookbackConfiguration = buildLookbackConfiguration(); | 1025 o.lookbackConfiguration = buildLookbackConfiguration(); |
1026 o.name = "foo"; | 1026 o.name = "foo"; |
1027 o.nielsenOcrEnabled = true; | 1027 o.nielsenOcrEnabled = true; |
1028 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 1028 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
1029 o.subaccountId = "foo"; | 1029 o.subaccountId = "foo"; |
1030 o.traffickerEmails = buildUnnamed2524(); | 1030 o.traffickerEmails = buildUnnamed2618(); |
1031 } | 1031 } |
1032 buildCounterCampaign--; | 1032 buildCounterCampaign--; |
1033 return o; | 1033 return o; |
1034 } | 1034 } |
1035 | 1035 |
1036 checkCampaign(api.Campaign o) { | 1036 checkCampaign(api.Campaign o) { |
1037 buildCounterCampaign++; | 1037 buildCounterCampaign++; |
1038 if (buildCounterCampaign < 3) { | 1038 if (buildCounterCampaign < 3) { |
1039 unittest.expect(o.accountId, unittest.equals('foo')); | 1039 unittest.expect(o.accountId, unittest.equals('foo')); |
1040 checkUnnamed2520(o.additionalCreativeOptimizationConfigurations); | 1040 checkUnnamed2614(o.additionalCreativeOptimizationConfigurations); |
1041 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); | 1041 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); |
1042 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1042 unittest.expect(o.advertiserId, unittest.equals('foo')); |
1043 checkDimensionValue(o.advertiserIdDimensionValue); | 1043 checkDimensionValue(o.advertiserIdDimensionValue); |
1044 unittest.expect(o.archived, unittest.isTrue); | 1044 unittest.expect(o.archived, unittest.isTrue); |
1045 checkUnnamed2521(o.audienceSegmentGroups); | 1045 checkUnnamed2615(o.audienceSegmentGroups); |
1046 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); | 1046 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); |
1047 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); | 1047 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); |
1048 unittest.expect(o.comment, unittest.equals('foo')); | 1048 unittest.expect(o.comment, unittest.equals('foo')); |
1049 checkLastModifiedInfo(o.createInfo); | 1049 checkLastModifiedInfo(o.createInfo); |
1050 checkUnnamed2522(o.creativeGroupIds); | 1050 checkUnnamed2616(o.creativeGroupIds); |
1051 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); | 1051 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); |
1052 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); | 1052 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); |
1053 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 1053 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
1054 checkUnnamed2523(o.eventTagOverrides); | 1054 checkUnnamed2617(o.eventTagOverrides); |
1055 unittest.expect(o.externalId, unittest.equals('foo')); | 1055 unittest.expect(o.externalId, unittest.equals('foo')); |
1056 unittest.expect(o.id, unittest.equals('foo')); | 1056 unittest.expect(o.id, unittest.equals('foo')); |
1057 checkDimensionValue(o.idDimensionValue); | 1057 checkDimensionValue(o.idDimensionValue); |
1058 unittest.expect(o.kind, unittest.equals('foo')); | 1058 unittest.expect(o.kind, unittest.equals('foo')); |
1059 checkLastModifiedInfo(o.lastModifiedInfo); | 1059 checkLastModifiedInfo(o.lastModifiedInfo); |
1060 checkLookbackConfiguration(o.lookbackConfiguration); | 1060 checkLookbackConfiguration(o.lookbackConfiguration); |
1061 unittest.expect(o.name, unittest.equals('foo')); | 1061 unittest.expect(o.name, unittest.equals('foo')); |
1062 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); | 1062 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); |
1063 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 1063 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
1064 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1064 unittest.expect(o.subaccountId, unittest.equals('foo')); |
1065 checkUnnamed2524(o.traffickerEmails); | 1065 checkUnnamed2618(o.traffickerEmails); |
1066 } | 1066 } |
1067 buildCounterCampaign--; | 1067 buildCounterCampaign--; |
1068 } | 1068 } |
1069 | 1069 |
1070 core.int buildCounterCampaignCreativeAssociation = 0; | 1070 core.int buildCounterCampaignCreativeAssociation = 0; |
1071 buildCampaignCreativeAssociation() { | 1071 buildCampaignCreativeAssociation() { |
1072 var o = new api.CampaignCreativeAssociation(); | 1072 var o = new api.CampaignCreativeAssociation(); |
1073 buildCounterCampaignCreativeAssociation++; | 1073 buildCounterCampaignCreativeAssociation++; |
1074 if (buildCounterCampaignCreativeAssociation < 3) { | 1074 if (buildCounterCampaignCreativeAssociation < 3) { |
1075 o.creativeId = "foo"; | 1075 o.creativeId = "foo"; |
1076 o.kind = "foo"; | 1076 o.kind = "foo"; |
1077 } | 1077 } |
1078 buildCounterCampaignCreativeAssociation--; | 1078 buildCounterCampaignCreativeAssociation--; |
1079 return o; | 1079 return o; |
1080 } | 1080 } |
1081 | 1081 |
1082 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { | 1082 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { |
1083 buildCounterCampaignCreativeAssociation++; | 1083 buildCounterCampaignCreativeAssociation++; |
1084 if (buildCounterCampaignCreativeAssociation < 3) { | 1084 if (buildCounterCampaignCreativeAssociation < 3) { |
1085 unittest.expect(o.creativeId, unittest.equals('foo')); | 1085 unittest.expect(o.creativeId, unittest.equals('foo')); |
1086 unittest.expect(o.kind, unittest.equals('foo')); | 1086 unittest.expect(o.kind, unittest.equals('foo')); |
1087 } | 1087 } |
1088 buildCounterCampaignCreativeAssociation--; | 1088 buildCounterCampaignCreativeAssociation--; |
1089 } | 1089 } |
1090 | 1090 |
1091 buildUnnamed2525() { | 1091 buildUnnamed2619() { |
1092 var o = new core.List<api.CampaignCreativeAssociation>(); | 1092 var o = new core.List<api.CampaignCreativeAssociation>(); |
1093 o.add(buildCampaignCreativeAssociation()); | 1093 o.add(buildCampaignCreativeAssociation()); |
1094 o.add(buildCampaignCreativeAssociation()); | 1094 o.add(buildCampaignCreativeAssociation()); |
1095 return o; | 1095 return o; |
1096 } | 1096 } |
1097 | 1097 |
1098 checkUnnamed2525(core.List<api.CampaignCreativeAssociation> o) { | 1098 checkUnnamed2619(core.List<api.CampaignCreativeAssociation> o) { |
1099 unittest.expect(o, unittest.hasLength(2)); | 1099 unittest.expect(o, unittest.hasLength(2)); |
1100 checkCampaignCreativeAssociation(o[0]); | 1100 checkCampaignCreativeAssociation(o[0]); |
1101 checkCampaignCreativeAssociation(o[1]); | 1101 checkCampaignCreativeAssociation(o[1]); |
1102 } | 1102 } |
1103 | 1103 |
1104 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; | 1104 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; |
1105 buildCampaignCreativeAssociationsListResponse() { | 1105 buildCampaignCreativeAssociationsListResponse() { |
1106 var o = new api.CampaignCreativeAssociationsListResponse(); | 1106 var o = new api.CampaignCreativeAssociationsListResponse(); |
1107 buildCounterCampaignCreativeAssociationsListResponse++; | 1107 buildCounterCampaignCreativeAssociationsListResponse++; |
1108 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1108 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
1109 o.campaignCreativeAssociations = buildUnnamed2525(); | 1109 o.campaignCreativeAssociations = buildUnnamed2619(); |
1110 o.kind = "foo"; | 1110 o.kind = "foo"; |
1111 o.nextPageToken = "foo"; | 1111 o.nextPageToken = "foo"; |
1112 } | 1112 } |
1113 buildCounterCampaignCreativeAssociationsListResponse--; | 1113 buildCounterCampaignCreativeAssociationsListResponse--; |
1114 return o; | 1114 return o; |
1115 } | 1115 } |
1116 | 1116 |
1117 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { | 1117 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { |
1118 buildCounterCampaignCreativeAssociationsListResponse++; | 1118 buildCounterCampaignCreativeAssociationsListResponse++; |
1119 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1119 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
1120 checkUnnamed2525(o.campaignCreativeAssociations); | 1120 checkUnnamed2619(o.campaignCreativeAssociations); |
1121 unittest.expect(o.kind, unittest.equals('foo')); | 1121 unittest.expect(o.kind, unittest.equals('foo')); |
1122 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1122 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1123 } | 1123 } |
1124 buildCounterCampaignCreativeAssociationsListResponse--; | 1124 buildCounterCampaignCreativeAssociationsListResponse--; |
1125 } | 1125 } |
1126 | 1126 |
1127 buildUnnamed2526() { | 1127 buildUnnamed2620() { |
1128 var o = new core.List<api.Campaign>(); | 1128 var o = new core.List<api.Campaign>(); |
1129 o.add(buildCampaign()); | 1129 o.add(buildCampaign()); |
1130 o.add(buildCampaign()); | 1130 o.add(buildCampaign()); |
1131 return o; | 1131 return o; |
1132 } | 1132 } |
1133 | 1133 |
1134 checkUnnamed2526(core.List<api.Campaign> o) { | 1134 checkUnnamed2620(core.List<api.Campaign> o) { |
1135 unittest.expect(o, unittest.hasLength(2)); | 1135 unittest.expect(o, unittest.hasLength(2)); |
1136 checkCampaign(o[0]); | 1136 checkCampaign(o[0]); |
1137 checkCampaign(o[1]); | 1137 checkCampaign(o[1]); |
1138 } | 1138 } |
1139 | 1139 |
1140 core.int buildCounterCampaignsListResponse = 0; | 1140 core.int buildCounterCampaignsListResponse = 0; |
1141 buildCampaignsListResponse() { | 1141 buildCampaignsListResponse() { |
1142 var o = new api.CampaignsListResponse(); | 1142 var o = new api.CampaignsListResponse(); |
1143 buildCounterCampaignsListResponse++; | 1143 buildCounterCampaignsListResponse++; |
1144 if (buildCounterCampaignsListResponse < 3) { | 1144 if (buildCounterCampaignsListResponse < 3) { |
1145 o.campaigns = buildUnnamed2526(); | 1145 o.campaigns = buildUnnamed2620(); |
1146 o.kind = "foo"; | 1146 o.kind = "foo"; |
1147 o.nextPageToken = "foo"; | 1147 o.nextPageToken = "foo"; |
1148 } | 1148 } |
1149 buildCounterCampaignsListResponse--; | 1149 buildCounterCampaignsListResponse--; |
1150 return o; | 1150 return o; |
1151 } | 1151 } |
1152 | 1152 |
1153 checkCampaignsListResponse(api.CampaignsListResponse o) { | 1153 checkCampaignsListResponse(api.CampaignsListResponse o) { |
1154 buildCounterCampaignsListResponse++; | 1154 buildCounterCampaignsListResponse++; |
1155 if (buildCounterCampaignsListResponse < 3) { | 1155 if (buildCounterCampaignsListResponse < 3) { |
1156 checkUnnamed2526(o.campaigns); | 1156 checkUnnamed2620(o.campaigns); |
1157 unittest.expect(o.kind, unittest.equals('foo')); | 1157 unittest.expect(o.kind, unittest.equals('foo')); |
1158 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1158 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1159 } | 1159 } |
1160 buildCounterCampaignsListResponse--; | 1160 buildCounterCampaignsListResponse--; |
1161 } | 1161 } |
1162 | 1162 |
1163 core.int buildCounterChangeLog = 0; | 1163 core.int buildCounterChangeLog = 0; |
1164 buildChangeLog() { | 1164 buildChangeLog() { |
1165 var o = new api.ChangeLog(); | 1165 var o = new api.ChangeLog(); |
1166 buildCounterChangeLog++; | 1166 buildCounterChangeLog++; |
(...skipping 31 matching lines...) Loading... |
1198 unittest.expect(o.objectType, unittest.equals('foo')); | 1198 unittest.expect(o.objectType, unittest.equals('foo')); |
1199 unittest.expect(o.oldValue, unittest.equals('foo')); | 1199 unittest.expect(o.oldValue, unittest.equals('foo')); |
1200 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1200 unittest.expect(o.subaccountId, unittest.equals('foo')); |
1201 unittest.expect(o.transactionId, unittest.equals('foo')); | 1201 unittest.expect(o.transactionId, unittest.equals('foo')); |
1202 unittest.expect(o.userProfileId, unittest.equals('foo')); | 1202 unittest.expect(o.userProfileId, unittest.equals('foo')); |
1203 unittest.expect(o.userProfileName, unittest.equals('foo')); | 1203 unittest.expect(o.userProfileName, unittest.equals('foo')); |
1204 } | 1204 } |
1205 buildCounterChangeLog--; | 1205 buildCounterChangeLog--; |
1206 } | 1206 } |
1207 | 1207 |
1208 buildUnnamed2527() { | 1208 buildUnnamed2621() { |
1209 var o = new core.List<api.ChangeLog>(); | 1209 var o = new core.List<api.ChangeLog>(); |
1210 o.add(buildChangeLog()); | 1210 o.add(buildChangeLog()); |
1211 o.add(buildChangeLog()); | 1211 o.add(buildChangeLog()); |
1212 return o; | 1212 return o; |
1213 } | 1213 } |
1214 | 1214 |
1215 checkUnnamed2527(core.List<api.ChangeLog> o) { | 1215 checkUnnamed2621(core.List<api.ChangeLog> o) { |
1216 unittest.expect(o, unittest.hasLength(2)); | 1216 unittest.expect(o, unittest.hasLength(2)); |
1217 checkChangeLog(o[0]); | 1217 checkChangeLog(o[0]); |
1218 checkChangeLog(o[1]); | 1218 checkChangeLog(o[1]); |
1219 } | 1219 } |
1220 | 1220 |
1221 core.int buildCounterChangeLogsListResponse = 0; | 1221 core.int buildCounterChangeLogsListResponse = 0; |
1222 buildChangeLogsListResponse() { | 1222 buildChangeLogsListResponse() { |
1223 var o = new api.ChangeLogsListResponse(); | 1223 var o = new api.ChangeLogsListResponse(); |
1224 buildCounterChangeLogsListResponse++; | 1224 buildCounterChangeLogsListResponse++; |
1225 if (buildCounterChangeLogsListResponse < 3) { | 1225 if (buildCounterChangeLogsListResponse < 3) { |
1226 o.changeLogs = buildUnnamed2527(); | 1226 o.changeLogs = buildUnnamed2621(); |
1227 o.kind = "foo"; | 1227 o.kind = "foo"; |
1228 o.nextPageToken = "foo"; | 1228 o.nextPageToken = "foo"; |
1229 } | 1229 } |
1230 buildCounterChangeLogsListResponse--; | 1230 buildCounterChangeLogsListResponse--; |
1231 return o; | 1231 return o; |
1232 } | 1232 } |
1233 | 1233 |
1234 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { | 1234 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { |
1235 buildCounterChangeLogsListResponse++; | 1235 buildCounterChangeLogsListResponse++; |
1236 if (buildCounterChangeLogsListResponse < 3) { | 1236 if (buildCounterChangeLogsListResponse < 3) { |
1237 checkUnnamed2527(o.changeLogs); | 1237 checkUnnamed2621(o.changeLogs); |
1238 unittest.expect(o.kind, unittest.equals('foo')); | 1238 unittest.expect(o.kind, unittest.equals('foo')); |
1239 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1239 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1240 } | 1240 } |
1241 buildCounterChangeLogsListResponse--; | 1241 buildCounterChangeLogsListResponse--; |
1242 } | 1242 } |
1243 | 1243 |
1244 buildUnnamed2528() { | 1244 buildUnnamed2622() { |
1245 var o = new core.List<api.City>(); | 1245 var o = new core.List<api.City>(); |
1246 o.add(buildCity()); | 1246 o.add(buildCity()); |
1247 o.add(buildCity()); | 1247 o.add(buildCity()); |
1248 return o; | 1248 return o; |
1249 } | 1249 } |
1250 | 1250 |
1251 checkUnnamed2528(core.List<api.City> o) { | 1251 checkUnnamed2622(core.List<api.City> o) { |
1252 unittest.expect(o, unittest.hasLength(2)); | 1252 unittest.expect(o, unittest.hasLength(2)); |
1253 checkCity(o[0]); | 1253 checkCity(o[0]); |
1254 checkCity(o[1]); | 1254 checkCity(o[1]); |
1255 } | 1255 } |
1256 | 1256 |
1257 core.int buildCounterCitiesListResponse = 0; | 1257 core.int buildCounterCitiesListResponse = 0; |
1258 buildCitiesListResponse() { | 1258 buildCitiesListResponse() { |
1259 var o = new api.CitiesListResponse(); | 1259 var o = new api.CitiesListResponse(); |
1260 buildCounterCitiesListResponse++; | 1260 buildCounterCitiesListResponse++; |
1261 if (buildCounterCitiesListResponse < 3) { | 1261 if (buildCounterCitiesListResponse < 3) { |
1262 o.cities = buildUnnamed2528(); | 1262 o.cities = buildUnnamed2622(); |
1263 o.kind = "foo"; | 1263 o.kind = "foo"; |
1264 } | 1264 } |
1265 buildCounterCitiesListResponse--; | 1265 buildCounterCitiesListResponse--; |
1266 return o; | 1266 return o; |
1267 } | 1267 } |
1268 | 1268 |
1269 checkCitiesListResponse(api.CitiesListResponse o) { | 1269 checkCitiesListResponse(api.CitiesListResponse o) { |
1270 buildCounterCitiesListResponse++; | 1270 buildCounterCitiesListResponse++; |
1271 if (buildCounterCitiesListResponse < 3) { | 1271 if (buildCounterCitiesListResponse < 3) { |
1272 checkUnnamed2528(o.cities); | 1272 checkUnnamed2622(o.cities); |
1273 unittest.expect(o.kind, unittest.equals('foo')); | 1273 unittest.expect(o.kind, unittest.equals('foo')); |
1274 } | 1274 } |
1275 buildCounterCitiesListResponse--; | 1275 buildCounterCitiesListResponse--; |
1276 } | 1276 } |
1277 | 1277 |
1278 core.int buildCounterCity = 0; | 1278 core.int buildCounterCity = 0; |
1279 buildCity() { | 1279 buildCity() { |
1280 var o = new api.City(); | 1280 var o = new api.City(); |
1281 buildCounterCity++; | 1281 buildCounterCity++; |
1282 if (buildCounterCity < 3) { | 1282 if (buildCounterCity < 3) { |
(...skipping 162 matching lines...) Loading... |
1445 checkConnectionType(api.ConnectionType o) { | 1445 checkConnectionType(api.ConnectionType o) { |
1446 buildCounterConnectionType++; | 1446 buildCounterConnectionType++; |
1447 if (buildCounterConnectionType < 3) { | 1447 if (buildCounterConnectionType < 3) { |
1448 unittest.expect(o.id, unittest.equals('foo')); | 1448 unittest.expect(o.id, unittest.equals('foo')); |
1449 unittest.expect(o.kind, unittest.equals('foo')); | 1449 unittest.expect(o.kind, unittest.equals('foo')); |
1450 unittest.expect(o.name, unittest.equals('foo')); | 1450 unittest.expect(o.name, unittest.equals('foo')); |
1451 } | 1451 } |
1452 buildCounterConnectionType--; | 1452 buildCounterConnectionType--; |
1453 } | 1453 } |
1454 | 1454 |
1455 buildUnnamed2529() { | 1455 buildUnnamed2623() { |
1456 var o = new core.List<api.ConnectionType>(); | 1456 var o = new core.List<api.ConnectionType>(); |
1457 o.add(buildConnectionType()); | 1457 o.add(buildConnectionType()); |
1458 o.add(buildConnectionType()); | 1458 o.add(buildConnectionType()); |
1459 return o; | 1459 return o; |
1460 } | 1460 } |
1461 | 1461 |
1462 checkUnnamed2529(core.List<api.ConnectionType> o) { | 1462 checkUnnamed2623(core.List<api.ConnectionType> o) { |
1463 unittest.expect(o, unittest.hasLength(2)); | 1463 unittest.expect(o, unittest.hasLength(2)); |
1464 checkConnectionType(o[0]); | 1464 checkConnectionType(o[0]); |
1465 checkConnectionType(o[1]); | 1465 checkConnectionType(o[1]); |
1466 } | 1466 } |
1467 | 1467 |
1468 core.int buildCounterConnectionTypesListResponse = 0; | 1468 core.int buildCounterConnectionTypesListResponse = 0; |
1469 buildConnectionTypesListResponse() { | 1469 buildConnectionTypesListResponse() { |
1470 var o = new api.ConnectionTypesListResponse(); | 1470 var o = new api.ConnectionTypesListResponse(); |
1471 buildCounterConnectionTypesListResponse++; | 1471 buildCounterConnectionTypesListResponse++; |
1472 if (buildCounterConnectionTypesListResponse < 3) { | 1472 if (buildCounterConnectionTypesListResponse < 3) { |
1473 o.connectionTypes = buildUnnamed2529(); | 1473 o.connectionTypes = buildUnnamed2623(); |
1474 o.kind = "foo"; | 1474 o.kind = "foo"; |
1475 } | 1475 } |
1476 buildCounterConnectionTypesListResponse--; | 1476 buildCounterConnectionTypesListResponse--; |
1477 return o; | 1477 return o; |
1478 } | 1478 } |
1479 | 1479 |
1480 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { | 1480 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { |
1481 buildCounterConnectionTypesListResponse++; | 1481 buildCounterConnectionTypesListResponse++; |
1482 if (buildCounterConnectionTypesListResponse < 3) { | 1482 if (buildCounterConnectionTypesListResponse < 3) { |
1483 checkUnnamed2529(o.connectionTypes); | 1483 checkUnnamed2623(o.connectionTypes); |
1484 unittest.expect(o.kind, unittest.equals('foo')); | 1484 unittest.expect(o.kind, unittest.equals('foo')); |
1485 } | 1485 } |
1486 buildCounterConnectionTypesListResponse--; | 1486 buildCounterConnectionTypesListResponse--; |
1487 } | 1487 } |
1488 | 1488 |
1489 buildUnnamed2530() { | 1489 buildUnnamed2624() { |
1490 var o = new core.List<api.ContentCategory>(); | 1490 var o = new core.List<api.ContentCategory>(); |
1491 o.add(buildContentCategory()); | 1491 o.add(buildContentCategory()); |
1492 o.add(buildContentCategory()); | 1492 o.add(buildContentCategory()); |
1493 return o; | 1493 return o; |
1494 } | 1494 } |
1495 | 1495 |
1496 checkUnnamed2530(core.List<api.ContentCategory> o) { | 1496 checkUnnamed2624(core.List<api.ContentCategory> o) { |
1497 unittest.expect(o, unittest.hasLength(2)); | 1497 unittest.expect(o, unittest.hasLength(2)); |
1498 checkContentCategory(o[0]); | 1498 checkContentCategory(o[0]); |
1499 checkContentCategory(o[1]); | 1499 checkContentCategory(o[1]); |
1500 } | 1500 } |
1501 | 1501 |
1502 core.int buildCounterContentCategoriesListResponse = 0; | 1502 core.int buildCounterContentCategoriesListResponse = 0; |
1503 buildContentCategoriesListResponse() { | 1503 buildContentCategoriesListResponse() { |
1504 var o = new api.ContentCategoriesListResponse(); | 1504 var o = new api.ContentCategoriesListResponse(); |
1505 buildCounterContentCategoriesListResponse++; | 1505 buildCounterContentCategoriesListResponse++; |
1506 if (buildCounterContentCategoriesListResponse < 3) { | 1506 if (buildCounterContentCategoriesListResponse < 3) { |
1507 o.contentCategories = buildUnnamed2530(); | 1507 o.contentCategories = buildUnnamed2624(); |
1508 o.kind = "foo"; | 1508 o.kind = "foo"; |
1509 o.nextPageToken = "foo"; | 1509 o.nextPageToken = "foo"; |
1510 } | 1510 } |
1511 buildCounterContentCategoriesListResponse--; | 1511 buildCounterContentCategoriesListResponse--; |
1512 return o; | 1512 return o; |
1513 } | 1513 } |
1514 | 1514 |
1515 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { | 1515 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { |
1516 buildCounterContentCategoriesListResponse++; | 1516 buildCounterContentCategoriesListResponse++; |
1517 if (buildCounterContentCategoriesListResponse < 3) { | 1517 if (buildCounterContentCategoriesListResponse < 3) { |
1518 checkUnnamed2530(o.contentCategories); | 1518 checkUnnamed2624(o.contentCategories); |
1519 unittest.expect(o.kind, unittest.equals('foo')); | 1519 unittest.expect(o.kind, unittest.equals('foo')); |
1520 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1520 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
1521 } | 1521 } |
1522 buildCounterContentCategoriesListResponse--; | 1522 buildCounterContentCategoriesListResponse--; |
1523 } | 1523 } |
1524 | 1524 |
1525 core.int buildCounterContentCategory = 0; | 1525 core.int buildCounterContentCategory = 0; |
1526 buildContentCategory() { | 1526 buildContentCategory() { |
1527 var o = new api.ContentCategory(); | 1527 var o = new api.ContentCategory(); |
1528 buildCounterContentCategory++; | 1528 buildCounterContentCategory++; |
(...skipping 11 matching lines...) Loading... |
1540 buildCounterContentCategory++; | 1540 buildCounterContentCategory++; |
1541 if (buildCounterContentCategory < 3) { | 1541 if (buildCounterContentCategory < 3) { |
1542 unittest.expect(o.accountId, unittest.equals('foo')); | 1542 unittest.expect(o.accountId, unittest.equals('foo')); |
1543 unittest.expect(o.id, unittest.equals('foo')); | 1543 unittest.expect(o.id, unittest.equals('foo')); |
1544 unittest.expect(o.kind, unittest.equals('foo')); | 1544 unittest.expect(o.kind, unittest.equals('foo')); |
1545 unittest.expect(o.name, unittest.equals('foo')); | 1545 unittest.expect(o.name, unittest.equals('foo')); |
1546 } | 1546 } |
1547 buildCounterContentCategory--; | 1547 buildCounterContentCategory--; |
1548 } | 1548 } |
1549 | 1549 |
1550 buildUnnamed2531() { | 1550 buildUnnamed2625() { |
1551 var o = new core.List<api.CustomFloodlightVariable>(); | 1551 var o = new core.List<api.CustomFloodlightVariable>(); |
1552 o.add(buildCustomFloodlightVariable()); | 1552 o.add(buildCustomFloodlightVariable()); |
1553 o.add(buildCustomFloodlightVariable()); | 1553 o.add(buildCustomFloodlightVariable()); |
1554 return o; | 1554 return o; |
1555 } | 1555 } |
1556 | 1556 |
1557 checkUnnamed2531(core.List<api.CustomFloodlightVariable> o) { | 1557 checkUnnamed2625(core.List<api.CustomFloodlightVariable> o) { |
1558 unittest.expect(o, unittest.hasLength(2)); | 1558 unittest.expect(o, unittest.hasLength(2)); |
1559 checkCustomFloodlightVariable(o[0]); | 1559 checkCustomFloodlightVariable(o[0]); |
1560 checkCustomFloodlightVariable(o[1]); | 1560 checkCustomFloodlightVariable(o[1]); |
1561 } | 1561 } |
1562 | 1562 |
1563 buildUnnamed2532() { | 1563 buildUnnamed2626() { |
1564 var o = new core.List<core.String>(); | 1564 var o = new core.List<core.String>(); |
1565 o.add("foo"); | 1565 o.add("foo"); |
1566 o.add("foo"); | 1566 o.add("foo"); |
1567 return o; | 1567 return o; |
1568 } | 1568 } |
1569 | 1569 |
1570 checkUnnamed2532(core.List<core.String> o) { | 1570 checkUnnamed2626(core.List<core.String> o) { |
1571 unittest.expect(o, unittest.hasLength(2)); | 1571 unittest.expect(o, unittest.hasLength(2)); |
1572 unittest.expect(o[0], unittest.equals('foo')); | 1572 unittest.expect(o[0], unittest.equals('foo')); |
1573 unittest.expect(o[1], unittest.equals('foo')); | 1573 unittest.expect(o[1], unittest.equals('foo')); |
1574 } | 1574 } |
1575 | 1575 |
1576 core.int buildCounterConversion = 0; | 1576 core.int buildCounterConversion = 0; |
1577 buildConversion() { | 1577 buildConversion() { |
1578 var o = new api.Conversion(); | 1578 var o = new api.Conversion(); |
1579 buildCounterConversion++; | 1579 buildCounterConversion++; |
1580 if (buildCounterConversion < 3) { | 1580 if (buildCounterConversion < 3) { |
1581 o.childDirectedTreatment = true; | 1581 o.childDirectedTreatment = true; |
1582 o.customVariables = buildUnnamed2531(); | 1582 o.customVariables = buildUnnamed2625(); |
1583 o.encryptedUserId = "foo"; | 1583 o.encryptedUserId = "foo"; |
1584 o.encryptedUserIdCandidates = buildUnnamed2532(); | 1584 o.encryptedUserIdCandidates = buildUnnamed2626(); |
1585 o.floodlightActivityId = "foo"; | 1585 o.floodlightActivityId = "foo"; |
1586 o.floodlightConfigurationId = "foo"; | 1586 o.floodlightConfigurationId = "foo"; |
1587 o.kind = "foo"; | 1587 o.kind = "foo"; |
1588 o.limitAdTracking = true; | 1588 o.limitAdTracking = true; |
1589 o.mobileDeviceId = "foo"; | 1589 o.mobileDeviceId = "foo"; |
1590 o.ordinal = "foo"; | 1590 o.ordinal = "foo"; |
1591 o.quantity = "foo"; | 1591 o.quantity = "foo"; |
1592 o.timestampMicros = "foo"; | 1592 o.timestampMicros = "foo"; |
1593 o.value = 42.0; | 1593 o.value = 42.0; |
1594 } | 1594 } |
1595 buildCounterConversion--; | 1595 buildCounterConversion--; |
1596 return o; | 1596 return o; |
1597 } | 1597 } |
1598 | 1598 |
1599 checkConversion(api.Conversion o) { | 1599 checkConversion(api.Conversion o) { |
1600 buildCounterConversion++; | 1600 buildCounterConversion++; |
1601 if (buildCounterConversion < 3) { | 1601 if (buildCounterConversion < 3) { |
1602 unittest.expect(o.childDirectedTreatment, unittest.isTrue); | 1602 unittest.expect(o.childDirectedTreatment, unittest.isTrue); |
1603 checkUnnamed2531(o.customVariables); | 1603 checkUnnamed2625(o.customVariables); |
1604 unittest.expect(o.encryptedUserId, unittest.equals('foo')); | 1604 unittest.expect(o.encryptedUserId, unittest.equals('foo')); |
1605 checkUnnamed2532(o.encryptedUserIdCandidates); | 1605 checkUnnamed2626(o.encryptedUserIdCandidates); |
1606 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 1606 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
1607 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 1607 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
1608 unittest.expect(o.kind, unittest.equals('foo')); | 1608 unittest.expect(o.kind, unittest.equals('foo')); |
1609 unittest.expect(o.limitAdTracking, unittest.isTrue); | 1609 unittest.expect(o.limitAdTracking, unittest.isTrue); |
1610 unittest.expect(o.mobileDeviceId, unittest.equals('foo')); | 1610 unittest.expect(o.mobileDeviceId, unittest.equals('foo')); |
1611 unittest.expect(o.ordinal, unittest.equals('foo')); | 1611 unittest.expect(o.ordinal, unittest.equals('foo')); |
1612 unittest.expect(o.quantity, unittest.equals('foo')); | 1612 unittest.expect(o.quantity, unittest.equals('foo')); |
1613 unittest.expect(o.timestampMicros, unittest.equals('foo')); | 1613 unittest.expect(o.timestampMicros, unittest.equals('foo')); |
1614 unittest.expect(o.value, unittest.equals(42.0)); | 1614 unittest.expect(o.value, unittest.equals(42.0)); |
1615 } | 1615 } |
(...skipping 16 matching lines...) Loading... |
1632 checkConversionError(api.ConversionError o) { | 1632 checkConversionError(api.ConversionError o) { |
1633 buildCounterConversionError++; | 1633 buildCounterConversionError++; |
1634 if (buildCounterConversionError < 3) { | 1634 if (buildCounterConversionError < 3) { |
1635 unittest.expect(o.code, unittest.equals('foo')); | 1635 unittest.expect(o.code, unittest.equals('foo')); |
1636 unittest.expect(o.kind, unittest.equals('foo')); | 1636 unittest.expect(o.kind, unittest.equals('foo')); |
1637 unittest.expect(o.message, unittest.equals('foo')); | 1637 unittest.expect(o.message, unittest.equals('foo')); |
1638 } | 1638 } |
1639 buildCounterConversionError--; | 1639 buildCounterConversionError--; |
1640 } | 1640 } |
1641 | 1641 |
1642 buildUnnamed2533() { | 1642 buildUnnamed2627() { |
1643 var o = new core.List<api.ConversionError>(); | 1643 var o = new core.List<api.ConversionError>(); |
1644 o.add(buildConversionError()); | 1644 o.add(buildConversionError()); |
1645 o.add(buildConversionError()); | 1645 o.add(buildConversionError()); |
1646 return o; | 1646 return o; |
1647 } | 1647 } |
1648 | 1648 |
1649 checkUnnamed2533(core.List<api.ConversionError> o) { | 1649 checkUnnamed2627(core.List<api.ConversionError> o) { |
1650 unittest.expect(o, unittest.hasLength(2)); | 1650 unittest.expect(o, unittest.hasLength(2)); |
1651 checkConversionError(o[0]); | 1651 checkConversionError(o[0]); |
1652 checkConversionError(o[1]); | 1652 checkConversionError(o[1]); |
1653 } | 1653 } |
1654 | 1654 |
1655 core.int buildCounterConversionStatus = 0; | 1655 core.int buildCounterConversionStatus = 0; |
1656 buildConversionStatus() { | 1656 buildConversionStatus() { |
1657 var o = new api.ConversionStatus(); | 1657 var o = new api.ConversionStatus(); |
1658 buildCounterConversionStatus++; | 1658 buildCounterConversionStatus++; |
1659 if (buildCounterConversionStatus < 3) { | 1659 if (buildCounterConversionStatus < 3) { |
1660 o.conversion = buildConversion(); | 1660 o.conversion = buildConversion(); |
1661 o.errors = buildUnnamed2533(); | 1661 o.errors = buildUnnamed2627(); |
1662 o.kind = "foo"; | 1662 o.kind = "foo"; |
1663 } | 1663 } |
1664 buildCounterConversionStatus--; | 1664 buildCounterConversionStatus--; |
1665 return o; | 1665 return o; |
1666 } | 1666 } |
1667 | 1667 |
1668 checkConversionStatus(api.ConversionStatus o) { | 1668 checkConversionStatus(api.ConversionStatus o) { |
1669 buildCounterConversionStatus++; | 1669 buildCounterConversionStatus++; |
1670 if (buildCounterConversionStatus < 3) { | 1670 if (buildCounterConversionStatus < 3) { |
1671 checkConversion(o.conversion); | 1671 checkConversion(o.conversion); |
1672 checkUnnamed2533(o.errors); | 1672 checkUnnamed2627(o.errors); |
1673 unittest.expect(o.kind, unittest.equals('foo')); | 1673 unittest.expect(o.kind, unittest.equals('foo')); |
1674 } | 1674 } |
1675 buildCounterConversionStatus--; | 1675 buildCounterConversionStatus--; |
1676 } | 1676 } |
1677 | 1677 |
1678 buildUnnamed2534() { | 1678 buildUnnamed2628() { |
1679 var o = new core.List<api.Conversion>(); | 1679 var o = new core.List<api.Conversion>(); |
1680 o.add(buildConversion()); | 1680 o.add(buildConversion()); |
1681 o.add(buildConversion()); | 1681 o.add(buildConversion()); |
1682 return o; | 1682 return o; |
1683 } | 1683 } |
1684 | 1684 |
1685 checkUnnamed2534(core.List<api.Conversion> o) { | 1685 checkUnnamed2628(core.List<api.Conversion> o) { |
1686 unittest.expect(o, unittest.hasLength(2)); | 1686 unittest.expect(o, unittest.hasLength(2)); |
1687 checkConversion(o[0]); | 1687 checkConversion(o[0]); |
1688 checkConversion(o[1]); | 1688 checkConversion(o[1]); |
1689 } | 1689 } |
1690 | 1690 |
1691 core.int buildCounterConversionsBatchInsertRequest = 0; | 1691 core.int buildCounterConversionsBatchInsertRequest = 0; |
1692 buildConversionsBatchInsertRequest() { | 1692 buildConversionsBatchInsertRequest() { |
1693 var o = new api.ConversionsBatchInsertRequest(); | 1693 var o = new api.ConversionsBatchInsertRequest(); |
1694 buildCounterConversionsBatchInsertRequest++; | 1694 buildCounterConversionsBatchInsertRequest++; |
1695 if (buildCounterConversionsBatchInsertRequest < 3) { | 1695 if (buildCounterConversionsBatchInsertRequest < 3) { |
1696 o.conversions = buildUnnamed2534(); | 1696 o.conversions = buildUnnamed2628(); |
1697 o.encryptionInfo = buildEncryptionInfo(); | 1697 o.encryptionInfo = buildEncryptionInfo(); |
1698 o.kind = "foo"; | 1698 o.kind = "foo"; |
1699 } | 1699 } |
1700 buildCounterConversionsBatchInsertRequest--; | 1700 buildCounterConversionsBatchInsertRequest--; |
1701 return o; | 1701 return o; |
1702 } | 1702 } |
1703 | 1703 |
1704 checkConversionsBatchInsertRequest(api.ConversionsBatchInsertRequest o) { | 1704 checkConversionsBatchInsertRequest(api.ConversionsBatchInsertRequest o) { |
1705 buildCounterConversionsBatchInsertRequest++; | 1705 buildCounterConversionsBatchInsertRequest++; |
1706 if (buildCounterConversionsBatchInsertRequest < 3) { | 1706 if (buildCounterConversionsBatchInsertRequest < 3) { |
1707 checkUnnamed2534(o.conversions); | 1707 checkUnnamed2628(o.conversions); |
1708 checkEncryptionInfo(o.encryptionInfo); | 1708 checkEncryptionInfo(o.encryptionInfo); |
1709 unittest.expect(o.kind, unittest.equals('foo')); | 1709 unittest.expect(o.kind, unittest.equals('foo')); |
1710 } | 1710 } |
1711 buildCounterConversionsBatchInsertRequest--; | 1711 buildCounterConversionsBatchInsertRequest--; |
1712 } | 1712 } |
1713 | 1713 |
1714 buildUnnamed2535() { | 1714 buildUnnamed2629() { |
1715 var o = new core.List<api.ConversionStatus>(); | 1715 var o = new core.List<api.ConversionStatus>(); |
1716 o.add(buildConversionStatus()); | 1716 o.add(buildConversionStatus()); |
1717 o.add(buildConversionStatus()); | 1717 o.add(buildConversionStatus()); |
1718 return o; | 1718 return o; |
1719 } | 1719 } |
1720 | 1720 |
1721 checkUnnamed2535(core.List<api.ConversionStatus> o) { | 1721 checkUnnamed2629(core.List<api.ConversionStatus> o) { |
1722 unittest.expect(o, unittest.hasLength(2)); | 1722 unittest.expect(o, unittest.hasLength(2)); |
1723 checkConversionStatus(o[0]); | 1723 checkConversionStatus(o[0]); |
1724 checkConversionStatus(o[1]); | 1724 checkConversionStatus(o[1]); |
1725 } | 1725 } |
1726 | 1726 |
1727 core.int buildCounterConversionsBatchInsertResponse = 0; | 1727 core.int buildCounterConversionsBatchInsertResponse = 0; |
1728 buildConversionsBatchInsertResponse() { | 1728 buildConversionsBatchInsertResponse() { |
1729 var o = new api.ConversionsBatchInsertResponse(); | 1729 var o = new api.ConversionsBatchInsertResponse(); |
1730 buildCounterConversionsBatchInsertResponse++; | 1730 buildCounterConversionsBatchInsertResponse++; |
1731 if (buildCounterConversionsBatchInsertResponse < 3) { | 1731 if (buildCounterConversionsBatchInsertResponse < 3) { |
1732 o.hasFailures = true; | 1732 o.hasFailures = true; |
1733 o.kind = "foo"; | 1733 o.kind = "foo"; |
1734 o.status = buildUnnamed2535(); | 1734 o.status = buildUnnamed2629(); |
1735 } | 1735 } |
1736 buildCounterConversionsBatchInsertResponse--; | 1736 buildCounterConversionsBatchInsertResponse--; |
1737 return o; | 1737 return o; |
1738 } | 1738 } |
1739 | 1739 |
1740 checkConversionsBatchInsertResponse(api.ConversionsBatchInsertResponse o) { | 1740 checkConversionsBatchInsertResponse(api.ConversionsBatchInsertResponse o) { |
1741 buildCounterConversionsBatchInsertResponse++; | 1741 buildCounterConversionsBatchInsertResponse++; |
1742 if (buildCounterConversionsBatchInsertResponse < 3) { | 1742 if (buildCounterConversionsBatchInsertResponse < 3) { |
1743 unittest.expect(o.hasFailures, unittest.isTrue); | 1743 unittest.expect(o.hasFailures, unittest.isTrue); |
1744 unittest.expect(o.kind, unittest.equals('foo')); | 1744 unittest.expect(o.kind, unittest.equals('foo')); |
1745 checkUnnamed2535(o.status); | 1745 checkUnnamed2629(o.status); |
1746 } | 1746 } |
1747 buildCounterConversionsBatchInsertResponse--; | 1747 buildCounterConversionsBatchInsertResponse--; |
1748 } | 1748 } |
1749 | 1749 |
1750 buildUnnamed2536() { | 1750 buildUnnamed2630() { |
1751 var o = new core.List<api.Country>(); | 1751 var o = new core.List<api.Country>(); |
1752 o.add(buildCountry()); | 1752 o.add(buildCountry()); |
1753 o.add(buildCountry()); | 1753 o.add(buildCountry()); |
1754 return o; | 1754 return o; |
1755 } | 1755 } |
1756 | 1756 |
1757 checkUnnamed2536(core.List<api.Country> o) { | 1757 checkUnnamed2630(core.List<api.Country> o) { |
1758 unittest.expect(o, unittest.hasLength(2)); | 1758 unittest.expect(o, unittest.hasLength(2)); |
1759 checkCountry(o[0]); | 1759 checkCountry(o[0]); |
1760 checkCountry(o[1]); | 1760 checkCountry(o[1]); |
1761 } | 1761 } |
1762 | 1762 |
1763 core.int buildCounterCountriesListResponse = 0; | 1763 core.int buildCounterCountriesListResponse = 0; |
1764 buildCountriesListResponse() { | 1764 buildCountriesListResponse() { |
1765 var o = new api.CountriesListResponse(); | 1765 var o = new api.CountriesListResponse(); |
1766 buildCounterCountriesListResponse++; | 1766 buildCounterCountriesListResponse++; |
1767 if (buildCounterCountriesListResponse < 3) { | 1767 if (buildCounterCountriesListResponse < 3) { |
1768 o.countries = buildUnnamed2536(); | 1768 o.countries = buildUnnamed2630(); |
1769 o.kind = "foo"; | 1769 o.kind = "foo"; |
1770 } | 1770 } |
1771 buildCounterCountriesListResponse--; | 1771 buildCounterCountriesListResponse--; |
1772 return o; | 1772 return o; |
1773 } | 1773 } |
1774 | 1774 |
1775 checkCountriesListResponse(api.CountriesListResponse o) { | 1775 checkCountriesListResponse(api.CountriesListResponse o) { |
1776 buildCounterCountriesListResponse++; | 1776 buildCounterCountriesListResponse++; |
1777 if (buildCounterCountriesListResponse < 3) { | 1777 if (buildCounterCountriesListResponse < 3) { |
1778 checkUnnamed2536(o.countries); | 1778 checkUnnamed2630(o.countries); |
1779 unittest.expect(o.kind, unittest.equals('foo')); | 1779 unittest.expect(o.kind, unittest.equals('foo')); |
1780 } | 1780 } |
1781 buildCounterCountriesListResponse--; | 1781 buildCounterCountriesListResponse--; |
1782 } | 1782 } |
1783 | 1783 |
1784 core.int buildCounterCountry = 0; | 1784 core.int buildCounterCountry = 0; |
1785 buildCountry() { | 1785 buildCountry() { |
1786 var o = new api.Country(); | 1786 var o = new api.Country(); |
1787 buildCounterCountry++; | 1787 buildCounterCountry++; |
1788 if (buildCounterCountry < 3) { | 1788 if (buildCounterCountry < 3) { |
(...skipping 12 matching lines...) Loading... |
1801 if (buildCounterCountry < 3) { | 1801 if (buildCounterCountry < 3) { |
1802 unittest.expect(o.countryCode, unittest.equals('foo')); | 1802 unittest.expect(o.countryCode, unittest.equals('foo')); |
1803 unittest.expect(o.dartId, unittest.equals('foo')); | 1803 unittest.expect(o.dartId, unittest.equals('foo')); |
1804 unittest.expect(o.kind, unittest.equals('foo')); | 1804 unittest.expect(o.kind, unittest.equals('foo')); |
1805 unittest.expect(o.name, unittest.equals('foo')); | 1805 unittest.expect(o.name, unittest.equals('foo')); |
1806 unittest.expect(o.sslEnabled, unittest.isTrue); | 1806 unittest.expect(o.sslEnabled, unittest.isTrue); |
1807 } | 1807 } |
1808 buildCounterCountry--; | 1808 buildCounterCountry--; |
1809 } | 1809 } |
1810 | 1810 |
1811 buildUnnamed2537() { | 1811 buildUnnamed2631() { |
1812 var o = new core.List<core.String>(); | 1812 var o = new core.List<core.String>(); |
1813 o.add("foo"); | 1813 o.add("foo"); |
1814 o.add("foo"); | 1814 o.add("foo"); |
1815 return o; | 1815 return o; |
1816 } | 1816 } |
1817 | 1817 |
1818 checkUnnamed2537(core.List<core.String> o) { | 1818 checkUnnamed2631(core.List<core.String> o) { |
1819 unittest.expect(o, unittest.hasLength(2)); | 1819 unittest.expect(o, unittest.hasLength(2)); |
1820 unittest.expect(o[0], unittest.equals('foo')); | 1820 unittest.expect(o[0], unittest.equals('foo')); |
1821 unittest.expect(o[1], unittest.equals('foo')); | 1821 unittest.expect(o[1], unittest.equals('foo')); |
1822 } | 1822 } |
1823 | 1823 |
1824 buildUnnamed2538() { | 1824 buildUnnamed2632() { |
1825 var o = new core.List<core.String>(); | 1825 var o = new core.List<core.String>(); |
1826 o.add("foo"); | 1826 o.add("foo"); |
1827 o.add("foo"); | 1827 o.add("foo"); |
1828 return o; | 1828 return o; |
1829 } | 1829 } |
1830 | 1830 |
1831 checkUnnamed2538(core.List<core.String> o) { | 1831 checkUnnamed2632(core.List<core.String> o) { |
1832 unittest.expect(o, unittest.hasLength(2)); | 1832 unittest.expect(o, unittest.hasLength(2)); |
1833 unittest.expect(o[0], unittest.equals('foo')); | 1833 unittest.expect(o[0], unittest.equals('foo')); |
1834 unittest.expect(o[1], unittest.equals('foo')); | 1834 unittest.expect(o[1], unittest.equals('foo')); |
1835 } | 1835 } |
1836 | 1836 |
1837 buildUnnamed2539() { | 1837 buildUnnamed2633() { |
1838 var o = new core.List<api.ClickTag>(); | 1838 var o = new core.List<api.ClickTag>(); |
1839 o.add(buildClickTag()); | 1839 o.add(buildClickTag()); |
1840 o.add(buildClickTag()); | 1840 o.add(buildClickTag()); |
1841 return o; | 1841 return o; |
1842 } | 1842 } |
1843 | 1843 |
1844 checkUnnamed2539(core.List<api.ClickTag> o) { | 1844 checkUnnamed2633(core.List<api.ClickTag> o) { |
1845 unittest.expect(o, unittest.hasLength(2)); | 1845 unittest.expect(o, unittest.hasLength(2)); |
1846 checkClickTag(o[0]); | 1846 checkClickTag(o[0]); |
1847 checkClickTag(o[1]); | 1847 checkClickTag(o[1]); |
1848 } | 1848 } |
1849 | 1849 |
1850 buildUnnamed2540() { | 1850 buildUnnamed2634() { |
1851 var o = new core.List<core.String>(); | 1851 var o = new core.List<core.String>(); |
1852 o.add("foo"); | 1852 o.add("foo"); |
1853 o.add("foo"); | 1853 o.add("foo"); |
1854 return o; | 1854 return o; |
1855 } | 1855 } |
1856 | 1856 |
1857 checkUnnamed2540(core.List<core.String> o) { | 1857 checkUnnamed2634(core.List<core.String> o) { |
1858 unittest.expect(o, unittest.hasLength(2)); | 1858 unittest.expect(o, unittest.hasLength(2)); |
1859 unittest.expect(o[0], unittest.equals('foo')); | 1859 unittest.expect(o[0], unittest.equals('foo')); |
1860 unittest.expect(o[1], unittest.equals('foo')); | 1860 unittest.expect(o[1], unittest.equals('foo')); |
1861 } | 1861 } |
1862 | 1862 |
1863 buildUnnamed2541() { | 1863 buildUnnamed2635() { |
1864 var o = new core.List<core.String>(); | 1864 var o = new core.List<core.String>(); |
1865 o.add("foo"); | 1865 o.add("foo"); |
1866 o.add("foo"); | 1866 o.add("foo"); |
1867 return o; | 1867 return o; |
1868 } | 1868 } |
1869 | 1869 |
1870 checkUnnamed2541(core.List<core.String> o) { | 1870 checkUnnamed2635(core.List<core.String> o) { |
1871 unittest.expect(o, unittest.hasLength(2)); | 1871 unittest.expect(o, unittest.hasLength(2)); |
1872 unittest.expect(o[0], unittest.equals('foo')); | 1872 unittest.expect(o[0], unittest.equals('foo')); |
1873 unittest.expect(o[1], unittest.equals('foo')); | 1873 unittest.expect(o[1], unittest.equals('foo')); |
1874 } | 1874 } |
1875 | 1875 |
1876 buildUnnamed2542() { | 1876 buildUnnamed2636() { |
1877 var o = new core.List<api.CreativeCustomEvent>(); | 1877 var o = new core.List<api.CreativeCustomEvent>(); |
1878 o.add(buildCreativeCustomEvent()); | 1878 o.add(buildCreativeCustomEvent()); |
1879 o.add(buildCreativeCustomEvent()); | 1879 o.add(buildCreativeCustomEvent()); |
1880 return o; | 1880 return o; |
1881 } | 1881 } |
1882 | 1882 |
1883 checkUnnamed2542(core.List<api.CreativeCustomEvent> o) { | 1883 checkUnnamed2636(core.List<api.CreativeCustomEvent> o) { |
1884 unittest.expect(o, unittest.hasLength(2)); | 1884 unittest.expect(o, unittest.hasLength(2)); |
1885 checkCreativeCustomEvent(o[0]); | 1885 checkCreativeCustomEvent(o[0]); |
1886 checkCreativeCustomEvent(o[1]); | 1886 checkCreativeCustomEvent(o[1]); |
1887 } | 1887 } |
1888 | 1888 |
1889 buildUnnamed2543() { | 1889 buildUnnamed2637() { |
1890 var o = new core.List<api.CreativeAsset>(); | 1890 var o = new core.List<api.CreativeAsset>(); |
1891 o.add(buildCreativeAsset()); | 1891 o.add(buildCreativeAsset()); |
1892 o.add(buildCreativeAsset()); | 1892 o.add(buildCreativeAsset()); |
1893 return o; | 1893 return o; |
1894 } | 1894 } |
1895 | 1895 |
1896 checkUnnamed2543(core.List<api.CreativeAsset> o) { | 1896 checkUnnamed2637(core.List<api.CreativeAsset> o) { |
1897 unittest.expect(o, unittest.hasLength(2)); | 1897 unittest.expect(o, unittest.hasLength(2)); |
1898 checkCreativeAsset(o[0]); | 1898 checkCreativeAsset(o[0]); |
1899 checkCreativeAsset(o[1]); | 1899 checkCreativeAsset(o[1]); |
1900 } | 1900 } |
1901 | 1901 |
1902 buildUnnamed2544() { | 1902 buildUnnamed2638() { |
1903 var o = new core.List<api.CreativeFieldAssignment>(); | 1903 var o = new core.List<api.CreativeFieldAssignment>(); |
1904 o.add(buildCreativeFieldAssignment()); | 1904 o.add(buildCreativeFieldAssignment()); |
1905 o.add(buildCreativeFieldAssignment()); | 1905 o.add(buildCreativeFieldAssignment()); |
1906 return o; | 1906 return o; |
1907 } | 1907 } |
1908 | 1908 |
1909 checkUnnamed2544(core.List<api.CreativeFieldAssignment> o) { | 1909 checkUnnamed2638(core.List<api.CreativeFieldAssignment> o) { |
1910 unittest.expect(o, unittest.hasLength(2)); | 1910 unittest.expect(o, unittest.hasLength(2)); |
1911 checkCreativeFieldAssignment(o[0]); | 1911 checkCreativeFieldAssignment(o[0]); |
1912 checkCreativeFieldAssignment(o[1]); | 1912 checkCreativeFieldAssignment(o[1]); |
1913 } | 1913 } |
1914 | 1914 |
1915 buildUnnamed2545() { | 1915 buildUnnamed2639() { |
1916 var o = new core.List<core.String>(); | 1916 var o = new core.List<core.String>(); |
1917 o.add("foo"); | 1917 o.add("foo"); |
1918 o.add("foo"); | 1918 o.add("foo"); |
1919 return o; | 1919 return o; |
1920 } | 1920 } |
1921 | 1921 |
1922 checkUnnamed2545(core.List<core.String> o) { | 1922 checkUnnamed2639(core.List<core.String> o) { |
1923 unittest.expect(o, unittest.hasLength(2)); | 1923 unittest.expect(o, unittest.hasLength(2)); |
1924 unittest.expect(o[0], unittest.equals('foo')); | 1924 unittest.expect(o[0], unittest.equals('foo')); |
1925 unittest.expect(o[1], unittest.equals('foo')); | 1925 unittest.expect(o[1], unittest.equals('foo')); |
1926 } | 1926 } |
1927 | 1927 |
1928 buildUnnamed2546() { | 1928 buildUnnamed2640() { |
1929 var o = new core.List<api.CreativeCustomEvent>(); | 1929 var o = new core.List<api.CreativeCustomEvent>(); |
1930 o.add(buildCreativeCustomEvent()); | 1930 o.add(buildCreativeCustomEvent()); |
1931 o.add(buildCreativeCustomEvent()); | 1931 o.add(buildCreativeCustomEvent()); |
1932 return o; | 1932 return o; |
1933 } | 1933 } |
1934 | 1934 |
1935 checkUnnamed2546(core.List<api.CreativeCustomEvent> o) { | 1935 checkUnnamed2640(core.List<api.CreativeCustomEvent> o) { |
1936 unittest.expect(o, unittest.hasLength(2)); | 1936 unittest.expect(o, unittest.hasLength(2)); |
1937 checkCreativeCustomEvent(o[0]); | 1937 checkCreativeCustomEvent(o[0]); |
1938 checkCreativeCustomEvent(o[1]); | 1938 checkCreativeCustomEvent(o[1]); |
1939 } | 1939 } |
1940 | 1940 |
1941 buildUnnamed2547() { | 1941 buildUnnamed2641() { |
1942 var o = new core.List<api.ThirdPartyTrackingUrl>(); | 1942 var o = new core.List<api.ThirdPartyTrackingUrl>(); |
1943 o.add(buildThirdPartyTrackingUrl()); | 1943 o.add(buildThirdPartyTrackingUrl()); |
1944 o.add(buildThirdPartyTrackingUrl()); | 1944 o.add(buildThirdPartyTrackingUrl()); |
1945 return o; | 1945 return o; |
1946 } | 1946 } |
1947 | 1947 |
1948 checkUnnamed2547(core.List<api.ThirdPartyTrackingUrl> o) { | 1948 checkUnnamed2641(core.List<api.ThirdPartyTrackingUrl> o) { |
1949 unittest.expect(o, unittest.hasLength(2)); | 1949 unittest.expect(o, unittest.hasLength(2)); |
1950 checkThirdPartyTrackingUrl(o[0]); | 1950 checkThirdPartyTrackingUrl(o[0]); |
1951 checkThirdPartyTrackingUrl(o[1]); | 1951 checkThirdPartyTrackingUrl(o[1]); |
1952 } | 1952 } |
1953 | 1953 |
1954 buildUnnamed2548() { | 1954 buildUnnamed2642() { |
1955 var o = new core.List<api.CreativeCustomEvent>(); | 1955 var o = new core.List<api.CreativeCustomEvent>(); |
1956 o.add(buildCreativeCustomEvent()); | 1956 o.add(buildCreativeCustomEvent()); |
1957 o.add(buildCreativeCustomEvent()); | 1957 o.add(buildCreativeCustomEvent()); |
1958 return o; | 1958 return o; |
1959 } | 1959 } |
1960 | 1960 |
1961 checkUnnamed2548(core.List<api.CreativeCustomEvent> o) { | 1961 checkUnnamed2642(core.List<api.CreativeCustomEvent> o) { |
1962 unittest.expect(o, unittest.hasLength(2)); | 1962 unittest.expect(o, unittest.hasLength(2)); |
1963 checkCreativeCustomEvent(o[0]); | 1963 checkCreativeCustomEvent(o[0]); |
1964 checkCreativeCustomEvent(o[1]); | 1964 checkCreativeCustomEvent(o[1]); |
1965 } | 1965 } |
1966 | 1966 |
1967 core.int buildCounterCreative = 0; | 1967 core.int buildCounterCreative = 0; |
1968 buildCreative() { | 1968 buildCreative() { |
1969 var o = new api.Creative(); | 1969 var o = new api.Creative(); |
1970 buildCounterCreative++; | 1970 buildCounterCreative++; |
1971 if (buildCounterCreative < 3) { | 1971 if (buildCounterCreative < 3) { |
1972 o.accountId = "foo"; | 1972 o.accountId = "foo"; |
1973 o.active = true; | 1973 o.active = true; |
1974 o.adParameters = "foo"; | 1974 o.adParameters = "foo"; |
1975 o.adTagKeys = buildUnnamed2537(); | 1975 o.adTagKeys = buildUnnamed2631(); |
1976 o.advertiserId = "foo"; | 1976 o.advertiserId = "foo"; |
1977 o.allowScriptAccess = true; | 1977 o.allowScriptAccess = true; |
1978 o.archived = true; | 1978 o.archived = true; |
1979 o.artworkType = "foo"; | 1979 o.artworkType = "foo"; |
1980 o.authoringSource = "foo"; | 1980 o.authoringSource = "foo"; |
1981 o.authoringTool = "foo"; | 1981 o.authoringTool = "foo"; |
1982 o.autoAdvanceImages = true; | 1982 o.autoAdvanceImages = true; |
1983 o.backgroundColor = "foo"; | 1983 o.backgroundColor = "foo"; |
1984 o.backupImageClickThroughUrl = "foo"; | 1984 o.backupImageClickThroughUrl = "foo"; |
1985 o.backupImageFeatures = buildUnnamed2538(); | 1985 o.backupImageFeatures = buildUnnamed2632(); |
1986 o.backupImageReportingLabel = "foo"; | 1986 o.backupImageReportingLabel = "foo"; |
1987 o.backupImageTargetWindow = buildTargetWindow(); | 1987 o.backupImageTargetWindow = buildTargetWindow(); |
1988 o.clickTags = buildUnnamed2539(); | 1988 o.clickTags = buildUnnamed2633(); |
1989 o.commercialId = "foo"; | 1989 o.commercialId = "foo"; |
1990 o.companionCreatives = buildUnnamed2540(); | 1990 o.companionCreatives = buildUnnamed2634(); |
1991 o.compatibility = buildUnnamed2541(); | 1991 o.compatibility = buildUnnamed2635(); |
1992 o.convertFlashToHtml5 = true; | 1992 o.convertFlashToHtml5 = true; |
1993 o.counterCustomEvents = buildUnnamed2542(); | 1993 o.counterCustomEvents = buildUnnamed2636(); |
1994 o.creativeAssetSelection = buildCreativeAssetSelection(); | 1994 o.creativeAssetSelection = buildCreativeAssetSelection(); |
1995 o.creativeAssets = buildUnnamed2543(); | 1995 o.creativeAssets = buildUnnamed2637(); |
1996 o.creativeFieldAssignments = buildUnnamed2544(); | 1996 o.creativeFieldAssignments = buildUnnamed2638(); |
1997 o.customKeyValues = buildUnnamed2545(); | 1997 o.customKeyValues = buildUnnamed2639(); |
1998 o.dynamicAssetSelection = true; | 1998 o.dynamicAssetSelection = true; |
1999 o.exitCustomEvents = buildUnnamed2546(); | 1999 o.exitCustomEvents = buildUnnamed2640(); |
2000 o.fsCommand = buildFsCommand(); | 2000 o.fsCommand = buildFsCommand(); |
2001 o.htmlCode = "foo"; | 2001 o.htmlCode = "foo"; |
2002 o.htmlCodeLocked = true; | 2002 o.htmlCodeLocked = true; |
2003 o.id = "foo"; | 2003 o.id = "foo"; |
2004 o.idDimensionValue = buildDimensionValue(); | 2004 o.idDimensionValue = buildDimensionValue(); |
2005 o.kind = "foo"; | 2005 o.kind = "foo"; |
2006 o.lastModifiedInfo = buildLastModifiedInfo(); | 2006 o.lastModifiedInfo = buildLastModifiedInfo(); |
2007 o.latestTraffickedCreativeId = "foo"; | 2007 o.latestTraffickedCreativeId = "foo"; |
2008 o.name = "foo"; | 2008 o.name = "foo"; |
2009 o.overrideCss = "foo"; | 2009 o.overrideCss = "foo"; |
2010 o.redirectUrl = "foo"; | 2010 o.redirectUrl = "foo"; |
2011 o.renderingId = "foo"; | 2011 o.renderingId = "foo"; |
2012 o.renderingIdDimensionValue = buildDimensionValue(); | 2012 o.renderingIdDimensionValue = buildDimensionValue(); |
2013 o.requiredFlashPluginVersion = "foo"; | 2013 o.requiredFlashPluginVersion = "foo"; |
2014 o.requiredFlashVersion = 42; | 2014 o.requiredFlashVersion = 42; |
2015 o.size = buildSize(); | 2015 o.size = buildSize(); |
2016 o.skippable = true; | 2016 o.skippable = true; |
2017 o.sslCompliant = true; | 2017 o.sslCompliant = true; |
2018 o.sslOverride = true; | 2018 o.sslOverride = true; |
2019 o.studioAdvertiserId = "foo"; | 2019 o.studioAdvertiserId = "foo"; |
2020 o.studioCreativeId = "foo"; | 2020 o.studioCreativeId = "foo"; |
2021 o.studioTraffickedCreativeId = "foo"; | 2021 o.studioTraffickedCreativeId = "foo"; |
2022 o.subaccountId = "foo"; | 2022 o.subaccountId = "foo"; |
2023 o.thirdPartyBackupImageImpressionsUrl = "foo"; | 2023 o.thirdPartyBackupImageImpressionsUrl = "foo"; |
2024 o.thirdPartyRichMediaImpressionsUrl = "foo"; | 2024 o.thirdPartyRichMediaImpressionsUrl = "foo"; |
2025 o.thirdPartyUrls = buildUnnamed2547(); | 2025 o.thirdPartyUrls = buildUnnamed2641(); |
2026 o.timerCustomEvents = buildUnnamed2548(); | 2026 o.timerCustomEvents = buildUnnamed2642(); |
2027 o.totalFileSize = "foo"; | 2027 o.totalFileSize = "foo"; |
2028 o.type = "foo"; | 2028 o.type = "foo"; |
2029 o.version = 42; | 2029 o.version = 42; |
2030 o.videoDescription = "foo"; | 2030 o.videoDescription = "foo"; |
2031 o.videoDuration = 42.0; | 2031 o.videoDuration = 42.0; |
2032 } | 2032 } |
2033 buildCounterCreative--; | 2033 buildCounterCreative--; |
2034 return o; | 2034 return o; |
2035 } | 2035 } |
2036 | 2036 |
2037 checkCreative(api.Creative o) { | 2037 checkCreative(api.Creative o) { |
2038 buildCounterCreative++; | 2038 buildCounterCreative++; |
2039 if (buildCounterCreative < 3) { | 2039 if (buildCounterCreative < 3) { |
2040 unittest.expect(o.accountId, unittest.equals('foo')); | 2040 unittest.expect(o.accountId, unittest.equals('foo')); |
2041 unittest.expect(o.active, unittest.isTrue); | 2041 unittest.expect(o.active, unittest.isTrue); |
2042 unittest.expect(o.adParameters, unittest.equals('foo')); | 2042 unittest.expect(o.adParameters, unittest.equals('foo')); |
2043 checkUnnamed2537(o.adTagKeys); | 2043 checkUnnamed2631(o.adTagKeys); |
2044 unittest.expect(o.advertiserId, unittest.equals('foo')); | 2044 unittest.expect(o.advertiserId, unittest.equals('foo')); |
2045 unittest.expect(o.allowScriptAccess, unittest.isTrue); | 2045 unittest.expect(o.allowScriptAccess, unittest.isTrue); |
2046 unittest.expect(o.archived, unittest.isTrue); | 2046 unittest.expect(o.archived, unittest.isTrue); |
2047 unittest.expect(o.artworkType, unittest.equals('foo')); | 2047 unittest.expect(o.artworkType, unittest.equals('foo')); |
2048 unittest.expect(o.authoringSource, unittest.equals('foo')); | 2048 unittest.expect(o.authoringSource, unittest.equals('foo')); |
2049 unittest.expect(o.authoringTool, unittest.equals('foo')); | 2049 unittest.expect(o.authoringTool, unittest.equals('foo')); |
2050 unittest.expect(o.autoAdvanceImages, unittest.isTrue); | 2050 unittest.expect(o.autoAdvanceImages, unittest.isTrue); |
2051 unittest.expect(o.backgroundColor, unittest.equals('foo')); | 2051 unittest.expect(o.backgroundColor, unittest.equals('foo')); |
2052 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); | 2052 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); |
2053 checkUnnamed2538(o.backupImageFeatures); | 2053 checkUnnamed2632(o.backupImageFeatures); |
2054 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); | 2054 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); |
2055 checkTargetWindow(o.backupImageTargetWindow); | 2055 checkTargetWindow(o.backupImageTargetWindow); |
2056 checkUnnamed2539(o.clickTags); | 2056 checkUnnamed2633(o.clickTags); |
2057 unittest.expect(o.commercialId, unittest.equals('foo')); | 2057 unittest.expect(o.commercialId, unittest.equals('foo')); |
2058 checkUnnamed2540(o.companionCreatives); | 2058 checkUnnamed2634(o.companionCreatives); |
2059 checkUnnamed2541(o.compatibility); | 2059 checkUnnamed2635(o.compatibility); |
2060 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); | 2060 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); |
2061 checkUnnamed2542(o.counterCustomEvents); | 2061 checkUnnamed2636(o.counterCustomEvents); |
2062 checkCreativeAssetSelection(o.creativeAssetSelection); | 2062 checkCreativeAssetSelection(o.creativeAssetSelection); |
2063 checkUnnamed2543(o.creativeAssets); | 2063 checkUnnamed2637(o.creativeAssets); |
2064 checkUnnamed2544(o.creativeFieldAssignments); | 2064 checkUnnamed2638(o.creativeFieldAssignments); |
2065 checkUnnamed2545(o.customKeyValues); | 2065 checkUnnamed2639(o.customKeyValues); |
2066 unittest.expect(o.dynamicAssetSelection, unittest.isTrue); | 2066 unittest.expect(o.dynamicAssetSelection, unittest.isTrue); |
2067 checkUnnamed2546(o.exitCustomEvents); | 2067 checkUnnamed2640(o.exitCustomEvents); |
2068 checkFsCommand(o.fsCommand); | 2068 checkFsCommand(o.fsCommand); |
2069 unittest.expect(o.htmlCode, unittest.equals('foo')); | 2069 unittest.expect(o.htmlCode, unittest.equals('foo')); |
2070 unittest.expect(o.htmlCodeLocked, unittest.isTrue); | 2070 unittest.expect(o.htmlCodeLocked, unittest.isTrue); |
2071 unittest.expect(o.id, unittest.equals('foo')); | 2071 unittest.expect(o.id, unittest.equals('foo')); |
2072 checkDimensionValue(o.idDimensionValue); | 2072 checkDimensionValue(o.idDimensionValue); |
2073 unittest.expect(o.kind, unittest.equals('foo')); | 2073 unittest.expect(o.kind, unittest.equals('foo')); |
2074 checkLastModifiedInfo(o.lastModifiedInfo); | 2074 checkLastModifiedInfo(o.lastModifiedInfo); |
2075 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); | 2075 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); |
2076 unittest.expect(o.name, unittest.equals('foo')); | 2076 unittest.expect(o.name, unittest.equals('foo')); |
2077 unittest.expect(o.overrideCss, unittest.equals('foo')); | 2077 unittest.expect(o.overrideCss, unittest.equals('foo')); |
2078 unittest.expect(o.redirectUrl, unittest.equals('foo')); | 2078 unittest.expect(o.redirectUrl, unittest.equals('foo')); |
2079 unittest.expect(o.renderingId, unittest.equals('foo')); | 2079 unittest.expect(o.renderingId, unittest.equals('foo')); |
2080 checkDimensionValue(o.renderingIdDimensionValue); | 2080 checkDimensionValue(o.renderingIdDimensionValue); |
2081 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); | 2081 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); |
2082 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); | 2082 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); |
2083 checkSize(o.size); | 2083 checkSize(o.size); |
2084 unittest.expect(o.skippable, unittest.isTrue); | 2084 unittest.expect(o.skippable, unittest.isTrue); |
2085 unittest.expect(o.sslCompliant, unittest.isTrue); | 2085 unittest.expect(o.sslCompliant, unittest.isTrue); |
2086 unittest.expect(o.sslOverride, unittest.isTrue); | 2086 unittest.expect(o.sslOverride, unittest.isTrue); |
2087 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); | 2087 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); |
2088 unittest.expect(o.studioCreativeId, unittest.equals('foo')); | 2088 unittest.expect(o.studioCreativeId, unittest.equals('foo')); |
2089 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); | 2089 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); |
2090 unittest.expect(o.subaccountId, unittest.equals('foo')); | 2090 unittest.expect(o.subaccountId, unittest.equals('foo')); |
2091 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); | 2091 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); |
2092 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; | 2092 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; |
2093 checkUnnamed2547(o.thirdPartyUrls); | 2093 checkUnnamed2641(o.thirdPartyUrls); |
2094 checkUnnamed2548(o.timerCustomEvents); | 2094 checkUnnamed2642(o.timerCustomEvents); |
2095 unittest.expect(o.totalFileSize, unittest.equals('foo')); | 2095 unittest.expect(o.totalFileSize, unittest.equals('foo')); |
2096 unittest.expect(o.type, unittest.equals('foo')); | 2096 unittest.expect(o.type, unittest.equals('foo')); |
2097 unittest.expect(o.version, unittest.equals(42)); | 2097 unittest.expect(o.version, unittest.equals(42)); |
2098 unittest.expect(o.videoDescription, unittest.equals('foo')); | 2098 unittest.expect(o.videoDescription, unittest.equals('foo')); |
2099 unittest.expect(o.videoDuration, unittest.equals(42.0)); | 2099 unittest.expect(o.videoDuration, unittest.equals(42.0)); |
2100 } | 2100 } |
2101 buildCounterCreative--; | 2101 buildCounterCreative--; |
2102 } | 2102 } |
2103 | 2103 |
2104 buildUnnamed2549() { | 2104 buildUnnamed2643() { |
2105 var o = new core.List<core.String>(); | 2105 var o = new core.List<core.String>(); |
2106 o.add("foo"); | 2106 o.add("foo"); |
2107 o.add("foo"); | 2107 o.add("foo"); |
2108 return o; | 2108 return o; |
2109 } | 2109 } |
2110 | 2110 |
2111 checkUnnamed2549(core.List<core.String> o) { | 2111 checkUnnamed2643(core.List<core.String> o) { |
2112 unittest.expect(o, unittest.hasLength(2)); | 2112 unittest.expect(o, unittest.hasLength(2)); |
2113 unittest.expect(o[0], unittest.equals('foo')); | 2113 unittest.expect(o[0], unittest.equals('foo')); |
2114 unittest.expect(o[1], unittest.equals('foo')); | 2114 unittest.expect(o[1], unittest.equals('foo')); |
2115 } | 2115 } |
2116 | 2116 |
2117 buildUnnamed2550() { | 2117 buildUnnamed2644() { |
2118 var o = new core.List<core.String>(); | 2118 var o = new core.List<core.String>(); |
2119 o.add("foo"); | 2119 o.add("foo"); |
2120 o.add("foo"); | 2120 o.add("foo"); |
2121 return o; | 2121 return o; |
2122 } | 2122 } |
2123 | 2123 |
2124 checkUnnamed2550(core.List<core.String> o) { | 2124 checkUnnamed2644(core.List<core.String> o) { |
2125 unittest.expect(o, unittest.hasLength(2)); | 2125 unittest.expect(o, unittest.hasLength(2)); |
2126 unittest.expect(o[0], unittest.equals('foo')); | 2126 unittest.expect(o[0], unittest.equals('foo')); |
2127 unittest.expect(o[1], unittest.equals('foo')); | 2127 unittest.expect(o[1], unittest.equals('foo')); |
2128 } | 2128 } |
2129 | 2129 |
2130 core.int buildCounterCreativeAsset = 0; | 2130 core.int buildCounterCreativeAsset = 0; |
2131 buildCreativeAsset() { | 2131 buildCreativeAsset() { |
2132 var o = new api.CreativeAsset(); | 2132 var o = new api.CreativeAsset(); |
2133 buildCounterCreativeAsset++; | 2133 buildCounterCreativeAsset++; |
2134 if (buildCounterCreativeAsset < 3) { | 2134 if (buildCounterCreativeAsset < 3) { |
2135 o.actionScript3 = true; | 2135 o.actionScript3 = true; |
2136 o.active = true; | 2136 o.active = true; |
2137 o.alignment = "foo"; | 2137 o.alignment = "foo"; |
2138 o.artworkType = "foo"; | 2138 o.artworkType = "foo"; |
2139 o.assetIdentifier = buildCreativeAssetId(); | 2139 o.assetIdentifier = buildCreativeAssetId(); |
2140 o.backupImageExit = buildCreativeCustomEvent(); | 2140 o.backupImageExit = buildCreativeCustomEvent(); |
2141 o.bitRate = 42; | 2141 o.bitRate = 42; |
2142 o.childAssetType = "foo"; | 2142 o.childAssetType = "foo"; |
2143 o.collapsedSize = buildSize(); | 2143 o.collapsedSize = buildSize(); |
2144 o.companionCreativeIds = buildUnnamed2549(); | 2144 o.companionCreativeIds = buildUnnamed2643(); |
2145 o.customStartTimeValue = 42; | 2145 o.customStartTimeValue = 42; |
2146 o.detectedFeatures = buildUnnamed2550(); | 2146 o.detectedFeatures = buildUnnamed2644(); |
2147 o.displayType = "foo"; | 2147 o.displayType = "foo"; |
2148 o.duration = 42; | 2148 o.duration = 42; |
2149 o.durationType = "foo"; | 2149 o.durationType = "foo"; |
2150 o.expandedDimension = buildSize(); | 2150 o.expandedDimension = buildSize(); |
2151 o.fileSize = "foo"; | 2151 o.fileSize = "foo"; |
2152 o.flashVersion = 42; | 2152 o.flashVersion = 42; |
2153 o.hideFlashObjects = true; | 2153 o.hideFlashObjects = true; |
2154 o.hideSelectionBoxes = true; | 2154 o.hideSelectionBoxes = true; |
2155 o.horizontallyLocked = true; | 2155 o.horizontallyLocked = true; |
2156 o.id = "foo"; | 2156 o.id = "foo"; |
(...skipping 29 matching lines...) Loading... |
2186 if (buildCounterCreativeAsset < 3) { | 2186 if (buildCounterCreativeAsset < 3) { |
2187 unittest.expect(o.actionScript3, unittest.isTrue); | 2187 unittest.expect(o.actionScript3, unittest.isTrue); |
2188 unittest.expect(o.active, unittest.isTrue); | 2188 unittest.expect(o.active, unittest.isTrue); |
2189 unittest.expect(o.alignment, unittest.equals('foo')); | 2189 unittest.expect(o.alignment, unittest.equals('foo')); |
2190 unittest.expect(o.artworkType, unittest.equals('foo')); | 2190 unittest.expect(o.artworkType, unittest.equals('foo')); |
2191 checkCreativeAssetId(o.assetIdentifier); | 2191 checkCreativeAssetId(o.assetIdentifier); |
2192 checkCreativeCustomEvent(o.backupImageExit); | 2192 checkCreativeCustomEvent(o.backupImageExit); |
2193 unittest.expect(o.bitRate, unittest.equals(42)); | 2193 unittest.expect(o.bitRate, unittest.equals(42)); |
2194 unittest.expect(o.childAssetType, unittest.equals('foo')); | 2194 unittest.expect(o.childAssetType, unittest.equals('foo')); |
2195 checkSize(o.collapsedSize); | 2195 checkSize(o.collapsedSize); |
2196 checkUnnamed2549(o.companionCreativeIds); | 2196 checkUnnamed2643(o.companionCreativeIds); |
2197 unittest.expect(o.customStartTimeValue, unittest.equals(42)); | 2197 unittest.expect(o.customStartTimeValue, unittest.equals(42)); |
2198 checkUnnamed2550(o.detectedFeatures); | 2198 checkUnnamed2644(o.detectedFeatures); |
2199 unittest.expect(o.displayType, unittest.equals('foo')); | 2199 unittest.expect(o.displayType, unittest.equals('foo')); |
2200 unittest.expect(o.duration, unittest.equals(42)); | 2200 unittest.expect(o.duration, unittest.equals(42)); |
2201 unittest.expect(o.durationType, unittest.equals('foo')); | 2201 unittest.expect(o.durationType, unittest.equals('foo')); |
2202 checkSize(o.expandedDimension); | 2202 checkSize(o.expandedDimension); |
2203 unittest.expect(o.fileSize, unittest.equals('foo')); | 2203 unittest.expect(o.fileSize, unittest.equals('foo')); |
2204 unittest.expect(o.flashVersion, unittest.equals(42)); | 2204 unittest.expect(o.flashVersion, unittest.equals(42)); |
2205 unittest.expect(o.hideFlashObjects, unittest.isTrue); | 2205 unittest.expect(o.hideFlashObjects, unittest.isTrue); |
2206 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); | 2206 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); |
2207 unittest.expect(o.horizontallyLocked, unittest.isTrue); | 2207 unittest.expect(o.horizontallyLocked, unittest.isTrue); |
2208 unittest.expect(o.id, unittest.equals('foo')); | 2208 unittest.expect(o.id, unittest.equals('foo')); |
(...skipping 37 matching lines...) Loading... |
2246 | 2246 |
2247 checkCreativeAssetId(api.CreativeAssetId o) { | 2247 checkCreativeAssetId(api.CreativeAssetId o) { |
2248 buildCounterCreativeAssetId++; | 2248 buildCounterCreativeAssetId++; |
2249 if (buildCounterCreativeAssetId < 3) { | 2249 if (buildCounterCreativeAssetId < 3) { |
2250 unittest.expect(o.name, unittest.equals('foo')); | 2250 unittest.expect(o.name, unittest.equals('foo')); |
2251 unittest.expect(o.type, unittest.equals('foo')); | 2251 unittest.expect(o.type, unittest.equals('foo')); |
2252 } | 2252 } |
2253 buildCounterCreativeAssetId--; | 2253 buildCounterCreativeAssetId--; |
2254 } | 2254 } |
2255 | 2255 |
2256 buildUnnamed2551() { | 2256 buildUnnamed2645() { |
2257 var o = new core.List<api.ClickTag>(); | 2257 var o = new core.List<api.ClickTag>(); |
2258 o.add(buildClickTag()); | 2258 o.add(buildClickTag()); |
2259 o.add(buildClickTag()); | 2259 o.add(buildClickTag()); |
2260 return o; | 2260 return o; |
2261 } | 2261 } |
2262 | 2262 |
2263 checkUnnamed2551(core.List<api.ClickTag> o) { | 2263 checkUnnamed2645(core.List<api.ClickTag> o) { |
2264 unittest.expect(o, unittest.hasLength(2)); | 2264 unittest.expect(o, unittest.hasLength(2)); |
2265 checkClickTag(o[0]); | 2265 checkClickTag(o[0]); |
2266 checkClickTag(o[1]); | 2266 checkClickTag(o[1]); |
2267 } | 2267 } |
2268 | 2268 |
2269 buildUnnamed2552() { | 2269 buildUnnamed2646() { |
2270 var o = new core.List<core.String>(); | 2270 var o = new core.List<core.String>(); |
2271 o.add("foo"); | 2271 o.add("foo"); |
2272 o.add("foo"); | 2272 o.add("foo"); |
2273 return o; | 2273 return o; |
2274 } | 2274 } |
2275 | 2275 |
2276 checkUnnamed2552(core.List<core.String> o) { | 2276 checkUnnamed2646(core.List<core.String> o) { |
2277 unittest.expect(o, unittest.hasLength(2)); | 2277 unittest.expect(o, unittest.hasLength(2)); |
2278 unittest.expect(o[0], unittest.equals('foo')); | 2278 unittest.expect(o[0], unittest.equals('foo')); |
2279 unittest.expect(o[1], unittest.equals('foo')); | 2279 unittest.expect(o[1], unittest.equals('foo')); |
2280 } | 2280 } |
2281 | 2281 |
2282 buildUnnamed2553() { | 2282 buildUnnamed2647() { |
2283 var o = new core.List<core.String>(); | 2283 var o = new core.List<core.String>(); |
2284 o.add("foo"); | 2284 o.add("foo"); |
2285 o.add("foo"); | 2285 o.add("foo"); |
2286 return o; | 2286 return o; |
2287 } | 2287 } |
2288 | 2288 |
2289 checkUnnamed2553(core.List<core.String> o) { | 2289 checkUnnamed2647(core.List<core.String> o) { |
2290 unittest.expect(o, unittest.hasLength(2)); | 2290 unittest.expect(o, unittest.hasLength(2)); |
2291 unittest.expect(o[0], unittest.equals('foo')); | 2291 unittest.expect(o[0], unittest.equals('foo')); |
2292 unittest.expect(o[1], unittest.equals('foo')); | 2292 unittest.expect(o[1], unittest.equals('foo')); |
2293 } | 2293 } |
2294 | 2294 |
2295 core.int buildCounterCreativeAssetMetadata = 0; | 2295 core.int buildCounterCreativeAssetMetadata = 0; |
2296 buildCreativeAssetMetadata() { | 2296 buildCreativeAssetMetadata() { |
2297 var o = new api.CreativeAssetMetadata(); | 2297 var o = new api.CreativeAssetMetadata(); |
2298 buildCounterCreativeAssetMetadata++; | 2298 buildCounterCreativeAssetMetadata++; |
2299 if (buildCounterCreativeAssetMetadata < 3) { | 2299 if (buildCounterCreativeAssetMetadata < 3) { |
2300 o.assetIdentifier = buildCreativeAssetId(); | 2300 o.assetIdentifier = buildCreativeAssetId(); |
2301 o.clickTags = buildUnnamed2551(); | 2301 o.clickTags = buildUnnamed2645(); |
2302 o.detectedFeatures = buildUnnamed2552(); | 2302 o.detectedFeatures = buildUnnamed2646(); |
2303 o.id = "foo"; | 2303 o.id = "foo"; |
2304 o.idDimensionValue = buildDimensionValue(); | 2304 o.idDimensionValue = buildDimensionValue(); |
2305 o.kind = "foo"; | 2305 o.kind = "foo"; |
2306 o.warnedValidationRules = buildUnnamed2553(); | 2306 o.warnedValidationRules = buildUnnamed2647(); |
2307 } | 2307 } |
2308 buildCounterCreativeAssetMetadata--; | 2308 buildCounterCreativeAssetMetadata--; |
2309 return o; | 2309 return o; |
2310 } | 2310 } |
2311 | 2311 |
2312 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { | 2312 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { |
2313 buildCounterCreativeAssetMetadata++; | 2313 buildCounterCreativeAssetMetadata++; |
2314 if (buildCounterCreativeAssetMetadata < 3) { | 2314 if (buildCounterCreativeAssetMetadata < 3) { |
2315 checkCreativeAssetId(o.assetIdentifier); | 2315 checkCreativeAssetId(o.assetIdentifier); |
2316 checkUnnamed2551(o.clickTags); | 2316 checkUnnamed2645(o.clickTags); |
2317 checkUnnamed2552(o.detectedFeatures); | 2317 checkUnnamed2646(o.detectedFeatures); |
2318 unittest.expect(o.id, unittest.equals('foo')); | 2318 unittest.expect(o.id, unittest.equals('foo')); |
2319 checkDimensionValue(o.idDimensionValue); | 2319 checkDimensionValue(o.idDimensionValue); |
2320 unittest.expect(o.kind, unittest.equals('foo')); | 2320 unittest.expect(o.kind, unittest.equals('foo')); |
2321 checkUnnamed2553(o.warnedValidationRules); | 2321 checkUnnamed2647(o.warnedValidationRules); |
2322 } | 2322 } |
2323 buildCounterCreativeAssetMetadata--; | 2323 buildCounterCreativeAssetMetadata--; |
2324 } | 2324 } |
2325 | 2325 |
2326 buildUnnamed2554() { | 2326 buildUnnamed2648() { |
2327 var o = new core.List<api.Rule>(); | 2327 var o = new core.List<api.Rule>(); |
2328 o.add(buildRule()); | 2328 o.add(buildRule()); |
2329 o.add(buildRule()); | 2329 o.add(buildRule()); |
2330 return o; | 2330 return o; |
2331 } | 2331 } |
2332 | 2332 |
2333 checkUnnamed2554(core.List<api.Rule> o) { | 2333 checkUnnamed2648(core.List<api.Rule> o) { |
2334 unittest.expect(o, unittest.hasLength(2)); | 2334 unittest.expect(o, unittest.hasLength(2)); |
2335 checkRule(o[0]); | 2335 checkRule(o[0]); |
2336 checkRule(o[1]); | 2336 checkRule(o[1]); |
2337 } | 2337 } |
2338 | 2338 |
2339 core.int buildCounterCreativeAssetSelection = 0; | 2339 core.int buildCounterCreativeAssetSelection = 0; |
2340 buildCreativeAssetSelection() { | 2340 buildCreativeAssetSelection() { |
2341 var o = new api.CreativeAssetSelection(); | 2341 var o = new api.CreativeAssetSelection(); |
2342 buildCounterCreativeAssetSelection++; | 2342 buildCounterCreativeAssetSelection++; |
2343 if (buildCounterCreativeAssetSelection < 3) { | 2343 if (buildCounterCreativeAssetSelection < 3) { |
2344 o.defaultAssetId = "foo"; | 2344 o.defaultAssetId = "foo"; |
2345 o.rules = buildUnnamed2554(); | 2345 o.rules = buildUnnamed2648(); |
2346 } | 2346 } |
2347 buildCounterCreativeAssetSelection--; | 2347 buildCounterCreativeAssetSelection--; |
2348 return o; | 2348 return o; |
2349 } | 2349 } |
2350 | 2350 |
2351 checkCreativeAssetSelection(api.CreativeAssetSelection o) { | 2351 checkCreativeAssetSelection(api.CreativeAssetSelection o) { |
2352 buildCounterCreativeAssetSelection++; | 2352 buildCounterCreativeAssetSelection++; |
2353 if (buildCounterCreativeAssetSelection < 3) { | 2353 if (buildCounterCreativeAssetSelection < 3) { |
2354 unittest.expect(o.defaultAssetId, unittest.equals('foo')); | 2354 unittest.expect(o.defaultAssetId, unittest.equals('foo')); |
2355 checkUnnamed2554(o.rules); | 2355 checkUnnamed2648(o.rules); |
2356 } | 2356 } |
2357 buildCounterCreativeAssetSelection--; | 2357 buildCounterCreativeAssetSelection--; |
2358 } | 2358 } |
2359 | 2359 |
2360 buildUnnamed2555() { | 2360 buildUnnamed2649() { |
2361 var o = new core.List<api.CompanionClickThroughOverride>(); | 2361 var o = new core.List<api.CompanionClickThroughOverride>(); |
2362 o.add(buildCompanionClickThroughOverride()); | 2362 o.add(buildCompanionClickThroughOverride()); |
2363 o.add(buildCompanionClickThroughOverride()); | 2363 o.add(buildCompanionClickThroughOverride()); |
2364 return o; | 2364 return o; |
2365 } | 2365 } |
2366 | 2366 |
2367 checkUnnamed2555(core.List<api.CompanionClickThroughOverride> o) { | 2367 checkUnnamed2649(core.List<api.CompanionClickThroughOverride> o) { |
2368 unittest.expect(o, unittest.hasLength(2)); | 2368 unittest.expect(o, unittest.hasLength(2)); |
2369 checkCompanionClickThroughOverride(o[0]); | 2369 checkCompanionClickThroughOverride(o[0]); |
2370 checkCompanionClickThroughOverride(o[1]); | 2370 checkCompanionClickThroughOverride(o[1]); |
2371 } | 2371 } |
2372 | 2372 |
2373 buildUnnamed2556() { | 2373 buildUnnamed2650() { |
2374 var o = new core.List<api.CreativeGroupAssignment>(); | 2374 var o = new core.List<api.CreativeGroupAssignment>(); |
2375 o.add(buildCreativeGroupAssignment()); | 2375 o.add(buildCreativeGroupAssignment()); |
2376 o.add(buildCreativeGroupAssignment()); | 2376 o.add(buildCreativeGroupAssignment()); |
2377 return o; | 2377 return o; |
2378 } | 2378 } |
2379 | 2379 |
2380 checkUnnamed2556(core.List<api.CreativeGroupAssignment> o) { | 2380 checkUnnamed2650(core.List<api.CreativeGroupAssignment> o) { |
2381 unittest.expect(o, unittest.hasLength(2)); | 2381 unittest.expect(o, unittest.hasLength(2)); |
2382 checkCreativeGroupAssignment(o[0]); | 2382 checkCreativeGroupAssignment(o[0]); |
2383 checkCreativeGroupAssignment(o[1]); | 2383 checkCreativeGroupAssignment(o[1]); |
2384 } | 2384 } |
2385 | 2385 |
2386 buildUnnamed2557() { | 2386 buildUnnamed2651() { |
2387 var o = new core.List<api.RichMediaExitOverride>(); | 2387 var o = new core.List<api.RichMediaExitOverride>(); |
2388 o.add(buildRichMediaExitOverride()); | 2388 o.add(buildRichMediaExitOverride()); |
2389 o.add(buildRichMediaExitOverride()); | 2389 o.add(buildRichMediaExitOverride()); |
2390 return o; | 2390 return o; |
2391 } | 2391 } |
2392 | 2392 |
2393 checkUnnamed2557(core.List<api.RichMediaExitOverride> o) { | 2393 checkUnnamed2651(core.List<api.RichMediaExitOverride> o) { |
2394 unittest.expect(o, unittest.hasLength(2)); | 2394 unittest.expect(o, unittest.hasLength(2)); |
2395 checkRichMediaExitOverride(o[0]); | 2395 checkRichMediaExitOverride(o[0]); |
2396 checkRichMediaExitOverride(o[1]); | 2396 checkRichMediaExitOverride(o[1]); |
2397 } | 2397 } |
2398 | 2398 |
2399 core.int buildCounterCreativeAssignment = 0; | 2399 core.int buildCounterCreativeAssignment = 0; |
2400 buildCreativeAssignment() { | 2400 buildCreativeAssignment() { |
2401 var o = new api.CreativeAssignment(); | 2401 var o = new api.CreativeAssignment(); |
2402 buildCounterCreativeAssignment++; | 2402 buildCounterCreativeAssignment++; |
2403 if (buildCounterCreativeAssignment < 3) { | 2403 if (buildCounterCreativeAssignment < 3) { |
2404 o.active = true; | 2404 o.active = true; |
2405 o.applyEventTags = true; | 2405 o.applyEventTags = true; |
2406 o.clickThroughUrl = buildClickThroughUrl(); | 2406 o.clickThroughUrl = buildClickThroughUrl(); |
2407 o.companionCreativeOverrides = buildUnnamed2555(); | 2407 o.companionCreativeOverrides = buildUnnamed2649(); |
2408 o.creativeGroupAssignments = buildUnnamed2556(); | 2408 o.creativeGroupAssignments = buildUnnamed2650(); |
2409 o.creativeId = "foo"; | 2409 o.creativeId = "foo"; |
2410 o.creativeIdDimensionValue = buildDimensionValue(); | 2410 o.creativeIdDimensionValue = buildDimensionValue(); |
2411 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2411 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); |
2412 o.richMediaExitOverrides = buildUnnamed2557(); | 2412 o.richMediaExitOverrides = buildUnnamed2651(); |
2413 o.sequence = 42; | 2413 o.sequence = 42; |
2414 o.sslCompliant = true; | 2414 o.sslCompliant = true; |
2415 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2415 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
2416 o.weight = 42; | 2416 o.weight = 42; |
2417 } | 2417 } |
2418 buildCounterCreativeAssignment--; | 2418 buildCounterCreativeAssignment--; |
2419 return o; | 2419 return o; |
2420 } | 2420 } |
2421 | 2421 |
2422 checkCreativeAssignment(api.CreativeAssignment o) { | 2422 checkCreativeAssignment(api.CreativeAssignment o) { |
2423 buildCounterCreativeAssignment++; | 2423 buildCounterCreativeAssignment++; |
2424 if (buildCounterCreativeAssignment < 3) { | 2424 if (buildCounterCreativeAssignment < 3) { |
2425 unittest.expect(o.active, unittest.isTrue); | 2425 unittest.expect(o.active, unittest.isTrue); |
2426 unittest.expect(o.applyEventTags, unittest.isTrue); | 2426 unittest.expect(o.applyEventTags, unittest.isTrue); |
2427 checkClickThroughUrl(o.clickThroughUrl); | 2427 checkClickThroughUrl(o.clickThroughUrl); |
2428 checkUnnamed2555(o.companionCreativeOverrides); | 2428 checkUnnamed2649(o.companionCreativeOverrides); |
2429 checkUnnamed2556(o.creativeGroupAssignments); | 2429 checkUnnamed2650(o.creativeGroupAssignments); |
2430 unittest.expect(o.creativeId, unittest.equals('foo')); | 2430 unittest.expect(o.creativeId, unittest.equals('foo')); |
2431 checkDimensionValue(o.creativeIdDimensionValue); | 2431 checkDimensionValue(o.creativeIdDimensionValue); |
2432 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2432 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
2433 checkUnnamed2557(o.richMediaExitOverrides); | 2433 checkUnnamed2651(o.richMediaExitOverrides); |
2434 unittest.expect(o.sequence, unittest.equals(42)); | 2434 unittest.expect(o.sequence, unittest.equals(42)); |
2435 unittest.expect(o.sslCompliant, unittest.isTrue); | 2435 unittest.expect(o.sslCompliant, unittest.isTrue); |
2436 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 2436 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
2437 unittest.expect(o.weight, unittest.equals(42)); | 2437 unittest.expect(o.weight, unittest.equals(42)); |
2438 } | 2438 } |
2439 buildCounterCreativeAssignment--; | 2439 buildCounterCreativeAssignment--; |
2440 } | 2440 } |
2441 | 2441 |
2442 core.int buildCounterCreativeCustomEvent = 0; | 2442 core.int buildCounterCreativeCustomEvent = 0; |
2443 buildCreativeCustomEvent() { | 2443 buildCreativeCustomEvent() { |
(...skipping 100 matching lines...) Loading... |
2544 checkCreativeFieldValue(api.CreativeFieldValue o) { | 2544 checkCreativeFieldValue(api.CreativeFieldValue o) { |
2545 buildCounterCreativeFieldValue++; | 2545 buildCounterCreativeFieldValue++; |
2546 if (buildCounterCreativeFieldValue < 3) { | 2546 if (buildCounterCreativeFieldValue < 3) { |
2547 unittest.expect(o.id, unittest.equals('foo')); | 2547 unittest.expect(o.id, unittest.equals('foo')); |
2548 unittest.expect(o.kind, unittest.equals('foo')); | 2548 unittest.expect(o.kind, unittest.equals('foo')); |
2549 unittest.expect(o.value, unittest.equals('foo')); | 2549 unittest.expect(o.value, unittest.equals('foo')); |
2550 } | 2550 } |
2551 buildCounterCreativeFieldValue--; | 2551 buildCounterCreativeFieldValue--; |
2552 } | 2552 } |
2553 | 2553 |
2554 buildUnnamed2558() { | 2554 buildUnnamed2652() { |
2555 var o = new core.List<api.CreativeFieldValue>(); | 2555 var o = new core.List<api.CreativeFieldValue>(); |
2556 o.add(buildCreativeFieldValue()); | 2556 o.add(buildCreativeFieldValue()); |
2557 o.add(buildCreativeFieldValue()); | 2557 o.add(buildCreativeFieldValue()); |
2558 return o; | 2558 return o; |
2559 } | 2559 } |
2560 | 2560 |
2561 checkUnnamed2558(core.List<api.CreativeFieldValue> o) { | 2561 checkUnnamed2652(core.List<api.CreativeFieldValue> o) { |
2562 unittest.expect(o, unittest.hasLength(2)); | 2562 unittest.expect(o, unittest.hasLength(2)); |
2563 checkCreativeFieldValue(o[0]); | 2563 checkCreativeFieldValue(o[0]); |
2564 checkCreativeFieldValue(o[1]); | 2564 checkCreativeFieldValue(o[1]); |
2565 } | 2565 } |
2566 | 2566 |
2567 core.int buildCounterCreativeFieldValuesListResponse = 0; | 2567 core.int buildCounterCreativeFieldValuesListResponse = 0; |
2568 buildCreativeFieldValuesListResponse() { | 2568 buildCreativeFieldValuesListResponse() { |
2569 var o = new api.CreativeFieldValuesListResponse(); | 2569 var o = new api.CreativeFieldValuesListResponse(); |
2570 buildCounterCreativeFieldValuesListResponse++; | 2570 buildCounterCreativeFieldValuesListResponse++; |
2571 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2571 if (buildCounterCreativeFieldValuesListResponse < 3) { |
2572 o.creativeFieldValues = buildUnnamed2558(); | 2572 o.creativeFieldValues = buildUnnamed2652(); |
2573 o.kind = "foo"; | 2573 o.kind = "foo"; |
2574 o.nextPageToken = "foo"; | 2574 o.nextPageToken = "foo"; |
2575 } | 2575 } |
2576 buildCounterCreativeFieldValuesListResponse--; | 2576 buildCounterCreativeFieldValuesListResponse--; |
2577 return o; | 2577 return o; |
2578 } | 2578 } |
2579 | 2579 |
2580 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { | 2580 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { |
2581 buildCounterCreativeFieldValuesListResponse++; | 2581 buildCounterCreativeFieldValuesListResponse++; |
2582 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2582 if (buildCounterCreativeFieldValuesListResponse < 3) { |
2583 checkUnnamed2558(o.creativeFieldValues); | 2583 checkUnnamed2652(o.creativeFieldValues); |
2584 unittest.expect(o.kind, unittest.equals('foo')); | 2584 unittest.expect(o.kind, unittest.equals('foo')); |
2585 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2585 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2586 } | 2586 } |
2587 buildCounterCreativeFieldValuesListResponse--; | 2587 buildCounterCreativeFieldValuesListResponse--; |
2588 } | 2588 } |
2589 | 2589 |
2590 buildUnnamed2559() { | 2590 buildUnnamed2653() { |
2591 var o = new core.List<api.CreativeField>(); | 2591 var o = new core.List<api.CreativeField>(); |
2592 o.add(buildCreativeField()); | 2592 o.add(buildCreativeField()); |
2593 o.add(buildCreativeField()); | 2593 o.add(buildCreativeField()); |
2594 return o; | 2594 return o; |
2595 } | 2595 } |
2596 | 2596 |
2597 checkUnnamed2559(core.List<api.CreativeField> o) { | 2597 checkUnnamed2653(core.List<api.CreativeField> o) { |
2598 unittest.expect(o, unittest.hasLength(2)); | 2598 unittest.expect(o, unittest.hasLength(2)); |
2599 checkCreativeField(o[0]); | 2599 checkCreativeField(o[0]); |
2600 checkCreativeField(o[1]); | 2600 checkCreativeField(o[1]); |
2601 } | 2601 } |
2602 | 2602 |
2603 core.int buildCounterCreativeFieldsListResponse = 0; | 2603 core.int buildCounterCreativeFieldsListResponse = 0; |
2604 buildCreativeFieldsListResponse() { | 2604 buildCreativeFieldsListResponse() { |
2605 var o = new api.CreativeFieldsListResponse(); | 2605 var o = new api.CreativeFieldsListResponse(); |
2606 buildCounterCreativeFieldsListResponse++; | 2606 buildCounterCreativeFieldsListResponse++; |
2607 if (buildCounterCreativeFieldsListResponse < 3) { | 2607 if (buildCounterCreativeFieldsListResponse < 3) { |
2608 o.creativeFields = buildUnnamed2559(); | 2608 o.creativeFields = buildUnnamed2653(); |
2609 o.kind = "foo"; | 2609 o.kind = "foo"; |
2610 o.nextPageToken = "foo"; | 2610 o.nextPageToken = "foo"; |
2611 } | 2611 } |
2612 buildCounterCreativeFieldsListResponse--; | 2612 buildCounterCreativeFieldsListResponse--; |
2613 return o; | 2613 return o; |
2614 } | 2614 } |
2615 | 2615 |
2616 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { | 2616 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { |
2617 buildCounterCreativeFieldsListResponse++; | 2617 buildCounterCreativeFieldsListResponse++; |
2618 if (buildCounterCreativeFieldsListResponse < 3) { | 2618 if (buildCounterCreativeFieldsListResponse < 3) { |
2619 checkUnnamed2559(o.creativeFields); | 2619 checkUnnamed2653(o.creativeFields); |
2620 unittest.expect(o.kind, unittest.equals('foo')); | 2620 unittest.expect(o.kind, unittest.equals('foo')); |
2621 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2621 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2622 } | 2622 } |
2623 buildCounterCreativeFieldsListResponse--; | 2623 buildCounterCreativeFieldsListResponse--; |
2624 } | 2624 } |
2625 | 2625 |
2626 core.int buildCounterCreativeGroup = 0; | 2626 core.int buildCounterCreativeGroup = 0; |
2627 buildCreativeGroup() { | 2627 buildCreativeGroup() { |
2628 var o = new api.CreativeGroup(); | 2628 var o = new api.CreativeGroup(); |
2629 buildCounterCreativeGroup++; | 2629 buildCounterCreativeGroup++; |
(...skipping 40 matching lines...) Loading... |
2670 | 2670 |
2671 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { | 2671 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { |
2672 buildCounterCreativeGroupAssignment++; | 2672 buildCounterCreativeGroupAssignment++; |
2673 if (buildCounterCreativeGroupAssignment < 3) { | 2673 if (buildCounterCreativeGroupAssignment < 3) { |
2674 unittest.expect(o.creativeGroupId, unittest.equals('foo')); | 2674 unittest.expect(o.creativeGroupId, unittest.equals('foo')); |
2675 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); | 2675 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); |
2676 } | 2676 } |
2677 buildCounterCreativeGroupAssignment--; | 2677 buildCounterCreativeGroupAssignment--; |
2678 } | 2678 } |
2679 | 2679 |
2680 buildUnnamed2560() { | 2680 buildUnnamed2654() { |
2681 var o = new core.List<api.CreativeGroup>(); | 2681 var o = new core.List<api.CreativeGroup>(); |
2682 o.add(buildCreativeGroup()); | 2682 o.add(buildCreativeGroup()); |
2683 o.add(buildCreativeGroup()); | 2683 o.add(buildCreativeGroup()); |
2684 return o; | 2684 return o; |
2685 } | 2685 } |
2686 | 2686 |
2687 checkUnnamed2560(core.List<api.CreativeGroup> o) { | 2687 checkUnnamed2654(core.List<api.CreativeGroup> o) { |
2688 unittest.expect(o, unittest.hasLength(2)); | 2688 unittest.expect(o, unittest.hasLength(2)); |
2689 checkCreativeGroup(o[0]); | 2689 checkCreativeGroup(o[0]); |
2690 checkCreativeGroup(o[1]); | 2690 checkCreativeGroup(o[1]); |
2691 } | 2691 } |
2692 | 2692 |
2693 core.int buildCounterCreativeGroupsListResponse = 0; | 2693 core.int buildCounterCreativeGroupsListResponse = 0; |
2694 buildCreativeGroupsListResponse() { | 2694 buildCreativeGroupsListResponse() { |
2695 var o = new api.CreativeGroupsListResponse(); | 2695 var o = new api.CreativeGroupsListResponse(); |
2696 buildCounterCreativeGroupsListResponse++; | 2696 buildCounterCreativeGroupsListResponse++; |
2697 if (buildCounterCreativeGroupsListResponse < 3) { | 2697 if (buildCounterCreativeGroupsListResponse < 3) { |
2698 o.creativeGroups = buildUnnamed2560(); | 2698 o.creativeGroups = buildUnnamed2654(); |
2699 o.kind = "foo"; | 2699 o.kind = "foo"; |
2700 o.nextPageToken = "foo"; | 2700 o.nextPageToken = "foo"; |
2701 } | 2701 } |
2702 buildCounterCreativeGroupsListResponse--; | 2702 buildCounterCreativeGroupsListResponse--; |
2703 return o; | 2703 return o; |
2704 } | 2704 } |
2705 | 2705 |
2706 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { | 2706 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { |
2707 buildCounterCreativeGroupsListResponse++; | 2707 buildCounterCreativeGroupsListResponse++; |
2708 if (buildCounterCreativeGroupsListResponse < 3) { | 2708 if (buildCounterCreativeGroupsListResponse < 3) { |
2709 checkUnnamed2560(o.creativeGroups); | 2709 checkUnnamed2654(o.creativeGroups); |
2710 unittest.expect(o.kind, unittest.equals('foo')); | 2710 unittest.expect(o.kind, unittest.equals('foo')); |
2711 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2711 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2712 } | 2712 } |
2713 buildCounterCreativeGroupsListResponse--; | 2713 buildCounterCreativeGroupsListResponse--; |
2714 } | 2714 } |
2715 | 2715 |
2716 buildUnnamed2561() { | 2716 buildUnnamed2655() { |
2717 var o = new core.List<api.OptimizationActivity>(); | 2717 var o = new core.List<api.OptimizationActivity>(); |
2718 o.add(buildOptimizationActivity()); | 2718 o.add(buildOptimizationActivity()); |
2719 o.add(buildOptimizationActivity()); | 2719 o.add(buildOptimizationActivity()); |
2720 return o; | 2720 return o; |
2721 } | 2721 } |
2722 | 2722 |
2723 checkUnnamed2561(core.List<api.OptimizationActivity> o) { | 2723 checkUnnamed2655(core.List<api.OptimizationActivity> o) { |
2724 unittest.expect(o, unittest.hasLength(2)); | 2724 unittest.expect(o, unittest.hasLength(2)); |
2725 checkOptimizationActivity(o[0]); | 2725 checkOptimizationActivity(o[0]); |
2726 checkOptimizationActivity(o[1]); | 2726 checkOptimizationActivity(o[1]); |
2727 } | 2727 } |
2728 | 2728 |
2729 core.int buildCounterCreativeOptimizationConfiguration = 0; | 2729 core.int buildCounterCreativeOptimizationConfiguration = 0; |
2730 buildCreativeOptimizationConfiguration() { | 2730 buildCreativeOptimizationConfiguration() { |
2731 var o = new api.CreativeOptimizationConfiguration(); | 2731 var o = new api.CreativeOptimizationConfiguration(); |
2732 buildCounterCreativeOptimizationConfiguration++; | 2732 buildCounterCreativeOptimizationConfiguration++; |
2733 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2733 if (buildCounterCreativeOptimizationConfiguration < 3) { |
2734 o.id = "foo"; | 2734 o.id = "foo"; |
2735 o.name = "foo"; | 2735 o.name = "foo"; |
2736 o.optimizationActivitys = buildUnnamed2561(); | 2736 o.optimizationActivitys = buildUnnamed2655(); |
2737 o.optimizationModel = "foo"; | 2737 o.optimizationModel = "foo"; |
2738 } | 2738 } |
2739 buildCounterCreativeOptimizationConfiguration--; | 2739 buildCounterCreativeOptimizationConfiguration--; |
2740 return o; | 2740 return o; |
2741 } | 2741 } |
2742 | 2742 |
2743 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ | 2743 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ |
2744 buildCounterCreativeOptimizationConfiguration++; | 2744 buildCounterCreativeOptimizationConfiguration++; |
2745 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2745 if (buildCounterCreativeOptimizationConfiguration < 3) { |
2746 unittest.expect(o.id, unittest.equals('foo')); | 2746 unittest.expect(o.id, unittest.equals('foo')); |
2747 unittest.expect(o.name, unittest.equals('foo')); | 2747 unittest.expect(o.name, unittest.equals('foo')); |
2748 checkUnnamed2561(o.optimizationActivitys); | 2748 checkUnnamed2655(o.optimizationActivitys); |
2749 unittest.expect(o.optimizationModel, unittest.equals('foo')); | 2749 unittest.expect(o.optimizationModel, unittest.equals('foo')); |
2750 } | 2750 } |
2751 buildCounterCreativeOptimizationConfiguration--; | 2751 buildCounterCreativeOptimizationConfiguration--; |
2752 } | 2752 } |
2753 | 2753 |
2754 buildUnnamed2562() { | 2754 buildUnnamed2656() { |
2755 var o = new core.List<api.CreativeAssignment>(); | 2755 var o = new core.List<api.CreativeAssignment>(); |
2756 o.add(buildCreativeAssignment()); | 2756 o.add(buildCreativeAssignment()); |
2757 o.add(buildCreativeAssignment()); | 2757 o.add(buildCreativeAssignment()); |
2758 return o; | 2758 return o; |
2759 } | 2759 } |
2760 | 2760 |
2761 checkUnnamed2562(core.List<api.CreativeAssignment> o) { | 2761 checkUnnamed2656(core.List<api.CreativeAssignment> o) { |
2762 unittest.expect(o, unittest.hasLength(2)); | 2762 unittest.expect(o, unittest.hasLength(2)); |
2763 checkCreativeAssignment(o[0]); | 2763 checkCreativeAssignment(o[0]); |
2764 checkCreativeAssignment(o[1]); | 2764 checkCreativeAssignment(o[1]); |
2765 } | 2765 } |
2766 | 2766 |
2767 core.int buildCounterCreativeRotation = 0; | 2767 core.int buildCounterCreativeRotation = 0; |
2768 buildCreativeRotation() { | 2768 buildCreativeRotation() { |
2769 var o = new api.CreativeRotation(); | 2769 var o = new api.CreativeRotation(); |
2770 buildCounterCreativeRotation++; | 2770 buildCounterCreativeRotation++; |
2771 if (buildCounterCreativeRotation < 3) { | 2771 if (buildCounterCreativeRotation < 3) { |
2772 o.creativeAssignments = buildUnnamed2562(); | 2772 o.creativeAssignments = buildUnnamed2656(); |
2773 o.creativeOptimizationConfigurationId = "foo"; | 2773 o.creativeOptimizationConfigurationId = "foo"; |
2774 o.type = "foo"; | 2774 o.type = "foo"; |
2775 o.weightCalculationStrategy = "foo"; | 2775 o.weightCalculationStrategy = "foo"; |
2776 } | 2776 } |
2777 buildCounterCreativeRotation--; | 2777 buildCounterCreativeRotation--; |
2778 return o; | 2778 return o; |
2779 } | 2779 } |
2780 | 2780 |
2781 checkCreativeRotation(api.CreativeRotation o) { | 2781 checkCreativeRotation(api.CreativeRotation o) { |
2782 buildCounterCreativeRotation++; | 2782 buildCounterCreativeRotation++; |
2783 if (buildCounterCreativeRotation < 3) { | 2783 if (buildCounterCreativeRotation < 3) { |
2784 checkUnnamed2562(o.creativeAssignments); | 2784 checkUnnamed2656(o.creativeAssignments); |
2785 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); | 2785 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); |
2786 unittest.expect(o.type, unittest.equals('foo')); | 2786 unittest.expect(o.type, unittest.equals('foo')); |
2787 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); | 2787 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); |
2788 } | 2788 } |
2789 buildCounterCreativeRotation--; | 2789 buildCounterCreativeRotation--; |
2790 } | 2790 } |
2791 | 2791 |
2792 core.int buildCounterCreativeSettings = 0; | 2792 core.int buildCounterCreativeSettings = 0; |
2793 buildCreativeSettings() { | 2793 buildCreativeSettings() { |
2794 var o = new api.CreativeSettings(); | 2794 var o = new api.CreativeSettings(); |
2795 buildCounterCreativeSettings++; | 2795 buildCounterCreativeSettings++; |
2796 if (buildCounterCreativeSettings < 3) { | 2796 if (buildCounterCreativeSettings < 3) { |
2797 o.iFrameFooter = "foo"; | 2797 o.iFrameFooter = "foo"; |
2798 o.iFrameHeader = "foo"; | 2798 o.iFrameHeader = "foo"; |
2799 } | 2799 } |
2800 buildCounterCreativeSettings--; | 2800 buildCounterCreativeSettings--; |
2801 return o; | 2801 return o; |
2802 } | 2802 } |
2803 | 2803 |
2804 checkCreativeSettings(api.CreativeSettings o) { | 2804 checkCreativeSettings(api.CreativeSettings o) { |
2805 buildCounterCreativeSettings++; | 2805 buildCounterCreativeSettings++; |
2806 if (buildCounterCreativeSettings < 3) { | 2806 if (buildCounterCreativeSettings < 3) { |
2807 unittest.expect(o.iFrameFooter, unittest.equals('foo')); | 2807 unittest.expect(o.iFrameFooter, unittest.equals('foo')); |
2808 unittest.expect(o.iFrameHeader, unittest.equals('foo')); | 2808 unittest.expect(o.iFrameHeader, unittest.equals('foo')); |
2809 } | 2809 } |
2810 buildCounterCreativeSettings--; | 2810 buildCounterCreativeSettings--; |
2811 } | 2811 } |
2812 | 2812 |
2813 buildUnnamed2563() { | 2813 buildUnnamed2657() { |
2814 var o = new core.List<api.Creative>(); | 2814 var o = new core.List<api.Creative>(); |
2815 o.add(buildCreative()); | 2815 o.add(buildCreative()); |
2816 o.add(buildCreative()); | 2816 o.add(buildCreative()); |
2817 return o; | 2817 return o; |
2818 } | 2818 } |
2819 | 2819 |
2820 checkUnnamed2563(core.List<api.Creative> o) { | 2820 checkUnnamed2657(core.List<api.Creative> o) { |
2821 unittest.expect(o, unittest.hasLength(2)); | 2821 unittest.expect(o, unittest.hasLength(2)); |
2822 checkCreative(o[0]); | 2822 checkCreative(o[0]); |
2823 checkCreative(o[1]); | 2823 checkCreative(o[1]); |
2824 } | 2824 } |
2825 | 2825 |
2826 core.int buildCounterCreativesListResponse = 0; | 2826 core.int buildCounterCreativesListResponse = 0; |
2827 buildCreativesListResponse() { | 2827 buildCreativesListResponse() { |
2828 var o = new api.CreativesListResponse(); | 2828 var o = new api.CreativesListResponse(); |
2829 buildCounterCreativesListResponse++; | 2829 buildCounterCreativesListResponse++; |
2830 if (buildCounterCreativesListResponse < 3) { | 2830 if (buildCounterCreativesListResponse < 3) { |
2831 o.creatives = buildUnnamed2563(); | 2831 o.creatives = buildUnnamed2657(); |
2832 o.kind = "foo"; | 2832 o.kind = "foo"; |
2833 o.nextPageToken = "foo"; | 2833 o.nextPageToken = "foo"; |
2834 } | 2834 } |
2835 buildCounterCreativesListResponse--; | 2835 buildCounterCreativesListResponse--; |
2836 return o; | 2836 return o; |
2837 } | 2837 } |
2838 | 2838 |
2839 checkCreativesListResponse(api.CreativesListResponse o) { | 2839 checkCreativesListResponse(api.CreativesListResponse o) { |
2840 buildCounterCreativesListResponse++; | 2840 buildCounterCreativesListResponse++; |
2841 if (buildCounterCreativesListResponse < 3) { | 2841 if (buildCounterCreativesListResponse < 3) { |
2842 checkUnnamed2563(o.creatives); | 2842 checkUnnamed2657(o.creatives); |
2843 unittest.expect(o.kind, unittest.equals('foo')); | 2843 unittest.expect(o.kind, unittest.equals('foo')); |
2844 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2844 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
2845 } | 2845 } |
2846 buildCounterCreativesListResponse--; | 2846 buildCounterCreativesListResponse--; |
2847 } | 2847 } |
2848 | 2848 |
2849 buildUnnamed2564() { | 2849 buildUnnamed2658() { |
2850 var o = new core.List<api.Dimension>(); | 2850 var o = new core.List<api.Dimension>(); |
2851 o.add(buildDimension()); | 2851 o.add(buildDimension()); |
2852 o.add(buildDimension()); | 2852 o.add(buildDimension()); |
2853 return o; | 2853 return o; |
2854 } | 2854 } |
2855 | 2855 |
2856 checkUnnamed2564(core.List<api.Dimension> o) { | 2856 checkUnnamed2658(core.List<api.Dimension> o) { |
2857 unittest.expect(o, unittest.hasLength(2)); | 2857 unittest.expect(o, unittest.hasLength(2)); |
2858 checkDimension(o[0]); | 2858 checkDimension(o[0]); |
2859 checkDimension(o[1]); | 2859 checkDimension(o[1]); |
2860 } | 2860 } |
2861 | 2861 |
2862 buildUnnamed2565() { | 2862 buildUnnamed2659() { |
2863 var o = new core.List<api.Dimension>(); | 2863 var o = new core.List<api.Dimension>(); |
2864 o.add(buildDimension()); | 2864 o.add(buildDimension()); |
2865 o.add(buildDimension()); | 2865 o.add(buildDimension()); |
2866 return o; | 2866 return o; |
2867 } | 2867 } |
2868 | 2868 |
2869 checkUnnamed2565(core.List<api.Dimension> o) { | 2869 checkUnnamed2659(core.List<api.Dimension> o) { |
2870 unittest.expect(o, unittest.hasLength(2)); | 2870 unittest.expect(o, unittest.hasLength(2)); |
2871 checkDimension(o[0]); | 2871 checkDimension(o[0]); |
2872 checkDimension(o[1]); | 2872 checkDimension(o[1]); |
2873 } | 2873 } |
2874 | 2874 |
2875 buildUnnamed2566() { | 2875 buildUnnamed2660() { |
2876 var o = new core.List<api.Metric>(); | 2876 var o = new core.List<api.Metric>(); |
2877 o.add(buildMetric()); | 2877 o.add(buildMetric()); |
2878 o.add(buildMetric()); | 2878 o.add(buildMetric()); |
2879 return o; | 2879 return o; |
2880 } | 2880 } |
2881 | 2881 |
2882 checkUnnamed2566(core.List<api.Metric> o) { | 2882 checkUnnamed2660(core.List<api.Metric> o) { |
2883 unittest.expect(o, unittest.hasLength(2)); | 2883 unittest.expect(o, unittest.hasLength(2)); |
2884 checkMetric(o[0]); | 2884 checkMetric(o[0]); |
2885 checkMetric(o[1]); | 2885 checkMetric(o[1]); |
2886 } | 2886 } |
2887 | 2887 |
2888 buildUnnamed2567() { | 2888 buildUnnamed2661() { |
2889 var o = new core.List<api.Metric>(); | 2889 var o = new core.List<api.Metric>(); |
2890 o.add(buildMetric()); | 2890 o.add(buildMetric()); |
2891 o.add(buildMetric()); | 2891 o.add(buildMetric()); |
2892 return o; | 2892 return o; |
2893 } | 2893 } |
2894 | 2894 |
2895 checkUnnamed2567(core.List<api.Metric> o) { | 2895 checkUnnamed2661(core.List<api.Metric> o) { |
2896 unittest.expect(o, unittest.hasLength(2)); | 2896 unittest.expect(o, unittest.hasLength(2)); |
2897 checkMetric(o[0]); | 2897 checkMetric(o[0]); |
2898 checkMetric(o[1]); | 2898 checkMetric(o[1]); |
2899 } | 2899 } |
2900 | 2900 |
2901 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; | 2901 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; |
2902 buildCrossDimensionReachReportCompatibleFields() { | 2902 buildCrossDimensionReachReportCompatibleFields() { |
2903 var o = new api.CrossDimensionReachReportCompatibleFields(); | 2903 var o = new api.CrossDimensionReachReportCompatibleFields(); |
2904 buildCounterCrossDimensionReachReportCompatibleFields++; | 2904 buildCounterCrossDimensionReachReportCompatibleFields++; |
2905 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2905 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
2906 o.breakdown = buildUnnamed2564(); | 2906 o.breakdown = buildUnnamed2658(); |
2907 o.dimensionFilters = buildUnnamed2565(); | 2907 o.dimensionFilters = buildUnnamed2659(); |
2908 o.kind = "foo"; | 2908 o.kind = "foo"; |
2909 o.metrics = buildUnnamed2566(); | 2909 o.metrics = buildUnnamed2660(); |
2910 o.overlapMetrics = buildUnnamed2567(); | 2910 o.overlapMetrics = buildUnnamed2661(); |
2911 } | 2911 } |
2912 buildCounterCrossDimensionReachReportCompatibleFields--; | 2912 buildCounterCrossDimensionReachReportCompatibleFields--; |
2913 return o; | 2913 return o; |
2914 } | 2914 } |
2915 | 2915 |
2916 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { | 2916 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { |
2917 buildCounterCrossDimensionReachReportCompatibleFields++; | 2917 buildCounterCrossDimensionReachReportCompatibleFields++; |
2918 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2918 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
2919 checkUnnamed2564(o.breakdown); | 2919 checkUnnamed2658(o.breakdown); |
2920 checkUnnamed2565(o.dimensionFilters); | 2920 checkUnnamed2659(o.dimensionFilters); |
2921 unittest.expect(o.kind, unittest.equals('foo')); | 2921 unittest.expect(o.kind, unittest.equals('foo')); |
2922 checkUnnamed2566(o.metrics); | 2922 checkUnnamed2660(o.metrics); |
2923 checkUnnamed2567(o.overlapMetrics); | 2923 checkUnnamed2661(o.overlapMetrics); |
2924 } | 2924 } |
2925 buildCounterCrossDimensionReachReportCompatibleFields--; | 2925 buildCounterCrossDimensionReachReportCompatibleFields--; |
2926 } | 2926 } |
2927 | 2927 |
2928 core.int buildCounterCustomFloodlightVariable = 0; | 2928 core.int buildCounterCustomFloodlightVariable = 0; |
2929 buildCustomFloodlightVariable() { | 2929 buildCustomFloodlightVariable() { |
2930 var o = new api.CustomFloodlightVariable(); | 2930 var o = new api.CustomFloodlightVariable(); |
2931 buildCounterCustomFloodlightVariable++; | 2931 buildCounterCustomFloodlightVariable++; |
2932 if (buildCounterCustomFloodlightVariable < 3) { | 2932 if (buildCounterCustomFloodlightVariable < 3) { |
2933 o.kind = "foo"; | 2933 o.kind = "foo"; |
2934 o.type = "foo"; | 2934 o.type = "foo"; |
2935 o.value = "foo"; | 2935 o.value = "foo"; |
2936 } | 2936 } |
2937 buildCounterCustomFloodlightVariable--; | 2937 buildCounterCustomFloodlightVariable--; |
2938 return o; | 2938 return o; |
2939 } | 2939 } |
2940 | 2940 |
2941 checkCustomFloodlightVariable(api.CustomFloodlightVariable o) { | 2941 checkCustomFloodlightVariable(api.CustomFloodlightVariable o) { |
2942 buildCounterCustomFloodlightVariable++; | 2942 buildCounterCustomFloodlightVariable++; |
2943 if (buildCounterCustomFloodlightVariable < 3) { | 2943 if (buildCounterCustomFloodlightVariable < 3) { |
2944 unittest.expect(o.kind, unittest.equals('foo')); | 2944 unittest.expect(o.kind, unittest.equals('foo')); |
2945 unittest.expect(o.type, unittest.equals('foo')); | 2945 unittest.expect(o.type, unittest.equals('foo')); |
2946 unittest.expect(o.value, unittest.equals('foo')); | 2946 unittest.expect(o.value, unittest.equals('foo')); |
2947 } | 2947 } |
2948 buildCounterCustomFloodlightVariable--; | 2948 buildCounterCustomFloodlightVariable--; |
2949 } | 2949 } |
2950 | 2950 |
2951 buildUnnamed2568() { | 2951 buildUnnamed2662() { |
2952 var o = new core.List<api.DimensionValue>(); | 2952 var o = new core.List<api.DimensionValue>(); |
2953 o.add(buildDimensionValue()); | 2953 o.add(buildDimensionValue()); |
2954 o.add(buildDimensionValue()); | 2954 o.add(buildDimensionValue()); |
2955 return o; | 2955 return o; |
2956 } | 2956 } |
2957 | 2957 |
2958 checkUnnamed2568(core.List<api.DimensionValue> o) { | 2958 checkUnnamed2662(core.List<api.DimensionValue> o) { |
2959 unittest.expect(o, unittest.hasLength(2)); | 2959 unittest.expect(o, unittest.hasLength(2)); |
2960 checkDimensionValue(o[0]); | 2960 checkDimensionValue(o[0]); |
2961 checkDimensionValue(o[1]); | 2961 checkDimensionValue(o[1]); |
2962 } | 2962 } |
2963 | 2963 |
2964 core.int buildCounterCustomRichMediaEvents = 0; | 2964 core.int buildCounterCustomRichMediaEvents = 0; |
2965 buildCustomRichMediaEvents() { | 2965 buildCustomRichMediaEvents() { |
2966 var o = new api.CustomRichMediaEvents(); | 2966 var o = new api.CustomRichMediaEvents(); |
2967 buildCounterCustomRichMediaEvents++; | 2967 buildCounterCustomRichMediaEvents++; |
2968 if (buildCounterCustomRichMediaEvents < 3) { | 2968 if (buildCounterCustomRichMediaEvents < 3) { |
2969 o.filteredEventIds = buildUnnamed2568(); | 2969 o.filteredEventIds = buildUnnamed2662(); |
2970 o.kind = "foo"; | 2970 o.kind = "foo"; |
2971 } | 2971 } |
2972 buildCounterCustomRichMediaEvents--; | 2972 buildCounterCustomRichMediaEvents--; |
2973 return o; | 2973 return o; |
2974 } | 2974 } |
2975 | 2975 |
2976 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { | 2976 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { |
2977 buildCounterCustomRichMediaEvents++; | 2977 buildCounterCustomRichMediaEvents++; |
2978 if (buildCounterCustomRichMediaEvents < 3) { | 2978 if (buildCounterCustomRichMediaEvents < 3) { |
2979 checkUnnamed2568(o.filteredEventIds); | 2979 checkUnnamed2662(o.filteredEventIds); |
2980 unittest.expect(o.kind, unittest.equals('foo')); | 2980 unittest.expect(o.kind, unittest.equals('foo')); |
2981 } | 2981 } |
2982 buildCounterCustomRichMediaEvents--; | 2982 buildCounterCustomRichMediaEvents--; |
2983 } | 2983 } |
2984 | 2984 |
2985 core.int buildCounterDateRange = 0; | 2985 core.int buildCounterDateRange = 0; |
2986 buildDateRange() { | 2986 buildDateRange() { |
2987 var o = new api.DateRange(); | 2987 var o = new api.DateRange(); |
2988 buildCounterDateRange++; | 2988 buildCounterDateRange++; |
2989 if (buildCounterDateRange < 3) { | 2989 if (buildCounterDateRange < 3) { |
(...skipping 10 matching lines...) Loading... |
3000 buildCounterDateRange++; | 3000 buildCounterDateRange++; |
3001 if (buildCounterDateRange < 3) { | 3001 if (buildCounterDateRange < 3) { |
3002 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 3002 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
3003 unittest.expect(o.kind, unittest.equals('foo')); | 3003 unittest.expect(o.kind, unittest.equals('foo')); |
3004 unittest.expect(o.relativeDateRange, unittest.equals('foo')); | 3004 unittest.expect(o.relativeDateRange, unittest.equals('foo')); |
3005 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 3005 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
3006 } | 3006 } |
3007 buildCounterDateRange--; | 3007 buildCounterDateRange--; |
3008 } | 3008 } |
3009 | 3009 |
3010 buildUnnamed2569() { | 3010 buildUnnamed2663() { |
3011 var o = new core.List<core.String>(); | 3011 var o = new core.List<core.String>(); |
3012 o.add("foo"); | 3012 o.add("foo"); |
3013 o.add("foo"); | 3013 o.add("foo"); |
3014 return o; | 3014 return o; |
3015 } | 3015 } |
3016 | 3016 |
3017 checkUnnamed2569(core.List<core.String> o) { | 3017 checkUnnamed2663(core.List<core.String> o) { |
3018 unittest.expect(o, unittest.hasLength(2)); | 3018 unittest.expect(o, unittest.hasLength(2)); |
3019 unittest.expect(o[0], unittest.equals('foo')); | 3019 unittest.expect(o[0], unittest.equals('foo')); |
3020 unittest.expect(o[1], unittest.equals('foo')); | 3020 unittest.expect(o[1], unittest.equals('foo')); |
3021 } | 3021 } |
3022 | 3022 |
3023 buildUnnamed2570() { | 3023 buildUnnamed2664() { |
3024 var o = new core.List<core.int>(); | 3024 var o = new core.List<core.int>(); |
3025 o.add(42); | 3025 o.add(42); |
3026 o.add(42); | 3026 o.add(42); |
3027 return o; | 3027 return o; |
3028 } | 3028 } |
3029 | 3029 |
3030 checkUnnamed2570(core.List<core.int> o) { | 3030 checkUnnamed2664(core.List<core.int> o) { |
3031 unittest.expect(o, unittest.hasLength(2)); | 3031 unittest.expect(o, unittest.hasLength(2)); |
3032 unittest.expect(o[0], unittest.equals(42)); | 3032 unittest.expect(o[0], unittest.equals(42)); |
3033 unittest.expect(o[1], unittest.equals(42)); | 3033 unittest.expect(o[1], unittest.equals(42)); |
3034 } | 3034 } |
3035 | 3035 |
3036 core.int buildCounterDayPartTargeting = 0; | 3036 core.int buildCounterDayPartTargeting = 0; |
3037 buildDayPartTargeting() { | 3037 buildDayPartTargeting() { |
3038 var o = new api.DayPartTargeting(); | 3038 var o = new api.DayPartTargeting(); |
3039 buildCounterDayPartTargeting++; | 3039 buildCounterDayPartTargeting++; |
3040 if (buildCounterDayPartTargeting < 3) { | 3040 if (buildCounterDayPartTargeting < 3) { |
3041 o.daysOfWeek = buildUnnamed2569(); | 3041 o.daysOfWeek = buildUnnamed2663(); |
3042 o.hoursOfDay = buildUnnamed2570(); | 3042 o.hoursOfDay = buildUnnamed2664(); |
3043 o.userLocalTime = true; | 3043 o.userLocalTime = true; |
3044 } | 3044 } |
3045 buildCounterDayPartTargeting--; | 3045 buildCounterDayPartTargeting--; |
3046 return o; | 3046 return o; |
3047 } | 3047 } |
3048 | 3048 |
3049 checkDayPartTargeting(api.DayPartTargeting o) { | 3049 checkDayPartTargeting(api.DayPartTargeting o) { |
3050 buildCounterDayPartTargeting++; | 3050 buildCounterDayPartTargeting++; |
3051 if (buildCounterDayPartTargeting < 3) { | 3051 if (buildCounterDayPartTargeting < 3) { |
3052 checkUnnamed2569(o.daysOfWeek); | 3052 checkUnnamed2663(o.daysOfWeek); |
3053 checkUnnamed2570(o.hoursOfDay); | 3053 checkUnnamed2664(o.hoursOfDay); |
3054 unittest.expect(o.userLocalTime, unittest.isTrue); | 3054 unittest.expect(o.userLocalTime, unittest.isTrue); |
3055 } | 3055 } |
3056 buildCounterDayPartTargeting--; | 3056 buildCounterDayPartTargeting--; |
3057 } | 3057 } |
3058 | 3058 |
3059 core.int buildCounterDefaultClickThroughEventTagProperties = 0; | 3059 core.int buildCounterDefaultClickThroughEventTagProperties = 0; |
3060 buildDefaultClickThroughEventTagProperties() { | 3060 buildDefaultClickThroughEventTagProperties() { |
3061 var o = new api.DefaultClickThroughEventTagProperties(); | 3061 var o = new api.DefaultClickThroughEventTagProperties(); |
3062 buildCounterDefaultClickThroughEventTagProperties++; | 3062 buildCounterDefaultClickThroughEventTagProperties++; |
3063 if (buildCounterDefaultClickThroughEventTagProperties < 3) { | 3063 if (buildCounterDefaultClickThroughEventTagProperties < 3) { |
(...skipping 131 matching lines...) Loading... |
3195 unittest.expect(o.dimensionName, unittest.equals('foo')); | 3195 unittest.expect(o.dimensionName, unittest.equals('foo')); |
3196 unittest.expect(o.etag, unittest.equals('foo')); | 3196 unittest.expect(o.etag, unittest.equals('foo')); |
3197 unittest.expect(o.id, unittest.equals('foo')); | 3197 unittest.expect(o.id, unittest.equals('foo')); |
3198 unittest.expect(o.kind, unittest.equals('foo')); | 3198 unittest.expect(o.kind, unittest.equals('foo')); |
3199 unittest.expect(o.matchType, unittest.equals('foo')); | 3199 unittest.expect(o.matchType, unittest.equals('foo')); |
3200 unittest.expect(o.value, unittest.equals('foo')); | 3200 unittest.expect(o.value, unittest.equals('foo')); |
3201 } | 3201 } |
3202 buildCounterDimensionValue--; | 3202 buildCounterDimensionValue--; |
3203 } | 3203 } |
3204 | 3204 |
3205 buildUnnamed2571() { | 3205 buildUnnamed2665() { |
3206 var o = new core.List<api.DimensionValue>(); | 3206 var o = new core.List<api.DimensionValue>(); |
3207 o.add(buildDimensionValue()); | 3207 o.add(buildDimensionValue()); |
3208 o.add(buildDimensionValue()); | 3208 o.add(buildDimensionValue()); |
3209 return o; | 3209 return o; |
3210 } | 3210 } |
3211 | 3211 |
3212 checkUnnamed2571(core.List<api.DimensionValue> o) { | 3212 checkUnnamed2665(core.List<api.DimensionValue> o) { |
3213 unittest.expect(o, unittest.hasLength(2)); | 3213 unittest.expect(o, unittest.hasLength(2)); |
3214 checkDimensionValue(o[0]); | 3214 checkDimensionValue(o[0]); |
3215 checkDimensionValue(o[1]); | 3215 checkDimensionValue(o[1]); |
3216 } | 3216 } |
3217 | 3217 |
3218 core.int buildCounterDimensionValueList = 0; | 3218 core.int buildCounterDimensionValueList = 0; |
3219 buildDimensionValueList() { | 3219 buildDimensionValueList() { |
3220 var o = new api.DimensionValueList(); | 3220 var o = new api.DimensionValueList(); |
3221 buildCounterDimensionValueList++; | 3221 buildCounterDimensionValueList++; |
3222 if (buildCounterDimensionValueList < 3) { | 3222 if (buildCounterDimensionValueList < 3) { |
3223 o.etag = "foo"; | 3223 o.etag = "foo"; |
3224 o.items = buildUnnamed2571(); | 3224 o.items = buildUnnamed2665(); |
3225 o.kind = "foo"; | 3225 o.kind = "foo"; |
3226 o.nextPageToken = "foo"; | 3226 o.nextPageToken = "foo"; |
3227 } | 3227 } |
3228 buildCounterDimensionValueList--; | 3228 buildCounterDimensionValueList--; |
3229 return o; | 3229 return o; |
3230 } | 3230 } |
3231 | 3231 |
3232 checkDimensionValueList(api.DimensionValueList o) { | 3232 checkDimensionValueList(api.DimensionValueList o) { |
3233 buildCounterDimensionValueList++; | 3233 buildCounterDimensionValueList++; |
3234 if (buildCounterDimensionValueList < 3) { | 3234 if (buildCounterDimensionValueList < 3) { |
3235 unittest.expect(o.etag, unittest.equals('foo')); | 3235 unittest.expect(o.etag, unittest.equals('foo')); |
3236 checkUnnamed2571(o.items); | 3236 checkUnnamed2665(o.items); |
3237 unittest.expect(o.kind, unittest.equals('foo')); | 3237 unittest.expect(o.kind, unittest.equals('foo')); |
3238 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3238 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3239 } | 3239 } |
3240 buildCounterDimensionValueList--; | 3240 buildCounterDimensionValueList--; |
3241 } | 3241 } |
3242 | 3242 |
3243 buildUnnamed2572() { | 3243 buildUnnamed2666() { |
3244 var o = new core.List<api.DimensionFilter>(); | 3244 var o = new core.List<api.DimensionFilter>(); |
3245 o.add(buildDimensionFilter()); | 3245 o.add(buildDimensionFilter()); |
3246 o.add(buildDimensionFilter()); | 3246 o.add(buildDimensionFilter()); |
3247 return o; | 3247 return o; |
3248 } | 3248 } |
3249 | 3249 |
3250 checkUnnamed2572(core.List<api.DimensionFilter> o) { | 3250 checkUnnamed2666(core.List<api.DimensionFilter> o) { |
3251 unittest.expect(o, unittest.hasLength(2)); | 3251 unittest.expect(o, unittest.hasLength(2)); |
3252 checkDimensionFilter(o[0]); | 3252 checkDimensionFilter(o[0]); |
3253 checkDimensionFilter(o[1]); | 3253 checkDimensionFilter(o[1]); |
3254 } | 3254 } |
3255 | 3255 |
3256 core.int buildCounterDimensionValueRequest = 0; | 3256 core.int buildCounterDimensionValueRequest = 0; |
3257 buildDimensionValueRequest() { | 3257 buildDimensionValueRequest() { |
3258 var o = new api.DimensionValueRequest(); | 3258 var o = new api.DimensionValueRequest(); |
3259 buildCounterDimensionValueRequest++; | 3259 buildCounterDimensionValueRequest++; |
3260 if (buildCounterDimensionValueRequest < 3) { | 3260 if (buildCounterDimensionValueRequest < 3) { |
3261 o.dimensionName = "foo"; | 3261 o.dimensionName = "foo"; |
3262 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 3262 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
3263 o.filters = buildUnnamed2572(); | 3263 o.filters = buildUnnamed2666(); |
3264 o.kind = "foo"; | 3264 o.kind = "foo"; |
3265 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 3265 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
3266 } | 3266 } |
3267 buildCounterDimensionValueRequest--; | 3267 buildCounterDimensionValueRequest--; |
3268 return o; | 3268 return o; |
3269 } | 3269 } |
3270 | 3270 |
3271 checkDimensionValueRequest(api.DimensionValueRequest o) { | 3271 checkDimensionValueRequest(api.DimensionValueRequest o) { |
3272 buildCounterDimensionValueRequest++; | 3272 buildCounterDimensionValueRequest++; |
3273 if (buildCounterDimensionValueRequest < 3) { | 3273 if (buildCounterDimensionValueRequest < 3) { |
3274 unittest.expect(o.dimensionName, unittest.equals('foo')); | 3274 unittest.expect(o.dimensionName, unittest.equals('foo')); |
3275 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 3275 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
3276 checkUnnamed2572(o.filters); | 3276 checkUnnamed2666(o.filters); |
3277 unittest.expect(o.kind, unittest.equals('foo')); | 3277 unittest.expect(o.kind, unittest.equals('foo')); |
3278 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 3278 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
3279 } | 3279 } |
3280 buildCounterDimensionValueRequest--; | 3280 buildCounterDimensionValueRequest--; |
3281 } | 3281 } |
3282 | 3282 |
3283 buildUnnamed2573() { | 3283 buildUnnamed2667() { |
3284 var o = new core.List<api.DirectorySiteContactAssignment>(); | 3284 var o = new core.List<api.DirectorySiteContactAssignment>(); |
3285 o.add(buildDirectorySiteContactAssignment()); | 3285 o.add(buildDirectorySiteContactAssignment()); |
3286 o.add(buildDirectorySiteContactAssignment()); | 3286 o.add(buildDirectorySiteContactAssignment()); |
3287 return o; | 3287 return o; |
3288 } | 3288 } |
3289 | 3289 |
3290 checkUnnamed2573(core.List<api.DirectorySiteContactAssignment> o) { | 3290 checkUnnamed2667(core.List<api.DirectorySiteContactAssignment> o) { |
3291 unittest.expect(o, unittest.hasLength(2)); | 3291 unittest.expect(o, unittest.hasLength(2)); |
3292 checkDirectorySiteContactAssignment(o[0]); | 3292 checkDirectorySiteContactAssignment(o[0]); |
3293 checkDirectorySiteContactAssignment(o[1]); | 3293 checkDirectorySiteContactAssignment(o[1]); |
3294 } | 3294 } |
3295 | 3295 |
3296 buildUnnamed2574() { | 3296 buildUnnamed2668() { |
3297 var o = new core.List<core.String>(); | 3297 var o = new core.List<core.String>(); |
3298 o.add("foo"); | 3298 o.add("foo"); |
3299 o.add("foo"); | 3299 o.add("foo"); |
3300 return o; | 3300 return o; |
3301 } | 3301 } |
3302 | 3302 |
3303 checkUnnamed2574(core.List<core.String> o) { | 3303 checkUnnamed2668(core.List<core.String> o) { |
3304 unittest.expect(o, unittest.hasLength(2)); | 3304 unittest.expect(o, unittest.hasLength(2)); |
3305 unittest.expect(o[0], unittest.equals('foo')); | 3305 unittest.expect(o[0], unittest.equals('foo')); |
3306 unittest.expect(o[1], unittest.equals('foo')); | 3306 unittest.expect(o[1], unittest.equals('foo')); |
3307 } | 3307 } |
3308 | 3308 |
3309 buildUnnamed2575() { | 3309 buildUnnamed2669() { |
3310 var o = new core.List<core.String>(); | 3310 var o = new core.List<core.String>(); |
3311 o.add("foo"); | 3311 o.add("foo"); |
3312 o.add("foo"); | 3312 o.add("foo"); |
3313 return o; | 3313 return o; |
3314 } | 3314 } |
3315 | 3315 |
3316 checkUnnamed2575(core.List<core.String> o) { | 3316 checkUnnamed2669(core.List<core.String> o) { |
3317 unittest.expect(o, unittest.hasLength(2)); | 3317 unittest.expect(o, unittest.hasLength(2)); |
3318 unittest.expect(o[0], unittest.equals('foo')); | 3318 unittest.expect(o[0], unittest.equals('foo')); |
3319 unittest.expect(o[1], unittest.equals('foo')); | 3319 unittest.expect(o[1], unittest.equals('foo')); |
3320 } | 3320 } |
3321 | 3321 |
3322 core.int buildCounterDirectorySite = 0; | 3322 core.int buildCounterDirectorySite = 0; |
3323 buildDirectorySite() { | 3323 buildDirectorySite() { |
3324 var o = new api.DirectorySite(); | 3324 var o = new api.DirectorySite(); |
3325 buildCounterDirectorySite++; | 3325 buildCounterDirectorySite++; |
3326 if (buildCounterDirectorySite < 3) { | 3326 if (buildCounterDirectorySite < 3) { |
3327 o.active = true; | 3327 o.active = true; |
3328 o.contactAssignments = buildUnnamed2573(); | 3328 o.contactAssignments = buildUnnamed2667(); |
3329 o.countryId = "foo"; | 3329 o.countryId = "foo"; |
3330 o.currencyId = "foo"; | 3330 o.currencyId = "foo"; |
3331 o.description = "foo"; | 3331 o.description = "foo"; |
3332 o.id = "foo"; | 3332 o.id = "foo"; |
3333 o.idDimensionValue = buildDimensionValue(); | 3333 o.idDimensionValue = buildDimensionValue(); |
3334 o.inpageTagFormats = buildUnnamed2574(); | 3334 o.inpageTagFormats = buildUnnamed2668(); |
3335 o.interstitialTagFormats = buildUnnamed2575(); | 3335 o.interstitialTagFormats = buildUnnamed2669(); |
3336 o.kind = "foo"; | 3336 o.kind = "foo"; |
3337 o.name = "foo"; | 3337 o.name = "foo"; |
3338 o.parentId = "foo"; | 3338 o.parentId = "foo"; |
3339 o.settings = buildDirectorySiteSettings(); | 3339 o.settings = buildDirectorySiteSettings(); |
3340 o.url = "foo"; | 3340 o.url = "foo"; |
3341 } | 3341 } |
3342 buildCounterDirectorySite--; | 3342 buildCounterDirectorySite--; |
3343 return o; | 3343 return o; |
3344 } | 3344 } |
3345 | 3345 |
3346 checkDirectorySite(api.DirectorySite o) { | 3346 checkDirectorySite(api.DirectorySite o) { |
3347 buildCounterDirectorySite++; | 3347 buildCounterDirectorySite++; |
3348 if (buildCounterDirectorySite < 3) { | 3348 if (buildCounterDirectorySite < 3) { |
3349 unittest.expect(o.active, unittest.isTrue); | 3349 unittest.expect(o.active, unittest.isTrue); |
3350 checkUnnamed2573(o.contactAssignments); | 3350 checkUnnamed2667(o.contactAssignments); |
3351 unittest.expect(o.countryId, unittest.equals('foo')); | 3351 unittest.expect(o.countryId, unittest.equals('foo')); |
3352 unittest.expect(o.currencyId, unittest.equals('foo')); | 3352 unittest.expect(o.currencyId, unittest.equals('foo')); |
3353 unittest.expect(o.description, unittest.equals('foo')); | 3353 unittest.expect(o.description, unittest.equals('foo')); |
3354 unittest.expect(o.id, unittest.equals('foo')); | 3354 unittest.expect(o.id, unittest.equals('foo')); |
3355 checkDimensionValue(o.idDimensionValue); | 3355 checkDimensionValue(o.idDimensionValue); |
3356 checkUnnamed2574(o.inpageTagFormats); | 3356 checkUnnamed2668(o.inpageTagFormats); |
3357 checkUnnamed2575(o.interstitialTagFormats); | 3357 checkUnnamed2669(o.interstitialTagFormats); |
3358 unittest.expect(o.kind, unittest.equals('foo')); | 3358 unittest.expect(o.kind, unittest.equals('foo')); |
3359 unittest.expect(o.name, unittest.equals('foo')); | 3359 unittest.expect(o.name, unittest.equals('foo')); |
3360 unittest.expect(o.parentId, unittest.equals('foo')); | 3360 unittest.expect(o.parentId, unittest.equals('foo')); |
3361 checkDirectorySiteSettings(o.settings); | 3361 checkDirectorySiteSettings(o.settings); |
3362 unittest.expect(o.url, unittest.equals('foo')); | 3362 unittest.expect(o.url, unittest.equals('foo')); |
3363 } | 3363 } |
3364 buildCounterDirectorySite--; | 3364 buildCounterDirectorySite--; |
3365 } | 3365 } |
3366 | 3366 |
3367 core.int buildCounterDirectorySiteContact = 0; | 3367 core.int buildCounterDirectorySiteContact = 0; |
(...skipping 47 matching lines...) Loading... |
3415 | 3415 |
3416 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { | 3416 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { |
3417 buildCounterDirectorySiteContactAssignment++; | 3417 buildCounterDirectorySiteContactAssignment++; |
3418 if (buildCounterDirectorySiteContactAssignment < 3) { | 3418 if (buildCounterDirectorySiteContactAssignment < 3) { |
3419 unittest.expect(o.contactId, unittest.equals('foo')); | 3419 unittest.expect(o.contactId, unittest.equals('foo')); |
3420 unittest.expect(o.visibility, unittest.equals('foo')); | 3420 unittest.expect(o.visibility, unittest.equals('foo')); |
3421 } | 3421 } |
3422 buildCounterDirectorySiteContactAssignment--; | 3422 buildCounterDirectorySiteContactAssignment--; |
3423 } | 3423 } |
3424 | 3424 |
3425 buildUnnamed2576() { | 3425 buildUnnamed2670() { |
3426 var o = new core.List<api.DirectorySiteContact>(); | 3426 var o = new core.List<api.DirectorySiteContact>(); |
3427 o.add(buildDirectorySiteContact()); | 3427 o.add(buildDirectorySiteContact()); |
3428 o.add(buildDirectorySiteContact()); | 3428 o.add(buildDirectorySiteContact()); |
3429 return o; | 3429 return o; |
3430 } | 3430 } |
3431 | 3431 |
3432 checkUnnamed2576(core.List<api.DirectorySiteContact> o) { | 3432 checkUnnamed2670(core.List<api.DirectorySiteContact> o) { |
3433 unittest.expect(o, unittest.hasLength(2)); | 3433 unittest.expect(o, unittest.hasLength(2)); |
3434 checkDirectorySiteContact(o[0]); | 3434 checkDirectorySiteContact(o[0]); |
3435 checkDirectorySiteContact(o[1]); | 3435 checkDirectorySiteContact(o[1]); |
3436 } | 3436 } |
3437 | 3437 |
3438 core.int buildCounterDirectorySiteContactsListResponse = 0; | 3438 core.int buildCounterDirectorySiteContactsListResponse = 0; |
3439 buildDirectorySiteContactsListResponse() { | 3439 buildDirectorySiteContactsListResponse() { |
3440 var o = new api.DirectorySiteContactsListResponse(); | 3440 var o = new api.DirectorySiteContactsListResponse(); |
3441 buildCounterDirectorySiteContactsListResponse++; | 3441 buildCounterDirectorySiteContactsListResponse++; |
3442 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3442 if (buildCounterDirectorySiteContactsListResponse < 3) { |
3443 o.directorySiteContacts = buildUnnamed2576(); | 3443 o.directorySiteContacts = buildUnnamed2670(); |
3444 o.kind = "foo"; | 3444 o.kind = "foo"; |
3445 o.nextPageToken = "foo"; | 3445 o.nextPageToken = "foo"; |
3446 } | 3446 } |
3447 buildCounterDirectorySiteContactsListResponse--; | 3447 buildCounterDirectorySiteContactsListResponse--; |
3448 return o; | 3448 return o; |
3449 } | 3449 } |
3450 | 3450 |
3451 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ | 3451 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ |
3452 buildCounterDirectorySiteContactsListResponse++; | 3452 buildCounterDirectorySiteContactsListResponse++; |
3453 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3453 if (buildCounterDirectorySiteContactsListResponse < 3) { |
3454 checkUnnamed2576(o.directorySiteContacts); | 3454 checkUnnamed2670(o.directorySiteContacts); |
3455 unittest.expect(o.kind, unittest.equals('foo')); | 3455 unittest.expect(o.kind, unittest.equals('foo')); |
3456 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3456 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3457 } | 3457 } |
3458 buildCounterDirectorySiteContactsListResponse--; | 3458 buildCounterDirectorySiteContactsListResponse--; |
3459 } | 3459 } |
3460 | 3460 |
3461 core.int buildCounterDirectorySiteSettings = 0; | 3461 core.int buildCounterDirectorySiteSettings = 0; |
3462 buildDirectorySiteSettings() { | 3462 buildDirectorySiteSettings() { |
3463 var o = new api.DirectorySiteSettings(); | 3463 var o = new api.DirectorySiteSettings(); |
3464 buildCounterDirectorySiteSettings++; | 3464 buildCounterDirectorySiteSettings++; |
(...skipping 17 matching lines...) Loading... |
3482 checkDfpSettings(o.dfpSettings); | 3482 checkDfpSettings(o.dfpSettings); |
3483 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); | 3483 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); |
3484 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); | 3484 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); |
3485 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); | 3485 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); |
3486 unittest.expect(o.verificationTagOptOut, unittest.isTrue); | 3486 unittest.expect(o.verificationTagOptOut, unittest.isTrue); |
3487 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 3487 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
3488 } | 3488 } |
3489 buildCounterDirectorySiteSettings--; | 3489 buildCounterDirectorySiteSettings--; |
3490 } | 3490 } |
3491 | 3491 |
3492 buildUnnamed2577() { | 3492 buildUnnamed2671() { |
3493 var o = new core.List<api.DirectorySite>(); | 3493 var o = new core.List<api.DirectorySite>(); |
3494 o.add(buildDirectorySite()); | 3494 o.add(buildDirectorySite()); |
3495 o.add(buildDirectorySite()); | 3495 o.add(buildDirectorySite()); |
3496 return o; | 3496 return o; |
3497 } | 3497 } |
3498 | 3498 |
3499 checkUnnamed2577(core.List<api.DirectorySite> o) { | 3499 checkUnnamed2671(core.List<api.DirectorySite> o) { |
3500 unittest.expect(o, unittest.hasLength(2)); | 3500 unittest.expect(o, unittest.hasLength(2)); |
3501 checkDirectorySite(o[0]); | 3501 checkDirectorySite(o[0]); |
3502 checkDirectorySite(o[1]); | 3502 checkDirectorySite(o[1]); |
3503 } | 3503 } |
3504 | 3504 |
3505 core.int buildCounterDirectorySitesListResponse = 0; | 3505 core.int buildCounterDirectorySitesListResponse = 0; |
3506 buildDirectorySitesListResponse() { | 3506 buildDirectorySitesListResponse() { |
3507 var o = new api.DirectorySitesListResponse(); | 3507 var o = new api.DirectorySitesListResponse(); |
3508 buildCounterDirectorySitesListResponse++; | 3508 buildCounterDirectorySitesListResponse++; |
3509 if (buildCounterDirectorySitesListResponse < 3) { | 3509 if (buildCounterDirectorySitesListResponse < 3) { |
3510 o.directorySites = buildUnnamed2577(); | 3510 o.directorySites = buildUnnamed2671(); |
3511 o.kind = "foo"; | 3511 o.kind = "foo"; |
3512 o.nextPageToken = "foo"; | 3512 o.nextPageToken = "foo"; |
3513 } | 3513 } |
3514 buildCounterDirectorySitesListResponse--; | 3514 buildCounterDirectorySitesListResponse--; |
3515 return o; | 3515 return o; |
3516 } | 3516 } |
3517 | 3517 |
3518 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { | 3518 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { |
3519 buildCounterDirectorySitesListResponse++; | 3519 buildCounterDirectorySitesListResponse++; |
3520 if (buildCounterDirectorySitesListResponse < 3) { | 3520 if (buildCounterDirectorySitesListResponse < 3) { |
3521 checkUnnamed2577(o.directorySites); | 3521 checkUnnamed2671(o.directorySites); |
3522 unittest.expect(o.kind, unittest.equals('foo')); | 3522 unittest.expect(o.kind, unittest.equals('foo')); |
3523 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3523 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3524 } | 3524 } |
3525 buildCounterDirectorySitesListResponse--; | 3525 buildCounterDirectorySitesListResponse--; |
3526 } | 3526 } |
3527 | 3527 |
3528 core.int buildCounterDynamicTargetingKey = 0; | 3528 core.int buildCounterDynamicTargetingKey = 0; |
3529 buildDynamicTargetingKey() { | 3529 buildDynamicTargetingKey() { |
3530 var o = new api.DynamicTargetingKey(); | 3530 var o = new api.DynamicTargetingKey(); |
3531 buildCounterDynamicTargetingKey++; | 3531 buildCounterDynamicTargetingKey++; |
(...skipping 11 matching lines...) Loading... |
3543 buildCounterDynamicTargetingKey++; | 3543 buildCounterDynamicTargetingKey++; |
3544 if (buildCounterDynamicTargetingKey < 3) { | 3544 if (buildCounterDynamicTargetingKey < 3) { |
3545 unittest.expect(o.kind, unittest.equals('foo')); | 3545 unittest.expect(o.kind, unittest.equals('foo')); |
3546 unittest.expect(o.name, unittest.equals('foo')); | 3546 unittest.expect(o.name, unittest.equals('foo')); |
3547 unittest.expect(o.objectId, unittest.equals('foo')); | 3547 unittest.expect(o.objectId, unittest.equals('foo')); |
3548 unittest.expect(o.objectType, unittest.equals('foo')); | 3548 unittest.expect(o.objectType, unittest.equals('foo')); |
3549 } | 3549 } |
3550 buildCounterDynamicTargetingKey--; | 3550 buildCounterDynamicTargetingKey--; |
3551 } | 3551 } |
3552 | 3552 |
3553 buildUnnamed2578() { | 3553 buildUnnamed2672() { |
3554 var o = new core.List<api.DynamicTargetingKey>(); | 3554 var o = new core.List<api.DynamicTargetingKey>(); |
3555 o.add(buildDynamicTargetingKey()); | 3555 o.add(buildDynamicTargetingKey()); |
3556 o.add(buildDynamicTargetingKey()); | 3556 o.add(buildDynamicTargetingKey()); |
3557 return o; | 3557 return o; |
3558 } | 3558 } |
3559 | 3559 |
3560 checkUnnamed2578(core.List<api.DynamicTargetingKey> o) { | 3560 checkUnnamed2672(core.List<api.DynamicTargetingKey> o) { |
3561 unittest.expect(o, unittest.hasLength(2)); | 3561 unittest.expect(o, unittest.hasLength(2)); |
3562 checkDynamicTargetingKey(o[0]); | 3562 checkDynamicTargetingKey(o[0]); |
3563 checkDynamicTargetingKey(o[1]); | 3563 checkDynamicTargetingKey(o[1]); |
3564 } | 3564 } |
3565 | 3565 |
3566 core.int buildCounterDynamicTargetingKeysListResponse = 0; | 3566 core.int buildCounterDynamicTargetingKeysListResponse = 0; |
3567 buildDynamicTargetingKeysListResponse() { | 3567 buildDynamicTargetingKeysListResponse() { |
3568 var o = new api.DynamicTargetingKeysListResponse(); | 3568 var o = new api.DynamicTargetingKeysListResponse(); |
3569 buildCounterDynamicTargetingKeysListResponse++; | 3569 buildCounterDynamicTargetingKeysListResponse++; |
3570 if (buildCounterDynamicTargetingKeysListResponse < 3) { | 3570 if (buildCounterDynamicTargetingKeysListResponse < 3) { |
3571 o.dynamicTargetingKeys = buildUnnamed2578(); | 3571 o.dynamicTargetingKeys = buildUnnamed2672(); |
3572 o.kind = "foo"; | 3572 o.kind = "foo"; |
3573 } | 3573 } |
3574 buildCounterDynamicTargetingKeysListResponse--; | 3574 buildCounterDynamicTargetingKeysListResponse--; |
3575 return o; | 3575 return o; |
3576 } | 3576 } |
3577 | 3577 |
3578 checkDynamicTargetingKeysListResponse(api.DynamicTargetingKeysListResponse o) { | 3578 checkDynamicTargetingKeysListResponse(api.DynamicTargetingKeysListResponse o) { |
3579 buildCounterDynamicTargetingKeysListResponse++; | 3579 buildCounterDynamicTargetingKeysListResponse++; |
3580 if (buildCounterDynamicTargetingKeysListResponse < 3) { | 3580 if (buildCounterDynamicTargetingKeysListResponse < 3) { |
3581 checkUnnamed2578(o.dynamicTargetingKeys); | 3581 checkUnnamed2672(o.dynamicTargetingKeys); |
3582 unittest.expect(o.kind, unittest.equals('foo')); | 3582 unittest.expect(o.kind, unittest.equals('foo')); |
3583 } | 3583 } |
3584 buildCounterDynamicTargetingKeysListResponse--; | 3584 buildCounterDynamicTargetingKeysListResponse--; |
3585 } | 3585 } |
3586 | 3586 |
3587 core.int buildCounterEncryptionInfo = 0; | 3587 core.int buildCounterEncryptionInfo = 0; |
3588 buildEncryptionInfo() { | 3588 buildEncryptionInfo() { |
3589 var o = new api.EncryptionInfo(); | 3589 var o = new api.EncryptionInfo(); |
3590 buildCounterEncryptionInfo++; | 3590 buildCounterEncryptionInfo++; |
3591 if (buildCounterEncryptionInfo < 3) { | 3591 if (buildCounterEncryptionInfo < 3) { |
(...skipping 10 matching lines...) Loading... |
3602 buildCounterEncryptionInfo++; | 3602 buildCounterEncryptionInfo++; |
3603 if (buildCounterEncryptionInfo < 3) { | 3603 if (buildCounterEncryptionInfo < 3) { |
3604 unittest.expect(o.encryptionEntityId, unittest.equals('foo')); | 3604 unittest.expect(o.encryptionEntityId, unittest.equals('foo')); |
3605 unittest.expect(o.encryptionEntityType, unittest.equals('foo')); | 3605 unittest.expect(o.encryptionEntityType, unittest.equals('foo')); |
3606 unittest.expect(o.encryptionSource, unittest.equals('foo')); | 3606 unittest.expect(o.encryptionSource, unittest.equals('foo')); |
3607 unittest.expect(o.kind, unittest.equals('foo')); | 3607 unittest.expect(o.kind, unittest.equals('foo')); |
3608 } | 3608 } |
3609 buildCounterEncryptionInfo--; | 3609 buildCounterEncryptionInfo--; |
3610 } | 3610 } |
3611 | 3611 |
3612 buildUnnamed2579() { | 3612 buildUnnamed2673() { |
3613 var o = new core.List<core.String>(); | 3613 var o = new core.List<core.String>(); |
3614 o.add("foo"); | 3614 o.add("foo"); |
3615 o.add("foo"); | 3615 o.add("foo"); |
3616 return o; | 3616 return o; |
3617 } | 3617 } |
3618 | 3618 |
3619 checkUnnamed2579(core.List<core.String> o) { | 3619 checkUnnamed2673(core.List<core.String> o) { |
3620 unittest.expect(o, unittest.hasLength(2)); | 3620 unittest.expect(o, unittest.hasLength(2)); |
3621 unittest.expect(o[0], unittest.equals('foo')); | 3621 unittest.expect(o[0], unittest.equals('foo')); |
3622 unittest.expect(o[1], unittest.equals('foo')); | 3622 unittest.expect(o[1], unittest.equals('foo')); |
3623 } | 3623 } |
3624 | 3624 |
3625 core.int buildCounterEventTag = 0; | 3625 core.int buildCounterEventTag = 0; |
3626 buildEventTag() { | 3626 buildEventTag() { |
3627 var o = new api.EventTag(); | 3627 var o = new api.EventTag(); |
3628 buildCounterEventTag++; | 3628 buildCounterEventTag++; |
3629 if (buildCounterEventTag < 3) { | 3629 if (buildCounterEventTag < 3) { |
3630 o.accountId = "foo"; | 3630 o.accountId = "foo"; |
3631 o.advertiserId = "foo"; | 3631 o.advertiserId = "foo"; |
3632 o.advertiserIdDimensionValue = buildDimensionValue(); | 3632 o.advertiserIdDimensionValue = buildDimensionValue(); |
3633 o.campaignId = "foo"; | 3633 o.campaignId = "foo"; |
3634 o.campaignIdDimensionValue = buildDimensionValue(); | 3634 o.campaignIdDimensionValue = buildDimensionValue(); |
3635 o.enabledByDefault = true; | 3635 o.enabledByDefault = true; |
3636 o.excludeFromAdxRequests = true; | 3636 o.excludeFromAdxRequests = true; |
3637 o.id = "foo"; | 3637 o.id = "foo"; |
3638 o.kind = "foo"; | 3638 o.kind = "foo"; |
3639 o.name = "foo"; | 3639 o.name = "foo"; |
3640 o.siteFilterType = "foo"; | 3640 o.siteFilterType = "foo"; |
3641 o.siteIds = buildUnnamed2579(); | 3641 o.siteIds = buildUnnamed2673(); |
3642 o.sslCompliant = true; | 3642 o.sslCompliant = true; |
3643 o.status = "foo"; | 3643 o.status = "foo"; |
3644 o.subaccountId = "foo"; | 3644 o.subaccountId = "foo"; |
3645 o.type = "foo"; | 3645 o.type = "foo"; |
3646 o.url = "foo"; | 3646 o.url = "foo"; |
3647 o.urlEscapeLevels = 42; | 3647 o.urlEscapeLevels = 42; |
3648 } | 3648 } |
3649 buildCounterEventTag--; | 3649 buildCounterEventTag--; |
3650 return o; | 3650 return o; |
3651 } | 3651 } |
3652 | 3652 |
3653 checkEventTag(api.EventTag o) { | 3653 checkEventTag(api.EventTag o) { |
3654 buildCounterEventTag++; | 3654 buildCounterEventTag++; |
3655 if (buildCounterEventTag < 3) { | 3655 if (buildCounterEventTag < 3) { |
3656 unittest.expect(o.accountId, unittest.equals('foo')); | 3656 unittest.expect(o.accountId, unittest.equals('foo')); |
3657 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3657 unittest.expect(o.advertiserId, unittest.equals('foo')); |
3658 checkDimensionValue(o.advertiserIdDimensionValue); | 3658 checkDimensionValue(o.advertiserIdDimensionValue); |
3659 unittest.expect(o.campaignId, unittest.equals('foo')); | 3659 unittest.expect(o.campaignId, unittest.equals('foo')); |
3660 checkDimensionValue(o.campaignIdDimensionValue); | 3660 checkDimensionValue(o.campaignIdDimensionValue); |
3661 unittest.expect(o.enabledByDefault, unittest.isTrue); | 3661 unittest.expect(o.enabledByDefault, unittest.isTrue); |
3662 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); | 3662 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); |
3663 unittest.expect(o.id, unittest.equals('foo')); | 3663 unittest.expect(o.id, unittest.equals('foo')); |
3664 unittest.expect(o.kind, unittest.equals('foo')); | 3664 unittest.expect(o.kind, unittest.equals('foo')); |
3665 unittest.expect(o.name, unittest.equals('foo')); | 3665 unittest.expect(o.name, unittest.equals('foo')); |
3666 unittest.expect(o.siteFilterType, unittest.equals('foo')); | 3666 unittest.expect(o.siteFilterType, unittest.equals('foo')); |
3667 checkUnnamed2579(o.siteIds); | 3667 checkUnnamed2673(o.siteIds); |
3668 unittest.expect(o.sslCompliant, unittest.isTrue); | 3668 unittest.expect(o.sslCompliant, unittest.isTrue); |
3669 unittest.expect(o.status, unittest.equals('foo')); | 3669 unittest.expect(o.status, unittest.equals('foo')); |
3670 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3670 unittest.expect(o.subaccountId, unittest.equals('foo')); |
3671 unittest.expect(o.type, unittest.equals('foo')); | 3671 unittest.expect(o.type, unittest.equals('foo')); |
3672 unittest.expect(o.url, unittest.equals('foo')); | 3672 unittest.expect(o.url, unittest.equals('foo')); |
3673 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); | 3673 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); |
3674 } | 3674 } |
3675 buildCounterEventTag--; | 3675 buildCounterEventTag--; |
3676 } | 3676 } |
3677 | 3677 |
(...skipping 11 matching lines...) Loading... |
3689 | 3689 |
3690 checkEventTagOverride(api.EventTagOverride o) { | 3690 checkEventTagOverride(api.EventTagOverride o) { |
3691 buildCounterEventTagOverride++; | 3691 buildCounterEventTagOverride++; |
3692 if (buildCounterEventTagOverride < 3) { | 3692 if (buildCounterEventTagOverride < 3) { |
3693 unittest.expect(o.enabled, unittest.isTrue); | 3693 unittest.expect(o.enabled, unittest.isTrue); |
3694 unittest.expect(o.id, unittest.equals('foo')); | 3694 unittest.expect(o.id, unittest.equals('foo')); |
3695 } | 3695 } |
3696 buildCounterEventTagOverride--; | 3696 buildCounterEventTagOverride--; |
3697 } | 3697 } |
3698 | 3698 |
3699 buildUnnamed2580() { | 3699 buildUnnamed2674() { |
3700 var o = new core.List<api.EventTag>(); | 3700 var o = new core.List<api.EventTag>(); |
3701 o.add(buildEventTag()); | 3701 o.add(buildEventTag()); |
3702 o.add(buildEventTag()); | 3702 o.add(buildEventTag()); |
3703 return o; | 3703 return o; |
3704 } | 3704 } |
3705 | 3705 |
3706 checkUnnamed2580(core.List<api.EventTag> o) { | 3706 checkUnnamed2674(core.List<api.EventTag> o) { |
3707 unittest.expect(o, unittest.hasLength(2)); | 3707 unittest.expect(o, unittest.hasLength(2)); |
3708 checkEventTag(o[0]); | 3708 checkEventTag(o[0]); |
3709 checkEventTag(o[1]); | 3709 checkEventTag(o[1]); |
3710 } | 3710 } |
3711 | 3711 |
3712 core.int buildCounterEventTagsListResponse = 0; | 3712 core.int buildCounterEventTagsListResponse = 0; |
3713 buildEventTagsListResponse() { | 3713 buildEventTagsListResponse() { |
3714 var o = new api.EventTagsListResponse(); | 3714 var o = new api.EventTagsListResponse(); |
3715 buildCounterEventTagsListResponse++; | 3715 buildCounterEventTagsListResponse++; |
3716 if (buildCounterEventTagsListResponse < 3) { | 3716 if (buildCounterEventTagsListResponse < 3) { |
3717 o.eventTags = buildUnnamed2580(); | 3717 o.eventTags = buildUnnamed2674(); |
3718 o.kind = "foo"; | 3718 o.kind = "foo"; |
3719 } | 3719 } |
3720 buildCounterEventTagsListResponse--; | 3720 buildCounterEventTagsListResponse--; |
3721 return o; | 3721 return o; |
3722 } | 3722 } |
3723 | 3723 |
3724 checkEventTagsListResponse(api.EventTagsListResponse o) { | 3724 checkEventTagsListResponse(api.EventTagsListResponse o) { |
3725 buildCounterEventTagsListResponse++; | 3725 buildCounterEventTagsListResponse++; |
3726 if (buildCounterEventTagsListResponse < 3) { | 3726 if (buildCounterEventTagsListResponse < 3) { |
3727 checkUnnamed2580(o.eventTags); | 3727 checkUnnamed2674(o.eventTags); |
3728 unittest.expect(o.kind, unittest.equals('foo')); | 3728 unittest.expect(o.kind, unittest.equals('foo')); |
3729 } | 3729 } |
3730 buildCounterEventTagsListResponse--; | 3730 buildCounterEventTagsListResponse--; |
3731 } | 3731 } |
3732 | 3732 |
3733 core.int buildCounterFileUrls = 0; | 3733 core.int buildCounterFileUrls = 0; |
3734 buildFileUrls() { | 3734 buildFileUrls() { |
3735 var o = new api.FileUrls(); | 3735 var o = new api.FileUrls(); |
3736 buildCounterFileUrls++; | 3736 buildCounterFileUrls++; |
3737 if (buildCounterFileUrls < 3) { | 3737 if (buildCounterFileUrls < 3) { |
(...skipping 43 matching lines...) Loading... |
3781 unittest.expect(o.id, unittest.equals('foo')); | 3781 unittest.expect(o.id, unittest.equals('foo')); |
3782 unittest.expect(o.kind, unittest.equals('foo')); | 3782 unittest.expect(o.kind, unittest.equals('foo')); |
3783 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); | 3783 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); |
3784 unittest.expect(o.reportId, unittest.equals('foo')); | 3784 unittest.expect(o.reportId, unittest.equals('foo')); |
3785 unittest.expect(o.status, unittest.equals('foo')); | 3785 unittest.expect(o.status, unittest.equals('foo')); |
3786 checkFileUrls(o.urls); | 3786 checkFileUrls(o.urls); |
3787 } | 3787 } |
3788 buildCounterFile--; | 3788 buildCounterFile--; |
3789 } | 3789 } |
3790 | 3790 |
3791 buildUnnamed2581() { | 3791 buildUnnamed2675() { |
3792 var o = new core.List<api.File>(); | 3792 var o = new core.List<api.File>(); |
3793 o.add(buildFile()); | 3793 o.add(buildFile()); |
3794 o.add(buildFile()); | 3794 o.add(buildFile()); |
3795 return o; | 3795 return o; |
3796 } | 3796 } |
3797 | 3797 |
3798 checkUnnamed2581(core.List<api.File> o) { | 3798 checkUnnamed2675(core.List<api.File> o) { |
3799 unittest.expect(o, unittest.hasLength(2)); | 3799 unittest.expect(o, unittest.hasLength(2)); |
3800 checkFile(o[0]); | 3800 checkFile(o[0]); |
3801 checkFile(o[1]); | 3801 checkFile(o[1]); |
3802 } | 3802 } |
3803 | 3803 |
3804 core.int buildCounterFileList = 0; | 3804 core.int buildCounterFileList = 0; |
3805 buildFileList() { | 3805 buildFileList() { |
3806 var o = new api.FileList(); | 3806 var o = new api.FileList(); |
3807 buildCounterFileList++; | 3807 buildCounterFileList++; |
3808 if (buildCounterFileList < 3) { | 3808 if (buildCounterFileList < 3) { |
3809 o.etag = "foo"; | 3809 o.etag = "foo"; |
3810 o.items = buildUnnamed2581(); | 3810 o.items = buildUnnamed2675(); |
3811 o.kind = "foo"; | 3811 o.kind = "foo"; |
3812 o.nextPageToken = "foo"; | 3812 o.nextPageToken = "foo"; |
3813 } | 3813 } |
3814 buildCounterFileList--; | 3814 buildCounterFileList--; |
3815 return o; | 3815 return o; |
3816 } | 3816 } |
3817 | 3817 |
3818 checkFileList(api.FileList o) { | 3818 checkFileList(api.FileList o) { |
3819 buildCounterFileList++; | 3819 buildCounterFileList++; |
3820 if (buildCounterFileList < 3) { | 3820 if (buildCounterFileList < 3) { |
3821 unittest.expect(o.etag, unittest.equals('foo')); | 3821 unittest.expect(o.etag, unittest.equals('foo')); |
3822 checkUnnamed2581(o.items); | 3822 checkUnnamed2675(o.items); |
3823 unittest.expect(o.kind, unittest.equals('foo')); | 3823 unittest.expect(o.kind, unittest.equals('foo')); |
3824 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3824 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3825 } | 3825 } |
3826 buildCounterFileList--; | 3826 buildCounterFileList--; |
3827 } | 3827 } |
3828 | 3828 |
3829 core.int buildCounterFlight = 0; | 3829 core.int buildCounterFlight = 0; |
3830 buildFlight() { | 3830 buildFlight() { |
3831 var o = new api.Flight(); | 3831 var o = new api.Flight(); |
3832 buildCounterFlight++; | 3832 buildCounterFlight++; |
(...skipping 32 matching lines...) Loading... |
3865 | 3865 |
3866 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { | 3866 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { |
3867 buildCounterFloodlightActivitiesGenerateTagResponse++; | 3867 buildCounterFloodlightActivitiesGenerateTagResponse++; |
3868 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { | 3868 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { |
3869 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); | 3869 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); |
3870 unittest.expect(o.kind, unittest.equals('foo')); | 3870 unittest.expect(o.kind, unittest.equals('foo')); |
3871 } | 3871 } |
3872 buildCounterFloodlightActivitiesGenerateTagResponse--; | 3872 buildCounterFloodlightActivitiesGenerateTagResponse--; |
3873 } | 3873 } |
3874 | 3874 |
3875 buildUnnamed2582() { | 3875 buildUnnamed2676() { |
3876 var o = new core.List<api.FloodlightActivity>(); | 3876 var o = new core.List<api.FloodlightActivity>(); |
3877 o.add(buildFloodlightActivity()); | 3877 o.add(buildFloodlightActivity()); |
3878 o.add(buildFloodlightActivity()); | 3878 o.add(buildFloodlightActivity()); |
3879 return o; | 3879 return o; |
3880 } | 3880 } |
3881 | 3881 |
3882 checkUnnamed2582(core.List<api.FloodlightActivity> o) { | 3882 checkUnnamed2676(core.List<api.FloodlightActivity> o) { |
3883 unittest.expect(o, unittest.hasLength(2)); | 3883 unittest.expect(o, unittest.hasLength(2)); |
3884 checkFloodlightActivity(o[0]); | 3884 checkFloodlightActivity(o[0]); |
3885 checkFloodlightActivity(o[1]); | 3885 checkFloodlightActivity(o[1]); |
3886 } | 3886 } |
3887 | 3887 |
3888 core.int buildCounterFloodlightActivitiesListResponse = 0; | 3888 core.int buildCounterFloodlightActivitiesListResponse = 0; |
3889 buildFloodlightActivitiesListResponse() { | 3889 buildFloodlightActivitiesListResponse() { |
3890 var o = new api.FloodlightActivitiesListResponse(); | 3890 var o = new api.FloodlightActivitiesListResponse(); |
3891 buildCounterFloodlightActivitiesListResponse++; | 3891 buildCounterFloodlightActivitiesListResponse++; |
3892 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3892 if (buildCounterFloodlightActivitiesListResponse < 3) { |
3893 o.floodlightActivities = buildUnnamed2582(); | 3893 o.floodlightActivities = buildUnnamed2676(); |
3894 o.kind = "foo"; | 3894 o.kind = "foo"; |
3895 o.nextPageToken = "foo"; | 3895 o.nextPageToken = "foo"; |
3896 } | 3896 } |
3897 buildCounterFloodlightActivitiesListResponse--; | 3897 buildCounterFloodlightActivitiesListResponse--; |
3898 return o; | 3898 return o; |
3899 } | 3899 } |
3900 | 3900 |
3901 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { | 3901 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { |
3902 buildCounterFloodlightActivitiesListResponse++; | 3902 buildCounterFloodlightActivitiesListResponse++; |
3903 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3903 if (buildCounterFloodlightActivitiesListResponse < 3) { |
3904 checkUnnamed2582(o.floodlightActivities); | 3904 checkUnnamed2676(o.floodlightActivities); |
3905 unittest.expect(o.kind, unittest.equals('foo')); | 3905 unittest.expect(o.kind, unittest.equals('foo')); |
3906 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3906 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
3907 } | 3907 } |
3908 buildCounterFloodlightActivitiesListResponse--; | 3908 buildCounterFloodlightActivitiesListResponse--; |
3909 } | 3909 } |
3910 | 3910 |
3911 buildUnnamed2583() { | 3911 buildUnnamed2677() { |
3912 var o = new core.List<api.FloodlightActivityDynamicTag>(); | 3912 var o = new core.List<api.FloodlightActivityDynamicTag>(); |
3913 o.add(buildFloodlightActivityDynamicTag()); | 3913 o.add(buildFloodlightActivityDynamicTag()); |
3914 o.add(buildFloodlightActivityDynamicTag()); | 3914 o.add(buildFloodlightActivityDynamicTag()); |
3915 return o; | 3915 return o; |
3916 } | 3916 } |
3917 | 3917 |
3918 checkUnnamed2583(core.List<api.FloodlightActivityDynamicTag> o) { | 3918 checkUnnamed2677(core.List<api.FloodlightActivityDynamicTag> o) { |
3919 unittest.expect(o, unittest.hasLength(2)); | 3919 unittest.expect(o, unittest.hasLength(2)); |
3920 checkFloodlightActivityDynamicTag(o[0]); | 3920 checkFloodlightActivityDynamicTag(o[0]); |
3921 checkFloodlightActivityDynamicTag(o[1]); | 3921 checkFloodlightActivityDynamicTag(o[1]); |
3922 } | 3922 } |
3923 | 3923 |
3924 buildUnnamed2584() { | 3924 buildUnnamed2678() { |
3925 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); | 3925 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); |
3926 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3926 o.add(buildFloodlightActivityPublisherDynamicTag()); |
3927 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3927 o.add(buildFloodlightActivityPublisherDynamicTag()); |
3928 return o; | 3928 return o; |
3929 } | 3929 } |
3930 | 3930 |
3931 checkUnnamed2584(core.List<api.FloodlightActivityPublisherDynamicTag> o) { | 3931 checkUnnamed2678(core.List<api.FloodlightActivityPublisherDynamicTag> o) { |
3932 unittest.expect(o, unittest.hasLength(2)); | 3932 unittest.expect(o, unittest.hasLength(2)); |
3933 checkFloodlightActivityPublisherDynamicTag(o[0]); | 3933 checkFloodlightActivityPublisherDynamicTag(o[0]); |
3934 checkFloodlightActivityPublisherDynamicTag(o[1]); | 3934 checkFloodlightActivityPublisherDynamicTag(o[1]); |
3935 } | 3935 } |
3936 | 3936 |
3937 buildUnnamed2585() { | 3937 buildUnnamed2679() { |
3938 var o = new core.List<core.String>(); | 3938 var o = new core.List<core.String>(); |
3939 o.add("foo"); | 3939 o.add("foo"); |
3940 o.add("foo"); | 3940 o.add("foo"); |
3941 return o; | 3941 return o; |
3942 } | 3942 } |
3943 | 3943 |
3944 checkUnnamed2585(core.List<core.String> o) { | 3944 checkUnnamed2679(core.List<core.String> o) { |
3945 unittest.expect(o, unittest.hasLength(2)); | 3945 unittest.expect(o, unittest.hasLength(2)); |
3946 unittest.expect(o[0], unittest.equals('foo')); | 3946 unittest.expect(o[0], unittest.equals('foo')); |
3947 unittest.expect(o[1], unittest.equals('foo')); | 3947 unittest.expect(o[1], unittest.equals('foo')); |
3948 } | 3948 } |
3949 | 3949 |
3950 core.int buildCounterFloodlightActivity = 0; | 3950 core.int buildCounterFloodlightActivity = 0; |
3951 buildFloodlightActivity() { | 3951 buildFloodlightActivity() { |
3952 var o = new api.FloodlightActivity(); | 3952 var o = new api.FloodlightActivity(); |
3953 buildCounterFloodlightActivity++; | 3953 buildCounterFloodlightActivity++; |
3954 if (buildCounterFloodlightActivity < 3) { | 3954 if (buildCounterFloodlightActivity < 3) { |
3955 o.accountId = "foo"; | 3955 o.accountId = "foo"; |
3956 o.advertiserId = "foo"; | 3956 o.advertiserId = "foo"; |
3957 o.advertiserIdDimensionValue = buildDimensionValue(); | 3957 o.advertiserIdDimensionValue = buildDimensionValue(); |
3958 o.cacheBustingType = "foo"; | 3958 o.cacheBustingType = "foo"; |
3959 o.countingMethod = "foo"; | 3959 o.countingMethod = "foo"; |
3960 o.defaultTags = buildUnnamed2583(); | 3960 o.defaultTags = buildUnnamed2677(); |
3961 o.expectedUrl = "foo"; | 3961 o.expectedUrl = "foo"; |
3962 o.floodlightActivityGroupId = "foo"; | 3962 o.floodlightActivityGroupId = "foo"; |
3963 o.floodlightActivityGroupName = "foo"; | 3963 o.floodlightActivityGroupName = "foo"; |
3964 o.floodlightActivityGroupTagString = "foo"; | 3964 o.floodlightActivityGroupTagString = "foo"; |
3965 o.floodlightActivityGroupType = "foo"; | 3965 o.floodlightActivityGroupType = "foo"; |
3966 o.floodlightConfigurationId = "foo"; | 3966 o.floodlightConfigurationId = "foo"; |
3967 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); | 3967 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); |
3968 o.hidden = true; | 3968 o.hidden = true; |
3969 o.id = "foo"; | 3969 o.id = "foo"; |
3970 o.idDimensionValue = buildDimensionValue(); | 3970 o.idDimensionValue = buildDimensionValue(); |
3971 o.imageTagEnabled = true; | 3971 o.imageTagEnabled = true; |
3972 o.kind = "foo"; | 3972 o.kind = "foo"; |
3973 o.name = "foo"; | 3973 o.name = "foo"; |
3974 o.notes = "foo"; | 3974 o.notes = "foo"; |
3975 o.publisherTags = buildUnnamed2584(); | 3975 o.publisherTags = buildUnnamed2678(); |
3976 o.secure = true; | 3976 o.secure = true; |
3977 o.sslCompliant = true; | 3977 o.sslCompliant = true; |
3978 o.sslRequired = true; | 3978 o.sslRequired = true; |
3979 o.subaccountId = "foo"; | 3979 o.subaccountId = "foo"; |
3980 o.tagFormat = "foo"; | 3980 o.tagFormat = "foo"; |
3981 o.tagString = "foo"; | 3981 o.tagString = "foo"; |
3982 o.userDefinedVariableTypes = buildUnnamed2585(); | 3982 o.userDefinedVariableTypes = buildUnnamed2679(); |
3983 } | 3983 } |
3984 buildCounterFloodlightActivity--; | 3984 buildCounterFloodlightActivity--; |
3985 return o; | 3985 return o; |
3986 } | 3986 } |
3987 | 3987 |
3988 checkFloodlightActivity(api.FloodlightActivity o) { | 3988 checkFloodlightActivity(api.FloodlightActivity o) { |
3989 buildCounterFloodlightActivity++; | 3989 buildCounterFloodlightActivity++; |
3990 if (buildCounterFloodlightActivity < 3) { | 3990 if (buildCounterFloodlightActivity < 3) { |
3991 unittest.expect(o.accountId, unittest.equals('foo')); | 3991 unittest.expect(o.accountId, unittest.equals('foo')); |
3992 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3992 unittest.expect(o.advertiserId, unittest.equals('foo')); |
3993 checkDimensionValue(o.advertiserIdDimensionValue); | 3993 checkDimensionValue(o.advertiserIdDimensionValue); |
3994 unittest.expect(o.cacheBustingType, unittest.equals('foo')); | 3994 unittest.expect(o.cacheBustingType, unittest.equals('foo')); |
3995 unittest.expect(o.countingMethod, unittest.equals('foo')); | 3995 unittest.expect(o.countingMethod, unittest.equals('foo')); |
3996 checkUnnamed2583(o.defaultTags); | 3996 checkUnnamed2677(o.defaultTags); |
3997 unittest.expect(o.expectedUrl, unittest.equals('foo')); | 3997 unittest.expect(o.expectedUrl, unittest.equals('foo')); |
3998 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); | 3998 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); |
3999 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); | 3999 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); |
4000 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); | 4000 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); |
4001 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); | 4001 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); |
4002 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 4002 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
4003 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); | 4003 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); |
4004 unittest.expect(o.hidden, unittest.isTrue); | 4004 unittest.expect(o.hidden, unittest.isTrue); |
4005 unittest.expect(o.id, unittest.equals('foo')); | 4005 unittest.expect(o.id, unittest.equals('foo')); |
4006 checkDimensionValue(o.idDimensionValue); | 4006 checkDimensionValue(o.idDimensionValue); |
4007 unittest.expect(o.imageTagEnabled, unittest.isTrue); | 4007 unittest.expect(o.imageTagEnabled, unittest.isTrue); |
4008 unittest.expect(o.kind, unittest.equals('foo')); | 4008 unittest.expect(o.kind, unittest.equals('foo')); |
4009 unittest.expect(o.name, unittest.equals('foo')); | 4009 unittest.expect(o.name, unittest.equals('foo')); |
4010 unittest.expect(o.notes, unittest.equals('foo')); | 4010 unittest.expect(o.notes, unittest.equals('foo')); |
4011 checkUnnamed2584(o.publisherTags); | 4011 checkUnnamed2678(o.publisherTags); |
4012 unittest.expect(o.secure, unittest.isTrue); | 4012 unittest.expect(o.secure, unittest.isTrue); |
4013 unittest.expect(o.sslCompliant, unittest.isTrue); | 4013 unittest.expect(o.sslCompliant, unittest.isTrue); |
4014 unittest.expect(o.sslRequired, unittest.isTrue); | 4014 unittest.expect(o.sslRequired, unittest.isTrue); |
4015 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4015 unittest.expect(o.subaccountId, unittest.equals('foo')); |
4016 unittest.expect(o.tagFormat, unittest.equals('foo')); | 4016 unittest.expect(o.tagFormat, unittest.equals('foo')); |
4017 unittest.expect(o.tagString, unittest.equals('foo')); | 4017 unittest.expect(o.tagString, unittest.equals('foo')); |
4018 checkUnnamed2585(o.userDefinedVariableTypes); | 4018 checkUnnamed2679(o.userDefinedVariableTypes); |
4019 } | 4019 } |
4020 buildCounterFloodlightActivity--; | 4020 buildCounterFloodlightActivity--; |
4021 } | 4021 } |
4022 | 4022 |
4023 core.int buildCounterFloodlightActivityDynamicTag = 0; | 4023 core.int buildCounterFloodlightActivityDynamicTag = 0; |
4024 buildFloodlightActivityDynamicTag() { | 4024 buildFloodlightActivityDynamicTag() { |
4025 var o = new api.FloodlightActivityDynamicTag(); | 4025 var o = new api.FloodlightActivityDynamicTag(); |
4026 buildCounterFloodlightActivityDynamicTag++; | 4026 buildCounterFloodlightActivityDynamicTag++; |
4027 if (buildCounterFloodlightActivityDynamicTag < 3) { | 4027 if (buildCounterFloodlightActivityDynamicTag < 3) { |
4028 o.id = "foo"; | 4028 o.id = "foo"; |
(...skipping 48 matching lines...) Loading... |
4077 checkDimensionValue(o.idDimensionValue); | 4077 checkDimensionValue(o.idDimensionValue); |
4078 unittest.expect(o.kind, unittest.equals('foo')); | 4078 unittest.expect(o.kind, unittest.equals('foo')); |
4079 unittest.expect(o.name, unittest.equals('foo')); | 4079 unittest.expect(o.name, unittest.equals('foo')); |
4080 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4080 unittest.expect(o.subaccountId, unittest.equals('foo')); |
4081 unittest.expect(o.tagString, unittest.equals('foo')); | 4081 unittest.expect(o.tagString, unittest.equals('foo')); |
4082 unittest.expect(o.type, unittest.equals('foo')); | 4082 unittest.expect(o.type, unittest.equals('foo')); |
4083 } | 4083 } |
4084 buildCounterFloodlightActivityGroup--; | 4084 buildCounterFloodlightActivityGroup--; |
4085 } | 4085 } |
4086 | 4086 |
4087 buildUnnamed2586() { | 4087 buildUnnamed2680() { |
4088 var o = new core.List<api.FloodlightActivityGroup>(); | 4088 var o = new core.List<api.FloodlightActivityGroup>(); |
4089 o.add(buildFloodlightActivityGroup()); | 4089 o.add(buildFloodlightActivityGroup()); |
4090 o.add(buildFloodlightActivityGroup()); | 4090 o.add(buildFloodlightActivityGroup()); |
4091 return o; | 4091 return o; |
4092 } | 4092 } |
4093 | 4093 |
4094 checkUnnamed2586(core.List<api.FloodlightActivityGroup> o) { | 4094 checkUnnamed2680(core.List<api.FloodlightActivityGroup> o) { |
4095 unittest.expect(o, unittest.hasLength(2)); | 4095 unittest.expect(o, unittest.hasLength(2)); |
4096 checkFloodlightActivityGroup(o[0]); | 4096 checkFloodlightActivityGroup(o[0]); |
4097 checkFloodlightActivityGroup(o[1]); | 4097 checkFloodlightActivityGroup(o[1]); |
4098 } | 4098 } |
4099 | 4099 |
4100 core.int buildCounterFloodlightActivityGroupsListResponse = 0; | 4100 core.int buildCounterFloodlightActivityGroupsListResponse = 0; |
4101 buildFloodlightActivityGroupsListResponse() { | 4101 buildFloodlightActivityGroupsListResponse() { |
4102 var o = new api.FloodlightActivityGroupsListResponse(); | 4102 var o = new api.FloodlightActivityGroupsListResponse(); |
4103 buildCounterFloodlightActivityGroupsListResponse++; | 4103 buildCounterFloodlightActivityGroupsListResponse++; |
4104 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 4104 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
4105 o.floodlightActivityGroups = buildUnnamed2586(); | 4105 o.floodlightActivityGroups = buildUnnamed2680(); |
4106 o.kind = "foo"; | 4106 o.kind = "foo"; |
4107 o.nextPageToken = "foo"; | 4107 o.nextPageToken = "foo"; |
4108 } | 4108 } |
4109 buildCounterFloodlightActivityGroupsListResponse--; | 4109 buildCounterFloodlightActivityGroupsListResponse--; |
4110 return o; | 4110 return o; |
4111 } | 4111 } |
4112 | 4112 |
4113 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { | 4113 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { |
4114 buildCounterFloodlightActivityGroupsListResponse++; | 4114 buildCounterFloodlightActivityGroupsListResponse++; |
4115 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 4115 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
4116 checkUnnamed2586(o.floodlightActivityGroups); | 4116 checkUnnamed2680(o.floodlightActivityGroups); |
4117 unittest.expect(o.kind, unittest.equals('foo')); | 4117 unittest.expect(o.kind, unittest.equals('foo')); |
4118 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4118 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
4119 } | 4119 } |
4120 buildCounterFloodlightActivityGroupsListResponse--; | 4120 buildCounterFloodlightActivityGroupsListResponse--; |
4121 } | 4121 } |
4122 | 4122 |
4123 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; | 4123 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; |
4124 buildFloodlightActivityPublisherDynamicTag() { | 4124 buildFloodlightActivityPublisherDynamicTag() { |
4125 var o = new api.FloodlightActivityPublisherDynamicTag(); | 4125 var o = new api.FloodlightActivityPublisherDynamicTag(); |
4126 buildCounterFloodlightActivityPublisherDynamicTag++; | 4126 buildCounterFloodlightActivityPublisherDynamicTag++; |
(...skipping 15 matching lines...) Loading... |
4142 unittest.expect(o.clickThrough, unittest.isTrue); | 4142 unittest.expect(o.clickThrough, unittest.isTrue); |
4143 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 4143 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
4144 checkFloodlightActivityDynamicTag(o.dynamicTag); | 4144 checkFloodlightActivityDynamicTag(o.dynamicTag); |
4145 unittest.expect(o.siteId, unittest.equals('foo')); | 4145 unittest.expect(o.siteId, unittest.equals('foo')); |
4146 checkDimensionValue(o.siteIdDimensionValue); | 4146 checkDimensionValue(o.siteIdDimensionValue); |
4147 unittest.expect(o.viewThrough, unittest.isTrue); | 4147 unittest.expect(o.viewThrough, unittest.isTrue); |
4148 } | 4148 } |
4149 buildCounterFloodlightActivityPublisherDynamicTag--; | 4149 buildCounterFloodlightActivityPublisherDynamicTag--; |
4150 } | 4150 } |
4151 | 4151 |
4152 buildUnnamed2587() { | 4152 buildUnnamed2681() { |
4153 var o = new core.List<core.String>(); | 4153 var o = new core.List<core.String>(); |
4154 o.add("foo"); | 4154 o.add("foo"); |
4155 o.add("foo"); | 4155 o.add("foo"); |
4156 return o; | 4156 return o; |
4157 } | 4157 } |
4158 | 4158 |
4159 checkUnnamed2587(core.List<core.String> o) { | 4159 checkUnnamed2681(core.List<core.String> o) { |
4160 unittest.expect(o, unittest.hasLength(2)); | 4160 unittest.expect(o, unittest.hasLength(2)); |
4161 unittest.expect(o[0], unittest.equals('foo')); | 4161 unittest.expect(o[0], unittest.equals('foo')); |
4162 unittest.expect(o[1], unittest.equals('foo')); | 4162 unittest.expect(o[1], unittest.equals('foo')); |
4163 } | 4163 } |
4164 | 4164 |
4165 buildUnnamed2588() { | 4165 buildUnnamed2682() { |
4166 var o = new core.List<api.ThirdPartyAuthenticationToken>(); | 4166 var o = new core.List<api.ThirdPartyAuthenticationToken>(); |
4167 o.add(buildThirdPartyAuthenticationToken()); | 4167 o.add(buildThirdPartyAuthenticationToken()); |
4168 o.add(buildThirdPartyAuthenticationToken()); | 4168 o.add(buildThirdPartyAuthenticationToken()); |
4169 return o; | 4169 return o; |
4170 } | 4170 } |
4171 | 4171 |
4172 checkUnnamed2588(core.List<api.ThirdPartyAuthenticationToken> o) { | 4172 checkUnnamed2682(core.List<api.ThirdPartyAuthenticationToken> o) { |
4173 unittest.expect(o, unittest.hasLength(2)); | 4173 unittest.expect(o, unittest.hasLength(2)); |
4174 checkThirdPartyAuthenticationToken(o[0]); | 4174 checkThirdPartyAuthenticationToken(o[0]); |
4175 checkThirdPartyAuthenticationToken(o[1]); | 4175 checkThirdPartyAuthenticationToken(o[1]); |
4176 } | 4176 } |
4177 | 4177 |
4178 buildUnnamed2589() { | 4178 buildUnnamed2683() { |
4179 var o = new core.List<api.UserDefinedVariableConfiguration>(); | 4179 var o = new core.List<api.UserDefinedVariableConfiguration>(); |
4180 o.add(buildUserDefinedVariableConfiguration()); | 4180 o.add(buildUserDefinedVariableConfiguration()); |
4181 o.add(buildUserDefinedVariableConfiguration()); | 4181 o.add(buildUserDefinedVariableConfiguration()); |
4182 return o; | 4182 return o; |
4183 } | 4183 } |
4184 | 4184 |
4185 checkUnnamed2589(core.List<api.UserDefinedVariableConfiguration> o) { | 4185 checkUnnamed2683(core.List<api.UserDefinedVariableConfiguration> o) { |
4186 unittest.expect(o, unittest.hasLength(2)); | 4186 unittest.expect(o, unittest.hasLength(2)); |
4187 checkUserDefinedVariableConfiguration(o[0]); | 4187 checkUserDefinedVariableConfiguration(o[0]); |
4188 checkUserDefinedVariableConfiguration(o[1]); | 4188 checkUserDefinedVariableConfiguration(o[1]); |
4189 } | 4189 } |
4190 | 4190 |
4191 core.int buildCounterFloodlightConfiguration = 0; | 4191 core.int buildCounterFloodlightConfiguration = 0; |
4192 buildFloodlightConfiguration() { | 4192 buildFloodlightConfiguration() { |
4193 var o = new api.FloodlightConfiguration(); | 4193 var o = new api.FloodlightConfiguration(); |
4194 buildCounterFloodlightConfiguration++; | 4194 buildCounterFloodlightConfiguration++; |
4195 if (buildCounterFloodlightConfiguration < 3) { | 4195 if (buildCounterFloodlightConfiguration < 3) { |
4196 o.accountId = "foo"; | 4196 o.accountId = "foo"; |
4197 o.advertiserId = "foo"; | 4197 o.advertiserId = "foo"; |
4198 o.advertiserIdDimensionValue = buildDimensionValue(); | 4198 o.advertiserIdDimensionValue = buildDimensionValue(); |
4199 o.analyticsDataSharingEnabled = true; | 4199 o.analyticsDataSharingEnabled = true; |
4200 o.exposureToConversionEnabled = true; | 4200 o.exposureToConversionEnabled = true; |
4201 o.firstDayOfWeek = "foo"; | 4201 o.firstDayOfWeek = "foo"; |
4202 o.id = "foo"; | 4202 o.id = "foo"; |
4203 o.idDimensionValue = buildDimensionValue(); | 4203 o.idDimensionValue = buildDimensionValue(); |
4204 o.inAppAttributionTrackingEnabled = true; | 4204 o.inAppAttributionTrackingEnabled = true; |
4205 o.kind = "foo"; | 4205 o.kind = "foo"; |
4206 o.lookbackConfiguration = buildLookbackConfiguration(); | 4206 o.lookbackConfiguration = buildLookbackConfiguration(); |
4207 o.naturalSearchConversionAttributionOption = "foo"; | 4207 o.naturalSearchConversionAttributionOption = "foo"; |
4208 o.omnitureSettings = buildOmnitureSettings(); | 4208 o.omnitureSettings = buildOmnitureSettings(); |
4209 o.standardVariableTypes = buildUnnamed2587(); | 4209 o.standardVariableTypes = buildUnnamed2681(); |
4210 o.subaccountId = "foo"; | 4210 o.subaccountId = "foo"; |
4211 o.tagSettings = buildTagSettings(); | 4211 o.tagSettings = buildTagSettings(); |
4212 o.thirdPartyAuthenticationTokens = buildUnnamed2588(); | 4212 o.thirdPartyAuthenticationTokens = buildUnnamed2682(); |
4213 o.userDefinedVariableConfigurations = buildUnnamed2589(); | 4213 o.userDefinedVariableConfigurations = buildUnnamed2683(); |
4214 } | 4214 } |
4215 buildCounterFloodlightConfiguration--; | 4215 buildCounterFloodlightConfiguration--; |
4216 return o; | 4216 return o; |
4217 } | 4217 } |
4218 | 4218 |
4219 checkFloodlightConfiguration(api.FloodlightConfiguration o) { | 4219 checkFloodlightConfiguration(api.FloodlightConfiguration o) { |
4220 buildCounterFloodlightConfiguration++; | 4220 buildCounterFloodlightConfiguration++; |
4221 if (buildCounterFloodlightConfiguration < 3) { | 4221 if (buildCounterFloodlightConfiguration < 3) { |
4222 unittest.expect(o.accountId, unittest.equals('foo')); | 4222 unittest.expect(o.accountId, unittest.equals('foo')); |
4223 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4223 unittest.expect(o.advertiserId, unittest.equals('foo')); |
4224 checkDimensionValue(o.advertiserIdDimensionValue); | 4224 checkDimensionValue(o.advertiserIdDimensionValue); |
4225 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); | 4225 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); |
4226 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); | 4226 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); |
4227 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); | 4227 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); |
4228 unittest.expect(o.id, unittest.equals('foo')); | 4228 unittest.expect(o.id, unittest.equals('foo')); |
4229 checkDimensionValue(o.idDimensionValue); | 4229 checkDimensionValue(o.idDimensionValue); |
4230 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); | 4230 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); |
4231 unittest.expect(o.kind, unittest.equals('foo')); | 4231 unittest.expect(o.kind, unittest.equals('foo')); |
4232 checkLookbackConfiguration(o.lookbackConfiguration); | 4232 checkLookbackConfiguration(o.lookbackConfiguration); |
4233 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); | 4233 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); |
4234 checkOmnitureSettings(o.omnitureSettings); | 4234 checkOmnitureSettings(o.omnitureSettings); |
4235 checkUnnamed2587(o.standardVariableTypes); | 4235 checkUnnamed2681(o.standardVariableTypes); |
4236 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4236 unittest.expect(o.subaccountId, unittest.equals('foo')); |
4237 checkTagSettings(o.tagSettings); | 4237 checkTagSettings(o.tagSettings); |
4238 checkUnnamed2588(o.thirdPartyAuthenticationTokens); | 4238 checkUnnamed2682(o.thirdPartyAuthenticationTokens); |
4239 checkUnnamed2589(o.userDefinedVariableConfigurations); | 4239 checkUnnamed2683(o.userDefinedVariableConfigurations); |
4240 } | 4240 } |
4241 buildCounterFloodlightConfiguration--; | 4241 buildCounterFloodlightConfiguration--; |
4242 } | 4242 } |
4243 | 4243 |
4244 buildUnnamed2590() { | 4244 buildUnnamed2684() { |
4245 var o = new core.List<api.FloodlightConfiguration>(); | 4245 var o = new core.List<api.FloodlightConfiguration>(); |
4246 o.add(buildFloodlightConfiguration()); | 4246 o.add(buildFloodlightConfiguration()); |
4247 o.add(buildFloodlightConfiguration()); | 4247 o.add(buildFloodlightConfiguration()); |
4248 return o; | 4248 return o; |
4249 } | 4249 } |
4250 | 4250 |
4251 checkUnnamed2590(core.List<api.FloodlightConfiguration> o) { | 4251 checkUnnamed2684(core.List<api.FloodlightConfiguration> o) { |
4252 unittest.expect(o, unittest.hasLength(2)); | 4252 unittest.expect(o, unittest.hasLength(2)); |
4253 checkFloodlightConfiguration(o[0]); | 4253 checkFloodlightConfiguration(o[0]); |
4254 checkFloodlightConfiguration(o[1]); | 4254 checkFloodlightConfiguration(o[1]); |
4255 } | 4255 } |
4256 | 4256 |
4257 core.int buildCounterFloodlightConfigurationsListResponse = 0; | 4257 core.int buildCounterFloodlightConfigurationsListResponse = 0; |
4258 buildFloodlightConfigurationsListResponse() { | 4258 buildFloodlightConfigurationsListResponse() { |
4259 var o = new api.FloodlightConfigurationsListResponse(); | 4259 var o = new api.FloodlightConfigurationsListResponse(); |
4260 buildCounterFloodlightConfigurationsListResponse++; | 4260 buildCounterFloodlightConfigurationsListResponse++; |
4261 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 4261 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
4262 o.floodlightConfigurations = buildUnnamed2590(); | 4262 o.floodlightConfigurations = buildUnnamed2684(); |
4263 o.kind = "foo"; | 4263 o.kind = "foo"; |
4264 } | 4264 } |
4265 buildCounterFloodlightConfigurationsListResponse--; | 4265 buildCounterFloodlightConfigurationsListResponse--; |
4266 return o; | 4266 return o; |
4267 } | 4267 } |
4268 | 4268 |
4269 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { | 4269 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { |
4270 buildCounterFloodlightConfigurationsListResponse++; | 4270 buildCounterFloodlightConfigurationsListResponse++; |
4271 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 4271 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
4272 checkUnnamed2590(o.floodlightConfigurations); | 4272 checkUnnamed2684(o.floodlightConfigurations); |
4273 unittest.expect(o.kind, unittest.equals('foo')); | 4273 unittest.expect(o.kind, unittest.equals('foo')); |
4274 } | 4274 } |
4275 buildCounterFloodlightConfigurationsListResponse--; | 4275 buildCounterFloodlightConfigurationsListResponse--; |
4276 } | 4276 } |
4277 | 4277 |
4278 buildUnnamed2591() { | 4278 buildUnnamed2685() { |
4279 var o = new core.List<api.Dimension>(); | 4279 var o = new core.List<api.Dimension>(); |
4280 o.add(buildDimension()); | 4280 o.add(buildDimension()); |
4281 o.add(buildDimension()); | 4281 o.add(buildDimension()); |
4282 return o; | 4282 return o; |
4283 } | 4283 } |
4284 | 4284 |
4285 checkUnnamed2591(core.List<api.Dimension> o) { | 4285 checkUnnamed2685(core.List<api.Dimension> o) { |
4286 unittest.expect(o, unittest.hasLength(2)); | 4286 unittest.expect(o, unittest.hasLength(2)); |
4287 checkDimension(o[0]); | 4287 checkDimension(o[0]); |
4288 checkDimension(o[1]); | 4288 checkDimension(o[1]); |
4289 } | 4289 } |
4290 | 4290 |
4291 buildUnnamed2592() { | 4291 buildUnnamed2686() { |
4292 var o = new core.List<api.Dimension>(); | 4292 var o = new core.List<api.Dimension>(); |
4293 o.add(buildDimension()); | 4293 o.add(buildDimension()); |
4294 o.add(buildDimension()); | 4294 o.add(buildDimension()); |
4295 return o; | 4295 return o; |
4296 } | 4296 } |
4297 | 4297 |
4298 checkUnnamed2592(core.List<api.Dimension> o) { | 4298 checkUnnamed2686(core.List<api.Dimension> o) { |
4299 unittest.expect(o, unittest.hasLength(2)); | 4299 unittest.expect(o, unittest.hasLength(2)); |
4300 checkDimension(o[0]); | 4300 checkDimension(o[0]); |
4301 checkDimension(o[1]); | 4301 checkDimension(o[1]); |
4302 } | 4302 } |
4303 | 4303 |
4304 buildUnnamed2593() { | 4304 buildUnnamed2687() { |
4305 var o = new core.List<api.Metric>(); | 4305 var o = new core.List<api.Metric>(); |
4306 o.add(buildMetric()); | 4306 o.add(buildMetric()); |
4307 o.add(buildMetric()); | 4307 o.add(buildMetric()); |
4308 return o; | 4308 return o; |
4309 } | 4309 } |
4310 | 4310 |
4311 checkUnnamed2593(core.List<api.Metric> o) { | 4311 checkUnnamed2687(core.List<api.Metric> o) { |
4312 unittest.expect(o, unittest.hasLength(2)); | 4312 unittest.expect(o, unittest.hasLength(2)); |
4313 checkMetric(o[0]); | 4313 checkMetric(o[0]); |
4314 checkMetric(o[1]); | 4314 checkMetric(o[1]); |
4315 } | 4315 } |
4316 | 4316 |
4317 core.int buildCounterFloodlightReportCompatibleFields = 0; | 4317 core.int buildCounterFloodlightReportCompatibleFields = 0; |
4318 buildFloodlightReportCompatibleFields() { | 4318 buildFloodlightReportCompatibleFields() { |
4319 var o = new api.FloodlightReportCompatibleFields(); | 4319 var o = new api.FloodlightReportCompatibleFields(); |
4320 buildCounterFloodlightReportCompatibleFields++; | 4320 buildCounterFloodlightReportCompatibleFields++; |
4321 if (buildCounterFloodlightReportCompatibleFields < 3) { | 4321 if (buildCounterFloodlightReportCompatibleFields < 3) { |
4322 o.dimensionFilters = buildUnnamed2591(); | 4322 o.dimensionFilters = buildUnnamed2685(); |
4323 o.dimensions = buildUnnamed2592(); | 4323 o.dimensions = buildUnnamed2686(); |
4324 o.kind = "foo"; | 4324 o.kind = "foo"; |
4325 o.metrics = buildUnnamed2593(); | 4325 o.metrics = buildUnnamed2687(); |
4326 } | 4326 } |
4327 buildCounterFloodlightReportCompatibleFields--; | 4327 buildCounterFloodlightReportCompatibleFields--; |
4328 return o; | 4328 return o; |
4329 } | 4329 } |
4330 | 4330 |
4331 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { | 4331 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { |
4332 buildCounterFloodlightReportCompatibleFields++; | 4332 buildCounterFloodlightReportCompatibleFields++; |
4333 if (buildCounterFloodlightReportCompatibleFields < 3) { | 4333 if (buildCounterFloodlightReportCompatibleFields < 3) { |
4334 checkUnnamed2591(o.dimensionFilters); | 4334 checkUnnamed2685(o.dimensionFilters); |
4335 checkUnnamed2592(o.dimensions); | 4335 checkUnnamed2686(o.dimensions); |
4336 unittest.expect(o.kind, unittest.equals('foo')); | 4336 unittest.expect(o.kind, unittest.equals('foo')); |
4337 checkUnnamed2593(o.metrics); | 4337 checkUnnamed2687(o.metrics); |
4338 } | 4338 } |
4339 buildCounterFloodlightReportCompatibleFields--; | 4339 buildCounterFloodlightReportCompatibleFields--; |
4340 } | 4340 } |
4341 | 4341 |
4342 core.int buildCounterFrequencyCap = 0; | 4342 core.int buildCounterFrequencyCap = 0; |
4343 buildFrequencyCap() { | 4343 buildFrequencyCap() { |
4344 var o = new api.FrequencyCap(); | 4344 var o = new api.FrequencyCap(); |
4345 buildCounterFrequencyCap++; | 4345 buildCounterFrequencyCap++; |
4346 if (buildCounterFrequencyCap < 3) { | 4346 if (buildCounterFrequencyCap < 3) { |
4347 o.duration = "foo"; | 4347 o.duration = "foo"; |
(...skipping 32 matching lines...) Loading... |
4380 if (buildCounterFsCommand < 3) { | 4380 if (buildCounterFsCommand < 3) { |
4381 unittest.expect(o.left, unittest.equals(42)); | 4381 unittest.expect(o.left, unittest.equals(42)); |
4382 unittest.expect(o.positionOption, unittest.equals('foo')); | 4382 unittest.expect(o.positionOption, unittest.equals('foo')); |
4383 unittest.expect(o.top, unittest.equals(42)); | 4383 unittest.expect(o.top, unittest.equals(42)); |
4384 unittest.expect(o.windowHeight, unittest.equals(42)); | 4384 unittest.expect(o.windowHeight, unittest.equals(42)); |
4385 unittest.expect(o.windowWidth, unittest.equals(42)); | 4385 unittest.expect(o.windowWidth, unittest.equals(42)); |
4386 } | 4386 } |
4387 buildCounterFsCommand--; | 4387 buildCounterFsCommand--; |
4388 } | 4388 } |
4389 | 4389 |
4390 buildUnnamed2594() { | 4390 buildUnnamed2688() { |
4391 var o = new core.List<api.City>(); | 4391 var o = new core.List<api.City>(); |
4392 o.add(buildCity()); | 4392 o.add(buildCity()); |
4393 o.add(buildCity()); | 4393 o.add(buildCity()); |
4394 return o; | 4394 return o; |
4395 } | 4395 } |
4396 | 4396 |
4397 checkUnnamed2594(core.List<api.City> o) { | 4397 checkUnnamed2688(core.List<api.City> o) { |
4398 unittest.expect(o, unittest.hasLength(2)); | 4398 unittest.expect(o, unittest.hasLength(2)); |
4399 checkCity(o[0]); | 4399 checkCity(o[0]); |
4400 checkCity(o[1]); | 4400 checkCity(o[1]); |
4401 } | 4401 } |
4402 | 4402 |
4403 buildUnnamed2595() { | 4403 buildUnnamed2689() { |
4404 var o = new core.List<api.Country>(); | 4404 var o = new core.List<api.Country>(); |
4405 o.add(buildCountry()); | 4405 o.add(buildCountry()); |
4406 o.add(buildCountry()); | 4406 o.add(buildCountry()); |
4407 return o; | 4407 return o; |
4408 } | 4408 } |
4409 | 4409 |
4410 checkUnnamed2595(core.List<api.Country> o) { | 4410 checkUnnamed2689(core.List<api.Country> o) { |
4411 unittest.expect(o, unittest.hasLength(2)); | 4411 unittest.expect(o, unittest.hasLength(2)); |
4412 checkCountry(o[0]); | 4412 checkCountry(o[0]); |
4413 checkCountry(o[1]); | 4413 checkCountry(o[1]); |
4414 } | 4414 } |
4415 | 4415 |
4416 buildUnnamed2596() { | 4416 buildUnnamed2690() { |
4417 var o = new core.List<api.Metro>(); | 4417 var o = new core.List<api.Metro>(); |
4418 o.add(buildMetro()); | 4418 o.add(buildMetro()); |
4419 o.add(buildMetro()); | 4419 o.add(buildMetro()); |
4420 return o; | 4420 return o; |
4421 } | 4421 } |
4422 | 4422 |
4423 checkUnnamed2596(core.List<api.Metro> o) { | 4423 checkUnnamed2690(core.List<api.Metro> o) { |
4424 unittest.expect(o, unittest.hasLength(2)); | 4424 unittest.expect(o, unittest.hasLength(2)); |
4425 checkMetro(o[0]); | 4425 checkMetro(o[0]); |
4426 checkMetro(o[1]); | 4426 checkMetro(o[1]); |
4427 } | 4427 } |
4428 | 4428 |
4429 buildUnnamed2597() { | 4429 buildUnnamed2691() { |
4430 var o = new core.List<api.PostalCode>(); | 4430 var o = new core.List<api.PostalCode>(); |
4431 o.add(buildPostalCode()); | 4431 o.add(buildPostalCode()); |
4432 o.add(buildPostalCode()); | 4432 o.add(buildPostalCode()); |
4433 return o; | 4433 return o; |
4434 } | 4434 } |
4435 | 4435 |
4436 checkUnnamed2597(core.List<api.PostalCode> o) { | 4436 checkUnnamed2691(core.List<api.PostalCode> o) { |
4437 unittest.expect(o, unittest.hasLength(2)); | 4437 unittest.expect(o, unittest.hasLength(2)); |
4438 checkPostalCode(o[0]); | 4438 checkPostalCode(o[0]); |
4439 checkPostalCode(o[1]); | 4439 checkPostalCode(o[1]); |
4440 } | 4440 } |
4441 | 4441 |
4442 buildUnnamed2598() { | 4442 buildUnnamed2692() { |
4443 var o = new core.List<api.Region>(); | 4443 var o = new core.List<api.Region>(); |
4444 o.add(buildRegion()); | 4444 o.add(buildRegion()); |
4445 o.add(buildRegion()); | 4445 o.add(buildRegion()); |
4446 return o; | 4446 return o; |
4447 } | 4447 } |
4448 | 4448 |
4449 checkUnnamed2598(core.List<api.Region> o) { | 4449 checkUnnamed2692(core.List<api.Region> o) { |
4450 unittest.expect(o, unittest.hasLength(2)); | 4450 unittest.expect(o, unittest.hasLength(2)); |
4451 checkRegion(o[0]); | 4451 checkRegion(o[0]); |
4452 checkRegion(o[1]); | 4452 checkRegion(o[1]); |
4453 } | 4453 } |
4454 | 4454 |
4455 core.int buildCounterGeoTargeting = 0; | 4455 core.int buildCounterGeoTargeting = 0; |
4456 buildGeoTargeting() { | 4456 buildGeoTargeting() { |
4457 var o = new api.GeoTargeting(); | 4457 var o = new api.GeoTargeting(); |
4458 buildCounterGeoTargeting++; | 4458 buildCounterGeoTargeting++; |
4459 if (buildCounterGeoTargeting < 3) { | 4459 if (buildCounterGeoTargeting < 3) { |
4460 o.cities = buildUnnamed2594(); | 4460 o.cities = buildUnnamed2688(); |
4461 o.countries = buildUnnamed2595(); | 4461 o.countries = buildUnnamed2689(); |
4462 o.excludeCountries = true; | 4462 o.excludeCountries = true; |
4463 o.metros = buildUnnamed2596(); | 4463 o.metros = buildUnnamed2690(); |
4464 o.postalCodes = buildUnnamed2597(); | 4464 o.postalCodes = buildUnnamed2691(); |
4465 o.regions = buildUnnamed2598(); | 4465 o.regions = buildUnnamed2692(); |
4466 } | 4466 } |
4467 buildCounterGeoTargeting--; | 4467 buildCounterGeoTargeting--; |
4468 return o; | 4468 return o; |
4469 } | 4469 } |
4470 | 4470 |
4471 checkGeoTargeting(api.GeoTargeting o) { | 4471 checkGeoTargeting(api.GeoTargeting o) { |
4472 buildCounterGeoTargeting++; | 4472 buildCounterGeoTargeting++; |
4473 if (buildCounterGeoTargeting < 3) { | 4473 if (buildCounterGeoTargeting < 3) { |
4474 checkUnnamed2594(o.cities); | 4474 checkUnnamed2688(o.cities); |
4475 checkUnnamed2595(o.countries); | 4475 checkUnnamed2689(o.countries); |
4476 unittest.expect(o.excludeCountries, unittest.isTrue); | 4476 unittest.expect(o.excludeCountries, unittest.isTrue); |
4477 checkUnnamed2596(o.metros); | 4477 checkUnnamed2690(o.metros); |
4478 checkUnnamed2597(o.postalCodes); | 4478 checkUnnamed2691(o.postalCodes); |
4479 checkUnnamed2598(o.regions); | 4479 checkUnnamed2692(o.regions); |
4480 } | 4480 } |
4481 buildCounterGeoTargeting--; | 4481 buildCounterGeoTargeting--; |
4482 } | 4482 } |
4483 | 4483 |
4484 buildUnnamed2599() { | 4484 buildUnnamed2693() { |
4485 var o = new core.List<api.AdSlot>(); | 4485 var o = new core.List<api.AdSlot>(); |
4486 o.add(buildAdSlot()); | 4486 o.add(buildAdSlot()); |
4487 o.add(buildAdSlot()); | 4487 o.add(buildAdSlot()); |
4488 return o; | 4488 return o; |
4489 } | 4489 } |
4490 | 4490 |
4491 checkUnnamed2599(core.List<api.AdSlot> o) { | 4491 checkUnnamed2693(core.List<api.AdSlot> o) { |
4492 unittest.expect(o, unittest.hasLength(2)); | 4492 unittest.expect(o, unittest.hasLength(2)); |
4493 checkAdSlot(o[0]); | 4493 checkAdSlot(o[0]); |
4494 checkAdSlot(o[1]); | 4494 checkAdSlot(o[1]); |
4495 } | 4495 } |
4496 | 4496 |
4497 core.int buildCounterInventoryItem = 0; | 4497 core.int buildCounterInventoryItem = 0; |
4498 buildInventoryItem() { | 4498 buildInventoryItem() { |
4499 var o = new api.InventoryItem(); | 4499 var o = new api.InventoryItem(); |
4500 buildCounterInventoryItem++; | 4500 buildCounterInventoryItem++; |
4501 if (buildCounterInventoryItem < 3) { | 4501 if (buildCounterInventoryItem < 3) { |
4502 o.accountId = "foo"; | 4502 o.accountId = "foo"; |
4503 o.adSlots = buildUnnamed2599(); | 4503 o.adSlots = buildUnnamed2693(); |
4504 o.advertiserId = "foo"; | 4504 o.advertiserId = "foo"; |
4505 o.contentCategoryId = "foo"; | 4505 o.contentCategoryId = "foo"; |
4506 o.estimatedClickThroughRate = "foo"; | 4506 o.estimatedClickThroughRate = "foo"; |
4507 o.estimatedConversionRate = "foo"; | 4507 o.estimatedConversionRate = "foo"; |
4508 o.id = "foo"; | 4508 o.id = "foo"; |
4509 o.inPlan = true; | 4509 o.inPlan = true; |
4510 o.kind = "foo"; | 4510 o.kind = "foo"; |
4511 o.lastModifiedInfo = buildLastModifiedInfo(); | 4511 o.lastModifiedInfo = buildLastModifiedInfo(); |
4512 o.name = "foo"; | 4512 o.name = "foo"; |
4513 o.negotiationChannelId = "foo"; | 4513 o.negotiationChannelId = "foo"; |
4514 o.orderId = "foo"; | 4514 o.orderId = "foo"; |
4515 o.placementStrategyId = "foo"; | 4515 o.placementStrategyId = "foo"; |
4516 o.pricing = buildPricing(); | 4516 o.pricing = buildPricing(); |
4517 o.projectId = "foo"; | 4517 o.projectId = "foo"; |
4518 o.rfpId = "foo"; | 4518 o.rfpId = "foo"; |
4519 o.siteId = "foo"; | 4519 o.siteId = "foo"; |
4520 o.subaccountId = "foo"; | 4520 o.subaccountId = "foo"; |
4521 o.type = "foo"; | 4521 o.type = "foo"; |
4522 } | 4522 } |
4523 buildCounterInventoryItem--; | 4523 buildCounterInventoryItem--; |
4524 return o; | 4524 return o; |
4525 } | 4525 } |
4526 | 4526 |
4527 checkInventoryItem(api.InventoryItem o) { | 4527 checkInventoryItem(api.InventoryItem o) { |
4528 buildCounterInventoryItem++; | 4528 buildCounterInventoryItem++; |
4529 if (buildCounterInventoryItem < 3) { | 4529 if (buildCounterInventoryItem < 3) { |
4530 unittest.expect(o.accountId, unittest.equals('foo')); | 4530 unittest.expect(o.accountId, unittest.equals('foo')); |
4531 checkUnnamed2599(o.adSlots); | 4531 checkUnnamed2693(o.adSlots); |
4532 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4532 unittest.expect(o.advertiserId, unittest.equals('foo')); |
4533 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 4533 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
4534 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); | 4534 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); |
4535 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); | 4535 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); |
4536 unittest.expect(o.id, unittest.equals('foo')); | 4536 unittest.expect(o.id, unittest.equals('foo')); |
4537 unittest.expect(o.inPlan, unittest.isTrue); | 4537 unittest.expect(o.inPlan, unittest.isTrue); |
4538 unittest.expect(o.kind, unittest.equals('foo')); | 4538 unittest.expect(o.kind, unittest.equals('foo')); |
4539 checkLastModifiedInfo(o.lastModifiedInfo); | 4539 checkLastModifiedInfo(o.lastModifiedInfo); |
4540 unittest.expect(o.name, unittest.equals('foo')); | 4540 unittest.expect(o.name, unittest.equals('foo')); |
4541 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); | 4541 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); |
4542 unittest.expect(o.orderId, unittest.equals('foo')); | 4542 unittest.expect(o.orderId, unittest.equals('foo')); |
4543 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 4543 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
4544 checkPricing(o.pricing); | 4544 checkPricing(o.pricing); |
4545 unittest.expect(o.projectId, unittest.equals('foo')); | 4545 unittest.expect(o.projectId, unittest.equals('foo')); |
4546 unittest.expect(o.rfpId, unittest.equals('foo')); | 4546 unittest.expect(o.rfpId, unittest.equals('foo')); |
4547 unittest.expect(o.siteId, unittest.equals('foo')); | 4547 unittest.expect(o.siteId, unittest.equals('foo')); |
4548 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4548 unittest.expect(o.subaccountId, unittest.equals('foo')); |
4549 unittest.expect(o.type, unittest.equals('foo')); | 4549 unittest.expect(o.type, unittest.equals('foo')); |
4550 } | 4550 } |
4551 buildCounterInventoryItem--; | 4551 buildCounterInventoryItem--; |
4552 } | 4552 } |
4553 | 4553 |
4554 buildUnnamed2600() { | 4554 buildUnnamed2694() { |
4555 var o = new core.List<api.InventoryItem>(); | 4555 var o = new core.List<api.InventoryItem>(); |
4556 o.add(buildInventoryItem()); | 4556 o.add(buildInventoryItem()); |
4557 o.add(buildInventoryItem()); | 4557 o.add(buildInventoryItem()); |
4558 return o; | 4558 return o; |
4559 } | 4559 } |
4560 | 4560 |
4561 checkUnnamed2600(core.List<api.InventoryItem> o) { | 4561 checkUnnamed2694(core.List<api.InventoryItem> o) { |
4562 unittest.expect(o, unittest.hasLength(2)); | 4562 unittest.expect(o, unittest.hasLength(2)); |
4563 checkInventoryItem(o[0]); | 4563 checkInventoryItem(o[0]); |
4564 checkInventoryItem(o[1]); | 4564 checkInventoryItem(o[1]); |
4565 } | 4565 } |
4566 | 4566 |
4567 core.int buildCounterInventoryItemsListResponse = 0; | 4567 core.int buildCounterInventoryItemsListResponse = 0; |
4568 buildInventoryItemsListResponse() { | 4568 buildInventoryItemsListResponse() { |
4569 var o = new api.InventoryItemsListResponse(); | 4569 var o = new api.InventoryItemsListResponse(); |
4570 buildCounterInventoryItemsListResponse++; | 4570 buildCounterInventoryItemsListResponse++; |
4571 if (buildCounterInventoryItemsListResponse < 3) { | 4571 if (buildCounterInventoryItemsListResponse < 3) { |
4572 o.inventoryItems = buildUnnamed2600(); | 4572 o.inventoryItems = buildUnnamed2694(); |
4573 o.kind = "foo"; | 4573 o.kind = "foo"; |
4574 o.nextPageToken = "foo"; | 4574 o.nextPageToken = "foo"; |
4575 } | 4575 } |
4576 buildCounterInventoryItemsListResponse--; | 4576 buildCounterInventoryItemsListResponse--; |
4577 return o; | 4577 return o; |
4578 } | 4578 } |
4579 | 4579 |
4580 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { | 4580 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { |
4581 buildCounterInventoryItemsListResponse++; | 4581 buildCounterInventoryItemsListResponse++; |
4582 if (buildCounterInventoryItemsListResponse < 3) { | 4582 if (buildCounterInventoryItemsListResponse < 3) { |
4583 checkUnnamed2600(o.inventoryItems); | 4583 checkUnnamed2694(o.inventoryItems); |
4584 unittest.expect(o.kind, unittest.equals('foo')); | 4584 unittest.expect(o.kind, unittest.equals('foo')); |
4585 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4585 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
4586 } | 4586 } |
4587 buildCounterInventoryItemsListResponse--; | 4587 buildCounterInventoryItemsListResponse--; |
4588 } | 4588 } |
4589 | 4589 |
4590 core.int buildCounterKeyValueTargetingExpression = 0; | 4590 core.int buildCounterKeyValueTargetingExpression = 0; |
4591 buildKeyValueTargetingExpression() { | 4591 buildKeyValueTargetingExpression() { |
4592 var o = new api.KeyValueTargetingExpression(); | 4592 var o = new api.KeyValueTargetingExpression(); |
4593 buildCounterKeyValueTargetingExpression++; | 4593 buildCounterKeyValueTargetingExpression++; |
(...skipping 32 matching lines...) Loading... |
4626 if (buildCounterLandingPage < 3) { | 4626 if (buildCounterLandingPage < 3) { |
4627 unittest.expect(o.default_, unittest.isTrue); | 4627 unittest.expect(o.default_, unittest.isTrue); |
4628 unittest.expect(o.id, unittest.equals('foo')); | 4628 unittest.expect(o.id, unittest.equals('foo')); |
4629 unittest.expect(o.kind, unittest.equals('foo')); | 4629 unittest.expect(o.kind, unittest.equals('foo')); |
4630 unittest.expect(o.name, unittest.equals('foo')); | 4630 unittest.expect(o.name, unittest.equals('foo')); |
4631 unittest.expect(o.url, unittest.equals('foo')); | 4631 unittest.expect(o.url, unittest.equals('foo')); |
4632 } | 4632 } |
4633 buildCounterLandingPage--; | 4633 buildCounterLandingPage--; |
4634 } | 4634 } |
4635 | 4635 |
4636 buildUnnamed2601() { | 4636 buildUnnamed2695() { |
4637 var o = new core.List<api.LandingPage>(); | 4637 var o = new core.List<api.LandingPage>(); |
4638 o.add(buildLandingPage()); | 4638 o.add(buildLandingPage()); |
4639 o.add(buildLandingPage()); | 4639 o.add(buildLandingPage()); |
4640 return o; | 4640 return o; |
4641 } | 4641 } |
4642 | 4642 |
4643 checkUnnamed2601(core.List<api.LandingPage> o) { | 4643 checkUnnamed2695(core.List<api.LandingPage> o) { |
4644 unittest.expect(o, unittest.hasLength(2)); | 4644 unittest.expect(o, unittest.hasLength(2)); |
4645 checkLandingPage(o[0]); | 4645 checkLandingPage(o[0]); |
4646 checkLandingPage(o[1]); | 4646 checkLandingPage(o[1]); |
4647 } | 4647 } |
4648 | 4648 |
4649 core.int buildCounterLandingPagesListResponse = 0; | 4649 core.int buildCounterLandingPagesListResponse = 0; |
4650 buildLandingPagesListResponse() { | 4650 buildLandingPagesListResponse() { |
4651 var o = new api.LandingPagesListResponse(); | 4651 var o = new api.LandingPagesListResponse(); |
4652 buildCounterLandingPagesListResponse++; | 4652 buildCounterLandingPagesListResponse++; |
4653 if (buildCounterLandingPagesListResponse < 3) { | 4653 if (buildCounterLandingPagesListResponse < 3) { |
4654 o.kind = "foo"; | 4654 o.kind = "foo"; |
4655 o.landingPages = buildUnnamed2601(); | 4655 o.landingPages = buildUnnamed2695(); |
4656 } | 4656 } |
4657 buildCounterLandingPagesListResponse--; | 4657 buildCounterLandingPagesListResponse--; |
4658 return o; | 4658 return o; |
4659 } | 4659 } |
4660 | 4660 |
4661 checkLandingPagesListResponse(api.LandingPagesListResponse o) { | 4661 checkLandingPagesListResponse(api.LandingPagesListResponse o) { |
4662 buildCounterLandingPagesListResponse++; | 4662 buildCounterLandingPagesListResponse++; |
4663 if (buildCounterLandingPagesListResponse < 3) { | 4663 if (buildCounterLandingPagesListResponse < 3) { |
4664 unittest.expect(o.kind, unittest.equals('foo')); | 4664 unittest.expect(o.kind, unittest.equals('foo')); |
4665 checkUnnamed2601(o.landingPages); | 4665 checkUnnamed2695(o.landingPages); |
4666 } | 4666 } |
4667 buildCounterLandingPagesListResponse--; | 4667 buildCounterLandingPagesListResponse--; |
4668 } | 4668 } |
4669 | 4669 |
4670 core.int buildCounterLanguage = 0; | 4670 core.int buildCounterLanguage = 0; |
4671 buildLanguage() { | 4671 buildLanguage() { |
4672 var o = new api.Language(); | 4672 var o = new api.Language(); |
4673 buildCounterLanguage++; | 4673 buildCounterLanguage++; |
4674 if (buildCounterLanguage < 3) { | 4674 if (buildCounterLanguage < 3) { |
4675 o.id = "foo"; | 4675 o.id = "foo"; |
4676 o.kind = "foo"; | 4676 o.kind = "foo"; |
4677 o.languageCode = "foo"; | 4677 o.languageCode = "foo"; |
4678 o.name = "foo"; | 4678 o.name = "foo"; |
4679 } | 4679 } |
4680 buildCounterLanguage--; | 4680 buildCounterLanguage--; |
4681 return o; | 4681 return o; |
4682 } | 4682 } |
4683 | 4683 |
4684 checkLanguage(api.Language o) { | 4684 checkLanguage(api.Language o) { |
4685 buildCounterLanguage++; | 4685 buildCounterLanguage++; |
4686 if (buildCounterLanguage < 3) { | 4686 if (buildCounterLanguage < 3) { |
4687 unittest.expect(o.id, unittest.equals('foo')); | 4687 unittest.expect(o.id, unittest.equals('foo')); |
4688 unittest.expect(o.kind, unittest.equals('foo')); | 4688 unittest.expect(o.kind, unittest.equals('foo')); |
4689 unittest.expect(o.languageCode, unittest.equals('foo')); | 4689 unittest.expect(o.languageCode, unittest.equals('foo')); |
4690 unittest.expect(o.name, unittest.equals('foo')); | 4690 unittest.expect(o.name, unittest.equals('foo')); |
4691 } | 4691 } |
4692 buildCounterLanguage--; | 4692 buildCounterLanguage--; |
4693 } | 4693 } |
4694 | 4694 |
4695 buildUnnamed2602() { | 4695 buildUnnamed2696() { |
4696 var o = new core.List<api.Language>(); | 4696 var o = new core.List<api.Language>(); |
4697 o.add(buildLanguage()); | 4697 o.add(buildLanguage()); |
4698 o.add(buildLanguage()); | 4698 o.add(buildLanguage()); |
4699 return o; | 4699 return o; |
4700 } | 4700 } |
4701 | 4701 |
4702 checkUnnamed2602(core.List<api.Language> o) { | 4702 checkUnnamed2696(core.List<api.Language> o) { |
4703 unittest.expect(o, unittest.hasLength(2)); | 4703 unittest.expect(o, unittest.hasLength(2)); |
4704 checkLanguage(o[0]); | 4704 checkLanguage(o[0]); |
4705 checkLanguage(o[1]); | 4705 checkLanguage(o[1]); |
4706 } | 4706 } |
4707 | 4707 |
4708 core.int buildCounterLanguageTargeting = 0; | 4708 core.int buildCounterLanguageTargeting = 0; |
4709 buildLanguageTargeting() { | 4709 buildLanguageTargeting() { |
4710 var o = new api.LanguageTargeting(); | 4710 var o = new api.LanguageTargeting(); |
4711 buildCounterLanguageTargeting++; | 4711 buildCounterLanguageTargeting++; |
4712 if (buildCounterLanguageTargeting < 3) { | 4712 if (buildCounterLanguageTargeting < 3) { |
4713 o.languages = buildUnnamed2602(); | 4713 o.languages = buildUnnamed2696(); |
4714 } | 4714 } |
4715 buildCounterLanguageTargeting--; | 4715 buildCounterLanguageTargeting--; |
4716 return o; | 4716 return o; |
4717 } | 4717 } |
4718 | 4718 |
4719 checkLanguageTargeting(api.LanguageTargeting o) { | 4719 checkLanguageTargeting(api.LanguageTargeting o) { |
4720 buildCounterLanguageTargeting++; | 4720 buildCounterLanguageTargeting++; |
4721 if (buildCounterLanguageTargeting < 3) { | 4721 if (buildCounterLanguageTargeting < 3) { |
4722 checkUnnamed2602(o.languages); | 4722 checkUnnamed2696(o.languages); |
4723 } | 4723 } |
4724 buildCounterLanguageTargeting--; | 4724 buildCounterLanguageTargeting--; |
4725 } | 4725 } |
4726 | 4726 |
4727 buildUnnamed2603() { | 4727 buildUnnamed2697() { |
4728 var o = new core.List<api.Language>(); | 4728 var o = new core.List<api.Language>(); |
4729 o.add(buildLanguage()); | 4729 o.add(buildLanguage()); |
4730 o.add(buildLanguage()); | 4730 o.add(buildLanguage()); |
4731 return o; | 4731 return o; |
4732 } | 4732 } |
4733 | 4733 |
4734 checkUnnamed2603(core.List<api.Language> o) { | 4734 checkUnnamed2697(core.List<api.Language> o) { |
4735 unittest.expect(o, unittest.hasLength(2)); | 4735 unittest.expect(o, unittest.hasLength(2)); |
4736 checkLanguage(o[0]); | 4736 checkLanguage(o[0]); |
4737 checkLanguage(o[1]); | 4737 checkLanguage(o[1]); |
4738 } | 4738 } |
4739 | 4739 |
4740 core.int buildCounterLanguagesListResponse = 0; | 4740 core.int buildCounterLanguagesListResponse = 0; |
4741 buildLanguagesListResponse() { | 4741 buildLanguagesListResponse() { |
4742 var o = new api.LanguagesListResponse(); | 4742 var o = new api.LanguagesListResponse(); |
4743 buildCounterLanguagesListResponse++; | 4743 buildCounterLanguagesListResponse++; |
4744 if (buildCounterLanguagesListResponse < 3) { | 4744 if (buildCounterLanguagesListResponse < 3) { |
4745 o.kind = "foo"; | 4745 o.kind = "foo"; |
4746 o.languages = buildUnnamed2603(); | 4746 o.languages = buildUnnamed2697(); |
4747 } | 4747 } |
4748 buildCounterLanguagesListResponse--; | 4748 buildCounterLanguagesListResponse--; |
4749 return o; | 4749 return o; |
4750 } | 4750 } |
4751 | 4751 |
4752 checkLanguagesListResponse(api.LanguagesListResponse o) { | 4752 checkLanguagesListResponse(api.LanguagesListResponse o) { |
4753 buildCounterLanguagesListResponse++; | 4753 buildCounterLanguagesListResponse++; |
4754 if (buildCounterLanguagesListResponse < 3) { | 4754 if (buildCounterLanguagesListResponse < 3) { |
4755 unittest.expect(o.kind, unittest.equals('foo')); | 4755 unittest.expect(o.kind, unittest.equals('foo')); |
4756 checkUnnamed2603(o.languages); | 4756 checkUnnamed2697(o.languages); |
4757 } | 4757 } |
4758 buildCounterLanguagesListResponse--; | 4758 buildCounterLanguagesListResponse--; |
4759 } | 4759 } |
4760 | 4760 |
4761 core.int buildCounterLastModifiedInfo = 0; | 4761 core.int buildCounterLastModifiedInfo = 0; |
4762 buildLastModifiedInfo() { | 4762 buildLastModifiedInfo() { |
4763 var o = new api.LastModifiedInfo(); | 4763 var o = new api.LastModifiedInfo(); |
4764 buildCounterLastModifiedInfo++; | 4764 buildCounterLastModifiedInfo++; |
4765 if (buildCounterLastModifiedInfo < 3) { | 4765 if (buildCounterLastModifiedInfo < 3) { |
4766 o.time = "foo"; | 4766 o.time = "foo"; |
4767 } | 4767 } |
4768 buildCounterLastModifiedInfo--; | 4768 buildCounterLastModifiedInfo--; |
4769 return o; | 4769 return o; |
4770 } | 4770 } |
4771 | 4771 |
4772 checkLastModifiedInfo(api.LastModifiedInfo o) { | 4772 checkLastModifiedInfo(api.LastModifiedInfo o) { |
4773 buildCounterLastModifiedInfo++; | 4773 buildCounterLastModifiedInfo++; |
4774 if (buildCounterLastModifiedInfo < 3) { | 4774 if (buildCounterLastModifiedInfo < 3) { |
4775 unittest.expect(o.time, unittest.equals('foo')); | 4775 unittest.expect(o.time, unittest.equals('foo')); |
4776 } | 4776 } |
4777 buildCounterLastModifiedInfo--; | 4777 buildCounterLastModifiedInfo--; |
4778 } | 4778 } |
4779 | 4779 |
4780 buildUnnamed2604() { | 4780 buildUnnamed2698() { |
4781 var o = new core.List<api.ListPopulationTerm>(); | 4781 var o = new core.List<api.ListPopulationTerm>(); |
4782 o.add(buildListPopulationTerm()); | 4782 o.add(buildListPopulationTerm()); |
4783 o.add(buildListPopulationTerm()); | 4783 o.add(buildListPopulationTerm()); |
4784 return o; | 4784 return o; |
4785 } | 4785 } |
4786 | 4786 |
4787 checkUnnamed2604(core.List<api.ListPopulationTerm> o) { | 4787 checkUnnamed2698(core.List<api.ListPopulationTerm> o) { |
4788 unittest.expect(o, unittest.hasLength(2)); | 4788 unittest.expect(o, unittest.hasLength(2)); |
4789 checkListPopulationTerm(o[0]); | 4789 checkListPopulationTerm(o[0]); |
4790 checkListPopulationTerm(o[1]); | 4790 checkListPopulationTerm(o[1]); |
4791 } | 4791 } |
4792 | 4792 |
4793 core.int buildCounterListPopulationClause = 0; | 4793 core.int buildCounterListPopulationClause = 0; |
4794 buildListPopulationClause() { | 4794 buildListPopulationClause() { |
4795 var o = new api.ListPopulationClause(); | 4795 var o = new api.ListPopulationClause(); |
4796 buildCounterListPopulationClause++; | 4796 buildCounterListPopulationClause++; |
4797 if (buildCounterListPopulationClause < 3) { | 4797 if (buildCounterListPopulationClause < 3) { |
4798 o.terms = buildUnnamed2604(); | 4798 o.terms = buildUnnamed2698(); |
4799 } | 4799 } |
4800 buildCounterListPopulationClause--; | 4800 buildCounterListPopulationClause--; |
4801 return o; | 4801 return o; |
4802 } | 4802 } |
4803 | 4803 |
4804 checkListPopulationClause(api.ListPopulationClause o) { | 4804 checkListPopulationClause(api.ListPopulationClause o) { |
4805 buildCounterListPopulationClause++; | 4805 buildCounterListPopulationClause++; |
4806 if (buildCounterListPopulationClause < 3) { | 4806 if (buildCounterListPopulationClause < 3) { |
4807 checkUnnamed2604(o.terms); | 4807 checkUnnamed2698(o.terms); |
4808 } | 4808 } |
4809 buildCounterListPopulationClause--; | 4809 buildCounterListPopulationClause--; |
4810 } | 4810 } |
4811 | 4811 |
4812 buildUnnamed2605() { | 4812 buildUnnamed2699() { |
4813 var o = new core.List<api.ListPopulationClause>(); | 4813 var o = new core.List<api.ListPopulationClause>(); |
4814 o.add(buildListPopulationClause()); | 4814 o.add(buildListPopulationClause()); |
4815 o.add(buildListPopulationClause()); | 4815 o.add(buildListPopulationClause()); |
4816 return o; | 4816 return o; |
4817 } | 4817 } |
4818 | 4818 |
4819 checkUnnamed2605(core.List<api.ListPopulationClause> o) { | 4819 checkUnnamed2699(core.List<api.ListPopulationClause> o) { |
4820 unittest.expect(o, unittest.hasLength(2)); | 4820 unittest.expect(o, unittest.hasLength(2)); |
4821 checkListPopulationClause(o[0]); | 4821 checkListPopulationClause(o[0]); |
4822 checkListPopulationClause(o[1]); | 4822 checkListPopulationClause(o[1]); |
4823 } | 4823 } |
4824 | 4824 |
4825 core.int buildCounterListPopulationRule = 0; | 4825 core.int buildCounterListPopulationRule = 0; |
4826 buildListPopulationRule() { | 4826 buildListPopulationRule() { |
4827 var o = new api.ListPopulationRule(); | 4827 var o = new api.ListPopulationRule(); |
4828 buildCounterListPopulationRule++; | 4828 buildCounterListPopulationRule++; |
4829 if (buildCounterListPopulationRule < 3) { | 4829 if (buildCounterListPopulationRule < 3) { |
4830 o.floodlightActivityId = "foo"; | 4830 o.floodlightActivityId = "foo"; |
4831 o.floodlightActivityName = "foo"; | 4831 o.floodlightActivityName = "foo"; |
4832 o.listPopulationClauses = buildUnnamed2605(); | 4832 o.listPopulationClauses = buildUnnamed2699(); |
4833 } | 4833 } |
4834 buildCounterListPopulationRule--; | 4834 buildCounterListPopulationRule--; |
4835 return o; | 4835 return o; |
4836 } | 4836 } |
4837 | 4837 |
4838 checkListPopulationRule(api.ListPopulationRule o) { | 4838 checkListPopulationRule(api.ListPopulationRule o) { |
4839 buildCounterListPopulationRule++; | 4839 buildCounterListPopulationRule++; |
4840 if (buildCounterListPopulationRule < 3) { | 4840 if (buildCounterListPopulationRule < 3) { |
4841 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4841 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
4842 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); | 4842 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); |
4843 checkUnnamed2605(o.listPopulationClauses); | 4843 checkUnnamed2699(o.listPopulationClauses); |
4844 } | 4844 } |
4845 buildCounterListPopulationRule--; | 4845 buildCounterListPopulationRule--; |
4846 } | 4846 } |
4847 | 4847 |
4848 core.int buildCounterListPopulationTerm = 0; | 4848 core.int buildCounterListPopulationTerm = 0; |
4849 buildListPopulationTerm() { | 4849 buildListPopulationTerm() { |
4850 var o = new api.ListPopulationTerm(); | 4850 var o = new api.ListPopulationTerm(); |
4851 buildCounterListPopulationTerm++; | 4851 buildCounterListPopulationTerm++; |
4852 if (buildCounterListPopulationTerm < 3) { | 4852 if (buildCounterListPopulationTerm < 3) { |
4853 o.contains = true; | 4853 o.contains = true; |
(...skipping 109 matching lines...) Loading... |
4963 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4963 unittest.expect(o.countryDartId, unittest.equals('foo')); |
4964 unittest.expect(o.dartId, unittest.equals('foo')); | 4964 unittest.expect(o.dartId, unittest.equals('foo')); |
4965 unittest.expect(o.dmaId, unittest.equals('foo')); | 4965 unittest.expect(o.dmaId, unittest.equals('foo')); |
4966 unittest.expect(o.kind, unittest.equals('foo')); | 4966 unittest.expect(o.kind, unittest.equals('foo')); |
4967 unittest.expect(o.metroCode, unittest.equals('foo')); | 4967 unittest.expect(o.metroCode, unittest.equals('foo')); |
4968 unittest.expect(o.name, unittest.equals('foo')); | 4968 unittest.expect(o.name, unittest.equals('foo')); |
4969 } | 4969 } |
4970 buildCounterMetro--; | 4970 buildCounterMetro--; |
4971 } | 4971 } |
4972 | 4972 |
4973 buildUnnamed2606() { | 4973 buildUnnamed2700() { |
4974 var o = new core.List<api.Metro>(); | 4974 var o = new core.List<api.Metro>(); |
4975 o.add(buildMetro()); | 4975 o.add(buildMetro()); |
4976 o.add(buildMetro()); | 4976 o.add(buildMetro()); |
4977 return o; | 4977 return o; |
4978 } | 4978 } |
4979 | 4979 |
4980 checkUnnamed2606(core.List<api.Metro> o) { | 4980 checkUnnamed2700(core.List<api.Metro> o) { |
4981 unittest.expect(o, unittest.hasLength(2)); | 4981 unittest.expect(o, unittest.hasLength(2)); |
4982 checkMetro(o[0]); | 4982 checkMetro(o[0]); |
4983 checkMetro(o[1]); | 4983 checkMetro(o[1]); |
4984 } | 4984 } |
4985 | 4985 |
4986 core.int buildCounterMetrosListResponse = 0; | 4986 core.int buildCounterMetrosListResponse = 0; |
4987 buildMetrosListResponse() { | 4987 buildMetrosListResponse() { |
4988 var o = new api.MetrosListResponse(); | 4988 var o = new api.MetrosListResponse(); |
4989 buildCounterMetrosListResponse++; | 4989 buildCounterMetrosListResponse++; |
4990 if (buildCounterMetrosListResponse < 3) { | 4990 if (buildCounterMetrosListResponse < 3) { |
4991 o.kind = "foo"; | 4991 o.kind = "foo"; |
4992 o.metros = buildUnnamed2606(); | 4992 o.metros = buildUnnamed2700(); |
4993 } | 4993 } |
4994 buildCounterMetrosListResponse--; | 4994 buildCounterMetrosListResponse--; |
4995 return o; | 4995 return o; |
4996 } | 4996 } |
4997 | 4997 |
4998 checkMetrosListResponse(api.MetrosListResponse o) { | 4998 checkMetrosListResponse(api.MetrosListResponse o) { |
4999 buildCounterMetrosListResponse++; | 4999 buildCounterMetrosListResponse++; |
5000 if (buildCounterMetrosListResponse < 3) { | 5000 if (buildCounterMetrosListResponse < 3) { |
5001 unittest.expect(o.kind, unittest.equals('foo')); | 5001 unittest.expect(o.kind, unittest.equals('foo')); |
5002 checkUnnamed2606(o.metros); | 5002 checkUnnamed2700(o.metros); |
5003 } | 5003 } |
5004 buildCounterMetrosListResponse--; | 5004 buildCounterMetrosListResponse--; |
5005 } | 5005 } |
5006 | 5006 |
5007 core.int buildCounterMobileCarrier = 0; | 5007 core.int buildCounterMobileCarrier = 0; |
5008 buildMobileCarrier() { | 5008 buildMobileCarrier() { |
5009 var o = new api.MobileCarrier(); | 5009 var o = new api.MobileCarrier(); |
5010 buildCounterMobileCarrier++; | 5010 buildCounterMobileCarrier++; |
5011 if (buildCounterMobileCarrier < 3) { | 5011 if (buildCounterMobileCarrier < 3) { |
5012 o.countryCode = "foo"; | 5012 o.countryCode = "foo"; |
(...skipping 11 matching lines...) Loading... |
5024 if (buildCounterMobileCarrier < 3) { | 5024 if (buildCounterMobileCarrier < 3) { |
5025 unittest.expect(o.countryCode, unittest.equals('foo')); | 5025 unittest.expect(o.countryCode, unittest.equals('foo')); |
5026 unittest.expect(o.countryDartId, unittest.equals('foo')); | 5026 unittest.expect(o.countryDartId, unittest.equals('foo')); |
5027 unittest.expect(o.id, unittest.equals('foo')); | 5027 unittest.expect(o.id, unittest.equals('foo')); |
5028 unittest.expect(o.kind, unittest.equals('foo')); | 5028 unittest.expect(o.kind, unittest.equals('foo')); |
5029 unittest.expect(o.name, unittest.equals('foo')); | 5029 unittest.expect(o.name, unittest.equals('foo')); |
5030 } | 5030 } |
5031 buildCounterMobileCarrier--; | 5031 buildCounterMobileCarrier--; |
5032 } | 5032 } |
5033 | 5033 |
5034 buildUnnamed2607() { | 5034 buildUnnamed2701() { |
5035 var o = new core.List<api.MobileCarrier>(); | 5035 var o = new core.List<api.MobileCarrier>(); |
5036 o.add(buildMobileCarrier()); | 5036 o.add(buildMobileCarrier()); |
5037 o.add(buildMobileCarrier()); | 5037 o.add(buildMobileCarrier()); |
5038 return o; | 5038 return o; |
5039 } | 5039 } |
5040 | 5040 |
5041 checkUnnamed2607(core.List<api.MobileCarrier> o) { | 5041 checkUnnamed2701(core.List<api.MobileCarrier> o) { |
5042 unittest.expect(o, unittest.hasLength(2)); | 5042 unittest.expect(o, unittest.hasLength(2)); |
5043 checkMobileCarrier(o[0]); | 5043 checkMobileCarrier(o[0]); |
5044 checkMobileCarrier(o[1]); | 5044 checkMobileCarrier(o[1]); |
5045 } | 5045 } |
5046 | 5046 |
5047 core.int buildCounterMobileCarriersListResponse = 0; | 5047 core.int buildCounterMobileCarriersListResponse = 0; |
5048 buildMobileCarriersListResponse() { | 5048 buildMobileCarriersListResponse() { |
5049 var o = new api.MobileCarriersListResponse(); | 5049 var o = new api.MobileCarriersListResponse(); |
5050 buildCounterMobileCarriersListResponse++; | 5050 buildCounterMobileCarriersListResponse++; |
5051 if (buildCounterMobileCarriersListResponse < 3) { | 5051 if (buildCounterMobileCarriersListResponse < 3) { |
5052 o.kind = "foo"; | 5052 o.kind = "foo"; |
5053 o.mobileCarriers = buildUnnamed2607(); | 5053 o.mobileCarriers = buildUnnamed2701(); |
5054 } | 5054 } |
5055 buildCounterMobileCarriersListResponse--; | 5055 buildCounterMobileCarriersListResponse--; |
5056 return o; | 5056 return o; |
5057 } | 5057 } |
5058 | 5058 |
5059 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { | 5059 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { |
5060 buildCounterMobileCarriersListResponse++; | 5060 buildCounterMobileCarriersListResponse++; |
5061 if (buildCounterMobileCarriersListResponse < 3) { | 5061 if (buildCounterMobileCarriersListResponse < 3) { |
5062 unittest.expect(o.kind, unittest.equals('foo')); | 5062 unittest.expect(o.kind, unittest.equals('foo')); |
5063 checkUnnamed2607(o.mobileCarriers); | 5063 checkUnnamed2701(o.mobileCarriers); |
5064 } | 5064 } |
5065 buildCounterMobileCarriersListResponse--; | 5065 buildCounterMobileCarriersListResponse--; |
5066 } | 5066 } |
5067 | 5067 |
5068 buildUnnamed2608() { | 5068 buildUnnamed2702() { |
5069 var o = new core.List<core.String>(); | 5069 var o = new core.List<core.String>(); |
5070 o.add("foo"); | 5070 o.add("foo"); |
5071 o.add("foo"); | 5071 o.add("foo"); |
5072 return o; | 5072 return o; |
5073 } | 5073 } |
5074 | 5074 |
5075 checkUnnamed2608(core.List<core.String> o) { | 5075 checkUnnamed2702(core.List<core.String> o) { |
5076 unittest.expect(o, unittest.hasLength(2)); | 5076 unittest.expect(o, unittest.hasLength(2)); |
5077 unittest.expect(o[0], unittest.equals('foo')); | 5077 unittest.expect(o[0], unittest.equals('foo')); |
5078 unittest.expect(o[1], unittest.equals('foo')); | 5078 unittest.expect(o[1], unittest.equals('foo')); |
5079 } | 5079 } |
5080 | 5080 |
5081 core.int buildCounterObjectFilter = 0; | 5081 core.int buildCounterObjectFilter = 0; |
5082 buildObjectFilter() { | 5082 buildObjectFilter() { |
5083 var o = new api.ObjectFilter(); | 5083 var o = new api.ObjectFilter(); |
5084 buildCounterObjectFilter++; | 5084 buildCounterObjectFilter++; |
5085 if (buildCounterObjectFilter < 3) { | 5085 if (buildCounterObjectFilter < 3) { |
5086 o.kind = "foo"; | 5086 o.kind = "foo"; |
5087 o.objectIds = buildUnnamed2608(); | 5087 o.objectIds = buildUnnamed2702(); |
5088 o.status = "foo"; | 5088 o.status = "foo"; |
5089 } | 5089 } |
5090 buildCounterObjectFilter--; | 5090 buildCounterObjectFilter--; |
5091 return o; | 5091 return o; |
5092 } | 5092 } |
5093 | 5093 |
5094 checkObjectFilter(api.ObjectFilter o) { | 5094 checkObjectFilter(api.ObjectFilter o) { |
5095 buildCounterObjectFilter++; | 5095 buildCounterObjectFilter++; |
5096 if (buildCounterObjectFilter < 3) { | 5096 if (buildCounterObjectFilter < 3) { |
5097 unittest.expect(o.kind, unittest.equals('foo')); | 5097 unittest.expect(o.kind, unittest.equals('foo')); |
5098 checkUnnamed2608(o.objectIds); | 5098 checkUnnamed2702(o.objectIds); |
5099 unittest.expect(o.status, unittest.equals('foo')); | 5099 unittest.expect(o.status, unittest.equals('foo')); |
5100 } | 5100 } |
5101 buildCounterObjectFilter--; | 5101 buildCounterObjectFilter--; |
5102 } | 5102 } |
5103 | 5103 |
5104 core.int buildCounterOffsetPosition = 0; | 5104 core.int buildCounterOffsetPosition = 0; |
5105 buildOffsetPosition() { | 5105 buildOffsetPosition() { |
5106 var o = new api.OffsetPosition(); | 5106 var o = new api.OffsetPosition(); |
5107 buildCounterOffsetPosition++; | 5107 buildCounterOffsetPosition++; |
5108 if (buildCounterOffsetPosition < 3) { | 5108 if (buildCounterOffsetPosition < 3) { |
(...skipping 83 matching lines...) Loading... |
5192 unittest.expect(o.id, unittest.equals('foo')); | 5192 unittest.expect(o.id, unittest.equals('foo')); |
5193 unittest.expect(o.kind, unittest.equals('foo')); | 5193 unittest.expect(o.kind, unittest.equals('foo')); |
5194 unittest.expect(o.majorVersion, unittest.equals('foo')); | 5194 unittest.expect(o.majorVersion, unittest.equals('foo')); |
5195 unittest.expect(o.minorVersion, unittest.equals('foo')); | 5195 unittest.expect(o.minorVersion, unittest.equals('foo')); |
5196 unittest.expect(o.name, unittest.equals('foo')); | 5196 unittest.expect(o.name, unittest.equals('foo')); |
5197 checkOperatingSystem(o.operatingSystem); | 5197 checkOperatingSystem(o.operatingSystem); |
5198 } | 5198 } |
5199 buildCounterOperatingSystemVersion--; | 5199 buildCounterOperatingSystemVersion--; |
5200 } | 5200 } |
5201 | 5201 |
5202 buildUnnamed2609() { | 5202 buildUnnamed2703() { |
5203 var o = new core.List<api.OperatingSystemVersion>(); | 5203 var o = new core.List<api.OperatingSystemVersion>(); |
5204 o.add(buildOperatingSystemVersion()); | 5204 o.add(buildOperatingSystemVersion()); |
5205 o.add(buildOperatingSystemVersion()); | 5205 o.add(buildOperatingSystemVersion()); |
5206 return o; | 5206 return o; |
5207 } | 5207 } |
5208 | 5208 |
5209 checkUnnamed2609(core.List<api.OperatingSystemVersion> o) { | 5209 checkUnnamed2703(core.List<api.OperatingSystemVersion> o) { |
5210 unittest.expect(o, unittest.hasLength(2)); | 5210 unittest.expect(o, unittest.hasLength(2)); |
5211 checkOperatingSystemVersion(o[0]); | 5211 checkOperatingSystemVersion(o[0]); |
5212 checkOperatingSystemVersion(o[1]); | 5212 checkOperatingSystemVersion(o[1]); |
5213 } | 5213 } |
5214 | 5214 |
5215 core.int buildCounterOperatingSystemVersionsListResponse = 0; | 5215 core.int buildCounterOperatingSystemVersionsListResponse = 0; |
5216 buildOperatingSystemVersionsListResponse() { | 5216 buildOperatingSystemVersionsListResponse() { |
5217 var o = new api.OperatingSystemVersionsListResponse(); | 5217 var o = new api.OperatingSystemVersionsListResponse(); |
5218 buildCounterOperatingSystemVersionsListResponse++; | 5218 buildCounterOperatingSystemVersionsListResponse++; |
5219 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 5219 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
5220 o.kind = "foo"; | 5220 o.kind = "foo"; |
5221 o.operatingSystemVersions = buildUnnamed2609(); | 5221 o.operatingSystemVersions = buildUnnamed2703(); |
5222 } | 5222 } |
5223 buildCounterOperatingSystemVersionsListResponse--; | 5223 buildCounterOperatingSystemVersionsListResponse--; |
5224 return o; | 5224 return o; |
5225 } | 5225 } |
5226 | 5226 |
5227 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { | 5227 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { |
5228 buildCounterOperatingSystemVersionsListResponse++; | 5228 buildCounterOperatingSystemVersionsListResponse++; |
5229 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 5229 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
5230 unittest.expect(o.kind, unittest.equals('foo')); | 5230 unittest.expect(o.kind, unittest.equals('foo')); |
5231 checkUnnamed2609(o.operatingSystemVersions); | 5231 checkUnnamed2703(o.operatingSystemVersions); |
5232 } | 5232 } |
5233 buildCounterOperatingSystemVersionsListResponse--; | 5233 buildCounterOperatingSystemVersionsListResponse--; |
5234 } | 5234 } |
5235 | 5235 |
5236 buildUnnamed2610() { | 5236 buildUnnamed2704() { |
5237 var o = new core.List<api.OperatingSystem>(); | 5237 var o = new core.List<api.OperatingSystem>(); |
5238 o.add(buildOperatingSystem()); | 5238 o.add(buildOperatingSystem()); |
5239 o.add(buildOperatingSystem()); | 5239 o.add(buildOperatingSystem()); |
5240 return o; | 5240 return o; |
5241 } | 5241 } |
5242 | 5242 |
5243 checkUnnamed2610(core.List<api.OperatingSystem> o) { | 5243 checkUnnamed2704(core.List<api.OperatingSystem> o) { |
5244 unittest.expect(o, unittest.hasLength(2)); | 5244 unittest.expect(o, unittest.hasLength(2)); |
5245 checkOperatingSystem(o[0]); | 5245 checkOperatingSystem(o[0]); |
5246 checkOperatingSystem(o[1]); | 5246 checkOperatingSystem(o[1]); |
5247 } | 5247 } |
5248 | 5248 |
5249 core.int buildCounterOperatingSystemsListResponse = 0; | 5249 core.int buildCounterOperatingSystemsListResponse = 0; |
5250 buildOperatingSystemsListResponse() { | 5250 buildOperatingSystemsListResponse() { |
5251 var o = new api.OperatingSystemsListResponse(); | 5251 var o = new api.OperatingSystemsListResponse(); |
5252 buildCounterOperatingSystemsListResponse++; | 5252 buildCounterOperatingSystemsListResponse++; |
5253 if (buildCounterOperatingSystemsListResponse < 3) { | 5253 if (buildCounterOperatingSystemsListResponse < 3) { |
5254 o.kind = "foo"; | 5254 o.kind = "foo"; |
5255 o.operatingSystems = buildUnnamed2610(); | 5255 o.operatingSystems = buildUnnamed2704(); |
5256 } | 5256 } |
5257 buildCounterOperatingSystemsListResponse--; | 5257 buildCounterOperatingSystemsListResponse--; |
5258 return o; | 5258 return o; |
5259 } | 5259 } |
5260 | 5260 |
5261 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { | 5261 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { |
5262 buildCounterOperatingSystemsListResponse++; | 5262 buildCounterOperatingSystemsListResponse++; |
5263 if (buildCounterOperatingSystemsListResponse < 3) { | 5263 if (buildCounterOperatingSystemsListResponse < 3) { |
5264 unittest.expect(o.kind, unittest.equals('foo')); | 5264 unittest.expect(o.kind, unittest.equals('foo')); |
5265 checkUnnamed2610(o.operatingSystems); | 5265 checkUnnamed2704(o.operatingSystems); |
5266 } | 5266 } |
5267 buildCounterOperatingSystemsListResponse--; | 5267 buildCounterOperatingSystemsListResponse--; |
5268 } | 5268 } |
5269 | 5269 |
5270 core.int buildCounterOptimizationActivity = 0; | 5270 core.int buildCounterOptimizationActivity = 0; |
5271 buildOptimizationActivity() { | 5271 buildOptimizationActivity() { |
5272 var o = new api.OptimizationActivity(); | 5272 var o = new api.OptimizationActivity(); |
5273 buildCounterOptimizationActivity++; | 5273 buildCounterOptimizationActivity++; |
5274 if (buildCounterOptimizationActivity < 3) { | 5274 if (buildCounterOptimizationActivity < 3) { |
5275 o.floodlightActivityId = "foo"; | 5275 o.floodlightActivityId = "foo"; |
5276 o.floodlightActivityIdDimensionValue = buildDimensionValue(); | 5276 o.floodlightActivityIdDimensionValue = buildDimensionValue(); |
5277 o.weight = 42; | 5277 o.weight = 42; |
5278 } | 5278 } |
5279 buildCounterOptimizationActivity--; | 5279 buildCounterOptimizationActivity--; |
5280 return o; | 5280 return o; |
5281 } | 5281 } |
5282 | 5282 |
5283 checkOptimizationActivity(api.OptimizationActivity o) { | 5283 checkOptimizationActivity(api.OptimizationActivity o) { |
5284 buildCounterOptimizationActivity++; | 5284 buildCounterOptimizationActivity++; |
5285 if (buildCounterOptimizationActivity < 3) { | 5285 if (buildCounterOptimizationActivity < 3) { |
5286 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 5286 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
5287 checkDimensionValue(o.floodlightActivityIdDimensionValue); | 5287 checkDimensionValue(o.floodlightActivityIdDimensionValue); |
5288 unittest.expect(o.weight, unittest.equals(42)); | 5288 unittest.expect(o.weight, unittest.equals(42)); |
5289 } | 5289 } |
5290 buildCounterOptimizationActivity--; | 5290 buildCounterOptimizationActivity--; |
5291 } | 5291 } |
5292 | 5292 |
5293 buildUnnamed2611() { | 5293 buildUnnamed2705() { |
5294 var o = new core.List<core.String>(); | 5294 var o = new core.List<core.String>(); |
5295 o.add("foo"); | 5295 o.add("foo"); |
5296 o.add("foo"); | 5296 o.add("foo"); |
5297 return o; | 5297 return o; |
5298 } | 5298 } |
5299 | 5299 |
5300 checkUnnamed2611(core.List<core.String> o) { | 5300 checkUnnamed2705(core.List<core.String> o) { |
5301 unittest.expect(o, unittest.hasLength(2)); | 5301 unittest.expect(o, unittest.hasLength(2)); |
5302 unittest.expect(o[0], unittest.equals('foo')); | 5302 unittest.expect(o[0], unittest.equals('foo')); |
5303 unittest.expect(o[1], unittest.equals('foo')); | 5303 unittest.expect(o[1], unittest.equals('foo')); |
5304 } | 5304 } |
5305 | 5305 |
5306 buildUnnamed2612() { | 5306 buildUnnamed2706() { |
5307 var o = new core.List<api.OrderContact>(); | 5307 var o = new core.List<api.OrderContact>(); |
5308 o.add(buildOrderContact()); | 5308 o.add(buildOrderContact()); |
5309 o.add(buildOrderContact()); | 5309 o.add(buildOrderContact()); |
5310 return o; | 5310 return o; |
5311 } | 5311 } |
5312 | 5312 |
5313 checkUnnamed2612(core.List<api.OrderContact> o) { | 5313 checkUnnamed2706(core.List<api.OrderContact> o) { |
5314 unittest.expect(o, unittest.hasLength(2)); | 5314 unittest.expect(o, unittest.hasLength(2)); |
5315 checkOrderContact(o[0]); | 5315 checkOrderContact(o[0]); |
5316 checkOrderContact(o[1]); | 5316 checkOrderContact(o[1]); |
5317 } | 5317 } |
5318 | 5318 |
5319 buildUnnamed2613() { | 5319 buildUnnamed2707() { |
5320 var o = new core.List<core.String>(); | 5320 var o = new core.List<core.String>(); |
5321 o.add("foo"); | 5321 o.add("foo"); |
5322 o.add("foo"); | 5322 o.add("foo"); |
5323 return o; | 5323 return o; |
5324 } | 5324 } |
5325 | 5325 |
5326 checkUnnamed2613(core.List<core.String> o) { | 5326 checkUnnamed2707(core.List<core.String> o) { |
5327 unittest.expect(o, unittest.hasLength(2)); | 5327 unittest.expect(o, unittest.hasLength(2)); |
5328 unittest.expect(o[0], unittest.equals('foo')); | 5328 unittest.expect(o[0], unittest.equals('foo')); |
5329 unittest.expect(o[1], unittest.equals('foo')); | 5329 unittest.expect(o[1], unittest.equals('foo')); |
5330 } | 5330 } |
5331 | 5331 |
5332 buildUnnamed2614() { | 5332 buildUnnamed2708() { |
5333 var o = new core.List<core.String>(); | 5333 var o = new core.List<core.String>(); |
5334 o.add("foo"); | 5334 o.add("foo"); |
5335 o.add("foo"); | 5335 o.add("foo"); |
5336 return o; | 5336 return o; |
5337 } | 5337 } |
5338 | 5338 |
5339 checkUnnamed2614(core.List<core.String> o) { | 5339 checkUnnamed2708(core.List<core.String> o) { |
5340 unittest.expect(o, unittest.hasLength(2)); | 5340 unittest.expect(o, unittest.hasLength(2)); |
5341 unittest.expect(o[0], unittest.equals('foo')); | 5341 unittest.expect(o[0], unittest.equals('foo')); |
5342 unittest.expect(o[1], unittest.equals('foo')); | 5342 unittest.expect(o[1], unittest.equals('foo')); |
5343 } | 5343 } |
5344 | 5344 |
5345 core.int buildCounterOrder = 0; | 5345 core.int buildCounterOrder = 0; |
5346 buildOrder() { | 5346 buildOrder() { |
5347 var o = new api.Order(); | 5347 var o = new api.Order(); |
5348 buildCounterOrder++; | 5348 buildCounterOrder++; |
5349 if (buildCounterOrder < 3) { | 5349 if (buildCounterOrder < 3) { |
5350 o.accountId = "foo"; | 5350 o.accountId = "foo"; |
5351 o.advertiserId = "foo"; | 5351 o.advertiserId = "foo"; |
5352 o.approverUserProfileIds = buildUnnamed2611(); | 5352 o.approverUserProfileIds = buildUnnamed2705(); |
5353 o.buyerInvoiceId = "foo"; | 5353 o.buyerInvoiceId = "foo"; |
5354 o.buyerOrganizationName = "foo"; | 5354 o.buyerOrganizationName = "foo"; |
5355 o.comments = "foo"; | 5355 o.comments = "foo"; |
5356 o.contacts = buildUnnamed2612(); | 5356 o.contacts = buildUnnamed2706(); |
5357 o.id = "foo"; | 5357 o.id = "foo"; |
5358 o.kind = "foo"; | 5358 o.kind = "foo"; |
5359 o.lastModifiedInfo = buildLastModifiedInfo(); | 5359 o.lastModifiedInfo = buildLastModifiedInfo(); |
5360 o.name = "foo"; | 5360 o.name = "foo"; |
5361 o.notes = "foo"; | 5361 o.notes = "foo"; |
5362 o.planningTermId = "foo"; | 5362 o.planningTermId = "foo"; |
5363 o.projectId = "foo"; | 5363 o.projectId = "foo"; |
5364 o.sellerOrderId = "foo"; | 5364 o.sellerOrderId = "foo"; |
5365 o.sellerOrganizationName = "foo"; | 5365 o.sellerOrganizationName = "foo"; |
5366 o.siteId = buildUnnamed2613(); | 5366 o.siteId = buildUnnamed2707(); |
5367 o.siteNames = buildUnnamed2614(); | 5367 o.siteNames = buildUnnamed2708(); |
5368 o.subaccountId = "foo"; | 5368 o.subaccountId = "foo"; |
5369 o.termsAndConditions = "foo"; | 5369 o.termsAndConditions = "foo"; |
5370 } | 5370 } |
5371 buildCounterOrder--; | 5371 buildCounterOrder--; |
5372 return o; | 5372 return o; |
5373 } | 5373 } |
5374 | 5374 |
5375 checkOrder(api.Order o) { | 5375 checkOrder(api.Order o) { |
5376 buildCounterOrder++; | 5376 buildCounterOrder++; |
5377 if (buildCounterOrder < 3) { | 5377 if (buildCounterOrder < 3) { |
5378 unittest.expect(o.accountId, unittest.equals('foo')); | 5378 unittest.expect(o.accountId, unittest.equals('foo')); |
5379 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5379 unittest.expect(o.advertiserId, unittest.equals('foo')); |
5380 checkUnnamed2611(o.approverUserProfileIds); | 5380 checkUnnamed2705(o.approverUserProfileIds); |
5381 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); | 5381 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); |
5382 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); | 5382 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); |
5383 unittest.expect(o.comments, unittest.equals('foo')); | 5383 unittest.expect(o.comments, unittest.equals('foo')); |
5384 checkUnnamed2612(o.contacts); | 5384 checkUnnamed2706(o.contacts); |
5385 unittest.expect(o.id, unittest.equals('foo')); | 5385 unittest.expect(o.id, unittest.equals('foo')); |
5386 unittest.expect(o.kind, unittest.equals('foo')); | 5386 unittest.expect(o.kind, unittest.equals('foo')); |
5387 checkLastModifiedInfo(o.lastModifiedInfo); | 5387 checkLastModifiedInfo(o.lastModifiedInfo); |
5388 unittest.expect(o.name, unittest.equals('foo')); | 5388 unittest.expect(o.name, unittest.equals('foo')); |
5389 unittest.expect(o.notes, unittest.equals('foo')); | 5389 unittest.expect(o.notes, unittest.equals('foo')); |
5390 unittest.expect(o.planningTermId, unittest.equals('foo')); | 5390 unittest.expect(o.planningTermId, unittest.equals('foo')); |
5391 unittest.expect(o.projectId, unittest.equals('foo')); | 5391 unittest.expect(o.projectId, unittest.equals('foo')); |
5392 unittest.expect(o.sellerOrderId, unittest.equals('foo')); | 5392 unittest.expect(o.sellerOrderId, unittest.equals('foo')); |
5393 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); | 5393 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); |
5394 checkUnnamed2613(o.siteId); | 5394 checkUnnamed2707(o.siteId); |
5395 checkUnnamed2614(o.siteNames); | 5395 checkUnnamed2708(o.siteNames); |
5396 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5396 unittest.expect(o.subaccountId, unittest.equals('foo')); |
5397 unittest.expect(o.termsAndConditions, unittest.equals('foo')); | 5397 unittest.expect(o.termsAndConditions, unittest.equals('foo')); |
5398 } | 5398 } |
5399 buildCounterOrder--; | 5399 buildCounterOrder--; |
5400 } | 5400 } |
5401 | 5401 |
5402 core.int buildCounterOrderContact = 0; | 5402 core.int buildCounterOrderContact = 0; |
5403 buildOrderContact() { | 5403 buildOrderContact() { |
5404 var o = new api.OrderContact(); | 5404 var o = new api.OrderContact(); |
5405 buildCounterOrderContact++; | 5405 buildCounterOrderContact++; |
(...skipping 13 matching lines...) Loading... |
5419 if (buildCounterOrderContact < 3) { | 5419 if (buildCounterOrderContact < 3) { |
5420 unittest.expect(o.contactInfo, unittest.equals('foo')); | 5420 unittest.expect(o.contactInfo, unittest.equals('foo')); |
5421 unittest.expect(o.contactName, unittest.equals('foo')); | 5421 unittest.expect(o.contactName, unittest.equals('foo')); |
5422 unittest.expect(o.contactTitle, unittest.equals('foo')); | 5422 unittest.expect(o.contactTitle, unittest.equals('foo')); |
5423 unittest.expect(o.contactType, unittest.equals('foo')); | 5423 unittest.expect(o.contactType, unittest.equals('foo')); |
5424 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); | 5424 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); |
5425 } | 5425 } |
5426 buildCounterOrderContact--; | 5426 buildCounterOrderContact--; |
5427 } | 5427 } |
5428 | 5428 |
5429 buildUnnamed2615() { | 5429 buildUnnamed2709() { |
5430 var o = new core.List<core.String>(); | 5430 var o = new core.List<core.String>(); |
5431 o.add("foo"); | 5431 o.add("foo"); |
5432 o.add("foo"); | 5432 o.add("foo"); |
5433 return o; | 5433 return o; |
5434 } | 5434 } |
5435 | 5435 |
5436 checkUnnamed2615(core.List<core.String> o) { | 5436 checkUnnamed2709(core.List<core.String> o) { |
5437 unittest.expect(o, unittest.hasLength(2)); | 5437 unittest.expect(o, unittest.hasLength(2)); |
5438 unittest.expect(o[0], unittest.equals('foo')); | 5438 unittest.expect(o[0], unittest.equals('foo')); |
5439 unittest.expect(o[1], unittest.equals('foo')); | 5439 unittest.expect(o[1], unittest.equals('foo')); |
5440 } | 5440 } |
5441 | 5441 |
5442 buildUnnamed2616() { | 5442 buildUnnamed2710() { |
5443 var o = new core.List<core.String>(); | 5443 var o = new core.List<core.String>(); |
5444 o.add("foo"); | 5444 o.add("foo"); |
5445 o.add("foo"); | 5445 o.add("foo"); |
5446 return o; | 5446 return o; |
5447 } | 5447 } |
5448 | 5448 |
5449 checkUnnamed2616(core.List<core.String> o) { | 5449 checkUnnamed2710(core.List<core.String> o) { |
5450 unittest.expect(o, unittest.hasLength(2)); | 5450 unittest.expect(o, unittest.hasLength(2)); |
5451 unittest.expect(o[0], unittest.equals('foo')); | 5451 unittest.expect(o[0], unittest.equals('foo')); |
5452 unittest.expect(o[1], unittest.equals('foo')); | 5452 unittest.expect(o[1], unittest.equals('foo')); |
5453 } | 5453 } |
5454 | 5454 |
5455 core.int buildCounterOrderDocument = 0; | 5455 core.int buildCounterOrderDocument = 0; |
5456 buildOrderDocument() { | 5456 buildOrderDocument() { |
5457 var o = new api.OrderDocument(); | 5457 var o = new api.OrderDocument(); |
5458 buildCounterOrderDocument++; | 5458 buildCounterOrderDocument++; |
5459 if (buildCounterOrderDocument < 3) { | 5459 if (buildCounterOrderDocument < 3) { |
5460 o.accountId = "foo"; | 5460 o.accountId = "foo"; |
5461 o.advertiserId = "foo"; | 5461 o.advertiserId = "foo"; |
5462 o.amendedOrderDocumentId = "foo"; | 5462 o.amendedOrderDocumentId = "foo"; |
5463 o.approvedByUserProfileIds = buildUnnamed2615(); | 5463 o.approvedByUserProfileIds = buildUnnamed2709(); |
5464 o.cancelled = true; | 5464 o.cancelled = true; |
5465 o.createdInfo = buildLastModifiedInfo(); | 5465 o.createdInfo = buildLastModifiedInfo(); |
5466 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5466 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
5467 o.id = "foo"; | 5467 o.id = "foo"; |
5468 o.kind = "foo"; | 5468 o.kind = "foo"; |
5469 o.lastSentRecipients = buildUnnamed2616(); | 5469 o.lastSentRecipients = buildUnnamed2710(); |
5470 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); | 5470 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); |
5471 o.orderId = "foo"; | 5471 o.orderId = "foo"; |
5472 o.projectId = "foo"; | 5472 o.projectId = "foo"; |
5473 o.signed = true; | 5473 o.signed = true; |
5474 o.subaccountId = "foo"; | 5474 o.subaccountId = "foo"; |
5475 o.title = "foo"; | 5475 o.title = "foo"; |
5476 o.type = "foo"; | 5476 o.type = "foo"; |
5477 } | 5477 } |
5478 buildCounterOrderDocument--; | 5478 buildCounterOrderDocument--; |
5479 return o; | 5479 return o; |
5480 } | 5480 } |
5481 | 5481 |
5482 checkOrderDocument(api.OrderDocument o) { | 5482 checkOrderDocument(api.OrderDocument o) { |
5483 buildCounterOrderDocument++; | 5483 buildCounterOrderDocument++; |
5484 if (buildCounterOrderDocument < 3) { | 5484 if (buildCounterOrderDocument < 3) { |
5485 unittest.expect(o.accountId, unittest.equals('foo')); | 5485 unittest.expect(o.accountId, unittest.equals('foo')); |
5486 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5486 unittest.expect(o.advertiserId, unittest.equals('foo')); |
5487 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); | 5487 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); |
5488 checkUnnamed2615(o.approvedByUserProfileIds); | 5488 checkUnnamed2709(o.approvedByUserProfileIds); |
5489 unittest.expect(o.cancelled, unittest.isTrue); | 5489 unittest.expect(o.cancelled, unittest.isTrue); |
5490 checkLastModifiedInfo(o.createdInfo); | 5490 checkLastModifiedInfo(o.createdInfo); |
5491 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); | 5491 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); |
5492 unittest.expect(o.id, unittest.equals('foo')); | 5492 unittest.expect(o.id, unittest.equals('foo')); |
5493 unittest.expect(o.kind, unittest.equals('foo')); | 5493 unittest.expect(o.kind, unittest.equals('foo')); |
5494 checkUnnamed2616(o.lastSentRecipients); | 5494 checkUnnamed2710(o.lastSentRecipients); |
5495 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); | 5495 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); |
5496 unittest.expect(o.orderId, unittest.equals('foo')); | 5496 unittest.expect(o.orderId, unittest.equals('foo')); |
5497 unittest.expect(o.projectId, unittest.equals('foo')); | 5497 unittest.expect(o.projectId, unittest.equals('foo')); |
5498 unittest.expect(o.signed, unittest.isTrue); | 5498 unittest.expect(o.signed, unittest.isTrue); |
5499 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5499 unittest.expect(o.subaccountId, unittest.equals('foo')); |
5500 unittest.expect(o.title, unittest.equals('foo')); | 5500 unittest.expect(o.title, unittest.equals('foo')); |
5501 unittest.expect(o.type, unittest.equals('foo')); | 5501 unittest.expect(o.type, unittest.equals('foo')); |
5502 } | 5502 } |
5503 buildCounterOrderDocument--; | 5503 buildCounterOrderDocument--; |
5504 } | 5504 } |
5505 | 5505 |
5506 buildUnnamed2617() { | 5506 buildUnnamed2711() { |
5507 var o = new core.List<api.OrderDocument>(); | 5507 var o = new core.List<api.OrderDocument>(); |
5508 o.add(buildOrderDocument()); | 5508 o.add(buildOrderDocument()); |
5509 o.add(buildOrderDocument()); | 5509 o.add(buildOrderDocument()); |
5510 return o; | 5510 return o; |
5511 } | 5511 } |
5512 | 5512 |
5513 checkUnnamed2617(core.List<api.OrderDocument> o) { | 5513 checkUnnamed2711(core.List<api.OrderDocument> o) { |
5514 unittest.expect(o, unittest.hasLength(2)); | 5514 unittest.expect(o, unittest.hasLength(2)); |
5515 checkOrderDocument(o[0]); | 5515 checkOrderDocument(o[0]); |
5516 checkOrderDocument(o[1]); | 5516 checkOrderDocument(o[1]); |
5517 } | 5517 } |
5518 | 5518 |
5519 core.int buildCounterOrderDocumentsListResponse = 0; | 5519 core.int buildCounterOrderDocumentsListResponse = 0; |
5520 buildOrderDocumentsListResponse() { | 5520 buildOrderDocumentsListResponse() { |
5521 var o = new api.OrderDocumentsListResponse(); | 5521 var o = new api.OrderDocumentsListResponse(); |
5522 buildCounterOrderDocumentsListResponse++; | 5522 buildCounterOrderDocumentsListResponse++; |
5523 if (buildCounterOrderDocumentsListResponse < 3) { | 5523 if (buildCounterOrderDocumentsListResponse < 3) { |
5524 o.kind = "foo"; | 5524 o.kind = "foo"; |
5525 o.nextPageToken = "foo"; | 5525 o.nextPageToken = "foo"; |
5526 o.orderDocuments = buildUnnamed2617(); | 5526 o.orderDocuments = buildUnnamed2711(); |
5527 } | 5527 } |
5528 buildCounterOrderDocumentsListResponse--; | 5528 buildCounterOrderDocumentsListResponse--; |
5529 return o; | 5529 return o; |
5530 } | 5530 } |
5531 | 5531 |
5532 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { | 5532 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { |
5533 buildCounterOrderDocumentsListResponse++; | 5533 buildCounterOrderDocumentsListResponse++; |
5534 if (buildCounterOrderDocumentsListResponse < 3) { | 5534 if (buildCounterOrderDocumentsListResponse < 3) { |
5535 unittest.expect(o.kind, unittest.equals('foo')); | 5535 unittest.expect(o.kind, unittest.equals('foo')); |
5536 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5536 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
5537 checkUnnamed2617(o.orderDocuments); | 5537 checkUnnamed2711(o.orderDocuments); |
5538 } | 5538 } |
5539 buildCounterOrderDocumentsListResponse--; | 5539 buildCounterOrderDocumentsListResponse--; |
5540 } | 5540 } |
5541 | 5541 |
5542 buildUnnamed2618() { | 5542 buildUnnamed2712() { |
5543 var o = new core.List<api.Order>(); | 5543 var o = new core.List<api.Order>(); |
5544 o.add(buildOrder()); | 5544 o.add(buildOrder()); |
5545 o.add(buildOrder()); | 5545 o.add(buildOrder()); |
5546 return o; | 5546 return o; |
5547 } | 5547 } |
5548 | 5548 |
5549 checkUnnamed2618(core.List<api.Order> o) { | 5549 checkUnnamed2712(core.List<api.Order> o) { |
5550 unittest.expect(o, unittest.hasLength(2)); | 5550 unittest.expect(o, unittest.hasLength(2)); |
5551 checkOrder(o[0]); | 5551 checkOrder(o[0]); |
5552 checkOrder(o[1]); | 5552 checkOrder(o[1]); |
5553 } | 5553 } |
5554 | 5554 |
5555 core.int buildCounterOrdersListResponse = 0; | 5555 core.int buildCounterOrdersListResponse = 0; |
5556 buildOrdersListResponse() { | 5556 buildOrdersListResponse() { |
5557 var o = new api.OrdersListResponse(); | 5557 var o = new api.OrdersListResponse(); |
5558 buildCounterOrdersListResponse++; | 5558 buildCounterOrdersListResponse++; |
5559 if (buildCounterOrdersListResponse < 3) { | 5559 if (buildCounterOrdersListResponse < 3) { |
5560 o.kind = "foo"; | 5560 o.kind = "foo"; |
5561 o.nextPageToken = "foo"; | 5561 o.nextPageToken = "foo"; |
5562 o.orders = buildUnnamed2618(); | 5562 o.orders = buildUnnamed2712(); |
5563 } | 5563 } |
5564 buildCounterOrdersListResponse--; | 5564 buildCounterOrdersListResponse--; |
5565 return o; | 5565 return o; |
5566 } | 5566 } |
5567 | 5567 |
5568 checkOrdersListResponse(api.OrdersListResponse o) { | 5568 checkOrdersListResponse(api.OrdersListResponse o) { |
5569 buildCounterOrdersListResponse++; | 5569 buildCounterOrdersListResponse++; |
5570 if (buildCounterOrdersListResponse < 3) { | 5570 if (buildCounterOrdersListResponse < 3) { |
5571 unittest.expect(o.kind, unittest.equals('foo')); | 5571 unittest.expect(o.kind, unittest.equals('foo')); |
5572 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5572 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
5573 checkUnnamed2618(o.orders); | 5573 checkUnnamed2712(o.orders); |
5574 } | 5574 } |
5575 buildCounterOrdersListResponse--; | 5575 buildCounterOrdersListResponse--; |
5576 } | 5576 } |
5577 | 5577 |
5578 buildUnnamed2619() { | 5578 buildUnnamed2713() { |
5579 var o = new core.List<api.Dimension>(); | 5579 var o = new core.List<api.Dimension>(); |
5580 o.add(buildDimension()); | 5580 o.add(buildDimension()); |
5581 o.add(buildDimension()); | 5581 o.add(buildDimension()); |
5582 return o; | 5582 return o; |
5583 } | 5583 } |
5584 | 5584 |
5585 checkUnnamed2619(core.List<api.Dimension> o) { | 5585 checkUnnamed2713(core.List<api.Dimension> o) { |
5586 unittest.expect(o, unittest.hasLength(2)); | 5586 unittest.expect(o, unittest.hasLength(2)); |
5587 checkDimension(o[0]); | 5587 checkDimension(o[0]); |
5588 checkDimension(o[1]); | 5588 checkDimension(o[1]); |
5589 } | 5589 } |
5590 | 5590 |
5591 buildUnnamed2620() { | 5591 buildUnnamed2714() { |
5592 var o = new core.List<api.Dimension>(); | 5592 var o = new core.List<api.Dimension>(); |
5593 o.add(buildDimension()); | 5593 o.add(buildDimension()); |
5594 o.add(buildDimension()); | 5594 o.add(buildDimension()); |
5595 return o; | 5595 return o; |
5596 } | 5596 } |
5597 | 5597 |
5598 checkUnnamed2620(core.List<api.Dimension> o) { | 5598 checkUnnamed2714(core.List<api.Dimension> o) { |
5599 unittest.expect(o, unittest.hasLength(2)); | 5599 unittest.expect(o, unittest.hasLength(2)); |
5600 checkDimension(o[0]); | 5600 checkDimension(o[0]); |
5601 checkDimension(o[1]); | 5601 checkDimension(o[1]); |
5602 } | 5602 } |
5603 | 5603 |
5604 buildUnnamed2621() { | 5604 buildUnnamed2715() { |
5605 var o = new core.List<api.Metric>(); | 5605 var o = new core.List<api.Metric>(); |
5606 o.add(buildMetric()); | 5606 o.add(buildMetric()); |
5607 o.add(buildMetric()); | 5607 o.add(buildMetric()); |
5608 return o; | 5608 return o; |
5609 } | 5609 } |
5610 | 5610 |
5611 checkUnnamed2621(core.List<api.Metric> o) { | 5611 checkUnnamed2715(core.List<api.Metric> o) { |
5612 unittest.expect(o, unittest.hasLength(2)); | 5612 unittest.expect(o, unittest.hasLength(2)); |
5613 checkMetric(o[0]); | 5613 checkMetric(o[0]); |
5614 checkMetric(o[1]); | 5614 checkMetric(o[1]); |
5615 } | 5615 } |
5616 | 5616 |
5617 buildUnnamed2622() { | 5617 buildUnnamed2716() { |
5618 var o = new core.List<api.Dimension>(); | 5618 var o = new core.List<api.Dimension>(); |
5619 o.add(buildDimension()); | 5619 o.add(buildDimension()); |
5620 o.add(buildDimension()); | 5620 o.add(buildDimension()); |
5621 return o; | 5621 return o; |
5622 } | 5622 } |
5623 | 5623 |
5624 checkUnnamed2622(core.List<api.Dimension> o) { | 5624 checkUnnamed2716(core.List<api.Dimension> o) { |
5625 unittest.expect(o, unittest.hasLength(2)); | 5625 unittest.expect(o, unittest.hasLength(2)); |
5626 checkDimension(o[0]); | 5626 checkDimension(o[0]); |
5627 checkDimension(o[1]); | 5627 checkDimension(o[1]); |
5628 } | 5628 } |
5629 | 5629 |
5630 core.int buildCounterPathToConversionReportCompatibleFields = 0; | 5630 core.int buildCounterPathToConversionReportCompatibleFields = 0; |
5631 buildPathToConversionReportCompatibleFields() { | 5631 buildPathToConversionReportCompatibleFields() { |
5632 var o = new api.PathToConversionReportCompatibleFields(); | 5632 var o = new api.PathToConversionReportCompatibleFields(); |
5633 buildCounterPathToConversionReportCompatibleFields++; | 5633 buildCounterPathToConversionReportCompatibleFields++; |
5634 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5634 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
5635 o.conversionDimensions = buildUnnamed2619(); | 5635 o.conversionDimensions = buildUnnamed2713(); |
5636 o.customFloodlightVariables = buildUnnamed2620(); | 5636 o.customFloodlightVariables = buildUnnamed2714(); |
5637 o.kind = "foo"; | 5637 o.kind = "foo"; |
5638 o.metrics = buildUnnamed2621(); | 5638 o.metrics = buildUnnamed2715(); |
5639 o.perInteractionDimensions = buildUnnamed2622(); | 5639 o.perInteractionDimensions = buildUnnamed2716(); |
5640 } | 5640 } |
5641 buildCounterPathToConversionReportCompatibleFields--; | 5641 buildCounterPathToConversionReportCompatibleFields--; |
5642 return o; | 5642 return o; |
5643 } | 5643 } |
5644 | 5644 |
5645 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { | 5645 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { |
5646 buildCounterPathToConversionReportCompatibleFields++; | 5646 buildCounterPathToConversionReportCompatibleFields++; |
5647 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5647 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
5648 checkUnnamed2619(o.conversionDimensions); | 5648 checkUnnamed2713(o.conversionDimensions); |
5649 checkUnnamed2620(o.customFloodlightVariables); | 5649 checkUnnamed2714(o.customFloodlightVariables); |
5650 unittest.expect(o.kind, unittest.equals('foo')); | 5650 unittest.expect(o.kind, unittest.equals('foo')); |
5651 checkUnnamed2621(o.metrics); | 5651 checkUnnamed2715(o.metrics); |
5652 checkUnnamed2622(o.perInteractionDimensions); | 5652 checkUnnamed2716(o.perInteractionDimensions); |
5653 } | 5653 } |
5654 buildCounterPathToConversionReportCompatibleFields--; | 5654 buildCounterPathToConversionReportCompatibleFields--; |
5655 } | 5655 } |
5656 | 5656 |
5657 buildUnnamed2623() { | 5657 buildUnnamed2717() { |
5658 var o = new core.List<core.String>(); | 5658 var o = new core.List<core.String>(); |
5659 o.add("foo"); | 5659 o.add("foo"); |
5660 o.add("foo"); | 5660 o.add("foo"); |
5661 return o; | 5661 return o; |
5662 } | 5662 } |
5663 | 5663 |
5664 checkUnnamed2623(core.List<core.String> o) { | 5664 checkUnnamed2717(core.List<core.String> o) { |
5665 unittest.expect(o, unittest.hasLength(2)); | 5665 unittest.expect(o, unittest.hasLength(2)); |
5666 unittest.expect(o[0], unittest.equals('foo')); | 5666 unittest.expect(o[0], unittest.equals('foo')); |
5667 unittest.expect(o[1], unittest.equals('foo')); | 5667 unittest.expect(o[1], unittest.equals('foo')); |
5668 } | 5668 } |
5669 | 5669 |
5670 core.int buildCounterPlacement = 0; | 5670 core.int buildCounterPlacement = 0; |
5671 buildPlacement() { | 5671 buildPlacement() { |
5672 var o = new api.Placement(); | 5672 var o = new api.Placement(); |
5673 buildCounterPlacement++; | 5673 buildCounterPlacement++; |
5674 if (buildCounterPlacement < 3) { | 5674 if (buildCounterPlacement < 3) { |
(...skipping 24 matching lines...) Loading... |
5699 o.placementStrategyId = "foo"; | 5699 o.placementStrategyId = "foo"; |
5700 o.pricingSchedule = buildPricingSchedule(); | 5700 o.pricingSchedule = buildPricingSchedule(); |
5701 o.primary = true; | 5701 o.primary = true; |
5702 o.publisherUpdateInfo = buildLastModifiedInfo(); | 5702 o.publisherUpdateInfo = buildLastModifiedInfo(); |
5703 o.siteId = "foo"; | 5703 o.siteId = "foo"; |
5704 o.siteIdDimensionValue = buildDimensionValue(); | 5704 o.siteIdDimensionValue = buildDimensionValue(); |
5705 o.size = buildSize(); | 5705 o.size = buildSize(); |
5706 o.sslRequired = true; | 5706 o.sslRequired = true; |
5707 o.status = "foo"; | 5707 o.status = "foo"; |
5708 o.subaccountId = "foo"; | 5708 o.subaccountId = "foo"; |
5709 o.tagFormats = buildUnnamed2623(); | 5709 o.tagFormats = buildUnnamed2717(); |
5710 o.tagSetting = buildTagSetting(); | 5710 o.tagSetting = buildTagSetting(); |
5711 } | 5711 } |
5712 buildCounterPlacement--; | 5712 buildCounterPlacement--; |
5713 return o; | 5713 return o; |
5714 } | 5714 } |
5715 | 5715 |
5716 checkPlacement(api.Placement o) { | 5716 checkPlacement(api.Placement o) { |
5717 buildCounterPlacement++; | 5717 buildCounterPlacement++; |
5718 if (buildCounterPlacement < 3) { | 5718 if (buildCounterPlacement < 3) { |
5719 unittest.expect(o.accountId, unittest.equals('foo')); | 5719 unittest.expect(o.accountId, unittest.equals('foo')); |
(...skipping 23 matching lines...) Loading... |
5743 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5743 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
5744 checkPricingSchedule(o.pricingSchedule); | 5744 checkPricingSchedule(o.pricingSchedule); |
5745 unittest.expect(o.primary, unittest.isTrue); | 5745 unittest.expect(o.primary, unittest.isTrue); |
5746 checkLastModifiedInfo(o.publisherUpdateInfo); | 5746 checkLastModifiedInfo(o.publisherUpdateInfo); |
5747 unittest.expect(o.siteId, unittest.equals('foo')); | 5747 unittest.expect(o.siteId, unittest.equals('foo')); |
5748 checkDimensionValue(o.siteIdDimensionValue); | 5748 checkDimensionValue(o.siteIdDimensionValue); |
5749 checkSize(o.size); | 5749 checkSize(o.size); |
5750 unittest.expect(o.sslRequired, unittest.isTrue); | 5750 unittest.expect(o.sslRequired, unittest.isTrue); |
5751 unittest.expect(o.status, unittest.equals('foo')); | 5751 unittest.expect(o.status, unittest.equals('foo')); |
5752 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5752 unittest.expect(o.subaccountId, unittest.equals('foo')); |
5753 checkUnnamed2623(o.tagFormats); | 5753 checkUnnamed2717(o.tagFormats); |
5754 checkTagSetting(o.tagSetting); | 5754 checkTagSetting(o.tagSetting); |
5755 } | 5755 } |
5756 buildCounterPlacement--; | 5756 buildCounterPlacement--; |
5757 } | 5757 } |
5758 | 5758 |
5759 core.int buildCounterPlacementAssignment = 0; | 5759 core.int buildCounterPlacementAssignment = 0; |
5760 buildPlacementAssignment() { | 5760 buildPlacementAssignment() { |
5761 var o = new api.PlacementAssignment(); | 5761 var o = new api.PlacementAssignment(); |
5762 buildCounterPlacementAssignment++; | 5762 buildCounterPlacementAssignment++; |
5763 if (buildCounterPlacementAssignment < 3) { | 5763 if (buildCounterPlacementAssignment < 3) { |
(...skipping 10 matching lines...) Loading... |
5774 buildCounterPlacementAssignment++; | 5774 buildCounterPlacementAssignment++; |
5775 if (buildCounterPlacementAssignment < 3) { | 5775 if (buildCounterPlacementAssignment < 3) { |
5776 unittest.expect(o.active, unittest.isTrue); | 5776 unittest.expect(o.active, unittest.isTrue); |
5777 unittest.expect(o.placementId, unittest.equals('foo')); | 5777 unittest.expect(o.placementId, unittest.equals('foo')); |
5778 checkDimensionValue(o.placementIdDimensionValue); | 5778 checkDimensionValue(o.placementIdDimensionValue); |
5779 unittest.expect(o.sslRequired, unittest.isTrue); | 5779 unittest.expect(o.sslRequired, unittest.isTrue); |
5780 } | 5780 } |
5781 buildCounterPlacementAssignment--; | 5781 buildCounterPlacementAssignment--; |
5782 } | 5782 } |
5783 | 5783 |
5784 buildUnnamed2624() { | 5784 buildUnnamed2718() { |
5785 var o = new core.List<core.String>(); | 5785 var o = new core.List<core.String>(); |
5786 o.add("foo"); | 5786 o.add("foo"); |
5787 o.add("foo"); | 5787 o.add("foo"); |
5788 return o; | 5788 return o; |
5789 } | 5789 } |
5790 | 5790 |
5791 checkUnnamed2624(core.List<core.String> o) { | 5791 checkUnnamed2718(core.List<core.String> o) { |
5792 unittest.expect(o, unittest.hasLength(2)); | 5792 unittest.expect(o, unittest.hasLength(2)); |
5793 unittest.expect(o[0], unittest.equals('foo')); | 5793 unittest.expect(o[0], unittest.equals('foo')); |
5794 unittest.expect(o[1], unittest.equals('foo')); | 5794 unittest.expect(o[1], unittest.equals('foo')); |
5795 } | 5795 } |
5796 | 5796 |
5797 core.int buildCounterPlacementGroup = 0; | 5797 core.int buildCounterPlacementGroup = 0; |
5798 buildPlacementGroup() { | 5798 buildPlacementGroup() { |
5799 var o = new api.PlacementGroup(); | 5799 var o = new api.PlacementGroup(); |
5800 buildCounterPlacementGroup++; | 5800 buildCounterPlacementGroup++; |
5801 if (buildCounterPlacementGroup < 3) { | 5801 if (buildCounterPlacementGroup < 3) { |
5802 o.accountId = "foo"; | 5802 o.accountId = "foo"; |
5803 o.advertiserId = "foo"; | 5803 o.advertiserId = "foo"; |
5804 o.advertiserIdDimensionValue = buildDimensionValue(); | 5804 o.advertiserIdDimensionValue = buildDimensionValue(); |
5805 o.archived = true; | 5805 o.archived = true; |
5806 o.campaignId = "foo"; | 5806 o.campaignId = "foo"; |
5807 o.campaignIdDimensionValue = buildDimensionValue(); | 5807 o.campaignIdDimensionValue = buildDimensionValue(); |
5808 o.childPlacementIds = buildUnnamed2624(); | 5808 o.childPlacementIds = buildUnnamed2718(); |
5809 o.comment = "foo"; | 5809 o.comment = "foo"; |
5810 o.contentCategoryId = "foo"; | 5810 o.contentCategoryId = "foo"; |
5811 o.createInfo = buildLastModifiedInfo(); | 5811 o.createInfo = buildLastModifiedInfo(); |
5812 o.directorySiteId = "foo"; | 5812 o.directorySiteId = "foo"; |
5813 o.directorySiteIdDimensionValue = buildDimensionValue(); | 5813 o.directorySiteIdDimensionValue = buildDimensionValue(); |
5814 o.externalId = "foo"; | 5814 o.externalId = "foo"; |
5815 o.id = "foo"; | 5815 o.id = "foo"; |
5816 o.idDimensionValue = buildDimensionValue(); | 5816 o.idDimensionValue = buildDimensionValue(); |
5817 o.kind = "foo"; | 5817 o.kind = "foo"; |
5818 o.lastModifiedInfo = buildLastModifiedInfo(); | 5818 o.lastModifiedInfo = buildLastModifiedInfo(); |
(...skipping 13 matching lines...) Loading... |
5832 | 5832 |
5833 checkPlacementGroup(api.PlacementGroup o) { | 5833 checkPlacementGroup(api.PlacementGroup o) { |
5834 buildCounterPlacementGroup++; | 5834 buildCounterPlacementGroup++; |
5835 if (buildCounterPlacementGroup < 3) { | 5835 if (buildCounterPlacementGroup < 3) { |
5836 unittest.expect(o.accountId, unittest.equals('foo')); | 5836 unittest.expect(o.accountId, unittest.equals('foo')); |
5837 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5837 unittest.expect(o.advertiserId, unittest.equals('foo')); |
5838 checkDimensionValue(o.advertiserIdDimensionValue); | 5838 checkDimensionValue(o.advertiserIdDimensionValue); |
5839 unittest.expect(o.archived, unittest.isTrue); | 5839 unittest.expect(o.archived, unittest.isTrue); |
5840 unittest.expect(o.campaignId, unittest.equals('foo')); | 5840 unittest.expect(o.campaignId, unittest.equals('foo')); |
5841 checkDimensionValue(o.campaignIdDimensionValue); | 5841 checkDimensionValue(o.campaignIdDimensionValue); |
5842 checkUnnamed2624(o.childPlacementIds); | 5842 checkUnnamed2718(o.childPlacementIds); |
5843 unittest.expect(o.comment, unittest.equals('foo')); | 5843 unittest.expect(o.comment, unittest.equals('foo')); |
5844 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 5844 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
5845 checkLastModifiedInfo(o.createInfo); | 5845 checkLastModifiedInfo(o.createInfo); |
5846 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 5846 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
5847 checkDimensionValue(o.directorySiteIdDimensionValue); | 5847 checkDimensionValue(o.directorySiteIdDimensionValue); |
5848 unittest.expect(o.externalId, unittest.equals('foo')); | 5848 unittest.expect(o.externalId, unittest.equals('foo')); |
5849 unittest.expect(o.id, unittest.equals('foo')); | 5849 unittest.expect(o.id, unittest.equals('foo')); |
5850 checkDimensionValue(o.idDimensionValue); | 5850 checkDimensionValue(o.idDimensionValue); |
5851 unittest.expect(o.kind, unittest.equals('foo')); | 5851 unittest.expect(o.kind, unittest.equals('foo')); |
5852 checkLastModifiedInfo(o.lastModifiedInfo); | 5852 checkLastModifiedInfo(o.lastModifiedInfo); |
5853 unittest.expect(o.name, unittest.equals('foo')); | 5853 unittest.expect(o.name, unittest.equals('foo')); |
5854 unittest.expect(o.placementGroupType, unittest.equals('foo')); | 5854 unittest.expect(o.placementGroupType, unittest.equals('foo')); |
5855 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5855 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
5856 checkPricingSchedule(o.pricingSchedule); | 5856 checkPricingSchedule(o.pricingSchedule); |
5857 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); | 5857 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); |
5858 checkDimensionValue(o.primaryPlacementIdDimensionValue); | 5858 checkDimensionValue(o.primaryPlacementIdDimensionValue); |
5859 unittest.expect(o.siteId, unittest.equals('foo')); | 5859 unittest.expect(o.siteId, unittest.equals('foo')); |
5860 checkDimensionValue(o.siteIdDimensionValue); | 5860 checkDimensionValue(o.siteIdDimensionValue); |
5861 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5861 unittest.expect(o.subaccountId, unittest.equals('foo')); |
5862 } | 5862 } |
5863 buildCounterPlacementGroup--; | 5863 buildCounterPlacementGroup--; |
5864 } | 5864 } |
5865 | 5865 |
5866 buildUnnamed2625() { | 5866 buildUnnamed2719() { |
5867 var o = new core.List<api.PlacementGroup>(); | 5867 var o = new core.List<api.PlacementGroup>(); |
5868 o.add(buildPlacementGroup()); | 5868 o.add(buildPlacementGroup()); |
5869 o.add(buildPlacementGroup()); | 5869 o.add(buildPlacementGroup()); |
5870 return o; | 5870 return o; |
5871 } | 5871 } |
5872 | 5872 |
5873 checkUnnamed2625(core.List<api.PlacementGroup> o) { | 5873 checkUnnamed2719(core.List<api.PlacementGroup> o) { |
5874 unittest.expect(o, unittest.hasLength(2)); | 5874 unittest.expect(o, unittest.hasLength(2)); |
5875 checkPlacementGroup(o[0]); | 5875 checkPlacementGroup(o[0]); |
5876 checkPlacementGroup(o[1]); | 5876 checkPlacementGroup(o[1]); |
5877 } | 5877 } |
5878 | 5878 |
5879 core.int buildCounterPlacementGroupsListResponse = 0; | 5879 core.int buildCounterPlacementGroupsListResponse = 0; |
5880 buildPlacementGroupsListResponse() { | 5880 buildPlacementGroupsListResponse() { |
5881 var o = new api.PlacementGroupsListResponse(); | 5881 var o = new api.PlacementGroupsListResponse(); |
5882 buildCounterPlacementGroupsListResponse++; | 5882 buildCounterPlacementGroupsListResponse++; |
5883 if (buildCounterPlacementGroupsListResponse < 3) { | 5883 if (buildCounterPlacementGroupsListResponse < 3) { |
5884 o.kind = "foo"; | 5884 o.kind = "foo"; |
5885 o.nextPageToken = "foo"; | 5885 o.nextPageToken = "foo"; |
5886 o.placementGroups = buildUnnamed2625(); | 5886 o.placementGroups = buildUnnamed2719(); |
5887 } | 5887 } |
5888 buildCounterPlacementGroupsListResponse--; | 5888 buildCounterPlacementGroupsListResponse--; |
5889 return o; | 5889 return o; |
5890 } | 5890 } |
5891 | 5891 |
5892 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { | 5892 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { |
5893 buildCounterPlacementGroupsListResponse++; | 5893 buildCounterPlacementGroupsListResponse++; |
5894 if (buildCounterPlacementGroupsListResponse < 3) { | 5894 if (buildCounterPlacementGroupsListResponse < 3) { |
5895 unittest.expect(o.kind, unittest.equals('foo')); | 5895 unittest.expect(o.kind, unittest.equals('foo')); |
5896 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5896 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
5897 checkUnnamed2625(o.placementGroups); | 5897 checkUnnamed2719(o.placementGroups); |
5898 } | 5898 } |
5899 buildCounterPlacementGroupsListResponse--; | 5899 buildCounterPlacementGroupsListResponse--; |
5900 } | 5900 } |
5901 | 5901 |
5902 buildUnnamed2626() { | 5902 buildUnnamed2720() { |
5903 var o = new core.List<api.PlacementStrategy>(); | 5903 var o = new core.List<api.PlacementStrategy>(); |
5904 o.add(buildPlacementStrategy()); | 5904 o.add(buildPlacementStrategy()); |
5905 o.add(buildPlacementStrategy()); | 5905 o.add(buildPlacementStrategy()); |
5906 return o; | 5906 return o; |
5907 } | 5907 } |
5908 | 5908 |
5909 checkUnnamed2626(core.List<api.PlacementStrategy> o) { | 5909 checkUnnamed2720(core.List<api.PlacementStrategy> o) { |
5910 unittest.expect(o, unittest.hasLength(2)); | 5910 unittest.expect(o, unittest.hasLength(2)); |
5911 checkPlacementStrategy(o[0]); | 5911 checkPlacementStrategy(o[0]); |
5912 checkPlacementStrategy(o[1]); | 5912 checkPlacementStrategy(o[1]); |
5913 } | 5913 } |
5914 | 5914 |
5915 core.int buildCounterPlacementStrategiesListResponse = 0; | 5915 core.int buildCounterPlacementStrategiesListResponse = 0; |
5916 buildPlacementStrategiesListResponse() { | 5916 buildPlacementStrategiesListResponse() { |
5917 var o = new api.PlacementStrategiesListResponse(); | 5917 var o = new api.PlacementStrategiesListResponse(); |
5918 buildCounterPlacementStrategiesListResponse++; | 5918 buildCounterPlacementStrategiesListResponse++; |
5919 if (buildCounterPlacementStrategiesListResponse < 3) { | 5919 if (buildCounterPlacementStrategiesListResponse < 3) { |
5920 o.kind = "foo"; | 5920 o.kind = "foo"; |
5921 o.nextPageToken = "foo"; | 5921 o.nextPageToken = "foo"; |
5922 o.placementStrategies = buildUnnamed2626(); | 5922 o.placementStrategies = buildUnnamed2720(); |
5923 } | 5923 } |
5924 buildCounterPlacementStrategiesListResponse--; | 5924 buildCounterPlacementStrategiesListResponse--; |
5925 return o; | 5925 return o; |
5926 } | 5926 } |
5927 | 5927 |
5928 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { | 5928 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { |
5929 buildCounterPlacementStrategiesListResponse++; | 5929 buildCounterPlacementStrategiesListResponse++; |
5930 if (buildCounterPlacementStrategiesListResponse < 3) { | 5930 if (buildCounterPlacementStrategiesListResponse < 3) { |
5931 unittest.expect(o.kind, unittest.equals('foo')); | 5931 unittest.expect(o.kind, unittest.equals('foo')); |
5932 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5932 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
5933 checkUnnamed2626(o.placementStrategies); | 5933 checkUnnamed2720(o.placementStrategies); |
5934 } | 5934 } |
5935 buildCounterPlacementStrategiesListResponse--; | 5935 buildCounterPlacementStrategiesListResponse--; |
5936 } | 5936 } |
5937 | 5937 |
5938 core.int buildCounterPlacementStrategy = 0; | 5938 core.int buildCounterPlacementStrategy = 0; |
5939 buildPlacementStrategy() { | 5939 buildPlacementStrategy() { |
5940 var o = new api.PlacementStrategy(); | 5940 var o = new api.PlacementStrategy(); |
5941 buildCounterPlacementStrategy++; | 5941 buildCounterPlacementStrategy++; |
5942 if (buildCounterPlacementStrategy < 3) { | 5942 if (buildCounterPlacementStrategy < 3) { |
5943 o.accountId = "foo"; | 5943 o.accountId = "foo"; |
5944 o.id = "foo"; | 5944 o.id = "foo"; |
5945 o.kind = "foo"; | 5945 o.kind = "foo"; |
5946 o.name = "foo"; | 5946 o.name = "foo"; |
5947 } | 5947 } |
5948 buildCounterPlacementStrategy--; | 5948 buildCounterPlacementStrategy--; |
5949 return o; | 5949 return o; |
5950 } | 5950 } |
5951 | 5951 |
5952 checkPlacementStrategy(api.PlacementStrategy o) { | 5952 checkPlacementStrategy(api.PlacementStrategy o) { |
5953 buildCounterPlacementStrategy++; | 5953 buildCounterPlacementStrategy++; |
5954 if (buildCounterPlacementStrategy < 3) { | 5954 if (buildCounterPlacementStrategy < 3) { |
5955 unittest.expect(o.accountId, unittest.equals('foo')); | 5955 unittest.expect(o.accountId, unittest.equals('foo')); |
5956 unittest.expect(o.id, unittest.equals('foo')); | 5956 unittest.expect(o.id, unittest.equals('foo')); |
5957 unittest.expect(o.kind, unittest.equals('foo')); | 5957 unittest.expect(o.kind, unittest.equals('foo')); |
5958 unittest.expect(o.name, unittest.equals('foo')); | 5958 unittest.expect(o.name, unittest.equals('foo')); |
5959 } | 5959 } |
5960 buildCounterPlacementStrategy--; | 5960 buildCounterPlacementStrategy--; |
5961 } | 5961 } |
5962 | 5962 |
5963 buildUnnamed2627() { | 5963 buildUnnamed2721() { |
5964 var o = new core.List<api.TagData>(); | 5964 var o = new core.List<api.TagData>(); |
5965 o.add(buildTagData()); | 5965 o.add(buildTagData()); |
5966 o.add(buildTagData()); | 5966 o.add(buildTagData()); |
5967 return o; | 5967 return o; |
5968 } | 5968 } |
5969 | 5969 |
5970 checkUnnamed2627(core.List<api.TagData> o) { | 5970 checkUnnamed2721(core.List<api.TagData> o) { |
5971 unittest.expect(o, unittest.hasLength(2)); | 5971 unittest.expect(o, unittest.hasLength(2)); |
5972 checkTagData(o[0]); | 5972 checkTagData(o[0]); |
5973 checkTagData(o[1]); | 5973 checkTagData(o[1]); |
5974 } | 5974 } |
5975 | 5975 |
5976 core.int buildCounterPlacementTag = 0; | 5976 core.int buildCounterPlacementTag = 0; |
5977 buildPlacementTag() { | 5977 buildPlacementTag() { |
5978 var o = new api.PlacementTag(); | 5978 var o = new api.PlacementTag(); |
5979 buildCounterPlacementTag++; | 5979 buildCounterPlacementTag++; |
5980 if (buildCounterPlacementTag < 3) { | 5980 if (buildCounterPlacementTag < 3) { |
5981 o.placementId = "foo"; | 5981 o.placementId = "foo"; |
5982 o.tagDatas = buildUnnamed2627(); | 5982 o.tagDatas = buildUnnamed2721(); |
5983 } | 5983 } |
5984 buildCounterPlacementTag--; | 5984 buildCounterPlacementTag--; |
5985 return o; | 5985 return o; |
5986 } | 5986 } |
5987 | 5987 |
5988 checkPlacementTag(api.PlacementTag o) { | 5988 checkPlacementTag(api.PlacementTag o) { |
5989 buildCounterPlacementTag++; | 5989 buildCounterPlacementTag++; |
5990 if (buildCounterPlacementTag < 3) { | 5990 if (buildCounterPlacementTag < 3) { |
5991 unittest.expect(o.placementId, unittest.equals('foo')); | 5991 unittest.expect(o.placementId, unittest.equals('foo')); |
5992 checkUnnamed2627(o.tagDatas); | 5992 checkUnnamed2721(o.tagDatas); |
5993 } | 5993 } |
5994 buildCounterPlacementTag--; | 5994 buildCounterPlacementTag--; |
5995 } | 5995 } |
5996 | 5996 |
5997 buildUnnamed2628() { | 5997 buildUnnamed2722() { |
5998 var o = new core.List<api.PlacementTag>(); | 5998 var o = new core.List<api.PlacementTag>(); |
5999 o.add(buildPlacementTag()); | 5999 o.add(buildPlacementTag()); |
6000 o.add(buildPlacementTag()); | 6000 o.add(buildPlacementTag()); |
6001 return o; | 6001 return o; |
6002 } | 6002 } |
6003 | 6003 |
6004 checkUnnamed2628(core.List<api.PlacementTag> o) { | 6004 checkUnnamed2722(core.List<api.PlacementTag> o) { |
6005 unittest.expect(o, unittest.hasLength(2)); | 6005 unittest.expect(o, unittest.hasLength(2)); |
6006 checkPlacementTag(o[0]); | 6006 checkPlacementTag(o[0]); |
6007 checkPlacementTag(o[1]); | 6007 checkPlacementTag(o[1]); |
6008 } | 6008 } |
6009 | 6009 |
6010 core.int buildCounterPlacementsGenerateTagsResponse = 0; | 6010 core.int buildCounterPlacementsGenerateTagsResponse = 0; |
6011 buildPlacementsGenerateTagsResponse() { | 6011 buildPlacementsGenerateTagsResponse() { |
6012 var o = new api.PlacementsGenerateTagsResponse(); | 6012 var o = new api.PlacementsGenerateTagsResponse(); |
6013 buildCounterPlacementsGenerateTagsResponse++; | 6013 buildCounterPlacementsGenerateTagsResponse++; |
6014 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 6014 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
6015 o.kind = "foo"; | 6015 o.kind = "foo"; |
6016 o.placementTags = buildUnnamed2628(); | 6016 o.placementTags = buildUnnamed2722(); |
6017 } | 6017 } |
6018 buildCounterPlacementsGenerateTagsResponse--; | 6018 buildCounterPlacementsGenerateTagsResponse--; |
6019 return o; | 6019 return o; |
6020 } | 6020 } |
6021 | 6021 |
6022 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { | 6022 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { |
6023 buildCounterPlacementsGenerateTagsResponse++; | 6023 buildCounterPlacementsGenerateTagsResponse++; |
6024 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 6024 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
6025 unittest.expect(o.kind, unittest.equals('foo')); | 6025 unittest.expect(o.kind, unittest.equals('foo')); |
6026 checkUnnamed2628(o.placementTags); | 6026 checkUnnamed2722(o.placementTags); |
6027 } | 6027 } |
6028 buildCounterPlacementsGenerateTagsResponse--; | 6028 buildCounterPlacementsGenerateTagsResponse--; |
6029 } | 6029 } |
6030 | 6030 |
6031 buildUnnamed2629() { | 6031 buildUnnamed2723() { |
6032 var o = new core.List<api.Placement>(); | 6032 var o = new core.List<api.Placement>(); |
6033 o.add(buildPlacement()); | 6033 o.add(buildPlacement()); |
6034 o.add(buildPlacement()); | 6034 o.add(buildPlacement()); |
6035 return o; | 6035 return o; |
6036 } | 6036 } |
6037 | 6037 |
6038 checkUnnamed2629(core.List<api.Placement> o) { | 6038 checkUnnamed2723(core.List<api.Placement> o) { |
6039 unittest.expect(o, unittest.hasLength(2)); | 6039 unittest.expect(o, unittest.hasLength(2)); |
6040 checkPlacement(o[0]); | 6040 checkPlacement(o[0]); |
6041 checkPlacement(o[1]); | 6041 checkPlacement(o[1]); |
6042 } | 6042 } |
6043 | 6043 |
6044 core.int buildCounterPlacementsListResponse = 0; | 6044 core.int buildCounterPlacementsListResponse = 0; |
6045 buildPlacementsListResponse() { | 6045 buildPlacementsListResponse() { |
6046 var o = new api.PlacementsListResponse(); | 6046 var o = new api.PlacementsListResponse(); |
6047 buildCounterPlacementsListResponse++; | 6047 buildCounterPlacementsListResponse++; |
6048 if (buildCounterPlacementsListResponse < 3) { | 6048 if (buildCounterPlacementsListResponse < 3) { |
6049 o.kind = "foo"; | 6049 o.kind = "foo"; |
6050 o.nextPageToken = "foo"; | 6050 o.nextPageToken = "foo"; |
6051 o.placements = buildUnnamed2629(); | 6051 o.placements = buildUnnamed2723(); |
6052 } | 6052 } |
6053 buildCounterPlacementsListResponse--; | 6053 buildCounterPlacementsListResponse--; |
6054 return o; | 6054 return o; |
6055 } | 6055 } |
6056 | 6056 |
6057 checkPlacementsListResponse(api.PlacementsListResponse o) { | 6057 checkPlacementsListResponse(api.PlacementsListResponse o) { |
6058 buildCounterPlacementsListResponse++; | 6058 buildCounterPlacementsListResponse++; |
6059 if (buildCounterPlacementsListResponse < 3) { | 6059 if (buildCounterPlacementsListResponse < 3) { |
6060 unittest.expect(o.kind, unittest.equals('foo')); | 6060 unittest.expect(o.kind, unittest.equals('foo')); |
6061 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6061 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
6062 checkUnnamed2629(o.placements); | 6062 checkUnnamed2723(o.placements); |
6063 } | 6063 } |
6064 buildCounterPlacementsListResponse--; | 6064 buildCounterPlacementsListResponse--; |
6065 } | 6065 } |
6066 | 6066 |
6067 core.int buildCounterPlatformType = 0; | 6067 core.int buildCounterPlatformType = 0; |
6068 buildPlatformType() { | 6068 buildPlatformType() { |
6069 var o = new api.PlatformType(); | 6069 var o = new api.PlatformType(); |
6070 buildCounterPlatformType++; | 6070 buildCounterPlatformType++; |
6071 if (buildCounterPlatformType < 3) { | 6071 if (buildCounterPlatformType < 3) { |
6072 o.id = "foo"; | 6072 o.id = "foo"; |
6073 o.kind = "foo"; | 6073 o.kind = "foo"; |
6074 o.name = "foo"; | 6074 o.name = "foo"; |
6075 } | 6075 } |
6076 buildCounterPlatformType--; | 6076 buildCounterPlatformType--; |
6077 return o; | 6077 return o; |
6078 } | 6078 } |
6079 | 6079 |
6080 checkPlatformType(api.PlatformType o) { | 6080 checkPlatformType(api.PlatformType o) { |
6081 buildCounterPlatformType++; | 6081 buildCounterPlatformType++; |
6082 if (buildCounterPlatformType < 3) { | 6082 if (buildCounterPlatformType < 3) { |
6083 unittest.expect(o.id, unittest.equals('foo')); | 6083 unittest.expect(o.id, unittest.equals('foo')); |
6084 unittest.expect(o.kind, unittest.equals('foo')); | 6084 unittest.expect(o.kind, unittest.equals('foo')); |
6085 unittest.expect(o.name, unittest.equals('foo')); | 6085 unittest.expect(o.name, unittest.equals('foo')); |
6086 } | 6086 } |
6087 buildCounterPlatformType--; | 6087 buildCounterPlatformType--; |
6088 } | 6088 } |
6089 | 6089 |
6090 buildUnnamed2630() { | 6090 buildUnnamed2724() { |
6091 var o = new core.List<api.PlatformType>(); | 6091 var o = new core.List<api.PlatformType>(); |
6092 o.add(buildPlatformType()); | 6092 o.add(buildPlatformType()); |
6093 o.add(buildPlatformType()); | 6093 o.add(buildPlatformType()); |
6094 return o; | 6094 return o; |
6095 } | 6095 } |
6096 | 6096 |
6097 checkUnnamed2630(core.List<api.PlatformType> o) { | 6097 checkUnnamed2724(core.List<api.PlatformType> o) { |
6098 unittest.expect(o, unittest.hasLength(2)); | 6098 unittest.expect(o, unittest.hasLength(2)); |
6099 checkPlatformType(o[0]); | 6099 checkPlatformType(o[0]); |
6100 checkPlatformType(o[1]); | 6100 checkPlatformType(o[1]); |
6101 } | 6101 } |
6102 | 6102 |
6103 core.int buildCounterPlatformTypesListResponse = 0; | 6103 core.int buildCounterPlatformTypesListResponse = 0; |
6104 buildPlatformTypesListResponse() { | 6104 buildPlatformTypesListResponse() { |
6105 var o = new api.PlatformTypesListResponse(); | 6105 var o = new api.PlatformTypesListResponse(); |
6106 buildCounterPlatformTypesListResponse++; | 6106 buildCounterPlatformTypesListResponse++; |
6107 if (buildCounterPlatformTypesListResponse < 3) { | 6107 if (buildCounterPlatformTypesListResponse < 3) { |
6108 o.kind = "foo"; | 6108 o.kind = "foo"; |
6109 o.platformTypes = buildUnnamed2630(); | 6109 o.platformTypes = buildUnnamed2724(); |
6110 } | 6110 } |
6111 buildCounterPlatformTypesListResponse--; | 6111 buildCounterPlatformTypesListResponse--; |
6112 return o; | 6112 return o; |
6113 } | 6113 } |
6114 | 6114 |
6115 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { | 6115 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { |
6116 buildCounterPlatformTypesListResponse++; | 6116 buildCounterPlatformTypesListResponse++; |
6117 if (buildCounterPlatformTypesListResponse < 3) { | 6117 if (buildCounterPlatformTypesListResponse < 3) { |
6118 unittest.expect(o.kind, unittest.equals('foo')); | 6118 unittest.expect(o.kind, unittest.equals('foo')); |
6119 checkUnnamed2630(o.platformTypes); | 6119 checkUnnamed2724(o.platformTypes); |
6120 } | 6120 } |
6121 buildCounterPlatformTypesListResponse--; | 6121 buildCounterPlatformTypesListResponse--; |
6122 } | 6122 } |
6123 | 6123 |
6124 core.int buildCounterPopupWindowProperties = 0; | 6124 core.int buildCounterPopupWindowProperties = 0; |
6125 buildPopupWindowProperties() { | 6125 buildPopupWindowProperties() { |
6126 var o = new api.PopupWindowProperties(); | 6126 var o = new api.PopupWindowProperties(); |
6127 buildCounterPopupWindowProperties++; | 6127 buildCounterPopupWindowProperties++; |
6128 if (buildCounterPopupWindowProperties < 3) { | 6128 if (buildCounterPopupWindowProperties < 3) { |
6129 o.dimension = buildSize(); | 6129 o.dimension = buildSize(); |
(...skipping 46 matching lines...) Loading... |
6176 if (buildCounterPostalCode < 3) { | 6176 if (buildCounterPostalCode < 3) { |
6177 unittest.expect(o.code, unittest.equals('foo')); | 6177 unittest.expect(o.code, unittest.equals('foo')); |
6178 unittest.expect(o.countryCode, unittest.equals('foo')); | 6178 unittest.expect(o.countryCode, unittest.equals('foo')); |
6179 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6179 unittest.expect(o.countryDartId, unittest.equals('foo')); |
6180 unittest.expect(o.id, unittest.equals('foo')); | 6180 unittest.expect(o.id, unittest.equals('foo')); |
6181 unittest.expect(o.kind, unittest.equals('foo')); | 6181 unittest.expect(o.kind, unittest.equals('foo')); |
6182 } | 6182 } |
6183 buildCounterPostalCode--; | 6183 buildCounterPostalCode--; |
6184 } | 6184 } |
6185 | 6185 |
6186 buildUnnamed2631() { | 6186 buildUnnamed2725() { |
6187 var o = new core.List<api.PostalCode>(); | 6187 var o = new core.List<api.PostalCode>(); |
6188 o.add(buildPostalCode()); | 6188 o.add(buildPostalCode()); |
6189 o.add(buildPostalCode()); | 6189 o.add(buildPostalCode()); |
6190 return o; | 6190 return o; |
6191 } | 6191 } |
6192 | 6192 |
6193 checkUnnamed2631(core.List<api.PostalCode> o) { | 6193 checkUnnamed2725(core.List<api.PostalCode> o) { |
6194 unittest.expect(o, unittest.hasLength(2)); | 6194 unittest.expect(o, unittest.hasLength(2)); |
6195 checkPostalCode(o[0]); | 6195 checkPostalCode(o[0]); |
6196 checkPostalCode(o[1]); | 6196 checkPostalCode(o[1]); |
6197 } | 6197 } |
6198 | 6198 |
6199 core.int buildCounterPostalCodesListResponse = 0; | 6199 core.int buildCounterPostalCodesListResponse = 0; |
6200 buildPostalCodesListResponse() { | 6200 buildPostalCodesListResponse() { |
6201 var o = new api.PostalCodesListResponse(); | 6201 var o = new api.PostalCodesListResponse(); |
6202 buildCounterPostalCodesListResponse++; | 6202 buildCounterPostalCodesListResponse++; |
6203 if (buildCounterPostalCodesListResponse < 3) { | 6203 if (buildCounterPostalCodesListResponse < 3) { |
6204 o.kind = "foo"; | 6204 o.kind = "foo"; |
6205 o.postalCodes = buildUnnamed2631(); | 6205 o.postalCodes = buildUnnamed2725(); |
6206 } | 6206 } |
6207 buildCounterPostalCodesListResponse--; | 6207 buildCounterPostalCodesListResponse--; |
6208 return o; | 6208 return o; |
6209 } | 6209 } |
6210 | 6210 |
6211 checkPostalCodesListResponse(api.PostalCodesListResponse o) { | 6211 checkPostalCodesListResponse(api.PostalCodesListResponse o) { |
6212 buildCounterPostalCodesListResponse++; | 6212 buildCounterPostalCodesListResponse++; |
6213 if (buildCounterPostalCodesListResponse < 3) { | 6213 if (buildCounterPostalCodesListResponse < 3) { |
6214 unittest.expect(o.kind, unittest.equals('foo')); | 6214 unittest.expect(o.kind, unittest.equals('foo')); |
6215 checkUnnamed2631(o.postalCodes); | 6215 checkUnnamed2725(o.postalCodes); |
6216 } | 6216 } |
6217 buildCounterPostalCodesListResponse--; | 6217 buildCounterPostalCodesListResponse--; |
6218 } | 6218 } |
6219 | 6219 |
6220 buildUnnamed2632() { | 6220 buildUnnamed2726() { |
6221 var o = new core.List<api.Flight>(); | 6221 var o = new core.List<api.Flight>(); |
6222 o.add(buildFlight()); | 6222 o.add(buildFlight()); |
6223 o.add(buildFlight()); | 6223 o.add(buildFlight()); |
6224 return o; | 6224 return o; |
6225 } | 6225 } |
6226 | 6226 |
6227 checkUnnamed2632(core.List<api.Flight> o) { | 6227 checkUnnamed2726(core.List<api.Flight> o) { |
6228 unittest.expect(o, unittest.hasLength(2)); | 6228 unittest.expect(o, unittest.hasLength(2)); |
6229 checkFlight(o[0]); | 6229 checkFlight(o[0]); |
6230 checkFlight(o[1]); | 6230 checkFlight(o[1]); |
6231 } | 6231 } |
6232 | 6232 |
6233 core.int buildCounterPricing = 0; | 6233 core.int buildCounterPricing = 0; |
6234 buildPricing() { | 6234 buildPricing() { |
6235 var o = new api.Pricing(); | 6235 var o = new api.Pricing(); |
6236 buildCounterPricing++; | 6236 buildCounterPricing++; |
6237 if (buildCounterPricing < 3) { | 6237 if (buildCounterPricing < 3) { |
6238 o.capCostType = "foo"; | 6238 o.capCostType = "foo"; |
6239 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6239 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
6240 o.flights = buildUnnamed2632(); | 6240 o.flights = buildUnnamed2726(); |
6241 o.groupType = "foo"; | 6241 o.groupType = "foo"; |
6242 o.pricingType = "foo"; | 6242 o.pricingType = "foo"; |
6243 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6243 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
6244 } | 6244 } |
6245 buildCounterPricing--; | 6245 buildCounterPricing--; |
6246 return o; | 6246 return o; |
6247 } | 6247 } |
6248 | 6248 |
6249 checkPricing(api.Pricing o) { | 6249 checkPricing(api.Pricing o) { |
6250 buildCounterPricing++; | 6250 buildCounterPricing++; |
6251 if (buildCounterPricing < 3) { | 6251 if (buildCounterPricing < 3) { |
6252 unittest.expect(o.capCostType, unittest.equals('foo')); | 6252 unittest.expect(o.capCostType, unittest.equals('foo')); |
6253 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 6253 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
6254 checkUnnamed2632(o.flights); | 6254 checkUnnamed2726(o.flights); |
6255 unittest.expect(o.groupType, unittest.equals('foo')); | 6255 unittest.expect(o.groupType, unittest.equals('foo')); |
6256 unittest.expect(o.pricingType, unittest.equals('foo')); | 6256 unittest.expect(o.pricingType, unittest.equals('foo')); |
6257 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6257 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
6258 } | 6258 } |
6259 buildCounterPricing--; | 6259 buildCounterPricing--; |
6260 } | 6260 } |
6261 | 6261 |
6262 buildUnnamed2633() { | 6262 buildUnnamed2727() { |
6263 var o = new core.List<api.PricingSchedulePricingPeriod>(); | 6263 var o = new core.List<api.PricingSchedulePricingPeriod>(); |
6264 o.add(buildPricingSchedulePricingPeriod()); | 6264 o.add(buildPricingSchedulePricingPeriod()); |
6265 o.add(buildPricingSchedulePricingPeriod()); | 6265 o.add(buildPricingSchedulePricingPeriod()); |
6266 return o; | 6266 return o; |
6267 } | 6267 } |
6268 | 6268 |
6269 checkUnnamed2633(core.List<api.PricingSchedulePricingPeriod> o) { | 6269 checkUnnamed2727(core.List<api.PricingSchedulePricingPeriod> o) { |
6270 unittest.expect(o, unittest.hasLength(2)); | 6270 unittest.expect(o, unittest.hasLength(2)); |
6271 checkPricingSchedulePricingPeriod(o[0]); | 6271 checkPricingSchedulePricingPeriod(o[0]); |
6272 checkPricingSchedulePricingPeriod(o[1]); | 6272 checkPricingSchedulePricingPeriod(o[1]); |
6273 } | 6273 } |
6274 | 6274 |
6275 core.int buildCounterPricingSchedule = 0; | 6275 core.int buildCounterPricingSchedule = 0; |
6276 buildPricingSchedule() { | 6276 buildPricingSchedule() { |
6277 var o = new api.PricingSchedule(); | 6277 var o = new api.PricingSchedule(); |
6278 buildCounterPricingSchedule++; | 6278 buildCounterPricingSchedule++; |
6279 if (buildCounterPricingSchedule < 3) { | 6279 if (buildCounterPricingSchedule < 3) { |
6280 o.capCostOption = "foo"; | 6280 o.capCostOption = "foo"; |
6281 o.disregardOverdelivery = true; | 6281 o.disregardOverdelivery = true; |
6282 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6282 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
6283 o.flighted = true; | 6283 o.flighted = true; |
6284 o.floodlightActivityId = "foo"; | 6284 o.floodlightActivityId = "foo"; |
6285 o.pricingPeriods = buildUnnamed2633(); | 6285 o.pricingPeriods = buildUnnamed2727(); |
6286 o.pricingType = "foo"; | 6286 o.pricingType = "foo"; |
6287 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6287 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
6288 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6288 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
6289 } | 6289 } |
6290 buildCounterPricingSchedule--; | 6290 buildCounterPricingSchedule--; |
6291 return o; | 6291 return o; |
6292 } | 6292 } |
6293 | 6293 |
6294 checkPricingSchedule(api.PricingSchedule o) { | 6294 checkPricingSchedule(api.PricingSchedule o) { |
6295 buildCounterPricingSchedule++; | 6295 buildCounterPricingSchedule++; |
6296 if (buildCounterPricingSchedule < 3) { | 6296 if (buildCounterPricingSchedule < 3) { |
6297 unittest.expect(o.capCostOption, unittest.equals('foo')); | 6297 unittest.expect(o.capCostOption, unittest.equals('foo')); |
6298 unittest.expect(o.disregardOverdelivery, unittest.isTrue); | 6298 unittest.expect(o.disregardOverdelivery, unittest.isTrue); |
6299 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 6299 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
6300 unittest.expect(o.flighted, unittest.isTrue); | 6300 unittest.expect(o.flighted, unittest.isTrue); |
6301 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 6301 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
6302 checkUnnamed2633(o.pricingPeriods); | 6302 checkUnnamed2727(o.pricingPeriods); |
6303 unittest.expect(o.pricingType, unittest.equals('foo')); | 6303 unittest.expect(o.pricingType, unittest.equals('foo')); |
6304 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6304 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
6305 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); | 6305 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); |
6306 } | 6306 } |
6307 buildCounterPricingSchedule--; | 6307 buildCounterPricingSchedule--; |
6308 } | 6308 } |
6309 | 6309 |
6310 core.int buildCounterPricingSchedulePricingPeriod = 0; | 6310 core.int buildCounterPricingSchedulePricingPeriod = 0; |
6311 buildPricingSchedulePricingPeriod() { | 6311 buildPricingSchedulePricingPeriod() { |
6312 var o = new api.PricingSchedulePricingPeriod(); | 6312 var o = new api.PricingSchedulePricingPeriod(); |
(...skipping 75 matching lines...) Loading... |
6388 unittest.expect(o.targetConversions, unittest.equals('foo')); | 6388 unittest.expect(o.targetConversions, unittest.equals('foo')); |
6389 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); | 6389 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); |
6390 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); | 6390 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); |
6391 unittest.expect(o.targetCpmActiveViewNanos, unittest.equals('foo')); | 6391 unittest.expect(o.targetCpmActiveViewNanos, unittest.equals('foo')); |
6392 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); | 6392 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); |
6393 unittest.expect(o.targetImpressions, unittest.equals('foo')); | 6393 unittest.expect(o.targetImpressions, unittest.equals('foo')); |
6394 } | 6394 } |
6395 buildCounterProject--; | 6395 buildCounterProject--; |
6396 } | 6396 } |
6397 | 6397 |
6398 buildUnnamed2634() { | 6398 buildUnnamed2728() { |
6399 var o = new core.List<api.Project>(); | 6399 var o = new core.List<api.Project>(); |
6400 o.add(buildProject()); | 6400 o.add(buildProject()); |
6401 o.add(buildProject()); | 6401 o.add(buildProject()); |
6402 return o; | 6402 return o; |
6403 } | 6403 } |
6404 | 6404 |
6405 checkUnnamed2634(core.List<api.Project> o) { | 6405 checkUnnamed2728(core.List<api.Project> o) { |
6406 unittest.expect(o, unittest.hasLength(2)); | 6406 unittest.expect(o, unittest.hasLength(2)); |
6407 checkProject(o[0]); | 6407 checkProject(o[0]); |
6408 checkProject(o[1]); | 6408 checkProject(o[1]); |
6409 } | 6409 } |
6410 | 6410 |
6411 core.int buildCounterProjectsListResponse = 0; | 6411 core.int buildCounterProjectsListResponse = 0; |
6412 buildProjectsListResponse() { | 6412 buildProjectsListResponse() { |
6413 var o = new api.ProjectsListResponse(); | 6413 var o = new api.ProjectsListResponse(); |
6414 buildCounterProjectsListResponse++; | 6414 buildCounterProjectsListResponse++; |
6415 if (buildCounterProjectsListResponse < 3) { | 6415 if (buildCounterProjectsListResponse < 3) { |
6416 o.kind = "foo"; | 6416 o.kind = "foo"; |
6417 o.nextPageToken = "foo"; | 6417 o.nextPageToken = "foo"; |
6418 o.projects = buildUnnamed2634(); | 6418 o.projects = buildUnnamed2728(); |
6419 } | 6419 } |
6420 buildCounterProjectsListResponse--; | 6420 buildCounterProjectsListResponse--; |
6421 return o; | 6421 return o; |
6422 } | 6422 } |
6423 | 6423 |
6424 checkProjectsListResponse(api.ProjectsListResponse o) { | 6424 checkProjectsListResponse(api.ProjectsListResponse o) { |
6425 buildCounterProjectsListResponse++; | 6425 buildCounterProjectsListResponse++; |
6426 if (buildCounterProjectsListResponse < 3) { | 6426 if (buildCounterProjectsListResponse < 3) { |
6427 unittest.expect(o.kind, unittest.equals('foo')); | 6427 unittest.expect(o.kind, unittest.equals('foo')); |
6428 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6428 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
6429 checkUnnamed2634(o.projects); | 6429 checkUnnamed2728(o.projects); |
6430 } | 6430 } |
6431 buildCounterProjectsListResponse--; | 6431 buildCounterProjectsListResponse--; |
6432 } | 6432 } |
6433 | 6433 |
6434 buildUnnamed2635() { | 6434 buildUnnamed2729() { |
6435 var o = new core.List<api.Dimension>(); | 6435 var o = new core.List<api.Dimension>(); |
6436 o.add(buildDimension()); | 6436 o.add(buildDimension()); |
6437 o.add(buildDimension()); | 6437 o.add(buildDimension()); |
6438 return o; | 6438 return o; |
6439 } | 6439 } |
6440 | 6440 |
6441 checkUnnamed2635(core.List<api.Dimension> o) { | 6441 checkUnnamed2729(core.List<api.Dimension> o) { |
6442 unittest.expect(o, unittest.hasLength(2)); | 6442 unittest.expect(o, unittest.hasLength(2)); |
6443 checkDimension(o[0]); | 6443 checkDimension(o[0]); |
6444 checkDimension(o[1]); | 6444 checkDimension(o[1]); |
6445 } | 6445 } |
6446 | 6446 |
6447 buildUnnamed2636() { | 6447 buildUnnamed2730() { |
6448 var o = new core.List<api.Dimension>(); | 6448 var o = new core.List<api.Dimension>(); |
6449 o.add(buildDimension()); | 6449 o.add(buildDimension()); |
6450 o.add(buildDimension()); | 6450 o.add(buildDimension()); |
6451 return o; | 6451 return o; |
6452 } | 6452 } |
6453 | 6453 |
6454 checkUnnamed2636(core.List<api.Dimension> o) { | 6454 checkUnnamed2730(core.List<api.Dimension> o) { |
6455 unittest.expect(o, unittest.hasLength(2)); | 6455 unittest.expect(o, unittest.hasLength(2)); |
6456 checkDimension(o[0]); | 6456 checkDimension(o[0]); |
6457 checkDimension(o[1]); | 6457 checkDimension(o[1]); |
6458 } | 6458 } |
6459 | 6459 |
6460 buildUnnamed2637() { | 6460 buildUnnamed2731() { |
6461 var o = new core.List<api.Metric>(); | 6461 var o = new core.List<api.Metric>(); |
6462 o.add(buildMetric()); | 6462 o.add(buildMetric()); |
6463 o.add(buildMetric()); | 6463 o.add(buildMetric()); |
6464 return o; | 6464 return o; |
6465 } | 6465 } |
6466 | 6466 |
6467 checkUnnamed2637(core.List<api.Metric> o) { | 6467 checkUnnamed2731(core.List<api.Metric> o) { |
6468 unittest.expect(o, unittest.hasLength(2)); | 6468 unittest.expect(o, unittest.hasLength(2)); |
6469 checkMetric(o[0]); | 6469 checkMetric(o[0]); |
6470 checkMetric(o[1]); | 6470 checkMetric(o[1]); |
6471 } | 6471 } |
6472 | 6472 |
6473 buildUnnamed2638() { | 6473 buildUnnamed2732() { |
6474 var o = new core.List<api.Metric>(); | 6474 var o = new core.List<api.Metric>(); |
6475 o.add(buildMetric()); | 6475 o.add(buildMetric()); |
6476 o.add(buildMetric()); | 6476 o.add(buildMetric()); |
6477 return o; | 6477 return o; |
6478 } | 6478 } |
6479 | 6479 |
6480 checkUnnamed2638(core.List<api.Metric> o) { | 6480 checkUnnamed2732(core.List<api.Metric> o) { |
6481 unittest.expect(o, unittest.hasLength(2)); | 6481 unittest.expect(o, unittest.hasLength(2)); |
6482 checkMetric(o[0]); | 6482 checkMetric(o[0]); |
6483 checkMetric(o[1]); | 6483 checkMetric(o[1]); |
6484 } | 6484 } |
6485 | 6485 |
6486 buildUnnamed2639() { | 6486 buildUnnamed2733() { |
6487 var o = new core.List<api.Metric>(); | 6487 var o = new core.List<api.Metric>(); |
6488 o.add(buildMetric()); | 6488 o.add(buildMetric()); |
6489 o.add(buildMetric()); | 6489 o.add(buildMetric()); |
6490 return o; | 6490 return o; |
6491 } | 6491 } |
6492 | 6492 |
6493 checkUnnamed2639(core.List<api.Metric> o) { | 6493 checkUnnamed2733(core.List<api.Metric> o) { |
6494 unittest.expect(o, unittest.hasLength(2)); | 6494 unittest.expect(o, unittest.hasLength(2)); |
6495 checkMetric(o[0]); | 6495 checkMetric(o[0]); |
6496 checkMetric(o[1]); | 6496 checkMetric(o[1]); |
6497 } | 6497 } |
6498 | 6498 |
6499 core.int buildCounterReachReportCompatibleFields = 0; | 6499 core.int buildCounterReachReportCompatibleFields = 0; |
6500 buildReachReportCompatibleFields() { | 6500 buildReachReportCompatibleFields() { |
6501 var o = new api.ReachReportCompatibleFields(); | 6501 var o = new api.ReachReportCompatibleFields(); |
6502 buildCounterReachReportCompatibleFields++; | 6502 buildCounterReachReportCompatibleFields++; |
6503 if (buildCounterReachReportCompatibleFields < 3) { | 6503 if (buildCounterReachReportCompatibleFields < 3) { |
6504 o.dimensionFilters = buildUnnamed2635(); | 6504 o.dimensionFilters = buildUnnamed2729(); |
6505 o.dimensions = buildUnnamed2636(); | 6505 o.dimensions = buildUnnamed2730(); |
6506 o.kind = "foo"; | 6506 o.kind = "foo"; |
6507 o.metrics = buildUnnamed2637(); | 6507 o.metrics = buildUnnamed2731(); |
6508 o.pivotedActivityMetrics = buildUnnamed2638(); | 6508 o.pivotedActivityMetrics = buildUnnamed2732(); |
6509 o.reachByFrequencyMetrics = buildUnnamed2639(); | 6509 o.reachByFrequencyMetrics = buildUnnamed2733(); |
6510 } | 6510 } |
6511 buildCounterReachReportCompatibleFields--; | 6511 buildCounterReachReportCompatibleFields--; |
6512 return o; | 6512 return o; |
6513 } | 6513 } |
6514 | 6514 |
6515 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { | 6515 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { |
6516 buildCounterReachReportCompatibleFields++; | 6516 buildCounterReachReportCompatibleFields++; |
6517 if (buildCounterReachReportCompatibleFields < 3) { | 6517 if (buildCounterReachReportCompatibleFields < 3) { |
6518 checkUnnamed2635(o.dimensionFilters); | 6518 checkUnnamed2729(o.dimensionFilters); |
6519 checkUnnamed2636(o.dimensions); | 6519 checkUnnamed2730(o.dimensions); |
6520 unittest.expect(o.kind, unittest.equals('foo')); | 6520 unittest.expect(o.kind, unittest.equals('foo')); |
6521 checkUnnamed2637(o.metrics); | 6521 checkUnnamed2731(o.metrics); |
6522 checkUnnamed2638(o.pivotedActivityMetrics); | 6522 checkUnnamed2732(o.pivotedActivityMetrics); |
6523 checkUnnamed2639(o.reachByFrequencyMetrics); | 6523 checkUnnamed2733(o.reachByFrequencyMetrics); |
6524 } | 6524 } |
6525 buildCounterReachReportCompatibleFields--; | 6525 buildCounterReachReportCompatibleFields--; |
6526 } | 6526 } |
6527 | 6527 |
6528 core.int buildCounterRecipient = 0; | 6528 core.int buildCounterRecipient = 0; |
6529 buildRecipient() { | 6529 buildRecipient() { |
6530 var o = new api.Recipient(); | 6530 var o = new api.Recipient(); |
6531 buildCounterRecipient++; | 6531 buildCounterRecipient++; |
6532 if (buildCounterRecipient < 3) { | 6532 if (buildCounterRecipient < 3) { |
6533 o.deliveryType = "foo"; | 6533 o.deliveryType = "foo"; |
(...skipping 36 matching lines...) Loading... |
6570 unittest.expect(o.countryCode, unittest.equals('foo')); | 6570 unittest.expect(o.countryCode, unittest.equals('foo')); |
6571 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6571 unittest.expect(o.countryDartId, unittest.equals('foo')); |
6572 unittest.expect(o.dartId, unittest.equals('foo')); | 6572 unittest.expect(o.dartId, unittest.equals('foo')); |
6573 unittest.expect(o.kind, unittest.equals('foo')); | 6573 unittest.expect(o.kind, unittest.equals('foo')); |
6574 unittest.expect(o.name, unittest.equals('foo')); | 6574 unittest.expect(o.name, unittest.equals('foo')); |
6575 unittest.expect(o.regionCode, unittest.equals('foo')); | 6575 unittest.expect(o.regionCode, unittest.equals('foo')); |
6576 } | 6576 } |
6577 buildCounterRegion--; | 6577 buildCounterRegion--; |
6578 } | 6578 } |
6579 | 6579 |
6580 buildUnnamed2640() { | 6580 buildUnnamed2734() { |
6581 var o = new core.List<api.Region>(); | 6581 var o = new core.List<api.Region>(); |
6582 o.add(buildRegion()); | 6582 o.add(buildRegion()); |
6583 o.add(buildRegion()); | 6583 o.add(buildRegion()); |
6584 return o; | 6584 return o; |
6585 } | 6585 } |
6586 | 6586 |
6587 checkUnnamed2640(core.List<api.Region> o) { | 6587 checkUnnamed2734(core.List<api.Region> o) { |
6588 unittest.expect(o, unittest.hasLength(2)); | 6588 unittest.expect(o, unittest.hasLength(2)); |
6589 checkRegion(o[0]); | 6589 checkRegion(o[0]); |
6590 checkRegion(o[1]); | 6590 checkRegion(o[1]); |
6591 } | 6591 } |
6592 | 6592 |
6593 core.int buildCounterRegionsListResponse = 0; | 6593 core.int buildCounterRegionsListResponse = 0; |
6594 buildRegionsListResponse() { | 6594 buildRegionsListResponse() { |
6595 var o = new api.RegionsListResponse(); | 6595 var o = new api.RegionsListResponse(); |
6596 buildCounterRegionsListResponse++; | 6596 buildCounterRegionsListResponse++; |
6597 if (buildCounterRegionsListResponse < 3) { | 6597 if (buildCounterRegionsListResponse < 3) { |
6598 o.kind = "foo"; | 6598 o.kind = "foo"; |
6599 o.regions = buildUnnamed2640(); | 6599 o.regions = buildUnnamed2734(); |
6600 } | 6600 } |
6601 buildCounterRegionsListResponse--; | 6601 buildCounterRegionsListResponse--; |
6602 return o; | 6602 return o; |
6603 } | 6603 } |
6604 | 6604 |
6605 checkRegionsListResponse(api.RegionsListResponse o) { | 6605 checkRegionsListResponse(api.RegionsListResponse o) { |
6606 buildCounterRegionsListResponse++; | 6606 buildCounterRegionsListResponse++; |
6607 if (buildCounterRegionsListResponse < 3) { | 6607 if (buildCounterRegionsListResponse < 3) { |
6608 unittest.expect(o.kind, unittest.equals('foo')); | 6608 unittest.expect(o.kind, unittest.equals('foo')); |
6609 checkUnnamed2640(o.regions); | 6609 checkUnnamed2734(o.regions); |
6610 } | 6610 } |
6611 buildCounterRegionsListResponse--; | 6611 buildCounterRegionsListResponse--; |
6612 } | 6612 } |
6613 | 6613 |
6614 core.int buildCounterRemarketingList = 0; | 6614 core.int buildCounterRemarketingList = 0; |
6615 buildRemarketingList() { | 6615 buildRemarketingList() { |
6616 var o = new api.RemarketingList(); | 6616 var o = new api.RemarketingList(); |
6617 buildCounterRemarketingList++; | 6617 buildCounterRemarketingList++; |
6618 if (buildCounterRemarketingList < 3) { | 6618 if (buildCounterRemarketingList < 3) { |
6619 o.accountId = "foo"; | 6619 o.accountId = "foo"; |
(...skipping 27 matching lines...) Loading... |
6647 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 6647 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
6648 checkListPopulationRule(o.listPopulationRule); | 6648 checkListPopulationRule(o.listPopulationRule); |
6649 unittest.expect(o.listSize, unittest.equals('foo')); | 6649 unittest.expect(o.listSize, unittest.equals('foo')); |
6650 unittest.expect(o.listSource, unittest.equals('foo')); | 6650 unittest.expect(o.listSource, unittest.equals('foo')); |
6651 unittest.expect(o.name, unittest.equals('foo')); | 6651 unittest.expect(o.name, unittest.equals('foo')); |
6652 unittest.expect(o.subaccountId, unittest.equals('foo')); | 6652 unittest.expect(o.subaccountId, unittest.equals('foo')); |
6653 } | 6653 } |
6654 buildCounterRemarketingList--; | 6654 buildCounterRemarketingList--; |
6655 } | 6655 } |
6656 | 6656 |
6657 buildUnnamed2641() { | 6657 buildUnnamed2735() { |
6658 var o = new core.List<core.String>(); | 6658 var o = new core.List<core.String>(); |
6659 o.add("foo"); | 6659 o.add("foo"); |
6660 o.add("foo"); | 6660 o.add("foo"); |
6661 return o; | 6661 return o; |
6662 } | 6662 } |
6663 | 6663 |
6664 checkUnnamed2641(core.List<core.String> o) { | 6664 checkUnnamed2735(core.List<core.String> o) { |
6665 unittest.expect(o, unittest.hasLength(2)); | 6665 unittest.expect(o, unittest.hasLength(2)); |
6666 unittest.expect(o[0], unittest.equals('foo')); | 6666 unittest.expect(o[0], unittest.equals('foo')); |
6667 unittest.expect(o[1], unittest.equals('foo')); | 6667 unittest.expect(o[1], unittest.equals('foo')); |
6668 } | 6668 } |
6669 | 6669 |
6670 buildUnnamed2642() { | 6670 buildUnnamed2736() { |
6671 var o = new core.List<core.String>(); | 6671 var o = new core.List<core.String>(); |
6672 o.add("foo"); | 6672 o.add("foo"); |
6673 o.add("foo"); | 6673 o.add("foo"); |
6674 return o; | 6674 return o; |
6675 } | 6675 } |
6676 | 6676 |
6677 checkUnnamed2642(core.List<core.String> o) { | 6677 checkUnnamed2736(core.List<core.String> o) { |
6678 unittest.expect(o, unittest.hasLength(2)); | 6678 unittest.expect(o, unittest.hasLength(2)); |
6679 unittest.expect(o[0], unittest.equals('foo')); | 6679 unittest.expect(o[0], unittest.equals('foo')); |
6680 unittest.expect(o[1], unittest.equals('foo')); | 6680 unittest.expect(o[1], unittest.equals('foo')); |
6681 } | 6681 } |
6682 | 6682 |
6683 core.int buildCounterRemarketingListShare = 0; | 6683 core.int buildCounterRemarketingListShare = 0; |
6684 buildRemarketingListShare() { | 6684 buildRemarketingListShare() { |
6685 var o = new api.RemarketingListShare(); | 6685 var o = new api.RemarketingListShare(); |
6686 buildCounterRemarketingListShare++; | 6686 buildCounterRemarketingListShare++; |
6687 if (buildCounterRemarketingListShare < 3) { | 6687 if (buildCounterRemarketingListShare < 3) { |
6688 o.kind = "foo"; | 6688 o.kind = "foo"; |
6689 o.remarketingListId = "foo"; | 6689 o.remarketingListId = "foo"; |
6690 o.sharedAccountIds = buildUnnamed2641(); | 6690 o.sharedAccountIds = buildUnnamed2735(); |
6691 o.sharedAdvertiserIds = buildUnnamed2642(); | 6691 o.sharedAdvertiserIds = buildUnnamed2736(); |
6692 } | 6692 } |
6693 buildCounterRemarketingListShare--; | 6693 buildCounterRemarketingListShare--; |
6694 return o; | 6694 return o; |
6695 } | 6695 } |
6696 | 6696 |
6697 checkRemarketingListShare(api.RemarketingListShare o) { | 6697 checkRemarketingListShare(api.RemarketingListShare o) { |
6698 buildCounterRemarketingListShare++; | 6698 buildCounterRemarketingListShare++; |
6699 if (buildCounterRemarketingListShare < 3) { | 6699 if (buildCounterRemarketingListShare < 3) { |
6700 unittest.expect(o.kind, unittest.equals('foo')); | 6700 unittest.expect(o.kind, unittest.equals('foo')); |
6701 unittest.expect(o.remarketingListId, unittest.equals('foo')); | 6701 unittest.expect(o.remarketingListId, unittest.equals('foo')); |
6702 checkUnnamed2641(o.sharedAccountIds); | 6702 checkUnnamed2735(o.sharedAccountIds); |
6703 checkUnnamed2642(o.sharedAdvertiserIds); | 6703 checkUnnamed2736(o.sharedAdvertiserIds); |
6704 } | 6704 } |
6705 buildCounterRemarketingListShare--; | 6705 buildCounterRemarketingListShare--; |
6706 } | 6706 } |
6707 | 6707 |
6708 buildUnnamed2643() { | 6708 buildUnnamed2737() { |
6709 var o = new core.List<api.RemarketingList>(); | 6709 var o = new core.List<api.RemarketingList>(); |
6710 o.add(buildRemarketingList()); | 6710 o.add(buildRemarketingList()); |
6711 o.add(buildRemarketingList()); | 6711 o.add(buildRemarketingList()); |
6712 return o; | 6712 return o; |
6713 } | 6713 } |
6714 | 6714 |
6715 checkUnnamed2643(core.List<api.RemarketingList> o) { | 6715 checkUnnamed2737(core.List<api.RemarketingList> o) { |
6716 unittest.expect(o, unittest.hasLength(2)); | 6716 unittest.expect(o, unittest.hasLength(2)); |
6717 checkRemarketingList(o[0]); | 6717 checkRemarketingList(o[0]); |
6718 checkRemarketingList(o[1]); | 6718 checkRemarketingList(o[1]); |
6719 } | 6719 } |
6720 | 6720 |
6721 core.int buildCounterRemarketingListsListResponse = 0; | 6721 core.int buildCounterRemarketingListsListResponse = 0; |
6722 buildRemarketingListsListResponse() { | 6722 buildRemarketingListsListResponse() { |
6723 var o = new api.RemarketingListsListResponse(); | 6723 var o = new api.RemarketingListsListResponse(); |
6724 buildCounterRemarketingListsListResponse++; | 6724 buildCounterRemarketingListsListResponse++; |
6725 if (buildCounterRemarketingListsListResponse < 3) { | 6725 if (buildCounterRemarketingListsListResponse < 3) { |
6726 o.kind = "foo"; | 6726 o.kind = "foo"; |
6727 o.nextPageToken = "foo"; | 6727 o.nextPageToken = "foo"; |
6728 o.remarketingLists = buildUnnamed2643(); | 6728 o.remarketingLists = buildUnnamed2737(); |
6729 } | 6729 } |
6730 buildCounterRemarketingListsListResponse--; | 6730 buildCounterRemarketingListsListResponse--; |
6731 return o; | 6731 return o; |
6732 } | 6732 } |
6733 | 6733 |
6734 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { | 6734 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { |
6735 buildCounterRemarketingListsListResponse++; | 6735 buildCounterRemarketingListsListResponse++; |
6736 if (buildCounterRemarketingListsListResponse < 3) { | 6736 if (buildCounterRemarketingListsListResponse < 3) { |
6737 unittest.expect(o.kind, unittest.equals('foo')); | 6737 unittest.expect(o.kind, unittest.equals('foo')); |
6738 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6738 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
6739 checkUnnamed2643(o.remarketingLists); | 6739 checkUnnamed2737(o.remarketingLists); |
6740 } | 6740 } |
6741 buildCounterRemarketingListsListResponse--; | 6741 buildCounterRemarketingListsListResponse--; |
6742 } | 6742 } |
6743 | 6743 |
6744 buildUnnamed2644() { | 6744 buildUnnamed2738() { |
6745 var o = new core.List<api.DimensionValue>(); | 6745 var o = new core.List<api.DimensionValue>(); |
6746 o.add(buildDimensionValue()); | 6746 o.add(buildDimensionValue()); |
6747 o.add(buildDimensionValue()); | 6747 o.add(buildDimensionValue()); |
6748 return o; | 6748 return o; |
6749 } | 6749 } |
6750 | 6750 |
6751 checkUnnamed2644(core.List<api.DimensionValue> o) { | 6751 checkUnnamed2738(core.List<api.DimensionValue> o) { |
6752 unittest.expect(o, unittest.hasLength(2)); | 6752 unittest.expect(o, unittest.hasLength(2)); |
6753 checkDimensionValue(o[0]); | 6753 checkDimensionValue(o[0]); |
6754 checkDimensionValue(o[1]); | 6754 checkDimensionValue(o[1]); |
6755 } | 6755 } |
6756 | 6756 |
6757 buildUnnamed2645() { | 6757 buildUnnamed2739() { |
6758 var o = new core.List<api.SortedDimension>(); | 6758 var o = new core.List<api.SortedDimension>(); |
6759 o.add(buildSortedDimension()); | 6759 o.add(buildSortedDimension()); |
6760 o.add(buildSortedDimension()); | 6760 o.add(buildSortedDimension()); |
6761 return o; | 6761 return o; |
6762 } | 6762 } |
6763 | 6763 |
6764 checkUnnamed2645(core.List<api.SortedDimension> o) { | 6764 checkUnnamed2739(core.List<api.SortedDimension> o) { |
6765 unittest.expect(o, unittest.hasLength(2)); | 6765 unittest.expect(o, unittest.hasLength(2)); |
6766 checkSortedDimension(o[0]); | 6766 checkSortedDimension(o[0]); |
6767 checkSortedDimension(o[1]); | 6767 checkSortedDimension(o[1]); |
6768 } | 6768 } |
6769 | 6769 |
6770 buildUnnamed2646() { | 6770 buildUnnamed2740() { |
6771 var o = new core.List<core.String>(); | 6771 var o = new core.List<core.String>(); |
6772 o.add("foo"); | 6772 o.add("foo"); |
6773 o.add("foo"); | 6773 o.add("foo"); |
6774 return o; | 6774 return o; |
6775 } | 6775 } |
6776 | 6776 |
6777 checkUnnamed2646(core.List<core.String> o) { | 6777 checkUnnamed2740(core.List<core.String> o) { |
6778 unittest.expect(o, unittest.hasLength(2)); | 6778 unittest.expect(o, unittest.hasLength(2)); |
6779 unittest.expect(o[0], unittest.equals('foo')); | 6779 unittest.expect(o[0], unittest.equals('foo')); |
6780 unittest.expect(o[1], unittest.equals('foo')); | 6780 unittest.expect(o[1], unittest.equals('foo')); |
6781 } | 6781 } |
6782 | 6782 |
6783 core.int buildCounterReportCriteria = 0; | 6783 core.int buildCounterReportCriteria = 0; |
6784 buildReportCriteria() { | 6784 buildReportCriteria() { |
6785 var o = new api.ReportCriteria(); | 6785 var o = new api.ReportCriteria(); |
6786 buildCounterReportCriteria++; | 6786 buildCounterReportCriteria++; |
6787 if (buildCounterReportCriteria < 3) { | 6787 if (buildCounterReportCriteria < 3) { |
6788 o.activities = buildActivities(); | 6788 o.activities = buildActivities(); |
6789 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6789 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
6790 o.dateRange = buildDateRange(); | 6790 o.dateRange = buildDateRange(); |
6791 o.dimensionFilters = buildUnnamed2644(); | 6791 o.dimensionFilters = buildUnnamed2738(); |
6792 o.dimensions = buildUnnamed2645(); | 6792 o.dimensions = buildUnnamed2739(); |
6793 o.metricNames = buildUnnamed2646(); | 6793 o.metricNames = buildUnnamed2740(); |
6794 } | 6794 } |
6795 buildCounterReportCriteria--; | 6795 buildCounterReportCriteria--; |
6796 return o; | 6796 return o; |
6797 } | 6797 } |
6798 | 6798 |
6799 checkReportCriteria(api.ReportCriteria o) { | 6799 checkReportCriteria(api.ReportCriteria o) { |
6800 buildCounterReportCriteria++; | 6800 buildCounterReportCriteria++; |
6801 if (buildCounterReportCriteria < 3) { | 6801 if (buildCounterReportCriteria < 3) { |
6802 checkActivities(o.activities); | 6802 checkActivities(o.activities); |
6803 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6803 checkCustomRichMediaEvents(o.customRichMediaEvents); |
6804 checkDateRange(o.dateRange); | 6804 checkDateRange(o.dateRange); |
6805 checkUnnamed2644(o.dimensionFilters); | 6805 checkUnnamed2738(o.dimensionFilters); |
6806 checkUnnamed2645(o.dimensions); | 6806 checkUnnamed2739(o.dimensions); |
6807 checkUnnamed2646(o.metricNames); | 6807 checkUnnamed2740(o.metricNames); |
6808 } | 6808 } |
6809 buildCounterReportCriteria--; | 6809 buildCounterReportCriteria--; |
6810 } | 6810 } |
6811 | 6811 |
6812 buildUnnamed2647() { | 6812 buildUnnamed2741() { |
6813 var o = new core.List<api.SortedDimension>(); | 6813 var o = new core.List<api.SortedDimension>(); |
6814 o.add(buildSortedDimension()); | 6814 o.add(buildSortedDimension()); |
6815 o.add(buildSortedDimension()); | 6815 o.add(buildSortedDimension()); |
6816 return o; | 6816 return o; |
6817 } | 6817 } |
6818 | 6818 |
6819 checkUnnamed2647(core.List<api.SortedDimension> o) { | 6819 checkUnnamed2741(core.List<api.SortedDimension> o) { |
6820 unittest.expect(o, unittest.hasLength(2)); | 6820 unittest.expect(o, unittest.hasLength(2)); |
6821 checkSortedDimension(o[0]); | 6821 checkSortedDimension(o[0]); |
6822 checkSortedDimension(o[1]); | 6822 checkSortedDimension(o[1]); |
6823 } | 6823 } |
6824 | 6824 |
6825 buildUnnamed2648() { | 6825 buildUnnamed2742() { |
6826 var o = new core.List<api.DimensionValue>(); | 6826 var o = new core.List<api.DimensionValue>(); |
6827 o.add(buildDimensionValue()); | 6827 o.add(buildDimensionValue()); |
6828 o.add(buildDimensionValue()); | 6828 o.add(buildDimensionValue()); |
6829 return o; | 6829 return o; |
6830 } | 6830 } |
6831 | 6831 |
6832 checkUnnamed2648(core.List<api.DimensionValue> o) { | 6832 checkUnnamed2742(core.List<api.DimensionValue> o) { |
6833 unittest.expect(o, unittest.hasLength(2)); | 6833 unittest.expect(o, unittest.hasLength(2)); |
6834 checkDimensionValue(o[0]); | 6834 checkDimensionValue(o[0]); |
6835 checkDimensionValue(o[1]); | 6835 checkDimensionValue(o[1]); |
6836 } | 6836 } |
6837 | 6837 |
6838 buildUnnamed2649() { | 6838 buildUnnamed2743() { |
6839 var o = new core.List<core.String>(); | 6839 var o = new core.List<core.String>(); |
6840 o.add("foo"); | 6840 o.add("foo"); |
6841 o.add("foo"); | 6841 o.add("foo"); |
6842 return o; | 6842 return o; |
6843 } | 6843 } |
6844 | 6844 |
6845 checkUnnamed2649(core.List<core.String> o) { | 6845 checkUnnamed2743(core.List<core.String> o) { |
6846 unittest.expect(o, unittest.hasLength(2)); | 6846 unittest.expect(o, unittest.hasLength(2)); |
6847 unittest.expect(o[0], unittest.equals('foo')); | 6847 unittest.expect(o[0], unittest.equals('foo')); |
6848 unittest.expect(o[1], unittest.equals('foo')); | 6848 unittest.expect(o[1], unittest.equals('foo')); |
6849 } | 6849 } |
6850 | 6850 |
6851 buildUnnamed2650() { | 6851 buildUnnamed2744() { |
6852 var o = new core.List<core.String>(); | 6852 var o = new core.List<core.String>(); |
6853 o.add("foo"); | 6853 o.add("foo"); |
6854 o.add("foo"); | 6854 o.add("foo"); |
6855 return o; | 6855 return o; |
6856 } | 6856 } |
6857 | 6857 |
6858 checkUnnamed2650(core.List<core.String> o) { | 6858 checkUnnamed2744(core.List<core.String> o) { |
6859 unittest.expect(o, unittest.hasLength(2)); | 6859 unittest.expect(o, unittest.hasLength(2)); |
6860 unittest.expect(o[0], unittest.equals('foo')); | 6860 unittest.expect(o[0], unittest.equals('foo')); |
6861 unittest.expect(o[1], unittest.equals('foo')); | 6861 unittest.expect(o[1], unittest.equals('foo')); |
6862 } | 6862 } |
6863 | 6863 |
6864 core.int buildCounterReportCrossDimensionReachCriteria = 0; | 6864 core.int buildCounterReportCrossDimensionReachCriteria = 0; |
6865 buildReportCrossDimensionReachCriteria() { | 6865 buildReportCrossDimensionReachCriteria() { |
6866 var o = new api.ReportCrossDimensionReachCriteria(); | 6866 var o = new api.ReportCrossDimensionReachCriteria(); |
6867 buildCounterReportCrossDimensionReachCriteria++; | 6867 buildCounterReportCrossDimensionReachCriteria++; |
6868 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6868 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
6869 o.breakdown = buildUnnamed2647(); | 6869 o.breakdown = buildUnnamed2741(); |
6870 o.dateRange = buildDateRange(); | 6870 o.dateRange = buildDateRange(); |
6871 o.dimension = "foo"; | 6871 o.dimension = "foo"; |
6872 o.dimensionFilters = buildUnnamed2648(); | 6872 o.dimensionFilters = buildUnnamed2742(); |
6873 o.metricNames = buildUnnamed2649(); | 6873 o.metricNames = buildUnnamed2743(); |
6874 o.overlapMetricNames = buildUnnamed2650(); | 6874 o.overlapMetricNames = buildUnnamed2744(); |
6875 o.pivoted = true; | 6875 o.pivoted = true; |
6876 } | 6876 } |
6877 buildCounterReportCrossDimensionReachCriteria--; | 6877 buildCounterReportCrossDimensionReachCriteria--; |
6878 return o; | 6878 return o; |
6879 } | 6879 } |
6880 | 6880 |
6881 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ | 6881 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ |
6882 buildCounterReportCrossDimensionReachCriteria++; | 6882 buildCounterReportCrossDimensionReachCriteria++; |
6883 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6883 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
6884 checkUnnamed2647(o.breakdown); | 6884 checkUnnamed2741(o.breakdown); |
6885 checkDateRange(o.dateRange); | 6885 checkDateRange(o.dateRange); |
6886 unittest.expect(o.dimension, unittest.equals('foo')); | 6886 unittest.expect(o.dimension, unittest.equals('foo')); |
6887 checkUnnamed2648(o.dimensionFilters); | 6887 checkUnnamed2742(o.dimensionFilters); |
6888 checkUnnamed2649(o.metricNames); | 6888 checkUnnamed2743(o.metricNames); |
6889 checkUnnamed2650(o.overlapMetricNames); | 6889 checkUnnamed2744(o.overlapMetricNames); |
6890 unittest.expect(o.pivoted, unittest.isTrue); | 6890 unittest.expect(o.pivoted, unittest.isTrue); |
6891 } | 6891 } |
6892 buildCounterReportCrossDimensionReachCriteria--; | 6892 buildCounterReportCrossDimensionReachCriteria--; |
6893 } | 6893 } |
6894 | 6894 |
6895 buildUnnamed2651() { | 6895 buildUnnamed2745() { |
6896 var o = new core.List<api.Recipient>(); | 6896 var o = new core.List<api.Recipient>(); |
6897 o.add(buildRecipient()); | 6897 o.add(buildRecipient()); |
6898 o.add(buildRecipient()); | 6898 o.add(buildRecipient()); |
6899 return o; | 6899 return o; |
6900 } | 6900 } |
6901 | 6901 |
6902 checkUnnamed2651(core.List<api.Recipient> o) { | 6902 checkUnnamed2745(core.List<api.Recipient> o) { |
6903 unittest.expect(o, unittest.hasLength(2)); | 6903 unittest.expect(o, unittest.hasLength(2)); |
6904 checkRecipient(o[0]); | 6904 checkRecipient(o[0]); |
6905 checkRecipient(o[1]); | 6905 checkRecipient(o[1]); |
6906 } | 6906 } |
6907 | 6907 |
6908 core.int buildCounterReportDelivery = 0; | 6908 core.int buildCounterReportDelivery = 0; |
6909 buildReportDelivery() { | 6909 buildReportDelivery() { |
6910 var o = new api.ReportDelivery(); | 6910 var o = new api.ReportDelivery(); |
6911 buildCounterReportDelivery++; | 6911 buildCounterReportDelivery++; |
6912 if (buildCounterReportDelivery < 3) { | 6912 if (buildCounterReportDelivery < 3) { |
6913 o.emailOwner = true; | 6913 o.emailOwner = true; |
6914 o.emailOwnerDeliveryType = "foo"; | 6914 o.emailOwnerDeliveryType = "foo"; |
6915 o.message = "foo"; | 6915 o.message = "foo"; |
6916 o.recipients = buildUnnamed2651(); | 6916 o.recipients = buildUnnamed2745(); |
6917 } | 6917 } |
6918 buildCounterReportDelivery--; | 6918 buildCounterReportDelivery--; |
6919 return o; | 6919 return o; |
6920 } | 6920 } |
6921 | 6921 |
6922 checkReportDelivery(api.ReportDelivery o) { | 6922 checkReportDelivery(api.ReportDelivery o) { |
6923 buildCounterReportDelivery++; | 6923 buildCounterReportDelivery++; |
6924 if (buildCounterReportDelivery < 3) { | 6924 if (buildCounterReportDelivery < 3) { |
6925 unittest.expect(o.emailOwner, unittest.isTrue); | 6925 unittest.expect(o.emailOwner, unittest.isTrue); |
6926 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); | 6926 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); |
6927 unittest.expect(o.message, unittest.equals('foo')); | 6927 unittest.expect(o.message, unittest.equals('foo')); |
6928 checkUnnamed2651(o.recipients); | 6928 checkUnnamed2745(o.recipients); |
6929 } | 6929 } |
6930 buildCounterReportDelivery--; | 6930 buildCounterReportDelivery--; |
6931 } | 6931 } |
6932 | 6932 |
6933 buildUnnamed2652() { | 6933 buildUnnamed2746() { |
6934 var o = new core.List<api.DimensionValue>(); | 6934 var o = new core.List<api.DimensionValue>(); |
6935 o.add(buildDimensionValue()); | 6935 o.add(buildDimensionValue()); |
6936 o.add(buildDimensionValue()); | 6936 o.add(buildDimensionValue()); |
6937 return o; | 6937 return o; |
6938 } | 6938 } |
6939 | 6939 |
6940 checkUnnamed2652(core.List<api.DimensionValue> o) { | 6940 checkUnnamed2746(core.List<api.DimensionValue> o) { |
6941 unittest.expect(o, unittest.hasLength(2)); | 6941 unittest.expect(o, unittest.hasLength(2)); |
6942 checkDimensionValue(o[0]); | 6942 checkDimensionValue(o[0]); |
6943 checkDimensionValue(o[1]); | 6943 checkDimensionValue(o[1]); |
6944 } | 6944 } |
6945 | 6945 |
6946 buildUnnamed2653() { | 6946 buildUnnamed2747() { |
6947 var o = new core.List<api.DimensionValue>(); | 6947 var o = new core.List<api.DimensionValue>(); |
6948 o.add(buildDimensionValue()); | 6948 o.add(buildDimensionValue()); |
6949 o.add(buildDimensionValue()); | 6949 o.add(buildDimensionValue()); |
6950 return o; | 6950 return o; |
6951 } | 6951 } |
6952 | 6952 |
6953 checkUnnamed2653(core.List<api.DimensionValue> o) { | 6953 checkUnnamed2747(core.List<api.DimensionValue> o) { |
6954 unittest.expect(o, unittest.hasLength(2)); | 6954 unittest.expect(o, unittest.hasLength(2)); |
6955 checkDimensionValue(o[0]); | 6955 checkDimensionValue(o[0]); |
6956 checkDimensionValue(o[1]); | 6956 checkDimensionValue(o[1]); |
6957 } | 6957 } |
6958 | 6958 |
6959 buildUnnamed2654() { | 6959 buildUnnamed2748() { |
6960 var o = new core.List<api.SortedDimension>(); | 6960 var o = new core.List<api.SortedDimension>(); |
6961 o.add(buildSortedDimension()); | 6961 o.add(buildSortedDimension()); |
6962 o.add(buildSortedDimension()); | 6962 o.add(buildSortedDimension()); |
6963 return o; | 6963 return o; |
6964 } | 6964 } |
6965 | 6965 |
6966 checkUnnamed2654(core.List<api.SortedDimension> o) { | 6966 checkUnnamed2748(core.List<api.SortedDimension> o) { |
6967 unittest.expect(o, unittest.hasLength(2)); | 6967 unittest.expect(o, unittest.hasLength(2)); |
6968 checkSortedDimension(o[0]); | 6968 checkSortedDimension(o[0]); |
6969 checkSortedDimension(o[1]); | 6969 checkSortedDimension(o[1]); |
6970 } | 6970 } |
6971 | 6971 |
6972 buildUnnamed2655() { | 6972 buildUnnamed2749() { |
6973 var o = new core.List<core.String>(); | 6973 var o = new core.List<core.String>(); |
6974 o.add("foo"); | 6974 o.add("foo"); |
6975 o.add("foo"); | 6975 o.add("foo"); |
6976 return o; | 6976 return o; |
6977 } | 6977 } |
6978 | 6978 |
6979 checkUnnamed2655(core.List<core.String> o) { | 6979 checkUnnamed2749(core.List<core.String> o) { |
6980 unittest.expect(o, unittest.hasLength(2)); | 6980 unittest.expect(o, unittest.hasLength(2)); |
6981 unittest.expect(o[0], unittest.equals('foo')); | 6981 unittest.expect(o[0], unittest.equals('foo')); |
6982 unittest.expect(o[1], unittest.equals('foo')); | 6982 unittest.expect(o[1], unittest.equals('foo')); |
6983 } | 6983 } |
6984 | 6984 |
6985 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; | 6985 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; |
6986 buildReportFloodlightCriteriaReportProperties() { | 6986 buildReportFloodlightCriteriaReportProperties() { |
6987 var o = new api.ReportFloodlightCriteriaReportProperties(); | 6987 var o = new api.ReportFloodlightCriteriaReportProperties(); |
6988 buildCounterReportFloodlightCriteriaReportProperties++; | 6988 buildCounterReportFloodlightCriteriaReportProperties++; |
6989 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { | 6989 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { |
(...skipping 13 matching lines...) Loading... |
7003 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); | 7003 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); |
7004 } | 7004 } |
7005 buildCounterReportFloodlightCriteriaReportProperties--; | 7005 buildCounterReportFloodlightCriteriaReportProperties--; |
7006 } | 7006 } |
7007 | 7007 |
7008 core.int buildCounterReportFloodlightCriteria = 0; | 7008 core.int buildCounterReportFloodlightCriteria = 0; |
7009 buildReportFloodlightCriteria() { | 7009 buildReportFloodlightCriteria() { |
7010 var o = new api.ReportFloodlightCriteria(); | 7010 var o = new api.ReportFloodlightCriteria(); |
7011 buildCounterReportFloodlightCriteria++; | 7011 buildCounterReportFloodlightCriteria++; |
7012 if (buildCounterReportFloodlightCriteria < 3) { | 7012 if (buildCounterReportFloodlightCriteria < 3) { |
7013 o.customRichMediaEvents = buildUnnamed2652(); | 7013 o.customRichMediaEvents = buildUnnamed2746(); |
7014 o.dateRange = buildDateRange(); | 7014 o.dateRange = buildDateRange(); |
7015 o.dimensionFilters = buildUnnamed2653(); | 7015 o.dimensionFilters = buildUnnamed2747(); |
7016 o.dimensions = buildUnnamed2654(); | 7016 o.dimensions = buildUnnamed2748(); |
7017 o.floodlightConfigId = buildDimensionValue(); | 7017 o.floodlightConfigId = buildDimensionValue(); |
7018 o.metricNames = buildUnnamed2655(); | 7018 o.metricNames = buildUnnamed2749(); |
7019 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); | 7019 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); |
7020 } | 7020 } |
7021 buildCounterReportFloodlightCriteria--; | 7021 buildCounterReportFloodlightCriteria--; |
7022 return o; | 7022 return o; |
7023 } | 7023 } |
7024 | 7024 |
7025 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { | 7025 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { |
7026 buildCounterReportFloodlightCriteria++; | 7026 buildCounterReportFloodlightCriteria++; |
7027 if (buildCounterReportFloodlightCriteria < 3) { | 7027 if (buildCounterReportFloodlightCriteria < 3) { |
7028 checkUnnamed2652(o.customRichMediaEvents); | 7028 checkUnnamed2746(o.customRichMediaEvents); |
7029 checkDateRange(o.dateRange); | 7029 checkDateRange(o.dateRange); |
7030 checkUnnamed2653(o.dimensionFilters); | 7030 checkUnnamed2747(o.dimensionFilters); |
7031 checkUnnamed2654(o.dimensions); | 7031 checkUnnamed2748(o.dimensions); |
7032 checkDimensionValue(o.floodlightConfigId); | 7032 checkDimensionValue(o.floodlightConfigId); |
7033 checkUnnamed2655(o.metricNames); | 7033 checkUnnamed2749(o.metricNames); |
7034 checkReportFloodlightCriteriaReportProperties(o.reportProperties); | 7034 checkReportFloodlightCriteriaReportProperties(o.reportProperties); |
7035 } | 7035 } |
7036 buildCounterReportFloodlightCriteria--; | 7036 buildCounterReportFloodlightCriteria--; |
7037 } | 7037 } |
7038 | 7038 |
7039 buildUnnamed2656() { | 7039 buildUnnamed2750() { |
7040 var o = new core.List<api.DimensionValue>(); | 7040 var o = new core.List<api.DimensionValue>(); |
7041 o.add(buildDimensionValue()); | 7041 o.add(buildDimensionValue()); |
7042 o.add(buildDimensionValue()); | 7042 o.add(buildDimensionValue()); |
7043 return o; | 7043 return o; |
7044 } | 7044 } |
7045 | 7045 |
7046 checkUnnamed2656(core.List<api.DimensionValue> o) { | 7046 checkUnnamed2750(core.List<api.DimensionValue> o) { |
7047 unittest.expect(o, unittest.hasLength(2)); | 7047 unittest.expect(o, unittest.hasLength(2)); |
7048 checkDimensionValue(o[0]); | 7048 checkDimensionValue(o[0]); |
7049 checkDimensionValue(o[1]); | 7049 checkDimensionValue(o[1]); |
7050 } | 7050 } |
7051 | 7051 |
7052 buildUnnamed2657() { | 7052 buildUnnamed2751() { |
7053 var o = new core.List<api.SortedDimension>(); | 7053 var o = new core.List<api.SortedDimension>(); |
7054 o.add(buildSortedDimension()); | 7054 o.add(buildSortedDimension()); |
7055 o.add(buildSortedDimension()); | 7055 o.add(buildSortedDimension()); |
7056 return o; | 7056 return o; |
7057 } | 7057 } |
7058 | 7058 |
7059 checkUnnamed2657(core.List<api.SortedDimension> o) { | 7059 checkUnnamed2751(core.List<api.SortedDimension> o) { |
7060 unittest.expect(o, unittest.hasLength(2)); | 7060 unittest.expect(o, unittest.hasLength(2)); |
7061 checkSortedDimension(o[0]); | 7061 checkSortedDimension(o[0]); |
7062 checkSortedDimension(o[1]); | 7062 checkSortedDimension(o[1]); |
7063 } | 7063 } |
7064 | 7064 |
7065 buildUnnamed2658() { | 7065 buildUnnamed2752() { |
7066 var o = new core.List<api.SortedDimension>(); | 7066 var o = new core.List<api.SortedDimension>(); |
7067 o.add(buildSortedDimension()); | 7067 o.add(buildSortedDimension()); |
7068 o.add(buildSortedDimension()); | 7068 o.add(buildSortedDimension()); |
7069 return o; | 7069 return o; |
7070 } | 7070 } |
7071 | 7071 |
7072 checkUnnamed2658(core.List<api.SortedDimension> o) { | 7072 checkUnnamed2752(core.List<api.SortedDimension> o) { |
7073 unittest.expect(o, unittest.hasLength(2)); | 7073 unittest.expect(o, unittest.hasLength(2)); |
7074 checkSortedDimension(o[0]); | 7074 checkSortedDimension(o[0]); |
7075 checkSortedDimension(o[1]); | 7075 checkSortedDimension(o[1]); |
7076 } | 7076 } |
7077 | 7077 |
7078 buildUnnamed2659() { | 7078 buildUnnamed2753() { |
7079 var o = new core.List<api.DimensionValue>(); | 7079 var o = new core.List<api.DimensionValue>(); |
7080 o.add(buildDimensionValue()); | 7080 o.add(buildDimensionValue()); |
7081 o.add(buildDimensionValue()); | 7081 o.add(buildDimensionValue()); |
7082 return o; | 7082 return o; |
7083 } | 7083 } |
7084 | 7084 |
7085 checkUnnamed2659(core.List<api.DimensionValue> o) { | 7085 checkUnnamed2753(core.List<api.DimensionValue> o) { |
7086 unittest.expect(o, unittest.hasLength(2)); | 7086 unittest.expect(o, unittest.hasLength(2)); |
7087 checkDimensionValue(o[0]); | 7087 checkDimensionValue(o[0]); |
7088 checkDimensionValue(o[1]); | 7088 checkDimensionValue(o[1]); |
7089 } | 7089 } |
7090 | 7090 |
7091 buildUnnamed2660() { | 7091 buildUnnamed2754() { |
7092 var o = new core.List<core.String>(); | 7092 var o = new core.List<core.String>(); |
7093 o.add("foo"); | 7093 o.add("foo"); |
7094 o.add("foo"); | 7094 o.add("foo"); |
7095 return o; | 7095 return o; |
7096 } | 7096 } |
7097 | 7097 |
7098 checkUnnamed2660(core.List<core.String> o) { | 7098 checkUnnamed2754(core.List<core.String> o) { |
7099 unittest.expect(o, unittest.hasLength(2)); | 7099 unittest.expect(o, unittest.hasLength(2)); |
7100 unittest.expect(o[0], unittest.equals('foo')); | 7100 unittest.expect(o[0], unittest.equals('foo')); |
7101 unittest.expect(o[1], unittest.equals('foo')); | 7101 unittest.expect(o[1], unittest.equals('foo')); |
7102 } | 7102 } |
7103 | 7103 |
7104 buildUnnamed2661() { | 7104 buildUnnamed2755() { |
7105 var o = new core.List<api.SortedDimension>(); | 7105 var o = new core.List<api.SortedDimension>(); |
7106 o.add(buildSortedDimension()); | 7106 o.add(buildSortedDimension()); |
7107 o.add(buildSortedDimension()); | 7107 o.add(buildSortedDimension()); |
7108 return o; | 7108 return o; |
7109 } | 7109 } |
7110 | 7110 |
7111 checkUnnamed2661(core.List<api.SortedDimension> o) { | 7111 checkUnnamed2755(core.List<api.SortedDimension> o) { |
7112 unittest.expect(o, unittest.hasLength(2)); | 7112 unittest.expect(o, unittest.hasLength(2)); |
7113 checkSortedDimension(o[0]); | 7113 checkSortedDimension(o[0]); |
7114 checkSortedDimension(o[1]); | 7114 checkSortedDimension(o[1]); |
7115 } | 7115 } |
7116 | 7116 |
7117 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; | 7117 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; |
7118 buildReportPathToConversionCriteriaReportProperties() { | 7118 buildReportPathToConversionCriteriaReportProperties() { |
7119 var o = new api.ReportPathToConversionCriteriaReportProperties(); | 7119 var o = new api.ReportPathToConversionCriteriaReportProperties(); |
7120 buildCounterReportPathToConversionCriteriaReportProperties++; | 7120 buildCounterReportPathToConversionCriteriaReportProperties++; |
7121 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { | 7121 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { |
(...skipping 25 matching lines...) Loading... |
7147 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); | 7147 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); |
7148 } | 7148 } |
7149 buildCounterReportPathToConversionCriteriaReportProperties--; | 7149 buildCounterReportPathToConversionCriteriaReportProperties--; |
7150 } | 7150 } |
7151 | 7151 |
7152 core.int buildCounterReportPathToConversionCriteria = 0; | 7152 core.int buildCounterReportPathToConversionCriteria = 0; |
7153 buildReportPathToConversionCriteria() { | 7153 buildReportPathToConversionCriteria() { |
7154 var o = new api.ReportPathToConversionCriteria(); | 7154 var o = new api.ReportPathToConversionCriteria(); |
7155 buildCounterReportPathToConversionCriteria++; | 7155 buildCounterReportPathToConversionCriteria++; |
7156 if (buildCounterReportPathToConversionCriteria < 3) { | 7156 if (buildCounterReportPathToConversionCriteria < 3) { |
7157 o.activityFilters = buildUnnamed2656(); | 7157 o.activityFilters = buildUnnamed2750(); |
7158 o.conversionDimensions = buildUnnamed2657(); | 7158 o.conversionDimensions = buildUnnamed2751(); |
7159 o.customFloodlightVariables = buildUnnamed2658(); | 7159 o.customFloodlightVariables = buildUnnamed2752(); |
7160 o.customRichMediaEvents = buildUnnamed2659(); | 7160 o.customRichMediaEvents = buildUnnamed2753(); |
7161 o.dateRange = buildDateRange(); | 7161 o.dateRange = buildDateRange(); |
7162 o.floodlightConfigId = buildDimensionValue(); | 7162 o.floodlightConfigId = buildDimensionValue(); |
7163 o.metricNames = buildUnnamed2660(); | 7163 o.metricNames = buildUnnamed2754(); |
7164 o.perInteractionDimensions = buildUnnamed2661(); | 7164 o.perInteractionDimensions = buildUnnamed2755(); |
7165 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); | 7165 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); |
7166 } | 7166 } |
7167 buildCounterReportPathToConversionCriteria--; | 7167 buildCounterReportPathToConversionCriteria--; |
7168 return o; | 7168 return o; |
7169 } | 7169 } |
7170 | 7170 |
7171 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { | 7171 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { |
7172 buildCounterReportPathToConversionCriteria++; | 7172 buildCounterReportPathToConversionCriteria++; |
7173 if (buildCounterReportPathToConversionCriteria < 3) { | 7173 if (buildCounterReportPathToConversionCriteria < 3) { |
7174 checkUnnamed2656(o.activityFilters); | 7174 checkUnnamed2750(o.activityFilters); |
7175 checkUnnamed2657(o.conversionDimensions); | 7175 checkUnnamed2751(o.conversionDimensions); |
7176 checkUnnamed2658(o.customFloodlightVariables); | 7176 checkUnnamed2752(o.customFloodlightVariables); |
7177 checkUnnamed2659(o.customRichMediaEvents); | 7177 checkUnnamed2753(o.customRichMediaEvents); |
7178 checkDateRange(o.dateRange); | 7178 checkDateRange(o.dateRange); |
7179 checkDimensionValue(o.floodlightConfigId); | 7179 checkDimensionValue(o.floodlightConfigId); |
7180 checkUnnamed2660(o.metricNames); | 7180 checkUnnamed2754(o.metricNames); |
7181 checkUnnamed2661(o.perInteractionDimensions); | 7181 checkUnnamed2755(o.perInteractionDimensions); |
7182 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); | 7182 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); |
7183 } | 7183 } |
7184 buildCounterReportPathToConversionCriteria--; | 7184 buildCounterReportPathToConversionCriteria--; |
7185 } | 7185 } |
7186 | 7186 |
7187 buildUnnamed2662() { | 7187 buildUnnamed2756() { |
7188 var o = new core.List<api.DimensionValue>(); | 7188 var o = new core.List<api.DimensionValue>(); |
7189 o.add(buildDimensionValue()); | 7189 o.add(buildDimensionValue()); |
7190 o.add(buildDimensionValue()); | 7190 o.add(buildDimensionValue()); |
7191 return o; | 7191 return o; |
7192 } | 7192 } |
7193 | 7193 |
7194 checkUnnamed2662(core.List<api.DimensionValue> o) { | 7194 checkUnnamed2756(core.List<api.DimensionValue> o) { |
7195 unittest.expect(o, unittest.hasLength(2)); | 7195 unittest.expect(o, unittest.hasLength(2)); |
7196 checkDimensionValue(o[0]); | 7196 checkDimensionValue(o[0]); |
7197 checkDimensionValue(o[1]); | 7197 checkDimensionValue(o[1]); |
7198 } | 7198 } |
7199 | 7199 |
7200 buildUnnamed2663() { | 7200 buildUnnamed2757() { |
7201 var o = new core.List<api.SortedDimension>(); | 7201 var o = new core.List<api.SortedDimension>(); |
7202 o.add(buildSortedDimension()); | 7202 o.add(buildSortedDimension()); |
7203 o.add(buildSortedDimension()); | 7203 o.add(buildSortedDimension()); |
7204 return o; | 7204 return o; |
7205 } | 7205 } |
7206 | 7206 |
7207 checkUnnamed2663(core.List<api.SortedDimension> o) { | 7207 checkUnnamed2757(core.List<api.SortedDimension> o) { |
7208 unittest.expect(o, unittest.hasLength(2)); | 7208 unittest.expect(o, unittest.hasLength(2)); |
7209 checkSortedDimension(o[0]); | 7209 checkSortedDimension(o[0]); |
7210 checkSortedDimension(o[1]); | 7210 checkSortedDimension(o[1]); |
7211 } | 7211 } |
7212 | 7212 |
7213 buildUnnamed2664() { | 7213 buildUnnamed2758() { |
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 checkUnnamed2664(core.List<core.String> o) { | 7220 checkUnnamed2758(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 buildUnnamed2665() { | 7226 buildUnnamed2759() { |
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 checkUnnamed2665(core.List<core.String> o) { | 7233 checkUnnamed2759(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 core.int buildCounterReportReachCriteria = 0; | 7239 core.int buildCounterReportReachCriteria = 0; |
7240 buildReportReachCriteria() { | 7240 buildReportReachCriteria() { |
7241 var o = new api.ReportReachCriteria(); | 7241 var o = new api.ReportReachCriteria(); |
7242 buildCounterReportReachCriteria++; | 7242 buildCounterReportReachCriteria++; |
7243 if (buildCounterReportReachCriteria < 3) { | 7243 if (buildCounterReportReachCriteria < 3) { |
7244 o.activities = buildActivities(); | 7244 o.activities = buildActivities(); |
7245 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 7245 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
7246 o.dateRange = buildDateRange(); | 7246 o.dateRange = buildDateRange(); |
7247 o.dimensionFilters = buildUnnamed2662(); | 7247 o.dimensionFilters = buildUnnamed2756(); |
7248 o.dimensions = buildUnnamed2663(); | 7248 o.dimensions = buildUnnamed2757(); |
7249 o.enableAllDimensionCombinations = true; | 7249 o.enableAllDimensionCombinations = true; |
7250 o.metricNames = buildUnnamed2664(); | 7250 o.metricNames = buildUnnamed2758(); |
7251 o.reachByFrequencyMetricNames = buildUnnamed2665(); | 7251 o.reachByFrequencyMetricNames = buildUnnamed2759(); |
7252 } | 7252 } |
7253 buildCounterReportReachCriteria--; | 7253 buildCounterReportReachCriteria--; |
7254 return o; | 7254 return o; |
7255 } | 7255 } |
7256 | 7256 |
7257 checkReportReachCriteria(api.ReportReachCriteria o) { | 7257 checkReportReachCriteria(api.ReportReachCriteria o) { |
7258 buildCounterReportReachCriteria++; | 7258 buildCounterReportReachCriteria++; |
7259 if (buildCounterReportReachCriteria < 3) { | 7259 if (buildCounterReportReachCriteria < 3) { |
7260 checkActivities(o.activities); | 7260 checkActivities(o.activities); |
7261 checkCustomRichMediaEvents(o.customRichMediaEvents); | 7261 checkCustomRichMediaEvents(o.customRichMediaEvents); |
7262 checkDateRange(o.dateRange); | 7262 checkDateRange(o.dateRange); |
7263 checkUnnamed2662(o.dimensionFilters); | 7263 checkUnnamed2756(o.dimensionFilters); |
7264 checkUnnamed2663(o.dimensions); | 7264 checkUnnamed2757(o.dimensions); |
7265 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); | 7265 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); |
7266 checkUnnamed2664(o.metricNames); | 7266 checkUnnamed2758(o.metricNames); |
7267 checkUnnamed2665(o.reachByFrequencyMetricNames); | 7267 checkUnnamed2759(o.reachByFrequencyMetricNames); |
7268 } | 7268 } |
7269 buildCounterReportReachCriteria--; | 7269 buildCounterReportReachCriteria--; |
7270 } | 7270 } |
7271 | 7271 |
7272 buildUnnamed2666() { | 7272 buildUnnamed2760() { |
7273 var o = new core.List<core.String>(); | 7273 var o = new core.List<core.String>(); |
7274 o.add("foo"); | 7274 o.add("foo"); |
7275 o.add("foo"); | 7275 o.add("foo"); |
7276 return o; | 7276 return o; |
7277 } | 7277 } |
7278 | 7278 |
7279 checkUnnamed2666(core.List<core.String> o) { | 7279 checkUnnamed2760(core.List<core.String> o) { |
7280 unittest.expect(o, unittest.hasLength(2)); | 7280 unittest.expect(o, unittest.hasLength(2)); |
7281 unittest.expect(o[0], unittest.equals('foo')); | 7281 unittest.expect(o[0], unittest.equals('foo')); |
7282 unittest.expect(o[1], unittest.equals('foo')); | 7282 unittest.expect(o[1], unittest.equals('foo')); |
7283 } | 7283 } |
7284 | 7284 |
7285 core.int buildCounterReportSchedule = 0; | 7285 core.int buildCounterReportSchedule = 0; |
7286 buildReportSchedule() { | 7286 buildReportSchedule() { |
7287 var o = new api.ReportSchedule(); | 7287 var o = new api.ReportSchedule(); |
7288 buildCounterReportSchedule++; | 7288 buildCounterReportSchedule++; |
7289 if (buildCounterReportSchedule < 3) { | 7289 if (buildCounterReportSchedule < 3) { |
7290 o.active = true; | 7290 o.active = true; |
7291 o.every = 42; | 7291 o.every = 42; |
7292 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 7292 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
7293 o.repeats = "foo"; | 7293 o.repeats = "foo"; |
7294 o.repeatsOnWeekDays = buildUnnamed2666(); | 7294 o.repeatsOnWeekDays = buildUnnamed2760(); |
7295 o.runsOnDayOfMonth = "foo"; | 7295 o.runsOnDayOfMonth = "foo"; |
7296 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 7296 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
7297 } | 7297 } |
7298 buildCounterReportSchedule--; | 7298 buildCounterReportSchedule--; |
7299 return o; | 7299 return o; |
7300 } | 7300 } |
7301 | 7301 |
7302 checkReportSchedule(api.ReportSchedule o) { | 7302 checkReportSchedule(api.ReportSchedule o) { |
7303 buildCounterReportSchedule++; | 7303 buildCounterReportSchedule++; |
7304 if (buildCounterReportSchedule < 3) { | 7304 if (buildCounterReportSchedule < 3) { |
7305 unittest.expect(o.active, unittest.isTrue); | 7305 unittest.expect(o.active, unittest.isTrue); |
7306 unittest.expect(o.every, unittest.equals(42)); | 7306 unittest.expect(o.every, unittest.equals(42)); |
7307 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); | 7307 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); |
7308 unittest.expect(o.repeats, unittest.equals('foo')); | 7308 unittest.expect(o.repeats, unittest.equals('foo')); |
7309 checkUnnamed2666(o.repeatsOnWeekDays); | 7309 checkUnnamed2760(o.repeatsOnWeekDays); |
7310 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); | 7310 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); |
7311 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 7311 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
7312 } | 7312 } |
7313 buildCounterReportSchedule--; | 7313 buildCounterReportSchedule--; |
7314 } | 7314 } |
7315 | 7315 |
7316 core.int buildCounterReport = 0; | 7316 core.int buildCounterReport = 0; |
7317 buildReport() { | 7317 buildReport() { |
7318 var o = new api.Report(); | 7318 var o = new api.Report(); |
7319 buildCounterReport++; | 7319 buildCounterReport++; |
(...skipping 39 matching lines...) Loading... |
7359 unittest.expect(o.ownerProfileId, unittest.equals('foo')); | 7359 unittest.expect(o.ownerProfileId, unittest.equals('foo')); |
7360 checkReportPathToConversionCriteria(o.pathToConversionCriteria); | 7360 checkReportPathToConversionCriteria(o.pathToConversionCriteria); |
7361 checkReportReachCriteria(o.reachCriteria); | 7361 checkReportReachCriteria(o.reachCriteria); |
7362 checkReportSchedule(o.schedule); | 7362 checkReportSchedule(o.schedule); |
7363 unittest.expect(o.subAccountId, unittest.equals('foo')); | 7363 unittest.expect(o.subAccountId, unittest.equals('foo')); |
7364 unittest.expect(o.type, unittest.equals('foo')); | 7364 unittest.expect(o.type, unittest.equals('foo')); |
7365 } | 7365 } |
7366 buildCounterReport--; | 7366 buildCounterReport--; |
7367 } | 7367 } |
7368 | 7368 |
7369 buildUnnamed2667() { | 7369 buildUnnamed2761() { |
7370 var o = new core.List<api.Dimension>(); | 7370 var o = new core.List<api.Dimension>(); |
7371 o.add(buildDimension()); | 7371 o.add(buildDimension()); |
7372 o.add(buildDimension()); | 7372 o.add(buildDimension()); |
7373 return o; | 7373 return o; |
7374 } | 7374 } |
7375 | 7375 |
7376 checkUnnamed2667(core.List<api.Dimension> o) { | 7376 checkUnnamed2761(core.List<api.Dimension> o) { |
7377 unittest.expect(o, unittest.hasLength(2)); | 7377 unittest.expect(o, unittest.hasLength(2)); |
7378 checkDimension(o[0]); | 7378 checkDimension(o[0]); |
7379 checkDimension(o[1]); | 7379 checkDimension(o[1]); |
7380 } | 7380 } |
7381 | 7381 |
7382 buildUnnamed2668() { | 7382 buildUnnamed2762() { |
7383 var o = new core.List<api.Dimension>(); | 7383 var o = new core.List<api.Dimension>(); |
7384 o.add(buildDimension()); | 7384 o.add(buildDimension()); |
7385 o.add(buildDimension()); | 7385 o.add(buildDimension()); |
7386 return o; | 7386 return o; |
7387 } | 7387 } |
7388 | 7388 |
7389 checkUnnamed2668(core.List<api.Dimension> o) { | 7389 checkUnnamed2762(core.List<api.Dimension> o) { |
7390 unittest.expect(o, unittest.hasLength(2)); | 7390 unittest.expect(o, unittest.hasLength(2)); |
7391 checkDimension(o[0]); | 7391 checkDimension(o[0]); |
7392 checkDimension(o[1]); | 7392 checkDimension(o[1]); |
7393 } | 7393 } |
7394 | 7394 |
7395 buildUnnamed2669() { | 7395 buildUnnamed2763() { |
7396 var o = new core.List<api.Metric>(); | 7396 var o = new core.List<api.Metric>(); |
7397 o.add(buildMetric()); | 7397 o.add(buildMetric()); |
7398 o.add(buildMetric()); | 7398 o.add(buildMetric()); |
7399 return o; | 7399 return o; |
7400 } | 7400 } |
7401 | 7401 |
7402 checkUnnamed2669(core.List<api.Metric> o) { | 7402 checkUnnamed2763(core.List<api.Metric> o) { |
7403 unittest.expect(o, unittest.hasLength(2)); | 7403 unittest.expect(o, unittest.hasLength(2)); |
7404 checkMetric(o[0]); | 7404 checkMetric(o[0]); |
7405 checkMetric(o[1]); | 7405 checkMetric(o[1]); |
7406 } | 7406 } |
7407 | 7407 |
7408 buildUnnamed2670() { | 7408 buildUnnamed2764() { |
7409 var o = new core.List<api.Metric>(); | 7409 var o = new core.List<api.Metric>(); |
7410 o.add(buildMetric()); | 7410 o.add(buildMetric()); |
7411 o.add(buildMetric()); | 7411 o.add(buildMetric()); |
7412 return o; | 7412 return o; |
7413 } | 7413 } |
7414 | 7414 |
7415 checkUnnamed2670(core.List<api.Metric> o) { | 7415 checkUnnamed2764(core.List<api.Metric> o) { |
7416 unittest.expect(o, unittest.hasLength(2)); | 7416 unittest.expect(o, unittest.hasLength(2)); |
7417 checkMetric(o[0]); | 7417 checkMetric(o[0]); |
7418 checkMetric(o[1]); | 7418 checkMetric(o[1]); |
7419 } | 7419 } |
7420 | 7420 |
7421 core.int buildCounterReportCompatibleFields = 0; | 7421 core.int buildCounterReportCompatibleFields = 0; |
7422 buildReportCompatibleFields() { | 7422 buildReportCompatibleFields() { |
7423 var o = new api.ReportCompatibleFields(); | 7423 var o = new api.ReportCompatibleFields(); |
7424 buildCounterReportCompatibleFields++; | 7424 buildCounterReportCompatibleFields++; |
7425 if (buildCounterReportCompatibleFields < 3) { | 7425 if (buildCounterReportCompatibleFields < 3) { |
7426 o.dimensionFilters = buildUnnamed2667(); | 7426 o.dimensionFilters = buildUnnamed2761(); |
7427 o.dimensions = buildUnnamed2668(); | 7427 o.dimensions = buildUnnamed2762(); |
7428 o.kind = "foo"; | 7428 o.kind = "foo"; |
7429 o.metrics = buildUnnamed2669(); | 7429 o.metrics = buildUnnamed2763(); |
7430 o.pivotedActivityMetrics = buildUnnamed2670(); | 7430 o.pivotedActivityMetrics = buildUnnamed2764(); |
7431 } | 7431 } |
7432 buildCounterReportCompatibleFields--; | 7432 buildCounterReportCompatibleFields--; |
7433 return o; | 7433 return o; |
7434 } | 7434 } |
7435 | 7435 |
7436 checkReportCompatibleFields(api.ReportCompatibleFields o) { | 7436 checkReportCompatibleFields(api.ReportCompatibleFields o) { |
7437 buildCounterReportCompatibleFields++; | 7437 buildCounterReportCompatibleFields++; |
7438 if (buildCounterReportCompatibleFields < 3) { | 7438 if (buildCounterReportCompatibleFields < 3) { |
7439 checkUnnamed2667(o.dimensionFilters); | 7439 checkUnnamed2761(o.dimensionFilters); |
7440 checkUnnamed2668(o.dimensions); | 7440 checkUnnamed2762(o.dimensions); |
7441 unittest.expect(o.kind, unittest.equals('foo')); | 7441 unittest.expect(o.kind, unittest.equals('foo')); |
7442 checkUnnamed2669(o.metrics); | 7442 checkUnnamed2763(o.metrics); |
7443 checkUnnamed2670(o.pivotedActivityMetrics); | 7443 checkUnnamed2764(o.pivotedActivityMetrics); |
7444 } | 7444 } |
7445 buildCounterReportCompatibleFields--; | 7445 buildCounterReportCompatibleFields--; |
7446 } | 7446 } |
7447 | 7447 |
7448 buildUnnamed2671() { | 7448 buildUnnamed2765() { |
7449 var o = new core.List<api.Report>(); | 7449 var o = new core.List<api.Report>(); |
7450 o.add(buildReport()); | 7450 o.add(buildReport()); |
7451 o.add(buildReport()); | 7451 o.add(buildReport()); |
7452 return o; | 7452 return o; |
7453 } | 7453 } |
7454 | 7454 |
7455 checkUnnamed2671(core.List<api.Report> o) { | 7455 checkUnnamed2765(core.List<api.Report> o) { |
7456 unittest.expect(o, unittest.hasLength(2)); | 7456 unittest.expect(o, unittest.hasLength(2)); |
7457 checkReport(o[0]); | 7457 checkReport(o[0]); |
7458 checkReport(o[1]); | 7458 checkReport(o[1]); |
7459 } | 7459 } |
7460 | 7460 |
7461 core.int buildCounterReportList = 0; | 7461 core.int buildCounterReportList = 0; |
7462 buildReportList() { | 7462 buildReportList() { |
7463 var o = new api.ReportList(); | 7463 var o = new api.ReportList(); |
7464 buildCounterReportList++; | 7464 buildCounterReportList++; |
7465 if (buildCounterReportList < 3) { | 7465 if (buildCounterReportList < 3) { |
7466 o.etag = "foo"; | 7466 o.etag = "foo"; |
7467 o.items = buildUnnamed2671(); | 7467 o.items = buildUnnamed2765(); |
7468 o.kind = "foo"; | 7468 o.kind = "foo"; |
7469 o.nextPageToken = "foo"; | 7469 o.nextPageToken = "foo"; |
7470 } | 7470 } |
7471 buildCounterReportList--; | 7471 buildCounterReportList--; |
7472 return o; | 7472 return o; |
7473 } | 7473 } |
7474 | 7474 |
7475 checkReportList(api.ReportList o) { | 7475 checkReportList(api.ReportList o) { |
7476 buildCounterReportList++; | 7476 buildCounterReportList++; |
7477 if (buildCounterReportList < 3) { | 7477 if (buildCounterReportList < 3) { |
7478 unittest.expect(o.etag, unittest.equals('foo')); | 7478 unittest.expect(o.etag, unittest.equals('foo')); |
7479 checkUnnamed2671(o.items); | 7479 checkUnnamed2765(o.items); |
7480 unittest.expect(o.kind, unittest.equals('foo')); | 7480 unittest.expect(o.kind, unittest.equals('foo')); |
7481 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7481 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
7482 } | 7482 } |
7483 buildCounterReportList--; | 7483 buildCounterReportList--; |
7484 } | 7484 } |
7485 | 7485 |
7486 core.int buildCounterReportsConfiguration = 0; | 7486 core.int buildCounterReportsConfiguration = 0; |
7487 buildReportsConfiguration() { | 7487 buildReportsConfiguration() { |
7488 var o = new api.ReportsConfiguration(); | 7488 var o = new api.ReportsConfiguration(); |
7489 buildCounterReportsConfiguration++; | 7489 buildCounterReportsConfiguration++; |
(...skipping 55 matching lines...) Loading... |
7545 checkRule(api.Rule o) { | 7545 checkRule(api.Rule o) { |
7546 buildCounterRule++; | 7546 buildCounterRule++; |
7547 if (buildCounterRule < 3) { | 7547 if (buildCounterRule < 3) { |
7548 unittest.expect(o.assetId, unittest.equals('foo')); | 7548 unittest.expect(o.assetId, unittest.equals('foo')); |
7549 unittest.expect(o.name, unittest.equals('foo')); | 7549 unittest.expect(o.name, unittest.equals('foo')); |
7550 unittest.expect(o.targetingTemplateId, unittest.equals('foo')); | 7550 unittest.expect(o.targetingTemplateId, unittest.equals('foo')); |
7551 } | 7551 } |
7552 buildCounterRule--; | 7552 buildCounterRule--; |
7553 } | 7553 } |
7554 | 7554 |
7555 buildUnnamed2672() { | 7555 buildUnnamed2766() { |
7556 var o = new core.List<api.SiteContact>(); | 7556 var o = new core.List<api.SiteContact>(); |
7557 o.add(buildSiteContact()); | 7557 o.add(buildSiteContact()); |
7558 o.add(buildSiteContact()); | 7558 o.add(buildSiteContact()); |
7559 return o; | 7559 return o; |
7560 } | 7560 } |
7561 | 7561 |
7562 checkUnnamed2672(core.List<api.SiteContact> o) { | 7562 checkUnnamed2766(core.List<api.SiteContact> o) { |
7563 unittest.expect(o, unittest.hasLength(2)); | 7563 unittest.expect(o, unittest.hasLength(2)); |
7564 checkSiteContact(o[0]); | 7564 checkSiteContact(o[0]); |
7565 checkSiteContact(o[1]); | 7565 checkSiteContact(o[1]); |
7566 } | 7566 } |
7567 | 7567 |
7568 core.int buildCounterSite = 0; | 7568 core.int buildCounterSite = 0; |
7569 buildSite() { | 7569 buildSite() { |
7570 var o = new api.Site(); | 7570 var o = new api.Site(); |
7571 buildCounterSite++; | 7571 buildCounterSite++; |
7572 if (buildCounterSite < 3) { | 7572 if (buildCounterSite < 3) { |
7573 o.accountId = "foo"; | 7573 o.accountId = "foo"; |
7574 o.approved = true; | 7574 o.approved = true; |
7575 o.directorySiteId = "foo"; | 7575 o.directorySiteId = "foo"; |
7576 o.directorySiteIdDimensionValue = buildDimensionValue(); | 7576 o.directorySiteIdDimensionValue = buildDimensionValue(); |
7577 o.id = "foo"; | 7577 o.id = "foo"; |
7578 o.idDimensionValue = buildDimensionValue(); | 7578 o.idDimensionValue = buildDimensionValue(); |
7579 o.keyName = "foo"; | 7579 o.keyName = "foo"; |
7580 o.kind = "foo"; | 7580 o.kind = "foo"; |
7581 o.name = "foo"; | 7581 o.name = "foo"; |
7582 o.siteContacts = buildUnnamed2672(); | 7582 o.siteContacts = buildUnnamed2766(); |
7583 o.siteSettings = buildSiteSettings(); | 7583 o.siteSettings = buildSiteSettings(); |
7584 o.subaccountId = "foo"; | 7584 o.subaccountId = "foo"; |
7585 } | 7585 } |
7586 buildCounterSite--; | 7586 buildCounterSite--; |
7587 return o; | 7587 return o; |
7588 } | 7588 } |
7589 | 7589 |
7590 checkSite(api.Site o) { | 7590 checkSite(api.Site o) { |
7591 buildCounterSite++; | 7591 buildCounterSite++; |
7592 if (buildCounterSite < 3) { | 7592 if (buildCounterSite < 3) { |
7593 unittest.expect(o.accountId, unittest.equals('foo')); | 7593 unittest.expect(o.accountId, unittest.equals('foo')); |
7594 unittest.expect(o.approved, unittest.isTrue); | 7594 unittest.expect(o.approved, unittest.isTrue); |
7595 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 7595 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
7596 checkDimensionValue(o.directorySiteIdDimensionValue); | 7596 checkDimensionValue(o.directorySiteIdDimensionValue); |
7597 unittest.expect(o.id, unittest.equals('foo')); | 7597 unittest.expect(o.id, unittest.equals('foo')); |
7598 checkDimensionValue(o.idDimensionValue); | 7598 checkDimensionValue(o.idDimensionValue); |
7599 unittest.expect(o.keyName, unittest.equals('foo')); | 7599 unittest.expect(o.keyName, unittest.equals('foo')); |
7600 unittest.expect(o.kind, unittest.equals('foo')); | 7600 unittest.expect(o.kind, unittest.equals('foo')); |
7601 unittest.expect(o.name, unittest.equals('foo')); | 7601 unittest.expect(o.name, unittest.equals('foo')); |
7602 checkUnnamed2672(o.siteContacts); | 7602 checkUnnamed2766(o.siteContacts); |
7603 checkSiteSettings(o.siteSettings); | 7603 checkSiteSettings(o.siteSettings); |
7604 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7604 unittest.expect(o.subaccountId, unittest.equals('foo')); |
7605 } | 7605 } |
7606 buildCounterSite--; | 7606 buildCounterSite--; |
7607 } | 7607 } |
7608 | 7608 |
7609 core.int buildCounterSiteContact = 0; | 7609 core.int buildCounterSiteContact = 0; |
7610 buildSiteContact() { | 7610 buildSiteContact() { |
7611 var o = new api.SiteContact(); | 7611 var o = new api.SiteContact(); |
7612 buildCounterSiteContact++; | 7612 buildCounterSiteContact++; |
(...skipping 50 matching lines...) Loading... |
7663 checkCreativeSettings(o.creativeSettings); | 7663 checkCreativeSettings(o.creativeSettings); |
7664 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); | 7664 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); |
7665 unittest.expect(o.disableNewCookie, unittest.isTrue); | 7665 unittest.expect(o.disableNewCookie, unittest.isTrue); |
7666 checkLookbackConfiguration(o.lookbackConfiguration); | 7666 checkLookbackConfiguration(o.lookbackConfiguration); |
7667 checkTagSetting(o.tagSetting); | 7667 checkTagSetting(o.tagSetting); |
7668 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 7668 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
7669 } | 7669 } |
7670 buildCounterSiteSettings--; | 7670 buildCounterSiteSettings--; |
7671 } | 7671 } |
7672 | 7672 |
7673 buildUnnamed2673() { | 7673 buildUnnamed2767() { |
7674 var o = new core.List<api.Site>(); | 7674 var o = new core.List<api.Site>(); |
7675 o.add(buildSite()); | 7675 o.add(buildSite()); |
7676 o.add(buildSite()); | 7676 o.add(buildSite()); |
7677 return o; | 7677 return o; |
7678 } | 7678 } |
7679 | 7679 |
7680 checkUnnamed2673(core.List<api.Site> o) { | 7680 checkUnnamed2767(core.List<api.Site> o) { |
7681 unittest.expect(o, unittest.hasLength(2)); | 7681 unittest.expect(o, unittest.hasLength(2)); |
7682 checkSite(o[0]); | 7682 checkSite(o[0]); |
7683 checkSite(o[1]); | 7683 checkSite(o[1]); |
7684 } | 7684 } |
7685 | 7685 |
7686 core.int buildCounterSitesListResponse = 0; | 7686 core.int buildCounterSitesListResponse = 0; |
7687 buildSitesListResponse() { | 7687 buildSitesListResponse() { |
7688 var o = new api.SitesListResponse(); | 7688 var o = new api.SitesListResponse(); |
7689 buildCounterSitesListResponse++; | 7689 buildCounterSitesListResponse++; |
7690 if (buildCounterSitesListResponse < 3) { | 7690 if (buildCounterSitesListResponse < 3) { |
7691 o.kind = "foo"; | 7691 o.kind = "foo"; |
7692 o.nextPageToken = "foo"; | 7692 o.nextPageToken = "foo"; |
7693 o.sites = buildUnnamed2673(); | 7693 o.sites = buildUnnamed2767(); |
7694 } | 7694 } |
7695 buildCounterSitesListResponse--; | 7695 buildCounterSitesListResponse--; |
7696 return o; | 7696 return o; |
7697 } | 7697 } |
7698 | 7698 |
7699 checkSitesListResponse(api.SitesListResponse o) { | 7699 checkSitesListResponse(api.SitesListResponse o) { |
7700 buildCounterSitesListResponse++; | 7700 buildCounterSitesListResponse++; |
7701 if (buildCounterSitesListResponse < 3) { | 7701 if (buildCounterSitesListResponse < 3) { |
7702 unittest.expect(o.kind, unittest.equals('foo')); | 7702 unittest.expect(o.kind, unittest.equals('foo')); |
7703 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7703 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
7704 checkUnnamed2673(o.sites); | 7704 checkUnnamed2767(o.sites); |
7705 } | 7705 } |
7706 buildCounterSitesListResponse--; | 7706 buildCounterSitesListResponse--; |
7707 } | 7707 } |
7708 | 7708 |
7709 core.int buildCounterSize = 0; | 7709 core.int buildCounterSize = 0; |
7710 buildSize() { | 7710 buildSize() { |
7711 var o = new api.Size(); | 7711 var o = new api.Size(); |
7712 buildCounterSize++; | 7712 buildCounterSize++; |
7713 if (buildCounterSize < 3) { | 7713 if (buildCounterSize < 3) { |
7714 o.height = 42; | 7714 o.height = 42; |
(...skipping 11 matching lines...) Loading... |
7726 if (buildCounterSize < 3) { | 7726 if (buildCounterSize < 3) { |
7727 unittest.expect(o.height, unittest.equals(42)); | 7727 unittest.expect(o.height, unittest.equals(42)); |
7728 unittest.expect(o.iab, unittest.isTrue); | 7728 unittest.expect(o.iab, unittest.isTrue); |
7729 unittest.expect(o.id, unittest.equals('foo')); | 7729 unittest.expect(o.id, unittest.equals('foo')); |
7730 unittest.expect(o.kind, unittest.equals('foo')); | 7730 unittest.expect(o.kind, unittest.equals('foo')); |
7731 unittest.expect(o.width, unittest.equals(42)); | 7731 unittest.expect(o.width, unittest.equals(42)); |
7732 } | 7732 } |
7733 buildCounterSize--; | 7733 buildCounterSize--; |
7734 } | 7734 } |
7735 | 7735 |
7736 buildUnnamed2674() { | 7736 buildUnnamed2768() { |
7737 var o = new core.List<api.Size>(); | 7737 var o = new core.List<api.Size>(); |
7738 o.add(buildSize()); | 7738 o.add(buildSize()); |
7739 o.add(buildSize()); | 7739 o.add(buildSize()); |
7740 return o; | 7740 return o; |
7741 } | 7741 } |
7742 | 7742 |
7743 checkUnnamed2674(core.List<api.Size> o) { | 7743 checkUnnamed2768(core.List<api.Size> o) { |
7744 unittest.expect(o, unittest.hasLength(2)); | 7744 unittest.expect(o, unittest.hasLength(2)); |
7745 checkSize(o[0]); | 7745 checkSize(o[0]); |
7746 checkSize(o[1]); | 7746 checkSize(o[1]); |
7747 } | 7747 } |
7748 | 7748 |
7749 core.int buildCounterSizesListResponse = 0; | 7749 core.int buildCounterSizesListResponse = 0; |
7750 buildSizesListResponse() { | 7750 buildSizesListResponse() { |
7751 var o = new api.SizesListResponse(); | 7751 var o = new api.SizesListResponse(); |
7752 buildCounterSizesListResponse++; | 7752 buildCounterSizesListResponse++; |
7753 if (buildCounterSizesListResponse < 3) { | 7753 if (buildCounterSizesListResponse < 3) { |
7754 o.kind = "foo"; | 7754 o.kind = "foo"; |
7755 o.sizes = buildUnnamed2674(); | 7755 o.sizes = buildUnnamed2768(); |
7756 } | 7756 } |
7757 buildCounterSizesListResponse--; | 7757 buildCounterSizesListResponse--; |
7758 return o; | 7758 return o; |
7759 } | 7759 } |
7760 | 7760 |
7761 checkSizesListResponse(api.SizesListResponse o) { | 7761 checkSizesListResponse(api.SizesListResponse o) { |
7762 buildCounterSizesListResponse++; | 7762 buildCounterSizesListResponse++; |
7763 if (buildCounterSizesListResponse < 3) { | 7763 if (buildCounterSizesListResponse < 3) { |
7764 unittest.expect(o.kind, unittest.equals('foo')); | 7764 unittest.expect(o.kind, unittest.equals('foo')); |
7765 checkUnnamed2674(o.sizes); | 7765 checkUnnamed2768(o.sizes); |
7766 } | 7766 } |
7767 buildCounterSizesListResponse--; | 7767 buildCounterSizesListResponse--; |
7768 } | 7768 } |
7769 | 7769 |
7770 core.int buildCounterSortedDimension = 0; | 7770 core.int buildCounterSortedDimension = 0; |
7771 buildSortedDimension() { | 7771 buildSortedDimension() { |
7772 var o = new api.SortedDimension(); | 7772 var o = new api.SortedDimension(); |
7773 buildCounterSortedDimension++; | 7773 buildCounterSortedDimension++; |
7774 if (buildCounterSortedDimension < 3) { | 7774 if (buildCounterSortedDimension < 3) { |
7775 o.kind = "foo"; | 7775 o.kind = "foo"; |
7776 o.name = "foo"; | 7776 o.name = "foo"; |
7777 o.sortOrder = "foo"; | 7777 o.sortOrder = "foo"; |
7778 } | 7778 } |
7779 buildCounterSortedDimension--; | 7779 buildCounterSortedDimension--; |
7780 return o; | 7780 return o; |
7781 } | 7781 } |
7782 | 7782 |
7783 checkSortedDimension(api.SortedDimension o) { | 7783 checkSortedDimension(api.SortedDimension o) { |
7784 buildCounterSortedDimension++; | 7784 buildCounterSortedDimension++; |
7785 if (buildCounterSortedDimension < 3) { | 7785 if (buildCounterSortedDimension < 3) { |
7786 unittest.expect(o.kind, unittest.equals('foo')); | 7786 unittest.expect(o.kind, unittest.equals('foo')); |
7787 unittest.expect(o.name, unittest.equals('foo')); | 7787 unittest.expect(o.name, unittest.equals('foo')); |
7788 unittest.expect(o.sortOrder, unittest.equals('foo')); | 7788 unittest.expect(o.sortOrder, unittest.equals('foo')); |
7789 } | 7789 } |
7790 buildCounterSortedDimension--; | 7790 buildCounterSortedDimension--; |
7791 } | 7791 } |
7792 | 7792 |
7793 buildUnnamed2675() { | 7793 buildUnnamed2769() { |
7794 var o = new core.List<core.String>(); | 7794 var o = new core.List<core.String>(); |
7795 o.add("foo"); | 7795 o.add("foo"); |
7796 o.add("foo"); | 7796 o.add("foo"); |
7797 return o; | 7797 return o; |
7798 } | 7798 } |
7799 | 7799 |
7800 checkUnnamed2675(core.List<core.String> o) { | 7800 checkUnnamed2769(core.List<core.String> o) { |
7801 unittest.expect(o, unittest.hasLength(2)); | 7801 unittest.expect(o, unittest.hasLength(2)); |
7802 unittest.expect(o[0], unittest.equals('foo')); | 7802 unittest.expect(o[0], unittest.equals('foo')); |
7803 unittest.expect(o[1], unittest.equals('foo')); | 7803 unittest.expect(o[1], unittest.equals('foo')); |
7804 } | 7804 } |
7805 | 7805 |
7806 core.int buildCounterSubaccount = 0; | 7806 core.int buildCounterSubaccount = 0; |
7807 buildSubaccount() { | 7807 buildSubaccount() { |
7808 var o = new api.Subaccount(); | 7808 var o = new api.Subaccount(); |
7809 buildCounterSubaccount++; | 7809 buildCounterSubaccount++; |
7810 if (buildCounterSubaccount < 3) { | 7810 if (buildCounterSubaccount < 3) { |
7811 o.accountId = "foo"; | 7811 o.accountId = "foo"; |
7812 o.availablePermissionIds = buildUnnamed2675(); | 7812 o.availablePermissionIds = buildUnnamed2769(); |
7813 o.id = "foo"; | 7813 o.id = "foo"; |
7814 o.kind = "foo"; | 7814 o.kind = "foo"; |
7815 o.name = "foo"; | 7815 o.name = "foo"; |
7816 } | 7816 } |
7817 buildCounterSubaccount--; | 7817 buildCounterSubaccount--; |
7818 return o; | 7818 return o; |
7819 } | 7819 } |
7820 | 7820 |
7821 checkSubaccount(api.Subaccount o) { | 7821 checkSubaccount(api.Subaccount o) { |
7822 buildCounterSubaccount++; | 7822 buildCounterSubaccount++; |
7823 if (buildCounterSubaccount < 3) { | 7823 if (buildCounterSubaccount < 3) { |
7824 unittest.expect(o.accountId, unittest.equals('foo')); | 7824 unittest.expect(o.accountId, unittest.equals('foo')); |
7825 checkUnnamed2675(o.availablePermissionIds); | 7825 checkUnnamed2769(o.availablePermissionIds); |
7826 unittest.expect(o.id, unittest.equals('foo')); | 7826 unittest.expect(o.id, unittest.equals('foo')); |
7827 unittest.expect(o.kind, unittest.equals('foo')); | 7827 unittest.expect(o.kind, unittest.equals('foo')); |
7828 unittest.expect(o.name, unittest.equals('foo')); | 7828 unittest.expect(o.name, unittest.equals('foo')); |
7829 } | 7829 } |
7830 buildCounterSubaccount--; | 7830 buildCounterSubaccount--; |
7831 } | 7831 } |
7832 | 7832 |
7833 buildUnnamed2676() { | 7833 buildUnnamed2770() { |
7834 var o = new core.List<api.Subaccount>(); | 7834 var o = new core.List<api.Subaccount>(); |
7835 o.add(buildSubaccount()); | 7835 o.add(buildSubaccount()); |
7836 o.add(buildSubaccount()); | 7836 o.add(buildSubaccount()); |
7837 return o; | 7837 return o; |
7838 } | 7838 } |
7839 | 7839 |
7840 checkUnnamed2676(core.List<api.Subaccount> o) { | 7840 checkUnnamed2770(core.List<api.Subaccount> o) { |
7841 unittest.expect(o, unittest.hasLength(2)); | 7841 unittest.expect(o, unittest.hasLength(2)); |
7842 checkSubaccount(o[0]); | 7842 checkSubaccount(o[0]); |
7843 checkSubaccount(o[1]); | 7843 checkSubaccount(o[1]); |
7844 } | 7844 } |
7845 | 7845 |
7846 core.int buildCounterSubaccountsListResponse = 0; | 7846 core.int buildCounterSubaccountsListResponse = 0; |
7847 buildSubaccountsListResponse() { | 7847 buildSubaccountsListResponse() { |
7848 var o = new api.SubaccountsListResponse(); | 7848 var o = new api.SubaccountsListResponse(); |
7849 buildCounterSubaccountsListResponse++; | 7849 buildCounterSubaccountsListResponse++; |
7850 if (buildCounterSubaccountsListResponse < 3) { | 7850 if (buildCounterSubaccountsListResponse < 3) { |
7851 o.kind = "foo"; | 7851 o.kind = "foo"; |
7852 o.nextPageToken = "foo"; | 7852 o.nextPageToken = "foo"; |
7853 o.subaccounts = buildUnnamed2676(); | 7853 o.subaccounts = buildUnnamed2770(); |
7854 } | 7854 } |
7855 buildCounterSubaccountsListResponse--; | 7855 buildCounterSubaccountsListResponse--; |
7856 return o; | 7856 return o; |
7857 } | 7857 } |
7858 | 7858 |
7859 checkSubaccountsListResponse(api.SubaccountsListResponse o) { | 7859 checkSubaccountsListResponse(api.SubaccountsListResponse o) { |
7860 buildCounterSubaccountsListResponse++; | 7860 buildCounterSubaccountsListResponse++; |
7861 if (buildCounterSubaccountsListResponse < 3) { | 7861 if (buildCounterSubaccountsListResponse < 3) { |
7862 unittest.expect(o.kind, unittest.equals('foo')); | 7862 unittest.expect(o.kind, unittest.equals('foo')); |
7863 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7863 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
7864 checkUnnamed2676(o.subaccounts); | 7864 checkUnnamed2770(o.subaccounts); |
7865 } | 7865 } |
7866 buildCounterSubaccountsListResponse--; | 7866 buildCounterSubaccountsListResponse--; |
7867 } | 7867 } |
7868 | 7868 |
7869 core.int buildCounterTagData = 0; | 7869 core.int buildCounterTagData = 0; |
7870 buildTagData() { | 7870 buildTagData() { |
7871 var o = new api.TagData(); | 7871 var o = new api.TagData(); |
7872 buildCounterTagData++; | 7872 buildCounterTagData++; |
7873 if (buildCounterTagData < 3) { | 7873 if (buildCounterTagData < 3) { |
7874 o.adId = "foo"; | 7874 o.adId = "foo"; |
(...skipping 119 matching lines...) Loading... |
7994 unittest.expect(o.kind, unittest.equals('foo')); | 7994 unittest.expect(o.kind, unittest.equals('foo')); |
7995 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 7995 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
7996 unittest.expect(o.listSize, unittest.equals('foo')); | 7996 unittest.expect(o.listSize, unittest.equals('foo')); |
7997 unittest.expect(o.listSource, unittest.equals('foo')); | 7997 unittest.expect(o.listSource, unittest.equals('foo')); |
7998 unittest.expect(o.name, unittest.equals('foo')); | 7998 unittest.expect(o.name, unittest.equals('foo')); |
7999 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7999 unittest.expect(o.subaccountId, unittest.equals('foo')); |
8000 } | 8000 } |
8001 buildCounterTargetableRemarketingList--; | 8001 buildCounterTargetableRemarketingList--; |
8002 } | 8002 } |
8003 | 8003 |
8004 buildUnnamed2677() { | 8004 buildUnnamed2771() { |
8005 var o = new core.List<api.TargetableRemarketingList>(); | 8005 var o = new core.List<api.TargetableRemarketingList>(); |
8006 o.add(buildTargetableRemarketingList()); | 8006 o.add(buildTargetableRemarketingList()); |
8007 o.add(buildTargetableRemarketingList()); | 8007 o.add(buildTargetableRemarketingList()); |
8008 return o; | 8008 return o; |
8009 } | 8009 } |
8010 | 8010 |
8011 checkUnnamed2677(core.List<api.TargetableRemarketingList> o) { | 8011 checkUnnamed2771(core.List<api.TargetableRemarketingList> o) { |
8012 unittest.expect(o, unittest.hasLength(2)); | 8012 unittest.expect(o, unittest.hasLength(2)); |
8013 checkTargetableRemarketingList(o[0]); | 8013 checkTargetableRemarketingList(o[0]); |
8014 checkTargetableRemarketingList(o[1]); | 8014 checkTargetableRemarketingList(o[1]); |
8015 } | 8015 } |
8016 | 8016 |
8017 core.int buildCounterTargetableRemarketingListsListResponse = 0; | 8017 core.int buildCounterTargetableRemarketingListsListResponse = 0; |
8018 buildTargetableRemarketingListsListResponse() { | 8018 buildTargetableRemarketingListsListResponse() { |
8019 var o = new api.TargetableRemarketingListsListResponse(); | 8019 var o = new api.TargetableRemarketingListsListResponse(); |
8020 buildCounterTargetableRemarketingListsListResponse++; | 8020 buildCounterTargetableRemarketingListsListResponse++; |
8021 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 8021 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
8022 o.kind = "foo"; | 8022 o.kind = "foo"; |
8023 o.nextPageToken = "foo"; | 8023 o.nextPageToken = "foo"; |
8024 o.targetableRemarketingLists = buildUnnamed2677(); | 8024 o.targetableRemarketingLists = buildUnnamed2771(); |
8025 } | 8025 } |
8026 buildCounterTargetableRemarketingListsListResponse--; | 8026 buildCounterTargetableRemarketingListsListResponse--; |
8027 return o; | 8027 return o; |
8028 } | 8028 } |
8029 | 8029 |
8030 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { | 8030 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { |
8031 buildCounterTargetableRemarketingListsListResponse++; | 8031 buildCounterTargetableRemarketingListsListResponse++; |
8032 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 8032 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
8033 unittest.expect(o.kind, unittest.equals('foo')); | 8033 unittest.expect(o.kind, unittest.equals('foo')); |
8034 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8034 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
8035 checkUnnamed2677(o.targetableRemarketingLists); | 8035 checkUnnamed2771(o.targetableRemarketingLists); |
8036 } | 8036 } |
8037 buildCounterTargetableRemarketingListsListResponse--; | 8037 buildCounterTargetableRemarketingListsListResponse--; |
8038 } | 8038 } |
8039 | 8039 |
8040 core.int buildCounterTargetingTemplate = 0; | 8040 core.int buildCounterTargetingTemplate = 0; |
8041 buildTargetingTemplate() { | 8041 buildTargetingTemplate() { |
8042 var o = new api.TargetingTemplate(); | 8042 var o = new api.TargetingTemplate(); |
8043 buildCounterTargetingTemplate++; | 8043 buildCounterTargetingTemplate++; |
8044 if (buildCounterTargetingTemplate < 3) { | 8044 if (buildCounterTargetingTemplate < 3) { |
8045 o.accountId = "foo"; | 8045 o.accountId = "foo"; |
(...skipping 27 matching lines...) Loading... |
8073 unittest.expect(o.kind, unittest.equals('foo')); | 8073 unittest.expect(o.kind, unittest.equals('foo')); |
8074 checkLanguageTargeting(o.languageTargeting); | 8074 checkLanguageTargeting(o.languageTargeting); |
8075 checkListTargetingExpression(o.listTargetingExpression); | 8075 checkListTargetingExpression(o.listTargetingExpression); |
8076 unittest.expect(o.name, unittest.equals('foo')); | 8076 unittest.expect(o.name, unittest.equals('foo')); |
8077 unittest.expect(o.subaccountId, unittest.equals('foo')); | 8077 unittest.expect(o.subaccountId, unittest.equals('foo')); |
8078 checkTechnologyTargeting(o.technologyTargeting); | 8078 checkTechnologyTargeting(o.technologyTargeting); |
8079 } | 8079 } |
8080 buildCounterTargetingTemplate--; | 8080 buildCounterTargetingTemplate--; |
8081 } | 8081 } |
8082 | 8082 |
8083 buildUnnamed2678() { | 8083 buildUnnamed2772() { |
8084 var o = new core.List<api.TargetingTemplate>(); | 8084 var o = new core.List<api.TargetingTemplate>(); |
8085 o.add(buildTargetingTemplate()); | 8085 o.add(buildTargetingTemplate()); |
8086 o.add(buildTargetingTemplate()); | 8086 o.add(buildTargetingTemplate()); |
8087 return o; | 8087 return o; |
8088 } | 8088 } |
8089 | 8089 |
8090 checkUnnamed2678(core.List<api.TargetingTemplate> o) { | 8090 checkUnnamed2772(core.List<api.TargetingTemplate> o) { |
8091 unittest.expect(o, unittest.hasLength(2)); | 8091 unittest.expect(o, unittest.hasLength(2)); |
8092 checkTargetingTemplate(o[0]); | 8092 checkTargetingTemplate(o[0]); |
8093 checkTargetingTemplate(o[1]); | 8093 checkTargetingTemplate(o[1]); |
8094 } | 8094 } |
8095 | 8095 |
8096 core.int buildCounterTargetingTemplatesListResponse = 0; | 8096 core.int buildCounterTargetingTemplatesListResponse = 0; |
8097 buildTargetingTemplatesListResponse() { | 8097 buildTargetingTemplatesListResponse() { |
8098 var o = new api.TargetingTemplatesListResponse(); | 8098 var o = new api.TargetingTemplatesListResponse(); |
8099 buildCounterTargetingTemplatesListResponse++; | 8099 buildCounterTargetingTemplatesListResponse++; |
8100 if (buildCounterTargetingTemplatesListResponse < 3) { | 8100 if (buildCounterTargetingTemplatesListResponse < 3) { |
8101 o.kind = "foo"; | 8101 o.kind = "foo"; |
8102 o.nextPageToken = "foo"; | 8102 o.nextPageToken = "foo"; |
8103 o.targetingTemplates = buildUnnamed2678(); | 8103 o.targetingTemplates = buildUnnamed2772(); |
8104 } | 8104 } |
8105 buildCounterTargetingTemplatesListResponse--; | 8105 buildCounterTargetingTemplatesListResponse--; |
8106 return o; | 8106 return o; |
8107 } | 8107 } |
8108 | 8108 |
8109 checkTargetingTemplatesListResponse(api.TargetingTemplatesListResponse o) { | 8109 checkTargetingTemplatesListResponse(api.TargetingTemplatesListResponse o) { |
8110 buildCounterTargetingTemplatesListResponse++; | 8110 buildCounterTargetingTemplatesListResponse++; |
8111 if (buildCounterTargetingTemplatesListResponse < 3) { | 8111 if (buildCounterTargetingTemplatesListResponse < 3) { |
8112 unittest.expect(o.kind, unittest.equals('foo')); | 8112 unittest.expect(o.kind, unittest.equals('foo')); |
8113 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8113 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
8114 checkUnnamed2678(o.targetingTemplates); | 8114 checkUnnamed2772(o.targetingTemplates); |
8115 } | 8115 } |
8116 buildCounterTargetingTemplatesListResponse--; | 8116 buildCounterTargetingTemplatesListResponse--; |
8117 } | 8117 } |
8118 | 8118 |
8119 buildUnnamed2679() { | 8119 buildUnnamed2773() { |
8120 var o = new core.List<api.Browser>(); | 8120 var o = new core.List<api.Browser>(); |
8121 o.add(buildBrowser()); | 8121 o.add(buildBrowser()); |
8122 o.add(buildBrowser()); | 8122 o.add(buildBrowser()); |
8123 return o; | 8123 return o; |
8124 } | 8124 } |
8125 | 8125 |
8126 checkUnnamed2679(core.List<api.Browser> o) { | 8126 checkUnnamed2773(core.List<api.Browser> o) { |
8127 unittest.expect(o, unittest.hasLength(2)); | 8127 unittest.expect(o, unittest.hasLength(2)); |
8128 checkBrowser(o[0]); | 8128 checkBrowser(o[0]); |
8129 checkBrowser(o[1]); | 8129 checkBrowser(o[1]); |
8130 } | 8130 } |
8131 | 8131 |
8132 buildUnnamed2680() { | 8132 buildUnnamed2774() { |
8133 var o = new core.List<api.ConnectionType>(); | 8133 var o = new core.List<api.ConnectionType>(); |
8134 o.add(buildConnectionType()); | 8134 o.add(buildConnectionType()); |
8135 o.add(buildConnectionType()); | 8135 o.add(buildConnectionType()); |
8136 return o; | 8136 return o; |
8137 } | 8137 } |
8138 | 8138 |
8139 checkUnnamed2680(core.List<api.ConnectionType> o) { | 8139 checkUnnamed2774(core.List<api.ConnectionType> o) { |
8140 unittest.expect(o, unittest.hasLength(2)); | 8140 unittest.expect(o, unittest.hasLength(2)); |
8141 checkConnectionType(o[0]); | 8141 checkConnectionType(o[0]); |
8142 checkConnectionType(o[1]); | 8142 checkConnectionType(o[1]); |
8143 } | 8143 } |
8144 | 8144 |
8145 buildUnnamed2681() { | 8145 buildUnnamed2775() { |
8146 var o = new core.List<api.MobileCarrier>(); | 8146 var o = new core.List<api.MobileCarrier>(); |
8147 o.add(buildMobileCarrier()); | 8147 o.add(buildMobileCarrier()); |
8148 o.add(buildMobileCarrier()); | 8148 o.add(buildMobileCarrier()); |
8149 return o; | 8149 return o; |
8150 } | 8150 } |
8151 | 8151 |
8152 checkUnnamed2681(core.List<api.MobileCarrier> o) { | 8152 checkUnnamed2775(core.List<api.MobileCarrier> o) { |
8153 unittest.expect(o, unittest.hasLength(2)); | 8153 unittest.expect(o, unittest.hasLength(2)); |
8154 checkMobileCarrier(o[0]); | 8154 checkMobileCarrier(o[0]); |
8155 checkMobileCarrier(o[1]); | 8155 checkMobileCarrier(o[1]); |
8156 } | 8156 } |
8157 | 8157 |
8158 buildUnnamed2682() { | 8158 buildUnnamed2776() { |
8159 var o = new core.List<api.OperatingSystemVersion>(); | 8159 var o = new core.List<api.OperatingSystemVersion>(); |
8160 o.add(buildOperatingSystemVersion()); | 8160 o.add(buildOperatingSystemVersion()); |
8161 o.add(buildOperatingSystemVersion()); | 8161 o.add(buildOperatingSystemVersion()); |
8162 return o; | 8162 return o; |
8163 } | 8163 } |
8164 | 8164 |
8165 checkUnnamed2682(core.List<api.OperatingSystemVersion> o) { | 8165 checkUnnamed2776(core.List<api.OperatingSystemVersion> o) { |
8166 unittest.expect(o, unittest.hasLength(2)); | 8166 unittest.expect(o, unittest.hasLength(2)); |
8167 checkOperatingSystemVersion(o[0]); | 8167 checkOperatingSystemVersion(o[0]); |
8168 checkOperatingSystemVersion(o[1]); | 8168 checkOperatingSystemVersion(o[1]); |
8169 } | 8169 } |
8170 | 8170 |
8171 buildUnnamed2683() { | 8171 buildUnnamed2777() { |
8172 var o = new core.List<api.OperatingSystem>(); | 8172 var o = new core.List<api.OperatingSystem>(); |
8173 o.add(buildOperatingSystem()); | 8173 o.add(buildOperatingSystem()); |
8174 o.add(buildOperatingSystem()); | 8174 o.add(buildOperatingSystem()); |
8175 return o; | 8175 return o; |
8176 } | 8176 } |
8177 | 8177 |
8178 checkUnnamed2683(core.List<api.OperatingSystem> o) { | 8178 checkUnnamed2777(core.List<api.OperatingSystem> o) { |
8179 unittest.expect(o, unittest.hasLength(2)); | 8179 unittest.expect(o, unittest.hasLength(2)); |
8180 checkOperatingSystem(o[0]); | 8180 checkOperatingSystem(o[0]); |
8181 checkOperatingSystem(o[1]); | 8181 checkOperatingSystem(o[1]); |
8182 } | 8182 } |
8183 | 8183 |
8184 buildUnnamed2684() { | 8184 buildUnnamed2778() { |
8185 var o = new core.List<api.PlatformType>(); | 8185 var o = new core.List<api.PlatformType>(); |
8186 o.add(buildPlatformType()); | 8186 o.add(buildPlatformType()); |
8187 o.add(buildPlatformType()); | 8187 o.add(buildPlatformType()); |
8188 return o; | 8188 return o; |
8189 } | 8189 } |
8190 | 8190 |
8191 checkUnnamed2684(core.List<api.PlatformType> o) { | 8191 checkUnnamed2778(core.List<api.PlatformType> o) { |
8192 unittest.expect(o, unittest.hasLength(2)); | 8192 unittest.expect(o, unittest.hasLength(2)); |
8193 checkPlatformType(o[0]); | 8193 checkPlatformType(o[0]); |
8194 checkPlatformType(o[1]); | 8194 checkPlatformType(o[1]); |
8195 } | 8195 } |
8196 | 8196 |
8197 core.int buildCounterTechnologyTargeting = 0; | 8197 core.int buildCounterTechnologyTargeting = 0; |
8198 buildTechnologyTargeting() { | 8198 buildTechnologyTargeting() { |
8199 var o = new api.TechnologyTargeting(); | 8199 var o = new api.TechnologyTargeting(); |
8200 buildCounterTechnologyTargeting++; | 8200 buildCounterTechnologyTargeting++; |
8201 if (buildCounterTechnologyTargeting < 3) { | 8201 if (buildCounterTechnologyTargeting < 3) { |
8202 o.browsers = buildUnnamed2679(); | 8202 o.browsers = buildUnnamed2773(); |
8203 o.connectionTypes = buildUnnamed2680(); | 8203 o.connectionTypes = buildUnnamed2774(); |
8204 o.mobileCarriers = buildUnnamed2681(); | 8204 o.mobileCarriers = buildUnnamed2775(); |
8205 o.operatingSystemVersions = buildUnnamed2682(); | 8205 o.operatingSystemVersions = buildUnnamed2776(); |
8206 o.operatingSystems = buildUnnamed2683(); | 8206 o.operatingSystems = buildUnnamed2777(); |
8207 o.platformTypes = buildUnnamed2684(); | 8207 o.platformTypes = buildUnnamed2778(); |
8208 } | 8208 } |
8209 buildCounterTechnologyTargeting--; | 8209 buildCounterTechnologyTargeting--; |
8210 return o; | 8210 return o; |
8211 } | 8211 } |
8212 | 8212 |
8213 checkTechnologyTargeting(api.TechnologyTargeting o) { | 8213 checkTechnologyTargeting(api.TechnologyTargeting o) { |
8214 buildCounterTechnologyTargeting++; | 8214 buildCounterTechnologyTargeting++; |
8215 if (buildCounterTechnologyTargeting < 3) { | 8215 if (buildCounterTechnologyTargeting < 3) { |
8216 checkUnnamed2679(o.browsers); | 8216 checkUnnamed2773(o.browsers); |
8217 checkUnnamed2680(o.connectionTypes); | 8217 checkUnnamed2774(o.connectionTypes); |
8218 checkUnnamed2681(o.mobileCarriers); | 8218 checkUnnamed2775(o.mobileCarriers); |
8219 checkUnnamed2682(o.operatingSystemVersions); | 8219 checkUnnamed2776(o.operatingSystemVersions); |
8220 checkUnnamed2683(o.operatingSystems); | 8220 checkUnnamed2777(o.operatingSystems); |
8221 checkUnnamed2684(o.platformTypes); | 8221 checkUnnamed2778(o.platformTypes); |
8222 } | 8222 } |
8223 buildCounterTechnologyTargeting--; | 8223 buildCounterTechnologyTargeting--; |
8224 } | 8224 } |
8225 | 8225 |
8226 core.int buildCounterThirdPartyAuthenticationToken = 0; | 8226 core.int buildCounterThirdPartyAuthenticationToken = 0; |
8227 buildThirdPartyAuthenticationToken() { | 8227 buildThirdPartyAuthenticationToken() { |
8228 var o = new api.ThirdPartyAuthenticationToken(); | 8228 var o = new api.ThirdPartyAuthenticationToken(); |
8229 buildCounterThirdPartyAuthenticationToken++; | 8229 buildCounterThirdPartyAuthenticationToken++; |
8230 if (buildCounterThirdPartyAuthenticationToken < 3) { | 8230 if (buildCounterThirdPartyAuthenticationToken < 3) { |
8231 o.name = "foo"; | 8231 o.name = "foo"; |
(...skipping 82 matching lines...) Loading... |
8314 unittest.expect(o.etag, unittest.equals('foo')); | 8314 unittest.expect(o.etag, unittest.equals('foo')); |
8315 unittest.expect(o.kind, unittest.equals('foo')); | 8315 unittest.expect(o.kind, unittest.equals('foo')); |
8316 unittest.expect(o.profileId, unittest.equals('foo')); | 8316 unittest.expect(o.profileId, unittest.equals('foo')); |
8317 unittest.expect(o.subAccountId, unittest.equals('foo')); | 8317 unittest.expect(o.subAccountId, unittest.equals('foo')); |
8318 unittest.expect(o.subAccountName, unittest.equals('foo')); | 8318 unittest.expect(o.subAccountName, unittest.equals('foo')); |
8319 unittest.expect(o.userName, unittest.equals('foo')); | 8319 unittest.expect(o.userName, unittest.equals('foo')); |
8320 } | 8320 } |
8321 buildCounterUserProfile--; | 8321 buildCounterUserProfile--; |
8322 } | 8322 } |
8323 | 8323 |
8324 buildUnnamed2685() { | 8324 buildUnnamed2779() { |
8325 var o = new core.List<api.UserProfile>(); | 8325 var o = new core.List<api.UserProfile>(); |
8326 o.add(buildUserProfile()); | 8326 o.add(buildUserProfile()); |
8327 o.add(buildUserProfile()); | 8327 o.add(buildUserProfile()); |
8328 return o; | 8328 return o; |
8329 } | 8329 } |
8330 | 8330 |
8331 checkUnnamed2685(core.List<api.UserProfile> o) { | 8331 checkUnnamed2779(core.List<api.UserProfile> o) { |
8332 unittest.expect(o, unittest.hasLength(2)); | 8332 unittest.expect(o, unittest.hasLength(2)); |
8333 checkUserProfile(o[0]); | 8333 checkUserProfile(o[0]); |
8334 checkUserProfile(o[1]); | 8334 checkUserProfile(o[1]); |
8335 } | 8335 } |
8336 | 8336 |
8337 core.int buildCounterUserProfileList = 0; | 8337 core.int buildCounterUserProfileList = 0; |
8338 buildUserProfileList() { | 8338 buildUserProfileList() { |
8339 var o = new api.UserProfileList(); | 8339 var o = new api.UserProfileList(); |
8340 buildCounterUserProfileList++; | 8340 buildCounterUserProfileList++; |
8341 if (buildCounterUserProfileList < 3) { | 8341 if (buildCounterUserProfileList < 3) { |
8342 o.etag = "foo"; | 8342 o.etag = "foo"; |
8343 o.items = buildUnnamed2685(); | 8343 o.items = buildUnnamed2779(); |
8344 o.kind = "foo"; | 8344 o.kind = "foo"; |
8345 } | 8345 } |
8346 buildCounterUserProfileList--; | 8346 buildCounterUserProfileList--; |
8347 return o; | 8347 return o; |
8348 } | 8348 } |
8349 | 8349 |
8350 checkUserProfileList(api.UserProfileList o) { | 8350 checkUserProfileList(api.UserProfileList o) { |
8351 buildCounterUserProfileList++; | 8351 buildCounterUserProfileList++; |
8352 if (buildCounterUserProfileList < 3) { | 8352 if (buildCounterUserProfileList < 3) { |
8353 unittest.expect(o.etag, unittest.equals('foo')); | 8353 unittest.expect(o.etag, unittest.equals('foo')); |
8354 checkUnnamed2685(o.items); | 8354 checkUnnamed2779(o.items); |
8355 unittest.expect(o.kind, unittest.equals('foo')); | 8355 unittest.expect(o.kind, unittest.equals('foo')); |
8356 } | 8356 } |
8357 buildCounterUserProfileList--; | 8357 buildCounterUserProfileList--; |
8358 } | 8358 } |
8359 | 8359 |
8360 buildUnnamed2686() { | 8360 buildUnnamed2780() { |
8361 var o = new core.List<api.UserRolePermission>(); | 8361 var o = new core.List<api.UserRolePermission>(); |
8362 o.add(buildUserRolePermission()); | 8362 o.add(buildUserRolePermission()); |
8363 o.add(buildUserRolePermission()); | 8363 o.add(buildUserRolePermission()); |
8364 return o; | 8364 return o; |
8365 } | 8365 } |
8366 | 8366 |
8367 checkUnnamed2686(core.List<api.UserRolePermission> o) { | 8367 checkUnnamed2780(core.List<api.UserRolePermission> o) { |
8368 unittest.expect(o, unittest.hasLength(2)); | 8368 unittest.expect(o, unittest.hasLength(2)); |
8369 checkUserRolePermission(o[0]); | 8369 checkUserRolePermission(o[0]); |
8370 checkUserRolePermission(o[1]); | 8370 checkUserRolePermission(o[1]); |
8371 } | 8371 } |
8372 | 8372 |
8373 core.int buildCounterUserRole = 0; | 8373 core.int buildCounterUserRole = 0; |
8374 buildUserRole() { | 8374 buildUserRole() { |
8375 var o = new api.UserRole(); | 8375 var o = new api.UserRole(); |
8376 buildCounterUserRole++; | 8376 buildCounterUserRole++; |
8377 if (buildCounterUserRole < 3) { | 8377 if (buildCounterUserRole < 3) { |
8378 o.accountId = "foo"; | 8378 o.accountId = "foo"; |
8379 o.defaultUserRole = true; | 8379 o.defaultUserRole = true; |
8380 o.id = "foo"; | 8380 o.id = "foo"; |
8381 o.kind = "foo"; | 8381 o.kind = "foo"; |
8382 o.name = "foo"; | 8382 o.name = "foo"; |
8383 o.parentUserRoleId = "foo"; | 8383 o.parentUserRoleId = "foo"; |
8384 o.permissions = buildUnnamed2686(); | 8384 o.permissions = buildUnnamed2780(); |
8385 o.subaccountId = "foo"; | 8385 o.subaccountId = "foo"; |
8386 } | 8386 } |
8387 buildCounterUserRole--; | 8387 buildCounterUserRole--; |
8388 return o; | 8388 return o; |
8389 } | 8389 } |
8390 | 8390 |
8391 checkUserRole(api.UserRole o) { | 8391 checkUserRole(api.UserRole o) { |
8392 buildCounterUserRole++; | 8392 buildCounterUserRole++; |
8393 if (buildCounterUserRole < 3) { | 8393 if (buildCounterUserRole < 3) { |
8394 unittest.expect(o.accountId, unittest.equals('foo')); | 8394 unittest.expect(o.accountId, unittest.equals('foo')); |
8395 unittest.expect(o.defaultUserRole, unittest.isTrue); | 8395 unittest.expect(o.defaultUserRole, unittest.isTrue); |
8396 unittest.expect(o.id, unittest.equals('foo')); | 8396 unittest.expect(o.id, unittest.equals('foo')); |
8397 unittest.expect(o.kind, unittest.equals('foo')); | 8397 unittest.expect(o.kind, unittest.equals('foo')); |
8398 unittest.expect(o.name, unittest.equals('foo')); | 8398 unittest.expect(o.name, unittest.equals('foo')); |
8399 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); | 8399 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); |
8400 checkUnnamed2686(o.permissions); | 8400 checkUnnamed2780(o.permissions); |
8401 unittest.expect(o.subaccountId, unittest.equals('foo')); | 8401 unittest.expect(o.subaccountId, unittest.equals('foo')); |
8402 } | 8402 } |
8403 buildCounterUserRole--; | 8403 buildCounterUserRole--; |
8404 } | 8404 } |
8405 | 8405 |
8406 core.int buildCounterUserRolePermission = 0; | 8406 core.int buildCounterUserRolePermission = 0; |
8407 buildUserRolePermission() { | 8407 buildUserRolePermission() { |
8408 var o = new api.UserRolePermission(); | 8408 var o = new api.UserRolePermission(); |
8409 buildCounterUserRolePermission++; | 8409 buildCounterUserRolePermission++; |
8410 if (buildCounterUserRolePermission < 3) { | 8410 if (buildCounterUserRolePermission < 3) { |
(...skipping 35 matching lines...) Loading... |
8446 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { | 8446 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { |
8447 buildCounterUserRolePermissionGroup++; | 8447 buildCounterUserRolePermissionGroup++; |
8448 if (buildCounterUserRolePermissionGroup < 3) { | 8448 if (buildCounterUserRolePermissionGroup < 3) { |
8449 unittest.expect(o.id, unittest.equals('foo')); | 8449 unittest.expect(o.id, unittest.equals('foo')); |
8450 unittest.expect(o.kind, unittest.equals('foo')); | 8450 unittest.expect(o.kind, unittest.equals('foo')); |
8451 unittest.expect(o.name, unittest.equals('foo')); | 8451 unittest.expect(o.name, unittest.equals('foo')); |
8452 } | 8452 } |
8453 buildCounterUserRolePermissionGroup--; | 8453 buildCounterUserRolePermissionGroup--; |
8454 } | 8454 } |
8455 | 8455 |
8456 buildUnnamed2687() { | 8456 buildUnnamed2781() { |
8457 var o = new core.List<api.UserRolePermissionGroup>(); | 8457 var o = new core.List<api.UserRolePermissionGroup>(); |
8458 o.add(buildUserRolePermissionGroup()); | 8458 o.add(buildUserRolePermissionGroup()); |
8459 o.add(buildUserRolePermissionGroup()); | 8459 o.add(buildUserRolePermissionGroup()); |
8460 return o; | 8460 return o; |
8461 } | 8461 } |
8462 | 8462 |
8463 checkUnnamed2687(core.List<api.UserRolePermissionGroup> o) { | 8463 checkUnnamed2781(core.List<api.UserRolePermissionGroup> o) { |
8464 unittest.expect(o, unittest.hasLength(2)); | 8464 unittest.expect(o, unittest.hasLength(2)); |
8465 checkUserRolePermissionGroup(o[0]); | 8465 checkUserRolePermissionGroup(o[0]); |
8466 checkUserRolePermissionGroup(o[1]); | 8466 checkUserRolePermissionGroup(o[1]); |
8467 } | 8467 } |
8468 | 8468 |
8469 core.int buildCounterUserRolePermissionGroupsListResponse = 0; | 8469 core.int buildCounterUserRolePermissionGroupsListResponse = 0; |
8470 buildUserRolePermissionGroupsListResponse() { | 8470 buildUserRolePermissionGroupsListResponse() { |
8471 var o = new api.UserRolePermissionGroupsListResponse(); | 8471 var o = new api.UserRolePermissionGroupsListResponse(); |
8472 buildCounterUserRolePermissionGroupsListResponse++; | 8472 buildCounterUserRolePermissionGroupsListResponse++; |
8473 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 8473 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
8474 o.kind = "foo"; | 8474 o.kind = "foo"; |
8475 o.userRolePermissionGroups = buildUnnamed2687(); | 8475 o.userRolePermissionGroups = buildUnnamed2781(); |
8476 } | 8476 } |
8477 buildCounterUserRolePermissionGroupsListResponse--; | 8477 buildCounterUserRolePermissionGroupsListResponse--; |
8478 return o; | 8478 return o; |
8479 } | 8479 } |
8480 | 8480 |
8481 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { | 8481 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { |
8482 buildCounterUserRolePermissionGroupsListResponse++; | 8482 buildCounterUserRolePermissionGroupsListResponse++; |
8483 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 8483 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
8484 unittest.expect(o.kind, unittest.equals('foo')); | 8484 unittest.expect(o.kind, unittest.equals('foo')); |
8485 checkUnnamed2687(o.userRolePermissionGroups); | 8485 checkUnnamed2781(o.userRolePermissionGroups); |
8486 } | 8486 } |
8487 buildCounterUserRolePermissionGroupsListResponse--; | 8487 buildCounterUserRolePermissionGroupsListResponse--; |
8488 } | 8488 } |
8489 | 8489 |
8490 buildUnnamed2688() { | 8490 buildUnnamed2782() { |
8491 var o = new core.List<api.UserRolePermission>(); | 8491 var o = new core.List<api.UserRolePermission>(); |
8492 o.add(buildUserRolePermission()); | 8492 o.add(buildUserRolePermission()); |
8493 o.add(buildUserRolePermission()); | 8493 o.add(buildUserRolePermission()); |
8494 return o; | 8494 return o; |
8495 } | 8495 } |
8496 | 8496 |
8497 checkUnnamed2688(core.List<api.UserRolePermission> o) { | 8497 checkUnnamed2782(core.List<api.UserRolePermission> o) { |
8498 unittest.expect(o, unittest.hasLength(2)); | 8498 unittest.expect(o, unittest.hasLength(2)); |
8499 checkUserRolePermission(o[0]); | 8499 checkUserRolePermission(o[0]); |
8500 checkUserRolePermission(o[1]); | 8500 checkUserRolePermission(o[1]); |
8501 } | 8501 } |
8502 | 8502 |
8503 core.int buildCounterUserRolePermissionsListResponse = 0; | 8503 core.int buildCounterUserRolePermissionsListResponse = 0; |
8504 buildUserRolePermissionsListResponse() { | 8504 buildUserRolePermissionsListResponse() { |
8505 var o = new api.UserRolePermissionsListResponse(); | 8505 var o = new api.UserRolePermissionsListResponse(); |
8506 buildCounterUserRolePermissionsListResponse++; | 8506 buildCounterUserRolePermissionsListResponse++; |
8507 if (buildCounterUserRolePermissionsListResponse < 3) { | 8507 if (buildCounterUserRolePermissionsListResponse < 3) { |
8508 o.kind = "foo"; | 8508 o.kind = "foo"; |
8509 o.userRolePermissions = buildUnnamed2688(); | 8509 o.userRolePermissions = buildUnnamed2782(); |
8510 } | 8510 } |
8511 buildCounterUserRolePermissionsListResponse--; | 8511 buildCounterUserRolePermissionsListResponse--; |
8512 return o; | 8512 return o; |
8513 } | 8513 } |
8514 | 8514 |
8515 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { | 8515 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { |
8516 buildCounterUserRolePermissionsListResponse++; | 8516 buildCounterUserRolePermissionsListResponse++; |
8517 if (buildCounterUserRolePermissionsListResponse < 3) { | 8517 if (buildCounterUserRolePermissionsListResponse < 3) { |
8518 unittest.expect(o.kind, unittest.equals('foo')); | 8518 unittest.expect(o.kind, unittest.equals('foo')); |
8519 checkUnnamed2688(o.userRolePermissions); | 8519 checkUnnamed2782(o.userRolePermissions); |
8520 } | 8520 } |
8521 buildCounterUserRolePermissionsListResponse--; | 8521 buildCounterUserRolePermissionsListResponse--; |
8522 } | 8522 } |
8523 | 8523 |
8524 buildUnnamed2689() { | 8524 buildUnnamed2783() { |
8525 var o = new core.List<api.UserRole>(); | 8525 var o = new core.List<api.UserRole>(); |
8526 o.add(buildUserRole()); | 8526 o.add(buildUserRole()); |
8527 o.add(buildUserRole()); | 8527 o.add(buildUserRole()); |
8528 return o; | 8528 return o; |
8529 } | 8529 } |
8530 | 8530 |
8531 checkUnnamed2689(core.List<api.UserRole> o) { | 8531 checkUnnamed2783(core.List<api.UserRole> o) { |
8532 unittest.expect(o, unittest.hasLength(2)); | 8532 unittest.expect(o, unittest.hasLength(2)); |
8533 checkUserRole(o[0]); | 8533 checkUserRole(o[0]); |
8534 checkUserRole(o[1]); | 8534 checkUserRole(o[1]); |
8535 } | 8535 } |
8536 | 8536 |
8537 core.int buildCounterUserRolesListResponse = 0; | 8537 core.int buildCounterUserRolesListResponse = 0; |
8538 buildUserRolesListResponse() { | 8538 buildUserRolesListResponse() { |
8539 var o = new api.UserRolesListResponse(); | 8539 var o = new api.UserRolesListResponse(); |
8540 buildCounterUserRolesListResponse++; | 8540 buildCounterUserRolesListResponse++; |
8541 if (buildCounterUserRolesListResponse < 3) { | 8541 if (buildCounterUserRolesListResponse < 3) { |
8542 o.kind = "foo"; | 8542 o.kind = "foo"; |
8543 o.nextPageToken = "foo"; | 8543 o.nextPageToken = "foo"; |
8544 o.userRoles = buildUnnamed2689(); | 8544 o.userRoles = buildUnnamed2783(); |
8545 } | 8545 } |
8546 buildCounterUserRolesListResponse--; | 8546 buildCounterUserRolesListResponse--; |
8547 return o; | 8547 return o; |
8548 } | 8548 } |
8549 | 8549 |
8550 checkUserRolesListResponse(api.UserRolesListResponse o) { | 8550 checkUserRolesListResponse(api.UserRolesListResponse o) { |
8551 buildCounterUserRolesListResponse++; | 8551 buildCounterUserRolesListResponse++; |
8552 if (buildCounterUserRolesListResponse < 3) { | 8552 if (buildCounterUserRolesListResponse < 3) { |
8553 unittest.expect(o.kind, unittest.equals('foo')); | 8553 unittest.expect(o.kind, unittest.equals('foo')); |
8554 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8554 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
8555 checkUnnamed2689(o.userRoles); | 8555 checkUnnamed2783(o.userRoles); |
8556 } | 8556 } |
8557 buildCounterUserRolesListResponse--; | 8557 buildCounterUserRolesListResponse--; |
8558 } | 8558 } |
8559 | 8559 |
8560 buildUnnamed2690() { | 8560 buildUnnamed2784() { |
8561 var o = new core.List<core.String>(); | 8561 var o = new core.List<core.String>(); |
8562 o.add("foo"); | 8562 o.add("foo"); |
8563 o.add("foo"); | 8563 o.add("foo"); |
8564 return o; | 8564 return o; |
8565 } | 8565 } |
8566 | 8566 |
8567 checkUnnamed2690(core.List<core.String> o) { | 8567 checkUnnamed2784(core.List<core.String> o) { |
8568 unittest.expect(o, unittest.hasLength(2)); | 8568 unittest.expect(o, unittest.hasLength(2)); |
8569 unittest.expect(o[0], unittest.equals('foo')); | 8569 unittest.expect(o[0], unittest.equals('foo')); |
8570 unittest.expect(o[1], unittest.equals('foo')); | 8570 unittest.expect(o[1], unittest.equals('foo')); |
8571 } | 8571 } |
8572 | 8572 |
8573 buildUnnamed2691() { | 8573 buildUnnamed2785() { |
8574 var o = new core.List<core.String>(); | 8574 var o = new core.List<core.String>(); |
8575 o.add("foo"); | 8575 o.add("foo"); |
8576 o.add("foo"); | 8576 o.add("foo"); |
8577 return o; | 8577 return o; |
8578 } | 8578 } |
8579 | 8579 |
8580 checkUnnamed2691(core.List<core.String> o) { | 8580 checkUnnamed2785(core.List<core.String> o) { |
8581 unittest.expect(o, unittest.hasLength(2)); | 8581 unittest.expect(o, unittest.hasLength(2)); |
8582 unittest.expect(o[0], unittest.equals('foo')); | 8582 unittest.expect(o[0], unittest.equals('foo')); |
8583 unittest.expect(o[1], unittest.equals('foo')); | 8583 unittest.expect(o[1], unittest.equals('foo')); |
8584 } | 8584 } |
8585 | 8585 |
8586 buildUnnamed2692() { | 8586 buildUnnamed2786() { |
8587 var o = new core.List<core.String>(); | 8587 var o = new core.List<core.String>(); |
8588 o.add("foo"); | 8588 o.add("foo"); |
8589 o.add("foo"); | 8589 o.add("foo"); |
8590 return o; | 8590 return o; |
8591 } | 8591 } |
8592 | 8592 |
8593 checkUnnamed2692(core.List<core.String> o) { | 8593 checkUnnamed2786(core.List<core.String> o) { |
8594 unittest.expect(o, unittest.hasLength(2)); | 8594 unittest.expect(o, unittest.hasLength(2)); |
8595 unittest.expect(o[0], unittest.equals('foo')); | 8595 unittest.expect(o[0], unittest.equals('foo')); |
8596 unittest.expect(o[1], unittest.equals('foo')); | 8596 unittest.expect(o[1], unittest.equals('foo')); |
8597 } | 8597 } |
8598 | 8598 |
8599 buildUnnamed2693() { | 8599 buildUnnamed2787() { |
8600 var o = new core.List<core.String>(); | 8600 var o = new core.List<core.String>(); |
8601 o.add("foo"); | 8601 o.add("foo"); |
8602 o.add("foo"); | 8602 o.add("foo"); |
8603 return o; | 8603 return o; |
8604 } | 8604 } |
8605 | 8605 |
8606 checkUnnamed2693(core.List<core.String> o) { | 8606 checkUnnamed2787(core.List<core.String> o) { |
8607 unittest.expect(o, unittest.hasLength(2)); | 8607 unittest.expect(o, unittest.hasLength(2)); |
8608 unittest.expect(o[0], unittest.equals('foo')); | 8608 unittest.expect(o[0], unittest.equals('foo')); |
8609 unittest.expect(o[1], unittest.equals('foo')); | 8609 unittest.expect(o[1], unittest.equals('foo')); |
8610 } | 8610 } |
8611 | 8611 |
8612 buildUnnamed2694() { | 8612 buildUnnamed2788() { |
8613 var o = new core.List<core.String>(); | 8613 var o = new core.List<core.String>(); |
8614 o.add("foo"); | 8614 o.add("foo"); |
8615 o.add("foo"); | 8615 o.add("foo"); |
8616 return o; | 8616 return o; |
8617 } | 8617 } |
8618 | 8618 |
8619 checkUnnamed2694(core.List<core.String> o) { | 8619 checkUnnamed2788(core.List<core.String> o) { |
8620 unittest.expect(o, unittest.hasLength(2)); | 8620 unittest.expect(o, unittest.hasLength(2)); |
8621 unittest.expect(o[0], unittest.equals('foo')); | 8621 unittest.expect(o[0], unittest.equals('foo')); |
8622 unittest.expect(o[1], unittest.equals('foo')); | 8622 unittest.expect(o[1], unittest.equals('foo')); |
8623 } | 8623 } |
8624 | 8624 |
8625 buildUnnamed2695() { | 8625 buildUnnamed2789() { |
8626 var o = new core.List<core.String>(); | 8626 var o = new core.List<core.String>(); |
8627 o.add("foo"); | 8627 o.add("foo"); |
8628 o.add("foo"); | 8628 o.add("foo"); |
8629 return o; | 8629 return o; |
8630 } | 8630 } |
8631 | 8631 |
8632 checkUnnamed2695(core.List<core.String> o) { | 8632 checkUnnamed2789(core.List<core.String> o) { |
8633 unittest.expect(o, unittest.hasLength(2)); | 8633 unittest.expect(o, unittest.hasLength(2)); |
8634 unittest.expect(o[0], unittest.equals('foo')); | 8634 unittest.expect(o[0], unittest.equals('foo')); |
8635 unittest.expect(o[1], unittest.equals('foo')); | 8635 unittest.expect(o[1], unittest.equals('foo')); |
8636 } | 8636 } |
8637 | 8637 |
8638 buildUnnamed2696() { | 8638 buildUnnamed2790() { |
8639 var o = new core.List<core.String>(); | 8639 var o = new core.List<core.String>(); |
8640 o.add("foo"); | 8640 o.add("foo"); |
8641 o.add("foo"); | 8641 o.add("foo"); |
8642 return o; | 8642 return o; |
8643 } | 8643 } |
8644 | 8644 |
8645 checkUnnamed2696(core.List<core.String> o) { | 8645 checkUnnamed2790(core.List<core.String> o) { |
8646 unittest.expect(o, unittest.hasLength(2)); | 8646 unittest.expect(o, unittest.hasLength(2)); |
8647 unittest.expect(o[0], unittest.equals('foo')); | 8647 unittest.expect(o[0], unittest.equals('foo')); |
8648 unittest.expect(o[1], unittest.equals('foo')); | 8648 unittest.expect(o[1], unittest.equals('foo')); |
8649 } | 8649 } |
8650 | 8650 |
8651 buildUnnamed2697() { | 8651 buildUnnamed2791() { |
8652 var o = new core.List<core.String>(); | 8652 var o = new core.List<core.String>(); |
8653 o.add("foo"); | 8653 o.add("foo"); |
8654 o.add("foo"); | 8654 o.add("foo"); |
8655 return o; | 8655 return o; |
8656 } | 8656 } |
8657 | 8657 |
8658 checkUnnamed2697(core.List<core.String> o) { | 8658 checkUnnamed2791(core.List<core.String> o) { |
8659 unittest.expect(o, unittest.hasLength(2)); | 8659 unittest.expect(o, unittest.hasLength(2)); |
8660 unittest.expect(o[0], unittest.equals('foo')); | 8660 unittest.expect(o[0], unittest.equals('foo')); |
8661 unittest.expect(o[1], unittest.equals('foo')); | 8661 unittest.expect(o[1], unittest.equals('foo')); |
8662 } | 8662 } |
8663 | 8663 |
8664 buildUnnamed2698() { | 8664 buildUnnamed2792() { |
8665 var o = new core.List<core.String>(); | 8665 var o = new core.List<core.String>(); |
8666 o.add("foo"); | 8666 o.add("foo"); |
8667 o.add("foo"); | 8667 o.add("foo"); |
8668 return o; | 8668 return o; |
8669 } | 8669 } |
8670 | 8670 |
8671 checkUnnamed2698(core.List<core.String> o) { | 8671 checkUnnamed2792(core.List<core.String> o) { |
8672 unittest.expect(o, unittest.hasLength(2)); | 8672 unittest.expect(o, unittest.hasLength(2)); |
8673 unittest.expect(o[0], unittest.equals('foo')); | 8673 unittest.expect(o[0], unittest.equals('foo')); |
8674 unittest.expect(o[1], unittest.equals('foo')); | 8674 unittest.expect(o[1], unittest.equals('foo')); |
8675 } | 8675 } |
8676 | 8676 |
8677 buildUnnamed2699() { | 8677 buildUnnamed2793() { |
8678 var o = new core.List<core.String>(); | 8678 var o = new core.List<core.String>(); |
8679 o.add("foo"); | 8679 o.add("foo"); |
8680 o.add("foo"); | 8680 o.add("foo"); |
8681 return o; | 8681 return o; |
8682 } | 8682 } |
8683 | 8683 |
8684 checkUnnamed2699(core.List<core.String> o) { | 8684 checkUnnamed2793(core.List<core.String> o) { |
8685 unittest.expect(o, unittest.hasLength(2)); | 8685 unittest.expect(o, unittest.hasLength(2)); |
8686 unittest.expect(o[0], unittest.equals('foo')); | 8686 unittest.expect(o[0], unittest.equals('foo')); |
8687 unittest.expect(o[1], unittest.equals('foo')); | 8687 unittest.expect(o[1], unittest.equals('foo')); |
8688 } | 8688 } |
8689 | 8689 |
8690 buildUnnamed2700() { | 8690 buildUnnamed2794() { |
8691 var o = new core.List<core.String>(); | 8691 var o = new core.List<core.String>(); |
8692 o.add("foo"); | 8692 o.add("foo"); |
8693 o.add("foo"); | 8693 o.add("foo"); |
8694 return o; | 8694 return o; |
8695 } | 8695 } |
8696 | 8696 |
8697 checkUnnamed2700(core.List<core.String> o) { | 8697 checkUnnamed2794(core.List<core.String> o) { |
8698 unittest.expect(o, unittest.hasLength(2)); | 8698 unittest.expect(o, unittest.hasLength(2)); |
8699 unittest.expect(o[0], unittest.equals('foo')); | 8699 unittest.expect(o[0], unittest.equals('foo')); |
8700 unittest.expect(o[1], unittest.equals('foo')); | 8700 unittest.expect(o[1], unittest.equals('foo')); |
8701 } | 8701 } |
8702 | 8702 |
8703 buildUnnamed2701() { | 8703 buildUnnamed2795() { |
8704 var o = new core.List<core.String>(); | 8704 var o = new core.List<core.String>(); |
8705 o.add("foo"); | 8705 o.add("foo"); |
8706 o.add("foo"); | 8706 o.add("foo"); |
8707 return o; | 8707 return o; |
8708 } | 8708 } |
8709 | 8709 |
8710 checkUnnamed2701(core.List<core.String> o) { | 8710 checkUnnamed2795(core.List<core.String> o) { |
8711 unittest.expect(o, unittest.hasLength(2)); | 8711 unittest.expect(o, unittest.hasLength(2)); |
8712 unittest.expect(o[0], unittest.equals('foo')); | 8712 unittest.expect(o[0], unittest.equals('foo')); |
8713 unittest.expect(o[1], unittest.equals('foo')); | 8713 unittest.expect(o[1], unittest.equals('foo')); |
8714 } | 8714 } |
8715 | 8715 |
8716 buildUnnamed2702() { | 8716 buildUnnamed2796() { |
8717 var o = new core.List<core.String>(); | 8717 var o = new core.List<core.String>(); |
8718 o.add("foo"); | 8718 o.add("foo"); |
8719 o.add("foo"); | 8719 o.add("foo"); |
8720 return o; | 8720 return o; |
8721 } | 8721 } |
8722 | 8722 |
8723 checkUnnamed2702(core.List<core.String> o) { | 8723 checkUnnamed2796(core.List<core.String> o) { |
8724 unittest.expect(o, unittest.hasLength(2)); | 8724 unittest.expect(o, unittest.hasLength(2)); |
8725 unittest.expect(o[0], unittest.equals('foo')); | 8725 unittest.expect(o[0], unittest.equals('foo')); |
8726 unittest.expect(o[1], unittest.equals('foo')); | 8726 unittest.expect(o[1], unittest.equals('foo')); |
8727 } | 8727 } |
8728 | 8728 |
8729 buildUnnamed2703() { | 8729 buildUnnamed2797() { |
8730 var o = new core.List<core.String>(); | 8730 var o = new core.List<core.String>(); |
8731 o.add("foo"); | 8731 o.add("foo"); |
8732 o.add("foo"); | 8732 o.add("foo"); |
8733 return o; | 8733 return o; |
8734 } | 8734 } |
8735 | 8735 |
8736 checkUnnamed2703(core.List<core.String> o) { | 8736 checkUnnamed2797(core.List<core.String> o) { |
8737 unittest.expect(o, unittest.hasLength(2)); | 8737 unittest.expect(o, unittest.hasLength(2)); |
8738 unittest.expect(o[0], unittest.equals('foo')); | 8738 unittest.expect(o[0], unittest.equals('foo')); |
8739 unittest.expect(o[1], unittest.equals('foo')); | 8739 unittest.expect(o[1], unittest.equals('foo')); |
8740 } | 8740 } |
8741 | 8741 |
8742 buildUnnamed2704() { | 8742 buildUnnamed2798() { |
8743 var o = new core.List<core.String>(); | 8743 var o = new core.List<core.String>(); |
8744 o.add("foo"); | 8744 o.add("foo"); |
8745 o.add("foo"); | 8745 o.add("foo"); |
8746 return o; | 8746 return o; |
8747 } | 8747 } |
8748 | 8748 |
8749 checkUnnamed2704(core.List<core.String> o) { | 8749 checkUnnamed2798(core.List<core.String> o) { |
8750 unittest.expect(o, unittest.hasLength(2)); | 8750 unittest.expect(o, unittest.hasLength(2)); |
8751 unittest.expect(o[0], unittest.equals('foo')); | 8751 unittest.expect(o[0], unittest.equals('foo')); |
8752 unittest.expect(o[1], unittest.equals('foo')); | 8752 unittest.expect(o[1], unittest.equals('foo')); |
8753 } | 8753 } |
8754 | 8754 |
8755 buildUnnamed2705() { | 8755 buildUnnamed2799() { |
8756 var o = new core.List<core.String>(); | 8756 var o = new core.List<core.String>(); |
8757 o.add("foo"); | 8757 o.add("foo"); |
8758 o.add("foo"); | 8758 o.add("foo"); |
8759 return o; | 8759 return o; |
8760 } | 8760 } |
8761 | 8761 |
8762 checkUnnamed2705(core.List<core.String> o) { | 8762 checkUnnamed2799(core.List<core.String> o) { |
8763 unittest.expect(o, unittest.hasLength(2)); | 8763 unittest.expect(o, unittest.hasLength(2)); |
8764 unittest.expect(o[0], unittest.equals('foo')); | 8764 unittest.expect(o[0], unittest.equals('foo')); |
8765 unittest.expect(o[1], unittest.equals('foo')); | 8765 unittest.expect(o[1], unittest.equals('foo')); |
8766 } | 8766 } |
8767 | 8767 |
8768 buildUnnamed2706() { | 8768 buildUnnamed2800() { |
8769 var o = new core.List<core.String>(); | 8769 var o = new core.List<core.String>(); |
8770 o.add("foo"); | 8770 o.add("foo"); |
8771 o.add("foo"); | 8771 o.add("foo"); |
8772 return o; | 8772 return o; |
8773 } | 8773 } |
8774 | 8774 |
8775 checkUnnamed2706(core.List<core.String> o) { | 8775 checkUnnamed2800(core.List<core.String> o) { |
8776 unittest.expect(o, unittest.hasLength(2)); | 8776 unittest.expect(o, unittest.hasLength(2)); |
8777 unittest.expect(o[0], unittest.equals('foo')); | 8777 unittest.expect(o[0], unittest.equals('foo')); |
8778 unittest.expect(o[1], unittest.equals('foo')); | 8778 unittest.expect(o[1], unittest.equals('foo')); |
8779 } | 8779 } |
8780 | 8780 |
8781 buildUnnamed2707() { | 8781 buildUnnamed2801() { |
8782 var o = new core.List<core.String>(); | 8782 var o = new core.List<core.String>(); |
8783 o.add("foo"); | 8783 o.add("foo"); |
8784 o.add("foo"); | 8784 o.add("foo"); |
8785 return o; | 8785 return o; |
8786 } | 8786 } |
8787 | 8787 |
8788 checkUnnamed2707(core.List<core.String> o) { | 8788 checkUnnamed2801(core.List<core.String> o) { |
8789 unittest.expect(o, unittest.hasLength(2)); | 8789 unittest.expect(o, unittest.hasLength(2)); |
8790 unittest.expect(o[0], unittest.equals('foo')); | 8790 unittest.expect(o[0], unittest.equals('foo')); |
8791 unittest.expect(o[1], unittest.equals('foo')); | 8791 unittest.expect(o[1], unittest.equals('foo')); |
8792 } | 8792 } |
8793 | 8793 |
8794 buildUnnamed2708() { | 8794 buildUnnamed2802() { |
8795 var o = new core.List<core.String>(); | 8795 var o = new core.List<core.String>(); |
8796 o.add("foo"); | 8796 o.add("foo"); |
8797 o.add("foo"); | 8797 o.add("foo"); |
8798 return o; | 8798 return o; |
8799 } | 8799 } |
8800 | 8800 |
8801 checkUnnamed2708(core.List<core.String> o) { | 8801 checkUnnamed2802(core.List<core.String> o) { |
8802 unittest.expect(o, unittest.hasLength(2)); | 8802 unittest.expect(o, unittest.hasLength(2)); |
8803 unittest.expect(o[0], unittest.equals('foo')); | 8803 unittest.expect(o[0], unittest.equals('foo')); |
8804 unittest.expect(o[1], unittest.equals('foo')); | 8804 unittest.expect(o[1], unittest.equals('foo')); |
8805 } | 8805 } |
8806 | 8806 |
8807 buildUnnamed2709() { | 8807 buildUnnamed2803() { |
8808 var o = new core.List<core.String>(); | 8808 var o = new core.List<core.String>(); |
8809 o.add("foo"); | 8809 o.add("foo"); |
8810 o.add("foo"); | 8810 o.add("foo"); |
8811 return o; | 8811 return o; |
8812 } | 8812 } |
8813 | 8813 |
8814 checkUnnamed2709(core.List<core.String> o) { | 8814 checkUnnamed2803(core.List<core.String> o) { |
8815 unittest.expect(o, unittest.hasLength(2)); | 8815 unittest.expect(o, unittest.hasLength(2)); |
8816 unittest.expect(o[0], unittest.equals('foo')); | 8816 unittest.expect(o[0], unittest.equals('foo')); |
8817 unittest.expect(o[1], unittest.equals('foo')); | 8817 unittest.expect(o[1], unittest.equals('foo')); |
8818 } | 8818 } |
8819 | 8819 |
8820 buildUnnamed2710() { | 8820 buildUnnamed2804() { |
8821 var o = new core.List<core.String>(); | 8821 var o = new core.List<core.String>(); |
8822 o.add("foo"); | 8822 o.add("foo"); |
8823 o.add("foo"); | 8823 o.add("foo"); |
8824 return o; | 8824 return o; |
8825 } | 8825 } |
8826 | 8826 |
8827 checkUnnamed2710(core.List<core.String> o) { | 8827 checkUnnamed2804(core.List<core.String> o) { |
8828 unittest.expect(o, unittest.hasLength(2)); | 8828 unittest.expect(o, unittest.hasLength(2)); |
8829 unittest.expect(o[0], unittest.equals('foo')); | 8829 unittest.expect(o[0], unittest.equals('foo')); |
8830 unittest.expect(o[1], unittest.equals('foo')); | 8830 unittest.expect(o[1], unittest.equals('foo')); |
8831 } | 8831 } |
8832 | 8832 |
8833 buildUnnamed2711() { | 8833 buildUnnamed2805() { |
8834 var o = new core.List<core.String>(); | 8834 var o = new core.List<core.String>(); |
8835 o.add("foo"); | 8835 o.add("foo"); |
8836 o.add("foo"); | 8836 o.add("foo"); |
8837 return o; | 8837 return o; |
8838 } | 8838 } |
8839 | 8839 |
8840 checkUnnamed2711(core.List<core.String> o) { | 8840 checkUnnamed2805(core.List<core.String> o) { |
8841 unittest.expect(o, unittest.hasLength(2)); | 8841 unittest.expect(o, unittest.hasLength(2)); |
8842 unittest.expect(o[0], unittest.equals('foo')); | 8842 unittest.expect(o[0], unittest.equals('foo')); |
8843 unittest.expect(o[1], unittest.equals('foo')); | 8843 unittest.expect(o[1], unittest.equals('foo')); |
8844 } | 8844 } |
8845 | 8845 |
8846 buildUnnamed2712() { | 8846 buildUnnamed2806() { |
8847 var o = new core.List<core.String>(); | 8847 var o = new core.List<core.String>(); |
8848 o.add("foo"); | 8848 o.add("foo"); |
8849 o.add("foo"); | 8849 o.add("foo"); |
8850 return o; | 8850 return o; |
8851 } | 8851 } |
8852 | 8852 |
8853 checkUnnamed2712(core.List<core.String> o) { | 8853 checkUnnamed2806(core.List<core.String> o) { |
8854 unittest.expect(o, unittest.hasLength(2)); | 8854 unittest.expect(o, unittest.hasLength(2)); |
8855 unittest.expect(o[0], unittest.equals('foo')); | 8855 unittest.expect(o[0], unittest.equals('foo')); |
8856 unittest.expect(o[1], unittest.equals('foo')); | 8856 unittest.expect(o[1], unittest.equals('foo')); |
8857 } | 8857 } |
8858 | 8858 |
8859 buildUnnamed2713() { | 8859 buildUnnamed2807() { |
8860 var o = new core.List<core.String>(); | 8860 var o = new core.List<core.String>(); |
8861 o.add("foo"); | 8861 o.add("foo"); |
8862 o.add("foo"); | 8862 o.add("foo"); |
8863 return o; | 8863 return o; |
8864 } | 8864 } |
8865 | 8865 |
8866 checkUnnamed2713(core.List<core.String> o) { | 8866 checkUnnamed2807(core.List<core.String> o) { |
8867 unittest.expect(o, unittest.hasLength(2)); | 8867 unittest.expect(o, unittest.hasLength(2)); |
8868 unittest.expect(o[0], unittest.equals('foo')); | 8868 unittest.expect(o[0], unittest.equals('foo')); |
8869 unittest.expect(o[1], unittest.equals('foo')); | 8869 unittest.expect(o[1], unittest.equals('foo')); |
8870 } | 8870 } |
8871 | 8871 |
8872 buildUnnamed2714() { | 8872 buildUnnamed2808() { |
8873 var o = new core.List<core.String>(); | 8873 var o = new core.List<core.String>(); |
8874 o.add("foo"); | 8874 o.add("foo"); |
8875 o.add("foo"); | 8875 o.add("foo"); |
8876 return o; | 8876 return o; |
8877 } | 8877 } |
8878 | 8878 |
8879 checkUnnamed2714(core.List<core.String> o) { | 8879 checkUnnamed2808(core.List<core.String> o) { |
8880 unittest.expect(o, unittest.hasLength(2)); | 8880 unittest.expect(o, unittest.hasLength(2)); |
8881 unittest.expect(o[0], unittest.equals('foo')); | 8881 unittest.expect(o[0], unittest.equals('foo')); |
8882 unittest.expect(o[1], unittest.equals('foo')); | 8882 unittest.expect(o[1], unittest.equals('foo')); |
8883 } | 8883 } |
8884 | 8884 |
8885 buildUnnamed2715() { | 8885 buildUnnamed2809() { |
8886 var o = new core.List<core.String>(); | 8886 var o = new core.List<core.String>(); |
8887 o.add("foo"); | 8887 o.add("foo"); |
8888 o.add("foo"); | 8888 o.add("foo"); |
8889 return o; | 8889 return o; |
8890 } | 8890 } |
8891 | 8891 |
8892 checkUnnamed2715(core.List<core.String> o) { | 8892 checkUnnamed2809(core.List<core.String> o) { |
8893 unittest.expect(o, unittest.hasLength(2)); | 8893 unittest.expect(o, unittest.hasLength(2)); |
8894 unittest.expect(o[0], unittest.equals('foo')); | 8894 unittest.expect(o[0], unittest.equals('foo')); |
8895 unittest.expect(o[1], unittest.equals('foo')); | 8895 unittest.expect(o[1], unittest.equals('foo')); |
8896 } | 8896 } |
8897 | 8897 |
8898 buildUnnamed2716() { | 8898 buildUnnamed2810() { |
8899 var o = new core.List<core.String>(); | 8899 var o = new core.List<core.String>(); |
8900 o.add("foo"); | 8900 o.add("foo"); |
8901 o.add("foo"); | 8901 o.add("foo"); |
8902 return o; | 8902 return o; |
8903 } | 8903 } |
8904 | 8904 |
8905 checkUnnamed2716(core.List<core.String> o) { | 8905 checkUnnamed2810(core.List<core.String> o) { |
8906 unittest.expect(o, unittest.hasLength(2)); | 8906 unittest.expect(o, unittest.hasLength(2)); |
8907 unittest.expect(o[0], unittest.equals('foo')); | 8907 unittest.expect(o[0], unittest.equals('foo')); |
8908 unittest.expect(o[1], unittest.equals('foo')); | 8908 unittest.expect(o[1], unittest.equals('foo')); |
8909 } | 8909 } |
8910 | 8910 |
8911 buildUnnamed2717() { | 8911 buildUnnamed2811() { |
8912 var o = new core.List<core.String>(); | 8912 var o = new core.List<core.String>(); |
8913 o.add("foo"); | 8913 o.add("foo"); |
8914 o.add("foo"); | 8914 o.add("foo"); |
8915 return o; | 8915 return o; |
8916 } | 8916 } |
8917 | 8917 |
8918 checkUnnamed2717(core.List<core.String> o) { | 8918 checkUnnamed2811(core.List<core.String> o) { |
8919 unittest.expect(o, unittest.hasLength(2)); | 8919 unittest.expect(o, unittest.hasLength(2)); |
8920 unittest.expect(o[0], unittest.equals('foo')); | 8920 unittest.expect(o[0], unittest.equals('foo')); |
8921 unittest.expect(o[1], unittest.equals('foo')); | 8921 unittest.expect(o[1], unittest.equals('foo')); |
8922 } | 8922 } |
8923 | 8923 |
8924 buildUnnamed2718() { | 8924 buildUnnamed2812() { |
8925 var o = new core.List<core.String>(); | 8925 var o = new core.List<core.String>(); |
8926 o.add("foo"); | 8926 o.add("foo"); |
8927 o.add("foo"); | 8927 o.add("foo"); |
8928 return o; | 8928 return o; |
8929 } | 8929 } |
8930 | 8930 |
8931 checkUnnamed2718(core.List<core.String> o) { | 8931 checkUnnamed2812(core.List<core.String> o) { |
8932 unittest.expect(o, unittest.hasLength(2)); | 8932 unittest.expect(o, unittest.hasLength(2)); |
8933 unittest.expect(o[0], unittest.equals('foo')); | 8933 unittest.expect(o[0], unittest.equals('foo')); |
8934 unittest.expect(o[1], unittest.equals('foo')); | 8934 unittest.expect(o[1], unittest.equals('foo')); |
8935 } | 8935 } |
8936 | 8936 |
8937 buildUnnamed2719() { | 8937 buildUnnamed2813() { |
8938 var o = new core.List<core.String>(); | 8938 var o = new core.List<core.String>(); |
8939 o.add("foo"); | 8939 o.add("foo"); |
8940 o.add("foo"); | 8940 o.add("foo"); |
8941 return o; | 8941 return o; |
8942 } | 8942 } |
8943 | 8943 |
8944 checkUnnamed2719(core.List<core.String> o) { | 8944 checkUnnamed2813(core.List<core.String> o) { |
8945 unittest.expect(o, unittest.hasLength(2)); | 8945 unittest.expect(o, unittest.hasLength(2)); |
8946 unittest.expect(o[0], unittest.equals('foo')); | 8946 unittest.expect(o[0], unittest.equals('foo')); |
8947 unittest.expect(o[1], unittest.equals('foo')); | 8947 unittest.expect(o[1], unittest.equals('foo')); |
8948 } | 8948 } |
8949 | 8949 |
8950 buildUnnamed2720() { | 8950 buildUnnamed2814() { |
8951 var o = new core.List<core.String>(); | 8951 var o = new core.List<core.String>(); |
8952 o.add("foo"); | 8952 o.add("foo"); |
8953 o.add("foo"); | 8953 o.add("foo"); |
8954 return o; | 8954 return o; |
8955 } | 8955 } |
8956 | 8956 |
8957 checkUnnamed2720(core.List<core.String> o) { | 8957 checkUnnamed2814(core.List<core.String> o) { |
8958 unittest.expect(o, unittest.hasLength(2)); | 8958 unittest.expect(o, unittest.hasLength(2)); |
8959 unittest.expect(o[0], unittest.equals('foo')); | 8959 unittest.expect(o[0], unittest.equals('foo')); |
8960 unittest.expect(o[1], unittest.equals('foo')); | 8960 unittest.expect(o[1], unittest.equals('foo')); |
8961 } | 8961 } |
8962 | 8962 |
8963 buildUnnamed2721() { | 8963 buildUnnamed2815() { |
8964 var o = new core.List<core.String>(); | 8964 var o = new core.List<core.String>(); |
8965 o.add("foo"); | 8965 o.add("foo"); |
8966 o.add("foo"); | 8966 o.add("foo"); |
8967 return o; | 8967 return o; |
8968 } | 8968 } |
8969 | 8969 |
8970 checkUnnamed2721(core.List<core.String> o) { | 8970 checkUnnamed2815(core.List<core.String> o) { |
8971 unittest.expect(o, unittest.hasLength(2)); | 8971 unittest.expect(o, unittest.hasLength(2)); |
8972 unittest.expect(o[0], unittest.equals('foo')); | 8972 unittest.expect(o[0], unittest.equals('foo')); |
8973 unittest.expect(o[1], unittest.equals('foo')); | 8973 unittest.expect(o[1], unittest.equals('foo')); |
8974 } | 8974 } |
8975 | 8975 |
8976 buildUnnamed2722() { | 8976 buildUnnamed2816() { |
8977 var o = new core.List<core.String>(); | 8977 var o = new core.List<core.String>(); |
8978 o.add("foo"); | 8978 o.add("foo"); |
8979 o.add("foo"); | 8979 o.add("foo"); |
8980 return o; | 8980 return o; |
8981 } | 8981 } |
8982 | 8982 |
8983 checkUnnamed2722(core.List<core.String> o) { | 8983 checkUnnamed2816(core.List<core.String> o) { |
8984 unittest.expect(o, unittest.hasLength(2)); | 8984 unittest.expect(o, unittest.hasLength(2)); |
8985 unittest.expect(o[0], unittest.equals('foo')); | 8985 unittest.expect(o[0], unittest.equals('foo')); |
8986 unittest.expect(o[1], unittest.equals('foo')); | 8986 unittest.expect(o[1], unittest.equals('foo')); |
8987 } | 8987 } |
8988 | 8988 |
8989 buildUnnamed2723() { | 8989 buildUnnamed2817() { |
8990 var o = new core.List<core.String>(); | 8990 var o = new core.List<core.String>(); |
8991 o.add("foo"); | 8991 o.add("foo"); |
8992 o.add("foo"); | 8992 o.add("foo"); |
8993 return o; | 8993 return o; |
8994 } | 8994 } |
8995 | 8995 |
8996 checkUnnamed2723(core.List<core.String> o) { | 8996 checkUnnamed2817(core.List<core.String> o) { |
8997 unittest.expect(o, unittest.hasLength(2)); | 8997 unittest.expect(o, unittest.hasLength(2)); |
8998 unittest.expect(o[0], unittest.equals('foo')); | 8998 unittest.expect(o[0], unittest.equals('foo')); |
8999 unittest.expect(o[1], unittest.equals('foo')); | 8999 unittest.expect(o[1], unittest.equals('foo')); |
9000 } | 9000 } |
9001 | 9001 |
9002 buildUnnamed2724() { | 9002 buildUnnamed2818() { |
9003 var o = new core.List<core.String>(); | 9003 var o = new core.List<core.String>(); |
9004 o.add("foo"); | 9004 o.add("foo"); |
9005 o.add("foo"); | 9005 o.add("foo"); |
9006 return o; | 9006 return o; |
9007 } | 9007 } |
9008 | 9008 |
9009 checkUnnamed2724(core.List<core.String> o) { | 9009 checkUnnamed2818(core.List<core.String> o) { |
9010 unittest.expect(o, unittest.hasLength(2)); | 9010 unittest.expect(o, unittest.hasLength(2)); |
9011 unittest.expect(o[0], unittest.equals('foo')); | 9011 unittest.expect(o[0], unittest.equals('foo')); |
9012 unittest.expect(o[1], unittest.equals('foo')); | 9012 unittest.expect(o[1], unittest.equals('foo')); |
9013 } | 9013 } |
9014 | 9014 |
9015 buildUnnamed2725() { | 9015 buildUnnamed2819() { |
9016 var o = new core.List<core.String>(); | 9016 var o = new core.List<core.String>(); |
9017 o.add("foo"); | 9017 o.add("foo"); |
9018 o.add("foo"); | 9018 o.add("foo"); |
9019 return o; | 9019 return o; |
9020 } | 9020 } |
9021 | 9021 |
9022 checkUnnamed2725(core.List<core.String> o) { | 9022 checkUnnamed2819(core.List<core.String> o) { |
9023 unittest.expect(o, unittest.hasLength(2)); | 9023 unittest.expect(o, unittest.hasLength(2)); |
9024 unittest.expect(o[0], unittest.equals('foo')); | 9024 unittest.expect(o[0], unittest.equals('foo')); |
9025 unittest.expect(o[1], unittest.equals('foo')); | 9025 unittest.expect(o[1], unittest.equals('foo')); |
9026 } | 9026 } |
9027 | 9027 |
9028 buildUnnamed2726() { | 9028 buildUnnamed2820() { |
9029 var o = new core.List<core.String>(); | 9029 var o = new core.List<core.String>(); |
9030 o.add("foo"); | 9030 o.add("foo"); |
9031 o.add("foo"); | 9031 o.add("foo"); |
9032 return o; | 9032 return o; |
9033 } | 9033 } |
9034 | 9034 |
9035 checkUnnamed2726(core.List<core.String> o) { | 9035 checkUnnamed2820(core.List<core.String> o) { |
9036 unittest.expect(o, unittest.hasLength(2)); | 9036 unittest.expect(o, unittest.hasLength(2)); |
9037 unittest.expect(o[0], unittest.equals('foo')); | 9037 unittest.expect(o[0], unittest.equals('foo')); |
9038 unittest.expect(o[1], unittest.equals('foo')); | 9038 unittest.expect(o[1], unittest.equals('foo')); |
9039 } | 9039 } |
9040 | 9040 |
9041 buildUnnamed2727() { | 9041 buildUnnamed2821() { |
9042 var o = new core.List<core.String>(); | 9042 var o = new core.List<core.String>(); |
9043 o.add("foo"); | 9043 o.add("foo"); |
9044 o.add("foo"); | 9044 o.add("foo"); |
9045 return o; | 9045 return o; |
9046 } | 9046 } |
9047 | 9047 |
9048 checkUnnamed2727(core.List<core.String> o) { | 9048 checkUnnamed2821(core.List<core.String> o) { |
9049 unittest.expect(o, unittest.hasLength(2)); | 9049 unittest.expect(o, unittest.hasLength(2)); |
9050 unittest.expect(o[0], unittest.equals('foo')); | 9050 unittest.expect(o[0], unittest.equals('foo')); |
9051 unittest.expect(o[1], unittest.equals('foo')); | 9051 unittest.expect(o[1], unittest.equals('foo')); |
9052 } | 9052 } |
9053 | 9053 |
9054 buildUnnamed2728() { | 9054 buildUnnamed2822() { |
9055 var o = new core.List<core.String>(); | 9055 var o = new core.List<core.String>(); |
9056 o.add("foo"); | 9056 o.add("foo"); |
9057 o.add("foo"); | 9057 o.add("foo"); |
9058 return o; | 9058 return o; |
9059 } | 9059 } |
9060 | 9060 |
9061 checkUnnamed2728(core.List<core.String> o) { | 9061 checkUnnamed2822(core.List<core.String> o) { |
9062 unittest.expect(o, unittest.hasLength(2)); | 9062 unittest.expect(o, unittest.hasLength(2)); |
9063 unittest.expect(o[0], unittest.equals('foo')); | 9063 unittest.expect(o[0], unittest.equals('foo')); |
9064 unittest.expect(o[1], unittest.equals('foo')); | 9064 unittest.expect(o[1], unittest.equals('foo')); |
9065 } | 9065 } |
9066 | 9066 |
9067 buildUnnamed2729() { | 9067 buildUnnamed2823() { |
9068 var o = new core.List<core.String>(); | 9068 var o = new core.List<core.String>(); |
9069 o.add("foo"); | 9069 o.add("foo"); |
9070 o.add("foo"); | 9070 o.add("foo"); |
9071 return o; | 9071 return o; |
9072 } | 9072 } |
9073 | 9073 |
9074 checkUnnamed2729(core.List<core.String> o) { | 9074 checkUnnamed2823(core.List<core.String> o) { |
9075 unittest.expect(o, unittest.hasLength(2)); | 9075 unittest.expect(o, unittest.hasLength(2)); |
9076 unittest.expect(o[0], unittest.equals('foo')); | 9076 unittest.expect(o[0], unittest.equals('foo')); |
9077 unittest.expect(o[1], unittest.equals('foo')); | 9077 unittest.expect(o[1], unittest.equals('foo')); |
9078 } | 9078 } |
9079 | 9079 |
9080 buildUnnamed2730() { | 9080 buildUnnamed2824() { |
9081 var o = new core.List<core.String>(); | 9081 var o = new core.List<core.String>(); |
9082 o.add("foo"); | 9082 o.add("foo"); |
9083 o.add("foo"); | 9083 o.add("foo"); |
9084 return o; | 9084 return o; |
9085 } | 9085 } |
9086 | 9086 |
9087 checkUnnamed2730(core.List<core.String> o) { | 9087 checkUnnamed2824(core.List<core.String> o) { |
9088 unittest.expect(o, unittest.hasLength(2)); | 9088 unittest.expect(o, unittest.hasLength(2)); |
9089 unittest.expect(o[0], unittest.equals('foo')); | 9089 unittest.expect(o[0], unittest.equals('foo')); |
9090 unittest.expect(o[1], unittest.equals('foo')); | 9090 unittest.expect(o[1], unittest.equals('foo')); |
9091 } | 9091 } |
9092 | 9092 |
9093 buildUnnamed2731() { | 9093 buildUnnamed2825() { |
9094 var o = new core.List<core.String>(); | 9094 var o = new core.List<core.String>(); |
9095 o.add("foo"); | 9095 o.add("foo"); |
9096 o.add("foo"); | 9096 o.add("foo"); |
9097 return o; | 9097 return o; |
9098 } | 9098 } |
9099 | 9099 |
9100 checkUnnamed2731(core.List<core.String> o) { | 9100 checkUnnamed2825(core.List<core.String> o) { |
9101 unittest.expect(o, unittest.hasLength(2)); | 9101 unittest.expect(o, unittest.hasLength(2)); |
9102 unittest.expect(o[0], unittest.equals('foo')); | 9102 unittest.expect(o[0], unittest.equals('foo')); |
9103 unittest.expect(o[1], unittest.equals('foo')); | 9103 unittest.expect(o[1], unittest.equals('foo')); |
9104 } | 9104 } |
9105 | 9105 |
9106 buildUnnamed2732() { | 9106 buildUnnamed2826() { |
9107 var o = new core.List<core.String>(); | 9107 var o = new core.List<core.String>(); |
9108 o.add("foo"); | 9108 o.add("foo"); |
9109 o.add("foo"); | 9109 o.add("foo"); |
9110 return o; | 9110 return o; |
9111 } | 9111 } |
9112 | 9112 |
9113 checkUnnamed2732(core.List<core.String> o) { | 9113 checkUnnamed2826(core.List<core.String> o) { |
9114 unittest.expect(o, unittest.hasLength(2)); | 9114 unittest.expect(o, unittest.hasLength(2)); |
9115 unittest.expect(o[0], unittest.equals('foo')); | 9115 unittest.expect(o[0], unittest.equals('foo')); |
9116 unittest.expect(o[1], unittest.equals('foo')); | 9116 unittest.expect(o[1], unittest.equals('foo')); |
9117 } | 9117 } |
9118 | 9118 |
9119 buildUnnamed2733() { | 9119 buildUnnamed2827() { |
9120 var o = new core.List<core.String>(); | 9120 var o = new core.List<core.String>(); |
9121 o.add("foo"); | 9121 o.add("foo"); |
9122 o.add("foo"); | 9122 o.add("foo"); |
9123 return o; | 9123 return o; |
9124 } | 9124 } |
9125 | 9125 |
9126 checkUnnamed2733(core.List<core.String> o) { | 9126 checkUnnamed2827(core.List<core.String> o) { |
9127 unittest.expect(o, unittest.hasLength(2)); | 9127 unittest.expect(o, unittest.hasLength(2)); |
9128 unittest.expect(o[0], unittest.equals('foo')); | 9128 unittest.expect(o[0], unittest.equals('foo')); |
9129 unittest.expect(o[1], unittest.equals('foo')); | 9129 unittest.expect(o[1], unittest.equals('foo')); |
9130 } | 9130 } |
9131 | 9131 |
9132 buildUnnamed2734() { | 9132 buildUnnamed2828() { |
9133 var o = new core.List<core.String>(); | 9133 var o = new core.List<core.String>(); |
9134 o.add("foo"); | 9134 o.add("foo"); |
9135 o.add("foo"); | 9135 o.add("foo"); |
9136 return o; | 9136 return o; |
9137 } | 9137 } |
9138 | 9138 |
9139 checkUnnamed2734(core.List<core.String> o) { | 9139 checkUnnamed2828(core.List<core.String> o) { |
9140 unittest.expect(o, unittest.hasLength(2)); | 9140 unittest.expect(o, unittest.hasLength(2)); |
9141 unittest.expect(o[0], unittest.equals('foo')); | 9141 unittest.expect(o[0], unittest.equals('foo')); |
9142 unittest.expect(o[1], unittest.equals('foo')); | 9142 unittest.expect(o[1], unittest.equals('foo')); |
9143 } | 9143 } |
9144 | 9144 |
9145 buildUnnamed2735() { | 9145 buildUnnamed2829() { |
9146 var o = new core.List<core.String>(); | 9146 var o = new core.List<core.String>(); |
9147 o.add("foo"); | 9147 o.add("foo"); |
9148 o.add("foo"); | 9148 o.add("foo"); |
9149 return o; | 9149 return o; |
9150 } | 9150 } |
9151 | 9151 |
9152 checkUnnamed2735(core.List<core.String> o) { | 9152 checkUnnamed2829(core.List<core.String> o) { |
9153 unittest.expect(o, unittest.hasLength(2)); | 9153 unittest.expect(o, unittest.hasLength(2)); |
9154 unittest.expect(o[0], unittest.equals('foo')); | 9154 unittest.expect(o[0], unittest.equals('foo')); |
9155 unittest.expect(o[1], unittest.equals('foo')); | 9155 unittest.expect(o[1], unittest.equals('foo')); |
9156 } | 9156 } |
9157 | 9157 |
9158 buildUnnamed2736() { | 9158 buildUnnamed2830() { |
9159 var o = new core.List<core.String>(); | 9159 var o = new core.List<core.String>(); |
9160 o.add("foo"); | 9160 o.add("foo"); |
9161 o.add("foo"); | 9161 o.add("foo"); |
9162 return o; | 9162 return o; |
9163 } | 9163 } |
9164 | 9164 |
9165 checkUnnamed2736(core.List<core.String> o) { | 9165 checkUnnamed2830(core.List<core.String> o) { |
9166 unittest.expect(o, unittest.hasLength(2)); | 9166 unittest.expect(o, unittest.hasLength(2)); |
9167 unittest.expect(o[0], unittest.equals('foo')); | 9167 unittest.expect(o[0], unittest.equals('foo')); |
9168 unittest.expect(o[1], unittest.equals('foo')); | 9168 unittest.expect(o[1], unittest.equals('foo')); |
9169 } | 9169 } |
9170 | 9170 |
9171 buildUnnamed2737() { | 9171 buildUnnamed2831() { |
9172 var o = new core.List<core.String>(); | 9172 var o = new core.List<core.String>(); |
9173 o.add("foo"); | 9173 o.add("foo"); |
9174 o.add("foo"); | 9174 o.add("foo"); |
9175 return o; | 9175 return o; |
9176 } | 9176 } |
9177 | 9177 |
9178 checkUnnamed2737(core.List<core.String> o) { | 9178 checkUnnamed2831(core.List<core.String> o) { |
9179 unittest.expect(o, unittest.hasLength(2)); | 9179 unittest.expect(o, unittest.hasLength(2)); |
9180 unittest.expect(o[0], unittest.equals('foo')); | 9180 unittest.expect(o[0], unittest.equals('foo')); |
9181 unittest.expect(o[1], unittest.equals('foo')); | 9181 unittest.expect(o[1], unittest.equals('foo')); |
9182 } | 9182 } |
9183 | 9183 |
9184 buildUnnamed2738() { | 9184 buildUnnamed2832() { |
9185 var o = new core.List<core.String>(); | 9185 var o = new core.List<core.String>(); |
9186 o.add("foo"); | 9186 o.add("foo"); |
9187 o.add("foo"); | 9187 o.add("foo"); |
9188 return o; | 9188 return o; |
9189 } | 9189 } |
9190 | 9190 |
9191 checkUnnamed2738(core.List<core.String> o) { | 9191 checkUnnamed2832(core.List<core.String> o) { |
9192 unittest.expect(o, unittest.hasLength(2)); | 9192 unittest.expect(o, unittest.hasLength(2)); |
9193 unittest.expect(o[0], unittest.equals('foo')); | 9193 unittest.expect(o[0], unittest.equals('foo')); |
9194 unittest.expect(o[1], unittest.equals('foo')); | 9194 unittest.expect(o[1], unittest.equals('foo')); |
9195 } | 9195 } |
9196 | 9196 |
9197 buildUnnamed2739() { | 9197 buildUnnamed2833() { |
9198 var o = new core.List<core.String>(); | 9198 var o = new core.List<core.String>(); |
9199 o.add("foo"); | 9199 o.add("foo"); |
9200 o.add("foo"); | 9200 o.add("foo"); |
9201 return o; | 9201 return o; |
9202 } | 9202 } |
9203 | 9203 |
9204 checkUnnamed2739(core.List<core.String> o) { | 9204 checkUnnamed2833(core.List<core.String> o) { |
9205 unittest.expect(o, unittest.hasLength(2)); | 9205 unittest.expect(o, unittest.hasLength(2)); |
9206 unittest.expect(o[0], unittest.equals('foo')); | 9206 unittest.expect(o[0], unittest.equals('foo')); |
9207 unittest.expect(o[1], unittest.equals('foo')); | 9207 unittest.expect(o[1], unittest.equals('foo')); |
9208 } | 9208 } |
9209 | 9209 |
9210 buildUnnamed2740() { | 9210 buildUnnamed2834() { |
9211 var o = new core.List<core.String>(); | 9211 var o = new core.List<core.String>(); |
9212 o.add("foo"); | 9212 o.add("foo"); |
9213 o.add("foo"); | 9213 o.add("foo"); |
9214 return o; | 9214 return o; |
9215 } | 9215 } |
9216 | 9216 |
9217 checkUnnamed2740(core.List<core.String> o) { | 9217 checkUnnamed2834(core.List<core.String> o) { |
9218 unittest.expect(o, unittest.hasLength(2)); | 9218 unittest.expect(o, unittest.hasLength(2)); |
9219 unittest.expect(o[0], unittest.equals('foo')); | 9219 unittest.expect(o[0], unittest.equals('foo')); |
9220 unittest.expect(o[1], unittest.equals('foo')); | 9220 unittest.expect(o[1], unittest.equals('foo')); |
9221 } | 9221 } |
9222 | 9222 |
9223 buildUnnamed2741() { | 9223 buildUnnamed2835() { |
9224 var o = new core.List<core.String>(); | 9224 var o = new core.List<core.String>(); |
9225 o.add("foo"); | 9225 o.add("foo"); |
9226 o.add("foo"); | 9226 o.add("foo"); |
9227 return o; | 9227 return o; |
9228 } | 9228 } |
9229 | 9229 |
9230 checkUnnamed2741(core.List<core.String> o) { | 9230 checkUnnamed2835(core.List<core.String> o) { |
9231 unittest.expect(o, unittest.hasLength(2)); | 9231 unittest.expect(o, unittest.hasLength(2)); |
9232 unittest.expect(o[0], unittest.equals('foo')); | 9232 unittest.expect(o[0], unittest.equals('foo')); |
9233 unittest.expect(o[1], unittest.equals('foo')); | 9233 unittest.expect(o[1], unittest.equals('foo')); |
9234 } | 9234 } |
9235 | 9235 |
9236 buildUnnamed2742() { | 9236 buildUnnamed2836() { |
9237 var o = new core.List<core.String>(); | 9237 var o = new core.List<core.String>(); |
9238 o.add("foo"); | 9238 o.add("foo"); |
9239 o.add("foo"); | 9239 o.add("foo"); |
9240 return o; | 9240 return o; |
9241 } | 9241 } |
9242 | 9242 |
9243 checkUnnamed2742(core.List<core.String> o) { | 9243 checkUnnamed2836(core.List<core.String> o) { |
9244 unittest.expect(o, unittest.hasLength(2)); | 9244 unittest.expect(o, unittest.hasLength(2)); |
9245 unittest.expect(o[0], unittest.equals('foo')); | 9245 unittest.expect(o[0], unittest.equals('foo')); |
9246 unittest.expect(o[1], unittest.equals('foo')); | 9246 unittest.expect(o[1], unittest.equals('foo')); |
9247 } | 9247 } |
9248 | 9248 |
9249 buildUnnamed2743() { | 9249 buildUnnamed2837() { |
9250 var o = new core.List<core.String>(); | 9250 var o = new core.List<core.String>(); |
9251 o.add("foo"); | 9251 o.add("foo"); |
9252 o.add("foo"); | 9252 o.add("foo"); |
9253 return o; | 9253 return o; |
9254 } | 9254 } |
9255 | 9255 |
9256 checkUnnamed2743(core.List<core.String> o) { | 9256 checkUnnamed2837(core.List<core.String> o) { |
9257 unittest.expect(o, unittest.hasLength(2)); | 9257 unittest.expect(o, unittest.hasLength(2)); |
9258 unittest.expect(o[0], unittest.equals('foo')); | 9258 unittest.expect(o[0], unittest.equals('foo')); |
9259 unittest.expect(o[1], unittest.equals('foo')); | 9259 unittest.expect(o[1], unittest.equals('foo')); |
9260 } | 9260 } |
9261 | 9261 |
9262 buildUnnamed2744() { | 9262 buildUnnamed2838() { |
9263 var o = new core.List<core.String>(); | 9263 var o = new core.List<core.String>(); |
9264 o.add("foo"); | 9264 o.add("foo"); |
9265 o.add("foo"); | 9265 o.add("foo"); |
9266 return o; | 9266 return o; |
9267 } | 9267 } |
9268 | 9268 |
9269 checkUnnamed2744(core.List<core.String> o) { | 9269 checkUnnamed2838(core.List<core.String> o) { |
9270 unittest.expect(o, unittest.hasLength(2)); | 9270 unittest.expect(o, unittest.hasLength(2)); |
9271 unittest.expect(o[0], unittest.equals('foo')); | 9271 unittest.expect(o[0], unittest.equals('foo')); |
9272 unittest.expect(o[1], unittest.equals('foo')); | 9272 unittest.expect(o[1], unittest.equals('foo')); |
9273 } | 9273 } |
9274 | 9274 |
9275 buildUnnamed2745() { | 9275 buildUnnamed2839() { |
9276 var o = new core.List<core.String>(); | 9276 var o = new core.List<core.String>(); |
9277 o.add("foo"); | 9277 o.add("foo"); |
9278 o.add("foo"); | 9278 o.add("foo"); |
9279 return o; | 9279 return o; |
9280 } | 9280 } |
9281 | 9281 |
9282 checkUnnamed2745(core.List<core.String> o) { | 9282 checkUnnamed2839(core.List<core.String> o) { |
9283 unittest.expect(o, unittest.hasLength(2)); | 9283 unittest.expect(o, unittest.hasLength(2)); |
9284 unittest.expect(o[0], unittest.equals('foo')); | 9284 unittest.expect(o[0], unittest.equals('foo')); |
9285 unittest.expect(o[1], unittest.equals('foo')); | 9285 unittest.expect(o[1], unittest.equals('foo')); |
9286 } | 9286 } |
9287 | 9287 |
9288 buildUnnamed2746() { | 9288 buildUnnamed2840() { |
9289 var o = new core.List<core.String>(); | 9289 var o = new core.List<core.String>(); |
9290 o.add("foo"); | 9290 o.add("foo"); |
9291 o.add("foo"); | 9291 o.add("foo"); |
9292 return o; | 9292 return o; |
9293 } | 9293 } |
9294 | 9294 |
9295 checkUnnamed2746(core.List<core.String> o) { | 9295 checkUnnamed2840(core.List<core.String> o) { |
9296 unittest.expect(o, unittest.hasLength(2)); | 9296 unittest.expect(o, unittest.hasLength(2)); |
9297 unittest.expect(o[0], unittest.equals('foo')); | 9297 unittest.expect(o[0], unittest.equals('foo')); |
9298 unittest.expect(o[1], unittest.equals('foo')); | 9298 unittest.expect(o[1], unittest.equals('foo')); |
9299 } | 9299 } |
9300 | 9300 |
9301 buildUnnamed2747() { | 9301 buildUnnamed2841() { |
9302 var o = new core.List<core.String>(); | 9302 var o = new core.List<core.String>(); |
9303 o.add("foo"); | 9303 o.add("foo"); |
9304 o.add("foo"); | 9304 o.add("foo"); |
9305 return o; | 9305 return o; |
9306 } | 9306 } |
9307 | 9307 |
9308 checkUnnamed2747(core.List<core.String> o) { | 9308 checkUnnamed2841(core.List<core.String> o) { |
9309 unittest.expect(o, unittest.hasLength(2)); | 9309 unittest.expect(o, unittest.hasLength(2)); |
9310 unittest.expect(o[0], unittest.equals('foo')); | 9310 unittest.expect(o[0], unittest.equals('foo')); |
9311 unittest.expect(o[1], unittest.equals('foo')); | 9311 unittest.expect(o[1], unittest.equals('foo')); |
9312 } | 9312 } |
9313 | 9313 |
9314 buildUnnamed2748() { | 9314 buildUnnamed2842() { |
9315 var o = new core.List<core.String>(); | 9315 var o = new core.List<core.String>(); |
9316 o.add("foo"); | 9316 o.add("foo"); |
9317 o.add("foo"); | 9317 o.add("foo"); |
9318 return o; | 9318 return o; |
9319 } | 9319 } |
9320 | 9320 |
9321 checkUnnamed2748(core.List<core.String> o) { | 9321 checkUnnamed2842(core.List<core.String> o) { |
9322 unittest.expect(o, unittest.hasLength(2)); | 9322 unittest.expect(o, unittest.hasLength(2)); |
9323 unittest.expect(o[0], unittest.equals('foo')); | 9323 unittest.expect(o[0], unittest.equals('foo')); |
9324 unittest.expect(o[1], unittest.equals('foo')); | 9324 unittest.expect(o[1], unittest.equals('foo')); |
9325 } | 9325 } |
9326 | 9326 |
9327 buildUnnamed2749() { | 9327 buildUnnamed2843() { |
9328 var o = new core.List<core.String>(); | 9328 var o = new core.List<core.String>(); |
9329 o.add("foo"); | 9329 o.add("foo"); |
9330 o.add("foo"); | 9330 o.add("foo"); |
9331 return o; | 9331 return o; |
9332 } | 9332 } |
9333 | 9333 |
9334 checkUnnamed2749(core.List<core.String> o) { | 9334 checkUnnamed2843(core.List<core.String> o) { |
9335 unittest.expect(o, unittest.hasLength(2)); | 9335 unittest.expect(o, unittest.hasLength(2)); |
9336 unittest.expect(o[0], unittest.equals('foo')); | 9336 unittest.expect(o[0], unittest.equals('foo')); |
9337 unittest.expect(o[1], unittest.equals('foo')); | 9337 unittest.expect(o[1], unittest.equals('foo')); |
9338 } | 9338 } |
9339 | 9339 |
9340 buildUnnamed2750() { | 9340 buildUnnamed2844() { |
9341 var o = new core.List<core.String>(); | 9341 var o = new core.List<core.String>(); |
9342 o.add("foo"); | 9342 o.add("foo"); |
9343 o.add("foo"); | 9343 o.add("foo"); |
9344 return o; | 9344 return o; |
9345 } | 9345 } |
9346 | 9346 |
9347 checkUnnamed2750(core.List<core.String> o) { | 9347 checkUnnamed2844(core.List<core.String> o) { |
9348 unittest.expect(o, unittest.hasLength(2)); | 9348 unittest.expect(o, unittest.hasLength(2)); |
9349 unittest.expect(o[0], unittest.equals('foo')); | 9349 unittest.expect(o[0], unittest.equals('foo')); |
9350 unittest.expect(o[1], unittest.equals('foo')); | 9350 unittest.expect(o[1], unittest.equals('foo')); |
9351 } | 9351 } |
9352 | 9352 |
9353 buildUnnamed2751() { | 9353 buildUnnamed2845() { |
9354 var o = new core.List<core.String>(); | 9354 var o = new core.List<core.String>(); |
9355 o.add("foo"); | 9355 o.add("foo"); |
9356 o.add("foo"); | 9356 o.add("foo"); |
9357 return o; | 9357 return o; |
9358 } | 9358 } |
9359 | 9359 |
9360 checkUnnamed2751(core.List<core.String> o) { | 9360 checkUnnamed2845(core.List<core.String> o) { |
9361 unittest.expect(o, unittest.hasLength(2)); | 9361 unittest.expect(o, unittest.hasLength(2)); |
9362 unittest.expect(o[0], unittest.equals('foo')); | 9362 unittest.expect(o[0], unittest.equals('foo')); |
9363 unittest.expect(o[1], unittest.equals('foo')); | 9363 unittest.expect(o[1], unittest.equals('foo')); |
9364 } | 9364 } |
9365 | 9365 |
9366 buildUnnamed2752() { | 9366 buildUnnamed2846() { |
9367 var o = new core.List<core.String>(); | 9367 var o = new core.List<core.String>(); |
9368 o.add("foo"); | 9368 o.add("foo"); |
9369 o.add("foo"); | 9369 o.add("foo"); |
9370 return o; | 9370 return o; |
9371 } | 9371 } |
9372 | 9372 |
9373 checkUnnamed2752(core.List<core.String> o) { | 9373 checkUnnamed2846(core.List<core.String> o) { |
9374 unittest.expect(o, unittest.hasLength(2)); | 9374 unittest.expect(o, unittest.hasLength(2)); |
9375 unittest.expect(o[0], unittest.equals('foo')); | 9375 unittest.expect(o[0], unittest.equals('foo')); |
9376 unittest.expect(o[1], unittest.equals('foo')); | 9376 unittest.expect(o[1], unittest.equals('foo')); |
9377 } | 9377 } |
9378 | 9378 |
9379 buildUnnamed2753() { | 9379 buildUnnamed2847() { |
9380 var o = new core.List<core.String>(); | 9380 var o = new core.List<core.String>(); |
9381 o.add("foo"); | 9381 o.add("foo"); |
9382 o.add("foo"); | 9382 o.add("foo"); |
9383 return o; | 9383 return o; |
9384 } | 9384 } |
9385 | 9385 |
9386 checkUnnamed2753(core.List<core.String> o) { | 9386 checkUnnamed2847(core.List<core.String> o) { |
9387 unittest.expect(o, unittest.hasLength(2)); | 9387 unittest.expect(o, unittest.hasLength(2)); |
9388 unittest.expect(o[0], unittest.equals('foo')); | 9388 unittest.expect(o[0], unittest.equals('foo')); |
9389 unittest.expect(o[1], unittest.equals('foo')); | 9389 unittest.expect(o[1], unittest.equals('foo')); |
9390 } | 9390 } |
9391 | 9391 |
9392 buildUnnamed2754() { | 9392 buildUnnamed2848() { |
9393 var o = new core.List<core.String>(); | 9393 var o = new core.List<core.String>(); |
9394 o.add("foo"); | 9394 o.add("foo"); |
9395 o.add("foo"); | 9395 o.add("foo"); |
9396 return o; | 9396 return o; |
9397 } | 9397 } |
9398 | 9398 |
9399 checkUnnamed2754(core.List<core.String> o) { | 9399 checkUnnamed2848(core.List<core.String> o) { |
9400 unittest.expect(o, unittest.hasLength(2)); | 9400 unittest.expect(o, unittest.hasLength(2)); |
9401 unittest.expect(o[0], unittest.equals('foo')); | 9401 unittest.expect(o[0], unittest.equals('foo')); |
9402 unittest.expect(o[1], unittest.equals('foo')); | 9402 unittest.expect(o[1], unittest.equals('foo')); |
9403 } | 9403 } |
9404 | 9404 |
9405 buildUnnamed2755() { | 9405 buildUnnamed2849() { |
9406 var o = new core.List<core.String>(); | 9406 var o = new core.List<core.String>(); |
9407 o.add("foo"); | 9407 o.add("foo"); |
9408 o.add("foo"); | 9408 o.add("foo"); |
9409 return o; | 9409 return o; |
9410 } | 9410 } |
9411 | 9411 |
9412 checkUnnamed2755(core.List<core.String> o) { | 9412 checkUnnamed2849(core.List<core.String> o) { |
9413 unittest.expect(o, unittest.hasLength(2)); | 9413 unittest.expect(o, unittest.hasLength(2)); |
9414 unittest.expect(o[0], unittest.equals('foo')); | 9414 unittest.expect(o[0], unittest.equals('foo')); |
9415 unittest.expect(o[1], unittest.equals('foo')); | 9415 unittest.expect(o[1], unittest.equals('foo')); |
9416 } | 9416 } |
9417 | 9417 |
9418 buildUnnamed2756() { | 9418 buildUnnamed2850() { |
9419 var o = new core.List<core.String>(); | 9419 var o = new core.List<core.String>(); |
9420 o.add("foo"); | 9420 o.add("foo"); |
9421 o.add("foo"); | 9421 o.add("foo"); |
9422 return o; | 9422 return o; |
9423 } | 9423 } |
9424 | 9424 |
9425 checkUnnamed2756(core.List<core.String> o) { | 9425 checkUnnamed2850(core.List<core.String> o) { |
9426 unittest.expect(o, unittest.hasLength(2)); | 9426 unittest.expect(o, unittest.hasLength(2)); |
9427 unittest.expect(o[0], unittest.equals('foo')); | 9427 unittest.expect(o[0], unittest.equals('foo')); |
9428 unittest.expect(o[1], unittest.equals('foo')); | 9428 unittest.expect(o[1], unittest.equals('foo')); |
9429 } | 9429 } |
9430 | 9430 |
9431 buildUnnamed2757() { | 9431 buildUnnamed2851() { |
9432 var o = new core.List<core.String>(); | 9432 var o = new core.List<core.String>(); |
9433 o.add("foo"); | 9433 o.add("foo"); |
9434 o.add("foo"); | 9434 o.add("foo"); |
9435 return o; | 9435 return o; |
9436 } | 9436 } |
9437 | 9437 |
9438 checkUnnamed2757(core.List<core.String> o) { | 9438 checkUnnamed2851(core.List<core.String> o) { |
9439 unittest.expect(o, unittest.hasLength(2)); | 9439 unittest.expect(o, unittest.hasLength(2)); |
9440 unittest.expect(o[0], unittest.equals('foo')); | 9440 unittest.expect(o[0], unittest.equals('foo')); |
9441 unittest.expect(o[1], unittest.equals('foo')); | 9441 unittest.expect(o[1], unittest.equals('foo')); |
9442 } | 9442 } |
9443 | 9443 |
9444 buildUnnamed2758() { | 9444 buildUnnamed2852() { |
9445 var o = new core.List<core.String>(); | 9445 var o = new core.List<core.String>(); |
9446 o.add("foo"); | 9446 o.add("foo"); |
9447 o.add("foo"); | 9447 o.add("foo"); |
9448 return o; | 9448 return o; |
9449 } | 9449 } |
9450 | 9450 |
9451 checkUnnamed2758(core.List<core.String> o) { | 9451 checkUnnamed2852(core.List<core.String> o) { |
9452 unittest.expect(o, unittest.hasLength(2)); | 9452 unittest.expect(o, unittest.hasLength(2)); |
9453 unittest.expect(o[0], unittest.equals('foo')); | 9453 unittest.expect(o[0], unittest.equals('foo')); |
9454 unittest.expect(o[1], unittest.equals('foo')); | 9454 unittest.expect(o[1], unittest.equals('foo')); |
9455 } | 9455 } |
9456 | 9456 |
9457 buildUnnamed2759() { | 9457 buildUnnamed2853() { |
9458 var o = new core.List<core.String>(); | 9458 var o = new core.List<core.String>(); |
9459 o.add("foo"); | 9459 o.add("foo"); |
9460 o.add("foo"); | 9460 o.add("foo"); |
9461 return o; | 9461 return o; |
9462 } | 9462 } |
9463 | 9463 |
9464 checkUnnamed2759(core.List<core.String> o) { | 9464 checkUnnamed2853(core.List<core.String> o) { |
9465 unittest.expect(o, unittest.hasLength(2)); | 9465 unittest.expect(o, unittest.hasLength(2)); |
9466 unittest.expect(o[0], unittest.equals('foo')); | 9466 unittest.expect(o[0], unittest.equals('foo')); |
9467 unittest.expect(o[1], unittest.equals('foo')); | 9467 unittest.expect(o[1], unittest.equals('foo')); |
9468 } | 9468 } |
9469 | 9469 |
9470 buildUnnamed2760() { | 9470 buildUnnamed2854() { |
9471 var o = new core.List<core.String>(); | 9471 var o = new core.List<core.String>(); |
9472 o.add("foo"); | 9472 o.add("foo"); |
9473 o.add("foo"); | 9473 o.add("foo"); |
9474 return o; | 9474 return o; |
9475 } | 9475 } |
9476 | 9476 |
9477 checkUnnamed2760(core.List<core.String> o) { | 9477 checkUnnamed2854(core.List<core.String> o) { |
9478 unittest.expect(o, unittest.hasLength(2)); | 9478 unittest.expect(o, unittest.hasLength(2)); |
9479 unittest.expect(o[0], unittest.equals('foo')); | 9479 unittest.expect(o[0], unittest.equals('foo')); |
9480 unittest.expect(o[1], unittest.equals('foo')); | 9480 unittest.expect(o[1], unittest.equals('foo')); |
9481 } | 9481 } |
9482 | 9482 |
9483 buildUnnamed2761() { | 9483 buildUnnamed2855() { |
9484 var o = new core.List<core.String>(); | 9484 var o = new core.List<core.String>(); |
9485 o.add("foo"); | 9485 o.add("foo"); |
9486 o.add("foo"); | 9486 o.add("foo"); |
9487 return o; | 9487 return o; |
9488 } | 9488 } |
9489 | 9489 |
9490 checkUnnamed2761(core.List<core.String> o) { | 9490 checkUnnamed2855(core.List<core.String> o) { |
9491 unittest.expect(o, unittest.hasLength(2)); | 9491 unittest.expect(o, unittest.hasLength(2)); |
9492 unittest.expect(o[0], unittest.equals('foo')); | 9492 unittest.expect(o[0], unittest.equals('foo')); |
9493 unittest.expect(o[1], unittest.equals('foo')); | 9493 unittest.expect(o[1], unittest.equals('foo')); |
9494 } | 9494 } |
9495 | 9495 |
9496 buildUnnamed2762() { | 9496 buildUnnamed2856() { |
9497 var o = new core.List<core.String>(); | 9497 var o = new core.List<core.String>(); |
9498 o.add("foo"); | 9498 o.add("foo"); |
9499 o.add("foo"); | 9499 o.add("foo"); |
9500 return o; | 9500 return o; |
9501 } | 9501 } |
9502 | 9502 |
9503 checkUnnamed2762(core.List<core.String> o) { | 9503 checkUnnamed2856(core.List<core.String> o) { |
9504 unittest.expect(o, unittest.hasLength(2)); | 9504 unittest.expect(o, unittest.hasLength(2)); |
9505 unittest.expect(o[0], unittest.equals('foo')); | 9505 unittest.expect(o[0], unittest.equals('foo')); |
9506 unittest.expect(o[1], unittest.equals('foo')); | 9506 unittest.expect(o[1], unittest.equals('foo')); |
9507 } | 9507 } |
9508 | 9508 |
9509 buildUnnamed2763() { | 9509 buildUnnamed2857() { |
9510 var o = new core.List<core.String>(); | 9510 var o = new core.List<core.String>(); |
9511 o.add("foo"); | 9511 o.add("foo"); |
9512 o.add("foo"); | 9512 o.add("foo"); |
9513 return o; | 9513 return o; |
9514 } | 9514 } |
9515 | 9515 |
9516 checkUnnamed2763(core.List<core.String> o) { | 9516 checkUnnamed2857(core.List<core.String> o) { |
9517 unittest.expect(o, unittest.hasLength(2)); | 9517 unittest.expect(o, unittest.hasLength(2)); |
9518 unittest.expect(o[0], unittest.equals('foo')); | 9518 unittest.expect(o[0], unittest.equals('foo')); |
9519 unittest.expect(o[1], unittest.equals('foo')); | 9519 unittest.expect(o[1], unittest.equals('foo')); |
9520 } | 9520 } |
9521 | 9521 |
9522 buildUnnamed2764() { | 9522 buildUnnamed2858() { |
9523 var o = new core.List<core.String>(); | 9523 var o = new core.List<core.String>(); |
9524 o.add("foo"); | 9524 o.add("foo"); |
9525 o.add("foo"); | 9525 o.add("foo"); |
9526 return o; | 9526 return o; |
9527 } | 9527 } |
9528 | 9528 |
9529 checkUnnamed2764(core.List<core.String> o) { | 9529 checkUnnamed2858(core.List<core.String> o) { |
9530 unittest.expect(o, unittest.hasLength(2)); | 9530 unittest.expect(o, unittest.hasLength(2)); |
9531 unittest.expect(o[0], unittest.equals('foo')); | 9531 unittest.expect(o[0], unittest.equals('foo')); |
9532 unittest.expect(o[1], unittest.equals('foo')); | 9532 unittest.expect(o[1], unittest.equals('foo')); |
9533 } | 9533 } |
9534 | 9534 |
9535 buildUnnamed2765() { | 9535 buildUnnamed2859() { |
9536 var o = new core.List<core.String>(); | 9536 var o = new core.List<core.String>(); |
9537 o.add("foo"); | 9537 o.add("foo"); |
9538 o.add("foo"); | 9538 o.add("foo"); |
9539 return o; | 9539 return o; |
9540 } | 9540 } |
9541 | 9541 |
9542 checkUnnamed2765(core.List<core.String> o) { | 9542 checkUnnamed2859(core.List<core.String> o) { |
9543 unittest.expect(o, unittest.hasLength(2)); | 9543 unittest.expect(o, unittest.hasLength(2)); |
9544 unittest.expect(o[0], unittest.equals('foo')); | 9544 unittest.expect(o[0], unittest.equals('foo')); |
9545 unittest.expect(o[1], unittest.equals('foo')); | 9545 unittest.expect(o[1], unittest.equals('foo')); |
9546 } | 9546 } |
9547 | 9547 |
9548 buildUnnamed2766() { | 9548 buildUnnamed2860() { |
9549 var o = new core.List<core.String>(); | 9549 var o = new core.List<core.String>(); |
9550 o.add("foo"); | 9550 o.add("foo"); |
9551 o.add("foo"); | 9551 o.add("foo"); |
9552 return o; | 9552 return o; |
9553 } | 9553 } |
9554 | 9554 |
9555 checkUnnamed2766(core.List<core.String> o) { | 9555 checkUnnamed2860(core.List<core.String> o) { |
9556 unittest.expect(o, unittest.hasLength(2)); | 9556 unittest.expect(o, unittest.hasLength(2)); |
9557 unittest.expect(o[0], unittest.equals('foo')); | 9557 unittest.expect(o[0], unittest.equals('foo')); |
9558 unittest.expect(o[1], unittest.equals('foo')); | 9558 unittest.expect(o[1], unittest.equals('foo')); |
9559 } | 9559 } |
9560 | 9560 |
9561 buildUnnamed2767() { | 9561 buildUnnamed2861() { |
9562 var o = new core.List<core.String>(); | 9562 var o = new core.List<core.String>(); |
9563 o.add("foo"); | 9563 o.add("foo"); |
9564 o.add("foo"); | 9564 o.add("foo"); |
9565 return o; | 9565 return o; |
9566 } | 9566 } |
9567 | 9567 |
9568 checkUnnamed2767(core.List<core.String> o) { | 9568 checkUnnamed2861(core.List<core.String> o) { |
9569 unittest.expect(o, unittest.hasLength(2)); | 9569 unittest.expect(o, unittest.hasLength(2)); |
9570 unittest.expect(o[0], unittest.equals('foo')); | 9570 unittest.expect(o[0], unittest.equals('foo')); |
9571 unittest.expect(o[1], unittest.equals('foo')); | 9571 unittest.expect(o[1], unittest.equals('foo')); |
9572 } | 9572 } |
9573 | 9573 |
9574 buildUnnamed2768() { | 9574 buildUnnamed2862() { |
9575 var o = new core.List<core.String>(); | 9575 var o = new core.List<core.String>(); |
9576 o.add("foo"); | 9576 o.add("foo"); |
9577 o.add("foo"); | 9577 o.add("foo"); |
9578 return o; | 9578 return o; |
9579 } | 9579 } |
9580 | 9580 |
9581 checkUnnamed2768(core.List<core.String> o) { | 9581 checkUnnamed2862(core.List<core.String> o) { |
9582 unittest.expect(o, unittest.hasLength(2)); | 9582 unittest.expect(o, unittest.hasLength(2)); |
9583 unittest.expect(o[0], unittest.equals('foo')); | 9583 unittest.expect(o[0], unittest.equals('foo')); |
9584 unittest.expect(o[1], unittest.equals('foo')); | 9584 unittest.expect(o[1], unittest.equals('foo')); |
9585 } | 9585 } |
9586 | 9586 |
9587 buildUnnamed2769() { | 9587 buildUnnamed2863() { |
9588 var o = new core.List<core.String>(); | 9588 var o = new core.List<core.String>(); |
9589 o.add("foo"); | 9589 o.add("foo"); |
9590 o.add("foo"); | 9590 o.add("foo"); |
9591 return o; | 9591 return o; |
9592 } | 9592 } |
9593 | 9593 |
9594 checkUnnamed2769(core.List<core.String> o) { | 9594 checkUnnamed2863(core.List<core.String> o) { |
9595 unittest.expect(o, unittest.hasLength(2)); | 9595 unittest.expect(o, unittest.hasLength(2)); |
9596 unittest.expect(o[0], unittest.equals('foo')); | 9596 unittest.expect(o[0], unittest.equals('foo')); |
9597 unittest.expect(o[1], unittest.equals('foo')); | 9597 unittest.expect(o[1], unittest.equals('foo')); |
9598 } | 9598 } |
9599 | 9599 |
9600 buildUnnamed2770() { | 9600 buildUnnamed2864() { |
9601 var o = new core.List<core.String>(); | 9601 var o = new core.List<core.String>(); |
9602 o.add("foo"); | 9602 o.add("foo"); |
9603 o.add("foo"); | 9603 o.add("foo"); |
9604 return o; | 9604 return o; |
9605 } | 9605 } |
9606 | 9606 |
9607 checkUnnamed2770(core.List<core.String> o) { | 9607 checkUnnamed2864(core.List<core.String> o) { |
9608 unittest.expect(o, unittest.hasLength(2)); | 9608 unittest.expect(o, unittest.hasLength(2)); |
9609 unittest.expect(o[0], unittest.equals('foo')); | 9609 unittest.expect(o[0], unittest.equals('foo')); |
9610 unittest.expect(o[1], unittest.equals('foo')); | 9610 unittest.expect(o[1], unittest.equals('foo')); |
9611 } | 9611 } |
9612 | 9612 |
9613 buildUnnamed2771() { | 9613 buildUnnamed2865() { |
9614 var o = new core.List<core.String>(); | 9614 var o = new core.List<core.String>(); |
9615 o.add("foo"); | 9615 o.add("foo"); |
9616 o.add("foo"); | 9616 o.add("foo"); |
9617 return o; | 9617 return o; |
9618 } | 9618 } |
9619 | 9619 |
9620 checkUnnamed2771(core.List<core.String> o) { | 9620 checkUnnamed2865(core.List<core.String> o) { |
9621 unittest.expect(o, unittest.hasLength(2)); | 9621 unittest.expect(o, unittest.hasLength(2)); |
9622 unittest.expect(o[0], unittest.equals('foo')); | 9622 unittest.expect(o[0], unittest.equals('foo')); |
9623 unittest.expect(o[1], unittest.equals('foo')); | 9623 unittest.expect(o[1], unittest.equals('foo')); |
9624 } | 9624 } |
9625 | 9625 |
9626 buildUnnamed2772() { | 9626 buildUnnamed2866() { |
9627 var o = new core.List<core.String>(); | 9627 var o = new core.List<core.String>(); |
9628 o.add("foo"); | 9628 o.add("foo"); |
9629 o.add("foo"); | 9629 o.add("foo"); |
9630 return o; | 9630 return o; |
9631 } | 9631 } |
9632 | 9632 |
9633 checkUnnamed2772(core.List<core.String> o) { | 9633 checkUnnamed2866(core.List<core.String> o) { |
9634 unittest.expect(o, unittest.hasLength(2)); | 9634 unittest.expect(o, unittest.hasLength(2)); |
9635 unittest.expect(o[0], unittest.equals('foo')); | 9635 unittest.expect(o[0], unittest.equals('foo')); |
9636 unittest.expect(o[1], unittest.equals('foo')); | 9636 unittest.expect(o[1], unittest.equals('foo')); |
9637 } | 9637 } |
9638 | 9638 |
9639 buildUnnamed2773() { | 9639 buildUnnamed2867() { |
9640 var o = new core.List<core.String>(); | 9640 var o = new core.List<core.String>(); |
9641 o.add("foo"); | 9641 o.add("foo"); |
9642 o.add("foo"); | 9642 o.add("foo"); |
9643 return o; | 9643 return o; |
9644 } | 9644 } |
9645 | 9645 |
9646 checkUnnamed2773(core.List<core.String> o) { | 9646 checkUnnamed2867(core.List<core.String> o) { |
9647 unittest.expect(o, unittest.hasLength(2)); | 9647 unittest.expect(o, unittest.hasLength(2)); |
9648 unittest.expect(o[0], unittest.equals('foo')); | 9648 unittest.expect(o[0], unittest.equals('foo')); |
9649 unittest.expect(o[1], unittest.equals('foo')); | 9649 unittest.expect(o[1], unittest.equals('foo')); |
9650 } | 9650 } |
9651 | 9651 |
9652 buildUnnamed2774() { | 9652 buildUnnamed2868() { |
9653 var o = new core.List<core.String>(); | 9653 var o = new core.List<core.String>(); |
9654 o.add("foo"); | 9654 o.add("foo"); |
9655 o.add("foo"); | 9655 o.add("foo"); |
9656 return o; | 9656 return o; |
9657 } | 9657 } |
9658 | 9658 |
9659 checkUnnamed2774(core.List<core.String> o) { | 9659 checkUnnamed2868(core.List<core.String> o) { |
9660 unittest.expect(o, unittest.hasLength(2)); | 9660 unittest.expect(o, unittest.hasLength(2)); |
9661 unittest.expect(o[0], unittest.equals('foo')); | 9661 unittest.expect(o[0], unittest.equals('foo')); |
9662 unittest.expect(o[1], unittest.equals('foo')); | 9662 unittest.expect(o[1], unittest.equals('foo')); |
9663 } | 9663 } |
9664 | 9664 |
9665 buildUnnamed2775() { | 9665 buildUnnamed2869() { |
9666 var o = new core.List<core.String>(); | 9666 var o = new core.List<core.String>(); |
9667 o.add("foo"); | 9667 o.add("foo"); |
9668 o.add("foo"); | 9668 o.add("foo"); |
9669 return o; | 9669 return o; |
9670 } | 9670 } |
9671 | 9671 |
9672 checkUnnamed2775(core.List<core.String> o) { | 9672 checkUnnamed2869(core.List<core.String> o) { |
9673 unittest.expect(o, unittest.hasLength(2)); | 9673 unittest.expect(o, unittest.hasLength(2)); |
9674 unittest.expect(o[0], unittest.equals('foo')); | 9674 unittest.expect(o[0], unittest.equals('foo')); |
9675 unittest.expect(o[1], unittest.equals('foo')); | 9675 unittest.expect(o[1], unittest.equals('foo')); |
9676 } | 9676 } |
9677 | 9677 |
9678 buildUnnamed2776() { | 9678 buildUnnamed2870() { |
9679 var o = new core.List<core.String>(); | 9679 var o = new core.List<core.String>(); |
9680 o.add("foo"); | 9680 o.add("foo"); |
9681 o.add("foo"); | 9681 o.add("foo"); |
9682 return o; | 9682 return o; |
9683 } | 9683 } |
9684 | 9684 |
9685 checkUnnamed2776(core.List<core.String> o) { | 9685 checkUnnamed2870(core.List<core.String> o) { |
9686 unittest.expect(o, unittest.hasLength(2)); | 9686 unittest.expect(o, unittest.hasLength(2)); |
9687 unittest.expect(o[0], unittest.equals('foo')); | 9687 unittest.expect(o[0], unittest.equals('foo')); |
9688 unittest.expect(o[1], unittest.equals('foo')); | 9688 unittest.expect(o[1], unittest.equals('foo')); |
9689 } | 9689 } |
9690 | 9690 |
9691 buildUnnamed2777() { | 9691 buildUnnamed2871() { |
9692 var o = new core.List<core.String>(); | 9692 var o = new core.List<core.String>(); |
9693 o.add("foo"); | 9693 o.add("foo"); |
9694 o.add("foo"); | 9694 o.add("foo"); |
9695 return o; | 9695 return o; |
9696 } | 9696 } |
9697 | 9697 |
9698 checkUnnamed2777(core.List<core.String> o) { | 9698 checkUnnamed2871(core.List<core.String> o) { |
9699 unittest.expect(o, unittest.hasLength(2)); | 9699 unittest.expect(o, unittest.hasLength(2)); |
9700 unittest.expect(o[0], unittest.equals('foo')); | 9700 unittest.expect(o[0], unittest.equals('foo')); |
9701 unittest.expect(o[1], unittest.equals('foo')); | 9701 unittest.expect(o[1], unittest.equals('foo')); |
9702 } | 9702 } |
9703 | 9703 |
9704 | 9704 |
9705 main() { | 9705 main() { |
9706 unittest.group("obj-schema-Account", () { | 9706 unittest.group("obj-schema-Account", () { |
9707 unittest.test("to-json--from-json", () { | 9707 unittest.test("to-json--from-json", () { |
9708 var o = buildAccount(); | 9708 var o = buildAccount(); |
9709 var od = new api.Account.fromJson(o.toJson()); | 9709 var od = new api.Account.fromJson(o.toJson()); |
9710 checkAccount(od); | 9710 checkAccount(od); |
9711 }); | 9711 }); |
(...skipping 2275 matching lines...) Loading... |
11987 checkAccountUserProfile(response); | 11987 checkAccountUserProfile(response); |
11988 }))); | 11988 }))); |
11989 }); | 11989 }); |
11990 | 11990 |
11991 unittest.test("method--list", () { | 11991 unittest.test("method--list", () { |
11992 | 11992 |
11993 var mock = new HttpServerMock(); | 11993 var mock = new HttpServerMock(); |
11994 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; | 11994 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; |
11995 var arg_profileId = "foo"; | 11995 var arg_profileId = "foo"; |
11996 var arg_active = true; | 11996 var arg_active = true; |
11997 var arg_ids = buildUnnamed2690(); | 11997 var arg_ids = buildUnnamed2784(); |
11998 var arg_maxResults = 42; | 11998 var arg_maxResults = 42; |
11999 var arg_pageToken = "foo"; | 11999 var arg_pageToken = "foo"; |
12000 var arg_searchString = "foo"; | 12000 var arg_searchString = "foo"; |
12001 var arg_sortField = "foo"; | 12001 var arg_sortField = "foo"; |
12002 var arg_sortOrder = "foo"; | 12002 var arg_sortOrder = "foo"; |
12003 var arg_subaccountId = "foo"; | 12003 var arg_subaccountId = "foo"; |
12004 var arg_userRoleId = "foo"; | 12004 var arg_userRoleId = "foo"; |
12005 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12005 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
12006 var path = (req.url).path; | 12006 var path = (req.url).path; |
12007 var pathOffset = 0; | 12007 var pathOffset = 0; |
(...skipping 227 matching lines...) Loading... |
12235 checkAccount(response); | 12235 checkAccount(response); |
12236 }))); | 12236 }))); |
12237 }); | 12237 }); |
12238 | 12238 |
12239 unittest.test("method--list", () { | 12239 unittest.test("method--list", () { |
12240 | 12240 |
12241 var mock = new HttpServerMock(); | 12241 var mock = new HttpServerMock(); |
12242 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; | 12242 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; |
12243 var arg_profileId = "foo"; | 12243 var arg_profileId = "foo"; |
12244 var arg_active = true; | 12244 var arg_active = true; |
12245 var arg_ids = buildUnnamed2691(); | 12245 var arg_ids = buildUnnamed2785(); |
12246 var arg_maxResults = 42; | 12246 var arg_maxResults = 42; |
12247 var arg_pageToken = "foo"; | 12247 var arg_pageToken = "foo"; |
12248 var arg_searchString = "foo"; | 12248 var arg_searchString = "foo"; |
12249 var arg_sortField = "foo"; | 12249 var arg_sortField = "foo"; |
12250 var arg_sortOrder = "foo"; | 12250 var arg_sortOrder = "foo"; |
12251 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12251 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
12252 var path = (req.url).path; | 12252 var path = (req.url).path; |
12253 var pathOffset = 0; | 12253 var pathOffset = 0; |
12254 var index; | 12254 var index; |
12255 var subPart; | 12255 var subPart; |
(...skipping 282 matching lines...) Loading... |
12538 }); | 12538 }); |
12539 | 12539 |
12540 unittest.test("method--list", () { | 12540 unittest.test("method--list", () { |
12541 | 12541 |
12542 var mock = new HttpServerMock(); | 12542 var mock = new HttpServerMock(); |
12543 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; | 12543 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; |
12544 var arg_profileId = "foo"; | 12544 var arg_profileId = "foo"; |
12545 var arg_active = true; | 12545 var arg_active = true; |
12546 var arg_advertiserId = "foo"; | 12546 var arg_advertiserId = "foo"; |
12547 var arg_archived = true; | 12547 var arg_archived = true; |
12548 var arg_audienceSegmentIds = buildUnnamed2692(); | 12548 var arg_audienceSegmentIds = buildUnnamed2786(); |
12549 var arg_campaignIds = buildUnnamed2693(); | 12549 var arg_campaignIds = buildUnnamed2787(); |
12550 var arg_compatibility = "foo"; | 12550 var arg_compatibility = "foo"; |
12551 var arg_creativeIds = buildUnnamed2694(); | 12551 var arg_creativeIds = buildUnnamed2788(); |
12552 var arg_creativeOptimizationConfigurationIds = buildUnnamed2695(); | 12552 var arg_creativeOptimizationConfigurationIds = buildUnnamed2789(); |
12553 var arg_creativeType = "foo"; | 12553 var arg_creativeType = "foo"; |
12554 var arg_dynamicClickTracker = true; | 12554 var arg_dynamicClickTracker = true; |
12555 var arg_ids = buildUnnamed2696(); | 12555 var arg_ids = buildUnnamed2790(); |
12556 var arg_landingPageIds = buildUnnamed2697(); | 12556 var arg_landingPageIds = buildUnnamed2791(); |
12557 var arg_maxResults = 42; | 12557 var arg_maxResults = 42; |
12558 var arg_overriddenEventTagId = "foo"; | 12558 var arg_overriddenEventTagId = "foo"; |
12559 var arg_pageToken = "foo"; | 12559 var arg_pageToken = "foo"; |
12560 var arg_placementIds = buildUnnamed2698(); | 12560 var arg_placementIds = buildUnnamed2792(); |
12561 var arg_remarketingListIds = buildUnnamed2699(); | 12561 var arg_remarketingListIds = buildUnnamed2793(); |
12562 var arg_searchString = "foo"; | 12562 var arg_searchString = "foo"; |
12563 var arg_sizeIds = buildUnnamed2700(); | 12563 var arg_sizeIds = buildUnnamed2794(); |
12564 var arg_sortField = "foo"; | 12564 var arg_sortField = "foo"; |
12565 var arg_sortOrder = "foo"; | 12565 var arg_sortOrder = "foo"; |
12566 var arg_sslCompliant = true; | 12566 var arg_sslCompliant = true; |
12567 var arg_sslRequired = true; | 12567 var arg_sslRequired = true; |
12568 var arg_type = buildUnnamed2701(); | 12568 var arg_type = buildUnnamed2795(); |
12569 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12569 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
12570 var path = (req.url).path; | 12570 var path = (req.url).path; |
12571 var pathOffset = 0; | 12571 var pathOffset = 0; |
12572 var index; | 12572 var index; |
12573 var subPart; | 12573 var subPart; |
12574 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 12574 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
12575 pathOffset += 1; | 12575 pathOffset += 1; |
12576 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 12576 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
12577 pathOffset += 18; | 12577 pathOffset += 18; |
12578 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 12578 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 346 matching lines...) Loading... |
12925 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { | 12925 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { |
12926 checkAdvertiserGroup(response); | 12926 checkAdvertiserGroup(response); |
12927 }))); | 12927 }))); |
12928 }); | 12928 }); |
12929 | 12929 |
12930 unittest.test("method--list", () { | 12930 unittest.test("method--list", () { |
12931 | 12931 |
12932 var mock = new HttpServerMock(); | 12932 var mock = new HttpServerMock(); |
12933 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; | 12933 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; |
12934 var arg_profileId = "foo"; | 12934 var arg_profileId = "foo"; |
12935 var arg_ids = buildUnnamed2702(); | 12935 var arg_ids = buildUnnamed2796(); |
12936 var arg_maxResults = 42; | 12936 var arg_maxResults = 42; |
12937 var arg_pageToken = "foo"; | 12937 var arg_pageToken = "foo"; |
12938 var arg_searchString = "foo"; | 12938 var arg_searchString = "foo"; |
12939 var arg_sortField = "foo"; | 12939 var arg_sortField = "foo"; |
12940 var arg_sortOrder = "foo"; | 12940 var arg_sortOrder = "foo"; |
12941 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12941 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
12942 var path = (req.url).path; | 12942 var path = (req.url).path; |
12943 var pathOffset = 0; | 12943 var pathOffset = 0; |
12944 var index; | 12944 var index; |
12945 var subPart; | 12945 var subPart; |
(...skipping 278 matching lines...) Loading... |
13224 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { | 13224 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { |
13225 checkAdvertiser(response); | 13225 checkAdvertiser(response); |
13226 }))); | 13226 }))); |
13227 }); | 13227 }); |
13228 | 13228 |
13229 unittest.test("method--list", () { | 13229 unittest.test("method--list", () { |
13230 | 13230 |
13231 var mock = new HttpServerMock(); | 13231 var mock = new HttpServerMock(); |
13232 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; | 13232 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; |
13233 var arg_profileId = "foo"; | 13233 var arg_profileId = "foo"; |
13234 var arg_advertiserGroupIds = buildUnnamed2703(); | 13234 var arg_advertiserGroupIds = buildUnnamed2797(); |
13235 var arg_floodlightConfigurationIds = buildUnnamed2704(); | 13235 var arg_floodlightConfigurationIds = buildUnnamed2798(); |
13236 var arg_ids = buildUnnamed2705(); | 13236 var arg_ids = buildUnnamed2799(); |
13237 var arg_includeAdvertisersWithoutGroupsOnly = true; | 13237 var arg_includeAdvertisersWithoutGroupsOnly = true; |
13238 var arg_maxResults = 42; | 13238 var arg_maxResults = 42; |
13239 var arg_onlyParent = true; | 13239 var arg_onlyParent = true; |
13240 var arg_pageToken = "foo"; | 13240 var arg_pageToken = "foo"; |
13241 var arg_searchString = "foo"; | 13241 var arg_searchString = "foo"; |
13242 var arg_sortField = "foo"; | 13242 var arg_sortField = "foo"; |
13243 var arg_sortOrder = "foo"; | 13243 var arg_sortOrder = "foo"; |
13244 var arg_status = "foo"; | 13244 var arg_status = "foo"; |
13245 var arg_subaccountId = "foo"; | 13245 var arg_subaccountId = "foo"; |
13246 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13246 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
(...skipping 485 matching lines...) Loading... |
13732 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { | 13732 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { |
13733 checkCampaign(response); | 13733 checkCampaign(response); |
13734 }))); | 13734 }))); |
13735 }); | 13735 }); |
13736 | 13736 |
13737 unittest.test("method--list", () { | 13737 unittest.test("method--list", () { |
13738 | 13738 |
13739 var mock = new HttpServerMock(); | 13739 var mock = new HttpServerMock(); |
13740 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; | 13740 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; |
13741 var arg_profileId = "foo"; | 13741 var arg_profileId = "foo"; |
13742 var arg_advertiserGroupIds = buildUnnamed2706(); | 13742 var arg_advertiserGroupIds = buildUnnamed2800(); |
13743 var arg_advertiserIds = buildUnnamed2707(); | 13743 var arg_advertiserIds = buildUnnamed2801(); |
13744 var arg_archived = true; | 13744 var arg_archived = true; |
13745 var arg_atLeastOneOptimizationActivity = true; | 13745 var arg_atLeastOneOptimizationActivity = true; |
13746 var arg_excludedIds = buildUnnamed2708(); | 13746 var arg_excludedIds = buildUnnamed2802(); |
13747 var arg_ids = buildUnnamed2709(); | 13747 var arg_ids = buildUnnamed2803(); |
13748 var arg_maxResults = 42; | 13748 var arg_maxResults = 42; |
13749 var arg_overriddenEventTagId = "foo"; | 13749 var arg_overriddenEventTagId = "foo"; |
13750 var arg_pageToken = "foo"; | 13750 var arg_pageToken = "foo"; |
13751 var arg_searchString = "foo"; | 13751 var arg_searchString = "foo"; |
13752 var arg_sortField = "foo"; | 13752 var arg_sortField = "foo"; |
13753 var arg_sortOrder = "foo"; | 13753 var arg_sortOrder = "foo"; |
13754 var arg_subaccountId = "foo"; | 13754 var arg_subaccountId = "foo"; |
13755 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13755 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
13756 var path = (req.url).path; | 13756 var path = (req.url).path; |
13757 var pathOffset = 0; | 13757 var pathOffset = 0; |
(...skipping 231 matching lines...) Loading... |
13989 checkChangeLog(response); | 13989 checkChangeLog(response); |
13990 }))); | 13990 }))); |
13991 }); | 13991 }); |
13992 | 13992 |
13993 unittest.test("method--list", () { | 13993 unittest.test("method--list", () { |
13994 | 13994 |
13995 var mock = new HttpServerMock(); | 13995 var mock = new HttpServerMock(); |
13996 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; | 13996 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; |
13997 var arg_profileId = "foo"; | 13997 var arg_profileId = "foo"; |
13998 var arg_action = "foo"; | 13998 var arg_action = "foo"; |
13999 var arg_ids = buildUnnamed2710(); | 13999 var arg_ids = buildUnnamed2804(); |
14000 var arg_maxChangeTime = "foo"; | 14000 var arg_maxChangeTime = "foo"; |
14001 var arg_maxResults = 42; | 14001 var arg_maxResults = 42; |
14002 var arg_minChangeTime = "foo"; | 14002 var arg_minChangeTime = "foo"; |
14003 var arg_objectIds = buildUnnamed2711(); | 14003 var arg_objectIds = buildUnnamed2805(); |
14004 var arg_objectType = "foo"; | 14004 var arg_objectType = "foo"; |
14005 var arg_pageToken = "foo"; | 14005 var arg_pageToken = "foo"; |
14006 var arg_searchString = "foo"; | 14006 var arg_searchString = "foo"; |
14007 var arg_userProfileIds = buildUnnamed2712(); | 14007 var arg_userProfileIds = buildUnnamed2806(); |
14008 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14008 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
14009 var path = (req.url).path; | 14009 var path = (req.url).path; |
14010 var pathOffset = 0; | 14010 var pathOffset = 0; |
14011 var index; | 14011 var index; |
14012 var subPart; | 14012 var subPart; |
14013 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 14013 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
14014 pathOffset += 1; | 14014 pathOffset += 1; |
14015 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 14015 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
14016 pathOffset += 18; | 14016 pathOffset += 18; |
14017 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 14017 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 47 matching lines...) Loading... |
14065 | 14065 |
14066 }); | 14066 }); |
14067 | 14067 |
14068 | 14068 |
14069 unittest.group("resource-CitiesResourceApi", () { | 14069 unittest.group("resource-CitiesResourceApi", () { |
14070 unittest.test("method--list", () { | 14070 unittest.test("method--list", () { |
14071 | 14071 |
14072 var mock = new HttpServerMock(); | 14072 var mock = new HttpServerMock(); |
14073 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; | 14073 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; |
14074 var arg_profileId = "foo"; | 14074 var arg_profileId = "foo"; |
14075 var arg_countryDartIds = buildUnnamed2713(); | 14075 var arg_countryDartIds = buildUnnamed2807(); |
14076 var arg_dartIds = buildUnnamed2714(); | 14076 var arg_dartIds = buildUnnamed2808(); |
14077 var arg_namePrefix = "foo"; | 14077 var arg_namePrefix = "foo"; |
14078 var arg_regionDartIds = buildUnnamed2715(); | 14078 var arg_regionDartIds = buildUnnamed2809(); |
14079 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14079 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
14080 var path = (req.url).path; | 14080 var path = (req.url).path; |
14081 var pathOffset = 0; | 14081 var pathOffset = 0; |
14082 var index; | 14082 var index; |
14083 var subPart; | 14083 var subPart; |
14084 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 14084 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
14085 pathOffset += 1; | 14085 pathOffset += 1; |
14086 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 14086 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
14087 pathOffset += 18; | 14087 pathOffset += 18; |
14088 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 14088 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 324 matching lines...) Loading... |
14413 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { | 14413 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { |
14414 checkContentCategory(response); | 14414 checkContentCategory(response); |
14415 }))); | 14415 }))); |
14416 }); | 14416 }); |
14417 | 14417 |
14418 unittest.test("method--list", () { | 14418 unittest.test("method--list", () { |
14419 | 14419 |
14420 var mock = new HttpServerMock(); | 14420 var mock = new HttpServerMock(); |
14421 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; | 14421 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; |
14422 var arg_profileId = "foo"; | 14422 var arg_profileId = "foo"; |
14423 var arg_ids = buildUnnamed2716(); | 14423 var arg_ids = buildUnnamed2810(); |
14424 var arg_maxResults = 42; | 14424 var arg_maxResults = 42; |
14425 var arg_pageToken = "foo"; | 14425 var arg_pageToken = "foo"; |
14426 var arg_searchString = "foo"; | 14426 var arg_searchString = "foo"; |
14427 var arg_sortField = "foo"; | 14427 var arg_sortField = "foo"; |
14428 var arg_sortOrder = "foo"; | 14428 var arg_sortOrder = "foo"; |
14429 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14429 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
14430 var path = (req.url).path; | 14430 var path = (req.url).path; |
14431 var pathOffset = 0; | 14431 var pathOffset = 0; |
14432 var index; | 14432 var index; |
14433 var subPart; | 14433 var subPart; |
(...skipping 604 matching lines...) Loading... |
15038 checkCreativeFieldValue(response); | 15038 checkCreativeFieldValue(response); |
15039 }))); | 15039 }))); |
15040 }); | 15040 }); |
15041 | 15041 |
15042 unittest.test("method--list", () { | 15042 unittest.test("method--list", () { |
15043 | 15043 |
15044 var mock = new HttpServerMock(); | 15044 var mock = new HttpServerMock(); |
15045 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; | 15045 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; |
15046 var arg_profileId = "foo"; | 15046 var arg_profileId = "foo"; |
15047 var arg_creativeFieldId = "foo"; | 15047 var arg_creativeFieldId = "foo"; |
15048 var arg_ids = buildUnnamed2717(); | 15048 var arg_ids = buildUnnamed2811(); |
15049 var arg_maxResults = 42; | 15049 var arg_maxResults = 42; |
15050 var arg_pageToken = "foo"; | 15050 var arg_pageToken = "foo"; |
15051 var arg_searchString = "foo"; | 15051 var arg_searchString = "foo"; |
15052 var arg_sortField = "foo"; | 15052 var arg_sortField = "foo"; |
15053 var arg_sortOrder = "foo"; | 15053 var arg_sortOrder = "foo"; |
15054 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15054 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
15055 var path = (req.url).path; | 15055 var path = (req.url).path; |
15056 var pathOffset = 0; | 15056 var pathOffset = 0; |
15057 var index; | 15057 var index; |
15058 var subPart; | 15058 var subPart; |
(...skipping 356 matching lines...) Loading... |
15415 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { | 15415 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { |
15416 checkCreativeField(response); | 15416 checkCreativeField(response); |
15417 }))); | 15417 }))); |
15418 }); | 15418 }); |
15419 | 15419 |
15420 unittest.test("method--list", () { | 15420 unittest.test("method--list", () { |
15421 | 15421 |
15422 var mock = new HttpServerMock(); | 15422 var mock = new HttpServerMock(); |
15423 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; | 15423 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; |
15424 var arg_profileId = "foo"; | 15424 var arg_profileId = "foo"; |
15425 var arg_advertiserIds = buildUnnamed2718(); | 15425 var arg_advertiserIds = buildUnnamed2812(); |
15426 var arg_ids = buildUnnamed2719(); | 15426 var arg_ids = buildUnnamed2813(); |
15427 var arg_maxResults = 42; | 15427 var arg_maxResults = 42; |
15428 var arg_pageToken = "foo"; | 15428 var arg_pageToken = "foo"; |
15429 var arg_searchString = "foo"; | 15429 var arg_searchString = "foo"; |
15430 var arg_sortField = "foo"; | 15430 var arg_sortField = "foo"; |
15431 var arg_sortOrder = "foo"; | 15431 var arg_sortOrder = "foo"; |
15432 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15432 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
15433 var path = (req.url).path; | 15433 var path = (req.url).path; |
15434 var pathOffset = 0; | 15434 var pathOffset = 0; |
15435 var index; | 15435 var index; |
15436 var subPart; | 15436 var subPart; |
(...skipping 279 matching lines...) Loading... |
15716 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { | 15716 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { |
15717 checkCreativeGroup(response); | 15717 checkCreativeGroup(response); |
15718 }))); | 15718 }))); |
15719 }); | 15719 }); |
15720 | 15720 |
15721 unittest.test("method--list", () { | 15721 unittest.test("method--list", () { |
15722 | 15722 |
15723 var mock = new HttpServerMock(); | 15723 var mock = new HttpServerMock(); |
15724 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; | 15724 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; |
15725 var arg_profileId = "foo"; | 15725 var arg_profileId = "foo"; |
15726 var arg_advertiserIds = buildUnnamed2720(); | 15726 var arg_advertiserIds = buildUnnamed2814(); |
15727 var arg_groupNumber = 42; | 15727 var arg_groupNumber = 42; |
15728 var arg_ids = buildUnnamed2721(); | 15728 var arg_ids = buildUnnamed2815(); |
15729 var arg_maxResults = 42; | 15729 var arg_maxResults = 42; |
15730 var arg_pageToken = "foo"; | 15730 var arg_pageToken = "foo"; |
15731 var arg_searchString = "foo"; | 15731 var arg_searchString = "foo"; |
15732 var arg_sortField = "foo"; | 15732 var arg_sortField = "foo"; |
15733 var arg_sortOrder = "foo"; | 15733 var arg_sortOrder = "foo"; |
15734 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15734 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
15735 var path = (req.url).path; | 15735 var path = (req.url).path; |
15736 var pathOffset = 0; | 15736 var pathOffset = 0; |
15737 var index; | 15737 var index; |
15738 var subPart; | 15738 var subPart; |
(...skipping 284 matching lines...) Loading... |
16023 | 16023 |
16024 unittest.test("method--list", () { | 16024 unittest.test("method--list", () { |
16025 | 16025 |
16026 var mock = new HttpServerMock(); | 16026 var mock = new HttpServerMock(); |
16027 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; | 16027 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; |
16028 var arg_profileId = "foo"; | 16028 var arg_profileId = "foo"; |
16029 var arg_active = true; | 16029 var arg_active = true; |
16030 var arg_advertiserId = "foo"; | 16030 var arg_advertiserId = "foo"; |
16031 var arg_archived = true; | 16031 var arg_archived = true; |
16032 var arg_campaignId = "foo"; | 16032 var arg_campaignId = "foo"; |
16033 var arg_companionCreativeIds = buildUnnamed2722(); | 16033 var arg_companionCreativeIds = buildUnnamed2816(); |
16034 var arg_creativeFieldIds = buildUnnamed2723(); | 16034 var arg_creativeFieldIds = buildUnnamed2817(); |
16035 var arg_ids = buildUnnamed2724(); | 16035 var arg_ids = buildUnnamed2818(); |
16036 var arg_maxResults = 42; | 16036 var arg_maxResults = 42; |
16037 var arg_pageToken = "foo"; | 16037 var arg_pageToken = "foo"; |
16038 var arg_renderingIds = buildUnnamed2725(); | 16038 var arg_renderingIds = buildUnnamed2819(); |
16039 var arg_searchString = "foo"; | 16039 var arg_searchString = "foo"; |
16040 var arg_sizeIds = buildUnnamed2726(); | 16040 var arg_sizeIds = buildUnnamed2820(); |
16041 var arg_sortField = "foo"; | 16041 var arg_sortField = "foo"; |
16042 var arg_sortOrder = "foo"; | 16042 var arg_sortOrder = "foo"; |
16043 var arg_studioCreativeId = "foo"; | 16043 var arg_studioCreativeId = "foo"; |
16044 var arg_types = buildUnnamed2727(); | 16044 var arg_types = buildUnnamed2821(); |
16045 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16045 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
16046 var path = (req.url).path; | 16046 var path = (req.url).path; |
16047 var pathOffset = 0; | 16047 var pathOffset = 0; |
16048 var index; | 16048 var index; |
16049 var subPart; | 16049 var subPart; |
16050 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16050 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
16051 pathOffset += 1; | 16051 pathOffset += 1; |
16052 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 16052 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
16053 pathOffset += 18; | 16053 pathOffset += 18; |
16054 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 16054 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 291 matching lines...) Loading... |
16346 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { | 16346 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { |
16347 checkDirectorySiteContact(response); | 16347 checkDirectorySiteContact(response); |
16348 }))); | 16348 }))); |
16349 }); | 16349 }); |
16350 | 16350 |
16351 unittest.test("method--list", () { | 16351 unittest.test("method--list", () { |
16352 | 16352 |
16353 var mock = new HttpServerMock(); | 16353 var mock = new HttpServerMock(); |
16354 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; | 16354 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; |
16355 var arg_profileId = "foo"; | 16355 var arg_profileId = "foo"; |
16356 var arg_directorySiteIds = buildUnnamed2728(); | 16356 var arg_directorySiteIds = buildUnnamed2822(); |
16357 var arg_ids = buildUnnamed2729(); | 16357 var arg_ids = buildUnnamed2823(); |
16358 var arg_maxResults = 42; | 16358 var arg_maxResults = 42; |
16359 var arg_pageToken = "foo"; | 16359 var arg_pageToken = "foo"; |
16360 var arg_searchString = "foo"; | 16360 var arg_searchString = "foo"; |
16361 var arg_sortField = "foo"; | 16361 var arg_sortField = "foo"; |
16362 var arg_sortOrder = "foo"; | 16362 var arg_sortOrder = "foo"; |
16363 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16363 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
16364 var path = (req.url).path; | 16364 var path = (req.url).path; |
16365 var pathOffset = 0; | 16365 var pathOffset = 0; |
16366 var index; | 16366 var index; |
16367 var subPart; | 16367 var subPart; |
(...skipping 169 matching lines...) Loading... |
16537 | 16537 |
16538 var mock = new HttpServerMock(); | 16538 var mock = new HttpServerMock(); |
16539 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; | 16539 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; |
16540 var arg_profileId = "foo"; | 16540 var arg_profileId = "foo"; |
16541 var arg_acceptsInStreamVideoPlacements = true; | 16541 var arg_acceptsInStreamVideoPlacements = true; |
16542 var arg_acceptsInterstitialPlacements = true; | 16542 var arg_acceptsInterstitialPlacements = true; |
16543 var arg_acceptsPublisherPaidPlacements = true; | 16543 var arg_acceptsPublisherPaidPlacements = true; |
16544 var arg_active = true; | 16544 var arg_active = true; |
16545 var arg_countryId = "foo"; | 16545 var arg_countryId = "foo"; |
16546 var arg_dfpNetworkCode = "foo"; | 16546 var arg_dfpNetworkCode = "foo"; |
16547 var arg_ids = buildUnnamed2730(); | 16547 var arg_ids = buildUnnamed2824(); |
16548 var arg_maxResults = 42; | 16548 var arg_maxResults = 42; |
16549 var arg_pageToken = "foo"; | 16549 var arg_pageToken = "foo"; |
16550 var arg_parentId = "foo"; | 16550 var arg_parentId = "foo"; |
16551 var arg_searchString = "foo"; | 16551 var arg_searchString = "foo"; |
16552 var arg_sortField = "foo"; | 16552 var arg_sortField = "foo"; |
16553 var arg_sortOrder = "foo"; | 16553 var arg_sortOrder = "foo"; |
16554 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16554 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
16555 var path = (req.url).path; | 16555 var path = (req.url).path; |
16556 var pathOffset = 0; | 16556 var pathOffset = 0; |
16557 var index; | 16557 var index; |
(...skipping 173 matching lines...) Loading... |
16731 checkDynamicTargetingKey(response); | 16731 checkDynamicTargetingKey(response); |
16732 }))); | 16732 }))); |
16733 }); | 16733 }); |
16734 | 16734 |
16735 unittest.test("method--list", () { | 16735 unittest.test("method--list", () { |
16736 | 16736 |
16737 var mock = new HttpServerMock(); | 16737 var mock = new HttpServerMock(); |
16738 api.DynamicTargetingKeysResourceApi res = new api.DfareportingApi(mock).dy
namicTargetingKeys; | 16738 api.DynamicTargetingKeysResourceApi res = new api.DfareportingApi(mock).dy
namicTargetingKeys; |
16739 var arg_profileId = "foo"; | 16739 var arg_profileId = "foo"; |
16740 var arg_advertiserId = "foo"; | 16740 var arg_advertiserId = "foo"; |
16741 var arg_names = buildUnnamed2731(); | 16741 var arg_names = buildUnnamed2825(); |
16742 var arg_objectId = "foo"; | 16742 var arg_objectId = "foo"; |
16743 var arg_objectType = "foo"; | 16743 var arg_objectType = "foo"; |
16744 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16744 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
16745 var path = (req.url).path; | 16745 var path = (req.url).path; |
16746 var pathOffset = 0; | 16746 var pathOffset = 0; |
16747 var index; | 16747 var index; |
16748 var subPart; | 16748 var subPart; |
16749 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16749 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
16750 pathOffset += 1; | 16750 pathOffset += 1; |
16751 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 16751 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
(...skipping 217 matching lines...) Loading... |
16969 unittest.test("method--list", () { | 16969 unittest.test("method--list", () { |
16970 | 16970 |
16971 var mock = new HttpServerMock(); | 16971 var mock = new HttpServerMock(); |
16972 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; | 16972 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; |
16973 var arg_profileId = "foo"; | 16973 var arg_profileId = "foo"; |
16974 var arg_adId = "foo"; | 16974 var arg_adId = "foo"; |
16975 var arg_advertiserId = "foo"; | 16975 var arg_advertiserId = "foo"; |
16976 var arg_campaignId = "foo"; | 16976 var arg_campaignId = "foo"; |
16977 var arg_definitionsOnly = true; | 16977 var arg_definitionsOnly = true; |
16978 var arg_enabled = true; | 16978 var arg_enabled = true; |
16979 var arg_eventTagTypes = buildUnnamed2732(); | 16979 var arg_eventTagTypes = buildUnnamed2826(); |
16980 var arg_ids = buildUnnamed2733(); | 16980 var arg_ids = buildUnnamed2827(); |
16981 var arg_searchString = "foo"; | 16981 var arg_searchString = "foo"; |
16982 var arg_sortField = "foo"; | 16982 var arg_sortField = "foo"; |
16983 var arg_sortOrder = "foo"; | 16983 var arg_sortOrder = "foo"; |
16984 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16984 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
16985 var path = (req.url).path; | 16985 var path = (req.url).path; |
16986 var pathOffset = 0; | 16986 var pathOffset = 0; |
16987 var index; | 16987 var index; |
16988 var subPart; | 16988 var subPart; |
16989 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16989 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
16990 pathOffset += 1; | 16990 pathOffset += 1; |
(...skipping 517 matching lines...) Loading... |
17508 checkFloodlightActivity(response); | 17508 checkFloodlightActivity(response); |
17509 }))); | 17509 }))); |
17510 }); | 17510 }); |
17511 | 17511 |
17512 unittest.test("method--list", () { | 17512 unittest.test("method--list", () { |
17513 | 17513 |
17514 var mock = new HttpServerMock(); | 17514 var mock = new HttpServerMock(); |
17515 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; | 17515 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; |
17516 var arg_profileId = "foo"; | 17516 var arg_profileId = "foo"; |
17517 var arg_advertiserId = "foo"; | 17517 var arg_advertiserId = "foo"; |
17518 var arg_floodlightActivityGroupIds = buildUnnamed2734(); | 17518 var arg_floodlightActivityGroupIds = buildUnnamed2828(); |
17519 var arg_floodlightActivityGroupName = "foo"; | 17519 var arg_floodlightActivityGroupName = "foo"; |
17520 var arg_floodlightActivityGroupTagString = "foo"; | 17520 var arg_floodlightActivityGroupTagString = "foo"; |
17521 var arg_floodlightActivityGroupType = "foo"; | 17521 var arg_floodlightActivityGroupType = "foo"; |
17522 var arg_floodlightConfigurationId = "foo"; | 17522 var arg_floodlightConfigurationId = "foo"; |
17523 var arg_ids = buildUnnamed2735(); | 17523 var arg_ids = buildUnnamed2829(); |
17524 var arg_maxResults = 42; | 17524 var arg_maxResults = 42; |
17525 var arg_pageToken = "foo"; | 17525 var arg_pageToken = "foo"; |
17526 var arg_searchString = "foo"; | 17526 var arg_searchString = "foo"; |
17527 var arg_sortField = "foo"; | 17527 var arg_sortField = "foo"; |
17528 var arg_sortOrder = "foo"; | 17528 var arg_sortOrder = "foo"; |
17529 var arg_tagString = "foo"; | 17529 var arg_tagString = "foo"; |
17530 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17530 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
17531 var path = (req.url).path; | 17531 var path = (req.url).path; |
17532 var pathOffset = 0; | 17532 var pathOffset = 0; |
17533 var index; | 17533 var index; |
(...skipping 288 matching lines...) Loading... |
17822 }))); | 17822 }))); |
17823 }); | 17823 }); |
17824 | 17824 |
17825 unittest.test("method--list", () { | 17825 unittest.test("method--list", () { |
17826 | 17826 |
17827 var mock = new HttpServerMock(); | 17827 var mock = new HttpServerMock(); |
17828 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; | 17828 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; |
17829 var arg_profileId = "foo"; | 17829 var arg_profileId = "foo"; |
17830 var arg_advertiserId = "foo"; | 17830 var arg_advertiserId = "foo"; |
17831 var arg_floodlightConfigurationId = "foo"; | 17831 var arg_floodlightConfigurationId = "foo"; |
17832 var arg_ids = buildUnnamed2736(); | 17832 var arg_ids = buildUnnamed2830(); |
17833 var arg_maxResults = 42; | 17833 var arg_maxResults = 42; |
17834 var arg_pageToken = "foo"; | 17834 var arg_pageToken = "foo"; |
17835 var arg_searchString = "foo"; | 17835 var arg_searchString = "foo"; |
17836 var arg_sortField = "foo"; | 17836 var arg_sortField = "foo"; |
17837 var arg_sortOrder = "foo"; | 17837 var arg_sortOrder = "foo"; |
17838 var arg_type = "foo"; | 17838 var arg_type = "foo"; |
17839 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17839 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
17840 var path = (req.url).path; | 17840 var path = (req.url).path; |
17841 var pathOffset = 0; | 17841 var pathOffset = 0; |
17842 var index; | 17842 var index; |
(...skipping 225 matching lines...) Loading... |
18068 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { | 18068 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { |
18069 checkFloodlightConfiguration(response); | 18069 checkFloodlightConfiguration(response); |
18070 }))); | 18070 }))); |
18071 }); | 18071 }); |
18072 | 18072 |
18073 unittest.test("method--list", () { | 18073 unittest.test("method--list", () { |
18074 | 18074 |
18075 var mock = new HttpServerMock(); | 18075 var mock = new HttpServerMock(); |
18076 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; | 18076 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; |
18077 var arg_profileId = "foo"; | 18077 var arg_profileId = "foo"; |
18078 var arg_ids = buildUnnamed2737(); | 18078 var arg_ids = buildUnnamed2831(); |
18079 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18079 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
18080 var path = (req.url).path; | 18080 var path = (req.url).path; |
18081 var pathOffset = 0; | 18081 var pathOffset = 0; |
18082 var index; | 18082 var index; |
18083 var subPart; | 18083 var subPart; |
18084 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18084 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
18085 pathOffset += 1; | 18085 pathOffset += 1; |
18086 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 18086 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
18087 pathOffset += 18; | 18087 pathOffset += 18; |
18088 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 18088 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 220 matching lines...) Loading... |
18309 checkInventoryItem(response); | 18309 checkInventoryItem(response); |
18310 }))); | 18310 }))); |
18311 }); | 18311 }); |
18312 | 18312 |
18313 unittest.test("method--list", () { | 18313 unittest.test("method--list", () { |
18314 | 18314 |
18315 var mock = new HttpServerMock(); | 18315 var mock = new HttpServerMock(); |
18316 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; | 18316 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; |
18317 var arg_profileId = "foo"; | 18317 var arg_profileId = "foo"; |
18318 var arg_projectId = "foo"; | 18318 var arg_projectId = "foo"; |
18319 var arg_ids = buildUnnamed2738(); | 18319 var arg_ids = buildUnnamed2832(); |
18320 var arg_inPlan = true; | 18320 var arg_inPlan = true; |
18321 var arg_maxResults = 42; | 18321 var arg_maxResults = 42; |
18322 var arg_orderId = buildUnnamed2739(); | 18322 var arg_orderId = buildUnnamed2833(); |
18323 var arg_pageToken = "foo"; | 18323 var arg_pageToken = "foo"; |
18324 var arg_siteId = buildUnnamed2740(); | 18324 var arg_siteId = buildUnnamed2834(); |
18325 var arg_sortField = "foo"; | 18325 var arg_sortField = "foo"; |
18326 var arg_sortOrder = "foo"; | 18326 var arg_sortOrder = "foo"; |
18327 var arg_type = "foo"; | 18327 var arg_type = "foo"; |
18328 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18328 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
18329 var path = (req.url).path; | 18329 var path = (req.url).path; |
18330 var pathOffset = 0; | 18330 var pathOffset = 0; |
18331 var index; | 18331 var index; |
18332 var subPart; | 18332 var subPart; |
18333 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18333 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
18334 pathOffset += 1; | 18334 pathOffset += 1; |
(...skipping 969 matching lines...) Loading... |
19304 }))); | 19304 }))); |
19305 }); | 19305 }); |
19306 | 19306 |
19307 unittest.test("method--list", () { | 19307 unittest.test("method--list", () { |
19308 | 19308 |
19309 var mock = new HttpServerMock(); | 19309 var mock = new HttpServerMock(); |
19310 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; | 19310 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; |
19311 var arg_profileId = "foo"; | 19311 var arg_profileId = "foo"; |
19312 var arg_projectId = "foo"; | 19312 var arg_projectId = "foo"; |
19313 var arg_approved = true; | 19313 var arg_approved = true; |
19314 var arg_ids = buildUnnamed2741(); | 19314 var arg_ids = buildUnnamed2835(); |
19315 var arg_maxResults = 42; | 19315 var arg_maxResults = 42; |
19316 var arg_orderId = buildUnnamed2742(); | 19316 var arg_orderId = buildUnnamed2836(); |
19317 var arg_pageToken = "foo"; | 19317 var arg_pageToken = "foo"; |
19318 var arg_searchString = "foo"; | 19318 var arg_searchString = "foo"; |
19319 var arg_siteId = buildUnnamed2743(); | 19319 var arg_siteId = buildUnnamed2837(); |
19320 var arg_sortField = "foo"; | 19320 var arg_sortField = "foo"; |
19321 var arg_sortOrder = "foo"; | 19321 var arg_sortOrder = "foo"; |
19322 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19322 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
19323 var path = (req.url).path; | 19323 var path = (req.url).path; |
19324 var pathOffset = 0; | 19324 var pathOffset = 0; |
19325 var index; | 19325 var index; |
19326 var subPart; | 19326 var subPart; |
19327 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19327 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
19328 pathOffset += 1; | 19328 pathOffset += 1; |
19329 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 19329 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
(...skipping 121 matching lines...) Loading... |
19451 checkOrder(response); | 19451 checkOrder(response); |
19452 }))); | 19452 }))); |
19453 }); | 19453 }); |
19454 | 19454 |
19455 unittest.test("method--list", () { | 19455 unittest.test("method--list", () { |
19456 | 19456 |
19457 var mock = new HttpServerMock(); | 19457 var mock = new HttpServerMock(); |
19458 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; | 19458 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; |
19459 var arg_profileId = "foo"; | 19459 var arg_profileId = "foo"; |
19460 var arg_projectId = "foo"; | 19460 var arg_projectId = "foo"; |
19461 var arg_ids = buildUnnamed2744(); | 19461 var arg_ids = buildUnnamed2838(); |
19462 var arg_maxResults = 42; | 19462 var arg_maxResults = 42; |
19463 var arg_pageToken = "foo"; | 19463 var arg_pageToken = "foo"; |
19464 var arg_searchString = "foo"; | 19464 var arg_searchString = "foo"; |
19465 var arg_siteId = buildUnnamed2745(); | 19465 var arg_siteId = buildUnnamed2839(); |
19466 var arg_sortField = "foo"; | 19466 var arg_sortField = "foo"; |
19467 var arg_sortOrder = "foo"; | 19467 var arg_sortOrder = "foo"; |
19468 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19468 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
19469 var path = (req.url).path; | 19469 var path = (req.url).path; |
19470 var pathOffset = 0; | 19470 var pathOffset = 0; |
19471 var index; | 19471 var index; |
19472 var subPart; | 19472 var subPart; |
19473 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19473 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
19474 pathOffset += 1; | 19474 pathOffset += 1; |
19475 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 19475 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
(...skipping 167 matching lines...) Loading... |
19643 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { | 19643 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { |
19644 checkPlacementGroup(response); | 19644 checkPlacementGroup(response); |
19645 }))); | 19645 }))); |
19646 }); | 19646 }); |
19647 | 19647 |
19648 unittest.test("method--list", () { | 19648 unittest.test("method--list", () { |
19649 | 19649 |
19650 var mock = new HttpServerMock(); | 19650 var mock = new HttpServerMock(); |
19651 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; | 19651 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; |
19652 var arg_profileId = "foo"; | 19652 var arg_profileId = "foo"; |
19653 var arg_advertiserIds = buildUnnamed2746(); | 19653 var arg_advertiserIds = buildUnnamed2840(); |
19654 var arg_archived = true; | 19654 var arg_archived = true; |
19655 var arg_campaignIds = buildUnnamed2747(); | 19655 var arg_campaignIds = buildUnnamed2841(); |
19656 var arg_contentCategoryIds = buildUnnamed2748(); | 19656 var arg_contentCategoryIds = buildUnnamed2842(); |
19657 var arg_directorySiteIds = buildUnnamed2749(); | 19657 var arg_directorySiteIds = buildUnnamed2843(); |
19658 var arg_ids = buildUnnamed2750(); | 19658 var arg_ids = buildUnnamed2844(); |
19659 var arg_maxEndDate = "foo"; | 19659 var arg_maxEndDate = "foo"; |
19660 var arg_maxResults = 42; | 19660 var arg_maxResults = 42; |
19661 var arg_maxStartDate = "foo"; | 19661 var arg_maxStartDate = "foo"; |
19662 var arg_minEndDate = "foo"; | 19662 var arg_minEndDate = "foo"; |
19663 var arg_minStartDate = "foo"; | 19663 var arg_minStartDate = "foo"; |
19664 var arg_pageToken = "foo"; | 19664 var arg_pageToken = "foo"; |
19665 var arg_placementGroupType = "foo"; | 19665 var arg_placementGroupType = "foo"; |
19666 var arg_placementStrategyIds = buildUnnamed2751(); | 19666 var arg_placementStrategyIds = buildUnnamed2845(); |
19667 var arg_pricingTypes = buildUnnamed2752(); | 19667 var arg_pricingTypes = buildUnnamed2846(); |
19668 var arg_searchString = "foo"; | 19668 var arg_searchString = "foo"; |
19669 var arg_siteIds = buildUnnamed2753(); | 19669 var arg_siteIds = buildUnnamed2847(); |
19670 var arg_sortField = "foo"; | 19670 var arg_sortField = "foo"; |
19671 var arg_sortOrder = "foo"; | 19671 var arg_sortOrder = "foo"; |
19672 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19672 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
19673 var path = (req.url).path; | 19673 var path = (req.url).path; |
19674 var pathOffset = 0; | 19674 var pathOffset = 0; |
19675 var index; | 19675 var index; |
19676 var subPart; | 19676 var subPart; |
19677 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19677 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
19678 pathOffset += 1; | 19678 pathOffset += 1; |
19679 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 19679 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
(...skipping 343 matching lines...) Loading... |
20023 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { | 20023 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { |
20024 checkPlacementStrategy(response); | 20024 checkPlacementStrategy(response); |
20025 }))); | 20025 }))); |
20026 }); | 20026 }); |
20027 | 20027 |
20028 unittest.test("method--list", () { | 20028 unittest.test("method--list", () { |
20029 | 20029 |
20030 var mock = new HttpServerMock(); | 20030 var mock = new HttpServerMock(); |
20031 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; | 20031 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; |
20032 var arg_profileId = "foo"; | 20032 var arg_profileId = "foo"; |
20033 var arg_ids = buildUnnamed2754(); | 20033 var arg_ids = buildUnnamed2848(); |
20034 var arg_maxResults = 42; | 20034 var arg_maxResults = 42; |
20035 var arg_pageToken = "foo"; | 20035 var arg_pageToken = "foo"; |
20036 var arg_searchString = "foo"; | 20036 var arg_searchString = "foo"; |
20037 var arg_sortField = "foo"; | 20037 var arg_sortField = "foo"; |
20038 var arg_sortOrder = "foo"; | 20038 var arg_sortOrder = "foo"; |
20039 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 20039 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
20040 var path = (req.url).path; | 20040 var path = (req.url).path; |
20041 var pathOffset = 0; | 20041 var pathOffset = 0; |
20042 var index; | 20042 var index; |
20043 var subPart; | 20043 var subPart; |
(...skipping 165 matching lines...) Loading... |
20209 }); | 20209 }); |
20210 | 20210 |
20211 | 20211 |
20212 unittest.group("resource-PlacementsResourceApi", () { | 20212 unittest.group("resource-PlacementsResourceApi", () { |
20213 unittest.test("method--generatetags", () { | 20213 unittest.test("method--generatetags", () { |
20214 | 20214 |
20215 var mock = new HttpServerMock(); | 20215 var mock = new HttpServerMock(); |
20216 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 20216 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
20217 var arg_profileId = "foo"; | 20217 var arg_profileId = "foo"; |
20218 var arg_campaignId = "foo"; | 20218 var arg_campaignId = "foo"; |
20219 var arg_placementIds = buildUnnamed2755(); | 20219 var arg_placementIds = buildUnnamed2849(); |
20220 var arg_tagFormats = buildUnnamed2756(); | 20220 var arg_tagFormats = buildUnnamed2850(); |
20221 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 20221 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
20222 var path = (req.url).path; | 20222 var path = (req.url).path; |
20223 var pathOffset = 0; | 20223 var pathOffset = 0; |
20224 var index; | 20224 var index; |
20225 var subPart; | 20225 var subPart; |
20226 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 20226 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
20227 pathOffset += 1; | 20227 pathOffset += 1; |
20228 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 20228 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
20229 pathOffset += 18; | 20229 pathOffset += 18; |
20230 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 20230 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 150 matching lines...) Loading... |
20381 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { | 20381 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { |
20382 checkPlacement(response); | 20382 checkPlacement(response); |
20383 }))); | 20383 }))); |
20384 }); | 20384 }); |
20385 | 20385 |
20386 unittest.test("method--list", () { | 20386 unittest.test("method--list", () { |
20387 | 20387 |
20388 var mock = new HttpServerMock(); | 20388 var mock = new HttpServerMock(); |
20389 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 20389 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
20390 var arg_profileId = "foo"; | 20390 var arg_profileId = "foo"; |
20391 var arg_advertiserIds = buildUnnamed2757(); | 20391 var arg_advertiserIds = buildUnnamed2851(); |
20392 var arg_archived = true; | 20392 var arg_archived = true; |
20393 var arg_campaignIds = buildUnnamed2758(); | 20393 var arg_campaignIds = buildUnnamed2852(); |
20394 var arg_compatibilities = buildUnnamed2759(); | 20394 var arg_compatibilities = buildUnnamed2853(); |
20395 var arg_contentCategoryIds = buildUnnamed2760(); | 20395 var arg_contentCategoryIds = buildUnnamed2854(); |
20396 var arg_directorySiteIds = buildUnnamed2761(); | 20396 var arg_directorySiteIds = buildUnnamed2855(); |
20397 var arg_groupIds = buildUnnamed2762(); | 20397 var arg_groupIds = buildUnnamed2856(); |
20398 var arg_ids = buildUnnamed2763(); | 20398 var arg_ids = buildUnnamed2857(); |
20399 var arg_maxEndDate = "foo"; | 20399 var arg_maxEndDate = "foo"; |
20400 var arg_maxResults = 42; | 20400 var arg_maxResults = 42; |
20401 var arg_maxStartDate = "foo"; | 20401 var arg_maxStartDate = "foo"; |
20402 var arg_minEndDate = "foo"; | 20402 var arg_minEndDate = "foo"; |
20403 var arg_minStartDate = "foo"; | 20403 var arg_minStartDate = "foo"; |
20404 var arg_pageToken = "foo"; | 20404 var arg_pageToken = "foo"; |
20405 var arg_paymentSource = "foo"; | 20405 var arg_paymentSource = "foo"; |
20406 var arg_placementStrategyIds = buildUnnamed2764(); | 20406 var arg_placementStrategyIds = buildUnnamed2858(); |
20407 var arg_pricingTypes = buildUnnamed2765(); | 20407 var arg_pricingTypes = buildUnnamed2859(); |
20408 var arg_searchString = "foo"; | 20408 var arg_searchString = "foo"; |
20409 var arg_siteIds = buildUnnamed2766(); | 20409 var arg_siteIds = buildUnnamed2860(); |
20410 var arg_sizeIds = buildUnnamed2767(); | 20410 var arg_sizeIds = buildUnnamed2861(); |
20411 var arg_sortField = "foo"; | 20411 var arg_sortField = "foo"; |
20412 var arg_sortOrder = "foo"; | 20412 var arg_sortOrder = "foo"; |
20413 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 20413 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
20414 var path = (req.url).path; | 20414 var path = (req.url).path; |
20415 var pathOffset = 0; | 20415 var pathOffset = 0; |
20416 var index; | 20416 var index; |
20417 var subPart; | 20417 var subPart; |
20418 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 20418 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
20419 pathOffset += 1; | 20419 pathOffset += 1; |
20420 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 20420 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
(...skipping 462 matching lines...) Loading... |
20883 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { | 20883 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { |
20884 checkProject(response); | 20884 checkProject(response); |
20885 }))); | 20885 }))); |
20886 }); | 20886 }); |
20887 | 20887 |
20888 unittest.test("method--list", () { | 20888 unittest.test("method--list", () { |
20889 | 20889 |
20890 var mock = new HttpServerMock(); | 20890 var mock = new HttpServerMock(); |
20891 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; | 20891 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; |
20892 var arg_profileId = "foo"; | 20892 var arg_profileId = "foo"; |
20893 var arg_advertiserIds = buildUnnamed2768(); | 20893 var arg_advertiserIds = buildUnnamed2862(); |
20894 var arg_ids = buildUnnamed2769(); | 20894 var arg_ids = buildUnnamed2863(); |
20895 var arg_maxResults = 42; | 20895 var arg_maxResults = 42; |
20896 var arg_pageToken = "foo"; | 20896 var arg_pageToken = "foo"; |
20897 var arg_searchString = "foo"; | 20897 var arg_searchString = "foo"; |
20898 var arg_sortField = "foo"; | 20898 var arg_sortField = "foo"; |
20899 var arg_sortOrder = "foo"; | 20899 var arg_sortOrder = "foo"; |
20900 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 20900 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
20901 var path = (req.url).path; | 20901 var path = (req.url).path; |
20902 var pathOffset = 0; | 20902 var pathOffset = 0; |
20903 var index; | 20903 var index; |
20904 var subPart; | 20904 var subPart; |
(...skipping 1327 matching lines...) Loading... |
22232 unittest.test("method--list", () { | 22232 unittest.test("method--list", () { |
22233 | 22233 |
22234 var mock = new HttpServerMock(); | 22234 var mock = new HttpServerMock(); |
22235 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; | 22235 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; |
22236 var arg_profileId = "foo"; | 22236 var arg_profileId = "foo"; |
22237 var arg_acceptsInStreamVideoPlacements = true; | 22237 var arg_acceptsInStreamVideoPlacements = true; |
22238 var arg_acceptsInterstitialPlacements = true; | 22238 var arg_acceptsInterstitialPlacements = true; |
22239 var arg_acceptsPublisherPaidPlacements = true; | 22239 var arg_acceptsPublisherPaidPlacements = true; |
22240 var arg_adWordsSite = true; | 22240 var arg_adWordsSite = true; |
22241 var arg_approved = true; | 22241 var arg_approved = true; |
22242 var arg_campaignIds = buildUnnamed2770(); | 22242 var arg_campaignIds = buildUnnamed2864(); |
22243 var arg_directorySiteIds = buildUnnamed2771(); | 22243 var arg_directorySiteIds = buildUnnamed2865(); |
22244 var arg_ids = buildUnnamed2772(); | 22244 var arg_ids = buildUnnamed2866(); |
22245 var arg_maxResults = 42; | 22245 var arg_maxResults = 42; |
22246 var arg_pageToken = "foo"; | 22246 var arg_pageToken = "foo"; |
22247 var arg_searchString = "foo"; | 22247 var arg_searchString = "foo"; |
22248 var arg_sortField = "foo"; | 22248 var arg_sortField = "foo"; |
22249 var arg_sortOrder = "foo"; | 22249 var arg_sortOrder = "foo"; |
22250 var arg_subaccountId = "foo"; | 22250 var arg_subaccountId = "foo"; |
22251 var arg_unmappedSite = true; | 22251 var arg_unmappedSite = true; |
22252 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22252 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
22253 var path = (req.url).path; | 22253 var path = (req.url).path; |
22254 var pathOffset = 0; | 22254 var pathOffset = 0; |
(...skipping 291 matching lines...) Loading... |
22546 }))); | 22546 }))); |
22547 }); | 22547 }); |
22548 | 22548 |
22549 unittest.test("method--list", () { | 22549 unittest.test("method--list", () { |
22550 | 22550 |
22551 var mock = new HttpServerMock(); | 22551 var mock = new HttpServerMock(); |
22552 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; | 22552 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; |
22553 var arg_profileId = "foo"; | 22553 var arg_profileId = "foo"; |
22554 var arg_height = 42; | 22554 var arg_height = 42; |
22555 var arg_iabStandard = true; | 22555 var arg_iabStandard = true; |
22556 var arg_ids = buildUnnamed2773(); | 22556 var arg_ids = buildUnnamed2867(); |
22557 var arg_width = 42; | 22557 var arg_width = 42; |
22558 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22558 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
22559 var path = (req.url).path; | 22559 var path = (req.url).path; |
22560 var pathOffset = 0; | 22560 var pathOffset = 0; |
22561 var index; | 22561 var index; |
22562 var subPart; | 22562 var subPart; |
22563 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 22563 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
22564 pathOffset += 1; | 22564 pathOffset += 1; |
22565 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 22565 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
22566 pathOffset += 18; | 22566 pathOffset += 18; |
(...skipping 156 matching lines...) Loading... |
22723 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { | 22723 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { |
22724 checkSubaccount(response); | 22724 checkSubaccount(response); |
22725 }))); | 22725 }))); |
22726 }); | 22726 }); |
22727 | 22727 |
22728 unittest.test("method--list", () { | 22728 unittest.test("method--list", () { |
22729 | 22729 |
22730 var mock = new HttpServerMock(); | 22730 var mock = new HttpServerMock(); |
22731 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; | 22731 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; |
22732 var arg_profileId = "foo"; | 22732 var arg_profileId = "foo"; |
22733 var arg_ids = buildUnnamed2774(); | 22733 var arg_ids = buildUnnamed2868(); |
22734 var arg_maxResults = 42; | 22734 var arg_maxResults = 42; |
22735 var arg_pageToken = "foo"; | 22735 var arg_pageToken = "foo"; |
22736 var arg_searchString = "foo"; | 22736 var arg_searchString = "foo"; |
22737 var arg_sortField = "foo"; | 22737 var arg_sortField = "foo"; |
22738 var arg_sortOrder = "foo"; | 22738 var arg_sortOrder = "foo"; |
22739 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22739 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
22740 var path = (req.url).path; | 22740 var path = (req.url).path; |
22741 var pathOffset = 0; | 22741 var pathOffset = 0; |
22742 var index; | 22742 var index; |
22743 var subPart; | 22743 var subPart; |
(...skipping 407 matching lines...) Loading... |
23151 checkTargetingTemplate(response); | 23151 checkTargetingTemplate(response); |
23152 }))); | 23152 }))); |
23153 }); | 23153 }); |
23154 | 23154 |
23155 unittest.test("method--list", () { | 23155 unittest.test("method--list", () { |
23156 | 23156 |
23157 var mock = new HttpServerMock(); | 23157 var mock = new HttpServerMock(); |
23158 api.TargetingTemplatesResourceApi res = new api.DfareportingApi(mock).targ
etingTemplates; | 23158 api.TargetingTemplatesResourceApi res = new api.DfareportingApi(mock).targ
etingTemplates; |
23159 var arg_profileId = "foo"; | 23159 var arg_profileId = "foo"; |
23160 var arg_advertiserId = "foo"; | 23160 var arg_advertiserId = "foo"; |
23161 var arg_ids = buildUnnamed2775(); | 23161 var arg_ids = buildUnnamed2869(); |
23162 var arg_maxResults = 42; | 23162 var arg_maxResults = 42; |
23163 var arg_pageToken = "foo"; | 23163 var arg_pageToken = "foo"; |
23164 var arg_searchString = "foo"; | 23164 var arg_searchString = "foo"; |
23165 var arg_sortField = "foo"; | 23165 var arg_sortField = "foo"; |
23166 var arg_sortOrder = "foo"; | 23166 var arg_sortOrder = "foo"; |
23167 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 23167 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
23168 var path = (req.url).path; | 23168 var path = (req.url).path; |
23169 var pathOffset = 0; | 23169 var pathOffset = 0; |
23170 var index; | 23170 var index; |
23171 var subPart; | 23171 var subPart; |
(...skipping 434 matching lines...) Loading... |
23606 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { | 23606 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { |
23607 checkUserRolePermission(response); | 23607 checkUserRolePermission(response); |
23608 }))); | 23608 }))); |
23609 }); | 23609 }); |
23610 | 23610 |
23611 unittest.test("method--list", () { | 23611 unittest.test("method--list", () { |
23612 | 23612 |
23613 var mock = new HttpServerMock(); | 23613 var mock = new HttpServerMock(); |
23614 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; | 23614 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; |
23615 var arg_profileId = "foo"; | 23615 var arg_profileId = "foo"; |
23616 var arg_ids = buildUnnamed2776(); | 23616 var arg_ids = buildUnnamed2870(); |
23617 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 23617 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
23618 var path = (req.url).path; | 23618 var path = (req.url).path; |
23619 var pathOffset = 0; | 23619 var pathOffset = 0; |
23620 var index; | 23620 var index; |
23621 var subPart; | 23621 var subPart; |
23622 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 23622 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
23623 pathOffset += 1; | 23623 pathOffset += 1; |
23624 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); | 23624 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.6/")); |
23625 pathOffset += 18; | 23625 pathOffset += 18; |
23626 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 23626 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
(...skipping 208 matching lines...) Loading... |
23835 checkUserRole(response); | 23835 checkUserRole(response); |
23836 }))); | 23836 }))); |
23837 }); | 23837 }); |
23838 | 23838 |
23839 unittest.test("method--list", () { | 23839 unittest.test("method--list", () { |
23840 | 23840 |
23841 var mock = new HttpServerMock(); | 23841 var mock = new HttpServerMock(); |
23842 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; | 23842 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; |
23843 var arg_profileId = "foo"; | 23843 var arg_profileId = "foo"; |
23844 var arg_accountUserRoleOnly = true; | 23844 var arg_accountUserRoleOnly = true; |
23845 var arg_ids = buildUnnamed2777(); | 23845 var arg_ids = buildUnnamed2871(); |
23846 var arg_maxResults = 42; | 23846 var arg_maxResults = 42; |
23847 var arg_pageToken = "foo"; | 23847 var arg_pageToken = "foo"; |
23848 var arg_searchString = "foo"; | 23848 var arg_searchString = "foo"; |
23849 var arg_sortField = "foo"; | 23849 var arg_sortField = "foo"; |
23850 var arg_sortOrder = "foo"; | 23850 var arg_sortOrder = "foo"; |
23851 var arg_subaccountId = "foo"; | 23851 var arg_subaccountId = "foo"; |
23852 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 23852 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
23853 var path = (req.url).path; | 23853 var path = (req.url).path; |
23854 var pathOffset = 0; | 23854 var pathOffset = 0; |
23855 var index; | 23855 var index; |
(...skipping 163 matching lines...) Loading... |
24019 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { | 24019 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { |
24020 checkUserRole(response); | 24020 checkUserRole(response); |
24021 }))); | 24021 }))); |
24022 }); | 24022 }); |
24023 | 24023 |
24024 }); | 24024 }); |
24025 | 24025 |
24026 | 24026 |
24027 } | 24027 } |
24028 | 24028 |
OLD | NEW |