| OLD | NEW |
| 1 library googleapis.dfareporting.v2_3.test; | 1 library googleapis.dfareporting.v2_3.test; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import 'package:http/http.dart' as http; | 8 import 'package:http/http.dart' as http; |
| 9 import 'package:http/testing.dart' as http_testing; | 9 import 'package:http/testing.dart' as http_testing; |
| 10 import 'package:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.dart' as unittest; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 } | 44 } |
| 45 } | 45 } |
| 46 } | 46 } |
| 47 | 47 |
| 48 http.StreamedResponse stringResponse( | 48 http.StreamedResponse stringResponse( |
| 49 core.int status, core.Map headers, core.String body) { | 49 core.int status, core.Map headers, core.String body) { |
| 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); | 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); |
| 51 return new http.StreamedResponse(stream, status, headers: headers); | 51 return new http.StreamedResponse(stream, status, headers: headers); |
| 52 } | 52 } |
| 53 | 53 |
| 54 buildUnnamed1549() { | 54 buildUnnamed1855() { |
| 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 checkUnnamed1549(core.List<core.String> o) { | 61 checkUnnamed1855(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 buildUnnamed1550() { | 67 buildUnnamed1856() { |
| 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 checkUnnamed1550(core.List<core.String> o) { | 74 checkUnnamed1856(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 = buildUnnamed1549(); | 85 o.accountPermissionIds = buildUnnamed1855(); |
| 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 = buildUnnamed1550(); | 90 o.availablePermissionIds = buildUnnamed1856(); |
| 91 o.comscoreVceEnabled = true; | 91 o.comscoreVceEnabled = true; |
| 92 o.countryId = "foo"; | 92 o.countryId = "foo"; |
| 93 o.currencyId = "foo"; | 93 o.currencyId = "foo"; |
| 94 o.defaultCreativeSizeId = "foo"; | 94 o.defaultCreativeSizeId = "foo"; |
| 95 o.description = "foo"; | 95 o.description = "foo"; |
| 96 o.id = "foo"; | 96 o.id = "foo"; |
| 97 o.kind = "foo"; | 97 o.kind = "foo"; |
| 98 o.locale = "foo"; | 98 o.locale = "foo"; |
| 99 o.maximumImageSize = "foo"; | 99 o.maximumImageSize = "foo"; |
| 100 o.name = "foo"; | 100 o.name = "foo"; |
| 101 o.nielsenOcrEnabled = true; | 101 o.nielsenOcrEnabled = true; |
| 102 o.reportsConfiguration = buildReportsConfiguration(); | 102 o.reportsConfiguration = buildReportsConfiguration(); |
| 103 o.teaserSizeLimit = "foo"; | 103 o.teaserSizeLimit = "foo"; |
| 104 } | 104 } |
| 105 buildCounterAccount--; | 105 buildCounterAccount--; |
| 106 return o; | 106 return o; |
| 107 } | 107 } |
| 108 | 108 |
| 109 checkAccount(api.Account o) { | 109 checkAccount(api.Account o) { |
| 110 buildCounterAccount++; | 110 buildCounterAccount++; |
| 111 if (buildCounterAccount < 3) { | 111 if (buildCounterAccount < 3) { |
| 112 checkUnnamed1549(o.accountPermissionIds); | 112 checkUnnamed1855(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 checkUnnamed1550(o.availablePermissionIds); | 117 checkUnnamed1856(o.availablePermissionIds); |
| 118 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); | 118 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); |
| 119 unittest.expect(o.countryId, unittest.equals('foo')); | 119 unittest.expect(o.countryId, unittest.equals('foo')); |
| 120 unittest.expect(o.currencyId, unittest.equals('foo')); | 120 unittest.expect(o.currencyId, unittest.equals('foo')); |
| 121 unittest.expect(o.defaultCreativeSizeId, unittest.equals('foo')); | 121 unittest.expect(o.defaultCreativeSizeId, unittest.equals('foo')); |
| 122 unittest.expect(o.description, unittest.equals('foo')); | 122 unittest.expect(o.description, unittest.equals('foo')); |
| 123 unittest.expect(o.id, unittest.equals('foo')); | 123 unittest.expect(o.id, unittest.equals('foo')); |
| 124 unittest.expect(o.kind, unittest.equals('foo')); | 124 unittest.expect(o.kind, unittest.equals('foo')); |
| 125 unittest.expect(o.locale, unittest.equals('foo')); | 125 unittest.expect(o.locale, unittest.equals('foo')); |
| 126 unittest.expect(o.maximumImageSize, unittest.equals('foo')); | 126 unittest.expect(o.maximumImageSize, unittest.equals('foo')); |
| 127 unittest.expect(o.name, unittest.equals('foo')); | 127 unittest.expect(o.name, unittest.equals('foo')); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 152 if (buildCounterAccountActiveAdSummary < 3) { | 152 if (buildCounterAccountActiveAdSummary < 3) { |
| 153 unittest.expect(o.accountId, unittest.equals('foo')); | 153 unittest.expect(o.accountId, unittest.equals('foo')); |
| 154 unittest.expect(o.activeAds, unittest.equals('foo')); | 154 unittest.expect(o.activeAds, unittest.equals('foo')); |
| 155 unittest.expect(o.activeAdsLimitTier, unittest.equals('foo')); | 155 unittest.expect(o.activeAdsLimitTier, unittest.equals('foo')); |
| 156 unittest.expect(o.availableAds, unittest.equals('foo')); | 156 unittest.expect(o.availableAds, unittest.equals('foo')); |
| 157 unittest.expect(o.kind, unittest.equals('foo')); | 157 unittest.expect(o.kind, unittest.equals('foo')); |
| 158 } | 158 } |
| 159 buildCounterAccountActiveAdSummary--; | 159 buildCounterAccountActiveAdSummary--; |
| 160 } | 160 } |
| 161 | 161 |
| 162 buildUnnamed1551() { | 162 buildUnnamed1857() { |
| 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 checkUnnamed1551(core.List<core.String> o) { | 169 checkUnnamed1857(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 = buildUnnamed1551(); | 180 o.accountProfiles = buildUnnamed1857(); |
| 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 checkUnnamed1551(o.accountProfiles); | 194 checkUnnamed1857(o.accountProfiles); |
| 195 unittest.expect(o.id, unittest.equals('foo')); | 195 unittest.expect(o.id, unittest.equals('foo')); |
| 196 unittest.expect(o.kind, unittest.equals('foo')); | 196 unittest.expect(o.kind, unittest.equals('foo')); |
| 197 unittest.expect(o.level, unittest.equals('foo')); | 197 unittest.expect(o.level, unittest.equals('foo')); |
| 198 unittest.expect(o.name, unittest.equals('foo')); | 198 unittest.expect(o.name, unittest.equals('foo')); |
| 199 unittest.expect(o.permissionGroupId, unittest.equals('foo')); | 199 unittest.expect(o.permissionGroupId, unittest.equals('foo')); |
| 200 } | 200 } |
| 201 buildCounterAccountPermission--; | 201 buildCounterAccountPermission--; |
| 202 } | 202 } |
| 203 | 203 |
| 204 core.int buildCounterAccountPermissionGroup = 0; | 204 core.int buildCounterAccountPermissionGroup = 0; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 217 checkAccountPermissionGroup(api.AccountPermissionGroup o) { | 217 checkAccountPermissionGroup(api.AccountPermissionGroup o) { |
| 218 buildCounterAccountPermissionGroup++; | 218 buildCounterAccountPermissionGroup++; |
| 219 if (buildCounterAccountPermissionGroup < 3) { | 219 if (buildCounterAccountPermissionGroup < 3) { |
| 220 unittest.expect(o.id, unittest.equals('foo')); | 220 unittest.expect(o.id, unittest.equals('foo')); |
| 221 unittest.expect(o.kind, unittest.equals('foo')); | 221 unittest.expect(o.kind, unittest.equals('foo')); |
| 222 unittest.expect(o.name, unittest.equals('foo')); | 222 unittest.expect(o.name, unittest.equals('foo')); |
| 223 } | 223 } |
| 224 buildCounterAccountPermissionGroup--; | 224 buildCounterAccountPermissionGroup--; |
| 225 } | 225 } |
| 226 | 226 |
| 227 buildUnnamed1552() { | 227 buildUnnamed1858() { |
| 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 checkUnnamed1552(core.List<api.AccountPermissionGroup> o) { | 234 checkUnnamed1858(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 = buildUnnamed1552(); | 245 o.accountPermissionGroups = buildUnnamed1858(); |
| 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 checkUnnamed1552(o.accountPermissionGroups); | 255 checkUnnamed1858(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 buildUnnamed1553() { | 261 buildUnnamed1859() { |
| 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 checkUnnamed1553(core.List<api.AccountPermission> o) { | 268 checkUnnamed1859(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 = buildUnnamed1553(); | 279 o.accountPermissions = buildUnnamed1859(); |
| 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 checkUnnamed1553(o.accountPermissions); | 289 checkUnnamed1859(o.accountPermissions); |
| 290 unittest.expect(o.kind, unittest.equals('foo')); | 290 unittest.expect(o.kind, unittest.equals('foo')); |
| 291 } | 291 } |
| 292 buildCounterAccountPermissionsListResponse--; | 292 buildCounterAccountPermissionsListResponse--; |
| 293 } | 293 } |
| 294 | 294 |
| 295 core.int buildCounterAccountUserProfile = 0; | 295 core.int buildCounterAccountUserProfile = 0; |
| 296 buildAccountUserProfile() { | 296 buildAccountUserProfile() { |
| 297 var o = new api.AccountUserProfile(); | 297 var o = new api.AccountUserProfile(); |
| 298 buildCounterAccountUserProfile++; | 298 buildCounterAccountUserProfile++; |
| 299 if (buildCounterAccountUserProfile < 3) { | 299 if (buildCounterAccountUserProfile < 3) { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 checkObjectFilter(o.siteFilter); | 334 checkObjectFilter(o.siteFilter); |
| 335 unittest.expect(o.subaccountId, unittest.equals('foo')); | 335 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 336 unittest.expect(o.traffickerType, unittest.equals('foo')); | 336 unittest.expect(o.traffickerType, unittest.equals('foo')); |
| 337 unittest.expect(o.userAccessType, unittest.equals('foo')); | 337 unittest.expect(o.userAccessType, unittest.equals('foo')); |
| 338 checkObjectFilter(o.userRoleFilter); | 338 checkObjectFilter(o.userRoleFilter); |
| 339 unittest.expect(o.userRoleId, unittest.equals('foo')); | 339 unittest.expect(o.userRoleId, unittest.equals('foo')); |
| 340 } | 340 } |
| 341 buildCounterAccountUserProfile--; | 341 buildCounterAccountUserProfile--; |
| 342 } | 342 } |
| 343 | 343 |
| 344 buildUnnamed1554() { | 344 buildUnnamed1860() { |
| 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 checkUnnamed1554(core.List<api.AccountUserProfile> o) { | 351 checkUnnamed1860(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 = buildUnnamed1554(); | 362 o.accountUserProfiles = buildUnnamed1860(); |
| 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 checkUnnamed1554(o.accountUserProfiles); | 373 checkUnnamed1860(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 buildUnnamed1555() { | 380 buildUnnamed1861() { |
| 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 checkUnnamed1555(core.List<api.Account> o) { | 387 checkUnnamed1861(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 = buildUnnamed1555(); | 398 o.accounts = buildUnnamed1861(); |
| 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 checkUnnamed1555(o.accounts); | 409 checkUnnamed1861(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 buildUnnamed1556() { | 416 buildUnnamed1862() { |
| 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 checkUnnamed1556(core.List<api.DimensionValue> o) { | 423 checkUnnamed1862(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 buildUnnamed1557() { | 429 buildUnnamed1863() { |
| 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 checkUnnamed1557(core.List<core.String> o) { | 436 checkUnnamed1863(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 = buildUnnamed1556(); | 447 o.filters = buildUnnamed1862(); |
| 448 o.kind = "foo"; | 448 o.kind = "foo"; |
| 449 o.metricNames = buildUnnamed1557(); | 449 o.metricNames = buildUnnamed1863(); |
| 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 checkUnnamed1556(o.filters); | 458 checkUnnamed1862(o.filters); |
| 459 unittest.expect(o.kind, unittest.equals('foo')); | 459 unittest.expect(o.kind, unittest.equals('foo')); |
| 460 checkUnnamed1557(o.metricNames); | 460 checkUnnamed1863(o.metricNames); |
| 461 } | 461 } |
| 462 buildCounterActivities--; | 462 buildCounterActivities--; |
| 463 } | 463 } |
| 464 | 464 |
| 465 buildUnnamed1558() { | 465 buildUnnamed1864() { |
| 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 checkUnnamed1558(core.List<api.CreativeGroupAssignment> o) { | 472 checkUnnamed1864(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 buildUnnamed1559() { | 478 buildUnnamed1865() { |
| 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 checkUnnamed1559(core.List<api.EventTagOverride> o) { | 485 checkUnnamed1865(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 buildUnnamed1560() { | 491 buildUnnamed1866() { |
| 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 checkUnnamed1560(core.List<api.PlacementAssignment> o) { | 498 checkUnnamed1866(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 = buildUnnamed1558(); | 522 o.creativeGroupAssignments = buildUnnamed1864(); |
| 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 = buildUnnamed1559(); | 529 o.eventTagOverrides = buildUnnamed1865(); |
| 530 o.geoTargeting = buildGeoTargeting(); | 530 o.geoTargeting = buildGeoTargeting(); |
| 531 o.id = "foo"; | 531 o.id = "foo"; |
| 532 o.idDimensionValue = buildDimensionValue(); | 532 o.idDimensionValue = buildDimensionValue(); |
| 533 o.keyValueTargetingExpression = buildKeyValueTargetingExpression(); | 533 o.keyValueTargetingExpression = buildKeyValueTargetingExpression(); |
| 534 o.kind = "foo"; | 534 o.kind = "foo"; |
| 535 o.lastModifiedInfo = buildLastModifiedInfo(); | 535 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 536 o.name = "foo"; | 536 o.name = "foo"; |
| 537 o.placementAssignments = buildUnnamed1560(); | 537 o.placementAssignments = buildUnnamed1866(); |
| 538 o.remarketingListExpression = buildListTargetingExpression(); | 538 o.remarketingListExpression = buildListTargetingExpression(); |
| 539 o.size = buildSize(); | 539 o.size = buildSize(); |
| 540 o.sslCompliant = true; | 540 o.sslCompliant = true; |
| 541 o.sslRequired = true; | 541 o.sslRequired = true; |
| 542 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 542 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 543 o.subaccountId = "foo"; | 543 o.subaccountId = "foo"; |
| 544 o.technologyTargeting = buildTechnologyTargeting(); | 544 o.technologyTargeting = buildTechnologyTargeting(); |
| 545 o.type = "foo"; | 545 o.type = "foo"; |
| 546 } | 546 } |
| 547 buildCounterAd--; | 547 buildCounterAd--; |
| 548 return o; | 548 return o; |
| 549 } | 549 } |
| 550 | 550 |
| 551 checkAd(api.Ad o) { | 551 checkAd(api.Ad o) { |
| 552 buildCounterAd++; | 552 buildCounterAd++; |
| 553 if (buildCounterAd < 3) { | 553 if (buildCounterAd < 3) { |
| 554 unittest.expect(o.accountId, unittest.equals('foo')); | 554 unittest.expect(o.accountId, unittest.equals('foo')); |
| 555 unittest.expect(o.active, unittest.isTrue); | 555 unittest.expect(o.active, unittest.isTrue); |
| 556 unittest.expect(o.advertiserId, unittest.equals('foo')); | 556 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 557 checkDimensionValue(o.advertiserIdDimensionValue); | 557 checkDimensionValue(o.advertiserIdDimensionValue); |
| 558 unittest.expect(o.archived, unittest.isTrue); | 558 unittest.expect(o.archived, unittest.isTrue); |
| 559 unittest.expect(o.audienceSegmentId, unittest.equals('foo')); | 559 unittest.expect(o.audienceSegmentId, unittest.equals('foo')); |
| 560 unittest.expect(o.campaignId, unittest.equals('foo')); | 560 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 561 checkDimensionValue(o.campaignIdDimensionValue); | 561 checkDimensionValue(o.campaignIdDimensionValue); |
| 562 checkClickThroughUrl(o.clickThroughUrl); | 562 checkClickThroughUrl(o.clickThroughUrl); |
| 563 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); | 563 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); |
| 564 unittest.expect(o.comments, unittest.equals('foo')); | 564 unittest.expect(o.comments, unittest.equals('foo')); |
| 565 unittest.expect(o.compatibility, unittest.equals('foo')); | 565 unittest.expect(o.compatibility, unittest.equals('foo')); |
| 566 checkLastModifiedInfo(o.createInfo); | 566 checkLastModifiedInfo(o.createInfo); |
| 567 checkUnnamed1558(o.creativeGroupAssignments); | 567 checkUnnamed1864(o.creativeGroupAssignments); |
| 568 checkCreativeRotation(o.creativeRotation); | 568 checkCreativeRotation(o.creativeRotation); |
| 569 checkDayPartTargeting(o.dayPartTargeting); | 569 checkDayPartTargeting(o.dayPartTargeting); |
| 570 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); | 570 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); |
| 571 checkDeliverySchedule(o.deliverySchedule); | 571 checkDeliverySchedule(o.deliverySchedule); |
| 572 unittest.expect(o.dynamicClickTracker, unittest.isTrue); | 572 unittest.expect(o.dynamicClickTracker, unittest.isTrue); |
| 573 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 573 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 574 checkUnnamed1559(o.eventTagOverrides); | 574 checkUnnamed1865(o.eventTagOverrides); |
| 575 checkGeoTargeting(o.geoTargeting); | 575 checkGeoTargeting(o.geoTargeting); |
| 576 unittest.expect(o.id, unittest.equals('foo')); | 576 unittest.expect(o.id, unittest.equals('foo')); |
| 577 checkDimensionValue(o.idDimensionValue); | 577 checkDimensionValue(o.idDimensionValue); |
| 578 checkKeyValueTargetingExpression(o.keyValueTargetingExpression); | 578 checkKeyValueTargetingExpression(o.keyValueTargetingExpression); |
| 579 unittest.expect(o.kind, unittest.equals('foo')); | 579 unittest.expect(o.kind, unittest.equals('foo')); |
| 580 checkLastModifiedInfo(o.lastModifiedInfo); | 580 checkLastModifiedInfo(o.lastModifiedInfo); |
| 581 unittest.expect(o.name, unittest.equals('foo')); | 581 unittest.expect(o.name, unittest.equals('foo')); |
| 582 checkUnnamed1560(o.placementAssignments); | 582 checkUnnamed1866(o.placementAssignments); |
| 583 checkListTargetingExpression(o.remarketingListExpression); | 583 checkListTargetingExpression(o.remarketingListExpression); |
| 584 checkSize(o.size); | 584 checkSize(o.size); |
| 585 unittest.expect(o.sslCompliant, unittest.isTrue); | 585 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 586 unittest.expect(o.sslRequired, unittest.isTrue); | 586 unittest.expect(o.sslRequired, unittest.isTrue); |
| 587 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 587 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 588 unittest.expect(o.subaccountId, unittest.equals('foo')); | 588 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 589 checkTechnologyTargeting(o.technologyTargeting); | 589 checkTechnologyTargeting(o.technologyTargeting); |
| 590 unittest.expect(o.type, unittest.equals('foo')); | 590 unittest.expect(o.type, unittest.equals('foo')); |
| 591 } | 591 } |
| 592 buildCounterAd--; | 592 buildCounterAd--; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 618 unittest.expect(o.height, unittest.equals('foo')); | 618 unittest.expect(o.height, unittest.equals('foo')); |
| 619 unittest.expect(o.linkedPlacementId, unittest.equals('foo')); | 619 unittest.expect(o.linkedPlacementId, unittest.equals('foo')); |
| 620 unittest.expect(o.name, unittest.equals('foo')); | 620 unittest.expect(o.name, unittest.equals('foo')); |
| 621 unittest.expect(o.paymentSourceType, unittest.equals('foo')); | 621 unittest.expect(o.paymentSourceType, unittest.equals('foo')); |
| 622 unittest.expect(o.primary, unittest.isTrue); | 622 unittest.expect(o.primary, unittest.isTrue); |
| 623 unittest.expect(o.width, unittest.equals('foo')); | 623 unittest.expect(o.width, unittest.equals('foo')); |
| 624 } | 624 } |
| 625 buildCounterAdSlot--; | 625 buildCounterAdSlot--; |
| 626 } | 626 } |
| 627 | 627 |
| 628 buildUnnamed1561() { | 628 buildUnnamed1867() { |
| 629 var o = new core.List<api.Ad>(); | 629 var o = new core.List<api.Ad>(); |
| 630 o.add(buildAd()); | 630 o.add(buildAd()); |
| 631 o.add(buildAd()); | 631 o.add(buildAd()); |
| 632 return o; | 632 return o; |
| 633 } | 633 } |
| 634 | 634 |
| 635 checkUnnamed1561(core.List<api.Ad> o) { | 635 checkUnnamed1867(core.List<api.Ad> o) { |
| 636 unittest.expect(o, unittest.hasLength(2)); | 636 unittest.expect(o, unittest.hasLength(2)); |
| 637 checkAd(o[0]); | 637 checkAd(o[0]); |
| 638 checkAd(o[1]); | 638 checkAd(o[1]); |
| 639 } | 639 } |
| 640 | 640 |
| 641 core.int buildCounterAdsListResponse = 0; | 641 core.int buildCounterAdsListResponse = 0; |
| 642 buildAdsListResponse() { | 642 buildAdsListResponse() { |
| 643 var o = new api.AdsListResponse(); | 643 var o = new api.AdsListResponse(); |
| 644 buildCounterAdsListResponse++; | 644 buildCounterAdsListResponse++; |
| 645 if (buildCounterAdsListResponse < 3) { | 645 if (buildCounterAdsListResponse < 3) { |
| 646 o.ads = buildUnnamed1561(); | 646 o.ads = buildUnnamed1867(); |
| 647 o.kind = "foo"; | 647 o.kind = "foo"; |
| 648 o.nextPageToken = "foo"; | 648 o.nextPageToken = "foo"; |
| 649 } | 649 } |
| 650 buildCounterAdsListResponse--; | 650 buildCounterAdsListResponse--; |
| 651 return o; | 651 return o; |
| 652 } | 652 } |
| 653 | 653 |
| 654 checkAdsListResponse(api.AdsListResponse o) { | 654 checkAdsListResponse(api.AdsListResponse o) { |
| 655 buildCounterAdsListResponse++; | 655 buildCounterAdsListResponse++; |
| 656 if (buildCounterAdsListResponse < 3) { | 656 if (buildCounterAdsListResponse < 3) { |
| 657 checkUnnamed1561(o.ads); | 657 checkUnnamed1867(o.ads); |
| 658 unittest.expect(o.kind, unittest.equals('foo')); | 658 unittest.expect(o.kind, unittest.equals('foo')); |
| 659 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 659 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 660 } | 660 } |
| 661 buildCounterAdsListResponse--; | 661 buildCounterAdsListResponse--; |
| 662 } | 662 } |
| 663 | 663 |
| 664 core.int buildCounterAdvertiser = 0; | 664 core.int buildCounterAdvertiser = 0; |
| 665 buildAdvertiser() { | 665 buildAdvertiser() { |
| 666 var o = new api.Advertiser(); | 666 var o = new api.Advertiser(); |
| 667 buildCounterAdvertiser++; | 667 buildCounterAdvertiser++; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 buildCounterAdvertiserGroup++; | 726 buildCounterAdvertiserGroup++; |
| 727 if (buildCounterAdvertiserGroup < 3) { | 727 if (buildCounterAdvertiserGroup < 3) { |
| 728 unittest.expect(o.accountId, unittest.equals('foo')); | 728 unittest.expect(o.accountId, unittest.equals('foo')); |
| 729 unittest.expect(o.id, unittest.equals('foo')); | 729 unittest.expect(o.id, unittest.equals('foo')); |
| 730 unittest.expect(o.kind, unittest.equals('foo')); | 730 unittest.expect(o.kind, unittest.equals('foo')); |
| 731 unittest.expect(o.name, unittest.equals('foo')); | 731 unittest.expect(o.name, unittest.equals('foo')); |
| 732 } | 732 } |
| 733 buildCounterAdvertiserGroup--; | 733 buildCounterAdvertiserGroup--; |
| 734 } | 734 } |
| 735 | 735 |
| 736 buildUnnamed1562() { | 736 buildUnnamed1868() { |
| 737 var o = new core.List<api.AdvertiserGroup>(); | 737 var o = new core.List<api.AdvertiserGroup>(); |
| 738 o.add(buildAdvertiserGroup()); | 738 o.add(buildAdvertiserGroup()); |
| 739 o.add(buildAdvertiserGroup()); | 739 o.add(buildAdvertiserGroup()); |
| 740 return o; | 740 return o; |
| 741 } | 741 } |
| 742 | 742 |
| 743 checkUnnamed1562(core.List<api.AdvertiserGroup> o) { | 743 checkUnnamed1868(core.List<api.AdvertiserGroup> o) { |
| 744 unittest.expect(o, unittest.hasLength(2)); | 744 unittest.expect(o, unittest.hasLength(2)); |
| 745 checkAdvertiserGroup(o[0]); | 745 checkAdvertiserGroup(o[0]); |
| 746 checkAdvertiserGroup(o[1]); | 746 checkAdvertiserGroup(o[1]); |
| 747 } | 747 } |
| 748 | 748 |
| 749 core.int buildCounterAdvertiserGroupsListResponse = 0; | 749 core.int buildCounterAdvertiserGroupsListResponse = 0; |
| 750 buildAdvertiserGroupsListResponse() { | 750 buildAdvertiserGroupsListResponse() { |
| 751 var o = new api.AdvertiserGroupsListResponse(); | 751 var o = new api.AdvertiserGroupsListResponse(); |
| 752 buildCounterAdvertiserGroupsListResponse++; | 752 buildCounterAdvertiserGroupsListResponse++; |
| 753 if (buildCounterAdvertiserGroupsListResponse < 3) { | 753 if (buildCounterAdvertiserGroupsListResponse < 3) { |
| 754 o.advertiserGroups = buildUnnamed1562(); | 754 o.advertiserGroups = buildUnnamed1868(); |
| 755 o.kind = "foo"; | 755 o.kind = "foo"; |
| 756 o.nextPageToken = "foo"; | 756 o.nextPageToken = "foo"; |
| 757 } | 757 } |
| 758 buildCounterAdvertiserGroupsListResponse--; | 758 buildCounterAdvertiserGroupsListResponse--; |
| 759 return o; | 759 return o; |
| 760 } | 760 } |
| 761 | 761 |
| 762 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { | 762 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { |
| 763 buildCounterAdvertiserGroupsListResponse++; | 763 buildCounterAdvertiserGroupsListResponse++; |
| 764 if (buildCounterAdvertiserGroupsListResponse < 3) { | 764 if (buildCounterAdvertiserGroupsListResponse < 3) { |
| 765 checkUnnamed1562(o.advertiserGroups); | 765 checkUnnamed1868(o.advertiserGroups); |
| 766 unittest.expect(o.kind, unittest.equals('foo')); | 766 unittest.expect(o.kind, unittest.equals('foo')); |
| 767 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 767 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 768 } | 768 } |
| 769 buildCounterAdvertiserGroupsListResponse--; | 769 buildCounterAdvertiserGroupsListResponse--; |
| 770 } | 770 } |
| 771 | 771 |
| 772 buildUnnamed1563() { | 772 buildUnnamed1869() { |
| 773 var o = new core.List<api.Advertiser>(); | 773 var o = new core.List<api.Advertiser>(); |
| 774 o.add(buildAdvertiser()); | 774 o.add(buildAdvertiser()); |
| 775 o.add(buildAdvertiser()); | 775 o.add(buildAdvertiser()); |
| 776 return o; | 776 return o; |
| 777 } | 777 } |
| 778 | 778 |
| 779 checkUnnamed1563(core.List<api.Advertiser> o) { | 779 checkUnnamed1869(core.List<api.Advertiser> o) { |
| 780 unittest.expect(o, unittest.hasLength(2)); | 780 unittest.expect(o, unittest.hasLength(2)); |
| 781 checkAdvertiser(o[0]); | 781 checkAdvertiser(o[0]); |
| 782 checkAdvertiser(o[1]); | 782 checkAdvertiser(o[1]); |
| 783 } | 783 } |
| 784 | 784 |
| 785 core.int buildCounterAdvertisersListResponse = 0; | 785 core.int buildCounterAdvertisersListResponse = 0; |
| 786 buildAdvertisersListResponse() { | 786 buildAdvertisersListResponse() { |
| 787 var o = new api.AdvertisersListResponse(); | 787 var o = new api.AdvertisersListResponse(); |
| 788 buildCounterAdvertisersListResponse++; | 788 buildCounterAdvertisersListResponse++; |
| 789 if (buildCounterAdvertisersListResponse < 3) { | 789 if (buildCounterAdvertisersListResponse < 3) { |
| 790 o.advertisers = buildUnnamed1563(); | 790 o.advertisers = buildUnnamed1869(); |
| 791 o.kind = "foo"; | 791 o.kind = "foo"; |
| 792 o.nextPageToken = "foo"; | 792 o.nextPageToken = "foo"; |
| 793 } | 793 } |
| 794 buildCounterAdvertisersListResponse--; | 794 buildCounterAdvertisersListResponse--; |
| 795 return o; | 795 return o; |
| 796 } | 796 } |
| 797 | 797 |
| 798 checkAdvertisersListResponse(api.AdvertisersListResponse o) { | 798 checkAdvertisersListResponse(api.AdvertisersListResponse o) { |
| 799 buildCounterAdvertisersListResponse++; | 799 buildCounterAdvertisersListResponse++; |
| 800 if (buildCounterAdvertisersListResponse < 3) { | 800 if (buildCounterAdvertisersListResponse < 3) { |
| 801 checkUnnamed1563(o.advertisers); | 801 checkUnnamed1869(o.advertisers); |
| 802 unittest.expect(o.kind, unittest.equals('foo')); | 802 unittest.expect(o.kind, unittest.equals('foo')); |
| 803 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 803 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 804 } | 804 } |
| 805 buildCounterAdvertisersListResponse--; | 805 buildCounterAdvertisersListResponse--; |
| 806 } | 806 } |
| 807 | 807 |
| 808 core.int buildCounterAudienceSegment = 0; | 808 core.int buildCounterAudienceSegment = 0; |
| 809 buildAudienceSegment() { | 809 buildAudienceSegment() { |
| 810 var o = new api.AudienceSegment(); | 810 var o = new api.AudienceSegment(); |
| 811 buildCounterAudienceSegment++; | 811 buildCounterAudienceSegment++; |
| 812 if (buildCounterAudienceSegment < 3) { | 812 if (buildCounterAudienceSegment < 3) { |
| 813 o.allocation = 42; | 813 o.allocation = 42; |
| 814 o.id = "foo"; | 814 o.id = "foo"; |
| 815 o.name = "foo"; | 815 o.name = "foo"; |
| 816 } | 816 } |
| 817 buildCounterAudienceSegment--; | 817 buildCounterAudienceSegment--; |
| 818 return o; | 818 return o; |
| 819 } | 819 } |
| 820 | 820 |
| 821 checkAudienceSegment(api.AudienceSegment o) { | 821 checkAudienceSegment(api.AudienceSegment o) { |
| 822 buildCounterAudienceSegment++; | 822 buildCounterAudienceSegment++; |
| 823 if (buildCounterAudienceSegment < 3) { | 823 if (buildCounterAudienceSegment < 3) { |
| 824 unittest.expect(o.allocation, unittest.equals(42)); | 824 unittest.expect(o.allocation, unittest.equals(42)); |
| 825 unittest.expect(o.id, unittest.equals('foo')); | 825 unittest.expect(o.id, unittest.equals('foo')); |
| 826 unittest.expect(o.name, unittest.equals('foo')); | 826 unittest.expect(o.name, unittest.equals('foo')); |
| 827 } | 827 } |
| 828 buildCounterAudienceSegment--; | 828 buildCounterAudienceSegment--; |
| 829 } | 829 } |
| 830 | 830 |
| 831 buildUnnamed1564() { | 831 buildUnnamed1870() { |
| 832 var o = new core.List<api.AudienceSegment>(); | 832 var o = new core.List<api.AudienceSegment>(); |
| 833 o.add(buildAudienceSegment()); | 833 o.add(buildAudienceSegment()); |
| 834 o.add(buildAudienceSegment()); | 834 o.add(buildAudienceSegment()); |
| 835 return o; | 835 return o; |
| 836 } | 836 } |
| 837 | 837 |
| 838 checkUnnamed1564(core.List<api.AudienceSegment> o) { | 838 checkUnnamed1870(core.List<api.AudienceSegment> o) { |
| 839 unittest.expect(o, unittest.hasLength(2)); | 839 unittest.expect(o, unittest.hasLength(2)); |
| 840 checkAudienceSegment(o[0]); | 840 checkAudienceSegment(o[0]); |
| 841 checkAudienceSegment(o[1]); | 841 checkAudienceSegment(o[1]); |
| 842 } | 842 } |
| 843 | 843 |
| 844 core.int buildCounterAudienceSegmentGroup = 0; | 844 core.int buildCounterAudienceSegmentGroup = 0; |
| 845 buildAudienceSegmentGroup() { | 845 buildAudienceSegmentGroup() { |
| 846 var o = new api.AudienceSegmentGroup(); | 846 var o = new api.AudienceSegmentGroup(); |
| 847 buildCounterAudienceSegmentGroup++; | 847 buildCounterAudienceSegmentGroup++; |
| 848 if (buildCounterAudienceSegmentGroup < 3) { | 848 if (buildCounterAudienceSegmentGroup < 3) { |
| 849 o.audienceSegments = buildUnnamed1564(); | 849 o.audienceSegments = buildUnnamed1870(); |
| 850 o.id = "foo"; | 850 o.id = "foo"; |
| 851 o.name = "foo"; | 851 o.name = "foo"; |
| 852 } | 852 } |
| 853 buildCounterAudienceSegmentGroup--; | 853 buildCounterAudienceSegmentGroup--; |
| 854 return o; | 854 return o; |
| 855 } | 855 } |
| 856 | 856 |
| 857 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { | 857 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { |
| 858 buildCounterAudienceSegmentGroup++; | 858 buildCounterAudienceSegmentGroup++; |
| 859 if (buildCounterAudienceSegmentGroup < 3) { | 859 if (buildCounterAudienceSegmentGroup < 3) { |
| 860 checkUnnamed1564(o.audienceSegments); | 860 checkUnnamed1870(o.audienceSegments); |
| 861 unittest.expect(o.id, unittest.equals('foo')); | 861 unittest.expect(o.id, unittest.equals('foo')); |
| 862 unittest.expect(o.name, unittest.equals('foo')); | 862 unittest.expect(o.name, unittest.equals('foo')); |
| 863 } | 863 } |
| 864 buildCounterAudienceSegmentGroup--; | 864 buildCounterAudienceSegmentGroup--; |
| 865 } | 865 } |
| 866 | 866 |
| 867 core.int buildCounterBrowser = 0; | 867 core.int buildCounterBrowser = 0; |
| 868 buildBrowser() { | 868 buildBrowser() { |
| 869 var o = new api.Browser(); | 869 var o = new api.Browser(); |
| 870 buildCounterBrowser++; | 870 buildCounterBrowser++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 886 unittest.expect(o.browserVersionId, unittest.equals('foo')); | 886 unittest.expect(o.browserVersionId, unittest.equals('foo')); |
| 887 unittest.expect(o.dartId, unittest.equals('foo')); | 887 unittest.expect(o.dartId, unittest.equals('foo')); |
| 888 unittest.expect(o.kind, unittest.equals('foo')); | 888 unittest.expect(o.kind, unittest.equals('foo')); |
| 889 unittest.expect(o.majorVersion, unittest.equals('foo')); | 889 unittest.expect(o.majorVersion, unittest.equals('foo')); |
| 890 unittest.expect(o.minorVersion, unittest.equals('foo')); | 890 unittest.expect(o.minorVersion, unittest.equals('foo')); |
| 891 unittest.expect(o.name, unittest.equals('foo')); | 891 unittest.expect(o.name, unittest.equals('foo')); |
| 892 } | 892 } |
| 893 buildCounterBrowser--; | 893 buildCounterBrowser--; |
| 894 } | 894 } |
| 895 | 895 |
| 896 buildUnnamed1565() { | 896 buildUnnamed1871() { |
| 897 var o = new core.List<api.Browser>(); | 897 var o = new core.List<api.Browser>(); |
| 898 o.add(buildBrowser()); | 898 o.add(buildBrowser()); |
| 899 o.add(buildBrowser()); | 899 o.add(buildBrowser()); |
| 900 return o; | 900 return o; |
| 901 } | 901 } |
| 902 | 902 |
| 903 checkUnnamed1565(core.List<api.Browser> o) { | 903 checkUnnamed1871(core.List<api.Browser> o) { |
| 904 unittest.expect(o, unittest.hasLength(2)); | 904 unittest.expect(o, unittest.hasLength(2)); |
| 905 checkBrowser(o[0]); | 905 checkBrowser(o[0]); |
| 906 checkBrowser(o[1]); | 906 checkBrowser(o[1]); |
| 907 } | 907 } |
| 908 | 908 |
| 909 core.int buildCounterBrowsersListResponse = 0; | 909 core.int buildCounterBrowsersListResponse = 0; |
| 910 buildBrowsersListResponse() { | 910 buildBrowsersListResponse() { |
| 911 var o = new api.BrowsersListResponse(); | 911 var o = new api.BrowsersListResponse(); |
| 912 buildCounterBrowsersListResponse++; | 912 buildCounterBrowsersListResponse++; |
| 913 if (buildCounterBrowsersListResponse < 3) { | 913 if (buildCounterBrowsersListResponse < 3) { |
| 914 o.browsers = buildUnnamed1565(); | 914 o.browsers = buildUnnamed1871(); |
| 915 o.kind = "foo"; | 915 o.kind = "foo"; |
| 916 } | 916 } |
| 917 buildCounterBrowsersListResponse--; | 917 buildCounterBrowsersListResponse--; |
| 918 return o; | 918 return o; |
| 919 } | 919 } |
| 920 | 920 |
| 921 checkBrowsersListResponse(api.BrowsersListResponse o) { | 921 checkBrowsersListResponse(api.BrowsersListResponse o) { |
| 922 buildCounterBrowsersListResponse++; | 922 buildCounterBrowsersListResponse++; |
| 923 if (buildCounterBrowsersListResponse < 3) { | 923 if (buildCounterBrowsersListResponse < 3) { |
| 924 checkUnnamed1565(o.browsers); | 924 checkUnnamed1871(o.browsers); |
| 925 unittest.expect(o.kind, unittest.equals('foo')); | 925 unittest.expect(o.kind, unittest.equals('foo')); |
| 926 } | 926 } |
| 927 buildCounterBrowsersListResponse--; | 927 buildCounterBrowsersListResponse--; |
| 928 } | 928 } |
| 929 | 929 |
| 930 buildUnnamed1566() { | 930 buildUnnamed1872() { |
| 931 var o = new core.List<api.CreativeOptimizationConfiguration>(); | 931 var o = new core.List<api.CreativeOptimizationConfiguration>(); |
| 932 o.add(buildCreativeOptimizationConfiguration()); | 932 o.add(buildCreativeOptimizationConfiguration()); |
| 933 o.add(buildCreativeOptimizationConfiguration()); | 933 o.add(buildCreativeOptimizationConfiguration()); |
| 934 return o; | 934 return o; |
| 935 } | 935 } |
| 936 | 936 |
| 937 checkUnnamed1566(core.List<api.CreativeOptimizationConfiguration> o) { | 937 checkUnnamed1872(core.List<api.CreativeOptimizationConfiguration> o) { |
| 938 unittest.expect(o, unittest.hasLength(2)); | 938 unittest.expect(o, unittest.hasLength(2)); |
| 939 checkCreativeOptimizationConfiguration(o[0]); | 939 checkCreativeOptimizationConfiguration(o[0]); |
| 940 checkCreativeOptimizationConfiguration(o[1]); | 940 checkCreativeOptimizationConfiguration(o[1]); |
| 941 } | 941 } |
| 942 | 942 |
| 943 buildUnnamed1567() { | 943 buildUnnamed1873() { |
| 944 var o = new core.List<api.AudienceSegmentGroup>(); | 944 var o = new core.List<api.AudienceSegmentGroup>(); |
| 945 o.add(buildAudienceSegmentGroup()); | 945 o.add(buildAudienceSegmentGroup()); |
| 946 o.add(buildAudienceSegmentGroup()); | 946 o.add(buildAudienceSegmentGroup()); |
| 947 return o; | 947 return o; |
| 948 } | 948 } |
| 949 | 949 |
| 950 checkUnnamed1567(core.List<api.AudienceSegmentGroup> o) { | 950 checkUnnamed1873(core.List<api.AudienceSegmentGroup> o) { |
| 951 unittest.expect(o, unittest.hasLength(2)); | 951 unittest.expect(o, unittest.hasLength(2)); |
| 952 checkAudienceSegmentGroup(o[0]); | 952 checkAudienceSegmentGroup(o[0]); |
| 953 checkAudienceSegmentGroup(o[1]); | 953 checkAudienceSegmentGroup(o[1]); |
| 954 } | 954 } |
| 955 | 955 |
| 956 buildUnnamed1568() { | 956 buildUnnamed1874() { |
| 957 var o = new core.List<core.String>(); | 957 var o = new core.List<core.String>(); |
| 958 o.add("foo"); | 958 o.add("foo"); |
| 959 o.add("foo"); | 959 o.add("foo"); |
| 960 return o; | 960 return o; |
| 961 } | 961 } |
| 962 | 962 |
| 963 checkUnnamed1568(core.List<core.String> o) { | 963 checkUnnamed1874(core.List<core.String> o) { |
| 964 unittest.expect(o, unittest.hasLength(2)); | 964 unittest.expect(o, unittest.hasLength(2)); |
| 965 unittest.expect(o[0], unittest.equals('foo')); | 965 unittest.expect(o[0], unittest.equals('foo')); |
| 966 unittest.expect(o[1], unittest.equals('foo')); | 966 unittest.expect(o[1], unittest.equals('foo')); |
| 967 } | 967 } |
| 968 | 968 |
| 969 buildUnnamed1569() { | 969 buildUnnamed1875() { |
| 970 var o = new core.List<api.EventTagOverride>(); | 970 var o = new core.List<api.EventTagOverride>(); |
| 971 o.add(buildEventTagOverride()); | 971 o.add(buildEventTagOverride()); |
| 972 o.add(buildEventTagOverride()); | 972 o.add(buildEventTagOverride()); |
| 973 return o; | 973 return o; |
| 974 } | 974 } |
| 975 | 975 |
| 976 checkUnnamed1569(core.List<api.EventTagOverride> o) { | 976 checkUnnamed1875(core.List<api.EventTagOverride> o) { |
| 977 unittest.expect(o, unittest.hasLength(2)); | 977 unittest.expect(o, unittest.hasLength(2)); |
| 978 checkEventTagOverride(o[0]); | 978 checkEventTagOverride(o[0]); |
| 979 checkEventTagOverride(o[1]); | 979 checkEventTagOverride(o[1]); |
| 980 } | 980 } |
| 981 | 981 |
| 982 buildUnnamed1570() { | 982 buildUnnamed1876() { |
| 983 var o = new core.List<core.String>(); | 983 var o = new core.List<core.String>(); |
| 984 o.add("foo"); | 984 o.add("foo"); |
| 985 o.add("foo"); | 985 o.add("foo"); |
| 986 return o; | 986 return o; |
| 987 } | 987 } |
| 988 | 988 |
| 989 checkUnnamed1570(core.List<core.String> o) { | 989 checkUnnamed1876(core.List<core.String> o) { |
| 990 unittest.expect(o, unittest.hasLength(2)); | 990 unittest.expect(o, unittest.hasLength(2)); |
| 991 unittest.expect(o[0], unittest.equals('foo')); | 991 unittest.expect(o[0], unittest.equals('foo')); |
| 992 unittest.expect(o[1], unittest.equals('foo')); | 992 unittest.expect(o[1], unittest.equals('foo')); |
| 993 } | 993 } |
| 994 | 994 |
| 995 core.int buildCounterCampaign = 0; | 995 core.int buildCounterCampaign = 0; |
| 996 buildCampaign() { | 996 buildCampaign() { |
| 997 var o = new api.Campaign(); | 997 var o = new api.Campaign(); |
| 998 buildCounterCampaign++; | 998 buildCounterCampaign++; |
| 999 if (buildCounterCampaign < 3) { | 999 if (buildCounterCampaign < 3) { |
| 1000 o.accountId = "foo"; | 1000 o.accountId = "foo"; |
| 1001 o.additionalCreativeOptimizationConfigurations = buildUnnamed1566(); | 1001 o.additionalCreativeOptimizationConfigurations = buildUnnamed1872(); |
| 1002 o.advertiserGroupId = "foo"; | 1002 o.advertiserGroupId = "foo"; |
| 1003 o.advertiserId = "foo"; | 1003 o.advertiserId = "foo"; |
| 1004 o.advertiserIdDimensionValue = buildDimensionValue(); | 1004 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 1005 o.archived = true; | 1005 o.archived = true; |
| 1006 o.audienceSegmentGroups = buildUnnamed1567(); | 1006 o.audienceSegmentGroups = buildUnnamed1873(); |
| 1007 o.billingInvoiceCode = "foo"; | 1007 o.billingInvoiceCode = "foo"; |
| 1008 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); | 1008 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); |
| 1009 o.comment = "foo"; | 1009 o.comment = "foo"; |
| 1010 o.comscoreVceEnabled = true; | 1010 o.comscoreVceEnabled = true; |
| 1011 o.createInfo = buildLastModifiedInfo(); | 1011 o.createInfo = buildLastModifiedInfo(); |
| 1012 o.creativeGroupIds = buildUnnamed1568(); | 1012 o.creativeGroupIds = buildUnnamed1874(); |
| 1013 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); | 1013 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); |
| 1014 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); | 1014 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); |
| 1015 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 1015 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 1016 o.eventTagOverrides = buildUnnamed1569(); | 1016 o.eventTagOverrides = buildUnnamed1875(); |
| 1017 o.externalId = "foo"; | 1017 o.externalId = "foo"; |
| 1018 o.id = "foo"; | 1018 o.id = "foo"; |
| 1019 o.idDimensionValue = buildDimensionValue(); | 1019 o.idDimensionValue = buildDimensionValue(); |
| 1020 o.kind = "foo"; | 1020 o.kind = "foo"; |
| 1021 o.lastModifiedInfo = buildLastModifiedInfo(); | 1021 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 1022 o.lookbackConfiguration = buildLookbackConfiguration(); | 1022 o.lookbackConfiguration = buildLookbackConfiguration(); |
| 1023 o.name = "foo"; | 1023 o.name = "foo"; |
| 1024 o.nielsenOcrEnabled = true; | 1024 o.nielsenOcrEnabled = true; |
| 1025 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 1025 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 1026 o.subaccountId = "foo"; | 1026 o.subaccountId = "foo"; |
| 1027 o.traffickerEmails = buildUnnamed1570(); | 1027 o.traffickerEmails = buildUnnamed1876(); |
| 1028 } | 1028 } |
| 1029 buildCounterCampaign--; | 1029 buildCounterCampaign--; |
| 1030 return o; | 1030 return o; |
| 1031 } | 1031 } |
| 1032 | 1032 |
| 1033 checkCampaign(api.Campaign o) { | 1033 checkCampaign(api.Campaign o) { |
| 1034 buildCounterCampaign++; | 1034 buildCounterCampaign++; |
| 1035 if (buildCounterCampaign < 3) { | 1035 if (buildCounterCampaign < 3) { |
| 1036 unittest.expect(o.accountId, unittest.equals('foo')); | 1036 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1037 checkUnnamed1566(o.additionalCreativeOptimizationConfigurations); | 1037 checkUnnamed1872(o.additionalCreativeOptimizationConfigurations); |
| 1038 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); | 1038 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); |
| 1039 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1039 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 1040 checkDimensionValue(o.advertiserIdDimensionValue); | 1040 checkDimensionValue(o.advertiserIdDimensionValue); |
| 1041 unittest.expect(o.archived, unittest.isTrue); | 1041 unittest.expect(o.archived, unittest.isTrue); |
| 1042 checkUnnamed1567(o.audienceSegmentGroups); | 1042 checkUnnamed1873(o.audienceSegmentGroups); |
| 1043 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); | 1043 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); |
| 1044 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); | 1044 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); |
| 1045 unittest.expect(o.comment, unittest.equals('foo')); | 1045 unittest.expect(o.comment, unittest.equals('foo')); |
| 1046 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); | 1046 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); |
| 1047 checkLastModifiedInfo(o.createInfo); | 1047 checkLastModifiedInfo(o.createInfo); |
| 1048 checkUnnamed1568(o.creativeGroupIds); | 1048 checkUnnamed1874(o.creativeGroupIds); |
| 1049 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); | 1049 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); |
| 1050 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); | 1050 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); |
| 1051 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 1051 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 1052 checkUnnamed1569(o.eventTagOverrides); | 1052 checkUnnamed1875(o.eventTagOverrides); |
| 1053 unittest.expect(o.externalId, unittest.equals('foo')); | 1053 unittest.expect(o.externalId, unittest.equals('foo')); |
| 1054 unittest.expect(o.id, unittest.equals('foo')); | 1054 unittest.expect(o.id, unittest.equals('foo')); |
| 1055 checkDimensionValue(o.idDimensionValue); | 1055 checkDimensionValue(o.idDimensionValue); |
| 1056 unittest.expect(o.kind, unittest.equals('foo')); | 1056 unittest.expect(o.kind, unittest.equals('foo')); |
| 1057 checkLastModifiedInfo(o.lastModifiedInfo); | 1057 checkLastModifiedInfo(o.lastModifiedInfo); |
| 1058 checkLookbackConfiguration(o.lookbackConfiguration); | 1058 checkLookbackConfiguration(o.lookbackConfiguration); |
| 1059 unittest.expect(o.name, unittest.equals('foo')); | 1059 unittest.expect(o.name, unittest.equals('foo')); |
| 1060 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); | 1060 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); |
| 1061 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 1061 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 1062 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1062 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1063 checkUnnamed1570(o.traffickerEmails); | 1063 checkUnnamed1876(o.traffickerEmails); |
| 1064 } | 1064 } |
| 1065 buildCounterCampaign--; | 1065 buildCounterCampaign--; |
| 1066 } | 1066 } |
| 1067 | 1067 |
| 1068 core.int buildCounterCampaignCreativeAssociation = 0; | 1068 core.int buildCounterCampaignCreativeAssociation = 0; |
| 1069 buildCampaignCreativeAssociation() { | 1069 buildCampaignCreativeAssociation() { |
| 1070 var o = new api.CampaignCreativeAssociation(); | 1070 var o = new api.CampaignCreativeAssociation(); |
| 1071 buildCounterCampaignCreativeAssociation++; | 1071 buildCounterCampaignCreativeAssociation++; |
| 1072 if (buildCounterCampaignCreativeAssociation < 3) { | 1072 if (buildCounterCampaignCreativeAssociation < 3) { |
| 1073 o.creativeId = "foo"; | 1073 o.creativeId = "foo"; |
| 1074 o.kind = "foo"; | 1074 o.kind = "foo"; |
| 1075 } | 1075 } |
| 1076 buildCounterCampaignCreativeAssociation--; | 1076 buildCounterCampaignCreativeAssociation--; |
| 1077 return o; | 1077 return o; |
| 1078 } | 1078 } |
| 1079 | 1079 |
| 1080 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { | 1080 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { |
| 1081 buildCounterCampaignCreativeAssociation++; | 1081 buildCounterCampaignCreativeAssociation++; |
| 1082 if (buildCounterCampaignCreativeAssociation < 3) { | 1082 if (buildCounterCampaignCreativeAssociation < 3) { |
| 1083 unittest.expect(o.creativeId, unittest.equals('foo')); | 1083 unittest.expect(o.creativeId, unittest.equals('foo')); |
| 1084 unittest.expect(o.kind, unittest.equals('foo')); | 1084 unittest.expect(o.kind, unittest.equals('foo')); |
| 1085 } | 1085 } |
| 1086 buildCounterCampaignCreativeAssociation--; | 1086 buildCounterCampaignCreativeAssociation--; |
| 1087 } | 1087 } |
| 1088 | 1088 |
| 1089 buildUnnamed1571() { | 1089 buildUnnamed1877() { |
| 1090 var o = new core.List<api.CampaignCreativeAssociation>(); | 1090 var o = new core.List<api.CampaignCreativeAssociation>(); |
| 1091 o.add(buildCampaignCreativeAssociation()); | 1091 o.add(buildCampaignCreativeAssociation()); |
| 1092 o.add(buildCampaignCreativeAssociation()); | 1092 o.add(buildCampaignCreativeAssociation()); |
| 1093 return o; | 1093 return o; |
| 1094 } | 1094 } |
| 1095 | 1095 |
| 1096 checkUnnamed1571(core.List<api.CampaignCreativeAssociation> o) { | 1096 checkUnnamed1877(core.List<api.CampaignCreativeAssociation> o) { |
| 1097 unittest.expect(o, unittest.hasLength(2)); | 1097 unittest.expect(o, unittest.hasLength(2)); |
| 1098 checkCampaignCreativeAssociation(o[0]); | 1098 checkCampaignCreativeAssociation(o[0]); |
| 1099 checkCampaignCreativeAssociation(o[1]); | 1099 checkCampaignCreativeAssociation(o[1]); |
| 1100 } | 1100 } |
| 1101 | 1101 |
| 1102 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; | 1102 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; |
| 1103 buildCampaignCreativeAssociationsListResponse() { | 1103 buildCampaignCreativeAssociationsListResponse() { |
| 1104 var o = new api.CampaignCreativeAssociationsListResponse(); | 1104 var o = new api.CampaignCreativeAssociationsListResponse(); |
| 1105 buildCounterCampaignCreativeAssociationsListResponse++; | 1105 buildCounterCampaignCreativeAssociationsListResponse++; |
| 1106 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1106 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
| 1107 o.campaignCreativeAssociations = buildUnnamed1571(); | 1107 o.campaignCreativeAssociations = buildUnnamed1877(); |
| 1108 o.kind = "foo"; | 1108 o.kind = "foo"; |
| 1109 o.nextPageToken = "foo"; | 1109 o.nextPageToken = "foo"; |
| 1110 } | 1110 } |
| 1111 buildCounterCampaignCreativeAssociationsListResponse--; | 1111 buildCounterCampaignCreativeAssociationsListResponse--; |
| 1112 return o; | 1112 return o; |
| 1113 } | 1113 } |
| 1114 | 1114 |
| 1115 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { | 1115 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { |
| 1116 buildCounterCampaignCreativeAssociationsListResponse++; | 1116 buildCounterCampaignCreativeAssociationsListResponse++; |
| 1117 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1117 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
| 1118 checkUnnamed1571(o.campaignCreativeAssociations); | 1118 checkUnnamed1877(o.campaignCreativeAssociations); |
| 1119 unittest.expect(o.kind, unittest.equals('foo')); | 1119 unittest.expect(o.kind, unittest.equals('foo')); |
| 1120 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1120 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1121 } | 1121 } |
| 1122 buildCounterCampaignCreativeAssociationsListResponse--; | 1122 buildCounterCampaignCreativeAssociationsListResponse--; |
| 1123 } | 1123 } |
| 1124 | 1124 |
| 1125 buildUnnamed1572() { | 1125 buildUnnamed1878() { |
| 1126 var o = new core.List<api.Campaign>(); | 1126 var o = new core.List<api.Campaign>(); |
| 1127 o.add(buildCampaign()); | 1127 o.add(buildCampaign()); |
| 1128 o.add(buildCampaign()); | 1128 o.add(buildCampaign()); |
| 1129 return o; | 1129 return o; |
| 1130 } | 1130 } |
| 1131 | 1131 |
| 1132 checkUnnamed1572(core.List<api.Campaign> o) { | 1132 checkUnnamed1878(core.List<api.Campaign> o) { |
| 1133 unittest.expect(o, unittest.hasLength(2)); | 1133 unittest.expect(o, unittest.hasLength(2)); |
| 1134 checkCampaign(o[0]); | 1134 checkCampaign(o[0]); |
| 1135 checkCampaign(o[1]); | 1135 checkCampaign(o[1]); |
| 1136 } | 1136 } |
| 1137 | 1137 |
| 1138 core.int buildCounterCampaignsListResponse = 0; | 1138 core.int buildCounterCampaignsListResponse = 0; |
| 1139 buildCampaignsListResponse() { | 1139 buildCampaignsListResponse() { |
| 1140 var o = new api.CampaignsListResponse(); | 1140 var o = new api.CampaignsListResponse(); |
| 1141 buildCounterCampaignsListResponse++; | 1141 buildCounterCampaignsListResponse++; |
| 1142 if (buildCounterCampaignsListResponse < 3) { | 1142 if (buildCounterCampaignsListResponse < 3) { |
| 1143 o.campaigns = buildUnnamed1572(); | 1143 o.campaigns = buildUnnamed1878(); |
| 1144 o.kind = "foo"; | 1144 o.kind = "foo"; |
| 1145 o.nextPageToken = "foo"; | 1145 o.nextPageToken = "foo"; |
| 1146 } | 1146 } |
| 1147 buildCounterCampaignsListResponse--; | 1147 buildCounterCampaignsListResponse--; |
| 1148 return o; | 1148 return o; |
| 1149 } | 1149 } |
| 1150 | 1150 |
| 1151 checkCampaignsListResponse(api.CampaignsListResponse o) { | 1151 checkCampaignsListResponse(api.CampaignsListResponse o) { |
| 1152 buildCounterCampaignsListResponse++; | 1152 buildCounterCampaignsListResponse++; |
| 1153 if (buildCounterCampaignsListResponse < 3) { | 1153 if (buildCounterCampaignsListResponse < 3) { |
| 1154 checkUnnamed1572(o.campaigns); | 1154 checkUnnamed1878(o.campaigns); |
| 1155 unittest.expect(o.kind, unittest.equals('foo')); | 1155 unittest.expect(o.kind, unittest.equals('foo')); |
| 1156 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1156 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1157 } | 1157 } |
| 1158 buildCounterCampaignsListResponse--; | 1158 buildCounterCampaignsListResponse--; |
| 1159 } | 1159 } |
| 1160 | 1160 |
| 1161 core.int buildCounterChangeLog = 0; | 1161 core.int buildCounterChangeLog = 0; |
| 1162 buildChangeLog() { | 1162 buildChangeLog() { |
| 1163 var o = new api.ChangeLog(); | 1163 var o = new api.ChangeLog(); |
| 1164 buildCounterChangeLog++; | 1164 buildCounterChangeLog++; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1196 unittest.expect(o.objectType, unittest.equals('foo')); | 1196 unittest.expect(o.objectType, unittest.equals('foo')); |
| 1197 unittest.expect(o.oldValue, unittest.equals('foo')); | 1197 unittest.expect(o.oldValue, unittest.equals('foo')); |
| 1198 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1198 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1199 unittest.expect(o.transactionId, unittest.equals('foo')); | 1199 unittest.expect(o.transactionId, unittest.equals('foo')); |
| 1200 unittest.expect(o.userProfileId, unittest.equals('foo')); | 1200 unittest.expect(o.userProfileId, unittest.equals('foo')); |
| 1201 unittest.expect(o.userProfileName, unittest.equals('foo')); | 1201 unittest.expect(o.userProfileName, unittest.equals('foo')); |
| 1202 } | 1202 } |
| 1203 buildCounterChangeLog--; | 1203 buildCounterChangeLog--; |
| 1204 } | 1204 } |
| 1205 | 1205 |
| 1206 buildUnnamed1573() { | 1206 buildUnnamed1879() { |
| 1207 var o = new core.List<api.ChangeLog>(); | 1207 var o = new core.List<api.ChangeLog>(); |
| 1208 o.add(buildChangeLog()); | 1208 o.add(buildChangeLog()); |
| 1209 o.add(buildChangeLog()); | 1209 o.add(buildChangeLog()); |
| 1210 return o; | 1210 return o; |
| 1211 } | 1211 } |
| 1212 | 1212 |
| 1213 checkUnnamed1573(core.List<api.ChangeLog> o) { | 1213 checkUnnamed1879(core.List<api.ChangeLog> o) { |
| 1214 unittest.expect(o, unittest.hasLength(2)); | 1214 unittest.expect(o, unittest.hasLength(2)); |
| 1215 checkChangeLog(o[0]); | 1215 checkChangeLog(o[0]); |
| 1216 checkChangeLog(o[1]); | 1216 checkChangeLog(o[1]); |
| 1217 } | 1217 } |
| 1218 | 1218 |
| 1219 core.int buildCounterChangeLogsListResponse = 0; | 1219 core.int buildCounterChangeLogsListResponse = 0; |
| 1220 buildChangeLogsListResponse() { | 1220 buildChangeLogsListResponse() { |
| 1221 var o = new api.ChangeLogsListResponse(); | 1221 var o = new api.ChangeLogsListResponse(); |
| 1222 buildCounterChangeLogsListResponse++; | 1222 buildCounterChangeLogsListResponse++; |
| 1223 if (buildCounterChangeLogsListResponse < 3) { | 1223 if (buildCounterChangeLogsListResponse < 3) { |
| 1224 o.changeLogs = buildUnnamed1573(); | 1224 o.changeLogs = buildUnnamed1879(); |
| 1225 o.kind = "foo"; | 1225 o.kind = "foo"; |
| 1226 o.nextPageToken = "foo"; | 1226 o.nextPageToken = "foo"; |
| 1227 } | 1227 } |
| 1228 buildCounterChangeLogsListResponse--; | 1228 buildCounterChangeLogsListResponse--; |
| 1229 return o; | 1229 return o; |
| 1230 } | 1230 } |
| 1231 | 1231 |
| 1232 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { | 1232 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { |
| 1233 buildCounterChangeLogsListResponse++; | 1233 buildCounterChangeLogsListResponse++; |
| 1234 if (buildCounterChangeLogsListResponse < 3) { | 1234 if (buildCounterChangeLogsListResponse < 3) { |
| 1235 checkUnnamed1573(o.changeLogs); | 1235 checkUnnamed1879(o.changeLogs); |
| 1236 unittest.expect(o.kind, unittest.equals('foo')); | 1236 unittest.expect(o.kind, unittest.equals('foo')); |
| 1237 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1237 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1238 } | 1238 } |
| 1239 buildCounterChangeLogsListResponse--; | 1239 buildCounterChangeLogsListResponse--; |
| 1240 } | 1240 } |
| 1241 | 1241 |
| 1242 buildUnnamed1574() { | 1242 buildUnnamed1880() { |
| 1243 var o = new core.List<api.City>(); | 1243 var o = new core.List<api.City>(); |
| 1244 o.add(buildCity()); | 1244 o.add(buildCity()); |
| 1245 o.add(buildCity()); | 1245 o.add(buildCity()); |
| 1246 return o; | 1246 return o; |
| 1247 } | 1247 } |
| 1248 | 1248 |
| 1249 checkUnnamed1574(core.List<api.City> o) { | 1249 checkUnnamed1880(core.List<api.City> o) { |
| 1250 unittest.expect(o, unittest.hasLength(2)); | 1250 unittest.expect(o, unittest.hasLength(2)); |
| 1251 checkCity(o[0]); | 1251 checkCity(o[0]); |
| 1252 checkCity(o[1]); | 1252 checkCity(o[1]); |
| 1253 } | 1253 } |
| 1254 | 1254 |
| 1255 core.int buildCounterCitiesListResponse = 0; | 1255 core.int buildCounterCitiesListResponse = 0; |
| 1256 buildCitiesListResponse() { | 1256 buildCitiesListResponse() { |
| 1257 var o = new api.CitiesListResponse(); | 1257 var o = new api.CitiesListResponse(); |
| 1258 buildCounterCitiesListResponse++; | 1258 buildCounterCitiesListResponse++; |
| 1259 if (buildCounterCitiesListResponse < 3) { | 1259 if (buildCounterCitiesListResponse < 3) { |
| 1260 o.cities = buildUnnamed1574(); | 1260 o.cities = buildUnnamed1880(); |
| 1261 o.kind = "foo"; | 1261 o.kind = "foo"; |
| 1262 } | 1262 } |
| 1263 buildCounterCitiesListResponse--; | 1263 buildCounterCitiesListResponse--; |
| 1264 return o; | 1264 return o; |
| 1265 } | 1265 } |
| 1266 | 1266 |
| 1267 checkCitiesListResponse(api.CitiesListResponse o) { | 1267 checkCitiesListResponse(api.CitiesListResponse o) { |
| 1268 buildCounterCitiesListResponse++; | 1268 buildCounterCitiesListResponse++; |
| 1269 if (buildCounterCitiesListResponse < 3) { | 1269 if (buildCounterCitiesListResponse < 3) { |
| 1270 checkUnnamed1574(o.cities); | 1270 checkUnnamed1880(o.cities); |
| 1271 unittest.expect(o.kind, unittest.equals('foo')); | 1271 unittest.expect(o.kind, unittest.equals('foo')); |
| 1272 } | 1272 } |
| 1273 buildCounterCitiesListResponse--; | 1273 buildCounterCitiesListResponse--; |
| 1274 } | 1274 } |
| 1275 | 1275 |
| 1276 core.int buildCounterCity = 0; | 1276 core.int buildCounterCity = 0; |
| 1277 buildCity() { | 1277 buildCity() { |
| 1278 var o = new api.City(); | 1278 var o = new api.City(); |
| 1279 buildCounterCity++; | 1279 buildCounterCity++; |
| 1280 if (buildCounterCity < 3) { | 1280 if (buildCounterCity < 3) { |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1443 checkConnectionType(api.ConnectionType o) { | 1443 checkConnectionType(api.ConnectionType o) { |
| 1444 buildCounterConnectionType++; | 1444 buildCounterConnectionType++; |
| 1445 if (buildCounterConnectionType < 3) { | 1445 if (buildCounterConnectionType < 3) { |
| 1446 unittest.expect(o.id, unittest.equals('foo')); | 1446 unittest.expect(o.id, unittest.equals('foo')); |
| 1447 unittest.expect(o.kind, unittest.equals('foo')); | 1447 unittest.expect(o.kind, unittest.equals('foo')); |
| 1448 unittest.expect(o.name, unittest.equals('foo')); | 1448 unittest.expect(o.name, unittest.equals('foo')); |
| 1449 } | 1449 } |
| 1450 buildCounterConnectionType--; | 1450 buildCounterConnectionType--; |
| 1451 } | 1451 } |
| 1452 | 1452 |
| 1453 buildUnnamed1575() { | 1453 buildUnnamed1881() { |
| 1454 var o = new core.List<api.ConnectionType>(); | 1454 var o = new core.List<api.ConnectionType>(); |
| 1455 o.add(buildConnectionType()); | 1455 o.add(buildConnectionType()); |
| 1456 o.add(buildConnectionType()); | 1456 o.add(buildConnectionType()); |
| 1457 return o; | 1457 return o; |
| 1458 } | 1458 } |
| 1459 | 1459 |
| 1460 checkUnnamed1575(core.List<api.ConnectionType> o) { | 1460 checkUnnamed1881(core.List<api.ConnectionType> o) { |
| 1461 unittest.expect(o, unittest.hasLength(2)); | 1461 unittest.expect(o, unittest.hasLength(2)); |
| 1462 checkConnectionType(o[0]); | 1462 checkConnectionType(o[0]); |
| 1463 checkConnectionType(o[1]); | 1463 checkConnectionType(o[1]); |
| 1464 } | 1464 } |
| 1465 | 1465 |
| 1466 core.int buildCounterConnectionTypesListResponse = 0; | 1466 core.int buildCounterConnectionTypesListResponse = 0; |
| 1467 buildConnectionTypesListResponse() { | 1467 buildConnectionTypesListResponse() { |
| 1468 var o = new api.ConnectionTypesListResponse(); | 1468 var o = new api.ConnectionTypesListResponse(); |
| 1469 buildCounterConnectionTypesListResponse++; | 1469 buildCounterConnectionTypesListResponse++; |
| 1470 if (buildCounterConnectionTypesListResponse < 3) { | 1470 if (buildCounterConnectionTypesListResponse < 3) { |
| 1471 o.connectionTypes = buildUnnamed1575(); | 1471 o.connectionTypes = buildUnnamed1881(); |
| 1472 o.kind = "foo"; | 1472 o.kind = "foo"; |
| 1473 } | 1473 } |
| 1474 buildCounterConnectionTypesListResponse--; | 1474 buildCounterConnectionTypesListResponse--; |
| 1475 return o; | 1475 return o; |
| 1476 } | 1476 } |
| 1477 | 1477 |
| 1478 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { | 1478 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { |
| 1479 buildCounterConnectionTypesListResponse++; | 1479 buildCounterConnectionTypesListResponse++; |
| 1480 if (buildCounterConnectionTypesListResponse < 3) { | 1480 if (buildCounterConnectionTypesListResponse < 3) { |
| 1481 checkUnnamed1575(o.connectionTypes); | 1481 checkUnnamed1881(o.connectionTypes); |
| 1482 unittest.expect(o.kind, unittest.equals('foo')); | 1482 unittest.expect(o.kind, unittest.equals('foo')); |
| 1483 } | 1483 } |
| 1484 buildCounterConnectionTypesListResponse--; | 1484 buildCounterConnectionTypesListResponse--; |
| 1485 } | 1485 } |
| 1486 | 1486 |
| 1487 buildUnnamed1576() { | 1487 buildUnnamed1882() { |
| 1488 var o = new core.List<api.ContentCategory>(); | 1488 var o = new core.List<api.ContentCategory>(); |
| 1489 o.add(buildContentCategory()); | 1489 o.add(buildContentCategory()); |
| 1490 o.add(buildContentCategory()); | 1490 o.add(buildContentCategory()); |
| 1491 return o; | 1491 return o; |
| 1492 } | 1492 } |
| 1493 | 1493 |
| 1494 checkUnnamed1576(core.List<api.ContentCategory> o) { | 1494 checkUnnamed1882(core.List<api.ContentCategory> o) { |
| 1495 unittest.expect(o, unittest.hasLength(2)); | 1495 unittest.expect(o, unittest.hasLength(2)); |
| 1496 checkContentCategory(o[0]); | 1496 checkContentCategory(o[0]); |
| 1497 checkContentCategory(o[1]); | 1497 checkContentCategory(o[1]); |
| 1498 } | 1498 } |
| 1499 | 1499 |
| 1500 core.int buildCounterContentCategoriesListResponse = 0; | 1500 core.int buildCounterContentCategoriesListResponse = 0; |
| 1501 buildContentCategoriesListResponse() { | 1501 buildContentCategoriesListResponse() { |
| 1502 var o = new api.ContentCategoriesListResponse(); | 1502 var o = new api.ContentCategoriesListResponse(); |
| 1503 buildCounterContentCategoriesListResponse++; | 1503 buildCounterContentCategoriesListResponse++; |
| 1504 if (buildCounterContentCategoriesListResponse < 3) { | 1504 if (buildCounterContentCategoriesListResponse < 3) { |
| 1505 o.contentCategories = buildUnnamed1576(); | 1505 o.contentCategories = buildUnnamed1882(); |
| 1506 o.kind = "foo"; | 1506 o.kind = "foo"; |
| 1507 o.nextPageToken = "foo"; | 1507 o.nextPageToken = "foo"; |
| 1508 } | 1508 } |
| 1509 buildCounterContentCategoriesListResponse--; | 1509 buildCounterContentCategoriesListResponse--; |
| 1510 return o; | 1510 return o; |
| 1511 } | 1511 } |
| 1512 | 1512 |
| 1513 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { | 1513 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { |
| 1514 buildCounterContentCategoriesListResponse++; | 1514 buildCounterContentCategoriesListResponse++; |
| 1515 if (buildCounterContentCategoriesListResponse < 3) { | 1515 if (buildCounterContentCategoriesListResponse < 3) { |
| 1516 checkUnnamed1576(o.contentCategories); | 1516 checkUnnamed1882(o.contentCategories); |
| 1517 unittest.expect(o.kind, unittest.equals('foo')); | 1517 unittest.expect(o.kind, unittest.equals('foo')); |
| 1518 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1518 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1519 } | 1519 } |
| 1520 buildCounterContentCategoriesListResponse--; | 1520 buildCounterContentCategoriesListResponse--; |
| 1521 } | 1521 } |
| 1522 | 1522 |
| 1523 core.int buildCounterContentCategory = 0; | 1523 core.int buildCounterContentCategory = 0; |
| 1524 buildContentCategory() { | 1524 buildContentCategory() { |
| 1525 var o = new api.ContentCategory(); | 1525 var o = new api.ContentCategory(); |
| 1526 buildCounterContentCategory++; | 1526 buildCounterContentCategory++; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 1538 buildCounterContentCategory++; | 1538 buildCounterContentCategory++; |
| 1539 if (buildCounterContentCategory < 3) { | 1539 if (buildCounterContentCategory < 3) { |
| 1540 unittest.expect(o.accountId, unittest.equals('foo')); | 1540 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1541 unittest.expect(o.id, unittest.equals('foo')); | 1541 unittest.expect(o.id, unittest.equals('foo')); |
| 1542 unittest.expect(o.kind, unittest.equals('foo')); | 1542 unittest.expect(o.kind, unittest.equals('foo')); |
| 1543 unittest.expect(o.name, unittest.equals('foo')); | 1543 unittest.expect(o.name, unittest.equals('foo')); |
| 1544 } | 1544 } |
| 1545 buildCounterContentCategory--; | 1545 buildCounterContentCategory--; |
| 1546 } | 1546 } |
| 1547 | 1547 |
| 1548 buildUnnamed1577() { | 1548 buildUnnamed1883() { |
| 1549 var o = new core.List<api.Country>(); | 1549 var o = new core.List<api.Country>(); |
| 1550 o.add(buildCountry()); | 1550 o.add(buildCountry()); |
| 1551 o.add(buildCountry()); | 1551 o.add(buildCountry()); |
| 1552 return o; | 1552 return o; |
| 1553 } | 1553 } |
| 1554 | 1554 |
| 1555 checkUnnamed1577(core.List<api.Country> o) { | 1555 checkUnnamed1883(core.List<api.Country> o) { |
| 1556 unittest.expect(o, unittest.hasLength(2)); | 1556 unittest.expect(o, unittest.hasLength(2)); |
| 1557 checkCountry(o[0]); | 1557 checkCountry(o[0]); |
| 1558 checkCountry(o[1]); | 1558 checkCountry(o[1]); |
| 1559 } | 1559 } |
| 1560 | 1560 |
| 1561 core.int buildCounterCountriesListResponse = 0; | 1561 core.int buildCounterCountriesListResponse = 0; |
| 1562 buildCountriesListResponse() { | 1562 buildCountriesListResponse() { |
| 1563 var o = new api.CountriesListResponse(); | 1563 var o = new api.CountriesListResponse(); |
| 1564 buildCounterCountriesListResponse++; | 1564 buildCounterCountriesListResponse++; |
| 1565 if (buildCounterCountriesListResponse < 3) { | 1565 if (buildCounterCountriesListResponse < 3) { |
| 1566 o.countries = buildUnnamed1577(); | 1566 o.countries = buildUnnamed1883(); |
| 1567 o.kind = "foo"; | 1567 o.kind = "foo"; |
| 1568 } | 1568 } |
| 1569 buildCounterCountriesListResponse--; | 1569 buildCounterCountriesListResponse--; |
| 1570 return o; | 1570 return o; |
| 1571 } | 1571 } |
| 1572 | 1572 |
| 1573 checkCountriesListResponse(api.CountriesListResponse o) { | 1573 checkCountriesListResponse(api.CountriesListResponse o) { |
| 1574 buildCounterCountriesListResponse++; | 1574 buildCounterCountriesListResponse++; |
| 1575 if (buildCounterCountriesListResponse < 3) { | 1575 if (buildCounterCountriesListResponse < 3) { |
| 1576 checkUnnamed1577(o.countries); | 1576 checkUnnamed1883(o.countries); |
| 1577 unittest.expect(o.kind, unittest.equals('foo')); | 1577 unittest.expect(o.kind, unittest.equals('foo')); |
| 1578 } | 1578 } |
| 1579 buildCounterCountriesListResponse--; | 1579 buildCounterCountriesListResponse--; |
| 1580 } | 1580 } |
| 1581 | 1581 |
| 1582 core.int buildCounterCountry = 0; | 1582 core.int buildCounterCountry = 0; |
| 1583 buildCountry() { | 1583 buildCountry() { |
| 1584 var o = new api.Country(); | 1584 var o = new api.Country(); |
| 1585 buildCounterCountry++; | 1585 buildCounterCountry++; |
| 1586 if (buildCounterCountry < 3) { | 1586 if (buildCounterCountry < 3) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1599 if (buildCounterCountry < 3) { | 1599 if (buildCounterCountry < 3) { |
| 1600 unittest.expect(o.countryCode, unittest.equals('foo')); | 1600 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 1601 unittest.expect(o.dartId, unittest.equals('foo')); | 1601 unittest.expect(o.dartId, unittest.equals('foo')); |
| 1602 unittest.expect(o.kind, unittest.equals('foo')); | 1602 unittest.expect(o.kind, unittest.equals('foo')); |
| 1603 unittest.expect(o.name, unittest.equals('foo')); | 1603 unittest.expect(o.name, unittest.equals('foo')); |
| 1604 unittest.expect(o.sslEnabled, unittest.isTrue); | 1604 unittest.expect(o.sslEnabled, unittest.isTrue); |
| 1605 } | 1605 } |
| 1606 buildCounterCountry--; | 1606 buildCounterCountry--; |
| 1607 } | 1607 } |
| 1608 | 1608 |
| 1609 buildUnnamed1578() { | 1609 buildUnnamed1884() { |
| 1610 var o = new core.List<core.String>(); | 1610 var o = new core.List<core.String>(); |
| 1611 o.add("foo"); | 1611 o.add("foo"); |
| 1612 o.add("foo"); | 1612 o.add("foo"); |
| 1613 return o; | 1613 return o; |
| 1614 } | 1614 } |
| 1615 | 1615 |
| 1616 checkUnnamed1578(core.List<core.String> o) { | 1616 checkUnnamed1884(core.List<core.String> o) { |
| 1617 unittest.expect(o, unittest.hasLength(2)); | 1617 unittest.expect(o, unittest.hasLength(2)); |
| 1618 unittest.expect(o[0], unittest.equals('foo')); | 1618 unittest.expect(o[0], unittest.equals('foo')); |
| 1619 unittest.expect(o[1], unittest.equals('foo')); | 1619 unittest.expect(o[1], unittest.equals('foo')); |
| 1620 } | 1620 } |
| 1621 | 1621 |
| 1622 buildUnnamed1579() { | 1622 buildUnnamed1885() { |
| 1623 var o = new core.List<core.String>(); | 1623 var o = new core.List<core.String>(); |
| 1624 o.add("foo"); | 1624 o.add("foo"); |
| 1625 o.add("foo"); | 1625 o.add("foo"); |
| 1626 return o; | 1626 return o; |
| 1627 } | 1627 } |
| 1628 | 1628 |
| 1629 checkUnnamed1579(core.List<core.String> o) { | 1629 checkUnnamed1885(core.List<core.String> o) { |
| 1630 unittest.expect(o, unittest.hasLength(2)); | 1630 unittest.expect(o, unittest.hasLength(2)); |
| 1631 unittest.expect(o[0], unittest.equals('foo')); | 1631 unittest.expect(o[0], unittest.equals('foo')); |
| 1632 unittest.expect(o[1], unittest.equals('foo')); | 1632 unittest.expect(o[1], unittest.equals('foo')); |
| 1633 } | 1633 } |
| 1634 | 1634 |
| 1635 buildUnnamed1580() { | 1635 buildUnnamed1886() { |
| 1636 var o = new core.List<api.ClickTag>(); | 1636 var o = new core.List<api.ClickTag>(); |
| 1637 o.add(buildClickTag()); | 1637 o.add(buildClickTag()); |
| 1638 o.add(buildClickTag()); | 1638 o.add(buildClickTag()); |
| 1639 return o; | 1639 return o; |
| 1640 } | 1640 } |
| 1641 | 1641 |
| 1642 checkUnnamed1580(core.List<api.ClickTag> o) { | 1642 checkUnnamed1886(core.List<api.ClickTag> o) { |
| 1643 unittest.expect(o, unittest.hasLength(2)); | 1643 unittest.expect(o, unittest.hasLength(2)); |
| 1644 checkClickTag(o[0]); | 1644 checkClickTag(o[0]); |
| 1645 checkClickTag(o[1]); | 1645 checkClickTag(o[1]); |
| 1646 } | 1646 } |
| 1647 | 1647 |
| 1648 buildUnnamed1581() { | 1648 buildUnnamed1887() { |
| 1649 var o = new core.List<core.String>(); | 1649 var o = new core.List<core.String>(); |
| 1650 o.add("foo"); | 1650 o.add("foo"); |
| 1651 o.add("foo"); | 1651 o.add("foo"); |
| 1652 return o; | 1652 return o; |
| 1653 } | 1653 } |
| 1654 | 1654 |
| 1655 checkUnnamed1581(core.List<core.String> o) { | 1655 checkUnnamed1887(core.List<core.String> o) { |
| 1656 unittest.expect(o, unittest.hasLength(2)); | 1656 unittest.expect(o, unittest.hasLength(2)); |
| 1657 unittest.expect(o[0], unittest.equals('foo')); | 1657 unittest.expect(o[0], unittest.equals('foo')); |
| 1658 unittest.expect(o[1], unittest.equals('foo')); | 1658 unittest.expect(o[1], unittest.equals('foo')); |
| 1659 } | 1659 } |
| 1660 | 1660 |
| 1661 buildUnnamed1582() { | 1661 buildUnnamed1888() { |
| 1662 var o = new core.List<core.String>(); | 1662 var o = new core.List<core.String>(); |
| 1663 o.add("foo"); | 1663 o.add("foo"); |
| 1664 o.add("foo"); | 1664 o.add("foo"); |
| 1665 return o; | 1665 return o; |
| 1666 } | 1666 } |
| 1667 | 1667 |
| 1668 checkUnnamed1582(core.List<core.String> o) { | 1668 checkUnnamed1888(core.List<core.String> o) { |
| 1669 unittest.expect(o, unittest.hasLength(2)); | 1669 unittest.expect(o, unittest.hasLength(2)); |
| 1670 unittest.expect(o[0], unittest.equals('foo')); | 1670 unittest.expect(o[0], unittest.equals('foo')); |
| 1671 unittest.expect(o[1], unittest.equals('foo')); | 1671 unittest.expect(o[1], unittest.equals('foo')); |
| 1672 } | 1672 } |
| 1673 | 1673 |
| 1674 buildUnnamed1583() { | 1674 buildUnnamed1889() { |
| 1675 var o = new core.List<api.CreativeCustomEvent>(); | 1675 var o = new core.List<api.CreativeCustomEvent>(); |
| 1676 o.add(buildCreativeCustomEvent()); | 1676 o.add(buildCreativeCustomEvent()); |
| 1677 o.add(buildCreativeCustomEvent()); | 1677 o.add(buildCreativeCustomEvent()); |
| 1678 return o; | 1678 return o; |
| 1679 } | 1679 } |
| 1680 | 1680 |
| 1681 checkUnnamed1583(core.List<api.CreativeCustomEvent> o) { | 1681 checkUnnamed1889(core.List<api.CreativeCustomEvent> o) { |
| 1682 unittest.expect(o, unittest.hasLength(2)); | 1682 unittest.expect(o, unittest.hasLength(2)); |
| 1683 checkCreativeCustomEvent(o[0]); | 1683 checkCreativeCustomEvent(o[0]); |
| 1684 checkCreativeCustomEvent(o[1]); | 1684 checkCreativeCustomEvent(o[1]); |
| 1685 } | 1685 } |
| 1686 | 1686 |
| 1687 buildUnnamed1584() { | 1687 buildUnnamed1890() { |
| 1688 var o = new core.List<api.CreativeAsset>(); | 1688 var o = new core.List<api.CreativeAsset>(); |
| 1689 o.add(buildCreativeAsset()); | 1689 o.add(buildCreativeAsset()); |
| 1690 o.add(buildCreativeAsset()); | 1690 o.add(buildCreativeAsset()); |
| 1691 return o; | 1691 return o; |
| 1692 } | 1692 } |
| 1693 | 1693 |
| 1694 checkUnnamed1584(core.List<api.CreativeAsset> o) { | 1694 checkUnnamed1890(core.List<api.CreativeAsset> o) { |
| 1695 unittest.expect(o, unittest.hasLength(2)); | 1695 unittest.expect(o, unittest.hasLength(2)); |
| 1696 checkCreativeAsset(o[0]); | 1696 checkCreativeAsset(o[0]); |
| 1697 checkCreativeAsset(o[1]); | 1697 checkCreativeAsset(o[1]); |
| 1698 } | 1698 } |
| 1699 | 1699 |
| 1700 buildUnnamed1585() { | 1700 buildUnnamed1891() { |
| 1701 var o = new core.List<api.CreativeFieldAssignment>(); | 1701 var o = new core.List<api.CreativeFieldAssignment>(); |
| 1702 o.add(buildCreativeFieldAssignment()); | 1702 o.add(buildCreativeFieldAssignment()); |
| 1703 o.add(buildCreativeFieldAssignment()); | 1703 o.add(buildCreativeFieldAssignment()); |
| 1704 return o; | 1704 return o; |
| 1705 } | 1705 } |
| 1706 | 1706 |
| 1707 checkUnnamed1585(core.List<api.CreativeFieldAssignment> o) { | 1707 checkUnnamed1891(core.List<api.CreativeFieldAssignment> o) { |
| 1708 unittest.expect(o, unittest.hasLength(2)); | 1708 unittest.expect(o, unittest.hasLength(2)); |
| 1709 checkCreativeFieldAssignment(o[0]); | 1709 checkCreativeFieldAssignment(o[0]); |
| 1710 checkCreativeFieldAssignment(o[1]); | 1710 checkCreativeFieldAssignment(o[1]); |
| 1711 } | 1711 } |
| 1712 | 1712 |
| 1713 buildUnnamed1586() { | 1713 buildUnnamed1892() { |
| 1714 var o = new core.List<core.String>(); | 1714 var o = new core.List<core.String>(); |
| 1715 o.add("foo"); | 1715 o.add("foo"); |
| 1716 o.add("foo"); | 1716 o.add("foo"); |
| 1717 return o; | 1717 return o; |
| 1718 } | 1718 } |
| 1719 | 1719 |
| 1720 checkUnnamed1586(core.List<core.String> o) { | 1720 checkUnnamed1892(core.List<core.String> o) { |
| 1721 unittest.expect(o, unittest.hasLength(2)); | 1721 unittest.expect(o, unittest.hasLength(2)); |
| 1722 unittest.expect(o[0], unittest.equals('foo')); | 1722 unittest.expect(o[0], unittest.equals('foo')); |
| 1723 unittest.expect(o[1], unittest.equals('foo')); | 1723 unittest.expect(o[1], unittest.equals('foo')); |
| 1724 } | 1724 } |
| 1725 | 1725 |
| 1726 buildUnnamed1587() { | 1726 buildUnnamed1893() { |
| 1727 var o = new core.List<api.CreativeCustomEvent>(); | 1727 var o = new core.List<api.CreativeCustomEvent>(); |
| 1728 o.add(buildCreativeCustomEvent()); | 1728 o.add(buildCreativeCustomEvent()); |
| 1729 o.add(buildCreativeCustomEvent()); | 1729 o.add(buildCreativeCustomEvent()); |
| 1730 return o; | 1730 return o; |
| 1731 } | 1731 } |
| 1732 | 1732 |
| 1733 checkUnnamed1587(core.List<api.CreativeCustomEvent> o) { | 1733 checkUnnamed1893(core.List<api.CreativeCustomEvent> o) { |
| 1734 unittest.expect(o, unittest.hasLength(2)); | 1734 unittest.expect(o, unittest.hasLength(2)); |
| 1735 checkCreativeCustomEvent(o[0]); | 1735 checkCreativeCustomEvent(o[0]); |
| 1736 checkCreativeCustomEvent(o[1]); | 1736 checkCreativeCustomEvent(o[1]); |
| 1737 } | 1737 } |
| 1738 | 1738 |
| 1739 buildUnnamed1588() { | 1739 buildUnnamed1894() { |
| 1740 var o = new core.List<api.ThirdPartyTrackingUrl>(); | 1740 var o = new core.List<api.ThirdPartyTrackingUrl>(); |
| 1741 o.add(buildThirdPartyTrackingUrl()); | 1741 o.add(buildThirdPartyTrackingUrl()); |
| 1742 o.add(buildThirdPartyTrackingUrl()); | 1742 o.add(buildThirdPartyTrackingUrl()); |
| 1743 return o; | 1743 return o; |
| 1744 } | 1744 } |
| 1745 | 1745 |
| 1746 checkUnnamed1588(core.List<api.ThirdPartyTrackingUrl> o) { | 1746 checkUnnamed1894(core.List<api.ThirdPartyTrackingUrl> o) { |
| 1747 unittest.expect(o, unittest.hasLength(2)); | 1747 unittest.expect(o, unittest.hasLength(2)); |
| 1748 checkThirdPartyTrackingUrl(o[0]); | 1748 checkThirdPartyTrackingUrl(o[0]); |
| 1749 checkThirdPartyTrackingUrl(o[1]); | 1749 checkThirdPartyTrackingUrl(o[1]); |
| 1750 } | 1750 } |
| 1751 | 1751 |
| 1752 buildUnnamed1589() { | 1752 buildUnnamed1895() { |
| 1753 var o = new core.List<api.CreativeCustomEvent>(); | 1753 var o = new core.List<api.CreativeCustomEvent>(); |
| 1754 o.add(buildCreativeCustomEvent()); | 1754 o.add(buildCreativeCustomEvent()); |
| 1755 o.add(buildCreativeCustomEvent()); | 1755 o.add(buildCreativeCustomEvent()); |
| 1756 return o; | 1756 return o; |
| 1757 } | 1757 } |
| 1758 | 1758 |
| 1759 checkUnnamed1589(core.List<api.CreativeCustomEvent> o) { | 1759 checkUnnamed1895(core.List<api.CreativeCustomEvent> o) { |
| 1760 unittest.expect(o, unittest.hasLength(2)); | 1760 unittest.expect(o, unittest.hasLength(2)); |
| 1761 checkCreativeCustomEvent(o[0]); | 1761 checkCreativeCustomEvent(o[0]); |
| 1762 checkCreativeCustomEvent(o[1]); | 1762 checkCreativeCustomEvent(o[1]); |
| 1763 } | 1763 } |
| 1764 | 1764 |
| 1765 core.int buildCounterCreative = 0; | 1765 core.int buildCounterCreative = 0; |
| 1766 buildCreative() { | 1766 buildCreative() { |
| 1767 var o = new api.Creative(); | 1767 var o = new api.Creative(); |
| 1768 buildCounterCreative++; | 1768 buildCounterCreative++; |
| 1769 if (buildCounterCreative < 3) { | 1769 if (buildCounterCreative < 3) { |
| 1770 o.accountId = "foo"; | 1770 o.accountId = "foo"; |
| 1771 o.active = true; | 1771 o.active = true; |
| 1772 o.adParameters = "foo"; | 1772 o.adParameters = "foo"; |
| 1773 o.adTagKeys = buildUnnamed1578(); | 1773 o.adTagKeys = buildUnnamed1884(); |
| 1774 o.advertiserId = "foo"; | 1774 o.advertiserId = "foo"; |
| 1775 o.allowScriptAccess = true; | 1775 o.allowScriptAccess = true; |
| 1776 o.archived = true; | 1776 o.archived = true; |
| 1777 o.artworkType = "foo"; | 1777 o.artworkType = "foo"; |
| 1778 o.authoringSource = "foo"; | 1778 o.authoringSource = "foo"; |
| 1779 o.authoringTool = "foo"; | 1779 o.authoringTool = "foo"; |
| 1780 o.autoAdvanceImages = true; | 1780 o.autoAdvanceImages = true; |
| 1781 o.backgroundColor = "foo"; | 1781 o.backgroundColor = "foo"; |
| 1782 o.backupImageClickThroughUrl = "foo"; | 1782 o.backupImageClickThroughUrl = "foo"; |
| 1783 o.backupImageFeatures = buildUnnamed1579(); | 1783 o.backupImageFeatures = buildUnnamed1885(); |
| 1784 o.backupImageReportingLabel = "foo"; | 1784 o.backupImageReportingLabel = "foo"; |
| 1785 o.backupImageTargetWindow = buildTargetWindow(); | 1785 o.backupImageTargetWindow = buildTargetWindow(); |
| 1786 o.clickTags = buildUnnamed1580(); | 1786 o.clickTags = buildUnnamed1886(); |
| 1787 o.commercialId = "foo"; | 1787 o.commercialId = "foo"; |
| 1788 o.companionCreatives = buildUnnamed1581(); | 1788 o.companionCreatives = buildUnnamed1887(); |
| 1789 o.compatibility = buildUnnamed1582(); | 1789 o.compatibility = buildUnnamed1888(); |
| 1790 o.convertFlashToHtml5 = true; | 1790 o.convertFlashToHtml5 = true; |
| 1791 o.counterCustomEvents = buildUnnamed1583(); | 1791 o.counterCustomEvents = buildUnnamed1889(); |
| 1792 o.creativeAssets = buildUnnamed1584(); | 1792 o.creativeAssets = buildUnnamed1890(); |
| 1793 o.creativeFieldAssignments = buildUnnamed1585(); | 1793 o.creativeFieldAssignments = buildUnnamed1891(); |
| 1794 o.customKeyValues = buildUnnamed1586(); | 1794 o.customKeyValues = buildUnnamed1892(); |
| 1795 o.exitCustomEvents = buildUnnamed1587(); | 1795 o.exitCustomEvents = buildUnnamed1893(); |
| 1796 o.fsCommand = buildFsCommand(); | 1796 o.fsCommand = buildFsCommand(); |
| 1797 o.htmlCode = "foo"; | 1797 o.htmlCode = "foo"; |
| 1798 o.htmlCodeLocked = true; | 1798 o.htmlCodeLocked = true; |
| 1799 o.id = "foo"; | 1799 o.id = "foo"; |
| 1800 o.idDimensionValue = buildDimensionValue(); | 1800 o.idDimensionValue = buildDimensionValue(); |
| 1801 o.kind = "foo"; | 1801 o.kind = "foo"; |
| 1802 o.lastModifiedInfo = buildLastModifiedInfo(); | 1802 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 1803 o.latestTraffickedCreativeId = "foo"; | 1803 o.latestTraffickedCreativeId = "foo"; |
| 1804 o.name = "foo"; | 1804 o.name = "foo"; |
| 1805 o.overrideCss = "foo"; | 1805 o.overrideCss = "foo"; |
| 1806 o.redirectUrl = "foo"; | 1806 o.redirectUrl = "foo"; |
| 1807 o.renderingId = "foo"; | 1807 o.renderingId = "foo"; |
| 1808 o.renderingIdDimensionValue = buildDimensionValue(); | 1808 o.renderingIdDimensionValue = buildDimensionValue(); |
| 1809 o.requiredFlashPluginVersion = "foo"; | 1809 o.requiredFlashPluginVersion = "foo"; |
| 1810 o.requiredFlashVersion = 42; | 1810 o.requiredFlashVersion = 42; |
| 1811 o.size = buildSize(); | 1811 o.size = buildSize(); |
| 1812 o.skippable = true; | 1812 o.skippable = true; |
| 1813 o.sslCompliant = true; | 1813 o.sslCompliant = true; |
| 1814 o.sslOverride = true; | 1814 o.sslOverride = true; |
| 1815 o.studioAdvertiserId = "foo"; | 1815 o.studioAdvertiserId = "foo"; |
| 1816 o.studioCreativeId = "foo"; | 1816 o.studioCreativeId = "foo"; |
| 1817 o.studioTraffickedCreativeId = "foo"; | 1817 o.studioTraffickedCreativeId = "foo"; |
| 1818 o.subaccountId = "foo"; | 1818 o.subaccountId = "foo"; |
| 1819 o.thirdPartyBackupImageImpressionsUrl = "foo"; | 1819 o.thirdPartyBackupImageImpressionsUrl = "foo"; |
| 1820 o.thirdPartyRichMediaImpressionsUrl = "foo"; | 1820 o.thirdPartyRichMediaImpressionsUrl = "foo"; |
| 1821 o.thirdPartyUrls = buildUnnamed1588(); | 1821 o.thirdPartyUrls = buildUnnamed1894(); |
| 1822 o.timerCustomEvents = buildUnnamed1589(); | 1822 o.timerCustomEvents = buildUnnamed1895(); |
| 1823 o.totalFileSize = "foo"; | 1823 o.totalFileSize = "foo"; |
| 1824 o.type = "foo"; | 1824 o.type = "foo"; |
| 1825 o.version = 42; | 1825 o.version = 42; |
| 1826 o.videoDescription = "foo"; | 1826 o.videoDescription = "foo"; |
| 1827 o.videoDuration = 42.0; | 1827 o.videoDuration = 42.0; |
| 1828 } | 1828 } |
| 1829 buildCounterCreative--; | 1829 buildCounterCreative--; |
| 1830 return o; | 1830 return o; |
| 1831 } | 1831 } |
| 1832 | 1832 |
| 1833 checkCreative(api.Creative o) { | 1833 checkCreative(api.Creative o) { |
| 1834 buildCounterCreative++; | 1834 buildCounterCreative++; |
| 1835 if (buildCounterCreative < 3) { | 1835 if (buildCounterCreative < 3) { |
| 1836 unittest.expect(o.accountId, unittest.equals('foo')); | 1836 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1837 unittest.expect(o.active, unittest.isTrue); | 1837 unittest.expect(o.active, unittest.isTrue); |
| 1838 unittest.expect(o.adParameters, unittest.equals('foo')); | 1838 unittest.expect(o.adParameters, unittest.equals('foo')); |
| 1839 checkUnnamed1578(o.adTagKeys); | 1839 checkUnnamed1884(o.adTagKeys); |
| 1840 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1840 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 1841 unittest.expect(o.allowScriptAccess, unittest.isTrue); | 1841 unittest.expect(o.allowScriptAccess, unittest.isTrue); |
| 1842 unittest.expect(o.archived, unittest.isTrue); | 1842 unittest.expect(o.archived, unittest.isTrue); |
| 1843 unittest.expect(o.artworkType, unittest.equals('foo')); | 1843 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 1844 unittest.expect(o.authoringSource, unittest.equals('foo')); | 1844 unittest.expect(o.authoringSource, unittest.equals('foo')); |
| 1845 unittest.expect(o.authoringTool, unittest.equals('foo')); | 1845 unittest.expect(o.authoringTool, unittest.equals('foo')); |
| 1846 unittest.expect(o.autoAdvanceImages, unittest.isTrue); | 1846 unittest.expect(o.autoAdvanceImages, unittest.isTrue); |
| 1847 unittest.expect(o.backgroundColor, unittest.equals('foo')); | 1847 unittest.expect(o.backgroundColor, unittest.equals('foo')); |
| 1848 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); | 1848 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); |
| 1849 checkUnnamed1579(o.backupImageFeatures); | 1849 checkUnnamed1885(o.backupImageFeatures); |
| 1850 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); | 1850 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); |
| 1851 checkTargetWindow(o.backupImageTargetWindow); | 1851 checkTargetWindow(o.backupImageTargetWindow); |
| 1852 checkUnnamed1580(o.clickTags); | 1852 checkUnnamed1886(o.clickTags); |
| 1853 unittest.expect(o.commercialId, unittest.equals('foo')); | 1853 unittest.expect(o.commercialId, unittest.equals('foo')); |
| 1854 checkUnnamed1581(o.companionCreatives); | 1854 checkUnnamed1887(o.companionCreatives); |
| 1855 checkUnnamed1582(o.compatibility); | 1855 checkUnnamed1888(o.compatibility); |
| 1856 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); | 1856 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); |
| 1857 checkUnnamed1583(o.counterCustomEvents); | 1857 checkUnnamed1889(o.counterCustomEvents); |
| 1858 checkUnnamed1584(o.creativeAssets); | 1858 checkUnnamed1890(o.creativeAssets); |
| 1859 checkUnnamed1585(o.creativeFieldAssignments); | 1859 checkUnnamed1891(o.creativeFieldAssignments); |
| 1860 checkUnnamed1586(o.customKeyValues); | 1860 checkUnnamed1892(o.customKeyValues); |
| 1861 checkUnnamed1587(o.exitCustomEvents); | 1861 checkUnnamed1893(o.exitCustomEvents); |
| 1862 checkFsCommand(o.fsCommand); | 1862 checkFsCommand(o.fsCommand); |
| 1863 unittest.expect(o.htmlCode, unittest.equals('foo')); | 1863 unittest.expect(o.htmlCode, unittest.equals('foo')); |
| 1864 unittest.expect(o.htmlCodeLocked, unittest.isTrue); | 1864 unittest.expect(o.htmlCodeLocked, unittest.isTrue); |
| 1865 unittest.expect(o.id, unittest.equals('foo')); | 1865 unittest.expect(o.id, unittest.equals('foo')); |
| 1866 checkDimensionValue(o.idDimensionValue); | 1866 checkDimensionValue(o.idDimensionValue); |
| 1867 unittest.expect(o.kind, unittest.equals('foo')); | 1867 unittest.expect(o.kind, unittest.equals('foo')); |
| 1868 checkLastModifiedInfo(o.lastModifiedInfo); | 1868 checkLastModifiedInfo(o.lastModifiedInfo); |
| 1869 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); | 1869 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); |
| 1870 unittest.expect(o.name, unittest.equals('foo')); | 1870 unittest.expect(o.name, unittest.equals('foo')); |
| 1871 unittest.expect(o.overrideCss, unittest.equals('foo')); | 1871 unittest.expect(o.overrideCss, unittest.equals('foo')); |
| 1872 unittest.expect(o.redirectUrl, unittest.equals('foo')); | 1872 unittest.expect(o.redirectUrl, unittest.equals('foo')); |
| 1873 unittest.expect(o.renderingId, unittest.equals('foo')); | 1873 unittest.expect(o.renderingId, unittest.equals('foo')); |
| 1874 checkDimensionValue(o.renderingIdDimensionValue); | 1874 checkDimensionValue(o.renderingIdDimensionValue); |
| 1875 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); | 1875 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); |
| 1876 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); | 1876 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); |
| 1877 checkSize(o.size); | 1877 checkSize(o.size); |
| 1878 unittest.expect(o.skippable, unittest.isTrue); | 1878 unittest.expect(o.skippable, unittest.isTrue); |
| 1879 unittest.expect(o.sslCompliant, unittest.isTrue); | 1879 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 1880 unittest.expect(o.sslOverride, unittest.isTrue); | 1880 unittest.expect(o.sslOverride, unittest.isTrue); |
| 1881 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); | 1881 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); |
| 1882 unittest.expect(o.studioCreativeId, unittest.equals('foo')); | 1882 unittest.expect(o.studioCreativeId, unittest.equals('foo')); |
| 1883 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); | 1883 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); |
| 1884 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1884 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1885 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); | 1885 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); |
| 1886 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; | 1886 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; |
| 1887 checkUnnamed1588(o.thirdPartyUrls); | 1887 checkUnnamed1894(o.thirdPartyUrls); |
| 1888 checkUnnamed1589(o.timerCustomEvents); | 1888 checkUnnamed1895(o.timerCustomEvents); |
| 1889 unittest.expect(o.totalFileSize, unittest.equals('foo')); | 1889 unittest.expect(o.totalFileSize, unittest.equals('foo')); |
| 1890 unittest.expect(o.type, unittest.equals('foo')); | 1890 unittest.expect(o.type, unittest.equals('foo')); |
| 1891 unittest.expect(o.version, unittest.equals(42)); | 1891 unittest.expect(o.version, unittest.equals(42)); |
| 1892 unittest.expect(o.videoDescription, unittest.equals('foo')); | 1892 unittest.expect(o.videoDescription, unittest.equals('foo')); |
| 1893 unittest.expect(o.videoDuration, unittest.equals(42.0)); | 1893 unittest.expect(o.videoDuration, unittest.equals(42.0)); |
| 1894 } | 1894 } |
| 1895 buildCounterCreative--; | 1895 buildCounterCreative--; |
| 1896 } | 1896 } |
| 1897 | 1897 |
| 1898 buildUnnamed1590() { | 1898 buildUnnamed1896() { |
| 1899 var o = new core.List<core.String>(); | 1899 var o = new core.List<core.String>(); |
| 1900 o.add("foo"); | 1900 o.add("foo"); |
| 1901 o.add("foo"); | 1901 o.add("foo"); |
| 1902 return o; | 1902 return o; |
| 1903 } | 1903 } |
| 1904 | 1904 |
| 1905 checkUnnamed1590(core.List<core.String> o) { | 1905 checkUnnamed1896(core.List<core.String> o) { |
| 1906 unittest.expect(o, unittest.hasLength(2)); | 1906 unittest.expect(o, unittest.hasLength(2)); |
| 1907 unittest.expect(o[0], unittest.equals('foo')); | 1907 unittest.expect(o[0], unittest.equals('foo')); |
| 1908 unittest.expect(o[1], unittest.equals('foo')); | 1908 unittest.expect(o[1], unittest.equals('foo')); |
| 1909 } | 1909 } |
| 1910 | 1910 |
| 1911 core.int buildCounterCreativeAsset = 0; | 1911 core.int buildCounterCreativeAsset = 0; |
| 1912 buildCreativeAsset() { | 1912 buildCreativeAsset() { |
| 1913 var o = new api.CreativeAsset(); | 1913 var o = new api.CreativeAsset(); |
| 1914 buildCounterCreativeAsset++; | 1914 buildCounterCreativeAsset++; |
| 1915 if (buildCounterCreativeAsset < 3) { | 1915 if (buildCounterCreativeAsset < 3) { |
| 1916 o.actionScript3 = true; | 1916 o.actionScript3 = true; |
| 1917 o.active = true; | 1917 o.active = true; |
| 1918 o.alignment = "foo"; | 1918 o.alignment = "foo"; |
| 1919 o.artworkType = "foo"; | 1919 o.artworkType = "foo"; |
| 1920 o.assetIdentifier = buildCreativeAssetId(); | 1920 o.assetIdentifier = buildCreativeAssetId(); |
| 1921 o.backupImageExit = buildCreativeCustomEvent(); | 1921 o.backupImageExit = buildCreativeCustomEvent(); |
| 1922 o.bitRate = 42; | 1922 o.bitRate = 42; |
| 1923 o.childAssetType = "foo"; | 1923 o.childAssetType = "foo"; |
| 1924 o.collapsedSize = buildSize(); | 1924 o.collapsedSize = buildSize(); |
| 1925 o.customStartTimeValue = 42; | 1925 o.customStartTimeValue = 42; |
| 1926 o.detectedFeatures = buildUnnamed1590(); | 1926 o.detectedFeatures = buildUnnamed1896(); |
| 1927 o.displayType = "foo"; | 1927 o.displayType = "foo"; |
| 1928 o.duration = 42; | 1928 o.duration = 42; |
| 1929 o.durationType = "foo"; | 1929 o.durationType = "foo"; |
| 1930 o.expandedDimension = buildSize(); | 1930 o.expandedDimension = buildSize(); |
| 1931 o.fileSize = "foo"; | 1931 o.fileSize = "foo"; |
| 1932 o.flashVersion = 42; | 1932 o.flashVersion = 42; |
| 1933 o.hideFlashObjects = true; | 1933 o.hideFlashObjects = true; |
| 1934 o.hideSelectionBoxes = true; | 1934 o.hideSelectionBoxes = true; |
| 1935 o.horizontallyLocked = true; | 1935 o.horizontallyLocked = true; |
| 1936 o.id = "foo"; | 1936 o.id = "foo"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1966 unittest.expect(o.actionScript3, unittest.isTrue); | 1966 unittest.expect(o.actionScript3, unittest.isTrue); |
| 1967 unittest.expect(o.active, unittest.isTrue); | 1967 unittest.expect(o.active, unittest.isTrue); |
| 1968 unittest.expect(o.alignment, unittest.equals('foo')); | 1968 unittest.expect(o.alignment, unittest.equals('foo')); |
| 1969 unittest.expect(o.artworkType, unittest.equals('foo')); | 1969 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 1970 checkCreativeAssetId(o.assetIdentifier); | 1970 checkCreativeAssetId(o.assetIdentifier); |
| 1971 checkCreativeCustomEvent(o.backupImageExit); | 1971 checkCreativeCustomEvent(o.backupImageExit); |
| 1972 unittest.expect(o.bitRate, unittest.equals(42)); | 1972 unittest.expect(o.bitRate, unittest.equals(42)); |
| 1973 unittest.expect(o.childAssetType, unittest.equals('foo')); | 1973 unittest.expect(o.childAssetType, unittest.equals('foo')); |
| 1974 checkSize(o.collapsedSize); | 1974 checkSize(o.collapsedSize); |
| 1975 unittest.expect(o.customStartTimeValue, unittest.equals(42)); | 1975 unittest.expect(o.customStartTimeValue, unittest.equals(42)); |
| 1976 checkUnnamed1590(o.detectedFeatures); | 1976 checkUnnamed1896(o.detectedFeatures); |
| 1977 unittest.expect(o.displayType, unittest.equals('foo')); | 1977 unittest.expect(o.displayType, unittest.equals('foo')); |
| 1978 unittest.expect(o.duration, unittest.equals(42)); | 1978 unittest.expect(o.duration, unittest.equals(42)); |
| 1979 unittest.expect(o.durationType, unittest.equals('foo')); | 1979 unittest.expect(o.durationType, unittest.equals('foo')); |
| 1980 checkSize(o.expandedDimension); | 1980 checkSize(o.expandedDimension); |
| 1981 unittest.expect(o.fileSize, unittest.equals('foo')); | 1981 unittest.expect(o.fileSize, unittest.equals('foo')); |
| 1982 unittest.expect(o.flashVersion, unittest.equals(42)); | 1982 unittest.expect(o.flashVersion, unittest.equals(42)); |
| 1983 unittest.expect(o.hideFlashObjects, unittest.isTrue); | 1983 unittest.expect(o.hideFlashObjects, unittest.isTrue); |
| 1984 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); | 1984 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); |
| 1985 unittest.expect(o.horizontallyLocked, unittest.isTrue); | 1985 unittest.expect(o.horizontallyLocked, unittest.isTrue); |
| 1986 unittest.expect(o.id, unittest.equals('foo')); | 1986 unittest.expect(o.id, unittest.equals('foo')); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2023 | 2023 |
| 2024 checkCreativeAssetId(api.CreativeAssetId o) { | 2024 checkCreativeAssetId(api.CreativeAssetId o) { |
| 2025 buildCounterCreativeAssetId++; | 2025 buildCounterCreativeAssetId++; |
| 2026 if (buildCounterCreativeAssetId < 3) { | 2026 if (buildCounterCreativeAssetId < 3) { |
| 2027 unittest.expect(o.name, unittest.equals('foo')); | 2027 unittest.expect(o.name, unittest.equals('foo')); |
| 2028 unittest.expect(o.type, unittest.equals('foo')); | 2028 unittest.expect(o.type, unittest.equals('foo')); |
| 2029 } | 2029 } |
| 2030 buildCounterCreativeAssetId--; | 2030 buildCounterCreativeAssetId--; |
| 2031 } | 2031 } |
| 2032 | 2032 |
| 2033 buildUnnamed1591() { | 2033 buildUnnamed1897() { |
| 2034 var o = new core.List<api.ClickTag>(); | 2034 var o = new core.List<api.ClickTag>(); |
| 2035 o.add(buildClickTag()); | 2035 o.add(buildClickTag()); |
| 2036 o.add(buildClickTag()); | 2036 o.add(buildClickTag()); |
| 2037 return o; | 2037 return o; |
| 2038 } | 2038 } |
| 2039 | 2039 |
| 2040 checkUnnamed1591(core.List<api.ClickTag> o) { | 2040 checkUnnamed1897(core.List<api.ClickTag> o) { |
| 2041 unittest.expect(o, unittest.hasLength(2)); | 2041 unittest.expect(o, unittest.hasLength(2)); |
| 2042 checkClickTag(o[0]); | 2042 checkClickTag(o[0]); |
| 2043 checkClickTag(o[1]); | 2043 checkClickTag(o[1]); |
| 2044 } | 2044 } |
| 2045 | 2045 |
| 2046 buildUnnamed1592() { | 2046 buildUnnamed1898() { |
| 2047 var o = new core.List<core.String>(); | 2047 var o = new core.List<core.String>(); |
| 2048 o.add("foo"); | 2048 o.add("foo"); |
| 2049 o.add("foo"); | 2049 o.add("foo"); |
| 2050 return o; | 2050 return o; |
| 2051 } | 2051 } |
| 2052 | 2052 |
| 2053 checkUnnamed1592(core.List<core.String> o) { | 2053 checkUnnamed1898(core.List<core.String> o) { |
| 2054 unittest.expect(o, unittest.hasLength(2)); | 2054 unittest.expect(o, unittest.hasLength(2)); |
| 2055 unittest.expect(o[0], unittest.equals('foo')); | 2055 unittest.expect(o[0], unittest.equals('foo')); |
| 2056 unittest.expect(o[1], unittest.equals('foo')); | 2056 unittest.expect(o[1], unittest.equals('foo')); |
| 2057 } | 2057 } |
| 2058 | 2058 |
| 2059 buildUnnamed1593() { | 2059 buildUnnamed1899() { |
| 2060 var o = new core.List<core.String>(); | 2060 var o = new core.List<core.String>(); |
| 2061 o.add("foo"); | 2061 o.add("foo"); |
| 2062 o.add("foo"); | 2062 o.add("foo"); |
| 2063 return o; | 2063 return o; |
| 2064 } | 2064 } |
| 2065 | 2065 |
| 2066 checkUnnamed1593(core.List<core.String> o) { | 2066 checkUnnamed1899(core.List<core.String> o) { |
| 2067 unittest.expect(o, unittest.hasLength(2)); | 2067 unittest.expect(o, unittest.hasLength(2)); |
| 2068 unittest.expect(o[0], unittest.equals('foo')); | 2068 unittest.expect(o[0], unittest.equals('foo')); |
| 2069 unittest.expect(o[1], unittest.equals('foo')); | 2069 unittest.expect(o[1], unittest.equals('foo')); |
| 2070 } | 2070 } |
| 2071 | 2071 |
| 2072 core.int buildCounterCreativeAssetMetadata = 0; | 2072 core.int buildCounterCreativeAssetMetadata = 0; |
| 2073 buildCreativeAssetMetadata() { | 2073 buildCreativeAssetMetadata() { |
| 2074 var o = new api.CreativeAssetMetadata(); | 2074 var o = new api.CreativeAssetMetadata(); |
| 2075 buildCounterCreativeAssetMetadata++; | 2075 buildCounterCreativeAssetMetadata++; |
| 2076 if (buildCounterCreativeAssetMetadata < 3) { | 2076 if (buildCounterCreativeAssetMetadata < 3) { |
| 2077 o.assetIdentifier = buildCreativeAssetId(); | 2077 o.assetIdentifier = buildCreativeAssetId(); |
| 2078 o.clickTags = buildUnnamed1591(); | 2078 o.clickTags = buildUnnamed1897(); |
| 2079 o.detectedFeatures = buildUnnamed1592(); | 2079 o.detectedFeatures = buildUnnamed1898(); |
| 2080 o.kind = "foo"; | 2080 o.kind = "foo"; |
| 2081 o.warnedValidationRules = buildUnnamed1593(); | 2081 o.warnedValidationRules = buildUnnamed1899(); |
| 2082 } | 2082 } |
| 2083 buildCounterCreativeAssetMetadata--; | 2083 buildCounterCreativeAssetMetadata--; |
| 2084 return o; | 2084 return o; |
| 2085 } | 2085 } |
| 2086 | 2086 |
| 2087 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { | 2087 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { |
| 2088 buildCounterCreativeAssetMetadata++; | 2088 buildCounterCreativeAssetMetadata++; |
| 2089 if (buildCounterCreativeAssetMetadata < 3) { | 2089 if (buildCounterCreativeAssetMetadata < 3) { |
| 2090 checkCreativeAssetId(o.assetIdentifier); | 2090 checkCreativeAssetId(o.assetIdentifier); |
| 2091 checkUnnamed1591(o.clickTags); | 2091 checkUnnamed1897(o.clickTags); |
| 2092 checkUnnamed1592(o.detectedFeatures); | 2092 checkUnnamed1898(o.detectedFeatures); |
| 2093 unittest.expect(o.kind, unittest.equals('foo')); | 2093 unittest.expect(o.kind, unittest.equals('foo')); |
| 2094 checkUnnamed1593(o.warnedValidationRules); | 2094 checkUnnamed1899(o.warnedValidationRules); |
| 2095 } | 2095 } |
| 2096 buildCounterCreativeAssetMetadata--; | 2096 buildCounterCreativeAssetMetadata--; |
| 2097 } | 2097 } |
| 2098 | 2098 |
| 2099 buildUnnamed1594() { | 2099 buildUnnamed1900() { |
| 2100 var o = new core.List<api.CompanionClickThroughOverride>(); | 2100 var o = new core.List<api.CompanionClickThroughOverride>(); |
| 2101 o.add(buildCompanionClickThroughOverride()); | 2101 o.add(buildCompanionClickThroughOverride()); |
| 2102 o.add(buildCompanionClickThroughOverride()); | 2102 o.add(buildCompanionClickThroughOverride()); |
| 2103 return o; | 2103 return o; |
| 2104 } | 2104 } |
| 2105 | 2105 |
| 2106 checkUnnamed1594(core.List<api.CompanionClickThroughOverride> o) { | 2106 checkUnnamed1900(core.List<api.CompanionClickThroughOverride> o) { |
| 2107 unittest.expect(o, unittest.hasLength(2)); | 2107 unittest.expect(o, unittest.hasLength(2)); |
| 2108 checkCompanionClickThroughOverride(o[0]); | 2108 checkCompanionClickThroughOverride(o[0]); |
| 2109 checkCompanionClickThroughOverride(o[1]); | 2109 checkCompanionClickThroughOverride(o[1]); |
| 2110 } | 2110 } |
| 2111 | 2111 |
| 2112 buildUnnamed1595() { | 2112 buildUnnamed1901() { |
| 2113 var o = new core.List<api.CreativeGroupAssignment>(); | 2113 var o = new core.List<api.CreativeGroupAssignment>(); |
| 2114 o.add(buildCreativeGroupAssignment()); | 2114 o.add(buildCreativeGroupAssignment()); |
| 2115 o.add(buildCreativeGroupAssignment()); | 2115 o.add(buildCreativeGroupAssignment()); |
| 2116 return o; | 2116 return o; |
| 2117 } | 2117 } |
| 2118 | 2118 |
| 2119 checkUnnamed1595(core.List<api.CreativeGroupAssignment> o) { | 2119 checkUnnamed1901(core.List<api.CreativeGroupAssignment> o) { |
| 2120 unittest.expect(o, unittest.hasLength(2)); | 2120 unittest.expect(o, unittest.hasLength(2)); |
| 2121 checkCreativeGroupAssignment(o[0]); | 2121 checkCreativeGroupAssignment(o[0]); |
| 2122 checkCreativeGroupAssignment(o[1]); | 2122 checkCreativeGroupAssignment(o[1]); |
| 2123 } | 2123 } |
| 2124 | 2124 |
| 2125 buildUnnamed1596() { | 2125 buildUnnamed1902() { |
| 2126 var o = new core.List<api.RichMediaExitOverride>(); | 2126 var o = new core.List<api.RichMediaExitOverride>(); |
| 2127 o.add(buildRichMediaExitOverride()); | 2127 o.add(buildRichMediaExitOverride()); |
| 2128 o.add(buildRichMediaExitOverride()); | 2128 o.add(buildRichMediaExitOverride()); |
| 2129 return o; | 2129 return o; |
| 2130 } | 2130 } |
| 2131 | 2131 |
| 2132 checkUnnamed1596(core.List<api.RichMediaExitOverride> o) { | 2132 checkUnnamed1902(core.List<api.RichMediaExitOverride> o) { |
| 2133 unittest.expect(o, unittest.hasLength(2)); | 2133 unittest.expect(o, unittest.hasLength(2)); |
| 2134 checkRichMediaExitOverride(o[0]); | 2134 checkRichMediaExitOverride(o[0]); |
| 2135 checkRichMediaExitOverride(o[1]); | 2135 checkRichMediaExitOverride(o[1]); |
| 2136 } | 2136 } |
| 2137 | 2137 |
| 2138 core.int buildCounterCreativeAssignment = 0; | 2138 core.int buildCounterCreativeAssignment = 0; |
| 2139 buildCreativeAssignment() { | 2139 buildCreativeAssignment() { |
| 2140 var o = new api.CreativeAssignment(); | 2140 var o = new api.CreativeAssignment(); |
| 2141 buildCounterCreativeAssignment++; | 2141 buildCounterCreativeAssignment++; |
| 2142 if (buildCounterCreativeAssignment < 3) { | 2142 if (buildCounterCreativeAssignment < 3) { |
| 2143 o.active = true; | 2143 o.active = true; |
| 2144 o.applyEventTags = true; | 2144 o.applyEventTags = true; |
| 2145 o.clickThroughUrl = buildClickThroughUrl(); | 2145 o.clickThroughUrl = buildClickThroughUrl(); |
| 2146 o.companionCreativeOverrides = buildUnnamed1594(); | 2146 o.companionCreativeOverrides = buildUnnamed1900(); |
| 2147 o.creativeGroupAssignments = buildUnnamed1595(); | 2147 o.creativeGroupAssignments = buildUnnamed1901(); |
| 2148 o.creativeId = "foo"; | 2148 o.creativeId = "foo"; |
| 2149 o.creativeIdDimensionValue = buildDimensionValue(); | 2149 o.creativeIdDimensionValue = buildDimensionValue(); |
| 2150 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2150 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2151 o.richMediaExitOverrides = buildUnnamed1596(); | 2151 o.richMediaExitOverrides = buildUnnamed1902(); |
| 2152 o.sequence = 42; | 2152 o.sequence = 42; |
| 2153 o.sslCompliant = true; | 2153 o.sslCompliant = true; |
| 2154 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2154 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2155 o.weight = 42; | 2155 o.weight = 42; |
| 2156 } | 2156 } |
| 2157 buildCounterCreativeAssignment--; | 2157 buildCounterCreativeAssignment--; |
| 2158 return o; | 2158 return o; |
| 2159 } | 2159 } |
| 2160 | 2160 |
| 2161 checkCreativeAssignment(api.CreativeAssignment o) { | 2161 checkCreativeAssignment(api.CreativeAssignment o) { |
| 2162 buildCounterCreativeAssignment++; | 2162 buildCounterCreativeAssignment++; |
| 2163 if (buildCounterCreativeAssignment < 3) { | 2163 if (buildCounterCreativeAssignment < 3) { |
| 2164 unittest.expect(o.active, unittest.isTrue); | 2164 unittest.expect(o.active, unittest.isTrue); |
| 2165 unittest.expect(o.applyEventTags, unittest.isTrue); | 2165 unittest.expect(o.applyEventTags, unittest.isTrue); |
| 2166 checkClickThroughUrl(o.clickThroughUrl); | 2166 checkClickThroughUrl(o.clickThroughUrl); |
| 2167 checkUnnamed1594(o.companionCreativeOverrides); | 2167 checkUnnamed1900(o.companionCreativeOverrides); |
| 2168 checkUnnamed1595(o.creativeGroupAssignments); | 2168 checkUnnamed1901(o.creativeGroupAssignments); |
| 2169 unittest.expect(o.creativeId, unittest.equals('foo')); | 2169 unittest.expect(o.creativeId, unittest.equals('foo')); |
| 2170 checkDimensionValue(o.creativeIdDimensionValue); | 2170 checkDimensionValue(o.creativeIdDimensionValue); |
| 2171 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2171 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2172 checkUnnamed1596(o.richMediaExitOverrides); | 2172 checkUnnamed1902(o.richMediaExitOverrides); |
| 2173 unittest.expect(o.sequence, unittest.equals(42)); | 2173 unittest.expect(o.sequence, unittest.equals(42)); |
| 2174 unittest.expect(o.sslCompliant, unittest.isTrue); | 2174 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 2175 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 2175 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 2176 unittest.expect(o.weight, unittest.equals(42)); | 2176 unittest.expect(o.weight, unittest.equals(42)); |
| 2177 } | 2177 } |
| 2178 buildCounterCreativeAssignment--; | 2178 buildCounterCreativeAssignment--; |
| 2179 } | 2179 } |
| 2180 | 2180 |
| 2181 core.int buildCounterCreativeCustomEvent = 0; | 2181 core.int buildCounterCreativeCustomEvent = 0; |
| 2182 buildCreativeCustomEvent() { | 2182 buildCreativeCustomEvent() { |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2283 checkCreativeFieldValue(api.CreativeFieldValue o) { | 2283 checkCreativeFieldValue(api.CreativeFieldValue o) { |
| 2284 buildCounterCreativeFieldValue++; | 2284 buildCounterCreativeFieldValue++; |
| 2285 if (buildCounterCreativeFieldValue < 3) { | 2285 if (buildCounterCreativeFieldValue < 3) { |
| 2286 unittest.expect(o.id, unittest.equals('foo')); | 2286 unittest.expect(o.id, unittest.equals('foo')); |
| 2287 unittest.expect(o.kind, unittest.equals('foo')); | 2287 unittest.expect(o.kind, unittest.equals('foo')); |
| 2288 unittest.expect(o.value, unittest.equals('foo')); | 2288 unittest.expect(o.value, unittest.equals('foo')); |
| 2289 } | 2289 } |
| 2290 buildCounterCreativeFieldValue--; | 2290 buildCounterCreativeFieldValue--; |
| 2291 } | 2291 } |
| 2292 | 2292 |
| 2293 buildUnnamed1597() { | 2293 buildUnnamed1903() { |
| 2294 var o = new core.List<api.CreativeFieldValue>(); | 2294 var o = new core.List<api.CreativeFieldValue>(); |
| 2295 o.add(buildCreativeFieldValue()); | 2295 o.add(buildCreativeFieldValue()); |
| 2296 o.add(buildCreativeFieldValue()); | 2296 o.add(buildCreativeFieldValue()); |
| 2297 return o; | 2297 return o; |
| 2298 } | 2298 } |
| 2299 | 2299 |
| 2300 checkUnnamed1597(core.List<api.CreativeFieldValue> o) { | 2300 checkUnnamed1903(core.List<api.CreativeFieldValue> o) { |
| 2301 unittest.expect(o, unittest.hasLength(2)); | 2301 unittest.expect(o, unittest.hasLength(2)); |
| 2302 checkCreativeFieldValue(o[0]); | 2302 checkCreativeFieldValue(o[0]); |
| 2303 checkCreativeFieldValue(o[1]); | 2303 checkCreativeFieldValue(o[1]); |
| 2304 } | 2304 } |
| 2305 | 2305 |
| 2306 core.int buildCounterCreativeFieldValuesListResponse = 0; | 2306 core.int buildCounterCreativeFieldValuesListResponse = 0; |
| 2307 buildCreativeFieldValuesListResponse() { | 2307 buildCreativeFieldValuesListResponse() { |
| 2308 var o = new api.CreativeFieldValuesListResponse(); | 2308 var o = new api.CreativeFieldValuesListResponse(); |
| 2309 buildCounterCreativeFieldValuesListResponse++; | 2309 buildCounterCreativeFieldValuesListResponse++; |
| 2310 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2310 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2311 o.creativeFieldValues = buildUnnamed1597(); | 2311 o.creativeFieldValues = buildUnnamed1903(); |
| 2312 o.kind = "foo"; | 2312 o.kind = "foo"; |
| 2313 o.nextPageToken = "foo"; | 2313 o.nextPageToken = "foo"; |
| 2314 } | 2314 } |
| 2315 buildCounterCreativeFieldValuesListResponse--; | 2315 buildCounterCreativeFieldValuesListResponse--; |
| 2316 return o; | 2316 return o; |
| 2317 } | 2317 } |
| 2318 | 2318 |
| 2319 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { | 2319 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { |
| 2320 buildCounterCreativeFieldValuesListResponse++; | 2320 buildCounterCreativeFieldValuesListResponse++; |
| 2321 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2321 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2322 checkUnnamed1597(o.creativeFieldValues); | 2322 checkUnnamed1903(o.creativeFieldValues); |
| 2323 unittest.expect(o.kind, unittest.equals('foo')); | 2323 unittest.expect(o.kind, unittest.equals('foo')); |
| 2324 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2324 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2325 } | 2325 } |
| 2326 buildCounterCreativeFieldValuesListResponse--; | 2326 buildCounterCreativeFieldValuesListResponse--; |
| 2327 } | 2327 } |
| 2328 | 2328 |
| 2329 buildUnnamed1598() { | 2329 buildUnnamed1904() { |
| 2330 var o = new core.List<api.CreativeField>(); | 2330 var o = new core.List<api.CreativeField>(); |
| 2331 o.add(buildCreativeField()); | 2331 o.add(buildCreativeField()); |
| 2332 o.add(buildCreativeField()); | 2332 o.add(buildCreativeField()); |
| 2333 return o; | 2333 return o; |
| 2334 } | 2334 } |
| 2335 | 2335 |
| 2336 checkUnnamed1598(core.List<api.CreativeField> o) { | 2336 checkUnnamed1904(core.List<api.CreativeField> o) { |
| 2337 unittest.expect(o, unittest.hasLength(2)); | 2337 unittest.expect(o, unittest.hasLength(2)); |
| 2338 checkCreativeField(o[0]); | 2338 checkCreativeField(o[0]); |
| 2339 checkCreativeField(o[1]); | 2339 checkCreativeField(o[1]); |
| 2340 } | 2340 } |
| 2341 | 2341 |
| 2342 core.int buildCounterCreativeFieldsListResponse = 0; | 2342 core.int buildCounterCreativeFieldsListResponse = 0; |
| 2343 buildCreativeFieldsListResponse() { | 2343 buildCreativeFieldsListResponse() { |
| 2344 var o = new api.CreativeFieldsListResponse(); | 2344 var o = new api.CreativeFieldsListResponse(); |
| 2345 buildCounterCreativeFieldsListResponse++; | 2345 buildCounterCreativeFieldsListResponse++; |
| 2346 if (buildCounterCreativeFieldsListResponse < 3) { | 2346 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2347 o.creativeFields = buildUnnamed1598(); | 2347 o.creativeFields = buildUnnamed1904(); |
| 2348 o.kind = "foo"; | 2348 o.kind = "foo"; |
| 2349 o.nextPageToken = "foo"; | 2349 o.nextPageToken = "foo"; |
| 2350 } | 2350 } |
| 2351 buildCounterCreativeFieldsListResponse--; | 2351 buildCounterCreativeFieldsListResponse--; |
| 2352 return o; | 2352 return o; |
| 2353 } | 2353 } |
| 2354 | 2354 |
| 2355 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { | 2355 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { |
| 2356 buildCounterCreativeFieldsListResponse++; | 2356 buildCounterCreativeFieldsListResponse++; |
| 2357 if (buildCounterCreativeFieldsListResponse < 3) { | 2357 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2358 checkUnnamed1598(o.creativeFields); | 2358 checkUnnamed1904(o.creativeFields); |
| 2359 unittest.expect(o.kind, unittest.equals('foo')); | 2359 unittest.expect(o.kind, unittest.equals('foo')); |
| 2360 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2360 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2361 } | 2361 } |
| 2362 buildCounterCreativeFieldsListResponse--; | 2362 buildCounterCreativeFieldsListResponse--; |
| 2363 } | 2363 } |
| 2364 | 2364 |
| 2365 core.int buildCounterCreativeGroup = 0; | 2365 core.int buildCounterCreativeGroup = 0; |
| 2366 buildCreativeGroup() { | 2366 buildCreativeGroup() { |
| 2367 var o = new api.CreativeGroup(); | 2367 var o = new api.CreativeGroup(); |
| 2368 buildCounterCreativeGroup++; | 2368 buildCounterCreativeGroup++; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2409 | 2409 |
| 2410 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { | 2410 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { |
| 2411 buildCounterCreativeGroupAssignment++; | 2411 buildCounterCreativeGroupAssignment++; |
| 2412 if (buildCounterCreativeGroupAssignment < 3) { | 2412 if (buildCounterCreativeGroupAssignment < 3) { |
| 2413 unittest.expect(o.creativeGroupId, unittest.equals('foo')); | 2413 unittest.expect(o.creativeGroupId, unittest.equals('foo')); |
| 2414 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); | 2414 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); |
| 2415 } | 2415 } |
| 2416 buildCounterCreativeGroupAssignment--; | 2416 buildCounterCreativeGroupAssignment--; |
| 2417 } | 2417 } |
| 2418 | 2418 |
| 2419 buildUnnamed1599() { | 2419 buildUnnamed1905() { |
| 2420 var o = new core.List<api.CreativeGroup>(); | 2420 var o = new core.List<api.CreativeGroup>(); |
| 2421 o.add(buildCreativeGroup()); | 2421 o.add(buildCreativeGroup()); |
| 2422 o.add(buildCreativeGroup()); | 2422 o.add(buildCreativeGroup()); |
| 2423 return o; | 2423 return o; |
| 2424 } | 2424 } |
| 2425 | 2425 |
| 2426 checkUnnamed1599(core.List<api.CreativeGroup> o) { | 2426 checkUnnamed1905(core.List<api.CreativeGroup> o) { |
| 2427 unittest.expect(o, unittest.hasLength(2)); | 2427 unittest.expect(o, unittest.hasLength(2)); |
| 2428 checkCreativeGroup(o[0]); | 2428 checkCreativeGroup(o[0]); |
| 2429 checkCreativeGroup(o[1]); | 2429 checkCreativeGroup(o[1]); |
| 2430 } | 2430 } |
| 2431 | 2431 |
| 2432 core.int buildCounterCreativeGroupsListResponse = 0; | 2432 core.int buildCounterCreativeGroupsListResponse = 0; |
| 2433 buildCreativeGroupsListResponse() { | 2433 buildCreativeGroupsListResponse() { |
| 2434 var o = new api.CreativeGroupsListResponse(); | 2434 var o = new api.CreativeGroupsListResponse(); |
| 2435 buildCounterCreativeGroupsListResponse++; | 2435 buildCounterCreativeGroupsListResponse++; |
| 2436 if (buildCounterCreativeGroupsListResponse < 3) { | 2436 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2437 o.creativeGroups = buildUnnamed1599(); | 2437 o.creativeGroups = buildUnnamed1905(); |
| 2438 o.kind = "foo"; | 2438 o.kind = "foo"; |
| 2439 o.nextPageToken = "foo"; | 2439 o.nextPageToken = "foo"; |
| 2440 } | 2440 } |
| 2441 buildCounterCreativeGroupsListResponse--; | 2441 buildCounterCreativeGroupsListResponse--; |
| 2442 return o; | 2442 return o; |
| 2443 } | 2443 } |
| 2444 | 2444 |
| 2445 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { | 2445 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { |
| 2446 buildCounterCreativeGroupsListResponse++; | 2446 buildCounterCreativeGroupsListResponse++; |
| 2447 if (buildCounterCreativeGroupsListResponse < 3) { | 2447 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2448 checkUnnamed1599(o.creativeGroups); | 2448 checkUnnamed1905(o.creativeGroups); |
| 2449 unittest.expect(o.kind, unittest.equals('foo')); | 2449 unittest.expect(o.kind, unittest.equals('foo')); |
| 2450 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2450 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2451 } | 2451 } |
| 2452 buildCounterCreativeGroupsListResponse--; | 2452 buildCounterCreativeGroupsListResponse--; |
| 2453 } | 2453 } |
| 2454 | 2454 |
| 2455 buildUnnamed1600() { | 2455 buildUnnamed1906() { |
| 2456 var o = new core.List<api.OptimizationActivity>(); | 2456 var o = new core.List<api.OptimizationActivity>(); |
| 2457 o.add(buildOptimizationActivity()); | 2457 o.add(buildOptimizationActivity()); |
| 2458 o.add(buildOptimizationActivity()); | 2458 o.add(buildOptimizationActivity()); |
| 2459 return o; | 2459 return o; |
| 2460 } | 2460 } |
| 2461 | 2461 |
| 2462 checkUnnamed1600(core.List<api.OptimizationActivity> o) { | 2462 checkUnnamed1906(core.List<api.OptimizationActivity> o) { |
| 2463 unittest.expect(o, unittest.hasLength(2)); | 2463 unittest.expect(o, unittest.hasLength(2)); |
| 2464 checkOptimizationActivity(o[0]); | 2464 checkOptimizationActivity(o[0]); |
| 2465 checkOptimizationActivity(o[1]); | 2465 checkOptimizationActivity(o[1]); |
| 2466 } | 2466 } |
| 2467 | 2467 |
| 2468 core.int buildCounterCreativeOptimizationConfiguration = 0; | 2468 core.int buildCounterCreativeOptimizationConfiguration = 0; |
| 2469 buildCreativeOptimizationConfiguration() { | 2469 buildCreativeOptimizationConfiguration() { |
| 2470 var o = new api.CreativeOptimizationConfiguration(); | 2470 var o = new api.CreativeOptimizationConfiguration(); |
| 2471 buildCounterCreativeOptimizationConfiguration++; | 2471 buildCounterCreativeOptimizationConfiguration++; |
| 2472 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2472 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2473 o.id = "foo"; | 2473 o.id = "foo"; |
| 2474 o.name = "foo"; | 2474 o.name = "foo"; |
| 2475 o.optimizationActivitys = buildUnnamed1600(); | 2475 o.optimizationActivitys = buildUnnamed1906(); |
| 2476 o.optimizationModel = "foo"; | 2476 o.optimizationModel = "foo"; |
| 2477 } | 2477 } |
| 2478 buildCounterCreativeOptimizationConfiguration--; | 2478 buildCounterCreativeOptimizationConfiguration--; |
| 2479 return o; | 2479 return o; |
| 2480 } | 2480 } |
| 2481 | 2481 |
| 2482 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ | 2482 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ |
| 2483 buildCounterCreativeOptimizationConfiguration++; | 2483 buildCounterCreativeOptimizationConfiguration++; |
| 2484 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2484 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2485 unittest.expect(o.id, unittest.equals('foo')); | 2485 unittest.expect(o.id, unittest.equals('foo')); |
| 2486 unittest.expect(o.name, unittest.equals('foo')); | 2486 unittest.expect(o.name, unittest.equals('foo')); |
| 2487 checkUnnamed1600(o.optimizationActivitys); | 2487 checkUnnamed1906(o.optimizationActivitys); |
| 2488 unittest.expect(o.optimizationModel, unittest.equals('foo')); | 2488 unittest.expect(o.optimizationModel, unittest.equals('foo')); |
| 2489 } | 2489 } |
| 2490 buildCounterCreativeOptimizationConfiguration--; | 2490 buildCounterCreativeOptimizationConfiguration--; |
| 2491 } | 2491 } |
| 2492 | 2492 |
| 2493 buildUnnamed1601() { | 2493 buildUnnamed1907() { |
| 2494 var o = new core.List<api.CreativeAssignment>(); | 2494 var o = new core.List<api.CreativeAssignment>(); |
| 2495 o.add(buildCreativeAssignment()); | 2495 o.add(buildCreativeAssignment()); |
| 2496 o.add(buildCreativeAssignment()); | 2496 o.add(buildCreativeAssignment()); |
| 2497 return o; | 2497 return o; |
| 2498 } | 2498 } |
| 2499 | 2499 |
| 2500 checkUnnamed1601(core.List<api.CreativeAssignment> o) { | 2500 checkUnnamed1907(core.List<api.CreativeAssignment> o) { |
| 2501 unittest.expect(o, unittest.hasLength(2)); | 2501 unittest.expect(o, unittest.hasLength(2)); |
| 2502 checkCreativeAssignment(o[0]); | 2502 checkCreativeAssignment(o[0]); |
| 2503 checkCreativeAssignment(o[1]); | 2503 checkCreativeAssignment(o[1]); |
| 2504 } | 2504 } |
| 2505 | 2505 |
| 2506 core.int buildCounterCreativeRotation = 0; | 2506 core.int buildCounterCreativeRotation = 0; |
| 2507 buildCreativeRotation() { | 2507 buildCreativeRotation() { |
| 2508 var o = new api.CreativeRotation(); | 2508 var o = new api.CreativeRotation(); |
| 2509 buildCounterCreativeRotation++; | 2509 buildCounterCreativeRotation++; |
| 2510 if (buildCounterCreativeRotation < 3) { | 2510 if (buildCounterCreativeRotation < 3) { |
| 2511 o.creativeAssignments = buildUnnamed1601(); | 2511 o.creativeAssignments = buildUnnamed1907(); |
| 2512 o.creativeOptimizationConfigurationId = "foo"; | 2512 o.creativeOptimizationConfigurationId = "foo"; |
| 2513 o.type = "foo"; | 2513 o.type = "foo"; |
| 2514 o.weightCalculationStrategy = "foo"; | 2514 o.weightCalculationStrategy = "foo"; |
| 2515 } | 2515 } |
| 2516 buildCounterCreativeRotation--; | 2516 buildCounterCreativeRotation--; |
| 2517 return o; | 2517 return o; |
| 2518 } | 2518 } |
| 2519 | 2519 |
| 2520 checkCreativeRotation(api.CreativeRotation o) { | 2520 checkCreativeRotation(api.CreativeRotation o) { |
| 2521 buildCounterCreativeRotation++; | 2521 buildCounterCreativeRotation++; |
| 2522 if (buildCounterCreativeRotation < 3) { | 2522 if (buildCounterCreativeRotation < 3) { |
| 2523 checkUnnamed1601(o.creativeAssignments); | 2523 checkUnnamed1907(o.creativeAssignments); |
| 2524 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); | 2524 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); |
| 2525 unittest.expect(o.type, unittest.equals('foo')); | 2525 unittest.expect(o.type, unittest.equals('foo')); |
| 2526 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); | 2526 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); |
| 2527 } | 2527 } |
| 2528 buildCounterCreativeRotation--; | 2528 buildCounterCreativeRotation--; |
| 2529 } | 2529 } |
| 2530 | 2530 |
| 2531 core.int buildCounterCreativeSettings = 0; | 2531 core.int buildCounterCreativeSettings = 0; |
| 2532 buildCreativeSettings() { | 2532 buildCreativeSettings() { |
| 2533 var o = new api.CreativeSettings(); | 2533 var o = new api.CreativeSettings(); |
| 2534 buildCounterCreativeSettings++; | 2534 buildCounterCreativeSettings++; |
| 2535 if (buildCounterCreativeSettings < 3) { | 2535 if (buildCounterCreativeSettings < 3) { |
| 2536 o.iFrameFooter = "foo"; | 2536 o.iFrameFooter = "foo"; |
| 2537 o.iFrameHeader = "foo"; | 2537 o.iFrameHeader = "foo"; |
| 2538 } | 2538 } |
| 2539 buildCounterCreativeSettings--; | 2539 buildCounterCreativeSettings--; |
| 2540 return o; | 2540 return o; |
| 2541 } | 2541 } |
| 2542 | 2542 |
| 2543 checkCreativeSettings(api.CreativeSettings o) { | 2543 checkCreativeSettings(api.CreativeSettings o) { |
| 2544 buildCounterCreativeSettings++; | 2544 buildCounterCreativeSettings++; |
| 2545 if (buildCounterCreativeSettings < 3) { | 2545 if (buildCounterCreativeSettings < 3) { |
| 2546 unittest.expect(o.iFrameFooter, unittest.equals('foo')); | 2546 unittest.expect(o.iFrameFooter, unittest.equals('foo')); |
| 2547 unittest.expect(o.iFrameHeader, unittest.equals('foo')); | 2547 unittest.expect(o.iFrameHeader, unittest.equals('foo')); |
| 2548 } | 2548 } |
| 2549 buildCounterCreativeSettings--; | 2549 buildCounterCreativeSettings--; |
| 2550 } | 2550 } |
| 2551 | 2551 |
| 2552 buildUnnamed1602() { | 2552 buildUnnamed1908() { |
| 2553 var o = new core.List<api.Creative>(); | 2553 var o = new core.List<api.Creative>(); |
| 2554 o.add(buildCreative()); | 2554 o.add(buildCreative()); |
| 2555 o.add(buildCreative()); | 2555 o.add(buildCreative()); |
| 2556 return o; | 2556 return o; |
| 2557 } | 2557 } |
| 2558 | 2558 |
| 2559 checkUnnamed1602(core.List<api.Creative> o) { | 2559 checkUnnamed1908(core.List<api.Creative> o) { |
| 2560 unittest.expect(o, unittest.hasLength(2)); | 2560 unittest.expect(o, unittest.hasLength(2)); |
| 2561 checkCreative(o[0]); | 2561 checkCreative(o[0]); |
| 2562 checkCreative(o[1]); | 2562 checkCreative(o[1]); |
| 2563 } | 2563 } |
| 2564 | 2564 |
| 2565 core.int buildCounterCreativesListResponse = 0; | 2565 core.int buildCounterCreativesListResponse = 0; |
| 2566 buildCreativesListResponse() { | 2566 buildCreativesListResponse() { |
| 2567 var o = new api.CreativesListResponse(); | 2567 var o = new api.CreativesListResponse(); |
| 2568 buildCounterCreativesListResponse++; | 2568 buildCounterCreativesListResponse++; |
| 2569 if (buildCounterCreativesListResponse < 3) { | 2569 if (buildCounterCreativesListResponse < 3) { |
| 2570 o.creatives = buildUnnamed1602(); | 2570 o.creatives = buildUnnamed1908(); |
| 2571 o.kind = "foo"; | 2571 o.kind = "foo"; |
| 2572 o.nextPageToken = "foo"; | 2572 o.nextPageToken = "foo"; |
| 2573 } | 2573 } |
| 2574 buildCounterCreativesListResponse--; | 2574 buildCounterCreativesListResponse--; |
| 2575 return o; | 2575 return o; |
| 2576 } | 2576 } |
| 2577 | 2577 |
| 2578 checkCreativesListResponse(api.CreativesListResponse o) { | 2578 checkCreativesListResponse(api.CreativesListResponse o) { |
| 2579 buildCounterCreativesListResponse++; | 2579 buildCounterCreativesListResponse++; |
| 2580 if (buildCounterCreativesListResponse < 3) { | 2580 if (buildCounterCreativesListResponse < 3) { |
| 2581 checkUnnamed1602(o.creatives); | 2581 checkUnnamed1908(o.creatives); |
| 2582 unittest.expect(o.kind, unittest.equals('foo')); | 2582 unittest.expect(o.kind, unittest.equals('foo')); |
| 2583 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2583 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2584 } | 2584 } |
| 2585 buildCounterCreativesListResponse--; | 2585 buildCounterCreativesListResponse--; |
| 2586 } | 2586 } |
| 2587 | 2587 |
| 2588 buildUnnamed1603() { | 2588 buildUnnamed1909() { |
| 2589 var o = new core.List<api.Dimension>(); | 2589 var o = new core.List<api.Dimension>(); |
| 2590 o.add(buildDimension()); | 2590 o.add(buildDimension()); |
| 2591 o.add(buildDimension()); | 2591 o.add(buildDimension()); |
| 2592 return o; | 2592 return o; |
| 2593 } | 2593 } |
| 2594 | 2594 |
| 2595 checkUnnamed1603(core.List<api.Dimension> o) { | 2595 checkUnnamed1909(core.List<api.Dimension> o) { |
| 2596 unittest.expect(o, unittest.hasLength(2)); | 2596 unittest.expect(o, unittest.hasLength(2)); |
| 2597 checkDimension(o[0]); | 2597 checkDimension(o[0]); |
| 2598 checkDimension(o[1]); | 2598 checkDimension(o[1]); |
| 2599 } | 2599 } |
| 2600 | 2600 |
| 2601 buildUnnamed1604() { | 2601 buildUnnamed1910() { |
| 2602 var o = new core.List<api.Dimension>(); | 2602 var o = new core.List<api.Dimension>(); |
| 2603 o.add(buildDimension()); | 2603 o.add(buildDimension()); |
| 2604 o.add(buildDimension()); | 2604 o.add(buildDimension()); |
| 2605 return o; | 2605 return o; |
| 2606 } | 2606 } |
| 2607 | 2607 |
| 2608 checkUnnamed1604(core.List<api.Dimension> o) { | 2608 checkUnnamed1910(core.List<api.Dimension> o) { |
| 2609 unittest.expect(o, unittest.hasLength(2)); | 2609 unittest.expect(o, unittest.hasLength(2)); |
| 2610 checkDimension(o[0]); | 2610 checkDimension(o[0]); |
| 2611 checkDimension(o[1]); | 2611 checkDimension(o[1]); |
| 2612 } | 2612 } |
| 2613 | 2613 |
| 2614 buildUnnamed1605() { | 2614 buildUnnamed1911() { |
| 2615 var o = new core.List<api.Metric>(); | 2615 var o = new core.List<api.Metric>(); |
| 2616 o.add(buildMetric()); | 2616 o.add(buildMetric()); |
| 2617 o.add(buildMetric()); | 2617 o.add(buildMetric()); |
| 2618 return o; | 2618 return o; |
| 2619 } | 2619 } |
| 2620 | 2620 |
| 2621 checkUnnamed1605(core.List<api.Metric> o) { | 2621 checkUnnamed1911(core.List<api.Metric> o) { |
| 2622 unittest.expect(o, unittest.hasLength(2)); | 2622 unittest.expect(o, unittest.hasLength(2)); |
| 2623 checkMetric(o[0]); | 2623 checkMetric(o[0]); |
| 2624 checkMetric(o[1]); | 2624 checkMetric(o[1]); |
| 2625 } | 2625 } |
| 2626 | 2626 |
| 2627 buildUnnamed1606() { | 2627 buildUnnamed1912() { |
| 2628 var o = new core.List<api.Metric>(); | 2628 var o = new core.List<api.Metric>(); |
| 2629 o.add(buildMetric()); | 2629 o.add(buildMetric()); |
| 2630 o.add(buildMetric()); | 2630 o.add(buildMetric()); |
| 2631 return o; | 2631 return o; |
| 2632 } | 2632 } |
| 2633 | 2633 |
| 2634 checkUnnamed1606(core.List<api.Metric> o) { | 2634 checkUnnamed1912(core.List<api.Metric> o) { |
| 2635 unittest.expect(o, unittest.hasLength(2)); | 2635 unittest.expect(o, unittest.hasLength(2)); |
| 2636 checkMetric(o[0]); | 2636 checkMetric(o[0]); |
| 2637 checkMetric(o[1]); | 2637 checkMetric(o[1]); |
| 2638 } | 2638 } |
| 2639 | 2639 |
| 2640 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; | 2640 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; |
| 2641 buildCrossDimensionReachReportCompatibleFields() { | 2641 buildCrossDimensionReachReportCompatibleFields() { |
| 2642 var o = new api.CrossDimensionReachReportCompatibleFields(); | 2642 var o = new api.CrossDimensionReachReportCompatibleFields(); |
| 2643 buildCounterCrossDimensionReachReportCompatibleFields++; | 2643 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2644 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2644 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2645 o.breakdown = buildUnnamed1603(); | 2645 o.breakdown = buildUnnamed1909(); |
| 2646 o.dimensionFilters = buildUnnamed1604(); | 2646 o.dimensionFilters = buildUnnamed1910(); |
| 2647 o.kind = "foo"; | 2647 o.kind = "foo"; |
| 2648 o.metrics = buildUnnamed1605(); | 2648 o.metrics = buildUnnamed1911(); |
| 2649 o.overlapMetrics = buildUnnamed1606(); | 2649 o.overlapMetrics = buildUnnamed1912(); |
| 2650 } | 2650 } |
| 2651 buildCounterCrossDimensionReachReportCompatibleFields--; | 2651 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2652 return o; | 2652 return o; |
| 2653 } | 2653 } |
| 2654 | 2654 |
| 2655 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { | 2655 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { |
| 2656 buildCounterCrossDimensionReachReportCompatibleFields++; | 2656 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2657 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2657 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2658 checkUnnamed1603(o.breakdown); | 2658 checkUnnamed1909(o.breakdown); |
| 2659 checkUnnamed1604(o.dimensionFilters); | 2659 checkUnnamed1910(o.dimensionFilters); |
| 2660 unittest.expect(o.kind, unittest.equals('foo')); | 2660 unittest.expect(o.kind, unittest.equals('foo')); |
| 2661 checkUnnamed1605(o.metrics); | 2661 checkUnnamed1911(o.metrics); |
| 2662 checkUnnamed1606(o.overlapMetrics); | 2662 checkUnnamed1912(o.overlapMetrics); |
| 2663 } | 2663 } |
| 2664 buildCounterCrossDimensionReachReportCompatibleFields--; | 2664 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2665 } | 2665 } |
| 2666 | 2666 |
| 2667 buildUnnamed1607() { | 2667 buildUnnamed1913() { |
| 2668 var o = new core.List<api.DimensionValue>(); | 2668 var o = new core.List<api.DimensionValue>(); |
| 2669 o.add(buildDimensionValue()); | 2669 o.add(buildDimensionValue()); |
| 2670 o.add(buildDimensionValue()); | 2670 o.add(buildDimensionValue()); |
| 2671 return o; | 2671 return o; |
| 2672 } | 2672 } |
| 2673 | 2673 |
| 2674 checkUnnamed1607(core.List<api.DimensionValue> o) { | 2674 checkUnnamed1913(core.List<api.DimensionValue> o) { |
| 2675 unittest.expect(o, unittest.hasLength(2)); | 2675 unittest.expect(o, unittest.hasLength(2)); |
| 2676 checkDimensionValue(o[0]); | 2676 checkDimensionValue(o[0]); |
| 2677 checkDimensionValue(o[1]); | 2677 checkDimensionValue(o[1]); |
| 2678 } | 2678 } |
| 2679 | 2679 |
| 2680 core.int buildCounterCustomRichMediaEvents = 0; | 2680 core.int buildCounterCustomRichMediaEvents = 0; |
| 2681 buildCustomRichMediaEvents() { | 2681 buildCustomRichMediaEvents() { |
| 2682 var o = new api.CustomRichMediaEvents(); | 2682 var o = new api.CustomRichMediaEvents(); |
| 2683 buildCounterCustomRichMediaEvents++; | 2683 buildCounterCustomRichMediaEvents++; |
| 2684 if (buildCounterCustomRichMediaEvents < 3) { | 2684 if (buildCounterCustomRichMediaEvents < 3) { |
| 2685 o.filteredEventIds = buildUnnamed1607(); | 2685 o.filteredEventIds = buildUnnamed1913(); |
| 2686 o.kind = "foo"; | 2686 o.kind = "foo"; |
| 2687 } | 2687 } |
| 2688 buildCounterCustomRichMediaEvents--; | 2688 buildCounterCustomRichMediaEvents--; |
| 2689 return o; | 2689 return o; |
| 2690 } | 2690 } |
| 2691 | 2691 |
| 2692 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { | 2692 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { |
| 2693 buildCounterCustomRichMediaEvents++; | 2693 buildCounterCustomRichMediaEvents++; |
| 2694 if (buildCounterCustomRichMediaEvents < 3) { | 2694 if (buildCounterCustomRichMediaEvents < 3) { |
| 2695 checkUnnamed1607(o.filteredEventIds); | 2695 checkUnnamed1913(o.filteredEventIds); |
| 2696 unittest.expect(o.kind, unittest.equals('foo')); | 2696 unittest.expect(o.kind, unittest.equals('foo')); |
| 2697 } | 2697 } |
| 2698 buildCounterCustomRichMediaEvents--; | 2698 buildCounterCustomRichMediaEvents--; |
| 2699 } | 2699 } |
| 2700 | 2700 |
| 2701 core.int buildCounterDateRange = 0; | 2701 core.int buildCounterDateRange = 0; |
| 2702 buildDateRange() { | 2702 buildDateRange() { |
| 2703 var o = new api.DateRange(); | 2703 var o = new api.DateRange(); |
| 2704 buildCounterDateRange++; | 2704 buildCounterDateRange++; |
| 2705 if (buildCounterDateRange < 3) { | 2705 if (buildCounterDateRange < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 2716 buildCounterDateRange++; | 2716 buildCounterDateRange++; |
| 2717 if (buildCounterDateRange < 3) { | 2717 if (buildCounterDateRange < 3) { |
| 2718 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2718 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2719 unittest.expect(o.kind, unittest.equals('foo')); | 2719 unittest.expect(o.kind, unittest.equals('foo')); |
| 2720 unittest.expect(o.relativeDateRange, unittest.equals('foo')); | 2720 unittest.expect(o.relativeDateRange, unittest.equals('foo')); |
| 2721 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2721 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2722 } | 2722 } |
| 2723 buildCounterDateRange--; | 2723 buildCounterDateRange--; |
| 2724 } | 2724 } |
| 2725 | 2725 |
| 2726 buildUnnamed1608() { | 2726 buildUnnamed1914() { |
| 2727 var o = new core.List<core.String>(); | 2727 var o = new core.List<core.String>(); |
| 2728 o.add("foo"); | 2728 o.add("foo"); |
| 2729 o.add("foo"); | 2729 o.add("foo"); |
| 2730 return o; | 2730 return o; |
| 2731 } | 2731 } |
| 2732 | 2732 |
| 2733 checkUnnamed1608(core.List<core.String> o) { | 2733 checkUnnamed1914(core.List<core.String> o) { |
| 2734 unittest.expect(o, unittest.hasLength(2)); | 2734 unittest.expect(o, unittest.hasLength(2)); |
| 2735 unittest.expect(o[0], unittest.equals('foo')); | 2735 unittest.expect(o[0], unittest.equals('foo')); |
| 2736 unittest.expect(o[1], unittest.equals('foo')); | 2736 unittest.expect(o[1], unittest.equals('foo')); |
| 2737 } | 2737 } |
| 2738 | 2738 |
| 2739 buildUnnamed1609() { | 2739 buildUnnamed1915() { |
| 2740 var o = new core.List<core.int>(); | 2740 var o = new core.List<core.int>(); |
| 2741 o.add(42); | 2741 o.add(42); |
| 2742 o.add(42); | 2742 o.add(42); |
| 2743 return o; | 2743 return o; |
| 2744 } | 2744 } |
| 2745 | 2745 |
| 2746 checkUnnamed1609(core.List<core.int> o) { | 2746 checkUnnamed1915(core.List<core.int> o) { |
| 2747 unittest.expect(o, unittest.hasLength(2)); | 2747 unittest.expect(o, unittest.hasLength(2)); |
| 2748 unittest.expect(o[0], unittest.equals(42)); | 2748 unittest.expect(o[0], unittest.equals(42)); |
| 2749 unittest.expect(o[1], unittest.equals(42)); | 2749 unittest.expect(o[1], unittest.equals(42)); |
| 2750 } | 2750 } |
| 2751 | 2751 |
| 2752 core.int buildCounterDayPartTargeting = 0; | 2752 core.int buildCounterDayPartTargeting = 0; |
| 2753 buildDayPartTargeting() { | 2753 buildDayPartTargeting() { |
| 2754 var o = new api.DayPartTargeting(); | 2754 var o = new api.DayPartTargeting(); |
| 2755 buildCounterDayPartTargeting++; | 2755 buildCounterDayPartTargeting++; |
| 2756 if (buildCounterDayPartTargeting < 3) { | 2756 if (buildCounterDayPartTargeting < 3) { |
| 2757 o.daysOfWeek = buildUnnamed1608(); | 2757 o.daysOfWeek = buildUnnamed1914(); |
| 2758 o.hoursOfDay = buildUnnamed1609(); | 2758 o.hoursOfDay = buildUnnamed1915(); |
| 2759 o.userLocalTime = true; | 2759 o.userLocalTime = true; |
| 2760 } | 2760 } |
| 2761 buildCounterDayPartTargeting--; | 2761 buildCounterDayPartTargeting--; |
| 2762 return o; | 2762 return o; |
| 2763 } | 2763 } |
| 2764 | 2764 |
| 2765 checkDayPartTargeting(api.DayPartTargeting o) { | 2765 checkDayPartTargeting(api.DayPartTargeting o) { |
| 2766 buildCounterDayPartTargeting++; | 2766 buildCounterDayPartTargeting++; |
| 2767 if (buildCounterDayPartTargeting < 3) { | 2767 if (buildCounterDayPartTargeting < 3) { |
| 2768 checkUnnamed1608(o.daysOfWeek); | 2768 checkUnnamed1914(o.daysOfWeek); |
| 2769 checkUnnamed1609(o.hoursOfDay); | 2769 checkUnnamed1915(o.hoursOfDay); |
| 2770 unittest.expect(o.userLocalTime, unittest.isTrue); | 2770 unittest.expect(o.userLocalTime, unittest.isTrue); |
| 2771 } | 2771 } |
| 2772 buildCounterDayPartTargeting--; | 2772 buildCounterDayPartTargeting--; |
| 2773 } | 2773 } |
| 2774 | 2774 |
| 2775 core.int buildCounterDefaultClickThroughEventTagProperties = 0; | 2775 core.int buildCounterDefaultClickThroughEventTagProperties = 0; |
| 2776 buildDefaultClickThroughEventTagProperties() { | 2776 buildDefaultClickThroughEventTagProperties() { |
| 2777 var o = new api.DefaultClickThroughEventTagProperties(); | 2777 var o = new api.DefaultClickThroughEventTagProperties(); |
| 2778 buildCounterDefaultClickThroughEventTagProperties++; | 2778 buildCounterDefaultClickThroughEventTagProperties++; |
| 2779 if (buildCounterDefaultClickThroughEventTagProperties < 3) { | 2779 if (buildCounterDefaultClickThroughEventTagProperties < 3) { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2911 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2911 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 2912 unittest.expect(o.etag, unittest.equals('foo')); | 2912 unittest.expect(o.etag, unittest.equals('foo')); |
| 2913 unittest.expect(o.id, unittest.equals('foo')); | 2913 unittest.expect(o.id, unittest.equals('foo')); |
| 2914 unittest.expect(o.kind, unittest.equals('foo')); | 2914 unittest.expect(o.kind, unittest.equals('foo')); |
| 2915 unittest.expect(o.matchType, unittest.equals('foo')); | 2915 unittest.expect(o.matchType, unittest.equals('foo')); |
| 2916 unittest.expect(o.value, unittest.equals('foo')); | 2916 unittest.expect(o.value, unittest.equals('foo')); |
| 2917 } | 2917 } |
| 2918 buildCounterDimensionValue--; | 2918 buildCounterDimensionValue--; |
| 2919 } | 2919 } |
| 2920 | 2920 |
| 2921 buildUnnamed1610() { | 2921 buildUnnamed1916() { |
| 2922 var o = new core.List<api.DimensionValue>(); | 2922 var o = new core.List<api.DimensionValue>(); |
| 2923 o.add(buildDimensionValue()); | 2923 o.add(buildDimensionValue()); |
| 2924 o.add(buildDimensionValue()); | 2924 o.add(buildDimensionValue()); |
| 2925 return o; | 2925 return o; |
| 2926 } | 2926 } |
| 2927 | 2927 |
| 2928 checkUnnamed1610(core.List<api.DimensionValue> o) { | 2928 checkUnnamed1916(core.List<api.DimensionValue> o) { |
| 2929 unittest.expect(o, unittest.hasLength(2)); | 2929 unittest.expect(o, unittest.hasLength(2)); |
| 2930 checkDimensionValue(o[0]); | 2930 checkDimensionValue(o[0]); |
| 2931 checkDimensionValue(o[1]); | 2931 checkDimensionValue(o[1]); |
| 2932 } | 2932 } |
| 2933 | 2933 |
| 2934 core.int buildCounterDimensionValueList = 0; | 2934 core.int buildCounterDimensionValueList = 0; |
| 2935 buildDimensionValueList() { | 2935 buildDimensionValueList() { |
| 2936 var o = new api.DimensionValueList(); | 2936 var o = new api.DimensionValueList(); |
| 2937 buildCounterDimensionValueList++; | 2937 buildCounterDimensionValueList++; |
| 2938 if (buildCounterDimensionValueList < 3) { | 2938 if (buildCounterDimensionValueList < 3) { |
| 2939 o.etag = "foo"; | 2939 o.etag = "foo"; |
| 2940 o.items = buildUnnamed1610(); | 2940 o.items = buildUnnamed1916(); |
| 2941 o.kind = "foo"; | 2941 o.kind = "foo"; |
| 2942 o.nextPageToken = "foo"; | 2942 o.nextPageToken = "foo"; |
| 2943 } | 2943 } |
| 2944 buildCounterDimensionValueList--; | 2944 buildCounterDimensionValueList--; |
| 2945 return o; | 2945 return o; |
| 2946 } | 2946 } |
| 2947 | 2947 |
| 2948 checkDimensionValueList(api.DimensionValueList o) { | 2948 checkDimensionValueList(api.DimensionValueList o) { |
| 2949 buildCounterDimensionValueList++; | 2949 buildCounterDimensionValueList++; |
| 2950 if (buildCounterDimensionValueList < 3) { | 2950 if (buildCounterDimensionValueList < 3) { |
| 2951 unittest.expect(o.etag, unittest.equals('foo')); | 2951 unittest.expect(o.etag, unittest.equals('foo')); |
| 2952 checkUnnamed1610(o.items); | 2952 checkUnnamed1916(o.items); |
| 2953 unittest.expect(o.kind, unittest.equals('foo')); | 2953 unittest.expect(o.kind, unittest.equals('foo')); |
| 2954 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2954 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2955 } | 2955 } |
| 2956 buildCounterDimensionValueList--; | 2956 buildCounterDimensionValueList--; |
| 2957 } | 2957 } |
| 2958 | 2958 |
| 2959 buildUnnamed1611() { | 2959 buildUnnamed1917() { |
| 2960 var o = new core.List<api.DimensionFilter>(); | 2960 var o = new core.List<api.DimensionFilter>(); |
| 2961 o.add(buildDimensionFilter()); | 2961 o.add(buildDimensionFilter()); |
| 2962 o.add(buildDimensionFilter()); | 2962 o.add(buildDimensionFilter()); |
| 2963 return o; | 2963 return o; |
| 2964 } | 2964 } |
| 2965 | 2965 |
| 2966 checkUnnamed1611(core.List<api.DimensionFilter> o) { | 2966 checkUnnamed1917(core.List<api.DimensionFilter> o) { |
| 2967 unittest.expect(o, unittest.hasLength(2)); | 2967 unittest.expect(o, unittest.hasLength(2)); |
| 2968 checkDimensionFilter(o[0]); | 2968 checkDimensionFilter(o[0]); |
| 2969 checkDimensionFilter(o[1]); | 2969 checkDimensionFilter(o[1]); |
| 2970 } | 2970 } |
| 2971 | 2971 |
| 2972 core.int buildCounterDimensionValueRequest = 0; | 2972 core.int buildCounterDimensionValueRequest = 0; |
| 2973 buildDimensionValueRequest() { | 2973 buildDimensionValueRequest() { |
| 2974 var o = new api.DimensionValueRequest(); | 2974 var o = new api.DimensionValueRequest(); |
| 2975 buildCounterDimensionValueRequest++; | 2975 buildCounterDimensionValueRequest++; |
| 2976 if (buildCounterDimensionValueRequest < 3) { | 2976 if (buildCounterDimensionValueRequest < 3) { |
| 2977 o.dimensionName = "foo"; | 2977 o.dimensionName = "foo"; |
| 2978 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2978 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 2979 o.filters = buildUnnamed1611(); | 2979 o.filters = buildUnnamed1917(); |
| 2980 o.kind = "foo"; | 2980 o.kind = "foo"; |
| 2981 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2981 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 2982 } | 2982 } |
| 2983 buildCounterDimensionValueRequest--; | 2983 buildCounterDimensionValueRequest--; |
| 2984 return o; | 2984 return o; |
| 2985 } | 2985 } |
| 2986 | 2986 |
| 2987 checkDimensionValueRequest(api.DimensionValueRequest o) { | 2987 checkDimensionValueRequest(api.DimensionValueRequest o) { |
| 2988 buildCounterDimensionValueRequest++; | 2988 buildCounterDimensionValueRequest++; |
| 2989 if (buildCounterDimensionValueRequest < 3) { | 2989 if (buildCounterDimensionValueRequest < 3) { |
| 2990 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2990 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 2991 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2991 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2992 checkUnnamed1611(o.filters); | 2992 checkUnnamed1917(o.filters); |
| 2993 unittest.expect(o.kind, unittest.equals('foo')); | 2993 unittest.expect(o.kind, unittest.equals('foo')); |
| 2994 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2994 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2995 } | 2995 } |
| 2996 buildCounterDimensionValueRequest--; | 2996 buildCounterDimensionValueRequest--; |
| 2997 } | 2997 } |
| 2998 | 2998 |
| 2999 buildUnnamed1612() { | 2999 buildUnnamed1918() { |
| 3000 var o = new core.List<api.DirectorySiteContactAssignment>(); | 3000 var o = new core.List<api.DirectorySiteContactAssignment>(); |
| 3001 o.add(buildDirectorySiteContactAssignment()); | 3001 o.add(buildDirectorySiteContactAssignment()); |
| 3002 o.add(buildDirectorySiteContactAssignment()); | 3002 o.add(buildDirectorySiteContactAssignment()); |
| 3003 return o; | 3003 return o; |
| 3004 } | 3004 } |
| 3005 | 3005 |
| 3006 checkUnnamed1612(core.List<api.DirectorySiteContactAssignment> o) { | 3006 checkUnnamed1918(core.List<api.DirectorySiteContactAssignment> o) { |
| 3007 unittest.expect(o, unittest.hasLength(2)); | 3007 unittest.expect(o, unittest.hasLength(2)); |
| 3008 checkDirectorySiteContactAssignment(o[0]); | 3008 checkDirectorySiteContactAssignment(o[0]); |
| 3009 checkDirectorySiteContactAssignment(o[1]); | 3009 checkDirectorySiteContactAssignment(o[1]); |
| 3010 } | 3010 } |
| 3011 | 3011 |
| 3012 buildUnnamed1613() { | 3012 buildUnnamed1919() { |
| 3013 var o = new core.List<core.String>(); | 3013 var o = new core.List<core.String>(); |
| 3014 o.add("foo"); | 3014 o.add("foo"); |
| 3015 o.add("foo"); | 3015 o.add("foo"); |
| 3016 return o; | 3016 return o; |
| 3017 } | 3017 } |
| 3018 | 3018 |
| 3019 checkUnnamed1613(core.List<core.String> o) { | 3019 checkUnnamed1919(core.List<core.String> o) { |
| 3020 unittest.expect(o, unittest.hasLength(2)); | 3020 unittest.expect(o, unittest.hasLength(2)); |
| 3021 unittest.expect(o[0], unittest.equals('foo')); | 3021 unittest.expect(o[0], unittest.equals('foo')); |
| 3022 unittest.expect(o[1], unittest.equals('foo')); | 3022 unittest.expect(o[1], unittest.equals('foo')); |
| 3023 } | 3023 } |
| 3024 | 3024 |
| 3025 buildUnnamed1614() { | 3025 buildUnnamed1920() { |
| 3026 var o = new core.List<core.String>(); | 3026 var o = new core.List<core.String>(); |
| 3027 o.add("foo"); | 3027 o.add("foo"); |
| 3028 o.add("foo"); | 3028 o.add("foo"); |
| 3029 return o; | 3029 return o; |
| 3030 } | 3030 } |
| 3031 | 3031 |
| 3032 checkUnnamed1614(core.List<core.String> o) { | 3032 checkUnnamed1920(core.List<core.String> o) { |
| 3033 unittest.expect(o, unittest.hasLength(2)); | 3033 unittest.expect(o, unittest.hasLength(2)); |
| 3034 unittest.expect(o[0], unittest.equals('foo')); | 3034 unittest.expect(o[0], unittest.equals('foo')); |
| 3035 unittest.expect(o[1], unittest.equals('foo')); | 3035 unittest.expect(o[1], unittest.equals('foo')); |
| 3036 } | 3036 } |
| 3037 | 3037 |
| 3038 core.int buildCounterDirectorySite = 0; | 3038 core.int buildCounterDirectorySite = 0; |
| 3039 buildDirectorySite() { | 3039 buildDirectorySite() { |
| 3040 var o = new api.DirectorySite(); | 3040 var o = new api.DirectorySite(); |
| 3041 buildCounterDirectorySite++; | 3041 buildCounterDirectorySite++; |
| 3042 if (buildCounterDirectorySite < 3) { | 3042 if (buildCounterDirectorySite < 3) { |
| 3043 o.active = true; | 3043 o.active = true; |
| 3044 o.contactAssignments = buildUnnamed1612(); | 3044 o.contactAssignments = buildUnnamed1918(); |
| 3045 o.countryId = "foo"; | 3045 o.countryId = "foo"; |
| 3046 o.currencyId = "foo"; | 3046 o.currencyId = "foo"; |
| 3047 o.description = "foo"; | 3047 o.description = "foo"; |
| 3048 o.id = "foo"; | 3048 o.id = "foo"; |
| 3049 o.idDimensionValue = buildDimensionValue(); | 3049 o.idDimensionValue = buildDimensionValue(); |
| 3050 o.inpageTagFormats = buildUnnamed1613(); | 3050 o.inpageTagFormats = buildUnnamed1919(); |
| 3051 o.interstitialTagFormats = buildUnnamed1614(); | 3051 o.interstitialTagFormats = buildUnnamed1920(); |
| 3052 o.kind = "foo"; | 3052 o.kind = "foo"; |
| 3053 o.name = "foo"; | 3053 o.name = "foo"; |
| 3054 o.parentId = "foo"; | 3054 o.parentId = "foo"; |
| 3055 o.settings = buildDirectorySiteSettings(); | 3055 o.settings = buildDirectorySiteSettings(); |
| 3056 o.url = "foo"; | 3056 o.url = "foo"; |
| 3057 } | 3057 } |
| 3058 buildCounterDirectorySite--; | 3058 buildCounterDirectorySite--; |
| 3059 return o; | 3059 return o; |
| 3060 } | 3060 } |
| 3061 | 3061 |
| 3062 checkDirectorySite(api.DirectorySite o) { | 3062 checkDirectorySite(api.DirectorySite o) { |
| 3063 buildCounterDirectorySite++; | 3063 buildCounterDirectorySite++; |
| 3064 if (buildCounterDirectorySite < 3) { | 3064 if (buildCounterDirectorySite < 3) { |
| 3065 unittest.expect(o.active, unittest.isTrue); | 3065 unittest.expect(o.active, unittest.isTrue); |
| 3066 checkUnnamed1612(o.contactAssignments); | 3066 checkUnnamed1918(o.contactAssignments); |
| 3067 unittest.expect(o.countryId, unittest.equals('foo')); | 3067 unittest.expect(o.countryId, unittest.equals('foo')); |
| 3068 unittest.expect(o.currencyId, unittest.equals('foo')); | 3068 unittest.expect(o.currencyId, unittest.equals('foo')); |
| 3069 unittest.expect(o.description, unittest.equals('foo')); | 3069 unittest.expect(o.description, unittest.equals('foo')); |
| 3070 unittest.expect(o.id, unittest.equals('foo')); | 3070 unittest.expect(o.id, unittest.equals('foo')); |
| 3071 checkDimensionValue(o.idDimensionValue); | 3071 checkDimensionValue(o.idDimensionValue); |
| 3072 checkUnnamed1613(o.inpageTagFormats); | 3072 checkUnnamed1919(o.inpageTagFormats); |
| 3073 checkUnnamed1614(o.interstitialTagFormats); | 3073 checkUnnamed1920(o.interstitialTagFormats); |
| 3074 unittest.expect(o.kind, unittest.equals('foo')); | 3074 unittest.expect(o.kind, unittest.equals('foo')); |
| 3075 unittest.expect(o.name, unittest.equals('foo')); | 3075 unittest.expect(o.name, unittest.equals('foo')); |
| 3076 unittest.expect(o.parentId, unittest.equals('foo')); | 3076 unittest.expect(o.parentId, unittest.equals('foo')); |
| 3077 checkDirectorySiteSettings(o.settings); | 3077 checkDirectorySiteSettings(o.settings); |
| 3078 unittest.expect(o.url, unittest.equals('foo')); | 3078 unittest.expect(o.url, unittest.equals('foo')); |
| 3079 } | 3079 } |
| 3080 buildCounterDirectorySite--; | 3080 buildCounterDirectorySite--; |
| 3081 } | 3081 } |
| 3082 | 3082 |
| 3083 core.int buildCounterDirectorySiteContact = 0; | 3083 core.int buildCounterDirectorySiteContact = 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3131 | 3131 |
| 3132 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { | 3132 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { |
| 3133 buildCounterDirectorySiteContactAssignment++; | 3133 buildCounterDirectorySiteContactAssignment++; |
| 3134 if (buildCounterDirectorySiteContactAssignment < 3) { | 3134 if (buildCounterDirectorySiteContactAssignment < 3) { |
| 3135 unittest.expect(o.contactId, unittest.equals('foo')); | 3135 unittest.expect(o.contactId, unittest.equals('foo')); |
| 3136 unittest.expect(o.visibility, unittest.equals('foo')); | 3136 unittest.expect(o.visibility, unittest.equals('foo')); |
| 3137 } | 3137 } |
| 3138 buildCounterDirectorySiteContactAssignment--; | 3138 buildCounterDirectorySiteContactAssignment--; |
| 3139 } | 3139 } |
| 3140 | 3140 |
| 3141 buildUnnamed1615() { | 3141 buildUnnamed1921() { |
| 3142 var o = new core.List<api.DirectorySiteContact>(); | 3142 var o = new core.List<api.DirectorySiteContact>(); |
| 3143 o.add(buildDirectorySiteContact()); | 3143 o.add(buildDirectorySiteContact()); |
| 3144 o.add(buildDirectorySiteContact()); | 3144 o.add(buildDirectorySiteContact()); |
| 3145 return o; | 3145 return o; |
| 3146 } | 3146 } |
| 3147 | 3147 |
| 3148 checkUnnamed1615(core.List<api.DirectorySiteContact> o) { | 3148 checkUnnamed1921(core.List<api.DirectorySiteContact> o) { |
| 3149 unittest.expect(o, unittest.hasLength(2)); | 3149 unittest.expect(o, unittest.hasLength(2)); |
| 3150 checkDirectorySiteContact(o[0]); | 3150 checkDirectorySiteContact(o[0]); |
| 3151 checkDirectorySiteContact(o[1]); | 3151 checkDirectorySiteContact(o[1]); |
| 3152 } | 3152 } |
| 3153 | 3153 |
| 3154 core.int buildCounterDirectorySiteContactsListResponse = 0; | 3154 core.int buildCounterDirectorySiteContactsListResponse = 0; |
| 3155 buildDirectorySiteContactsListResponse() { | 3155 buildDirectorySiteContactsListResponse() { |
| 3156 var o = new api.DirectorySiteContactsListResponse(); | 3156 var o = new api.DirectorySiteContactsListResponse(); |
| 3157 buildCounterDirectorySiteContactsListResponse++; | 3157 buildCounterDirectorySiteContactsListResponse++; |
| 3158 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3158 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3159 o.directorySiteContacts = buildUnnamed1615(); | 3159 o.directorySiteContacts = buildUnnamed1921(); |
| 3160 o.kind = "foo"; | 3160 o.kind = "foo"; |
| 3161 o.nextPageToken = "foo"; | 3161 o.nextPageToken = "foo"; |
| 3162 } | 3162 } |
| 3163 buildCounterDirectorySiteContactsListResponse--; | 3163 buildCounterDirectorySiteContactsListResponse--; |
| 3164 return o; | 3164 return o; |
| 3165 } | 3165 } |
| 3166 | 3166 |
| 3167 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ | 3167 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ |
| 3168 buildCounterDirectorySiteContactsListResponse++; | 3168 buildCounterDirectorySiteContactsListResponse++; |
| 3169 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3169 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3170 checkUnnamed1615(o.directorySiteContacts); | 3170 checkUnnamed1921(o.directorySiteContacts); |
| 3171 unittest.expect(o.kind, unittest.equals('foo')); | 3171 unittest.expect(o.kind, unittest.equals('foo')); |
| 3172 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3172 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3173 } | 3173 } |
| 3174 buildCounterDirectorySiteContactsListResponse--; | 3174 buildCounterDirectorySiteContactsListResponse--; |
| 3175 } | 3175 } |
| 3176 | 3176 |
| 3177 core.int buildCounterDirectorySiteSettings = 0; | 3177 core.int buildCounterDirectorySiteSettings = 0; |
| 3178 buildDirectorySiteSettings() { | 3178 buildDirectorySiteSettings() { |
| 3179 var o = new api.DirectorySiteSettings(); | 3179 var o = new api.DirectorySiteSettings(); |
| 3180 buildCounterDirectorySiteSettings++; | 3180 buildCounterDirectorySiteSettings++; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 3198 checkDfpSettings(o.dfpSettings); | 3198 checkDfpSettings(o.dfpSettings); |
| 3199 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); | 3199 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); |
| 3200 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); | 3200 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); |
| 3201 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); | 3201 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); |
| 3202 unittest.expect(o.verificationTagOptOut, unittest.isTrue); | 3202 unittest.expect(o.verificationTagOptOut, unittest.isTrue); |
| 3203 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 3203 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 3204 } | 3204 } |
| 3205 buildCounterDirectorySiteSettings--; | 3205 buildCounterDirectorySiteSettings--; |
| 3206 } | 3206 } |
| 3207 | 3207 |
| 3208 buildUnnamed1616() { | 3208 buildUnnamed1922() { |
| 3209 var o = new core.List<api.DirectorySite>(); | 3209 var o = new core.List<api.DirectorySite>(); |
| 3210 o.add(buildDirectorySite()); | 3210 o.add(buildDirectorySite()); |
| 3211 o.add(buildDirectorySite()); | 3211 o.add(buildDirectorySite()); |
| 3212 return o; | 3212 return o; |
| 3213 } | 3213 } |
| 3214 | 3214 |
| 3215 checkUnnamed1616(core.List<api.DirectorySite> o) { | 3215 checkUnnamed1922(core.List<api.DirectorySite> o) { |
| 3216 unittest.expect(o, unittest.hasLength(2)); | 3216 unittest.expect(o, unittest.hasLength(2)); |
| 3217 checkDirectorySite(o[0]); | 3217 checkDirectorySite(o[0]); |
| 3218 checkDirectorySite(o[1]); | 3218 checkDirectorySite(o[1]); |
| 3219 } | 3219 } |
| 3220 | 3220 |
| 3221 core.int buildCounterDirectorySitesListResponse = 0; | 3221 core.int buildCounterDirectorySitesListResponse = 0; |
| 3222 buildDirectorySitesListResponse() { | 3222 buildDirectorySitesListResponse() { |
| 3223 var o = new api.DirectorySitesListResponse(); | 3223 var o = new api.DirectorySitesListResponse(); |
| 3224 buildCounterDirectorySitesListResponse++; | 3224 buildCounterDirectorySitesListResponse++; |
| 3225 if (buildCounterDirectorySitesListResponse < 3) { | 3225 if (buildCounterDirectorySitesListResponse < 3) { |
| 3226 o.directorySites = buildUnnamed1616(); | 3226 o.directorySites = buildUnnamed1922(); |
| 3227 o.kind = "foo"; | 3227 o.kind = "foo"; |
| 3228 o.nextPageToken = "foo"; | 3228 o.nextPageToken = "foo"; |
| 3229 } | 3229 } |
| 3230 buildCounterDirectorySitesListResponse--; | 3230 buildCounterDirectorySitesListResponse--; |
| 3231 return o; | 3231 return o; |
| 3232 } | 3232 } |
| 3233 | 3233 |
| 3234 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { | 3234 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { |
| 3235 buildCounterDirectorySitesListResponse++; | 3235 buildCounterDirectorySitesListResponse++; |
| 3236 if (buildCounterDirectorySitesListResponse < 3) { | 3236 if (buildCounterDirectorySitesListResponse < 3) { |
| 3237 checkUnnamed1616(o.directorySites); | 3237 checkUnnamed1922(o.directorySites); |
| 3238 unittest.expect(o.kind, unittest.equals('foo')); | 3238 unittest.expect(o.kind, unittest.equals('foo')); |
| 3239 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3239 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3240 } | 3240 } |
| 3241 buildCounterDirectorySitesListResponse--; | 3241 buildCounterDirectorySitesListResponse--; |
| 3242 } | 3242 } |
| 3243 | 3243 |
| 3244 buildUnnamed1617() { | 3244 buildUnnamed1923() { |
| 3245 var o = new core.List<core.String>(); | 3245 var o = new core.List<core.String>(); |
| 3246 o.add("foo"); | 3246 o.add("foo"); |
| 3247 o.add("foo"); | 3247 o.add("foo"); |
| 3248 return o; | 3248 return o; |
| 3249 } | 3249 } |
| 3250 | 3250 |
| 3251 checkUnnamed1617(core.List<core.String> o) { | 3251 checkUnnamed1923(core.List<core.String> o) { |
| 3252 unittest.expect(o, unittest.hasLength(2)); | 3252 unittest.expect(o, unittest.hasLength(2)); |
| 3253 unittest.expect(o[0], unittest.equals('foo')); | 3253 unittest.expect(o[0], unittest.equals('foo')); |
| 3254 unittest.expect(o[1], unittest.equals('foo')); | 3254 unittest.expect(o[1], unittest.equals('foo')); |
| 3255 } | 3255 } |
| 3256 | 3256 |
| 3257 core.int buildCounterEventTag = 0; | 3257 core.int buildCounterEventTag = 0; |
| 3258 buildEventTag() { | 3258 buildEventTag() { |
| 3259 var o = new api.EventTag(); | 3259 var o = new api.EventTag(); |
| 3260 buildCounterEventTag++; | 3260 buildCounterEventTag++; |
| 3261 if (buildCounterEventTag < 3) { | 3261 if (buildCounterEventTag < 3) { |
| 3262 o.accountId = "foo"; | 3262 o.accountId = "foo"; |
| 3263 o.advertiserId = "foo"; | 3263 o.advertiserId = "foo"; |
| 3264 o.advertiserIdDimensionValue = buildDimensionValue(); | 3264 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3265 o.campaignId = "foo"; | 3265 o.campaignId = "foo"; |
| 3266 o.campaignIdDimensionValue = buildDimensionValue(); | 3266 o.campaignIdDimensionValue = buildDimensionValue(); |
| 3267 o.enabledByDefault = true; | 3267 o.enabledByDefault = true; |
| 3268 o.excludeFromAdxRequests = true; | 3268 o.excludeFromAdxRequests = true; |
| 3269 o.id = "foo"; | 3269 o.id = "foo"; |
| 3270 o.kind = "foo"; | 3270 o.kind = "foo"; |
| 3271 o.name = "foo"; | 3271 o.name = "foo"; |
| 3272 o.siteFilterType = "foo"; | 3272 o.siteFilterType = "foo"; |
| 3273 o.siteIds = buildUnnamed1617(); | 3273 o.siteIds = buildUnnamed1923(); |
| 3274 o.sslCompliant = true; | 3274 o.sslCompliant = true; |
| 3275 o.status = "foo"; | 3275 o.status = "foo"; |
| 3276 o.subaccountId = "foo"; | 3276 o.subaccountId = "foo"; |
| 3277 o.type = "foo"; | 3277 o.type = "foo"; |
| 3278 o.url = "foo"; | 3278 o.url = "foo"; |
| 3279 o.urlEscapeLevels = 42; | 3279 o.urlEscapeLevels = 42; |
| 3280 } | 3280 } |
| 3281 buildCounterEventTag--; | 3281 buildCounterEventTag--; |
| 3282 return o; | 3282 return o; |
| 3283 } | 3283 } |
| 3284 | 3284 |
| 3285 checkEventTag(api.EventTag o) { | 3285 checkEventTag(api.EventTag o) { |
| 3286 buildCounterEventTag++; | 3286 buildCounterEventTag++; |
| 3287 if (buildCounterEventTag < 3) { | 3287 if (buildCounterEventTag < 3) { |
| 3288 unittest.expect(o.accountId, unittest.equals('foo')); | 3288 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3289 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3289 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3290 checkDimensionValue(o.advertiserIdDimensionValue); | 3290 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3291 unittest.expect(o.campaignId, unittest.equals('foo')); | 3291 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 3292 checkDimensionValue(o.campaignIdDimensionValue); | 3292 checkDimensionValue(o.campaignIdDimensionValue); |
| 3293 unittest.expect(o.enabledByDefault, unittest.isTrue); | 3293 unittest.expect(o.enabledByDefault, unittest.isTrue); |
| 3294 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); | 3294 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); |
| 3295 unittest.expect(o.id, unittest.equals('foo')); | 3295 unittest.expect(o.id, unittest.equals('foo')); |
| 3296 unittest.expect(o.kind, unittest.equals('foo')); | 3296 unittest.expect(o.kind, unittest.equals('foo')); |
| 3297 unittest.expect(o.name, unittest.equals('foo')); | 3297 unittest.expect(o.name, unittest.equals('foo')); |
| 3298 unittest.expect(o.siteFilterType, unittest.equals('foo')); | 3298 unittest.expect(o.siteFilterType, unittest.equals('foo')); |
| 3299 checkUnnamed1617(o.siteIds); | 3299 checkUnnamed1923(o.siteIds); |
| 3300 unittest.expect(o.sslCompliant, unittest.isTrue); | 3300 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3301 unittest.expect(o.status, unittest.equals('foo')); | 3301 unittest.expect(o.status, unittest.equals('foo')); |
| 3302 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3302 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3303 unittest.expect(o.type, unittest.equals('foo')); | 3303 unittest.expect(o.type, unittest.equals('foo')); |
| 3304 unittest.expect(o.url, unittest.equals('foo')); | 3304 unittest.expect(o.url, unittest.equals('foo')); |
| 3305 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); | 3305 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); |
| 3306 } | 3306 } |
| 3307 buildCounterEventTag--; | 3307 buildCounterEventTag--; |
| 3308 } | 3308 } |
| 3309 | 3309 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3321 | 3321 |
| 3322 checkEventTagOverride(api.EventTagOverride o) { | 3322 checkEventTagOverride(api.EventTagOverride o) { |
| 3323 buildCounterEventTagOverride++; | 3323 buildCounterEventTagOverride++; |
| 3324 if (buildCounterEventTagOverride < 3) { | 3324 if (buildCounterEventTagOverride < 3) { |
| 3325 unittest.expect(o.enabled, unittest.isTrue); | 3325 unittest.expect(o.enabled, unittest.isTrue); |
| 3326 unittest.expect(o.id, unittest.equals('foo')); | 3326 unittest.expect(o.id, unittest.equals('foo')); |
| 3327 } | 3327 } |
| 3328 buildCounterEventTagOverride--; | 3328 buildCounterEventTagOverride--; |
| 3329 } | 3329 } |
| 3330 | 3330 |
| 3331 buildUnnamed1618() { | 3331 buildUnnamed1924() { |
| 3332 var o = new core.List<api.EventTag>(); | 3332 var o = new core.List<api.EventTag>(); |
| 3333 o.add(buildEventTag()); | 3333 o.add(buildEventTag()); |
| 3334 o.add(buildEventTag()); | 3334 o.add(buildEventTag()); |
| 3335 return o; | 3335 return o; |
| 3336 } | 3336 } |
| 3337 | 3337 |
| 3338 checkUnnamed1618(core.List<api.EventTag> o) { | 3338 checkUnnamed1924(core.List<api.EventTag> o) { |
| 3339 unittest.expect(o, unittest.hasLength(2)); | 3339 unittest.expect(o, unittest.hasLength(2)); |
| 3340 checkEventTag(o[0]); | 3340 checkEventTag(o[0]); |
| 3341 checkEventTag(o[1]); | 3341 checkEventTag(o[1]); |
| 3342 } | 3342 } |
| 3343 | 3343 |
| 3344 core.int buildCounterEventTagsListResponse = 0; | 3344 core.int buildCounterEventTagsListResponse = 0; |
| 3345 buildEventTagsListResponse() { | 3345 buildEventTagsListResponse() { |
| 3346 var o = new api.EventTagsListResponse(); | 3346 var o = new api.EventTagsListResponse(); |
| 3347 buildCounterEventTagsListResponse++; | 3347 buildCounterEventTagsListResponse++; |
| 3348 if (buildCounterEventTagsListResponse < 3) { | 3348 if (buildCounterEventTagsListResponse < 3) { |
| 3349 o.eventTags = buildUnnamed1618(); | 3349 o.eventTags = buildUnnamed1924(); |
| 3350 o.kind = "foo"; | 3350 o.kind = "foo"; |
| 3351 } | 3351 } |
| 3352 buildCounterEventTagsListResponse--; | 3352 buildCounterEventTagsListResponse--; |
| 3353 return o; | 3353 return o; |
| 3354 } | 3354 } |
| 3355 | 3355 |
| 3356 checkEventTagsListResponse(api.EventTagsListResponse o) { | 3356 checkEventTagsListResponse(api.EventTagsListResponse o) { |
| 3357 buildCounterEventTagsListResponse++; | 3357 buildCounterEventTagsListResponse++; |
| 3358 if (buildCounterEventTagsListResponse < 3) { | 3358 if (buildCounterEventTagsListResponse < 3) { |
| 3359 checkUnnamed1618(o.eventTags); | 3359 checkUnnamed1924(o.eventTags); |
| 3360 unittest.expect(o.kind, unittest.equals('foo')); | 3360 unittest.expect(o.kind, unittest.equals('foo')); |
| 3361 } | 3361 } |
| 3362 buildCounterEventTagsListResponse--; | 3362 buildCounterEventTagsListResponse--; |
| 3363 } | 3363 } |
| 3364 | 3364 |
| 3365 core.int buildCounterFileUrls = 0; | 3365 core.int buildCounterFileUrls = 0; |
| 3366 buildFileUrls() { | 3366 buildFileUrls() { |
| 3367 var o = new api.FileUrls(); | 3367 var o = new api.FileUrls(); |
| 3368 buildCounterFileUrls++; | 3368 buildCounterFileUrls++; |
| 3369 if (buildCounterFileUrls < 3) { | 3369 if (buildCounterFileUrls < 3) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3413 unittest.expect(o.id, unittest.equals('foo')); | 3413 unittest.expect(o.id, unittest.equals('foo')); |
| 3414 unittest.expect(o.kind, unittest.equals('foo')); | 3414 unittest.expect(o.kind, unittest.equals('foo')); |
| 3415 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); | 3415 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); |
| 3416 unittest.expect(o.reportId, unittest.equals('foo')); | 3416 unittest.expect(o.reportId, unittest.equals('foo')); |
| 3417 unittest.expect(o.status, unittest.equals('foo')); | 3417 unittest.expect(o.status, unittest.equals('foo')); |
| 3418 checkFileUrls(o.urls); | 3418 checkFileUrls(o.urls); |
| 3419 } | 3419 } |
| 3420 buildCounterFile--; | 3420 buildCounterFile--; |
| 3421 } | 3421 } |
| 3422 | 3422 |
| 3423 buildUnnamed1619() { | 3423 buildUnnamed1925() { |
| 3424 var o = new core.List<api.File>(); | 3424 var o = new core.List<api.File>(); |
| 3425 o.add(buildFile()); | 3425 o.add(buildFile()); |
| 3426 o.add(buildFile()); | 3426 o.add(buildFile()); |
| 3427 return o; | 3427 return o; |
| 3428 } | 3428 } |
| 3429 | 3429 |
| 3430 checkUnnamed1619(core.List<api.File> o) { | 3430 checkUnnamed1925(core.List<api.File> o) { |
| 3431 unittest.expect(o, unittest.hasLength(2)); | 3431 unittest.expect(o, unittest.hasLength(2)); |
| 3432 checkFile(o[0]); | 3432 checkFile(o[0]); |
| 3433 checkFile(o[1]); | 3433 checkFile(o[1]); |
| 3434 } | 3434 } |
| 3435 | 3435 |
| 3436 core.int buildCounterFileList = 0; | 3436 core.int buildCounterFileList = 0; |
| 3437 buildFileList() { | 3437 buildFileList() { |
| 3438 var o = new api.FileList(); | 3438 var o = new api.FileList(); |
| 3439 buildCounterFileList++; | 3439 buildCounterFileList++; |
| 3440 if (buildCounterFileList < 3) { | 3440 if (buildCounterFileList < 3) { |
| 3441 o.etag = "foo"; | 3441 o.etag = "foo"; |
| 3442 o.items = buildUnnamed1619(); | 3442 o.items = buildUnnamed1925(); |
| 3443 o.kind = "foo"; | 3443 o.kind = "foo"; |
| 3444 o.nextPageToken = "foo"; | 3444 o.nextPageToken = "foo"; |
| 3445 } | 3445 } |
| 3446 buildCounterFileList--; | 3446 buildCounterFileList--; |
| 3447 return o; | 3447 return o; |
| 3448 } | 3448 } |
| 3449 | 3449 |
| 3450 checkFileList(api.FileList o) { | 3450 checkFileList(api.FileList o) { |
| 3451 buildCounterFileList++; | 3451 buildCounterFileList++; |
| 3452 if (buildCounterFileList < 3) { | 3452 if (buildCounterFileList < 3) { |
| 3453 unittest.expect(o.etag, unittest.equals('foo')); | 3453 unittest.expect(o.etag, unittest.equals('foo')); |
| 3454 checkUnnamed1619(o.items); | 3454 checkUnnamed1925(o.items); |
| 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 buildCounterFileList--; | 3458 buildCounterFileList--; |
| 3459 } | 3459 } |
| 3460 | 3460 |
| 3461 core.int buildCounterFlight = 0; | 3461 core.int buildCounterFlight = 0; |
| 3462 buildFlight() { | 3462 buildFlight() { |
| 3463 var o = new api.Flight(); | 3463 var o = new api.Flight(); |
| 3464 buildCounterFlight++; | 3464 buildCounterFlight++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3497 | 3497 |
| 3498 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { | 3498 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { |
| 3499 buildCounterFloodlightActivitiesGenerateTagResponse++; | 3499 buildCounterFloodlightActivitiesGenerateTagResponse++; |
| 3500 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { | 3500 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { |
| 3501 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); | 3501 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); |
| 3502 unittest.expect(o.kind, unittest.equals('foo')); | 3502 unittest.expect(o.kind, unittest.equals('foo')); |
| 3503 } | 3503 } |
| 3504 buildCounterFloodlightActivitiesGenerateTagResponse--; | 3504 buildCounterFloodlightActivitiesGenerateTagResponse--; |
| 3505 } | 3505 } |
| 3506 | 3506 |
| 3507 buildUnnamed1620() { | 3507 buildUnnamed1926() { |
| 3508 var o = new core.List<api.FloodlightActivity>(); | 3508 var o = new core.List<api.FloodlightActivity>(); |
| 3509 o.add(buildFloodlightActivity()); | 3509 o.add(buildFloodlightActivity()); |
| 3510 o.add(buildFloodlightActivity()); | 3510 o.add(buildFloodlightActivity()); |
| 3511 return o; | 3511 return o; |
| 3512 } | 3512 } |
| 3513 | 3513 |
| 3514 checkUnnamed1620(core.List<api.FloodlightActivity> o) { | 3514 checkUnnamed1926(core.List<api.FloodlightActivity> o) { |
| 3515 unittest.expect(o, unittest.hasLength(2)); | 3515 unittest.expect(o, unittest.hasLength(2)); |
| 3516 checkFloodlightActivity(o[0]); | 3516 checkFloodlightActivity(o[0]); |
| 3517 checkFloodlightActivity(o[1]); | 3517 checkFloodlightActivity(o[1]); |
| 3518 } | 3518 } |
| 3519 | 3519 |
| 3520 core.int buildCounterFloodlightActivitiesListResponse = 0; | 3520 core.int buildCounterFloodlightActivitiesListResponse = 0; |
| 3521 buildFloodlightActivitiesListResponse() { | 3521 buildFloodlightActivitiesListResponse() { |
| 3522 var o = new api.FloodlightActivitiesListResponse(); | 3522 var o = new api.FloodlightActivitiesListResponse(); |
| 3523 buildCounterFloodlightActivitiesListResponse++; | 3523 buildCounterFloodlightActivitiesListResponse++; |
| 3524 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3524 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3525 o.floodlightActivities = buildUnnamed1620(); | 3525 o.floodlightActivities = buildUnnamed1926(); |
| 3526 o.kind = "foo"; | 3526 o.kind = "foo"; |
| 3527 o.nextPageToken = "foo"; | 3527 o.nextPageToken = "foo"; |
| 3528 } | 3528 } |
| 3529 buildCounterFloodlightActivitiesListResponse--; | 3529 buildCounterFloodlightActivitiesListResponse--; |
| 3530 return o; | 3530 return o; |
| 3531 } | 3531 } |
| 3532 | 3532 |
| 3533 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { | 3533 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { |
| 3534 buildCounterFloodlightActivitiesListResponse++; | 3534 buildCounterFloodlightActivitiesListResponse++; |
| 3535 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3535 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3536 checkUnnamed1620(o.floodlightActivities); | 3536 checkUnnamed1926(o.floodlightActivities); |
| 3537 unittest.expect(o.kind, unittest.equals('foo')); | 3537 unittest.expect(o.kind, unittest.equals('foo')); |
| 3538 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3538 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3539 } | 3539 } |
| 3540 buildCounterFloodlightActivitiesListResponse--; | 3540 buildCounterFloodlightActivitiesListResponse--; |
| 3541 } | 3541 } |
| 3542 | 3542 |
| 3543 buildUnnamed1621() { | 3543 buildUnnamed1927() { |
| 3544 var o = new core.List<api.FloodlightActivityDynamicTag>(); | 3544 var o = new core.List<api.FloodlightActivityDynamicTag>(); |
| 3545 o.add(buildFloodlightActivityDynamicTag()); | 3545 o.add(buildFloodlightActivityDynamicTag()); |
| 3546 o.add(buildFloodlightActivityDynamicTag()); | 3546 o.add(buildFloodlightActivityDynamicTag()); |
| 3547 return o; | 3547 return o; |
| 3548 } | 3548 } |
| 3549 | 3549 |
| 3550 checkUnnamed1621(core.List<api.FloodlightActivityDynamicTag> o) { | 3550 checkUnnamed1927(core.List<api.FloodlightActivityDynamicTag> o) { |
| 3551 unittest.expect(o, unittest.hasLength(2)); | 3551 unittest.expect(o, unittest.hasLength(2)); |
| 3552 checkFloodlightActivityDynamicTag(o[0]); | 3552 checkFloodlightActivityDynamicTag(o[0]); |
| 3553 checkFloodlightActivityDynamicTag(o[1]); | 3553 checkFloodlightActivityDynamicTag(o[1]); |
| 3554 } | 3554 } |
| 3555 | 3555 |
| 3556 buildUnnamed1622() { | 3556 buildUnnamed1928() { |
| 3557 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); | 3557 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); |
| 3558 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3558 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3559 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3559 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3560 return o; | 3560 return o; |
| 3561 } | 3561 } |
| 3562 | 3562 |
| 3563 checkUnnamed1622(core.List<api.FloodlightActivityPublisherDynamicTag> o) { | 3563 checkUnnamed1928(core.List<api.FloodlightActivityPublisherDynamicTag> o) { |
| 3564 unittest.expect(o, unittest.hasLength(2)); | 3564 unittest.expect(o, unittest.hasLength(2)); |
| 3565 checkFloodlightActivityPublisherDynamicTag(o[0]); | 3565 checkFloodlightActivityPublisherDynamicTag(o[0]); |
| 3566 checkFloodlightActivityPublisherDynamicTag(o[1]); | 3566 checkFloodlightActivityPublisherDynamicTag(o[1]); |
| 3567 } | 3567 } |
| 3568 | 3568 |
| 3569 buildUnnamed1623() { | 3569 buildUnnamed1929() { |
| 3570 var o = new core.List<core.String>(); | 3570 var o = new core.List<core.String>(); |
| 3571 o.add("foo"); | 3571 o.add("foo"); |
| 3572 o.add("foo"); | 3572 o.add("foo"); |
| 3573 return o; | 3573 return o; |
| 3574 } | 3574 } |
| 3575 | 3575 |
| 3576 checkUnnamed1623(core.List<core.String> o) { | 3576 checkUnnamed1929(core.List<core.String> o) { |
| 3577 unittest.expect(o, unittest.hasLength(2)); | 3577 unittest.expect(o, unittest.hasLength(2)); |
| 3578 unittest.expect(o[0], unittest.equals('foo')); | 3578 unittest.expect(o[0], unittest.equals('foo')); |
| 3579 unittest.expect(o[1], unittest.equals('foo')); | 3579 unittest.expect(o[1], unittest.equals('foo')); |
| 3580 } | 3580 } |
| 3581 | 3581 |
| 3582 core.int buildCounterFloodlightActivity = 0; | 3582 core.int buildCounterFloodlightActivity = 0; |
| 3583 buildFloodlightActivity() { | 3583 buildFloodlightActivity() { |
| 3584 var o = new api.FloodlightActivity(); | 3584 var o = new api.FloodlightActivity(); |
| 3585 buildCounterFloodlightActivity++; | 3585 buildCounterFloodlightActivity++; |
| 3586 if (buildCounterFloodlightActivity < 3) { | 3586 if (buildCounterFloodlightActivity < 3) { |
| 3587 o.accountId = "foo"; | 3587 o.accountId = "foo"; |
| 3588 o.advertiserId = "foo"; | 3588 o.advertiserId = "foo"; |
| 3589 o.advertiserIdDimensionValue = buildDimensionValue(); | 3589 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3590 o.cacheBustingType = "foo"; | 3590 o.cacheBustingType = "foo"; |
| 3591 o.countingMethod = "foo"; | 3591 o.countingMethod = "foo"; |
| 3592 o.defaultTags = buildUnnamed1621(); | 3592 o.defaultTags = buildUnnamed1927(); |
| 3593 o.expectedUrl = "foo"; | 3593 o.expectedUrl = "foo"; |
| 3594 o.floodlightActivityGroupId = "foo"; | 3594 o.floodlightActivityGroupId = "foo"; |
| 3595 o.floodlightActivityGroupName = "foo"; | 3595 o.floodlightActivityGroupName = "foo"; |
| 3596 o.floodlightActivityGroupTagString = "foo"; | 3596 o.floodlightActivityGroupTagString = "foo"; |
| 3597 o.floodlightActivityGroupType = "foo"; | 3597 o.floodlightActivityGroupType = "foo"; |
| 3598 o.floodlightConfigurationId = "foo"; | 3598 o.floodlightConfigurationId = "foo"; |
| 3599 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); | 3599 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); |
| 3600 o.hidden = true; | 3600 o.hidden = true; |
| 3601 o.id = "foo"; | 3601 o.id = "foo"; |
| 3602 o.idDimensionValue = buildDimensionValue(); | 3602 o.idDimensionValue = buildDimensionValue(); |
| 3603 o.imageTagEnabled = true; | 3603 o.imageTagEnabled = true; |
| 3604 o.kind = "foo"; | 3604 o.kind = "foo"; |
| 3605 o.name = "foo"; | 3605 o.name = "foo"; |
| 3606 o.notes = "foo"; | 3606 o.notes = "foo"; |
| 3607 o.publisherTags = buildUnnamed1622(); | 3607 o.publisherTags = buildUnnamed1928(); |
| 3608 o.secure = true; | 3608 o.secure = true; |
| 3609 o.sslCompliant = true; | 3609 o.sslCompliant = true; |
| 3610 o.sslRequired = true; | 3610 o.sslRequired = true; |
| 3611 o.subaccountId = "foo"; | 3611 o.subaccountId = "foo"; |
| 3612 o.tagFormat = "foo"; | 3612 o.tagFormat = "foo"; |
| 3613 o.tagString = "foo"; | 3613 o.tagString = "foo"; |
| 3614 o.userDefinedVariableTypes = buildUnnamed1623(); | 3614 o.userDefinedVariableTypes = buildUnnamed1929(); |
| 3615 } | 3615 } |
| 3616 buildCounterFloodlightActivity--; | 3616 buildCounterFloodlightActivity--; |
| 3617 return o; | 3617 return o; |
| 3618 } | 3618 } |
| 3619 | 3619 |
| 3620 checkFloodlightActivity(api.FloodlightActivity o) { | 3620 checkFloodlightActivity(api.FloodlightActivity o) { |
| 3621 buildCounterFloodlightActivity++; | 3621 buildCounterFloodlightActivity++; |
| 3622 if (buildCounterFloodlightActivity < 3) { | 3622 if (buildCounterFloodlightActivity < 3) { |
| 3623 unittest.expect(o.accountId, unittest.equals('foo')); | 3623 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3624 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3624 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3625 checkDimensionValue(o.advertiserIdDimensionValue); | 3625 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3626 unittest.expect(o.cacheBustingType, unittest.equals('foo')); | 3626 unittest.expect(o.cacheBustingType, unittest.equals('foo')); |
| 3627 unittest.expect(o.countingMethod, unittest.equals('foo')); | 3627 unittest.expect(o.countingMethod, unittest.equals('foo')); |
| 3628 checkUnnamed1621(o.defaultTags); | 3628 checkUnnamed1927(o.defaultTags); |
| 3629 unittest.expect(o.expectedUrl, unittest.equals('foo')); | 3629 unittest.expect(o.expectedUrl, unittest.equals('foo')); |
| 3630 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); | 3630 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); |
| 3631 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); | 3631 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); |
| 3632 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); | 3632 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); |
| 3633 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); | 3633 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); |
| 3634 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 3634 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
| 3635 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); | 3635 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); |
| 3636 unittest.expect(o.hidden, unittest.isTrue); | 3636 unittest.expect(o.hidden, unittest.isTrue); |
| 3637 unittest.expect(o.id, unittest.equals('foo')); | 3637 unittest.expect(o.id, unittest.equals('foo')); |
| 3638 checkDimensionValue(o.idDimensionValue); | 3638 checkDimensionValue(o.idDimensionValue); |
| 3639 unittest.expect(o.imageTagEnabled, unittest.isTrue); | 3639 unittest.expect(o.imageTagEnabled, unittest.isTrue); |
| 3640 unittest.expect(o.kind, unittest.equals('foo')); | 3640 unittest.expect(o.kind, unittest.equals('foo')); |
| 3641 unittest.expect(o.name, unittest.equals('foo')); | 3641 unittest.expect(o.name, unittest.equals('foo')); |
| 3642 unittest.expect(o.notes, unittest.equals('foo')); | 3642 unittest.expect(o.notes, unittest.equals('foo')); |
| 3643 checkUnnamed1622(o.publisherTags); | 3643 checkUnnamed1928(o.publisherTags); |
| 3644 unittest.expect(o.secure, unittest.isTrue); | 3644 unittest.expect(o.secure, unittest.isTrue); |
| 3645 unittest.expect(o.sslCompliant, unittest.isTrue); | 3645 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3646 unittest.expect(o.sslRequired, unittest.isTrue); | 3646 unittest.expect(o.sslRequired, unittest.isTrue); |
| 3647 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3647 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3648 unittest.expect(o.tagFormat, unittest.equals('foo')); | 3648 unittest.expect(o.tagFormat, unittest.equals('foo')); |
| 3649 unittest.expect(o.tagString, unittest.equals('foo')); | 3649 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3650 checkUnnamed1623(o.userDefinedVariableTypes); | 3650 checkUnnamed1929(o.userDefinedVariableTypes); |
| 3651 } | 3651 } |
| 3652 buildCounterFloodlightActivity--; | 3652 buildCounterFloodlightActivity--; |
| 3653 } | 3653 } |
| 3654 | 3654 |
| 3655 core.int buildCounterFloodlightActivityDynamicTag = 0; | 3655 core.int buildCounterFloodlightActivityDynamicTag = 0; |
| 3656 buildFloodlightActivityDynamicTag() { | 3656 buildFloodlightActivityDynamicTag() { |
| 3657 var o = new api.FloodlightActivityDynamicTag(); | 3657 var o = new api.FloodlightActivityDynamicTag(); |
| 3658 buildCounterFloodlightActivityDynamicTag++; | 3658 buildCounterFloodlightActivityDynamicTag++; |
| 3659 if (buildCounterFloodlightActivityDynamicTag < 3) { | 3659 if (buildCounterFloodlightActivityDynamicTag < 3) { |
| 3660 o.id = "foo"; | 3660 o.id = "foo"; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3709 checkDimensionValue(o.idDimensionValue); | 3709 checkDimensionValue(o.idDimensionValue); |
| 3710 unittest.expect(o.kind, unittest.equals('foo')); | 3710 unittest.expect(o.kind, unittest.equals('foo')); |
| 3711 unittest.expect(o.name, unittest.equals('foo')); | 3711 unittest.expect(o.name, unittest.equals('foo')); |
| 3712 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3712 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3713 unittest.expect(o.tagString, unittest.equals('foo')); | 3713 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3714 unittest.expect(o.type, unittest.equals('foo')); | 3714 unittest.expect(o.type, unittest.equals('foo')); |
| 3715 } | 3715 } |
| 3716 buildCounterFloodlightActivityGroup--; | 3716 buildCounterFloodlightActivityGroup--; |
| 3717 } | 3717 } |
| 3718 | 3718 |
| 3719 buildUnnamed1624() { | 3719 buildUnnamed1930() { |
| 3720 var o = new core.List<api.FloodlightActivityGroup>(); | 3720 var o = new core.List<api.FloodlightActivityGroup>(); |
| 3721 o.add(buildFloodlightActivityGroup()); | 3721 o.add(buildFloodlightActivityGroup()); |
| 3722 o.add(buildFloodlightActivityGroup()); | 3722 o.add(buildFloodlightActivityGroup()); |
| 3723 return o; | 3723 return o; |
| 3724 } | 3724 } |
| 3725 | 3725 |
| 3726 checkUnnamed1624(core.List<api.FloodlightActivityGroup> o) { | 3726 checkUnnamed1930(core.List<api.FloodlightActivityGroup> o) { |
| 3727 unittest.expect(o, unittest.hasLength(2)); | 3727 unittest.expect(o, unittest.hasLength(2)); |
| 3728 checkFloodlightActivityGroup(o[0]); | 3728 checkFloodlightActivityGroup(o[0]); |
| 3729 checkFloodlightActivityGroup(o[1]); | 3729 checkFloodlightActivityGroup(o[1]); |
| 3730 } | 3730 } |
| 3731 | 3731 |
| 3732 core.int buildCounterFloodlightActivityGroupsListResponse = 0; | 3732 core.int buildCounterFloodlightActivityGroupsListResponse = 0; |
| 3733 buildFloodlightActivityGroupsListResponse() { | 3733 buildFloodlightActivityGroupsListResponse() { |
| 3734 var o = new api.FloodlightActivityGroupsListResponse(); | 3734 var o = new api.FloodlightActivityGroupsListResponse(); |
| 3735 buildCounterFloodlightActivityGroupsListResponse++; | 3735 buildCounterFloodlightActivityGroupsListResponse++; |
| 3736 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3736 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 3737 o.floodlightActivityGroups = buildUnnamed1624(); | 3737 o.floodlightActivityGroups = buildUnnamed1930(); |
| 3738 o.kind = "foo"; | 3738 o.kind = "foo"; |
| 3739 o.nextPageToken = "foo"; | 3739 o.nextPageToken = "foo"; |
| 3740 } | 3740 } |
| 3741 buildCounterFloodlightActivityGroupsListResponse--; | 3741 buildCounterFloodlightActivityGroupsListResponse--; |
| 3742 return o; | 3742 return o; |
| 3743 } | 3743 } |
| 3744 | 3744 |
| 3745 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { | 3745 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { |
| 3746 buildCounterFloodlightActivityGroupsListResponse++; | 3746 buildCounterFloodlightActivityGroupsListResponse++; |
| 3747 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3747 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 3748 checkUnnamed1624(o.floodlightActivityGroups); | 3748 checkUnnamed1930(o.floodlightActivityGroups); |
| 3749 unittest.expect(o.kind, unittest.equals('foo')); | 3749 unittest.expect(o.kind, unittest.equals('foo')); |
| 3750 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3750 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3751 } | 3751 } |
| 3752 buildCounterFloodlightActivityGroupsListResponse--; | 3752 buildCounterFloodlightActivityGroupsListResponse--; |
| 3753 } | 3753 } |
| 3754 | 3754 |
| 3755 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; | 3755 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; |
| 3756 buildFloodlightActivityPublisherDynamicTag() { | 3756 buildFloodlightActivityPublisherDynamicTag() { |
| 3757 var o = new api.FloodlightActivityPublisherDynamicTag(); | 3757 var o = new api.FloodlightActivityPublisherDynamicTag(); |
| 3758 buildCounterFloodlightActivityPublisherDynamicTag++; | 3758 buildCounterFloodlightActivityPublisherDynamicTag++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 3774 unittest.expect(o.clickThrough, unittest.isTrue); | 3774 unittest.expect(o.clickThrough, unittest.isTrue); |
| 3775 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 3775 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 3776 checkFloodlightActivityDynamicTag(o.dynamicTag); | 3776 checkFloodlightActivityDynamicTag(o.dynamicTag); |
| 3777 unittest.expect(o.siteId, unittest.equals('foo')); | 3777 unittest.expect(o.siteId, unittest.equals('foo')); |
| 3778 checkDimensionValue(o.siteIdDimensionValue); | 3778 checkDimensionValue(o.siteIdDimensionValue); |
| 3779 unittest.expect(o.viewThrough, unittest.isTrue); | 3779 unittest.expect(o.viewThrough, unittest.isTrue); |
| 3780 } | 3780 } |
| 3781 buildCounterFloodlightActivityPublisherDynamicTag--; | 3781 buildCounterFloodlightActivityPublisherDynamicTag--; |
| 3782 } | 3782 } |
| 3783 | 3783 |
| 3784 buildUnnamed1625() { | 3784 buildUnnamed1931() { |
| 3785 var o = new core.List<core.String>(); | 3785 var o = new core.List<core.String>(); |
| 3786 o.add("foo"); | 3786 o.add("foo"); |
| 3787 o.add("foo"); | 3787 o.add("foo"); |
| 3788 return o; | 3788 return o; |
| 3789 } | 3789 } |
| 3790 | 3790 |
| 3791 checkUnnamed1625(core.List<core.String> o) { | 3791 checkUnnamed1931(core.List<core.String> o) { |
| 3792 unittest.expect(o, unittest.hasLength(2)); | 3792 unittest.expect(o, unittest.hasLength(2)); |
| 3793 unittest.expect(o[0], unittest.equals('foo')); | 3793 unittest.expect(o[0], unittest.equals('foo')); |
| 3794 unittest.expect(o[1], unittest.equals('foo')); | 3794 unittest.expect(o[1], unittest.equals('foo')); |
| 3795 } | 3795 } |
| 3796 | 3796 |
| 3797 buildUnnamed1626() { | 3797 buildUnnamed1932() { |
| 3798 var o = new core.List<api.ThirdPartyAuthenticationToken>(); | 3798 var o = new core.List<api.ThirdPartyAuthenticationToken>(); |
| 3799 o.add(buildThirdPartyAuthenticationToken()); | 3799 o.add(buildThirdPartyAuthenticationToken()); |
| 3800 o.add(buildThirdPartyAuthenticationToken()); | 3800 o.add(buildThirdPartyAuthenticationToken()); |
| 3801 return o; | 3801 return o; |
| 3802 } | 3802 } |
| 3803 | 3803 |
| 3804 checkUnnamed1626(core.List<api.ThirdPartyAuthenticationToken> o) { | 3804 checkUnnamed1932(core.List<api.ThirdPartyAuthenticationToken> o) { |
| 3805 unittest.expect(o, unittest.hasLength(2)); | 3805 unittest.expect(o, unittest.hasLength(2)); |
| 3806 checkThirdPartyAuthenticationToken(o[0]); | 3806 checkThirdPartyAuthenticationToken(o[0]); |
| 3807 checkThirdPartyAuthenticationToken(o[1]); | 3807 checkThirdPartyAuthenticationToken(o[1]); |
| 3808 } | 3808 } |
| 3809 | 3809 |
| 3810 buildUnnamed1627() { | 3810 buildUnnamed1933() { |
| 3811 var o = new core.List<api.UserDefinedVariableConfiguration>(); | 3811 var o = new core.List<api.UserDefinedVariableConfiguration>(); |
| 3812 o.add(buildUserDefinedVariableConfiguration()); | 3812 o.add(buildUserDefinedVariableConfiguration()); |
| 3813 o.add(buildUserDefinedVariableConfiguration()); | 3813 o.add(buildUserDefinedVariableConfiguration()); |
| 3814 return o; | 3814 return o; |
| 3815 } | 3815 } |
| 3816 | 3816 |
| 3817 checkUnnamed1627(core.List<api.UserDefinedVariableConfiguration> o) { | 3817 checkUnnamed1933(core.List<api.UserDefinedVariableConfiguration> o) { |
| 3818 unittest.expect(o, unittest.hasLength(2)); | 3818 unittest.expect(o, unittest.hasLength(2)); |
| 3819 checkUserDefinedVariableConfiguration(o[0]); | 3819 checkUserDefinedVariableConfiguration(o[0]); |
| 3820 checkUserDefinedVariableConfiguration(o[1]); | 3820 checkUserDefinedVariableConfiguration(o[1]); |
| 3821 } | 3821 } |
| 3822 | 3822 |
| 3823 core.int buildCounterFloodlightConfiguration = 0; | 3823 core.int buildCounterFloodlightConfiguration = 0; |
| 3824 buildFloodlightConfiguration() { | 3824 buildFloodlightConfiguration() { |
| 3825 var o = new api.FloodlightConfiguration(); | 3825 var o = new api.FloodlightConfiguration(); |
| 3826 buildCounterFloodlightConfiguration++; | 3826 buildCounterFloodlightConfiguration++; |
| 3827 if (buildCounterFloodlightConfiguration < 3) { | 3827 if (buildCounterFloodlightConfiguration < 3) { |
| 3828 o.accountId = "foo"; | 3828 o.accountId = "foo"; |
| 3829 o.advertiserId = "foo"; | 3829 o.advertiserId = "foo"; |
| 3830 o.advertiserIdDimensionValue = buildDimensionValue(); | 3830 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3831 o.analyticsDataSharingEnabled = true; | 3831 o.analyticsDataSharingEnabled = true; |
| 3832 o.exposureToConversionEnabled = true; | 3832 o.exposureToConversionEnabled = true; |
| 3833 o.firstDayOfWeek = "foo"; | 3833 o.firstDayOfWeek = "foo"; |
| 3834 o.id = "foo"; | 3834 o.id = "foo"; |
| 3835 o.idDimensionValue = buildDimensionValue(); | 3835 o.idDimensionValue = buildDimensionValue(); |
| 3836 o.inAppAttributionTrackingEnabled = true; | 3836 o.inAppAttributionTrackingEnabled = true; |
| 3837 o.kind = "foo"; | 3837 o.kind = "foo"; |
| 3838 o.lookbackConfiguration = buildLookbackConfiguration(); | 3838 o.lookbackConfiguration = buildLookbackConfiguration(); |
| 3839 o.naturalSearchConversionAttributionOption = "foo"; | 3839 o.naturalSearchConversionAttributionOption = "foo"; |
| 3840 o.omnitureSettings = buildOmnitureSettings(); | 3840 o.omnitureSettings = buildOmnitureSettings(); |
| 3841 o.standardVariableTypes = buildUnnamed1625(); | 3841 o.standardVariableTypes = buildUnnamed1931(); |
| 3842 o.subaccountId = "foo"; | 3842 o.subaccountId = "foo"; |
| 3843 o.tagSettings = buildTagSettings(); | 3843 o.tagSettings = buildTagSettings(); |
| 3844 o.thirdPartyAuthenticationTokens = buildUnnamed1626(); | 3844 o.thirdPartyAuthenticationTokens = buildUnnamed1932(); |
| 3845 o.userDefinedVariableConfigurations = buildUnnamed1627(); | 3845 o.userDefinedVariableConfigurations = buildUnnamed1933(); |
| 3846 } | 3846 } |
| 3847 buildCounterFloodlightConfiguration--; | 3847 buildCounterFloodlightConfiguration--; |
| 3848 return o; | 3848 return o; |
| 3849 } | 3849 } |
| 3850 | 3850 |
| 3851 checkFloodlightConfiguration(api.FloodlightConfiguration o) { | 3851 checkFloodlightConfiguration(api.FloodlightConfiguration o) { |
| 3852 buildCounterFloodlightConfiguration++; | 3852 buildCounterFloodlightConfiguration++; |
| 3853 if (buildCounterFloodlightConfiguration < 3) { | 3853 if (buildCounterFloodlightConfiguration < 3) { |
| 3854 unittest.expect(o.accountId, unittest.equals('foo')); | 3854 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3855 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3855 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3856 checkDimensionValue(o.advertiserIdDimensionValue); | 3856 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3857 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); | 3857 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); |
| 3858 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); | 3858 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); |
| 3859 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); | 3859 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); |
| 3860 unittest.expect(o.id, unittest.equals('foo')); | 3860 unittest.expect(o.id, unittest.equals('foo')); |
| 3861 checkDimensionValue(o.idDimensionValue); | 3861 checkDimensionValue(o.idDimensionValue); |
| 3862 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); | 3862 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); |
| 3863 unittest.expect(o.kind, unittest.equals('foo')); | 3863 unittest.expect(o.kind, unittest.equals('foo')); |
| 3864 checkLookbackConfiguration(o.lookbackConfiguration); | 3864 checkLookbackConfiguration(o.lookbackConfiguration); |
| 3865 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); | 3865 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); |
| 3866 checkOmnitureSettings(o.omnitureSettings); | 3866 checkOmnitureSettings(o.omnitureSettings); |
| 3867 checkUnnamed1625(o.standardVariableTypes); | 3867 checkUnnamed1931(o.standardVariableTypes); |
| 3868 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3868 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3869 checkTagSettings(o.tagSettings); | 3869 checkTagSettings(o.tagSettings); |
| 3870 checkUnnamed1626(o.thirdPartyAuthenticationTokens); | 3870 checkUnnamed1932(o.thirdPartyAuthenticationTokens); |
| 3871 checkUnnamed1627(o.userDefinedVariableConfigurations); | 3871 checkUnnamed1933(o.userDefinedVariableConfigurations); |
| 3872 } | 3872 } |
| 3873 buildCounterFloodlightConfiguration--; | 3873 buildCounterFloodlightConfiguration--; |
| 3874 } | 3874 } |
| 3875 | 3875 |
| 3876 buildUnnamed1628() { | 3876 buildUnnamed1934() { |
| 3877 var o = new core.List<api.FloodlightConfiguration>(); | 3877 var o = new core.List<api.FloodlightConfiguration>(); |
| 3878 o.add(buildFloodlightConfiguration()); | 3878 o.add(buildFloodlightConfiguration()); |
| 3879 o.add(buildFloodlightConfiguration()); | 3879 o.add(buildFloodlightConfiguration()); |
| 3880 return o; | 3880 return o; |
| 3881 } | 3881 } |
| 3882 | 3882 |
| 3883 checkUnnamed1628(core.List<api.FloodlightConfiguration> o) { | 3883 checkUnnamed1934(core.List<api.FloodlightConfiguration> o) { |
| 3884 unittest.expect(o, unittest.hasLength(2)); | 3884 unittest.expect(o, unittest.hasLength(2)); |
| 3885 checkFloodlightConfiguration(o[0]); | 3885 checkFloodlightConfiguration(o[0]); |
| 3886 checkFloodlightConfiguration(o[1]); | 3886 checkFloodlightConfiguration(o[1]); |
| 3887 } | 3887 } |
| 3888 | 3888 |
| 3889 core.int buildCounterFloodlightConfigurationsListResponse = 0; | 3889 core.int buildCounterFloodlightConfigurationsListResponse = 0; |
| 3890 buildFloodlightConfigurationsListResponse() { | 3890 buildFloodlightConfigurationsListResponse() { |
| 3891 var o = new api.FloodlightConfigurationsListResponse(); | 3891 var o = new api.FloodlightConfigurationsListResponse(); |
| 3892 buildCounterFloodlightConfigurationsListResponse++; | 3892 buildCounterFloodlightConfigurationsListResponse++; |
| 3893 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3893 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 3894 o.floodlightConfigurations = buildUnnamed1628(); | 3894 o.floodlightConfigurations = buildUnnamed1934(); |
| 3895 o.kind = "foo"; | 3895 o.kind = "foo"; |
| 3896 } | 3896 } |
| 3897 buildCounterFloodlightConfigurationsListResponse--; | 3897 buildCounterFloodlightConfigurationsListResponse--; |
| 3898 return o; | 3898 return o; |
| 3899 } | 3899 } |
| 3900 | 3900 |
| 3901 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { | 3901 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { |
| 3902 buildCounterFloodlightConfigurationsListResponse++; | 3902 buildCounterFloodlightConfigurationsListResponse++; |
| 3903 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3903 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 3904 checkUnnamed1628(o.floodlightConfigurations); | 3904 checkUnnamed1934(o.floodlightConfigurations); |
| 3905 unittest.expect(o.kind, unittest.equals('foo')); | 3905 unittest.expect(o.kind, unittest.equals('foo')); |
| 3906 } | 3906 } |
| 3907 buildCounterFloodlightConfigurationsListResponse--; | 3907 buildCounterFloodlightConfigurationsListResponse--; |
| 3908 } | 3908 } |
| 3909 | 3909 |
| 3910 buildUnnamed1629() { | 3910 buildUnnamed1935() { |
| 3911 var o = new core.List<api.Dimension>(); | 3911 var o = new core.List<api.Dimension>(); |
| 3912 o.add(buildDimension()); | 3912 o.add(buildDimension()); |
| 3913 o.add(buildDimension()); | 3913 o.add(buildDimension()); |
| 3914 return o; | 3914 return o; |
| 3915 } | 3915 } |
| 3916 | 3916 |
| 3917 checkUnnamed1629(core.List<api.Dimension> o) { | 3917 checkUnnamed1935(core.List<api.Dimension> o) { |
| 3918 unittest.expect(o, unittest.hasLength(2)); | 3918 unittest.expect(o, unittest.hasLength(2)); |
| 3919 checkDimension(o[0]); | 3919 checkDimension(o[0]); |
| 3920 checkDimension(o[1]); | 3920 checkDimension(o[1]); |
| 3921 } | 3921 } |
| 3922 | 3922 |
| 3923 buildUnnamed1630() { | 3923 buildUnnamed1936() { |
| 3924 var o = new core.List<api.Dimension>(); | 3924 var o = new core.List<api.Dimension>(); |
| 3925 o.add(buildDimension()); | 3925 o.add(buildDimension()); |
| 3926 o.add(buildDimension()); | 3926 o.add(buildDimension()); |
| 3927 return o; | 3927 return o; |
| 3928 } | 3928 } |
| 3929 | 3929 |
| 3930 checkUnnamed1630(core.List<api.Dimension> o) { | 3930 checkUnnamed1936(core.List<api.Dimension> o) { |
| 3931 unittest.expect(o, unittest.hasLength(2)); | 3931 unittest.expect(o, unittest.hasLength(2)); |
| 3932 checkDimension(o[0]); | 3932 checkDimension(o[0]); |
| 3933 checkDimension(o[1]); | 3933 checkDimension(o[1]); |
| 3934 } | 3934 } |
| 3935 | 3935 |
| 3936 buildUnnamed1631() { | 3936 buildUnnamed1937() { |
| 3937 var o = new core.List<api.Metric>(); | 3937 var o = new core.List<api.Metric>(); |
| 3938 o.add(buildMetric()); | 3938 o.add(buildMetric()); |
| 3939 o.add(buildMetric()); | 3939 o.add(buildMetric()); |
| 3940 return o; | 3940 return o; |
| 3941 } | 3941 } |
| 3942 | 3942 |
| 3943 checkUnnamed1631(core.List<api.Metric> o) { | 3943 checkUnnamed1937(core.List<api.Metric> o) { |
| 3944 unittest.expect(o, unittest.hasLength(2)); | 3944 unittest.expect(o, unittest.hasLength(2)); |
| 3945 checkMetric(o[0]); | 3945 checkMetric(o[0]); |
| 3946 checkMetric(o[1]); | 3946 checkMetric(o[1]); |
| 3947 } | 3947 } |
| 3948 | 3948 |
| 3949 core.int buildCounterFloodlightReportCompatibleFields = 0; | 3949 core.int buildCounterFloodlightReportCompatibleFields = 0; |
| 3950 buildFloodlightReportCompatibleFields() { | 3950 buildFloodlightReportCompatibleFields() { |
| 3951 var o = new api.FloodlightReportCompatibleFields(); | 3951 var o = new api.FloodlightReportCompatibleFields(); |
| 3952 buildCounterFloodlightReportCompatibleFields++; | 3952 buildCounterFloodlightReportCompatibleFields++; |
| 3953 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3953 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 3954 o.dimensionFilters = buildUnnamed1629(); | 3954 o.dimensionFilters = buildUnnamed1935(); |
| 3955 o.dimensions = buildUnnamed1630(); | 3955 o.dimensions = buildUnnamed1936(); |
| 3956 o.kind = "foo"; | 3956 o.kind = "foo"; |
| 3957 o.metrics = buildUnnamed1631(); | 3957 o.metrics = buildUnnamed1937(); |
| 3958 } | 3958 } |
| 3959 buildCounterFloodlightReportCompatibleFields--; | 3959 buildCounterFloodlightReportCompatibleFields--; |
| 3960 return o; | 3960 return o; |
| 3961 } | 3961 } |
| 3962 | 3962 |
| 3963 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { | 3963 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { |
| 3964 buildCounterFloodlightReportCompatibleFields++; | 3964 buildCounterFloodlightReportCompatibleFields++; |
| 3965 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3965 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 3966 checkUnnamed1629(o.dimensionFilters); | 3966 checkUnnamed1935(o.dimensionFilters); |
| 3967 checkUnnamed1630(o.dimensions); | 3967 checkUnnamed1936(o.dimensions); |
| 3968 unittest.expect(o.kind, unittest.equals('foo')); | 3968 unittest.expect(o.kind, unittest.equals('foo')); |
| 3969 checkUnnamed1631(o.metrics); | 3969 checkUnnamed1937(o.metrics); |
| 3970 } | 3970 } |
| 3971 buildCounterFloodlightReportCompatibleFields--; | 3971 buildCounterFloodlightReportCompatibleFields--; |
| 3972 } | 3972 } |
| 3973 | 3973 |
| 3974 core.int buildCounterFrequencyCap = 0; | 3974 core.int buildCounterFrequencyCap = 0; |
| 3975 buildFrequencyCap() { | 3975 buildFrequencyCap() { |
| 3976 var o = new api.FrequencyCap(); | 3976 var o = new api.FrequencyCap(); |
| 3977 buildCounterFrequencyCap++; | 3977 buildCounterFrequencyCap++; |
| 3978 if (buildCounterFrequencyCap < 3) { | 3978 if (buildCounterFrequencyCap < 3) { |
| 3979 o.duration = "foo"; | 3979 o.duration = "foo"; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4012 if (buildCounterFsCommand < 3) { | 4012 if (buildCounterFsCommand < 3) { |
| 4013 unittest.expect(o.left, unittest.equals(42)); | 4013 unittest.expect(o.left, unittest.equals(42)); |
| 4014 unittest.expect(o.positionOption, unittest.equals('foo')); | 4014 unittest.expect(o.positionOption, unittest.equals('foo')); |
| 4015 unittest.expect(o.top, unittest.equals(42)); | 4015 unittest.expect(o.top, unittest.equals(42)); |
| 4016 unittest.expect(o.windowHeight, unittest.equals(42)); | 4016 unittest.expect(o.windowHeight, unittest.equals(42)); |
| 4017 unittest.expect(o.windowWidth, unittest.equals(42)); | 4017 unittest.expect(o.windowWidth, unittest.equals(42)); |
| 4018 } | 4018 } |
| 4019 buildCounterFsCommand--; | 4019 buildCounterFsCommand--; |
| 4020 } | 4020 } |
| 4021 | 4021 |
| 4022 buildUnnamed1632() { | 4022 buildUnnamed1938() { |
| 4023 var o = new core.List<api.City>(); | 4023 var o = new core.List<api.City>(); |
| 4024 o.add(buildCity()); | 4024 o.add(buildCity()); |
| 4025 o.add(buildCity()); | 4025 o.add(buildCity()); |
| 4026 return o; | 4026 return o; |
| 4027 } | 4027 } |
| 4028 | 4028 |
| 4029 checkUnnamed1632(core.List<api.City> o) { | 4029 checkUnnamed1938(core.List<api.City> o) { |
| 4030 unittest.expect(o, unittest.hasLength(2)); | 4030 unittest.expect(o, unittest.hasLength(2)); |
| 4031 checkCity(o[0]); | 4031 checkCity(o[0]); |
| 4032 checkCity(o[1]); | 4032 checkCity(o[1]); |
| 4033 } | 4033 } |
| 4034 | 4034 |
| 4035 buildUnnamed1633() { | 4035 buildUnnamed1939() { |
| 4036 var o = new core.List<api.Country>(); | 4036 var o = new core.List<api.Country>(); |
| 4037 o.add(buildCountry()); | 4037 o.add(buildCountry()); |
| 4038 o.add(buildCountry()); | 4038 o.add(buildCountry()); |
| 4039 return o; | 4039 return o; |
| 4040 } | 4040 } |
| 4041 | 4041 |
| 4042 checkUnnamed1633(core.List<api.Country> o) { | 4042 checkUnnamed1939(core.List<api.Country> o) { |
| 4043 unittest.expect(o, unittest.hasLength(2)); | 4043 unittest.expect(o, unittest.hasLength(2)); |
| 4044 checkCountry(o[0]); | 4044 checkCountry(o[0]); |
| 4045 checkCountry(o[1]); | 4045 checkCountry(o[1]); |
| 4046 } | 4046 } |
| 4047 | 4047 |
| 4048 buildUnnamed1634() { | 4048 buildUnnamed1940() { |
| 4049 var o = new core.List<api.Metro>(); | 4049 var o = new core.List<api.Metro>(); |
| 4050 o.add(buildMetro()); | 4050 o.add(buildMetro()); |
| 4051 o.add(buildMetro()); | 4051 o.add(buildMetro()); |
| 4052 return o; | 4052 return o; |
| 4053 } | 4053 } |
| 4054 | 4054 |
| 4055 checkUnnamed1634(core.List<api.Metro> o) { | 4055 checkUnnamed1940(core.List<api.Metro> o) { |
| 4056 unittest.expect(o, unittest.hasLength(2)); | 4056 unittest.expect(o, unittest.hasLength(2)); |
| 4057 checkMetro(o[0]); | 4057 checkMetro(o[0]); |
| 4058 checkMetro(o[1]); | 4058 checkMetro(o[1]); |
| 4059 } | 4059 } |
| 4060 | 4060 |
| 4061 buildUnnamed1635() { | 4061 buildUnnamed1941() { |
| 4062 var o = new core.List<api.PostalCode>(); | 4062 var o = new core.List<api.PostalCode>(); |
| 4063 o.add(buildPostalCode()); | 4063 o.add(buildPostalCode()); |
| 4064 o.add(buildPostalCode()); | 4064 o.add(buildPostalCode()); |
| 4065 return o; | 4065 return o; |
| 4066 } | 4066 } |
| 4067 | 4067 |
| 4068 checkUnnamed1635(core.List<api.PostalCode> o) { | 4068 checkUnnamed1941(core.List<api.PostalCode> o) { |
| 4069 unittest.expect(o, unittest.hasLength(2)); | 4069 unittest.expect(o, unittest.hasLength(2)); |
| 4070 checkPostalCode(o[0]); | 4070 checkPostalCode(o[0]); |
| 4071 checkPostalCode(o[1]); | 4071 checkPostalCode(o[1]); |
| 4072 } | 4072 } |
| 4073 | 4073 |
| 4074 buildUnnamed1636() { | 4074 buildUnnamed1942() { |
| 4075 var o = new core.List<api.Region>(); | 4075 var o = new core.List<api.Region>(); |
| 4076 o.add(buildRegion()); | 4076 o.add(buildRegion()); |
| 4077 o.add(buildRegion()); | 4077 o.add(buildRegion()); |
| 4078 return o; | 4078 return o; |
| 4079 } | 4079 } |
| 4080 | 4080 |
| 4081 checkUnnamed1636(core.List<api.Region> o) { | 4081 checkUnnamed1942(core.List<api.Region> o) { |
| 4082 unittest.expect(o, unittest.hasLength(2)); | 4082 unittest.expect(o, unittest.hasLength(2)); |
| 4083 checkRegion(o[0]); | 4083 checkRegion(o[0]); |
| 4084 checkRegion(o[1]); | 4084 checkRegion(o[1]); |
| 4085 } | 4085 } |
| 4086 | 4086 |
| 4087 core.int buildCounterGeoTargeting = 0; | 4087 core.int buildCounterGeoTargeting = 0; |
| 4088 buildGeoTargeting() { | 4088 buildGeoTargeting() { |
| 4089 var o = new api.GeoTargeting(); | 4089 var o = new api.GeoTargeting(); |
| 4090 buildCounterGeoTargeting++; | 4090 buildCounterGeoTargeting++; |
| 4091 if (buildCounterGeoTargeting < 3) { | 4091 if (buildCounterGeoTargeting < 3) { |
| 4092 o.cities = buildUnnamed1632(); | 4092 o.cities = buildUnnamed1938(); |
| 4093 o.countries = buildUnnamed1633(); | 4093 o.countries = buildUnnamed1939(); |
| 4094 o.excludeCountries = true; | 4094 o.excludeCountries = true; |
| 4095 o.metros = buildUnnamed1634(); | 4095 o.metros = buildUnnamed1940(); |
| 4096 o.postalCodes = buildUnnamed1635(); | 4096 o.postalCodes = buildUnnamed1941(); |
| 4097 o.regions = buildUnnamed1636(); | 4097 o.regions = buildUnnamed1942(); |
| 4098 } | 4098 } |
| 4099 buildCounterGeoTargeting--; | 4099 buildCounterGeoTargeting--; |
| 4100 return o; | 4100 return o; |
| 4101 } | 4101 } |
| 4102 | 4102 |
| 4103 checkGeoTargeting(api.GeoTargeting o) { | 4103 checkGeoTargeting(api.GeoTargeting o) { |
| 4104 buildCounterGeoTargeting++; | 4104 buildCounterGeoTargeting++; |
| 4105 if (buildCounterGeoTargeting < 3) { | 4105 if (buildCounterGeoTargeting < 3) { |
| 4106 checkUnnamed1632(o.cities); | 4106 checkUnnamed1938(o.cities); |
| 4107 checkUnnamed1633(o.countries); | 4107 checkUnnamed1939(o.countries); |
| 4108 unittest.expect(o.excludeCountries, unittest.isTrue); | 4108 unittest.expect(o.excludeCountries, unittest.isTrue); |
| 4109 checkUnnamed1634(o.metros); | 4109 checkUnnamed1940(o.metros); |
| 4110 checkUnnamed1635(o.postalCodes); | 4110 checkUnnamed1941(o.postalCodes); |
| 4111 checkUnnamed1636(o.regions); | 4111 checkUnnamed1942(o.regions); |
| 4112 } | 4112 } |
| 4113 buildCounterGeoTargeting--; | 4113 buildCounterGeoTargeting--; |
| 4114 } | 4114 } |
| 4115 | 4115 |
| 4116 buildUnnamed1637() { | 4116 buildUnnamed1943() { |
| 4117 var o = new core.List<api.AdSlot>(); | 4117 var o = new core.List<api.AdSlot>(); |
| 4118 o.add(buildAdSlot()); | 4118 o.add(buildAdSlot()); |
| 4119 o.add(buildAdSlot()); | 4119 o.add(buildAdSlot()); |
| 4120 return o; | 4120 return o; |
| 4121 } | 4121 } |
| 4122 | 4122 |
| 4123 checkUnnamed1637(core.List<api.AdSlot> o) { | 4123 checkUnnamed1943(core.List<api.AdSlot> o) { |
| 4124 unittest.expect(o, unittest.hasLength(2)); | 4124 unittest.expect(o, unittest.hasLength(2)); |
| 4125 checkAdSlot(o[0]); | 4125 checkAdSlot(o[0]); |
| 4126 checkAdSlot(o[1]); | 4126 checkAdSlot(o[1]); |
| 4127 } | 4127 } |
| 4128 | 4128 |
| 4129 core.int buildCounterInventoryItem = 0; | 4129 core.int buildCounterInventoryItem = 0; |
| 4130 buildInventoryItem() { | 4130 buildInventoryItem() { |
| 4131 var o = new api.InventoryItem(); | 4131 var o = new api.InventoryItem(); |
| 4132 buildCounterInventoryItem++; | 4132 buildCounterInventoryItem++; |
| 4133 if (buildCounterInventoryItem < 3) { | 4133 if (buildCounterInventoryItem < 3) { |
| 4134 o.accountId = "foo"; | 4134 o.accountId = "foo"; |
| 4135 o.adSlots = buildUnnamed1637(); | 4135 o.adSlots = buildUnnamed1943(); |
| 4136 o.advertiserId = "foo"; | 4136 o.advertiserId = "foo"; |
| 4137 o.contentCategoryId = "foo"; | 4137 o.contentCategoryId = "foo"; |
| 4138 o.estimatedClickThroughRate = "foo"; | 4138 o.estimatedClickThroughRate = "foo"; |
| 4139 o.estimatedConversionRate = "foo"; | 4139 o.estimatedConversionRate = "foo"; |
| 4140 o.id = "foo"; | 4140 o.id = "foo"; |
| 4141 o.inPlan = true; | 4141 o.inPlan = true; |
| 4142 o.kind = "foo"; | 4142 o.kind = "foo"; |
| 4143 o.lastModifiedInfo = buildLastModifiedInfo(); | 4143 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4144 o.name = "foo"; | 4144 o.name = "foo"; |
| 4145 o.negotiationChannelId = "foo"; | 4145 o.negotiationChannelId = "foo"; |
| 4146 o.orderId = "foo"; | 4146 o.orderId = "foo"; |
| 4147 o.placementStrategyId = "foo"; | 4147 o.placementStrategyId = "foo"; |
| 4148 o.pricing = buildPricing(); | 4148 o.pricing = buildPricing(); |
| 4149 o.projectId = "foo"; | 4149 o.projectId = "foo"; |
| 4150 o.rfpId = "foo"; | 4150 o.rfpId = "foo"; |
| 4151 o.siteId = "foo"; | 4151 o.siteId = "foo"; |
| 4152 o.subaccountId = "foo"; | 4152 o.subaccountId = "foo"; |
| 4153 } | 4153 } |
| 4154 buildCounterInventoryItem--; | 4154 buildCounterInventoryItem--; |
| 4155 return o; | 4155 return o; |
| 4156 } | 4156 } |
| 4157 | 4157 |
| 4158 checkInventoryItem(api.InventoryItem o) { | 4158 checkInventoryItem(api.InventoryItem o) { |
| 4159 buildCounterInventoryItem++; | 4159 buildCounterInventoryItem++; |
| 4160 if (buildCounterInventoryItem < 3) { | 4160 if (buildCounterInventoryItem < 3) { |
| 4161 unittest.expect(o.accountId, unittest.equals('foo')); | 4161 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4162 checkUnnamed1637(o.adSlots); | 4162 checkUnnamed1943(o.adSlots); |
| 4163 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4163 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4164 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 4164 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 4165 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); | 4165 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); |
| 4166 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); | 4166 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); |
| 4167 unittest.expect(o.id, unittest.equals('foo')); | 4167 unittest.expect(o.id, unittest.equals('foo')); |
| 4168 unittest.expect(o.inPlan, unittest.isTrue); | 4168 unittest.expect(o.inPlan, unittest.isTrue); |
| 4169 unittest.expect(o.kind, unittest.equals('foo')); | 4169 unittest.expect(o.kind, unittest.equals('foo')); |
| 4170 checkLastModifiedInfo(o.lastModifiedInfo); | 4170 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4171 unittest.expect(o.name, unittest.equals('foo')); | 4171 unittest.expect(o.name, unittest.equals('foo')); |
| 4172 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); | 4172 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); |
| 4173 unittest.expect(o.orderId, unittest.equals('foo')); | 4173 unittest.expect(o.orderId, unittest.equals('foo')); |
| 4174 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 4174 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 4175 checkPricing(o.pricing); | 4175 checkPricing(o.pricing); |
| 4176 unittest.expect(o.projectId, unittest.equals('foo')); | 4176 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4177 unittest.expect(o.rfpId, unittest.equals('foo')); | 4177 unittest.expect(o.rfpId, unittest.equals('foo')); |
| 4178 unittest.expect(o.siteId, unittest.equals('foo')); | 4178 unittest.expect(o.siteId, unittest.equals('foo')); |
| 4179 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4179 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4180 } | 4180 } |
| 4181 buildCounterInventoryItem--; | 4181 buildCounterInventoryItem--; |
| 4182 } | 4182 } |
| 4183 | 4183 |
| 4184 buildUnnamed1638() { | 4184 buildUnnamed1944() { |
| 4185 var o = new core.List<api.InventoryItem>(); | 4185 var o = new core.List<api.InventoryItem>(); |
| 4186 o.add(buildInventoryItem()); | 4186 o.add(buildInventoryItem()); |
| 4187 o.add(buildInventoryItem()); | 4187 o.add(buildInventoryItem()); |
| 4188 return o; | 4188 return o; |
| 4189 } | 4189 } |
| 4190 | 4190 |
| 4191 checkUnnamed1638(core.List<api.InventoryItem> o) { | 4191 checkUnnamed1944(core.List<api.InventoryItem> o) { |
| 4192 unittest.expect(o, unittest.hasLength(2)); | 4192 unittest.expect(o, unittest.hasLength(2)); |
| 4193 checkInventoryItem(o[0]); | 4193 checkInventoryItem(o[0]); |
| 4194 checkInventoryItem(o[1]); | 4194 checkInventoryItem(o[1]); |
| 4195 } | 4195 } |
| 4196 | 4196 |
| 4197 core.int buildCounterInventoryItemsListResponse = 0; | 4197 core.int buildCounterInventoryItemsListResponse = 0; |
| 4198 buildInventoryItemsListResponse() { | 4198 buildInventoryItemsListResponse() { |
| 4199 var o = new api.InventoryItemsListResponse(); | 4199 var o = new api.InventoryItemsListResponse(); |
| 4200 buildCounterInventoryItemsListResponse++; | 4200 buildCounterInventoryItemsListResponse++; |
| 4201 if (buildCounterInventoryItemsListResponse < 3) { | 4201 if (buildCounterInventoryItemsListResponse < 3) { |
| 4202 o.inventoryItems = buildUnnamed1638(); | 4202 o.inventoryItems = buildUnnamed1944(); |
| 4203 o.kind = "foo"; | 4203 o.kind = "foo"; |
| 4204 o.nextPageToken = "foo"; | 4204 o.nextPageToken = "foo"; |
| 4205 } | 4205 } |
| 4206 buildCounterInventoryItemsListResponse--; | 4206 buildCounterInventoryItemsListResponse--; |
| 4207 return o; | 4207 return o; |
| 4208 } | 4208 } |
| 4209 | 4209 |
| 4210 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { | 4210 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { |
| 4211 buildCounterInventoryItemsListResponse++; | 4211 buildCounterInventoryItemsListResponse++; |
| 4212 if (buildCounterInventoryItemsListResponse < 3) { | 4212 if (buildCounterInventoryItemsListResponse < 3) { |
| 4213 checkUnnamed1638(o.inventoryItems); | 4213 checkUnnamed1944(o.inventoryItems); |
| 4214 unittest.expect(o.kind, unittest.equals('foo')); | 4214 unittest.expect(o.kind, unittest.equals('foo')); |
| 4215 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4215 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4216 } | 4216 } |
| 4217 buildCounterInventoryItemsListResponse--; | 4217 buildCounterInventoryItemsListResponse--; |
| 4218 } | 4218 } |
| 4219 | 4219 |
| 4220 core.int buildCounterKeyValueTargetingExpression = 0; | 4220 core.int buildCounterKeyValueTargetingExpression = 0; |
| 4221 buildKeyValueTargetingExpression() { | 4221 buildKeyValueTargetingExpression() { |
| 4222 var o = new api.KeyValueTargetingExpression(); | 4222 var o = new api.KeyValueTargetingExpression(); |
| 4223 buildCounterKeyValueTargetingExpression++; | 4223 buildCounterKeyValueTargetingExpression++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4256 if (buildCounterLandingPage < 3) { | 4256 if (buildCounterLandingPage < 3) { |
| 4257 unittest.expect(o.default_, unittest.isTrue); | 4257 unittest.expect(o.default_, unittest.isTrue); |
| 4258 unittest.expect(o.id, unittest.equals('foo')); | 4258 unittest.expect(o.id, unittest.equals('foo')); |
| 4259 unittest.expect(o.kind, unittest.equals('foo')); | 4259 unittest.expect(o.kind, unittest.equals('foo')); |
| 4260 unittest.expect(o.name, unittest.equals('foo')); | 4260 unittest.expect(o.name, unittest.equals('foo')); |
| 4261 unittest.expect(o.url, unittest.equals('foo')); | 4261 unittest.expect(o.url, unittest.equals('foo')); |
| 4262 } | 4262 } |
| 4263 buildCounterLandingPage--; | 4263 buildCounterLandingPage--; |
| 4264 } | 4264 } |
| 4265 | 4265 |
| 4266 buildUnnamed1639() { | 4266 buildUnnamed1945() { |
| 4267 var o = new core.List<api.LandingPage>(); | 4267 var o = new core.List<api.LandingPage>(); |
| 4268 o.add(buildLandingPage()); | 4268 o.add(buildLandingPage()); |
| 4269 o.add(buildLandingPage()); | 4269 o.add(buildLandingPage()); |
| 4270 return o; | 4270 return o; |
| 4271 } | 4271 } |
| 4272 | 4272 |
| 4273 checkUnnamed1639(core.List<api.LandingPage> o) { | 4273 checkUnnamed1945(core.List<api.LandingPage> o) { |
| 4274 unittest.expect(o, unittest.hasLength(2)); | 4274 unittest.expect(o, unittest.hasLength(2)); |
| 4275 checkLandingPage(o[0]); | 4275 checkLandingPage(o[0]); |
| 4276 checkLandingPage(o[1]); | 4276 checkLandingPage(o[1]); |
| 4277 } | 4277 } |
| 4278 | 4278 |
| 4279 core.int buildCounterLandingPagesListResponse = 0; | 4279 core.int buildCounterLandingPagesListResponse = 0; |
| 4280 buildLandingPagesListResponse() { | 4280 buildLandingPagesListResponse() { |
| 4281 var o = new api.LandingPagesListResponse(); | 4281 var o = new api.LandingPagesListResponse(); |
| 4282 buildCounterLandingPagesListResponse++; | 4282 buildCounterLandingPagesListResponse++; |
| 4283 if (buildCounterLandingPagesListResponse < 3) { | 4283 if (buildCounterLandingPagesListResponse < 3) { |
| 4284 o.kind = "foo"; | 4284 o.kind = "foo"; |
| 4285 o.landingPages = buildUnnamed1639(); | 4285 o.landingPages = buildUnnamed1945(); |
| 4286 } | 4286 } |
| 4287 buildCounterLandingPagesListResponse--; | 4287 buildCounterLandingPagesListResponse--; |
| 4288 return o; | 4288 return o; |
| 4289 } | 4289 } |
| 4290 | 4290 |
| 4291 checkLandingPagesListResponse(api.LandingPagesListResponse o) { | 4291 checkLandingPagesListResponse(api.LandingPagesListResponse o) { |
| 4292 buildCounterLandingPagesListResponse++; | 4292 buildCounterLandingPagesListResponse++; |
| 4293 if (buildCounterLandingPagesListResponse < 3) { | 4293 if (buildCounterLandingPagesListResponse < 3) { |
| 4294 unittest.expect(o.kind, unittest.equals('foo')); | 4294 unittest.expect(o.kind, unittest.equals('foo')); |
| 4295 checkUnnamed1639(o.landingPages); | 4295 checkUnnamed1945(o.landingPages); |
| 4296 } | 4296 } |
| 4297 buildCounterLandingPagesListResponse--; | 4297 buildCounterLandingPagesListResponse--; |
| 4298 } | 4298 } |
| 4299 | 4299 |
| 4300 core.int buildCounterLastModifiedInfo = 0; | 4300 core.int buildCounterLastModifiedInfo = 0; |
| 4301 buildLastModifiedInfo() { | 4301 buildLastModifiedInfo() { |
| 4302 var o = new api.LastModifiedInfo(); | 4302 var o = new api.LastModifiedInfo(); |
| 4303 buildCounterLastModifiedInfo++; | 4303 buildCounterLastModifiedInfo++; |
| 4304 if (buildCounterLastModifiedInfo < 3) { | 4304 if (buildCounterLastModifiedInfo < 3) { |
| 4305 o.time = "foo"; | 4305 o.time = "foo"; |
| 4306 } | 4306 } |
| 4307 buildCounterLastModifiedInfo--; | 4307 buildCounterLastModifiedInfo--; |
| 4308 return o; | 4308 return o; |
| 4309 } | 4309 } |
| 4310 | 4310 |
| 4311 checkLastModifiedInfo(api.LastModifiedInfo o) { | 4311 checkLastModifiedInfo(api.LastModifiedInfo o) { |
| 4312 buildCounterLastModifiedInfo++; | 4312 buildCounterLastModifiedInfo++; |
| 4313 if (buildCounterLastModifiedInfo < 3) { | 4313 if (buildCounterLastModifiedInfo < 3) { |
| 4314 unittest.expect(o.time, unittest.equals('foo')); | 4314 unittest.expect(o.time, unittest.equals('foo')); |
| 4315 } | 4315 } |
| 4316 buildCounterLastModifiedInfo--; | 4316 buildCounterLastModifiedInfo--; |
| 4317 } | 4317 } |
| 4318 | 4318 |
| 4319 buildUnnamed1640() { | 4319 buildUnnamed1946() { |
| 4320 var o = new core.List<api.ListPopulationTerm>(); | 4320 var o = new core.List<api.ListPopulationTerm>(); |
| 4321 o.add(buildListPopulationTerm()); | 4321 o.add(buildListPopulationTerm()); |
| 4322 o.add(buildListPopulationTerm()); | 4322 o.add(buildListPopulationTerm()); |
| 4323 return o; | 4323 return o; |
| 4324 } | 4324 } |
| 4325 | 4325 |
| 4326 checkUnnamed1640(core.List<api.ListPopulationTerm> o) { | 4326 checkUnnamed1946(core.List<api.ListPopulationTerm> o) { |
| 4327 unittest.expect(o, unittest.hasLength(2)); | 4327 unittest.expect(o, unittest.hasLength(2)); |
| 4328 checkListPopulationTerm(o[0]); | 4328 checkListPopulationTerm(o[0]); |
| 4329 checkListPopulationTerm(o[1]); | 4329 checkListPopulationTerm(o[1]); |
| 4330 } | 4330 } |
| 4331 | 4331 |
| 4332 core.int buildCounterListPopulationClause = 0; | 4332 core.int buildCounterListPopulationClause = 0; |
| 4333 buildListPopulationClause() { | 4333 buildListPopulationClause() { |
| 4334 var o = new api.ListPopulationClause(); | 4334 var o = new api.ListPopulationClause(); |
| 4335 buildCounterListPopulationClause++; | 4335 buildCounterListPopulationClause++; |
| 4336 if (buildCounterListPopulationClause < 3) { | 4336 if (buildCounterListPopulationClause < 3) { |
| 4337 o.terms = buildUnnamed1640(); | 4337 o.terms = buildUnnamed1946(); |
| 4338 } | 4338 } |
| 4339 buildCounterListPopulationClause--; | 4339 buildCounterListPopulationClause--; |
| 4340 return o; | 4340 return o; |
| 4341 } | 4341 } |
| 4342 | 4342 |
| 4343 checkListPopulationClause(api.ListPopulationClause o) { | 4343 checkListPopulationClause(api.ListPopulationClause o) { |
| 4344 buildCounterListPopulationClause++; | 4344 buildCounterListPopulationClause++; |
| 4345 if (buildCounterListPopulationClause < 3) { | 4345 if (buildCounterListPopulationClause < 3) { |
| 4346 checkUnnamed1640(o.terms); | 4346 checkUnnamed1946(o.terms); |
| 4347 } | 4347 } |
| 4348 buildCounterListPopulationClause--; | 4348 buildCounterListPopulationClause--; |
| 4349 } | 4349 } |
| 4350 | 4350 |
| 4351 buildUnnamed1641() { | 4351 buildUnnamed1947() { |
| 4352 var o = new core.List<api.ListPopulationClause>(); | 4352 var o = new core.List<api.ListPopulationClause>(); |
| 4353 o.add(buildListPopulationClause()); | 4353 o.add(buildListPopulationClause()); |
| 4354 o.add(buildListPopulationClause()); | 4354 o.add(buildListPopulationClause()); |
| 4355 return o; | 4355 return o; |
| 4356 } | 4356 } |
| 4357 | 4357 |
| 4358 checkUnnamed1641(core.List<api.ListPopulationClause> o) { | 4358 checkUnnamed1947(core.List<api.ListPopulationClause> o) { |
| 4359 unittest.expect(o, unittest.hasLength(2)); | 4359 unittest.expect(o, unittest.hasLength(2)); |
| 4360 checkListPopulationClause(o[0]); | 4360 checkListPopulationClause(o[0]); |
| 4361 checkListPopulationClause(o[1]); | 4361 checkListPopulationClause(o[1]); |
| 4362 } | 4362 } |
| 4363 | 4363 |
| 4364 core.int buildCounterListPopulationRule = 0; | 4364 core.int buildCounterListPopulationRule = 0; |
| 4365 buildListPopulationRule() { | 4365 buildListPopulationRule() { |
| 4366 var o = new api.ListPopulationRule(); | 4366 var o = new api.ListPopulationRule(); |
| 4367 buildCounterListPopulationRule++; | 4367 buildCounterListPopulationRule++; |
| 4368 if (buildCounterListPopulationRule < 3) { | 4368 if (buildCounterListPopulationRule < 3) { |
| 4369 o.floodlightActivityId = "foo"; | 4369 o.floodlightActivityId = "foo"; |
| 4370 o.floodlightActivityName = "foo"; | 4370 o.floodlightActivityName = "foo"; |
| 4371 o.listPopulationClauses = buildUnnamed1641(); | 4371 o.listPopulationClauses = buildUnnamed1947(); |
| 4372 } | 4372 } |
| 4373 buildCounterListPopulationRule--; | 4373 buildCounterListPopulationRule--; |
| 4374 return o; | 4374 return o; |
| 4375 } | 4375 } |
| 4376 | 4376 |
| 4377 checkListPopulationRule(api.ListPopulationRule o) { | 4377 checkListPopulationRule(api.ListPopulationRule o) { |
| 4378 buildCounterListPopulationRule++; | 4378 buildCounterListPopulationRule++; |
| 4379 if (buildCounterListPopulationRule < 3) { | 4379 if (buildCounterListPopulationRule < 3) { |
| 4380 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4380 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4381 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); | 4381 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); |
| 4382 checkUnnamed1641(o.listPopulationClauses); | 4382 checkUnnamed1947(o.listPopulationClauses); |
| 4383 } | 4383 } |
| 4384 buildCounterListPopulationRule--; | 4384 buildCounterListPopulationRule--; |
| 4385 } | 4385 } |
| 4386 | 4386 |
| 4387 core.int buildCounterListPopulationTerm = 0; | 4387 core.int buildCounterListPopulationTerm = 0; |
| 4388 buildListPopulationTerm() { | 4388 buildListPopulationTerm() { |
| 4389 var o = new api.ListPopulationTerm(); | 4389 var o = new api.ListPopulationTerm(); |
| 4390 buildCounterListPopulationTerm++; | 4390 buildCounterListPopulationTerm++; |
| 4391 if (buildCounterListPopulationTerm < 3) { | 4391 if (buildCounterListPopulationTerm < 3) { |
| 4392 o.contains = true; | 4392 o.contains = true; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4502 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4502 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4503 unittest.expect(o.dartId, unittest.equals('foo')); | 4503 unittest.expect(o.dartId, unittest.equals('foo')); |
| 4504 unittest.expect(o.dmaId, unittest.equals('foo')); | 4504 unittest.expect(o.dmaId, unittest.equals('foo')); |
| 4505 unittest.expect(o.kind, unittest.equals('foo')); | 4505 unittest.expect(o.kind, unittest.equals('foo')); |
| 4506 unittest.expect(o.metroCode, unittest.equals('foo')); | 4506 unittest.expect(o.metroCode, unittest.equals('foo')); |
| 4507 unittest.expect(o.name, unittest.equals('foo')); | 4507 unittest.expect(o.name, unittest.equals('foo')); |
| 4508 } | 4508 } |
| 4509 buildCounterMetro--; | 4509 buildCounterMetro--; |
| 4510 } | 4510 } |
| 4511 | 4511 |
| 4512 buildUnnamed1642() { | 4512 buildUnnamed1948() { |
| 4513 var o = new core.List<api.Metro>(); | 4513 var o = new core.List<api.Metro>(); |
| 4514 o.add(buildMetro()); | 4514 o.add(buildMetro()); |
| 4515 o.add(buildMetro()); | 4515 o.add(buildMetro()); |
| 4516 return o; | 4516 return o; |
| 4517 } | 4517 } |
| 4518 | 4518 |
| 4519 checkUnnamed1642(core.List<api.Metro> o) { | 4519 checkUnnamed1948(core.List<api.Metro> o) { |
| 4520 unittest.expect(o, unittest.hasLength(2)); | 4520 unittest.expect(o, unittest.hasLength(2)); |
| 4521 checkMetro(o[0]); | 4521 checkMetro(o[0]); |
| 4522 checkMetro(o[1]); | 4522 checkMetro(o[1]); |
| 4523 } | 4523 } |
| 4524 | 4524 |
| 4525 core.int buildCounterMetrosListResponse = 0; | 4525 core.int buildCounterMetrosListResponse = 0; |
| 4526 buildMetrosListResponse() { | 4526 buildMetrosListResponse() { |
| 4527 var o = new api.MetrosListResponse(); | 4527 var o = new api.MetrosListResponse(); |
| 4528 buildCounterMetrosListResponse++; | 4528 buildCounterMetrosListResponse++; |
| 4529 if (buildCounterMetrosListResponse < 3) { | 4529 if (buildCounterMetrosListResponse < 3) { |
| 4530 o.kind = "foo"; | 4530 o.kind = "foo"; |
| 4531 o.metros = buildUnnamed1642(); | 4531 o.metros = buildUnnamed1948(); |
| 4532 } | 4532 } |
| 4533 buildCounterMetrosListResponse--; | 4533 buildCounterMetrosListResponse--; |
| 4534 return o; | 4534 return o; |
| 4535 } | 4535 } |
| 4536 | 4536 |
| 4537 checkMetrosListResponse(api.MetrosListResponse o) { | 4537 checkMetrosListResponse(api.MetrosListResponse o) { |
| 4538 buildCounterMetrosListResponse++; | 4538 buildCounterMetrosListResponse++; |
| 4539 if (buildCounterMetrosListResponse < 3) { | 4539 if (buildCounterMetrosListResponse < 3) { |
| 4540 unittest.expect(o.kind, unittest.equals('foo')); | 4540 unittest.expect(o.kind, unittest.equals('foo')); |
| 4541 checkUnnamed1642(o.metros); | 4541 checkUnnamed1948(o.metros); |
| 4542 } | 4542 } |
| 4543 buildCounterMetrosListResponse--; | 4543 buildCounterMetrosListResponse--; |
| 4544 } | 4544 } |
| 4545 | 4545 |
| 4546 core.int buildCounterMobileCarrier = 0; | 4546 core.int buildCounterMobileCarrier = 0; |
| 4547 buildMobileCarrier() { | 4547 buildMobileCarrier() { |
| 4548 var o = new api.MobileCarrier(); | 4548 var o = new api.MobileCarrier(); |
| 4549 buildCounterMobileCarrier++; | 4549 buildCounterMobileCarrier++; |
| 4550 if (buildCounterMobileCarrier < 3) { | 4550 if (buildCounterMobileCarrier < 3) { |
| 4551 o.countryCode = "foo"; | 4551 o.countryCode = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4563 if (buildCounterMobileCarrier < 3) { | 4563 if (buildCounterMobileCarrier < 3) { |
| 4564 unittest.expect(o.countryCode, unittest.equals('foo')); | 4564 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 4565 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4565 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4566 unittest.expect(o.id, unittest.equals('foo')); | 4566 unittest.expect(o.id, unittest.equals('foo')); |
| 4567 unittest.expect(o.kind, unittest.equals('foo')); | 4567 unittest.expect(o.kind, unittest.equals('foo')); |
| 4568 unittest.expect(o.name, unittest.equals('foo')); | 4568 unittest.expect(o.name, unittest.equals('foo')); |
| 4569 } | 4569 } |
| 4570 buildCounterMobileCarrier--; | 4570 buildCounterMobileCarrier--; |
| 4571 } | 4571 } |
| 4572 | 4572 |
| 4573 buildUnnamed1643() { | 4573 buildUnnamed1949() { |
| 4574 var o = new core.List<api.MobileCarrier>(); | 4574 var o = new core.List<api.MobileCarrier>(); |
| 4575 o.add(buildMobileCarrier()); | 4575 o.add(buildMobileCarrier()); |
| 4576 o.add(buildMobileCarrier()); | 4576 o.add(buildMobileCarrier()); |
| 4577 return o; | 4577 return o; |
| 4578 } | 4578 } |
| 4579 | 4579 |
| 4580 checkUnnamed1643(core.List<api.MobileCarrier> o) { | 4580 checkUnnamed1949(core.List<api.MobileCarrier> o) { |
| 4581 unittest.expect(o, unittest.hasLength(2)); | 4581 unittest.expect(o, unittest.hasLength(2)); |
| 4582 checkMobileCarrier(o[0]); | 4582 checkMobileCarrier(o[0]); |
| 4583 checkMobileCarrier(o[1]); | 4583 checkMobileCarrier(o[1]); |
| 4584 } | 4584 } |
| 4585 | 4585 |
| 4586 core.int buildCounterMobileCarriersListResponse = 0; | 4586 core.int buildCounterMobileCarriersListResponse = 0; |
| 4587 buildMobileCarriersListResponse() { | 4587 buildMobileCarriersListResponse() { |
| 4588 var o = new api.MobileCarriersListResponse(); | 4588 var o = new api.MobileCarriersListResponse(); |
| 4589 buildCounterMobileCarriersListResponse++; | 4589 buildCounterMobileCarriersListResponse++; |
| 4590 if (buildCounterMobileCarriersListResponse < 3) { | 4590 if (buildCounterMobileCarriersListResponse < 3) { |
| 4591 o.kind = "foo"; | 4591 o.kind = "foo"; |
| 4592 o.mobileCarriers = buildUnnamed1643(); | 4592 o.mobileCarriers = buildUnnamed1949(); |
| 4593 } | 4593 } |
| 4594 buildCounterMobileCarriersListResponse--; | 4594 buildCounterMobileCarriersListResponse--; |
| 4595 return o; | 4595 return o; |
| 4596 } | 4596 } |
| 4597 | 4597 |
| 4598 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { | 4598 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { |
| 4599 buildCounterMobileCarriersListResponse++; | 4599 buildCounterMobileCarriersListResponse++; |
| 4600 if (buildCounterMobileCarriersListResponse < 3) { | 4600 if (buildCounterMobileCarriersListResponse < 3) { |
| 4601 unittest.expect(o.kind, unittest.equals('foo')); | 4601 unittest.expect(o.kind, unittest.equals('foo')); |
| 4602 checkUnnamed1643(o.mobileCarriers); | 4602 checkUnnamed1949(o.mobileCarriers); |
| 4603 } | 4603 } |
| 4604 buildCounterMobileCarriersListResponse--; | 4604 buildCounterMobileCarriersListResponse--; |
| 4605 } | 4605 } |
| 4606 | 4606 |
| 4607 buildUnnamed1644() { | 4607 buildUnnamed1950() { |
| 4608 var o = new core.List<core.String>(); | 4608 var o = new core.List<core.String>(); |
| 4609 o.add("foo"); | 4609 o.add("foo"); |
| 4610 o.add("foo"); | 4610 o.add("foo"); |
| 4611 return o; | 4611 return o; |
| 4612 } | 4612 } |
| 4613 | 4613 |
| 4614 checkUnnamed1644(core.List<core.String> o) { | 4614 checkUnnamed1950(core.List<core.String> o) { |
| 4615 unittest.expect(o, unittest.hasLength(2)); | 4615 unittest.expect(o, unittest.hasLength(2)); |
| 4616 unittest.expect(o[0], unittest.equals('foo')); | 4616 unittest.expect(o[0], unittest.equals('foo')); |
| 4617 unittest.expect(o[1], unittest.equals('foo')); | 4617 unittest.expect(o[1], unittest.equals('foo')); |
| 4618 } | 4618 } |
| 4619 | 4619 |
| 4620 core.int buildCounterObjectFilter = 0; | 4620 core.int buildCounterObjectFilter = 0; |
| 4621 buildObjectFilter() { | 4621 buildObjectFilter() { |
| 4622 var o = new api.ObjectFilter(); | 4622 var o = new api.ObjectFilter(); |
| 4623 buildCounterObjectFilter++; | 4623 buildCounterObjectFilter++; |
| 4624 if (buildCounterObjectFilter < 3) { | 4624 if (buildCounterObjectFilter < 3) { |
| 4625 o.kind = "foo"; | 4625 o.kind = "foo"; |
| 4626 o.objectIds = buildUnnamed1644(); | 4626 o.objectIds = buildUnnamed1950(); |
| 4627 o.status = "foo"; | 4627 o.status = "foo"; |
| 4628 } | 4628 } |
| 4629 buildCounterObjectFilter--; | 4629 buildCounterObjectFilter--; |
| 4630 return o; | 4630 return o; |
| 4631 } | 4631 } |
| 4632 | 4632 |
| 4633 checkObjectFilter(api.ObjectFilter o) { | 4633 checkObjectFilter(api.ObjectFilter o) { |
| 4634 buildCounterObjectFilter++; | 4634 buildCounterObjectFilter++; |
| 4635 if (buildCounterObjectFilter < 3) { | 4635 if (buildCounterObjectFilter < 3) { |
| 4636 unittest.expect(o.kind, unittest.equals('foo')); | 4636 unittest.expect(o.kind, unittest.equals('foo')); |
| 4637 checkUnnamed1644(o.objectIds); | 4637 checkUnnamed1950(o.objectIds); |
| 4638 unittest.expect(o.status, unittest.equals('foo')); | 4638 unittest.expect(o.status, unittest.equals('foo')); |
| 4639 } | 4639 } |
| 4640 buildCounterObjectFilter--; | 4640 buildCounterObjectFilter--; |
| 4641 } | 4641 } |
| 4642 | 4642 |
| 4643 core.int buildCounterOffsetPosition = 0; | 4643 core.int buildCounterOffsetPosition = 0; |
| 4644 buildOffsetPosition() { | 4644 buildOffsetPosition() { |
| 4645 var o = new api.OffsetPosition(); | 4645 var o = new api.OffsetPosition(); |
| 4646 buildCounterOffsetPosition++; | 4646 buildCounterOffsetPosition++; |
| 4647 if (buildCounterOffsetPosition < 3) { | 4647 if (buildCounterOffsetPosition < 3) { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4731 unittest.expect(o.id, unittest.equals('foo')); | 4731 unittest.expect(o.id, unittest.equals('foo')); |
| 4732 unittest.expect(o.kind, unittest.equals('foo')); | 4732 unittest.expect(o.kind, unittest.equals('foo')); |
| 4733 unittest.expect(o.majorVersion, unittest.equals('foo')); | 4733 unittest.expect(o.majorVersion, unittest.equals('foo')); |
| 4734 unittest.expect(o.minorVersion, unittest.equals('foo')); | 4734 unittest.expect(o.minorVersion, unittest.equals('foo')); |
| 4735 unittest.expect(o.name, unittest.equals('foo')); | 4735 unittest.expect(o.name, unittest.equals('foo')); |
| 4736 checkOperatingSystem(o.operatingSystem); | 4736 checkOperatingSystem(o.operatingSystem); |
| 4737 } | 4737 } |
| 4738 buildCounterOperatingSystemVersion--; | 4738 buildCounterOperatingSystemVersion--; |
| 4739 } | 4739 } |
| 4740 | 4740 |
| 4741 buildUnnamed1645() { | 4741 buildUnnamed1951() { |
| 4742 var o = new core.List<api.OperatingSystemVersion>(); | 4742 var o = new core.List<api.OperatingSystemVersion>(); |
| 4743 o.add(buildOperatingSystemVersion()); | 4743 o.add(buildOperatingSystemVersion()); |
| 4744 o.add(buildOperatingSystemVersion()); | 4744 o.add(buildOperatingSystemVersion()); |
| 4745 return o; | 4745 return o; |
| 4746 } | 4746 } |
| 4747 | 4747 |
| 4748 checkUnnamed1645(core.List<api.OperatingSystemVersion> o) { | 4748 checkUnnamed1951(core.List<api.OperatingSystemVersion> o) { |
| 4749 unittest.expect(o, unittest.hasLength(2)); | 4749 unittest.expect(o, unittest.hasLength(2)); |
| 4750 checkOperatingSystemVersion(o[0]); | 4750 checkOperatingSystemVersion(o[0]); |
| 4751 checkOperatingSystemVersion(o[1]); | 4751 checkOperatingSystemVersion(o[1]); |
| 4752 } | 4752 } |
| 4753 | 4753 |
| 4754 core.int buildCounterOperatingSystemVersionsListResponse = 0; | 4754 core.int buildCounterOperatingSystemVersionsListResponse = 0; |
| 4755 buildOperatingSystemVersionsListResponse() { | 4755 buildOperatingSystemVersionsListResponse() { |
| 4756 var o = new api.OperatingSystemVersionsListResponse(); | 4756 var o = new api.OperatingSystemVersionsListResponse(); |
| 4757 buildCounterOperatingSystemVersionsListResponse++; | 4757 buildCounterOperatingSystemVersionsListResponse++; |
| 4758 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4758 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 4759 o.kind = "foo"; | 4759 o.kind = "foo"; |
| 4760 o.operatingSystemVersions = buildUnnamed1645(); | 4760 o.operatingSystemVersions = buildUnnamed1951(); |
| 4761 } | 4761 } |
| 4762 buildCounterOperatingSystemVersionsListResponse--; | 4762 buildCounterOperatingSystemVersionsListResponse--; |
| 4763 return o; | 4763 return o; |
| 4764 } | 4764 } |
| 4765 | 4765 |
| 4766 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { | 4766 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { |
| 4767 buildCounterOperatingSystemVersionsListResponse++; | 4767 buildCounterOperatingSystemVersionsListResponse++; |
| 4768 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4768 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 4769 unittest.expect(o.kind, unittest.equals('foo')); | 4769 unittest.expect(o.kind, unittest.equals('foo')); |
| 4770 checkUnnamed1645(o.operatingSystemVersions); | 4770 checkUnnamed1951(o.operatingSystemVersions); |
| 4771 } | 4771 } |
| 4772 buildCounterOperatingSystemVersionsListResponse--; | 4772 buildCounterOperatingSystemVersionsListResponse--; |
| 4773 } | 4773 } |
| 4774 | 4774 |
| 4775 buildUnnamed1646() { | 4775 buildUnnamed1952() { |
| 4776 var o = new core.List<api.OperatingSystem>(); | 4776 var o = new core.List<api.OperatingSystem>(); |
| 4777 o.add(buildOperatingSystem()); | 4777 o.add(buildOperatingSystem()); |
| 4778 o.add(buildOperatingSystem()); | 4778 o.add(buildOperatingSystem()); |
| 4779 return o; | 4779 return o; |
| 4780 } | 4780 } |
| 4781 | 4781 |
| 4782 checkUnnamed1646(core.List<api.OperatingSystem> o) { | 4782 checkUnnamed1952(core.List<api.OperatingSystem> o) { |
| 4783 unittest.expect(o, unittest.hasLength(2)); | 4783 unittest.expect(o, unittest.hasLength(2)); |
| 4784 checkOperatingSystem(o[0]); | 4784 checkOperatingSystem(o[0]); |
| 4785 checkOperatingSystem(o[1]); | 4785 checkOperatingSystem(o[1]); |
| 4786 } | 4786 } |
| 4787 | 4787 |
| 4788 core.int buildCounterOperatingSystemsListResponse = 0; | 4788 core.int buildCounterOperatingSystemsListResponse = 0; |
| 4789 buildOperatingSystemsListResponse() { | 4789 buildOperatingSystemsListResponse() { |
| 4790 var o = new api.OperatingSystemsListResponse(); | 4790 var o = new api.OperatingSystemsListResponse(); |
| 4791 buildCounterOperatingSystemsListResponse++; | 4791 buildCounterOperatingSystemsListResponse++; |
| 4792 if (buildCounterOperatingSystemsListResponse < 3) { | 4792 if (buildCounterOperatingSystemsListResponse < 3) { |
| 4793 o.kind = "foo"; | 4793 o.kind = "foo"; |
| 4794 o.operatingSystems = buildUnnamed1646(); | 4794 o.operatingSystems = buildUnnamed1952(); |
| 4795 } | 4795 } |
| 4796 buildCounterOperatingSystemsListResponse--; | 4796 buildCounterOperatingSystemsListResponse--; |
| 4797 return o; | 4797 return o; |
| 4798 } | 4798 } |
| 4799 | 4799 |
| 4800 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { | 4800 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { |
| 4801 buildCounterOperatingSystemsListResponse++; | 4801 buildCounterOperatingSystemsListResponse++; |
| 4802 if (buildCounterOperatingSystemsListResponse < 3) { | 4802 if (buildCounterOperatingSystemsListResponse < 3) { |
| 4803 unittest.expect(o.kind, unittest.equals('foo')); | 4803 unittest.expect(o.kind, unittest.equals('foo')); |
| 4804 checkUnnamed1646(o.operatingSystems); | 4804 checkUnnamed1952(o.operatingSystems); |
| 4805 } | 4805 } |
| 4806 buildCounterOperatingSystemsListResponse--; | 4806 buildCounterOperatingSystemsListResponse--; |
| 4807 } | 4807 } |
| 4808 | 4808 |
| 4809 core.int buildCounterOptimizationActivity = 0; | 4809 core.int buildCounterOptimizationActivity = 0; |
| 4810 buildOptimizationActivity() { | 4810 buildOptimizationActivity() { |
| 4811 var o = new api.OptimizationActivity(); | 4811 var o = new api.OptimizationActivity(); |
| 4812 buildCounterOptimizationActivity++; | 4812 buildCounterOptimizationActivity++; |
| 4813 if (buildCounterOptimizationActivity < 3) { | 4813 if (buildCounterOptimizationActivity < 3) { |
| 4814 o.floodlightActivityId = "foo"; | 4814 o.floodlightActivityId = "foo"; |
| 4815 o.floodlightActivityIdDimensionValue = buildDimensionValue(); | 4815 o.floodlightActivityIdDimensionValue = buildDimensionValue(); |
| 4816 o.weight = 42; | 4816 o.weight = 42; |
| 4817 } | 4817 } |
| 4818 buildCounterOptimizationActivity--; | 4818 buildCounterOptimizationActivity--; |
| 4819 return o; | 4819 return o; |
| 4820 } | 4820 } |
| 4821 | 4821 |
| 4822 checkOptimizationActivity(api.OptimizationActivity o) { | 4822 checkOptimizationActivity(api.OptimizationActivity o) { |
| 4823 buildCounterOptimizationActivity++; | 4823 buildCounterOptimizationActivity++; |
| 4824 if (buildCounterOptimizationActivity < 3) { | 4824 if (buildCounterOptimizationActivity < 3) { |
| 4825 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4825 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4826 checkDimensionValue(o.floodlightActivityIdDimensionValue); | 4826 checkDimensionValue(o.floodlightActivityIdDimensionValue); |
| 4827 unittest.expect(o.weight, unittest.equals(42)); | 4827 unittest.expect(o.weight, unittest.equals(42)); |
| 4828 } | 4828 } |
| 4829 buildCounterOptimizationActivity--; | 4829 buildCounterOptimizationActivity--; |
| 4830 } | 4830 } |
| 4831 | 4831 |
| 4832 buildUnnamed1647() { | 4832 buildUnnamed1953() { |
| 4833 var o = new core.List<core.String>(); | 4833 var o = new core.List<core.String>(); |
| 4834 o.add("foo"); | 4834 o.add("foo"); |
| 4835 o.add("foo"); | 4835 o.add("foo"); |
| 4836 return o; | 4836 return o; |
| 4837 } | 4837 } |
| 4838 | 4838 |
| 4839 checkUnnamed1647(core.List<core.String> o) { | 4839 checkUnnamed1953(core.List<core.String> o) { |
| 4840 unittest.expect(o, unittest.hasLength(2)); | 4840 unittest.expect(o, unittest.hasLength(2)); |
| 4841 unittest.expect(o[0], unittest.equals('foo')); | 4841 unittest.expect(o[0], unittest.equals('foo')); |
| 4842 unittest.expect(o[1], unittest.equals('foo')); | 4842 unittest.expect(o[1], unittest.equals('foo')); |
| 4843 } | 4843 } |
| 4844 | 4844 |
| 4845 buildUnnamed1648() { | 4845 buildUnnamed1954() { |
| 4846 var o = new core.List<api.OrderContact>(); | 4846 var o = new core.List<api.OrderContact>(); |
| 4847 o.add(buildOrderContact()); | 4847 o.add(buildOrderContact()); |
| 4848 o.add(buildOrderContact()); | 4848 o.add(buildOrderContact()); |
| 4849 return o; | 4849 return o; |
| 4850 } | 4850 } |
| 4851 | 4851 |
| 4852 checkUnnamed1648(core.List<api.OrderContact> o) { | 4852 checkUnnamed1954(core.List<api.OrderContact> o) { |
| 4853 unittest.expect(o, unittest.hasLength(2)); | 4853 unittest.expect(o, unittest.hasLength(2)); |
| 4854 checkOrderContact(o[0]); | 4854 checkOrderContact(o[0]); |
| 4855 checkOrderContact(o[1]); | 4855 checkOrderContact(o[1]); |
| 4856 } | 4856 } |
| 4857 | 4857 |
| 4858 buildUnnamed1649() { | 4858 buildUnnamed1955() { |
| 4859 var o = new core.List<core.String>(); | 4859 var o = new core.List<core.String>(); |
| 4860 o.add("foo"); | 4860 o.add("foo"); |
| 4861 o.add("foo"); | 4861 o.add("foo"); |
| 4862 return o; | 4862 return o; |
| 4863 } | 4863 } |
| 4864 | 4864 |
| 4865 checkUnnamed1649(core.List<core.String> o) { | 4865 checkUnnamed1955(core.List<core.String> o) { |
| 4866 unittest.expect(o, unittest.hasLength(2)); | 4866 unittest.expect(o, unittest.hasLength(2)); |
| 4867 unittest.expect(o[0], unittest.equals('foo')); | 4867 unittest.expect(o[0], unittest.equals('foo')); |
| 4868 unittest.expect(o[1], unittest.equals('foo')); | 4868 unittest.expect(o[1], unittest.equals('foo')); |
| 4869 } | 4869 } |
| 4870 | 4870 |
| 4871 buildUnnamed1650() { | 4871 buildUnnamed1956() { |
| 4872 var o = new core.List<core.String>(); | 4872 var o = new core.List<core.String>(); |
| 4873 o.add("foo"); | 4873 o.add("foo"); |
| 4874 o.add("foo"); | 4874 o.add("foo"); |
| 4875 return o; | 4875 return o; |
| 4876 } | 4876 } |
| 4877 | 4877 |
| 4878 checkUnnamed1650(core.List<core.String> o) { | 4878 checkUnnamed1956(core.List<core.String> o) { |
| 4879 unittest.expect(o, unittest.hasLength(2)); | 4879 unittest.expect(o, unittest.hasLength(2)); |
| 4880 unittest.expect(o[0], unittest.equals('foo')); | 4880 unittest.expect(o[0], unittest.equals('foo')); |
| 4881 unittest.expect(o[1], unittest.equals('foo')); | 4881 unittest.expect(o[1], unittest.equals('foo')); |
| 4882 } | 4882 } |
| 4883 | 4883 |
| 4884 core.int buildCounterOrder = 0; | 4884 core.int buildCounterOrder = 0; |
| 4885 buildOrder() { | 4885 buildOrder() { |
| 4886 var o = new api.Order(); | 4886 var o = new api.Order(); |
| 4887 buildCounterOrder++; | 4887 buildCounterOrder++; |
| 4888 if (buildCounterOrder < 3) { | 4888 if (buildCounterOrder < 3) { |
| 4889 o.accountId = "foo"; | 4889 o.accountId = "foo"; |
| 4890 o.advertiserId = "foo"; | 4890 o.advertiserId = "foo"; |
| 4891 o.approverUserProfileIds = buildUnnamed1647(); | 4891 o.approverUserProfileIds = buildUnnamed1953(); |
| 4892 o.buyerInvoiceId = "foo"; | 4892 o.buyerInvoiceId = "foo"; |
| 4893 o.buyerOrganizationName = "foo"; | 4893 o.buyerOrganizationName = "foo"; |
| 4894 o.comments = "foo"; | 4894 o.comments = "foo"; |
| 4895 o.contacts = buildUnnamed1648(); | 4895 o.contacts = buildUnnamed1954(); |
| 4896 o.id = "foo"; | 4896 o.id = "foo"; |
| 4897 o.kind = "foo"; | 4897 o.kind = "foo"; |
| 4898 o.lastModifiedInfo = buildLastModifiedInfo(); | 4898 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4899 o.name = "foo"; | 4899 o.name = "foo"; |
| 4900 o.notes = "foo"; | 4900 o.notes = "foo"; |
| 4901 o.planningTermId = "foo"; | 4901 o.planningTermId = "foo"; |
| 4902 o.projectId = "foo"; | 4902 o.projectId = "foo"; |
| 4903 o.sellerOrderId = "foo"; | 4903 o.sellerOrderId = "foo"; |
| 4904 o.sellerOrganizationName = "foo"; | 4904 o.sellerOrganizationName = "foo"; |
| 4905 o.siteId = buildUnnamed1649(); | 4905 o.siteId = buildUnnamed1955(); |
| 4906 o.siteNames = buildUnnamed1650(); | 4906 o.siteNames = buildUnnamed1956(); |
| 4907 o.subaccountId = "foo"; | 4907 o.subaccountId = "foo"; |
| 4908 o.termsAndConditions = "foo"; | 4908 o.termsAndConditions = "foo"; |
| 4909 } | 4909 } |
| 4910 buildCounterOrder--; | 4910 buildCounterOrder--; |
| 4911 return o; | 4911 return o; |
| 4912 } | 4912 } |
| 4913 | 4913 |
| 4914 checkOrder(api.Order o) { | 4914 checkOrder(api.Order o) { |
| 4915 buildCounterOrder++; | 4915 buildCounterOrder++; |
| 4916 if (buildCounterOrder < 3) { | 4916 if (buildCounterOrder < 3) { |
| 4917 unittest.expect(o.accountId, unittest.equals('foo')); | 4917 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4918 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4918 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4919 checkUnnamed1647(o.approverUserProfileIds); | 4919 checkUnnamed1953(o.approverUserProfileIds); |
| 4920 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); | 4920 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); |
| 4921 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); | 4921 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); |
| 4922 unittest.expect(o.comments, unittest.equals('foo')); | 4922 unittest.expect(o.comments, unittest.equals('foo')); |
| 4923 checkUnnamed1648(o.contacts); | 4923 checkUnnamed1954(o.contacts); |
| 4924 unittest.expect(o.id, unittest.equals('foo')); | 4924 unittest.expect(o.id, unittest.equals('foo')); |
| 4925 unittest.expect(o.kind, unittest.equals('foo')); | 4925 unittest.expect(o.kind, unittest.equals('foo')); |
| 4926 checkLastModifiedInfo(o.lastModifiedInfo); | 4926 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4927 unittest.expect(o.name, unittest.equals('foo')); | 4927 unittest.expect(o.name, unittest.equals('foo')); |
| 4928 unittest.expect(o.notes, unittest.equals('foo')); | 4928 unittest.expect(o.notes, unittest.equals('foo')); |
| 4929 unittest.expect(o.planningTermId, unittest.equals('foo')); | 4929 unittest.expect(o.planningTermId, unittest.equals('foo')); |
| 4930 unittest.expect(o.projectId, unittest.equals('foo')); | 4930 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4931 unittest.expect(o.sellerOrderId, unittest.equals('foo')); | 4931 unittest.expect(o.sellerOrderId, unittest.equals('foo')); |
| 4932 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); | 4932 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); |
| 4933 checkUnnamed1649(o.siteId); | 4933 checkUnnamed1955(o.siteId); |
| 4934 checkUnnamed1650(o.siteNames); | 4934 checkUnnamed1956(o.siteNames); |
| 4935 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4935 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4936 unittest.expect(o.termsAndConditions, unittest.equals('foo')); | 4936 unittest.expect(o.termsAndConditions, unittest.equals('foo')); |
| 4937 } | 4937 } |
| 4938 buildCounterOrder--; | 4938 buildCounterOrder--; |
| 4939 } | 4939 } |
| 4940 | 4940 |
| 4941 core.int buildCounterOrderContact = 0; | 4941 core.int buildCounterOrderContact = 0; |
| 4942 buildOrderContact() { | 4942 buildOrderContact() { |
| 4943 var o = new api.OrderContact(); | 4943 var o = new api.OrderContact(); |
| 4944 buildCounterOrderContact++; | 4944 buildCounterOrderContact++; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 4958 if (buildCounterOrderContact < 3) { | 4958 if (buildCounterOrderContact < 3) { |
| 4959 unittest.expect(o.contactInfo, unittest.equals('foo')); | 4959 unittest.expect(o.contactInfo, unittest.equals('foo')); |
| 4960 unittest.expect(o.contactName, unittest.equals('foo')); | 4960 unittest.expect(o.contactName, unittest.equals('foo')); |
| 4961 unittest.expect(o.contactTitle, unittest.equals('foo')); | 4961 unittest.expect(o.contactTitle, unittest.equals('foo')); |
| 4962 unittest.expect(o.contactType, unittest.equals('foo')); | 4962 unittest.expect(o.contactType, unittest.equals('foo')); |
| 4963 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); | 4963 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); |
| 4964 } | 4964 } |
| 4965 buildCounterOrderContact--; | 4965 buildCounterOrderContact--; |
| 4966 } | 4966 } |
| 4967 | 4967 |
| 4968 buildUnnamed1651() { | 4968 buildUnnamed1957() { |
| 4969 var o = new core.List<core.String>(); | 4969 var o = new core.List<core.String>(); |
| 4970 o.add("foo"); | 4970 o.add("foo"); |
| 4971 o.add("foo"); | 4971 o.add("foo"); |
| 4972 return o; | 4972 return o; |
| 4973 } | 4973 } |
| 4974 | 4974 |
| 4975 checkUnnamed1651(core.List<core.String> o) { | 4975 checkUnnamed1957(core.List<core.String> o) { |
| 4976 unittest.expect(o, unittest.hasLength(2)); | 4976 unittest.expect(o, unittest.hasLength(2)); |
| 4977 unittest.expect(o[0], unittest.equals('foo')); | 4977 unittest.expect(o[0], unittest.equals('foo')); |
| 4978 unittest.expect(o[1], unittest.equals('foo')); | 4978 unittest.expect(o[1], unittest.equals('foo')); |
| 4979 } | 4979 } |
| 4980 | 4980 |
| 4981 buildUnnamed1652() { | 4981 buildUnnamed1958() { |
| 4982 var o = new core.List<core.String>(); | 4982 var o = new core.List<core.String>(); |
| 4983 o.add("foo"); | 4983 o.add("foo"); |
| 4984 o.add("foo"); | 4984 o.add("foo"); |
| 4985 return o; | 4985 return o; |
| 4986 } | 4986 } |
| 4987 | 4987 |
| 4988 checkUnnamed1652(core.List<core.String> o) { | 4988 checkUnnamed1958(core.List<core.String> o) { |
| 4989 unittest.expect(o, unittest.hasLength(2)); | 4989 unittest.expect(o, unittest.hasLength(2)); |
| 4990 unittest.expect(o[0], unittest.equals('foo')); | 4990 unittest.expect(o[0], unittest.equals('foo')); |
| 4991 unittest.expect(o[1], unittest.equals('foo')); | 4991 unittest.expect(o[1], unittest.equals('foo')); |
| 4992 } | 4992 } |
| 4993 | 4993 |
| 4994 core.int buildCounterOrderDocument = 0; | 4994 core.int buildCounterOrderDocument = 0; |
| 4995 buildOrderDocument() { | 4995 buildOrderDocument() { |
| 4996 var o = new api.OrderDocument(); | 4996 var o = new api.OrderDocument(); |
| 4997 buildCounterOrderDocument++; | 4997 buildCounterOrderDocument++; |
| 4998 if (buildCounterOrderDocument < 3) { | 4998 if (buildCounterOrderDocument < 3) { |
| 4999 o.accountId = "foo"; | 4999 o.accountId = "foo"; |
| 5000 o.advertiserId = "foo"; | 5000 o.advertiserId = "foo"; |
| 5001 o.amendedOrderDocumentId = "foo"; | 5001 o.amendedOrderDocumentId = "foo"; |
| 5002 o.approvedByUserProfileIds = buildUnnamed1651(); | 5002 o.approvedByUserProfileIds = buildUnnamed1957(); |
| 5003 o.cancelled = true; | 5003 o.cancelled = true; |
| 5004 o.createdInfo = buildLastModifiedInfo(); | 5004 o.createdInfo = buildLastModifiedInfo(); |
| 5005 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5005 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5006 o.id = "foo"; | 5006 o.id = "foo"; |
| 5007 o.kind = "foo"; | 5007 o.kind = "foo"; |
| 5008 o.lastSentRecipients = buildUnnamed1652(); | 5008 o.lastSentRecipients = buildUnnamed1958(); |
| 5009 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); | 5009 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 5010 o.orderId = "foo"; | 5010 o.orderId = "foo"; |
| 5011 o.projectId = "foo"; | 5011 o.projectId = "foo"; |
| 5012 o.signed = true; | 5012 o.signed = true; |
| 5013 o.subaccountId = "foo"; | 5013 o.subaccountId = "foo"; |
| 5014 o.title = "foo"; | 5014 o.title = "foo"; |
| 5015 o.type = "foo"; | 5015 o.type = "foo"; |
| 5016 } | 5016 } |
| 5017 buildCounterOrderDocument--; | 5017 buildCounterOrderDocument--; |
| 5018 return o; | 5018 return o; |
| 5019 } | 5019 } |
| 5020 | 5020 |
| 5021 checkOrderDocument(api.OrderDocument o) { | 5021 checkOrderDocument(api.OrderDocument o) { |
| 5022 buildCounterOrderDocument++; | 5022 buildCounterOrderDocument++; |
| 5023 if (buildCounterOrderDocument < 3) { | 5023 if (buildCounterOrderDocument < 3) { |
| 5024 unittest.expect(o.accountId, unittest.equals('foo')); | 5024 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5025 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5025 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5026 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); | 5026 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); |
| 5027 checkUnnamed1651(o.approvedByUserProfileIds); | 5027 checkUnnamed1957(o.approvedByUserProfileIds); |
| 5028 unittest.expect(o.cancelled, unittest.isTrue); | 5028 unittest.expect(o.cancelled, unittest.isTrue); |
| 5029 checkLastModifiedInfo(o.createdInfo); | 5029 checkLastModifiedInfo(o.createdInfo); |
| 5030 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); | 5030 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); |
| 5031 unittest.expect(o.id, unittest.equals('foo')); | 5031 unittest.expect(o.id, unittest.equals('foo')); |
| 5032 unittest.expect(o.kind, unittest.equals('foo')); | 5032 unittest.expect(o.kind, unittest.equals('foo')); |
| 5033 checkUnnamed1652(o.lastSentRecipients); | 5033 checkUnnamed1958(o.lastSentRecipients); |
| 5034 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); | 5034 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); |
| 5035 unittest.expect(o.orderId, unittest.equals('foo')); | 5035 unittest.expect(o.orderId, unittest.equals('foo')); |
| 5036 unittest.expect(o.projectId, unittest.equals('foo')); | 5036 unittest.expect(o.projectId, unittest.equals('foo')); |
| 5037 unittest.expect(o.signed, unittest.isTrue); | 5037 unittest.expect(o.signed, unittest.isTrue); |
| 5038 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5038 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5039 unittest.expect(o.title, unittest.equals('foo')); | 5039 unittest.expect(o.title, unittest.equals('foo')); |
| 5040 unittest.expect(o.type, unittest.equals('foo')); | 5040 unittest.expect(o.type, unittest.equals('foo')); |
| 5041 } | 5041 } |
| 5042 buildCounterOrderDocument--; | 5042 buildCounterOrderDocument--; |
| 5043 } | 5043 } |
| 5044 | 5044 |
| 5045 buildUnnamed1653() { | 5045 buildUnnamed1959() { |
| 5046 var o = new core.List<api.OrderDocument>(); | 5046 var o = new core.List<api.OrderDocument>(); |
| 5047 o.add(buildOrderDocument()); | 5047 o.add(buildOrderDocument()); |
| 5048 o.add(buildOrderDocument()); | 5048 o.add(buildOrderDocument()); |
| 5049 return o; | 5049 return o; |
| 5050 } | 5050 } |
| 5051 | 5051 |
| 5052 checkUnnamed1653(core.List<api.OrderDocument> o) { | 5052 checkUnnamed1959(core.List<api.OrderDocument> o) { |
| 5053 unittest.expect(o, unittest.hasLength(2)); | 5053 unittest.expect(o, unittest.hasLength(2)); |
| 5054 checkOrderDocument(o[0]); | 5054 checkOrderDocument(o[0]); |
| 5055 checkOrderDocument(o[1]); | 5055 checkOrderDocument(o[1]); |
| 5056 } | 5056 } |
| 5057 | 5057 |
| 5058 core.int buildCounterOrderDocumentsListResponse = 0; | 5058 core.int buildCounterOrderDocumentsListResponse = 0; |
| 5059 buildOrderDocumentsListResponse() { | 5059 buildOrderDocumentsListResponse() { |
| 5060 var o = new api.OrderDocumentsListResponse(); | 5060 var o = new api.OrderDocumentsListResponse(); |
| 5061 buildCounterOrderDocumentsListResponse++; | 5061 buildCounterOrderDocumentsListResponse++; |
| 5062 if (buildCounterOrderDocumentsListResponse < 3) { | 5062 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5063 o.kind = "foo"; | 5063 o.kind = "foo"; |
| 5064 o.nextPageToken = "foo"; | 5064 o.nextPageToken = "foo"; |
| 5065 o.orderDocuments = buildUnnamed1653(); | 5065 o.orderDocuments = buildUnnamed1959(); |
| 5066 } | 5066 } |
| 5067 buildCounterOrderDocumentsListResponse--; | 5067 buildCounterOrderDocumentsListResponse--; |
| 5068 return o; | 5068 return o; |
| 5069 } | 5069 } |
| 5070 | 5070 |
| 5071 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { | 5071 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { |
| 5072 buildCounterOrderDocumentsListResponse++; | 5072 buildCounterOrderDocumentsListResponse++; |
| 5073 if (buildCounterOrderDocumentsListResponse < 3) { | 5073 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5074 unittest.expect(o.kind, unittest.equals('foo')); | 5074 unittest.expect(o.kind, unittest.equals('foo')); |
| 5075 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5075 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5076 checkUnnamed1653(o.orderDocuments); | 5076 checkUnnamed1959(o.orderDocuments); |
| 5077 } | 5077 } |
| 5078 buildCounterOrderDocumentsListResponse--; | 5078 buildCounterOrderDocumentsListResponse--; |
| 5079 } | 5079 } |
| 5080 | 5080 |
| 5081 buildUnnamed1654() { | 5081 buildUnnamed1960() { |
| 5082 var o = new core.List<api.Order>(); | 5082 var o = new core.List<api.Order>(); |
| 5083 o.add(buildOrder()); | 5083 o.add(buildOrder()); |
| 5084 o.add(buildOrder()); | 5084 o.add(buildOrder()); |
| 5085 return o; | 5085 return o; |
| 5086 } | 5086 } |
| 5087 | 5087 |
| 5088 checkUnnamed1654(core.List<api.Order> o) { | 5088 checkUnnamed1960(core.List<api.Order> o) { |
| 5089 unittest.expect(o, unittest.hasLength(2)); | 5089 unittest.expect(o, unittest.hasLength(2)); |
| 5090 checkOrder(o[0]); | 5090 checkOrder(o[0]); |
| 5091 checkOrder(o[1]); | 5091 checkOrder(o[1]); |
| 5092 } | 5092 } |
| 5093 | 5093 |
| 5094 core.int buildCounterOrdersListResponse = 0; | 5094 core.int buildCounterOrdersListResponse = 0; |
| 5095 buildOrdersListResponse() { | 5095 buildOrdersListResponse() { |
| 5096 var o = new api.OrdersListResponse(); | 5096 var o = new api.OrdersListResponse(); |
| 5097 buildCounterOrdersListResponse++; | 5097 buildCounterOrdersListResponse++; |
| 5098 if (buildCounterOrdersListResponse < 3) { | 5098 if (buildCounterOrdersListResponse < 3) { |
| 5099 o.kind = "foo"; | 5099 o.kind = "foo"; |
| 5100 o.nextPageToken = "foo"; | 5100 o.nextPageToken = "foo"; |
| 5101 o.orders = buildUnnamed1654(); | 5101 o.orders = buildUnnamed1960(); |
| 5102 } | 5102 } |
| 5103 buildCounterOrdersListResponse--; | 5103 buildCounterOrdersListResponse--; |
| 5104 return o; | 5104 return o; |
| 5105 } | 5105 } |
| 5106 | 5106 |
| 5107 checkOrdersListResponse(api.OrdersListResponse o) { | 5107 checkOrdersListResponse(api.OrdersListResponse o) { |
| 5108 buildCounterOrdersListResponse++; | 5108 buildCounterOrdersListResponse++; |
| 5109 if (buildCounterOrdersListResponse < 3) { | 5109 if (buildCounterOrdersListResponse < 3) { |
| 5110 unittest.expect(o.kind, unittest.equals('foo')); | 5110 unittest.expect(o.kind, unittest.equals('foo')); |
| 5111 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5111 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5112 checkUnnamed1654(o.orders); | 5112 checkUnnamed1960(o.orders); |
| 5113 } | 5113 } |
| 5114 buildCounterOrdersListResponse--; | 5114 buildCounterOrdersListResponse--; |
| 5115 } | 5115 } |
| 5116 | 5116 |
| 5117 buildUnnamed1655() { | 5117 buildUnnamed1961() { |
| 5118 var o = new core.List<api.Dimension>(); | 5118 var o = new core.List<api.Dimension>(); |
| 5119 o.add(buildDimension()); | 5119 o.add(buildDimension()); |
| 5120 o.add(buildDimension()); | 5120 o.add(buildDimension()); |
| 5121 return o; | 5121 return o; |
| 5122 } | 5122 } |
| 5123 | 5123 |
| 5124 checkUnnamed1655(core.List<api.Dimension> o) { | 5124 checkUnnamed1961(core.List<api.Dimension> o) { |
| 5125 unittest.expect(o, unittest.hasLength(2)); | 5125 unittest.expect(o, unittest.hasLength(2)); |
| 5126 checkDimension(o[0]); | 5126 checkDimension(o[0]); |
| 5127 checkDimension(o[1]); | 5127 checkDimension(o[1]); |
| 5128 } | 5128 } |
| 5129 | 5129 |
| 5130 buildUnnamed1656() { | 5130 buildUnnamed1962() { |
| 5131 var o = new core.List<api.Dimension>(); | 5131 var o = new core.List<api.Dimension>(); |
| 5132 o.add(buildDimension()); | 5132 o.add(buildDimension()); |
| 5133 o.add(buildDimension()); | 5133 o.add(buildDimension()); |
| 5134 return o; | 5134 return o; |
| 5135 } | 5135 } |
| 5136 | 5136 |
| 5137 checkUnnamed1656(core.List<api.Dimension> o) { | 5137 checkUnnamed1962(core.List<api.Dimension> o) { |
| 5138 unittest.expect(o, unittest.hasLength(2)); | 5138 unittest.expect(o, unittest.hasLength(2)); |
| 5139 checkDimension(o[0]); | 5139 checkDimension(o[0]); |
| 5140 checkDimension(o[1]); | 5140 checkDimension(o[1]); |
| 5141 } | 5141 } |
| 5142 | 5142 |
| 5143 buildUnnamed1657() { | 5143 buildUnnamed1963() { |
| 5144 var o = new core.List<api.Metric>(); | 5144 var o = new core.List<api.Metric>(); |
| 5145 o.add(buildMetric()); | 5145 o.add(buildMetric()); |
| 5146 o.add(buildMetric()); | 5146 o.add(buildMetric()); |
| 5147 return o; | 5147 return o; |
| 5148 } | 5148 } |
| 5149 | 5149 |
| 5150 checkUnnamed1657(core.List<api.Metric> o) { | 5150 checkUnnamed1963(core.List<api.Metric> o) { |
| 5151 unittest.expect(o, unittest.hasLength(2)); | 5151 unittest.expect(o, unittest.hasLength(2)); |
| 5152 checkMetric(o[0]); | 5152 checkMetric(o[0]); |
| 5153 checkMetric(o[1]); | 5153 checkMetric(o[1]); |
| 5154 } | 5154 } |
| 5155 | 5155 |
| 5156 buildUnnamed1658() { | 5156 buildUnnamed1964() { |
| 5157 var o = new core.List<api.Dimension>(); | 5157 var o = new core.List<api.Dimension>(); |
| 5158 o.add(buildDimension()); | 5158 o.add(buildDimension()); |
| 5159 o.add(buildDimension()); | 5159 o.add(buildDimension()); |
| 5160 return o; | 5160 return o; |
| 5161 } | 5161 } |
| 5162 | 5162 |
| 5163 checkUnnamed1658(core.List<api.Dimension> o) { | 5163 checkUnnamed1964(core.List<api.Dimension> o) { |
| 5164 unittest.expect(o, unittest.hasLength(2)); | 5164 unittest.expect(o, unittest.hasLength(2)); |
| 5165 checkDimension(o[0]); | 5165 checkDimension(o[0]); |
| 5166 checkDimension(o[1]); | 5166 checkDimension(o[1]); |
| 5167 } | 5167 } |
| 5168 | 5168 |
| 5169 core.int buildCounterPathToConversionReportCompatibleFields = 0; | 5169 core.int buildCounterPathToConversionReportCompatibleFields = 0; |
| 5170 buildPathToConversionReportCompatibleFields() { | 5170 buildPathToConversionReportCompatibleFields() { |
| 5171 var o = new api.PathToConversionReportCompatibleFields(); | 5171 var o = new api.PathToConversionReportCompatibleFields(); |
| 5172 buildCounterPathToConversionReportCompatibleFields++; | 5172 buildCounterPathToConversionReportCompatibleFields++; |
| 5173 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5173 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5174 o.conversionDimensions = buildUnnamed1655(); | 5174 o.conversionDimensions = buildUnnamed1961(); |
| 5175 o.customFloodlightVariables = buildUnnamed1656(); | 5175 o.customFloodlightVariables = buildUnnamed1962(); |
| 5176 o.kind = "foo"; | 5176 o.kind = "foo"; |
| 5177 o.metrics = buildUnnamed1657(); | 5177 o.metrics = buildUnnamed1963(); |
| 5178 o.perInteractionDimensions = buildUnnamed1658(); | 5178 o.perInteractionDimensions = buildUnnamed1964(); |
| 5179 } | 5179 } |
| 5180 buildCounterPathToConversionReportCompatibleFields--; | 5180 buildCounterPathToConversionReportCompatibleFields--; |
| 5181 return o; | 5181 return o; |
| 5182 } | 5182 } |
| 5183 | 5183 |
| 5184 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { | 5184 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { |
| 5185 buildCounterPathToConversionReportCompatibleFields++; | 5185 buildCounterPathToConversionReportCompatibleFields++; |
| 5186 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5186 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5187 checkUnnamed1655(o.conversionDimensions); | 5187 checkUnnamed1961(o.conversionDimensions); |
| 5188 checkUnnamed1656(o.customFloodlightVariables); | 5188 checkUnnamed1962(o.customFloodlightVariables); |
| 5189 unittest.expect(o.kind, unittest.equals('foo')); | 5189 unittest.expect(o.kind, unittest.equals('foo')); |
| 5190 checkUnnamed1657(o.metrics); | 5190 checkUnnamed1963(o.metrics); |
| 5191 checkUnnamed1658(o.perInteractionDimensions); | 5191 checkUnnamed1964(o.perInteractionDimensions); |
| 5192 } | 5192 } |
| 5193 buildCounterPathToConversionReportCompatibleFields--; | 5193 buildCounterPathToConversionReportCompatibleFields--; |
| 5194 } | 5194 } |
| 5195 | 5195 |
| 5196 buildUnnamed1659() { | 5196 buildUnnamed1965() { |
| 5197 var o = new core.List<core.String>(); | 5197 var o = new core.List<core.String>(); |
| 5198 o.add("foo"); | 5198 o.add("foo"); |
| 5199 o.add("foo"); | 5199 o.add("foo"); |
| 5200 return o; | 5200 return o; |
| 5201 } | 5201 } |
| 5202 | 5202 |
| 5203 checkUnnamed1659(core.List<core.String> o) { | 5203 checkUnnamed1965(core.List<core.String> o) { |
| 5204 unittest.expect(o, unittest.hasLength(2)); | 5204 unittest.expect(o, unittest.hasLength(2)); |
| 5205 unittest.expect(o[0], unittest.equals('foo')); | 5205 unittest.expect(o[0], unittest.equals('foo')); |
| 5206 unittest.expect(o[1], unittest.equals('foo')); | 5206 unittest.expect(o[1], unittest.equals('foo')); |
| 5207 } | 5207 } |
| 5208 | 5208 |
| 5209 core.int buildCounterPlacement = 0; | 5209 core.int buildCounterPlacement = 0; |
| 5210 buildPlacement() { | 5210 buildPlacement() { |
| 5211 var o = new api.Placement(); | 5211 var o = new api.Placement(); |
| 5212 buildCounterPlacement++; | 5212 buildCounterPlacement++; |
| 5213 if (buildCounterPlacement < 3) { | 5213 if (buildCounterPlacement < 3) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5238 o.placementStrategyId = "foo"; | 5238 o.placementStrategyId = "foo"; |
| 5239 o.pricingSchedule = buildPricingSchedule(); | 5239 o.pricingSchedule = buildPricingSchedule(); |
| 5240 o.primary = true; | 5240 o.primary = true; |
| 5241 o.publisherUpdateInfo = buildLastModifiedInfo(); | 5241 o.publisherUpdateInfo = buildLastModifiedInfo(); |
| 5242 o.siteId = "foo"; | 5242 o.siteId = "foo"; |
| 5243 o.siteIdDimensionValue = buildDimensionValue(); | 5243 o.siteIdDimensionValue = buildDimensionValue(); |
| 5244 o.size = buildSize(); | 5244 o.size = buildSize(); |
| 5245 o.sslRequired = true; | 5245 o.sslRequired = true; |
| 5246 o.status = "foo"; | 5246 o.status = "foo"; |
| 5247 o.subaccountId = "foo"; | 5247 o.subaccountId = "foo"; |
| 5248 o.tagFormats = buildUnnamed1659(); | 5248 o.tagFormats = buildUnnamed1965(); |
| 5249 o.tagSetting = buildTagSetting(); | 5249 o.tagSetting = buildTagSetting(); |
| 5250 } | 5250 } |
| 5251 buildCounterPlacement--; | 5251 buildCounterPlacement--; |
| 5252 return o; | 5252 return o; |
| 5253 } | 5253 } |
| 5254 | 5254 |
| 5255 checkPlacement(api.Placement o) { | 5255 checkPlacement(api.Placement o) { |
| 5256 buildCounterPlacement++; | 5256 buildCounterPlacement++; |
| 5257 if (buildCounterPlacement < 3) { | 5257 if (buildCounterPlacement < 3) { |
| 5258 unittest.expect(o.accountId, unittest.equals('foo')); | 5258 unittest.expect(o.accountId, unittest.equals('foo')); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 5282 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5282 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5283 checkPricingSchedule(o.pricingSchedule); | 5283 checkPricingSchedule(o.pricingSchedule); |
| 5284 unittest.expect(o.primary, unittest.isTrue); | 5284 unittest.expect(o.primary, unittest.isTrue); |
| 5285 checkLastModifiedInfo(o.publisherUpdateInfo); | 5285 checkLastModifiedInfo(o.publisherUpdateInfo); |
| 5286 unittest.expect(o.siteId, unittest.equals('foo')); | 5286 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5287 checkDimensionValue(o.siteIdDimensionValue); | 5287 checkDimensionValue(o.siteIdDimensionValue); |
| 5288 checkSize(o.size); | 5288 checkSize(o.size); |
| 5289 unittest.expect(o.sslRequired, unittest.isTrue); | 5289 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5290 unittest.expect(o.status, unittest.equals('foo')); | 5290 unittest.expect(o.status, unittest.equals('foo')); |
| 5291 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5291 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5292 checkUnnamed1659(o.tagFormats); | 5292 checkUnnamed1965(o.tagFormats); |
| 5293 checkTagSetting(o.tagSetting); | 5293 checkTagSetting(o.tagSetting); |
| 5294 } | 5294 } |
| 5295 buildCounterPlacement--; | 5295 buildCounterPlacement--; |
| 5296 } | 5296 } |
| 5297 | 5297 |
| 5298 core.int buildCounterPlacementAssignment = 0; | 5298 core.int buildCounterPlacementAssignment = 0; |
| 5299 buildPlacementAssignment() { | 5299 buildPlacementAssignment() { |
| 5300 var o = new api.PlacementAssignment(); | 5300 var o = new api.PlacementAssignment(); |
| 5301 buildCounterPlacementAssignment++; | 5301 buildCounterPlacementAssignment++; |
| 5302 if (buildCounterPlacementAssignment < 3) { | 5302 if (buildCounterPlacementAssignment < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 5313 buildCounterPlacementAssignment++; | 5313 buildCounterPlacementAssignment++; |
| 5314 if (buildCounterPlacementAssignment < 3) { | 5314 if (buildCounterPlacementAssignment < 3) { |
| 5315 unittest.expect(o.active, unittest.isTrue); | 5315 unittest.expect(o.active, unittest.isTrue); |
| 5316 unittest.expect(o.placementId, unittest.equals('foo')); | 5316 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5317 checkDimensionValue(o.placementIdDimensionValue); | 5317 checkDimensionValue(o.placementIdDimensionValue); |
| 5318 unittest.expect(o.sslRequired, unittest.isTrue); | 5318 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5319 } | 5319 } |
| 5320 buildCounterPlacementAssignment--; | 5320 buildCounterPlacementAssignment--; |
| 5321 } | 5321 } |
| 5322 | 5322 |
| 5323 buildUnnamed1660() { | 5323 buildUnnamed1966() { |
| 5324 var o = new core.List<core.String>(); | 5324 var o = new core.List<core.String>(); |
| 5325 o.add("foo"); | 5325 o.add("foo"); |
| 5326 o.add("foo"); | 5326 o.add("foo"); |
| 5327 return o; | 5327 return o; |
| 5328 } | 5328 } |
| 5329 | 5329 |
| 5330 checkUnnamed1660(core.List<core.String> o) { | 5330 checkUnnamed1966(core.List<core.String> o) { |
| 5331 unittest.expect(o, unittest.hasLength(2)); | 5331 unittest.expect(o, unittest.hasLength(2)); |
| 5332 unittest.expect(o[0], unittest.equals('foo')); | 5332 unittest.expect(o[0], unittest.equals('foo')); |
| 5333 unittest.expect(o[1], unittest.equals('foo')); | 5333 unittest.expect(o[1], unittest.equals('foo')); |
| 5334 } | 5334 } |
| 5335 | 5335 |
| 5336 core.int buildCounterPlacementGroup = 0; | 5336 core.int buildCounterPlacementGroup = 0; |
| 5337 buildPlacementGroup() { | 5337 buildPlacementGroup() { |
| 5338 var o = new api.PlacementGroup(); | 5338 var o = new api.PlacementGroup(); |
| 5339 buildCounterPlacementGroup++; | 5339 buildCounterPlacementGroup++; |
| 5340 if (buildCounterPlacementGroup < 3) { | 5340 if (buildCounterPlacementGroup < 3) { |
| 5341 o.accountId = "foo"; | 5341 o.accountId = "foo"; |
| 5342 o.advertiserId = "foo"; | 5342 o.advertiserId = "foo"; |
| 5343 o.advertiserIdDimensionValue = buildDimensionValue(); | 5343 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 5344 o.archived = true; | 5344 o.archived = true; |
| 5345 o.campaignId = "foo"; | 5345 o.campaignId = "foo"; |
| 5346 o.campaignIdDimensionValue = buildDimensionValue(); | 5346 o.campaignIdDimensionValue = buildDimensionValue(); |
| 5347 o.childPlacementIds = buildUnnamed1660(); | 5347 o.childPlacementIds = buildUnnamed1966(); |
| 5348 o.comment = "foo"; | 5348 o.comment = "foo"; |
| 5349 o.contentCategoryId = "foo"; | 5349 o.contentCategoryId = "foo"; |
| 5350 o.createInfo = buildLastModifiedInfo(); | 5350 o.createInfo = buildLastModifiedInfo(); |
| 5351 o.directorySiteId = "foo"; | 5351 o.directorySiteId = "foo"; |
| 5352 o.directorySiteIdDimensionValue = buildDimensionValue(); | 5352 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 5353 o.externalId = "foo"; | 5353 o.externalId = "foo"; |
| 5354 o.id = "foo"; | 5354 o.id = "foo"; |
| 5355 o.idDimensionValue = buildDimensionValue(); | 5355 o.idDimensionValue = buildDimensionValue(); |
| 5356 o.kind = "foo"; | 5356 o.kind = "foo"; |
| 5357 o.lastModifiedInfo = buildLastModifiedInfo(); | 5357 o.lastModifiedInfo = buildLastModifiedInfo(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 5371 | 5371 |
| 5372 checkPlacementGroup(api.PlacementGroup o) { | 5372 checkPlacementGroup(api.PlacementGroup o) { |
| 5373 buildCounterPlacementGroup++; | 5373 buildCounterPlacementGroup++; |
| 5374 if (buildCounterPlacementGroup < 3) { | 5374 if (buildCounterPlacementGroup < 3) { |
| 5375 unittest.expect(o.accountId, unittest.equals('foo')); | 5375 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5376 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5376 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5377 checkDimensionValue(o.advertiserIdDimensionValue); | 5377 checkDimensionValue(o.advertiserIdDimensionValue); |
| 5378 unittest.expect(o.archived, unittest.isTrue); | 5378 unittest.expect(o.archived, unittest.isTrue); |
| 5379 unittest.expect(o.campaignId, unittest.equals('foo')); | 5379 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 5380 checkDimensionValue(o.campaignIdDimensionValue); | 5380 checkDimensionValue(o.campaignIdDimensionValue); |
| 5381 checkUnnamed1660(o.childPlacementIds); | 5381 checkUnnamed1966(o.childPlacementIds); |
| 5382 unittest.expect(o.comment, unittest.equals('foo')); | 5382 unittest.expect(o.comment, unittest.equals('foo')); |
| 5383 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 5383 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 5384 checkLastModifiedInfo(o.createInfo); | 5384 checkLastModifiedInfo(o.createInfo); |
| 5385 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 5385 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 5386 checkDimensionValue(o.directorySiteIdDimensionValue); | 5386 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 5387 unittest.expect(o.externalId, unittest.equals('foo')); | 5387 unittest.expect(o.externalId, unittest.equals('foo')); |
| 5388 unittest.expect(o.id, unittest.equals('foo')); | 5388 unittest.expect(o.id, unittest.equals('foo')); |
| 5389 checkDimensionValue(o.idDimensionValue); | 5389 checkDimensionValue(o.idDimensionValue); |
| 5390 unittest.expect(o.kind, unittest.equals('foo')); | 5390 unittest.expect(o.kind, unittest.equals('foo')); |
| 5391 checkLastModifiedInfo(o.lastModifiedInfo); | 5391 checkLastModifiedInfo(o.lastModifiedInfo); |
| 5392 unittest.expect(o.name, unittest.equals('foo')); | 5392 unittest.expect(o.name, unittest.equals('foo')); |
| 5393 unittest.expect(o.placementGroupType, unittest.equals('foo')); | 5393 unittest.expect(o.placementGroupType, unittest.equals('foo')); |
| 5394 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5394 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5395 checkPricingSchedule(o.pricingSchedule); | 5395 checkPricingSchedule(o.pricingSchedule); |
| 5396 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); | 5396 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); |
| 5397 checkDimensionValue(o.primaryPlacementIdDimensionValue); | 5397 checkDimensionValue(o.primaryPlacementIdDimensionValue); |
| 5398 unittest.expect(o.siteId, unittest.equals('foo')); | 5398 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5399 checkDimensionValue(o.siteIdDimensionValue); | 5399 checkDimensionValue(o.siteIdDimensionValue); |
| 5400 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5400 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5401 } | 5401 } |
| 5402 buildCounterPlacementGroup--; | 5402 buildCounterPlacementGroup--; |
| 5403 } | 5403 } |
| 5404 | 5404 |
| 5405 buildUnnamed1661() { | 5405 buildUnnamed1967() { |
| 5406 var o = new core.List<api.PlacementGroup>(); | 5406 var o = new core.List<api.PlacementGroup>(); |
| 5407 o.add(buildPlacementGroup()); | 5407 o.add(buildPlacementGroup()); |
| 5408 o.add(buildPlacementGroup()); | 5408 o.add(buildPlacementGroup()); |
| 5409 return o; | 5409 return o; |
| 5410 } | 5410 } |
| 5411 | 5411 |
| 5412 checkUnnamed1661(core.List<api.PlacementGroup> o) { | 5412 checkUnnamed1967(core.List<api.PlacementGroup> o) { |
| 5413 unittest.expect(o, unittest.hasLength(2)); | 5413 unittest.expect(o, unittest.hasLength(2)); |
| 5414 checkPlacementGroup(o[0]); | 5414 checkPlacementGroup(o[0]); |
| 5415 checkPlacementGroup(o[1]); | 5415 checkPlacementGroup(o[1]); |
| 5416 } | 5416 } |
| 5417 | 5417 |
| 5418 core.int buildCounterPlacementGroupsListResponse = 0; | 5418 core.int buildCounterPlacementGroupsListResponse = 0; |
| 5419 buildPlacementGroupsListResponse() { | 5419 buildPlacementGroupsListResponse() { |
| 5420 var o = new api.PlacementGroupsListResponse(); | 5420 var o = new api.PlacementGroupsListResponse(); |
| 5421 buildCounterPlacementGroupsListResponse++; | 5421 buildCounterPlacementGroupsListResponse++; |
| 5422 if (buildCounterPlacementGroupsListResponse < 3) { | 5422 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5423 o.kind = "foo"; | 5423 o.kind = "foo"; |
| 5424 o.nextPageToken = "foo"; | 5424 o.nextPageToken = "foo"; |
| 5425 o.placementGroups = buildUnnamed1661(); | 5425 o.placementGroups = buildUnnamed1967(); |
| 5426 } | 5426 } |
| 5427 buildCounterPlacementGroupsListResponse--; | 5427 buildCounterPlacementGroupsListResponse--; |
| 5428 return o; | 5428 return o; |
| 5429 } | 5429 } |
| 5430 | 5430 |
| 5431 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { | 5431 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { |
| 5432 buildCounterPlacementGroupsListResponse++; | 5432 buildCounterPlacementGroupsListResponse++; |
| 5433 if (buildCounterPlacementGroupsListResponse < 3) { | 5433 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5434 unittest.expect(o.kind, unittest.equals('foo')); | 5434 unittest.expect(o.kind, unittest.equals('foo')); |
| 5435 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5435 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5436 checkUnnamed1661(o.placementGroups); | 5436 checkUnnamed1967(o.placementGroups); |
| 5437 } | 5437 } |
| 5438 buildCounterPlacementGroupsListResponse--; | 5438 buildCounterPlacementGroupsListResponse--; |
| 5439 } | 5439 } |
| 5440 | 5440 |
| 5441 buildUnnamed1662() { | 5441 buildUnnamed1968() { |
| 5442 var o = new core.List<api.PlacementStrategy>(); | 5442 var o = new core.List<api.PlacementStrategy>(); |
| 5443 o.add(buildPlacementStrategy()); | 5443 o.add(buildPlacementStrategy()); |
| 5444 o.add(buildPlacementStrategy()); | 5444 o.add(buildPlacementStrategy()); |
| 5445 return o; | 5445 return o; |
| 5446 } | 5446 } |
| 5447 | 5447 |
| 5448 checkUnnamed1662(core.List<api.PlacementStrategy> o) { | 5448 checkUnnamed1968(core.List<api.PlacementStrategy> o) { |
| 5449 unittest.expect(o, unittest.hasLength(2)); | 5449 unittest.expect(o, unittest.hasLength(2)); |
| 5450 checkPlacementStrategy(o[0]); | 5450 checkPlacementStrategy(o[0]); |
| 5451 checkPlacementStrategy(o[1]); | 5451 checkPlacementStrategy(o[1]); |
| 5452 } | 5452 } |
| 5453 | 5453 |
| 5454 core.int buildCounterPlacementStrategiesListResponse = 0; | 5454 core.int buildCounterPlacementStrategiesListResponse = 0; |
| 5455 buildPlacementStrategiesListResponse() { | 5455 buildPlacementStrategiesListResponse() { |
| 5456 var o = new api.PlacementStrategiesListResponse(); | 5456 var o = new api.PlacementStrategiesListResponse(); |
| 5457 buildCounterPlacementStrategiesListResponse++; | 5457 buildCounterPlacementStrategiesListResponse++; |
| 5458 if (buildCounterPlacementStrategiesListResponse < 3) { | 5458 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5459 o.kind = "foo"; | 5459 o.kind = "foo"; |
| 5460 o.nextPageToken = "foo"; | 5460 o.nextPageToken = "foo"; |
| 5461 o.placementStrategies = buildUnnamed1662(); | 5461 o.placementStrategies = buildUnnamed1968(); |
| 5462 } | 5462 } |
| 5463 buildCounterPlacementStrategiesListResponse--; | 5463 buildCounterPlacementStrategiesListResponse--; |
| 5464 return o; | 5464 return o; |
| 5465 } | 5465 } |
| 5466 | 5466 |
| 5467 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { | 5467 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { |
| 5468 buildCounterPlacementStrategiesListResponse++; | 5468 buildCounterPlacementStrategiesListResponse++; |
| 5469 if (buildCounterPlacementStrategiesListResponse < 3) { | 5469 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5470 unittest.expect(o.kind, unittest.equals('foo')); | 5470 unittest.expect(o.kind, unittest.equals('foo')); |
| 5471 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5471 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5472 checkUnnamed1662(o.placementStrategies); | 5472 checkUnnamed1968(o.placementStrategies); |
| 5473 } | 5473 } |
| 5474 buildCounterPlacementStrategiesListResponse--; | 5474 buildCounterPlacementStrategiesListResponse--; |
| 5475 } | 5475 } |
| 5476 | 5476 |
| 5477 core.int buildCounterPlacementStrategy = 0; | 5477 core.int buildCounterPlacementStrategy = 0; |
| 5478 buildPlacementStrategy() { | 5478 buildPlacementStrategy() { |
| 5479 var o = new api.PlacementStrategy(); | 5479 var o = new api.PlacementStrategy(); |
| 5480 buildCounterPlacementStrategy++; | 5480 buildCounterPlacementStrategy++; |
| 5481 if (buildCounterPlacementStrategy < 3) { | 5481 if (buildCounterPlacementStrategy < 3) { |
| 5482 o.accountId = "foo"; | 5482 o.accountId = "foo"; |
| 5483 o.id = "foo"; | 5483 o.id = "foo"; |
| 5484 o.kind = "foo"; | 5484 o.kind = "foo"; |
| 5485 o.name = "foo"; | 5485 o.name = "foo"; |
| 5486 } | 5486 } |
| 5487 buildCounterPlacementStrategy--; | 5487 buildCounterPlacementStrategy--; |
| 5488 return o; | 5488 return o; |
| 5489 } | 5489 } |
| 5490 | 5490 |
| 5491 checkPlacementStrategy(api.PlacementStrategy o) { | 5491 checkPlacementStrategy(api.PlacementStrategy o) { |
| 5492 buildCounterPlacementStrategy++; | 5492 buildCounterPlacementStrategy++; |
| 5493 if (buildCounterPlacementStrategy < 3) { | 5493 if (buildCounterPlacementStrategy < 3) { |
| 5494 unittest.expect(o.accountId, unittest.equals('foo')); | 5494 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5495 unittest.expect(o.id, unittest.equals('foo')); | 5495 unittest.expect(o.id, unittest.equals('foo')); |
| 5496 unittest.expect(o.kind, unittest.equals('foo')); | 5496 unittest.expect(o.kind, unittest.equals('foo')); |
| 5497 unittest.expect(o.name, unittest.equals('foo')); | 5497 unittest.expect(o.name, unittest.equals('foo')); |
| 5498 } | 5498 } |
| 5499 buildCounterPlacementStrategy--; | 5499 buildCounterPlacementStrategy--; |
| 5500 } | 5500 } |
| 5501 | 5501 |
| 5502 buildUnnamed1663() { | 5502 buildUnnamed1969() { |
| 5503 var o = new core.List<api.TagData>(); | 5503 var o = new core.List<api.TagData>(); |
| 5504 o.add(buildTagData()); | 5504 o.add(buildTagData()); |
| 5505 o.add(buildTagData()); | 5505 o.add(buildTagData()); |
| 5506 return o; | 5506 return o; |
| 5507 } | 5507 } |
| 5508 | 5508 |
| 5509 checkUnnamed1663(core.List<api.TagData> o) { | 5509 checkUnnamed1969(core.List<api.TagData> o) { |
| 5510 unittest.expect(o, unittest.hasLength(2)); | 5510 unittest.expect(o, unittest.hasLength(2)); |
| 5511 checkTagData(o[0]); | 5511 checkTagData(o[0]); |
| 5512 checkTagData(o[1]); | 5512 checkTagData(o[1]); |
| 5513 } | 5513 } |
| 5514 | 5514 |
| 5515 core.int buildCounterPlacementTag = 0; | 5515 core.int buildCounterPlacementTag = 0; |
| 5516 buildPlacementTag() { | 5516 buildPlacementTag() { |
| 5517 var o = new api.PlacementTag(); | 5517 var o = new api.PlacementTag(); |
| 5518 buildCounterPlacementTag++; | 5518 buildCounterPlacementTag++; |
| 5519 if (buildCounterPlacementTag < 3) { | 5519 if (buildCounterPlacementTag < 3) { |
| 5520 o.placementId = "foo"; | 5520 o.placementId = "foo"; |
| 5521 o.tagDatas = buildUnnamed1663(); | 5521 o.tagDatas = buildUnnamed1969(); |
| 5522 } | 5522 } |
| 5523 buildCounterPlacementTag--; | 5523 buildCounterPlacementTag--; |
| 5524 return o; | 5524 return o; |
| 5525 } | 5525 } |
| 5526 | 5526 |
| 5527 checkPlacementTag(api.PlacementTag o) { | 5527 checkPlacementTag(api.PlacementTag o) { |
| 5528 buildCounterPlacementTag++; | 5528 buildCounterPlacementTag++; |
| 5529 if (buildCounterPlacementTag < 3) { | 5529 if (buildCounterPlacementTag < 3) { |
| 5530 unittest.expect(o.placementId, unittest.equals('foo')); | 5530 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5531 checkUnnamed1663(o.tagDatas); | 5531 checkUnnamed1969(o.tagDatas); |
| 5532 } | 5532 } |
| 5533 buildCounterPlacementTag--; | 5533 buildCounterPlacementTag--; |
| 5534 } | 5534 } |
| 5535 | 5535 |
| 5536 buildUnnamed1664() { | 5536 buildUnnamed1970() { |
| 5537 var o = new core.List<api.PlacementTag>(); | 5537 var o = new core.List<api.PlacementTag>(); |
| 5538 o.add(buildPlacementTag()); | 5538 o.add(buildPlacementTag()); |
| 5539 o.add(buildPlacementTag()); | 5539 o.add(buildPlacementTag()); |
| 5540 return o; | 5540 return o; |
| 5541 } | 5541 } |
| 5542 | 5542 |
| 5543 checkUnnamed1664(core.List<api.PlacementTag> o) { | 5543 checkUnnamed1970(core.List<api.PlacementTag> o) { |
| 5544 unittest.expect(o, unittest.hasLength(2)); | 5544 unittest.expect(o, unittest.hasLength(2)); |
| 5545 checkPlacementTag(o[0]); | 5545 checkPlacementTag(o[0]); |
| 5546 checkPlacementTag(o[1]); | 5546 checkPlacementTag(o[1]); |
| 5547 } | 5547 } |
| 5548 | 5548 |
| 5549 core.int buildCounterPlacementsGenerateTagsResponse = 0; | 5549 core.int buildCounterPlacementsGenerateTagsResponse = 0; |
| 5550 buildPlacementsGenerateTagsResponse() { | 5550 buildPlacementsGenerateTagsResponse() { |
| 5551 var o = new api.PlacementsGenerateTagsResponse(); | 5551 var o = new api.PlacementsGenerateTagsResponse(); |
| 5552 buildCounterPlacementsGenerateTagsResponse++; | 5552 buildCounterPlacementsGenerateTagsResponse++; |
| 5553 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5553 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5554 o.kind = "foo"; | 5554 o.kind = "foo"; |
| 5555 o.placementTags = buildUnnamed1664(); | 5555 o.placementTags = buildUnnamed1970(); |
| 5556 } | 5556 } |
| 5557 buildCounterPlacementsGenerateTagsResponse--; | 5557 buildCounterPlacementsGenerateTagsResponse--; |
| 5558 return o; | 5558 return o; |
| 5559 } | 5559 } |
| 5560 | 5560 |
| 5561 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { | 5561 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { |
| 5562 buildCounterPlacementsGenerateTagsResponse++; | 5562 buildCounterPlacementsGenerateTagsResponse++; |
| 5563 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5563 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5564 unittest.expect(o.kind, unittest.equals('foo')); | 5564 unittest.expect(o.kind, unittest.equals('foo')); |
| 5565 checkUnnamed1664(o.placementTags); | 5565 checkUnnamed1970(o.placementTags); |
| 5566 } | 5566 } |
| 5567 buildCounterPlacementsGenerateTagsResponse--; | 5567 buildCounterPlacementsGenerateTagsResponse--; |
| 5568 } | 5568 } |
| 5569 | 5569 |
| 5570 buildUnnamed1665() { | 5570 buildUnnamed1971() { |
| 5571 var o = new core.List<api.Placement>(); | 5571 var o = new core.List<api.Placement>(); |
| 5572 o.add(buildPlacement()); | 5572 o.add(buildPlacement()); |
| 5573 o.add(buildPlacement()); | 5573 o.add(buildPlacement()); |
| 5574 return o; | 5574 return o; |
| 5575 } | 5575 } |
| 5576 | 5576 |
| 5577 checkUnnamed1665(core.List<api.Placement> o) { | 5577 checkUnnamed1971(core.List<api.Placement> o) { |
| 5578 unittest.expect(o, unittest.hasLength(2)); | 5578 unittest.expect(o, unittest.hasLength(2)); |
| 5579 checkPlacement(o[0]); | 5579 checkPlacement(o[0]); |
| 5580 checkPlacement(o[1]); | 5580 checkPlacement(o[1]); |
| 5581 } | 5581 } |
| 5582 | 5582 |
| 5583 core.int buildCounterPlacementsListResponse = 0; | 5583 core.int buildCounterPlacementsListResponse = 0; |
| 5584 buildPlacementsListResponse() { | 5584 buildPlacementsListResponse() { |
| 5585 var o = new api.PlacementsListResponse(); | 5585 var o = new api.PlacementsListResponse(); |
| 5586 buildCounterPlacementsListResponse++; | 5586 buildCounterPlacementsListResponse++; |
| 5587 if (buildCounterPlacementsListResponse < 3) { | 5587 if (buildCounterPlacementsListResponse < 3) { |
| 5588 o.kind = "foo"; | 5588 o.kind = "foo"; |
| 5589 o.nextPageToken = "foo"; | 5589 o.nextPageToken = "foo"; |
| 5590 o.placements = buildUnnamed1665(); | 5590 o.placements = buildUnnamed1971(); |
| 5591 } | 5591 } |
| 5592 buildCounterPlacementsListResponse--; | 5592 buildCounterPlacementsListResponse--; |
| 5593 return o; | 5593 return o; |
| 5594 } | 5594 } |
| 5595 | 5595 |
| 5596 checkPlacementsListResponse(api.PlacementsListResponse o) { | 5596 checkPlacementsListResponse(api.PlacementsListResponse o) { |
| 5597 buildCounterPlacementsListResponse++; | 5597 buildCounterPlacementsListResponse++; |
| 5598 if (buildCounterPlacementsListResponse < 3) { | 5598 if (buildCounterPlacementsListResponse < 3) { |
| 5599 unittest.expect(o.kind, unittest.equals('foo')); | 5599 unittest.expect(o.kind, unittest.equals('foo')); |
| 5600 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5600 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5601 checkUnnamed1665(o.placements); | 5601 checkUnnamed1971(o.placements); |
| 5602 } | 5602 } |
| 5603 buildCounterPlacementsListResponse--; | 5603 buildCounterPlacementsListResponse--; |
| 5604 } | 5604 } |
| 5605 | 5605 |
| 5606 core.int buildCounterPlatformType = 0; | 5606 core.int buildCounterPlatformType = 0; |
| 5607 buildPlatformType() { | 5607 buildPlatformType() { |
| 5608 var o = new api.PlatformType(); | 5608 var o = new api.PlatformType(); |
| 5609 buildCounterPlatformType++; | 5609 buildCounterPlatformType++; |
| 5610 if (buildCounterPlatformType < 3) { | 5610 if (buildCounterPlatformType < 3) { |
| 5611 o.id = "foo"; | 5611 o.id = "foo"; |
| 5612 o.kind = "foo"; | 5612 o.kind = "foo"; |
| 5613 o.name = "foo"; | 5613 o.name = "foo"; |
| 5614 } | 5614 } |
| 5615 buildCounterPlatformType--; | 5615 buildCounterPlatformType--; |
| 5616 return o; | 5616 return o; |
| 5617 } | 5617 } |
| 5618 | 5618 |
| 5619 checkPlatformType(api.PlatformType o) { | 5619 checkPlatformType(api.PlatformType o) { |
| 5620 buildCounterPlatformType++; | 5620 buildCounterPlatformType++; |
| 5621 if (buildCounterPlatformType < 3) { | 5621 if (buildCounterPlatformType < 3) { |
| 5622 unittest.expect(o.id, unittest.equals('foo')); | 5622 unittest.expect(o.id, unittest.equals('foo')); |
| 5623 unittest.expect(o.kind, unittest.equals('foo')); | 5623 unittest.expect(o.kind, unittest.equals('foo')); |
| 5624 unittest.expect(o.name, unittest.equals('foo')); | 5624 unittest.expect(o.name, unittest.equals('foo')); |
| 5625 } | 5625 } |
| 5626 buildCounterPlatformType--; | 5626 buildCounterPlatformType--; |
| 5627 } | 5627 } |
| 5628 | 5628 |
| 5629 buildUnnamed1666() { | 5629 buildUnnamed1972() { |
| 5630 var o = new core.List<api.PlatformType>(); | 5630 var o = new core.List<api.PlatformType>(); |
| 5631 o.add(buildPlatformType()); | 5631 o.add(buildPlatformType()); |
| 5632 o.add(buildPlatformType()); | 5632 o.add(buildPlatformType()); |
| 5633 return o; | 5633 return o; |
| 5634 } | 5634 } |
| 5635 | 5635 |
| 5636 checkUnnamed1666(core.List<api.PlatformType> o) { | 5636 checkUnnamed1972(core.List<api.PlatformType> o) { |
| 5637 unittest.expect(o, unittest.hasLength(2)); | 5637 unittest.expect(o, unittest.hasLength(2)); |
| 5638 checkPlatformType(o[0]); | 5638 checkPlatformType(o[0]); |
| 5639 checkPlatformType(o[1]); | 5639 checkPlatformType(o[1]); |
| 5640 } | 5640 } |
| 5641 | 5641 |
| 5642 core.int buildCounterPlatformTypesListResponse = 0; | 5642 core.int buildCounterPlatformTypesListResponse = 0; |
| 5643 buildPlatformTypesListResponse() { | 5643 buildPlatformTypesListResponse() { |
| 5644 var o = new api.PlatformTypesListResponse(); | 5644 var o = new api.PlatformTypesListResponse(); |
| 5645 buildCounterPlatformTypesListResponse++; | 5645 buildCounterPlatformTypesListResponse++; |
| 5646 if (buildCounterPlatformTypesListResponse < 3) { | 5646 if (buildCounterPlatformTypesListResponse < 3) { |
| 5647 o.kind = "foo"; | 5647 o.kind = "foo"; |
| 5648 o.platformTypes = buildUnnamed1666(); | 5648 o.platformTypes = buildUnnamed1972(); |
| 5649 } | 5649 } |
| 5650 buildCounterPlatformTypesListResponse--; | 5650 buildCounterPlatformTypesListResponse--; |
| 5651 return o; | 5651 return o; |
| 5652 } | 5652 } |
| 5653 | 5653 |
| 5654 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { | 5654 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { |
| 5655 buildCounterPlatformTypesListResponse++; | 5655 buildCounterPlatformTypesListResponse++; |
| 5656 if (buildCounterPlatformTypesListResponse < 3) { | 5656 if (buildCounterPlatformTypesListResponse < 3) { |
| 5657 unittest.expect(o.kind, unittest.equals('foo')); | 5657 unittest.expect(o.kind, unittest.equals('foo')); |
| 5658 checkUnnamed1666(o.platformTypes); | 5658 checkUnnamed1972(o.platformTypes); |
| 5659 } | 5659 } |
| 5660 buildCounterPlatformTypesListResponse--; | 5660 buildCounterPlatformTypesListResponse--; |
| 5661 } | 5661 } |
| 5662 | 5662 |
| 5663 core.int buildCounterPopupWindowProperties = 0; | 5663 core.int buildCounterPopupWindowProperties = 0; |
| 5664 buildPopupWindowProperties() { | 5664 buildPopupWindowProperties() { |
| 5665 var o = new api.PopupWindowProperties(); | 5665 var o = new api.PopupWindowProperties(); |
| 5666 buildCounterPopupWindowProperties++; | 5666 buildCounterPopupWindowProperties++; |
| 5667 if (buildCounterPopupWindowProperties < 3) { | 5667 if (buildCounterPopupWindowProperties < 3) { |
| 5668 o.dimension = buildSize(); | 5668 o.dimension = buildSize(); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5715 if (buildCounterPostalCode < 3) { | 5715 if (buildCounterPostalCode < 3) { |
| 5716 unittest.expect(o.code, unittest.equals('foo')); | 5716 unittest.expect(o.code, unittest.equals('foo')); |
| 5717 unittest.expect(o.countryCode, unittest.equals('foo')); | 5717 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 5718 unittest.expect(o.countryDartId, unittest.equals('foo')); | 5718 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 5719 unittest.expect(o.id, unittest.equals('foo')); | 5719 unittest.expect(o.id, unittest.equals('foo')); |
| 5720 unittest.expect(o.kind, unittest.equals('foo')); | 5720 unittest.expect(o.kind, unittest.equals('foo')); |
| 5721 } | 5721 } |
| 5722 buildCounterPostalCode--; | 5722 buildCounterPostalCode--; |
| 5723 } | 5723 } |
| 5724 | 5724 |
| 5725 buildUnnamed1667() { | 5725 buildUnnamed1973() { |
| 5726 var o = new core.List<api.PostalCode>(); | 5726 var o = new core.List<api.PostalCode>(); |
| 5727 o.add(buildPostalCode()); | 5727 o.add(buildPostalCode()); |
| 5728 o.add(buildPostalCode()); | 5728 o.add(buildPostalCode()); |
| 5729 return o; | 5729 return o; |
| 5730 } | 5730 } |
| 5731 | 5731 |
| 5732 checkUnnamed1667(core.List<api.PostalCode> o) { | 5732 checkUnnamed1973(core.List<api.PostalCode> o) { |
| 5733 unittest.expect(o, unittest.hasLength(2)); | 5733 unittest.expect(o, unittest.hasLength(2)); |
| 5734 checkPostalCode(o[0]); | 5734 checkPostalCode(o[0]); |
| 5735 checkPostalCode(o[1]); | 5735 checkPostalCode(o[1]); |
| 5736 } | 5736 } |
| 5737 | 5737 |
| 5738 core.int buildCounterPostalCodesListResponse = 0; | 5738 core.int buildCounterPostalCodesListResponse = 0; |
| 5739 buildPostalCodesListResponse() { | 5739 buildPostalCodesListResponse() { |
| 5740 var o = new api.PostalCodesListResponse(); | 5740 var o = new api.PostalCodesListResponse(); |
| 5741 buildCounterPostalCodesListResponse++; | 5741 buildCounterPostalCodesListResponse++; |
| 5742 if (buildCounterPostalCodesListResponse < 3) { | 5742 if (buildCounterPostalCodesListResponse < 3) { |
| 5743 o.kind = "foo"; | 5743 o.kind = "foo"; |
| 5744 o.postalCodes = buildUnnamed1667(); | 5744 o.postalCodes = buildUnnamed1973(); |
| 5745 } | 5745 } |
| 5746 buildCounterPostalCodesListResponse--; | 5746 buildCounterPostalCodesListResponse--; |
| 5747 return o; | 5747 return o; |
| 5748 } | 5748 } |
| 5749 | 5749 |
| 5750 checkPostalCodesListResponse(api.PostalCodesListResponse o) { | 5750 checkPostalCodesListResponse(api.PostalCodesListResponse o) { |
| 5751 buildCounterPostalCodesListResponse++; | 5751 buildCounterPostalCodesListResponse++; |
| 5752 if (buildCounterPostalCodesListResponse < 3) { | 5752 if (buildCounterPostalCodesListResponse < 3) { |
| 5753 unittest.expect(o.kind, unittest.equals('foo')); | 5753 unittest.expect(o.kind, unittest.equals('foo')); |
| 5754 checkUnnamed1667(o.postalCodes); | 5754 checkUnnamed1973(o.postalCodes); |
| 5755 } | 5755 } |
| 5756 buildCounterPostalCodesListResponse--; | 5756 buildCounterPostalCodesListResponse--; |
| 5757 } | 5757 } |
| 5758 | 5758 |
| 5759 buildUnnamed1668() { | 5759 buildUnnamed1974() { |
| 5760 var o = new core.List<api.Flight>(); | 5760 var o = new core.List<api.Flight>(); |
| 5761 o.add(buildFlight()); | 5761 o.add(buildFlight()); |
| 5762 o.add(buildFlight()); | 5762 o.add(buildFlight()); |
| 5763 return o; | 5763 return o; |
| 5764 } | 5764 } |
| 5765 | 5765 |
| 5766 checkUnnamed1668(core.List<api.Flight> o) { | 5766 checkUnnamed1974(core.List<api.Flight> o) { |
| 5767 unittest.expect(o, unittest.hasLength(2)); | 5767 unittest.expect(o, unittest.hasLength(2)); |
| 5768 checkFlight(o[0]); | 5768 checkFlight(o[0]); |
| 5769 checkFlight(o[1]); | 5769 checkFlight(o[1]); |
| 5770 } | 5770 } |
| 5771 | 5771 |
| 5772 core.int buildCounterPricing = 0; | 5772 core.int buildCounterPricing = 0; |
| 5773 buildPricing() { | 5773 buildPricing() { |
| 5774 var o = new api.Pricing(); | 5774 var o = new api.Pricing(); |
| 5775 buildCounterPricing++; | 5775 buildCounterPricing++; |
| 5776 if (buildCounterPricing < 3) { | 5776 if (buildCounterPricing < 3) { |
| 5777 o.capCostType = "foo"; | 5777 o.capCostType = "foo"; |
| 5778 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5778 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5779 o.flights = buildUnnamed1668(); | 5779 o.flights = buildUnnamed1974(); |
| 5780 o.groupType = "foo"; | 5780 o.groupType = "foo"; |
| 5781 o.pricingType = "foo"; | 5781 o.pricingType = "foo"; |
| 5782 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5782 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5783 } | 5783 } |
| 5784 buildCounterPricing--; | 5784 buildCounterPricing--; |
| 5785 return o; | 5785 return o; |
| 5786 } | 5786 } |
| 5787 | 5787 |
| 5788 checkPricing(api.Pricing o) { | 5788 checkPricing(api.Pricing o) { |
| 5789 buildCounterPricing++; | 5789 buildCounterPricing++; |
| 5790 if (buildCounterPricing < 3) { | 5790 if (buildCounterPricing < 3) { |
| 5791 unittest.expect(o.capCostType, unittest.equals('foo')); | 5791 unittest.expect(o.capCostType, unittest.equals('foo')); |
| 5792 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5792 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 5793 checkUnnamed1668(o.flights); | 5793 checkUnnamed1974(o.flights); |
| 5794 unittest.expect(o.groupType, unittest.equals('foo')); | 5794 unittest.expect(o.groupType, unittest.equals('foo')); |
| 5795 unittest.expect(o.pricingType, unittest.equals('foo')); | 5795 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 5796 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5796 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 5797 } | 5797 } |
| 5798 buildCounterPricing--; | 5798 buildCounterPricing--; |
| 5799 } | 5799 } |
| 5800 | 5800 |
| 5801 buildUnnamed1669() { | 5801 buildUnnamed1975() { |
| 5802 var o = new core.List<api.PricingSchedulePricingPeriod>(); | 5802 var o = new core.List<api.PricingSchedulePricingPeriod>(); |
| 5803 o.add(buildPricingSchedulePricingPeriod()); | 5803 o.add(buildPricingSchedulePricingPeriod()); |
| 5804 o.add(buildPricingSchedulePricingPeriod()); | 5804 o.add(buildPricingSchedulePricingPeriod()); |
| 5805 return o; | 5805 return o; |
| 5806 } | 5806 } |
| 5807 | 5807 |
| 5808 checkUnnamed1669(core.List<api.PricingSchedulePricingPeriod> o) { | 5808 checkUnnamed1975(core.List<api.PricingSchedulePricingPeriod> o) { |
| 5809 unittest.expect(o, unittest.hasLength(2)); | 5809 unittest.expect(o, unittest.hasLength(2)); |
| 5810 checkPricingSchedulePricingPeriod(o[0]); | 5810 checkPricingSchedulePricingPeriod(o[0]); |
| 5811 checkPricingSchedulePricingPeriod(o[1]); | 5811 checkPricingSchedulePricingPeriod(o[1]); |
| 5812 } | 5812 } |
| 5813 | 5813 |
| 5814 core.int buildCounterPricingSchedule = 0; | 5814 core.int buildCounterPricingSchedule = 0; |
| 5815 buildPricingSchedule() { | 5815 buildPricingSchedule() { |
| 5816 var o = new api.PricingSchedule(); | 5816 var o = new api.PricingSchedule(); |
| 5817 buildCounterPricingSchedule++; | 5817 buildCounterPricingSchedule++; |
| 5818 if (buildCounterPricingSchedule < 3) { | 5818 if (buildCounterPricingSchedule < 3) { |
| 5819 o.capCostOption = "foo"; | 5819 o.capCostOption = "foo"; |
| 5820 o.disregardOverdelivery = true; | 5820 o.disregardOverdelivery = true; |
| 5821 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5821 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5822 o.flighted = true; | 5822 o.flighted = true; |
| 5823 o.floodlightActivityId = "foo"; | 5823 o.floodlightActivityId = "foo"; |
| 5824 o.pricingPeriods = buildUnnamed1669(); | 5824 o.pricingPeriods = buildUnnamed1975(); |
| 5825 o.pricingType = "foo"; | 5825 o.pricingType = "foo"; |
| 5826 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5826 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5827 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5827 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5828 } | 5828 } |
| 5829 buildCounterPricingSchedule--; | 5829 buildCounterPricingSchedule--; |
| 5830 return o; | 5830 return o; |
| 5831 } | 5831 } |
| 5832 | 5832 |
| 5833 checkPricingSchedule(api.PricingSchedule o) { | 5833 checkPricingSchedule(api.PricingSchedule o) { |
| 5834 buildCounterPricingSchedule++; | 5834 buildCounterPricingSchedule++; |
| 5835 if (buildCounterPricingSchedule < 3) { | 5835 if (buildCounterPricingSchedule < 3) { |
| 5836 unittest.expect(o.capCostOption, unittest.equals('foo')); | 5836 unittest.expect(o.capCostOption, unittest.equals('foo')); |
| 5837 unittest.expect(o.disregardOverdelivery, unittest.isTrue); | 5837 unittest.expect(o.disregardOverdelivery, unittest.isTrue); |
| 5838 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5838 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 5839 unittest.expect(o.flighted, unittest.isTrue); | 5839 unittest.expect(o.flighted, unittest.isTrue); |
| 5840 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 5840 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 5841 checkUnnamed1669(o.pricingPeriods); | 5841 checkUnnamed1975(o.pricingPeriods); |
| 5842 unittest.expect(o.pricingType, unittest.equals('foo')); | 5842 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 5843 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5843 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 5844 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); | 5844 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); |
| 5845 } | 5845 } |
| 5846 buildCounterPricingSchedule--; | 5846 buildCounterPricingSchedule--; |
| 5847 } | 5847 } |
| 5848 | 5848 |
| 5849 core.int buildCounterPricingSchedulePricingPeriod = 0; | 5849 core.int buildCounterPricingSchedulePricingPeriod = 0; |
| 5850 buildPricingSchedulePricingPeriod() { | 5850 buildPricingSchedulePricingPeriod() { |
| 5851 var o = new api.PricingSchedulePricingPeriod(); | 5851 var o = new api.PricingSchedulePricingPeriod(); |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5925 unittest.expect(o.targetClicks, unittest.equals('foo')); | 5925 unittest.expect(o.targetClicks, unittest.equals('foo')); |
| 5926 unittest.expect(o.targetConversions, unittest.equals('foo')); | 5926 unittest.expect(o.targetConversions, unittest.equals('foo')); |
| 5927 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); | 5927 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); |
| 5928 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); | 5928 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); |
| 5929 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); | 5929 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); |
| 5930 unittest.expect(o.targetImpressions, unittest.equals('foo')); | 5930 unittest.expect(o.targetImpressions, unittest.equals('foo')); |
| 5931 } | 5931 } |
| 5932 buildCounterProject--; | 5932 buildCounterProject--; |
| 5933 } | 5933 } |
| 5934 | 5934 |
| 5935 buildUnnamed1670() { | 5935 buildUnnamed1976() { |
| 5936 var o = new core.List<api.Project>(); | 5936 var o = new core.List<api.Project>(); |
| 5937 o.add(buildProject()); | 5937 o.add(buildProject()); |
| 5938 o.add(buildProject()); | 5938 o.add(buildProject()); |
| 5939 return o; | 5939 return o; |
| 5940 } | 5940 } |
| 5941 | 5941 |
| 5942 checkUnnamed1670(core.List<api.Project> o) { | 5942 checkUnnamed1976(core.List<api.Project> o) { |
| 5943 unittest.expect(o, unittest.hasLength(2)); | 5943 unittest.expect(o, unittest.hasLength(2)); |
| 5944 checkProject(o[0]); | 5944 checkProject(o[0]); |
| 5945 checkProject(o[1]); | 5945 checkProject(o[1]); |
| 5946 } | 5946 } |
| 5947 | 5947 |
| 5948 core.int buildCounterProjectsListResponse = 0; | 5948 core.int buildCounterProjectsListResponse = 0; |
| 5949 buildProjectsListResponse() { | 5949 buildProjectsListResponse() { |
| 5950 var o = new api.ProjectsListResponse(); | 5950 var o = new api.ProjectsListResponse(); |
| 5951 buildCounterProjectsListResponse++; | 5951 buildCounterProjectsListResponse++; |
| 5952 if (buildCounterProjectsListResponse < 3) { | 5952 if (buildCounterProjectsListResponse < 3) { |
| 5953 o.kind = "foo"; | 5953 o.kind = "foo"; |
| 5954 o.nextPageToken = "foo"; | 5954 o.nextPageToken = "foo"; |
| 5955 o.projects = buildUnnamed1670(); | 5955 o.projects = buildUnnamed1976(); |
| 5956 } | 5956 } |
| 5957 buildCounterProjectsListResponse--; | 5957 buildCounterProjectsListResponse--; |
| 5958 return o; | 5958 return o; |
| 5959 } | 5959 } |
| 5960 | 5960 |
| 5961 checkProjectsListResponse(api.ProjectsListResponse o) { | 5961 checkProjectsListResponse(api.ProjectsListResponse o) { |
| 5962 buildCounterProjectsListResponse++; | 5962 buildCounterProjectsListResponse++; |
| 5963 if (buildCounterProjectsListResponse < 3) { | 5963 if (buildCounterProjectsListResponse < 3) { |
| 5964 unittest.expect(o.kind, unittest.equals('foo')); | 5964 unittest.expect(o.kind, unittest.equals('foo')); |
| 5965 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5965 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5966 checkUnnamed1670(o.projects); | 5966 checkUnnamed1976(o.projects); |
| 5967 } | 5967 } |
| 5968 buildCounterProjectsListResponse--; | 5968 buildCounterProjectsListResponse--; |
| 5969 } | 5969 } |
| 5970 | 5970 |
| 5971 buildUnnamed1671() { | 5971 buildUnnamed1977() { |
| 5972 var o = new core.List<api.Dimension>(); | 5972 var o = new core.List<api.Dimension>(); |
| 5973 o.add(buildDimension()); | 5973 o.add(buildDimension()); |
| 5974 o.add(buildDimension()); | 5974 o.add(buildDimension()); |
| 5975 return o; | 5975 return o; |
| 5976 } | 5976 } |
| 5977 | 5977 |
| 5978 checkUnnamed1671(core.List<api.Dimension> o) { | 5978 checkUnnamed1977(core.List<api.Dimension> o) { |
| 5979 unittest.expect(o, unittest.hasLength(2)); | 5979 unittest.expect(o, unittest.hasLength(2)); |
| 5980 checkDimension(o[0]); | 5980 checkDimension(o[0]); |
| 5981 checkDimension(o[1]); | 5981 checkDimension(o[1]); |
| 5982 } | 5982 } |
| 5983 | 5983 |
| 5984 buildUnnamed1672() { | 5984 buildUnnamed1978() { |
| 5985 var o = new core.List<api.Dimension>(); | 5985 var o = new core.List<api.Dimension>(); |
| 5986 o.add(buildDimension()); | 5986 o.add(buildDimension()); |
| 5987 o.add(buildDimension()); | 5987 o.add(buildDimension()); |
| 5988 return o; | 5988 return o; |
| 5989 } | 5989 } |
| 5990 | 5990 |
| 5991 checkUnnamed1672(core.List<api.Dimension> o) { | 5991 checkUnnamed1978(core.List<api.Dimension> o) { |
| 5992 unittest.expect(o, unittest.hasLength(2)); | 5992 unittest.expect(o, unittest.hasLength(2)); |
| 5993 checkDimension(o[0]); | 5993 checkDimension(o[0]); |
| 5994 checkDimension(o[1]); | 5994 checkDimension(o[1]); |
| 5995 } | 5995 } |
| 5996 | 5996 |
| 5997 buildUnnamed1673() { | 5997 buildUnnamed1979() { |
| 5998 var o = new core.List<api.Metric>(); | 5998 var o = new core.List<api.Metric>(); |
| 5999 o.add(buildMetric()); | 5999 o.add(buildMetric()); |
| 6000 o.add(buildMetric()); | 6000 o.add(buildMetric()); |
| 6001 return o; | 6001 return o; |
| 6002 } | 6002 } |
| 6003 | 6003 |
| 6004 checkUnnamed1673(core.List<api.Metric> o) { | 6004 checkUnnamed1979(core.List<api.Metric> o) { |
| 6005 unittest.expect(o, unittest.hasLength(2)); | 6005 unittest.expect(o, unittest.hasLength(2)); |
| 6006 checkMetric(o[0]); | 6006 checkMetric(o[0]); |
| 6007 checkMetric(o[1]); | 6007 checkMetric(o[1]); |
| 6008 } | 6008 } |
| 6009 | 6009 |
| 6010 buildUnnamed1674() { | 6010 buildUnnamed1980() { |
| 6011 var o = new core.List<api.Metric>(); | 6011 var o = new core.List<api.Metric>(); |
| 6012 o.add(buildMetric()); | 6012 o.add(buildMetric()); |
| 6013 o.add(buildMetric()); | 6013 o.add(buildMetric()); |
| 6014 return o; | 6014 return o; |
| 6015 } | 6015 } |
| 6016 | 6016 |
| 6017 checkUnnamed1674(core.List<api.Metric> o) { | 6017 checkUnnamed1980(core.List<api.Metric> o) { |
| 6018 unittest.expect(o, unittest.hasLength(2)); | 6018 unittest.expect(o, unittest.hasLength(2)); |
| 6019 checkMetric(o[0]); | 6019 checkMetric(o[0]); |
| 6020 checkMetric(o[1]); | 6020 checkMetric(o[1]); |
| 6021 } | 6021 } |
| 6022 | 6022 |
| 6023 buildUnnamed1675() { | 6023 buildUnnamed1981() { |
| 6024 var o = new core.List<api.Metric>(); | 6024 var o = new core.List<api.Metric>(); |
| 6025 o.add(buildMetric()); | 6025 o.add(buildMetric()); |
| 6026 o.add(buildMetric()); | 6026 o.add(buildMetric()); |
| 6027 return o; | 6027 return o; |
| 6028 } | 6028 } |
| 6029 | 6029 |
| 6030 checkUnnamed1675(core.List<api.Metric> o) { | 6030 checkUnnamed1981(core.List<api.Metric> o) { |
| 6031 unittest.expect(o, unittest.hasLength(2)); | 6031 unittest.expect(o, unittest.hasLength(2)); |
| 6032 checkMetric(o[0]); | 6032 checkMetric(o[0]); |
| 6033 checkMetric(o[1]); | 6033 checkMetric(o[1]); |
| 6034 } | 6034 } |
| 6035 | 6035 |
| 6036 core.int buildCounterReachReportCompatibleFields = 0; | 6036 core.int buildCounterReachReportCompatibleFields = 0; |
| 6037 buildReachReportCompatibleFields() { | 6037 buildReachReportCompatibleFields() { |
| 6038 var o = new api.ReachReportCompatibleFields(); | 6038 var o = new api.ReachReportCompatibleFields(); |
| 6039 buildCounterReachReportCompatibleFields++; | 6039 buildCounterReachReportCompatibleFields++; |
| 6040 if (buildCounterReachReportCompatibleFields < 3) { | 6040 if (buildCounterReachReportCompatibleFields < 3) { |
| 6041 o.dimensionFilters = buildUnnamed1671(); | 6041 o.dimensionFilters = buildUnnamed1977(); |
| 6042 o.dimensions = buildUnnamed1672(); | 6042 o.dimensions = buildUnnamed1978(); |
| 6043 o.kind = "foo"; | 6043 o.kind = "foo"; |
| 6044 o.metrics = buildUnnamed1673(); | 6044 o.metrics = buildUnnamed1979(); |
| 6045 o.pivotedActivityMetrics = buildUnnamed1674(); | 6045 o.pivotedActivityMetrics = buildUnnamed1980(); |
| 6046 o.reachByFrequencyMetrics = buildUnnamed1675(); | 6046 o.reachByFrequencyMetrics = buildUnnamed1981(); |
| 6047 } | 6047 } |
| 6048 buildCounterReachReportCompatibleFields--; | 6048 buildCounterReachReportCompatibleFields--; |
| 6049 return o; | 6049 return o; |
| 6050 } | 6050 } |
| 6051 | 6051 |
| 6052 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { | 6052 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { |
| 6053 buildCounterReachReportCompatibleFields++; | 6053 buildCounterReachReportCompatibleFields++; |
| 6054 if (buildCounterReachReportCompatibleFields < 3) { | 6054 if (buildCounterReachReportCompatibleFields < 3) { |
| 6055 checkUnnamed1671(o.dimensionFilters); | 6055 checkUnnamed1977(o.dimensionFilters); |
| 6056 checkUnnamed1672(o.dimensions); | 6056 checkUnnamed1978(o.dimensions); |
| 6057 unittest.expect(o.kind, unittest.equals('foo')); | 6057 unittest.expect(o.kind, unittest.equals('foo')); |
| 6058 checkUnnamed1673(o.metrics); | 6058 checkUnnamed1979(o.metrics); |
| 6059 checkUnnamed1674(o.pivotedActivityMetrics); | 6059 checkUnnamed1980(o.pivotedActivityMetrics); |
| 6060 checkUnnamed1675(o.reachByFrequencyMetrics); | 6060 checkUnnamed1981(o.reachByFrequencyMetrics); |
| 6061 } | 6061 } |
| 6062 buildCounterReachReportCompatibleFields--; | 6062 buildCounterReachReportCompatibleFields--; |
| 6063 } | 6063 } |
| 6064 | 6064 |
| 6065 core.int buildCounterRecipient = 0; | 6065 core.int buildCounterRecipient = 0; |
| 6066 buildRecipient() { | 6066 buildRecipient() { |
| 6067 var o = new api.Recipient(); | 6067 var o = new api.Recipient(); |
| 6068 buildCounterRecipient++; | 6068 buildCounterRecipient++; |
| 6069 if (buildCounterRecipient < 3) { | 6069 if (buildCounterRecipient < 3) { |
| 6070 o.deliveryType = "foo"; | 6070 o.deliveryType = "foo"; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6107 unittest.expect(o.countryCode, unittest.equals('foo')); | 6107 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 6108 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6108 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 6109 unittest.expect(o.dartId, unittest.equals('foo')); | 6109 unittest.expect(o.dartId, unittest.equals('foo')); |
| 6110 unittest.expect(o.kind, unittest.equals('foo')); | 6110 unittest.expect(o.kind, unittest.equals('foo')); |
| 6111 unittest.expect(o.name, unittest.equals('foo')); | 6111 unittest.expect(o.name, unittest.equals('foo')); |
| 6112 unittest.expect(o.regionCode, unittest.equals('foo')); | 6112 unittest.expect(o.regionCode, unittest.equals('foo')); |
| 6113 } | 6113 } |
| 6114 buildCounterRegion--; | 6114 buildCounterRegion--; |
| 6115 } | 6115 } |
| 6116 | 6116 |
| 6117 buildUnnamed1676() { | 6117 buildUnnamed1982() { |
| 6118 var o = new core.List<api.Region>(); | 6118 var o = new core.List<api.Region>(); |
| 6119 o.add(buildRegion()); | 6119 o.add(buildRegion()); |
| 6120 o.add(buildRegion()); | 6120 o.add(buildRegion()); |
| 6121 return o; | 6121 return o; |
| 6122 } | 6122 } |
| 6123 | 6123 |
| 6124 checkUnnamed1676(core.List<api.Region> o) { | 6124 checkUnnamed1982(core.List<api.Region> o) { |
| 6125 unittest.expect(o, unittest.hasLength(2)); | 6125 unittest.expect(o, unittest.hasLength(2)); |
| 6126 checkRegion(o[0]); | 6126 checkRegion(o[0]); |
| 6127 checkRegion(o[1]); | 6127 checkRegion(o[1]); |
| 6128 } | 6128 } |
| 6129 | 6129 |
| 6130 core.int buildCounterRegionsListResponse = 0; | 6130 core.int buildCounterRegionsListResponse = 0; |
| 6131 buildRegionsListResponse() { | 6131 buildRegionsListResponse() { |
| 6132 var o = new api.RegionsListResponse(); | 6132 var o = new api.RegionsListResponse(); |
| 6133 buildCounterRegionsListResponse++; | 6133 buildCounterRegionsListResponse++; |
| 6134 if (buildCounterRegionsListResponse < 3) { | 6134 if (buildCounterRegionsListResponse < 3) { |
| 6135 o.kind = "foo"; | 6135 o.kind = "foo"; |
| 6136 o.regions = buildUnnamed1676(); | 6136 o.regions = buildUnnamed1982(); |
| 6137 } | 6137 } |
| 6138 buildCounterRegionsListResponse--; | 6138 buildCounterRegionsListResponse--; |
| 6139 return o; | 6139 return o; |
| 6140 } | 6140 } |
| 6141 | 6141 |
| 6142 checkRegionsListResponse(api.RegionsListResponse o) { | 6142 checkRegionsListResponse(api.RegionsListResponse o) { |
| 6143 buildCounterRegionsListResponse++; | 6143 buildCounterRegionsListResponse++; |
| 6144 if (buildCounterRegionsListResponse < 3) { | 6144 if (buildCounterRegionsListResponse < 3) { |
| 6145 unittest.expect(o.kind, unittest.equals('foo')); | 6145 unittest.expect(o.kind, unittest.equals('foo')); |
| 6146 checkUnnamed1676(o.regions); | 6146 checkUnnamed1982(o.regions); |
| 6147 } | 6147 } |
| 6148 buildCounterRegionsListResponse--; | 6148 buildCounterRegionsListResponse--; |
| 6149 } | 6149 } |
| 6150 | 6150 |
| 6151 core.int buildCounterRemarketingList = 0; | 6151 core.int buildCounterRemarketingList = 0; |
| 6152 buildRemarketingList() { | 6152 buildRemarketingList() { |
| 6153 var o = new api.RemarketingList(); | 6153 var o = new api.RemarketingList(); |
| 6154 buildCounterRemarketingList++; | 6154 buildCounterRemarketingList++; |
| 6155 if (buildCounterRemarketingList < 3) { | 6155 if (buildCounterRemarketingList < 3) { |
| 6156 o.accountId = "foo"; | 6156 o.accountId = "foo"; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 6184 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 6184 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 6185 checkListPopulationRule(o.listPopulationRule); | 6185 checkListPopulationRule(o.listPopulationRule); |
| 6186 unittest.expect(o.listSize, unittest.equals('foo')); | 6186 unittest.expect(o.listSize, unittest.equals('foo')); |
| 6187 unittest.expect(o.listSource, unittest.equals('foo')); | 6187 unittest.expect(o.listSource, unittest.equals('foo')); |
| 6188 unittest.expect(o.name, unittest.equals('foo')); | 6188 unittest.expect(o.name, unittest.equals('foo')); |
| 6189 unittest.expect(o.subaccountId, unittest.equals('foo')); | 6189 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 6190 } | 6190 } |
| 6191 buildCounterRemarketingList--; | 6191 buildCounterRemarketingList--; |
| 6192 } | 6192 } |
| 6193 | 6193 |
| 6194 buildUnnamed1677() { | 6194 buildUnnamed1983() { |
| 6195 var o = new core.List<core.String>(); | 6195 var o = new core.List<core.String>(); |
| 6196 o.add("foo"); | 6196 o.add("foo"); |
| 6197 o.add("foo"); | 6197 o.add("foo"); |
| 6198 return o; | 6198 return o; |
| 6199 } | 6199 } |
| 6200 | 6200 |
| 6201 checkUnnamed1677(core.List<core.String> o) { | 6201 checkUnnamed1983(core.List<core.String> o) { |
| 6202 unittest.expect(o, unittest.hasLength(2)); | 6202 unittest.expect(o, unittest.hasLength(2)); |
| 6203 unittest.expect(o[0], unittest.equals('foo')); | 6203 unittest.expect(o[0], unittest.equals('foo')); |
| 6204 unittest.expect(o[1], unittest.equals('foo')); | 6204 unittest.expect(o[1], unittest.equals('foo')); |
| 6205 } | 6205 } |
| 6206 | 6206 |
| 6207 buildUnnamed1678() { | 6207 buildUnnamed1984() { |
| 6208 var o = new core.List<core.String>(); | 6208 var o = new core.List<core.String>(); |
| 6209 o.add("foo"); | 6209 o.add("foo"); |
| 6210 o.add("foo"); | 6210 o.add("foo"); |
| 6211 return o; | 6211 return o; |
| 6212 } | 6212 } |
| 6213 | 6213 |
| 6214 checkUnnamed1678(core.List<core.String> o) { | 6214 checkUnnamed1984(core.List<core.String> o) { |
| 6215 unittest.expect(o, unittest.hasLength(2)); | 6215 unittest.expect(o, unittest.hasLength(2)); |
| 6216 unittest.expect(o[0], unittest.equals('foo')); | 6216 unittest.expect(o[0], unittest.equals('foo')); |
| 6217 unittest.expect(o[1], unittest.equals('foo')); | 6217 unittest.expect(o[1], unittest.equals('foo')); |
| 6218 } | 6218 } |
| 6219 | 6219 |
| 6220 core.int buildCounterRemarketingListShare = 0; | 6220 core.int buildCounterRemarketingListShare = 0; |
| 6221 buildRemarketingListShare() { | 6221 buildRemarketingListShare() { |
| 6222 var o = new api.RemarketingListShare(); | 6222 var o = new api.RemarketingListShare(); |
| 6223 buildCounterRemarketingListShare++; | 6223 buildCounterRemarketingListShare++; |
| 6224 if (buildCounterRemarketingListShare < 3) { | 6224 if (buildCounterRemarketingListShare < 3) { |
| 6225 o.kind = "foo"; | 6225 o.kind = "foo"; |
| 6226 o.remarketingListId = "foo"; | 6226 o.remarketingListId = "foo"; |
| 6227 o.sharedAccountIds = buildUnnamed1677(); | 6227 o.sharedAccountIds = buildUnnamed1983(); |
| 6228 o.sharedAdvertiserIds = buildUnnamed1678(); | 6228 o.sharedAdvertiserIds = buildUnnamed1984(); |
| 6229 } | 6229 } |
| 6230 buildCounterRemarketingListShare--; | 6230 buildCounterRemarketingListShare--; |
| 6231 return o; | 6231 return o; |
| 6232 } | 6232 } |
| 6233 | 6233 |
| 6234 checkRemarketingListShare(api.RemarketingListShare o) { | 6234 checkRemarketingListShare(api.RemarketingListShare o) { |
| 6235 buildCounterRemarketingListShare++; | 6235 buildCounterRemarketingListShare++; |
| 6236 if (buildCounterRemarketingListShare < 3) { | 6236 if (buildCounterRemarketingListShare < 3) { |
| 6237 unittest.expect(o.kind, unittest.equals('foo')); | 6237 unittest.expect(o.kind, unittest.equals('foo')); |
| 6238 unittest.expect(o.remarketingListId, unittest.equals('foo')); | 6238 unittest.expect(o.remarketingListId, unittest.equals('foo')); |
| 6239 checkUnnamed1677(o.sharedAccountIds); | 6239 checkUnnamed1983(o.sharedAccountIds); |
| 6240 checkUnnamed1678(o.sharedAdvertiserIds); | 6240 checkUnnamed1984(o.sharedAdvertiserIds); |
| 6241 } | 6241 } |
| 6242 buildCounterRemarketingListShare--; | 6242 buildCounterRemarketingListShare--; |
| 6243 } | 6243 } |
| 6244 | 6244 |
| 6245 buildUnnamed1679() { | 6245 buildUnnamed1985() { |
| 6246 var o = new core.List<api.RemarketingList>(); | 6246 var o = new core.List<api.RemarketingList>(); |
| 6247 o.add(buildRemarketingList()); | 6247 o.add(buildRemarketingList()); |
| 6248 o.add(buildRemarketingList()); | 6248 o.add(buildRemarketingList()); |
| 6249 return o; | 6249 return o; |
| 6250 } | 6250 } |
| 6251 | 6251 |
| 6252 checkUnnamed1679(core.List<api.RemarketingList> o) { | 6252 checkUnnamed1985(core.List<api.RemarketingList> o) { |
| 6253 unittest.expect(o, unittest.hasLength(2)); | 6253 unittest.expect(o, unittest.hasLength(2)); |
| 6254 checkRemarketingList(o[0]); | 6254 checkRemarketingList(o[0]); |
| 6255 checkRemarketingList(o[1]); | 6255 checkRemarketingList(o[1]); |
| 6256 } | 6256 } |
| 6257 | 6257 |
| 6258 core.int buildCounterRemarketingListsListResponse = 0; | 6258 core.int buildCounterRemarketingListsListResponse = 0; |
| 6259 buildRemarketingListsListResponse() { | 6259 buildRemarketingListsListResponse() { |
| 6260 var o = new api.RemarketingListsListResponse(); | 6260 var o = new api.RemarketingListsListResponse(); |
| 6261 buildCounterRemarketingListsListResponse++; | 6261 buildCounterRemarketingListsListResponse++; |
| 6262 if (buildCounterRemarketingListsListResponse < 3) { | 6262 if (buildCounterRemarketingListsListResponse < 3) { |
| 6263 o.kind = "foo"; | 6263 o.kind = "foo"; |
| 6264 o.nextPageToken = "foo"; | 6264 o.nextPageToken = "foo"; |
| 6265 o.remarketingLists = buildUnnamed1679(); | 6265 o.remarketingLists = buildUnnamed1985(); |
| 6266 } | 6266 } |
| 6267 buildCounterRemarketingListsListResponse--; | 6267 buildCounterRemarketingListsListResponse--; |
| 6268 return o; | 6268 return o; |
| 6269 } | 6269 } |
| 6270 | 6270 |
| 6271 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { | 6271 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { |
| 6272 buildCounterRemarketingListsListResponse++; | 6272 buildCounterRemarketingListsListResponse++; |
| 6273 if (buildCounterRemarketingListsListResponse < 3) { | 6273 if (buildCounterRemarketingListsListResponse < 3) { |
| 6274 unittest.expect(o.kind, unittest.equals('foo')); | 6274 unittest.expect(o.kind, unittest.equals('foo')); |
| 6275 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6275 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6276 checkUnnamed1679(o.remarketingLists); | 6276 checkUnnamed1985(o.remarketingLists); |
| 6277 } | 6277 } |
| 6278 buildCounterRemarketingListsListResponse--; | 6278 buildCounterRemarketingListsListResponse--; |
| 6279 } | 6279 } |
| 6280 | 6280 |
| 6281 buildUnnamed1680() { | 6281 buildUnnamed1986() { |
| 6282 var o = new core.List<api.DimensionValue>(); | 6282 var o = new core.List<api.DimensionValue>(); |
| 6283 o.add(buildDimensionValue()); | 6283 o.add(buildDimensionValue()); |
| 6284 o.add(buildDimensionValue()); | 6284 o.add(buildDimensionValue()); |
| 6285 return o; | 6285 return o; |
| 6286 } | 6286 } |
| 6287 | 6287 |
| 6288 checkUnnamed1680(core.List<api.DimensionValue> o) { | 6288 checkUnnamed1986(core.List<api.DimensionValue> o) { |
| 6289 unittest.expect(o, unittest.hasLength(2)); | 6289 unittest.expect(o, unittest.hasLength(2)); |
| 6290 checkDimensionValue(o[0]); | 6290 checkDimensionValue(o[0]); |
| 6291 checkDimensionValue(o[1]); | 6291 checkDimensionValue(o[1]); |
| 6292 } | 6292 } |
| 6293 | 6293 |
| 6294 buildUnnamed1681() { | 6294 buildUnnamed1987() { |
| 6295 var o = new core.List<api.SortedDimension>(); | 6295 var o = new core.List<api.SortedDimension>(); |
| 6296 o.add(buildSortedDimension()); | 6296 o.add(buildSortedDimension()); |
| 6297 o.add(buildSortedDimension()); | 6297 o.add(buildSortedDimension()); |
| 6298 return o; | 6298 return o; |
| 6299 } | 6299 } |
| 6300 | 6300 |
| 6301 checkUnnamed1681(core.List<api.SortedDimension> o) { | 6301 checkUnnamed1987(core.List<api.SortedDimension> o) { |
| 6302 unittest.expect(o, unittest.hasLength(2)); | 6302 unittest.expect(o, unittest.hasLength(2)); |
| 6303 checkSortedDimension(o[0]); | 6303 checkSortedDimension(o[0]); |
| 6304 checkSortedDimension(o[1]); | 6304 checkSortedDimension(o[1]); |
| 6305 } | 6305 } |
| 6306 | 6306 |
| 6307 buildUnnamed1682() { | 6307 buildUnnamed1988() { |
| 6308 var o = new core.List<core.String>(); | 6308 var o = new core.List<core.String>(); |
| 6309 o.add("foo"); | 6309 o.add("foo"); |
| 6310 o.add("foo"); | 6310 o.add("foo"); |
| 6311 return o; | 6311 return o; |
| 6312 } | 6312 } |
| 6313 | 6313 |
| 6314 checkUnnamed1682(core.List<core.String> o) { | 6314 checkUnnamed1988(core.List<core.String> o) { |
| 6315 unittest.expect(o, unittest.hasLength(2)); | 6315 unittest.expect(o, unittest.hasLength(2)); |
| 6316 unittest.expect(o[0], unittest.equals('foo')); | 6316 unittest.expect(o[0], unittest.equals('foo')); |
| 6317 unittest.expect(o[1], unittest.equals('foo')); | 6317 unittest.expect(o[1], unittest.equals('foo')); |
| 6318 } | 6318 } |
| 6319 | 6319 |
| 6320 core.int buildCounterReportCriteria = 0; | 6320 core.int buildCounterReportCriteria = 0; |
| 6321 buildReportCriteria() { | 6321 buildReportCriteria() { |
| 6322 var o = new api.ReportCriteria(); | 6322 var o = new api.ReportCriteria(); |
| 6323 buildCounterReportCriteria++; | 6323 buildCounterReportCriteria++; |
| 6324 if (buildCounterReportCriteria < 3) { | 6324 if (buildCounterReportCriteria < 3) { |
| 6325 o.activities = buildActivities(); | 6325 o.activities = buildActivities(); |
| 6326 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6326 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6327 o.dateRange = buildDateRange(); | 6327 o.dateRange = buildDateRange(); |
| 6328 o.dimensionFilters = buildUnnamed1680(); | 6328 o.dimensionFilters = buildUnnamed1986(); |
| 6329 o.dimensions = buildUnnamed1681(); | 6329 o.dimensions = buildUnnamed1987(); |
| 6330 o.metricNames = buildUnnamed1682(); | 6330 o.metricNames = buildUnnamed1988(); |
| 6331 } | 6331 } |
| 6332 buildCounterReportCriteria--; | 6332 buildCounterReportCriteria--; |
| 6333 return o; | 6333 return o; |
| 6334 } | 6334 } |
| 6335 | 6335 |
| 6336 checkReportCriteria(api.ReportCriteria o) { | 6336 checkReportCriteria(api.ReportCriteria o) { |
| 6337 buildCounterReportCriteria++; | 6337 buildCounterReportCriteria++; |
| 6338 if (buildCounterReportCriteria < 3) { | 6338 if (buildCounterReportCriteria < 3) { |
| 6339 checkActivities(o.activities); | 6339 checkActivities(o.activities); |
| 6340 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6340 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6341 checkDateRange(o.dateRange); | 6341 checkDateRange(o.dateRange); |
| 6342 checkUnnamed1680(o.dimensionFilters); | 6342 checkUnnamed1986(o.dimensionFilters); |
| 6343 checkUnnamed1681(o.dimensions); | 6343 checkUnnamed1987(o.dimensions); |
| 6344 checkUnnamed1682(o.metricNames); | 6344 checkUnnamed1988(o.metricNames); |
| 6345 } | 6345 } |
| 6346 buildCounterReportCriteria--; | 6346 buildCounterReportCriteria--; |
| 6347 } | 6347 } |
| 6348 | 6348 |
| 6349 buildUnnamed1683() { | 6349 buildUnnamed1989() { |
| 6350 var o = new core.List<api.SortedDimension>(); | 6350 var o = new core.List<api.SortedDimension>(); |
| 6351 o.add(buildSortedDimension()); | 6351 o.add(buildSortedDimension()); |
| 6352 o.add(buildSortedDimension()); | 6352 o.add(buildSortedDimension()); |
| 6353 return o; | 6353 return o; |
| 6354 } | 6354 } |
| 6355 | 6355 |
| 6356 checkUnnamed1683(core.List<api.SortedDimension> o) { | 6356 checkUnnamed1989(core.List<api.SortedDimension> o) { |
| 6357 unittest.expect(o, unittest.hasLength(2)); | 6357 unittest.expect(o, unittest.hasLength(2)); |
| 6358 checkSortedDimension(o[0]); | 6358 checkSortedDimension(o[0]); |
| 6359 checkSortedDimension(o[1]); | 6359 checkSortedDimension(o[1]); |
| 6360 } | 6360 } |
| 6361 | 6361 |
| 6362 buildUnnamed1684() { | 6362 buildUnnamed1990() { |
| 6363 var o = new core.List<api.DimensionValue>(); | 6363 var o = new core.List<api.DimensionValue>(); |
| 6364 o.add(buildDimensionValue()); | 6364 o.add(buildDimensionValue()); |
| 6365 o.add(buildDimensionValue()); | 6365 o.add(buildDimensionValue()); |
| 6366 return o; | 6366 return o; |
| 6367 } | 6367 } |
| 6368 | 6368 |
| 6369 checkUnnamed1684(core.List<api.DimensionValue> o) { | 6369 checkUnnamed1990(core.List<api.DimensionValue> o) { |
| 6370 unittest.expect(o, unittest.hasLength(2)); | 6370 unittest.expect(o, unittest.hasLength(2)); |
| 6371 checkDimensionValue(o[0]); | 6371 checkDimensionValue(o[0]); |
| 6372 checkDimensionValue(o[1]); | 6372 checkDimensionValue(o[1]); |
| 6373 } | 6373 } |
| 6374 | 6374 |
| 6375 buildUnnamed1685() { | 6375 buildUnnamed1991() { |
| 6376 var o = new core.List<core.String>(); | 6376 var o = new core.List<core.String>(); |
| 6377 o.add("foo"); | 6377 o.add("foo"); |
| 6378 o.add("foo"); | 6378 o.add("foo"); |
| 6379 return o; | 6379 return o; |
| 6380 } | 6380 } |
| 6381 | 6381 |
| 6382 checkUnnamed1685(core.List<core.String> o) { | 6382 checkUnnamed1991(core.List<core.String> o) { |
| 6383 unittest.expect(o, unittest.hasLength(2)); | 6383 unittest.expect(o, unittest.hasLength(2)); |
| 6384 unittest.expect(o[0], unittest.equals('foo')); | 6384 unittest.expect(o[0], unittest.equals('foo')); |
| 6385 unittest.expect(o[1], unittest.equals('foo')); | 6385 unittest.expect(o[1], unittest.equals('foo')); |
| 6386 } | 6386 } |
| 6387 | 6387 |
| 6388 buildUnnamed1686() { | 6388 buildUnnamed1992() { |
| 6389 var o = new core.List<core.String>(); | 6389 var o = new core.List<core.String>(); |
| 6390 o.add("foo"); | 6390 o.add("foo"); |
| 6391 o.add("foo"); | 6391 o.add("foo"); |
| 6392 return o; | 6392 return o; |
| 6393 } | 6393 } |
| 6394 | 6394 |
| 6395 checkUnnamed1686(core.List<core.String> o) { | 6395 checkUnnamed1992(core.List<core.String> o) { |
| 6396 unittest.expect(o, unittest.hasLength(2)); | 6396 unittest.expect(o, unittest.hasLength(2)); |
| 6397 unittest.expect(o[0], unittest.equals('foo')); | 6397 unittest.expect(o[0], unittest.equals('foo')); |
| 6398 unittest.expect(o[1], unittest.equals('foo')); | 6398 unittest.expect(o[1], unittest.equals('foo')); |
| 6399 } | 6399 } |
| 6400 | 6400 |
| 6401 core.int buildCounterReportCrossDimensionReachCriteria = 0; | 6401 core.int buildCounterReportCrossDimensionReachCriteria = 0; |
| 6402 buildReportCrossDimensionReachCriteria() { | 6402 buildReportCrossDimensionReachCriteria() { |
| 6403 var o = new api.ReportCrossDimensionReachCriteria(); | 6403 var o = new api.ReportCrossDimensionReachCriteria(); |
| 6404 buildCounterReportCrossDimensionReachCriteria++; | 6404 buildCounterReportCrossDimensionReachCriteria++; |
| 6405 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6405 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6406 o.breakdown = buildUnnamed1683(); | 6406 o.breakdown = buildUnnamed1989(); |
| 6407 o.dateRange = buildDateRange(); | 6407 o.dateRange = buildDateRange(); |
| 6408 o.dimension = "foo"; | 6408 o.dimension = "foo"; |
| 6409 o.dimensionFilters = buildUnnamed1684(); | 6409 o.dimensionFilters = buildUnnamed1990(); |
| 6410 o.metricNames = buildUnnamed1685(); | 6410 o.metricNames = buildUnnamed1991(); |
| 6411 o.overlapMetricNames = buildUnnamed1686(); | 6411 o.overlapMetricNames = buildUnnamed1992(); |
| 6412 o.pivoted = true; | 6412 o.pivoted = true; |
| 6413 } | 6413 } |
| 6414 buildCounterReportCrossDimensionReachCriteria--; | 6414 buildCounterReportCrossDimensionReachCriteria--; |
| 6415 return o; | 6415 return o; |
| 6416 } | 6416 } |
| 6417 | 6417 |
| 6418 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ | 6418 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ |
| 6419 buildCounterReportCrossDimensionReachCriteria++; | 6419 buildCounterReportCrossDimensionReachCriteria++; |
| 6420 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6420 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6421 checkUnnamed1683(o.breakdown); | 6421 checkUnnamed1989(o.breakdown); |
| 6422 checkDateRange(o.dateRange); | 6422 checkDateRange(o.dateRange); |
| 6423 unittest.expect(o.dimension, unittest.equals('foo')); | 6423 unittest.expect(o.dimension, unittest.equals('foo')); |
| 6424 checkUnnamed1684(o.dimensionFilters); | 6424 checkUnnamed1990(o.dimensionFilters); |
| 6425 checkUnnamed1685(o.metricNames); | 6425 checkUnnamed1991(o.metricNames); |
| 6426 checkUnnamed1686(o.overlapMetricNames); | 6426 checkUnnamed1992(o.overlapMetricNames); |
| 6427 unittest.expect(o.pivoted, unittest.isTrue); | 6427 unittest.expect(o.pivoted, unittest.isTrue); |
| 6428 } | 6428 } |
| 6429 buildCounterReportCrossDimensionReachCriteria--; | 6429 buildCounterReportCrossDimensionReachCriteria--; |
| 6430 } | 6430 } |
| 6431 | 6431 |
| 6432 buildUnnamed1687() { | 6432 buildUnnamed1993() { |
| 6433 var o = new core.List<api.Recipient>(); | 6433 var o = new core.List<api.Recipient>(); |
| 6434 o.add(buildRecipient()); | 6434 o.add(buildRecipient()); |
| 6435 o.add(buildRecipient()); | 6435 o.add(buildRecipient()); |
| 6436 return o; | 6436 return o; |
| 6437 } | 6437 } |
| 6438 | 6438 |
| 6439 checkUnnamed1687(core.List<api.Recipient> o) { | 6439 checkUnnamed1993(core.List<api.Recipient> o) { |
| 6440 unittest.expect(o, unittest.hasLength(2)); | 6440 unittest.expect(o, unittest.hasLength(2)); |
| 6441 checkRecipient(o[0]); | 6441 checkRecipient(o[0]); |
| 6442 checkRecipient(o[1]); | 6442 checkRecipient(o[1]); |
| 6443 } | 6443 } |
| 6444 | 6444 |
| 6445 core.int buildCounterReportDelivery = 0; | 6445 core.int buildCounterReportDelivery = 0; |
| 6446 buildReportDelivery() { | 6446 buildReportDelivery() { |
| 6447 var o = new api.ReportDelivery(); | 6447 var o = new api.ReportDelivery(); |
| 6448 buildCounterReportDelivery++; | 6448 buildCounterReportDelivery++; |
| 6449 if (buildCounterReportDelivery < 3) { | 6449 if (buildCounterReportDelivery < 3) { |
| 6450 o.emailOwner = true; | 6450 o.emailOwner = true; |
| 6451 o.emailOwnerDeliveryType = "foo"; | 6451 o.emailOwnerDeliveryType = "foo"; |
| 6452 o.message = "foo"; | 6452 o.message = "foo"; |
| 6453 o.recipients = buildUnnamed1687(); | 6453 o.recipients = buildUnnamed1993(); |
| 6454 } | 6454 } |
| 6455 buildCounterReportDelivery--; | 6455 buildCounterReportDelivery--; |
| 6456 return o; | 6456 return o; |
| 6457 } | 6457 } |
| 6458 | 6458 |
| 6459 checkReportDelivery(api.ReportDelivery o) { | 6459 checkReportDelivery(api.ReportDelivery o) { |
| 6460 buildCounterReportDelivery++; | 6460 buildCounterReportDelivery++; |
| 6461 if (buildCounterReportDelivery < 3) { | 6461 if (buildCounterReportDelivery < 3) { |
| 6462 unittest.expect(o.emailOwner, unittest.isTrue); | 6462 unittest.expect(o.emailOwner, unittest.isTrue); |
| 6463 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); | 6463 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); |
| 6464 unittest.expect(o.message, unittest.equals('foo')); | 6464 unittest.expect(o.message, unittest.equals('foo')); |
| 6465 checkUnnamed1687(o.recipients); | 6465 checkUnnamed1993(o.recipients); |
| 6466 } | 6466 } |
| 6467 buildCounterReportDelivery--; | 6467 buildCounterReportDelivery--; |
| 6468 } | 6468 } |
| 6469 | 6469 |
| 6470 buildUnnamed1688() { | 6470 buildUnnamed1994() { |
| 6471 var o = new core.List<api.DimensionValue>(); | 6471 var o = new core.List<api.DimensionValue>(); |
| 6472 o.add(buildDimensionValue()); | 6472 o.add(buildDimensionValue()); |
| 6473 o.add(buildDimensionValue()); | 6473 o.add(buildDimensionValue()); |
| 6474 return o; | 6474 return o; |
| 6475 } | 6475 } |
| 6476 | 6476 |
| 6477 checkUnnamed1688(core.List<api.DimensionValue> o) { | 6477 checkUnnamed1994(core.List<api.DimensionValue> o) { |
| 6478 unittest.expect(o, unittest.hasLength(2)); | 6478 unittest.expect(o, unittest.hasLength(2)); |
| 6479 checkDimensionValue(o[0]); | 6479 checkDimensionValue(o[0]); |
| 6480 checkDimensionValue(o[1]); | 6480 checkDimensionValue(o[1]); |
| 6481 } | 6481 } |
| 6482 | 6482 |
| 6483 buildUnnamed1689() { | 6483 buildUnnamed1995() { |
| 6484 var o = new core.List<api.DimensionValue>(); | 6484 var o = new core.List<api.DimensionValue>(); |
| 6485 o.add(buildDimensionValue()); | 6485 o.add(buildDimensionValue()); |
| 6486 o.add(buildDimensionValue()); | 6486 o.add(buildDimensionValue()); |
| 6487 return o; | 6487 return o; |
| 6488 } | 6488 } |
| 6489 | 6489 |
| 6490 checkUnnamed1689(core.List<api.DimensionValue> o) { | 6490 checkUnnamed1995(core.List<api.DimensionValue> o) { |
| 6491 unittest.expect(o, unittest.hasLength(2)); | 6491 unittest.expect(o, unittest.hasLength(2)); |
| 6492 checkDimensionValue(o[0]); | 6492 checkDimensionValue(o[0]); |
| 6493 checkDimensionValue(o[1]); | 6493 checkDimensionValue(o[1]); |
| 6494 } | 6494 } |
| 6495 | 6495 |
| 6496 buildUnnamed1690() { | 6496 buildUnnamed1996() { |
| 6497 var o = new core.List<api.SortedDimension>(); | 6497 var o = new core.List<api.SortedDimension>(); |
| 6498 o.add(buildSortedDimension()); | 6498 o.add(buildSortedDimension()); |
| 6499 o.add(buildSortedDimension()); | 6499 o.add(buildSortedDimension()); |
| 6500 return o; | 6500 return o; |
| 6501 } | 6501 } |
| 6502 | 6502 |
| 6503 checkUnnamed1690(core.List<api.SortedDimension> o) { | 6503 checkUnnamed1996(core.List<api.SortedDimension> o) { |
| 6504 unittest.expect(o, unittest.hasLength(2)); | 6504 unittest.expect(o, unittest.hasLength(2)); |
| 6505 checkSortedDimension(o[0]); | 6505 checkSortedDimension(o[0]); |
| 6506 checkSortedDimension(o[1]); | 6506 checkSortedDimension(o[1]); |
| 6507 } | 6507 } |
| 6508 | 6508 |
| 6509 buildUnnamed1691() { | 6509 buildUnnamed1997() { |
| 6510 var o = new core.List<core.String>(); | 6510 var o = new core.List<core.String>(); |
| 6511 o.add("foo"); | 6511 o.add("foo"); |
| 6512 o.add("foo"); | 6512 o.add("foo"); |
| 6513 return o; | 6513 return o; |
| 6514 } | 6514 } |
| 6515 | 6515 |
| 6516 checkUnnamed1691(core.List<core.String> o) { | 6516 checkUnnamed1997(core.List<core.String> o) { |
| 6517 unittest.expect(o, unittest.hasLength(2)); | 6517 unittest.expect(o, unittest.hasLength(2)); |
| 6518 unittest.expect(o[0], unittest.equals('foo')); | 6518 unittest.expect(o[0], unittest.equals('foo')); |
| 6519 unittest.expect(o[1], unittest.equals('foo')); | 6519 unittest.expect(o[1], unittest.equals('foo')); |
| 6520 } | 6520 } |
| 6521 | 6521 |
| 6522 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; | 6522 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; |
| 6523 buildReportFloodlightCriteriaReportProperties() { | 6523 buildReportFloodlightCriteriaReportProperties() { |
| 6524 var o = new api.ReportFloodlightCriteriaReportProperties(); | 6524 var o = new api.ReportFloodlightCriteriaReportProperties(); |
| 6525 buildCounterReportFloodlightCriteriaReportProperties++; | 6525 buildCounterReportFloodlightCriteriaReportProperties++; |
| 6526 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { | 6526 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 6540 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); | 6540 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); |
| 6541 } | 6541 } |
| 6542 buildCounterReportFloodlightCriteriaReportProperties--; | 6542 buildCounterReportFloodlightCriteriaReportProperties--; |
| 6543 } | 6543 } |
| 6544 | 6544 |
| 6545 core.int buildCounterReportFloodlightCriteria = 0; | 6545 core.int buildCounterReportFloodlightCriteria = 0; |
| 6546 buildReportFloodlightCriteria() { | 6546 buildReportFloodlightCriteria() { |
| 6547 var o = new api.ReportFloodlightCriteria(); | 6547 var o = new api.ReportFloodlightCriteria(); |
| 6548 buildCounterReportFloodlightCriteria++; | 6548 buildCounterReportFloodlightCriteria++; |
| 6549 if (buildCounterReportFloodlightCriteria < 3) { | 6549 if (buildCounterReportFloodlightCriteria < 3) { |
| 6550 o.customRichMediaEvents = buildUnnamed1688(); | 6550 o.customRichMediaEvents = buildUnnamed1994(); |
| 6551 o.dateRange = buildDateRange(); | 6551 o.dateRange = buildDateRange(); |
| 6552 o.dimensionFilters = buildUnnamed1689(); | 6552 o.dimensionFilters = buildUnnamed1995(); |
| 6553 o.dimensions = buildUnnamed1690(); | 6553 o.dimensions = buildUnnamed1996(); |
| 6554 o.floodlightConfigId = buildDimensionValue(); | 6554 o.floodlightConfigId = buildDimensionValue(); |
| 6555 o.metricNames = buildUnnamed1691(); | 6555 o.metricNames = buildUnnamed1997(); |
| 6556 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); | 6556 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); |
| 6557 } | 6557 } |
| 6558 buildCounterReportFloodlightCriteria--; | 6558 buildCounterReportFloodlightCriteria--; |
| 6559 return o; | 6559 return o; |
| 6560 } | 6560 } |
| 6561 | 6561 |
| 6562 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { | 6562 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { |
| 6563 buildCounterReportFloodlightCriteria++; | 6563 buildCounterReportFloodlightCriteria++; |
| 6564 if (buildCounterReportFloodlightCriteria < 3) { | 6564 if (buildCounterReportFloodlightCriteria < 3) { |
| 6565 checkUnnamed1688(o.customRichMediaEvents); | 6565 checkUnnamed1994(o.customRichMediaEvents); |
| 6566 checkDateRange(o.dateRange); | 6566 checkDateRange(o.dateRange); |
| 6567 checkUnnamed1689(o.dimensionFilters); | 6567 checkUnnamed1995(o.dimensionFilters); |
| 6568 checkUnnamed1690(o.dimensions); | 6568 checkUnnamed1996(o.dimensions); |
| 6569 checkDimensionValue(o.floodlightConfigId); | 6569 checkDimensionValue(o.floodlightConfigId); |
| 6570 checkUnnamed1691(o.metricNames); | 6570 checkUnnamed1997(o.metricNames); |
| 6571 checkReportFloodlightCriteriaReportProperties(o.reportProperties); | 6571 checkReportFloodlightCriteriaReportProperties(o.reportProperties); |
| 6572 } | 6572 } |
| 6573 buildCounterReportFloodlightCriteria--; | 6573 buildCounterReportFloodlightCriteria--; |
| 6574 } | 6574 } |
| 6575 | 6575 |
| 6576 buildUnnamed1692() { | 6576 buildUnnamed1998() { |
| 6577 var o = new core.List<api.DimensionValue>(); | 6577 var o = new core.List<api.DimensionValue>(); |
| 6578 o.add(buildDimensionValue()); | 6578 o.add(buildDimensionValue()); |
| 6579 o.add(buildDimensionValue()); | 6579 o.add(buildDimensionValue()); |
| 6580 return o; | 6580 return o; |
| 6581 } | 6581 } |
| 6582 | 6582 |
| 6583 checkUnnamed1692(core.List<api.DimensionValue> o) { | 6583 checkUnnamed1998(core.List<api.DimensionValue> o) { |
| 6584 unittest.expect(o, unittest.hasLength(2)); | 6584 unittest.expect(o, unittest.hasLength(2)); |
| 6585 checkDimensionValue(o[0]); | 6585 checkDimensionValue(o[0]); |
| 6586 checkDimensionValue(o[1]); | 6586 checkDimensionValue(o[1]); |
| 6587 } | 6587 } |
| 6588 | 6588 |
| 6589 buildUnnamed1693() { | 6589 buildUnnamed1999() { |
| 6590 var o = new core.List<api.SortedDimension>(); | 6590 var o = new core.List<api.SortedDimension>(); |
| 6591 o.add(buildSortedDimension()); | 6591 o.add(buildSortedDimension()); |
| 6592 o.add(buildSortedDimension()); | 6592 o.add(buildSortedDimension()); |
| 6593 return o; | 6593 return o; |
| 6594 } | 6594 } |
| 6595 | 6595 |
| 6596 checkUnnamed1693(core.List<api.SortedDimension> o) { | 6596 checkUnnamed1999(core.List<api.SortedDimension> o) { |
| 6597 unittest.expect(o, unittest.hasLength(2)); | 6597 unittest.expect(o, unittest.hasLength(2)); |
| 6598 checkSortedDimension(o[0]); | 6598 checkSortedDimension(o[0]); |
| 6599 checkSortedDimension(o[1]); | 6599 checkSortedDimension(o[1]); |
| 6600 } | 6600 } |
| 6601 | 6601 |
| 6602 buildUnnamed1694() { | 6602 buildUnnamed2000() { |
| 6603 var o = new core.List<api.SortedDimension>(); | 6603 var o = new core.List<api.SortedDimension>(); |
| 6604 o.add(buildSortedDimension()); | 6604 o.add(buildSortedDimension()); |
| 6605 o.add(buildSortedDimension()); | 6605 o.add(buildSortedDimension()); |
| 6606 return o; | 6606 return o; |
| 6607 } | 6607 } |
| 6608 | 6608 |
| 6609 checkUnnamed1694(core.List<api.SortedDimension> o) { | 6609 checkUnnamed2000(core.List<api.SortedDimension> o) { |
| 6610 unittest.expect(o, unittest.hasLength(2)); | 6610 unittest.expect(o, unittest.hasLength(2)); |
| 6611 checkSortedDimension(o[0]); | 6611 checkSortedDimension(o[0]); |
| 6612 checkSortedDimension(o[1]); | 6612 checkSortedDimension(o[1]); |
| 6613 } | 6613 } |
| 6614 | 6614 |
| 6615 buildUnnamed1695() { | 6615 buildUnnamed2001() { |
| 6616 var o = new core.List<api.DimensionValue>(); | 6616 var o = new core.List<api.DimensionValue>(); |
| 6617 o.add(buildDimensionValue()); | 6617 o.add(buildDimensionValue()); |
| 6618 o.add(buildDimensionValue()); | 6618 o.add(buildDimensionValue()); |
| 6619 return o; | 6619 return o; |
| 6620 } | 6620 } |
| 6621 | 6621 |
| 6622 checkUnnamed1695(core.List<api.DimensionValue> o) { | 6622 checkUnnamed2001(core.List<api.DimensionValue> o) { |
| 6623 unittest.expect(o, unittest.hasLength(2)); | 6623 unittest.expect(o, unittest.hasLength(2)); |
| 6624 checkDimensionValue(o[0]); | 6624 checkDimensionValue(o[0]); |
| 6625 checkDimensionValue(o[1]); | 6625 checkDimensionValue(o[1]); |
| 6626 } | 6626 } |
| 6627 | 6627 |
| 6628 buildUnnamed1696() { | 6628 buildUnnamed2002() { |
| 6629 var o = new core.List<core.String>(); | 6629 var o = new core.List<core.String>(); |
| 6630 o.add("foo"); | 6630 o.add("foo"); |
| 6631 o.add("foo"); | 6631 o.add("foo"); |
| 6632 return o; | 6632 return o; |
| 6633 } | 6633 } |
| 6634 | 6634 |
| 6635 checkUnnamed1696(core.List<core.String> o) { | 6635 checkUnnamed2002(core.List<core.String> o) { |
| 6636 unittest.expect(o, unittest.hasLength(2)); | 6636 unittest.expect(o, unittest.hasLength(2)); |
| 6637 unittest.expect(o[0], unittest.equals('foo')); | 6637 unittest.expect(o[0], unittest.equals('foo')); |
| 6638 unittest.expect(o[1], unittest.equals('foo')); | 6638 unittest.expect(o[1], unittest.equals('foo')); |
| 6639 } | 6639 } |
| 6640 | 6640 |
| 6641 buildUnnamed1697() { | 6641 buildUnnamed2003() { |
| 6642 var o = new core.List<api.SortedDimension>(); | 6642 var o = new core.List<api.SortedDimension>(); |
| 6643 o.add(buildSortedDimension()); | 6643 o.add(buildSortedDimension()); |
| 6644 o.add(buildSortedDimension()); | 6644 o.add(buildSortedDimension()); |
| 6645 return o; | 6645 return o; |
| 6646 } | 6646 } |
| 6647 | 6647 |
| 6648 checkUnnamed1697(core.List<api.SortedDimension> o) { | 6648 checkUnnamed2003(core.List<api.SortedDimension> o) { |
| 6649 unittest.expect(o, unittest.hasLength(2)); | 6649 unittest.expect(o, unittest.hasLength(2)); |
| 6650 checkSortedDimension(o[0]); | 6650 checkSortedDimension(o[0]); |
| 6651 checkSortedDimension(o[1]); | 6651 checkSortedDimension(o[1]); |
| 6652 } | 6652 } |
| 6653 | 6653 |
| 6654 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; | 6654 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; |
| 6655 buildReportPathToConversionCriteriaReportProperties() { | 6655 buildReportPathToConversionCriteriaReportProperties() { |
| 6656 var o = new api.ReportPathToConversionCriteriaReportProperties(); | 6656 var o = new api.ReportPathToConversionCriteriaReportProperties(); |
| 6657 buildCounterReportPathToConversionCriteriaReportProperties++; | 6657 buildCounterReportPathToConversionCriteriaReportProperties++; |
| 6658 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { | 6658 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 6684 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); | 6684 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); |
| 6685 } | 6685 } |
| 6686 buildCounterReportPathToConversionCriteriaReportProperties--; | 6686 buildCounterReportPathToConversionCriteriaReportProperties--; |
| 6687 } | 6687 } |
| 6688 | 6688 |
| 6689 core.int buildCounterReportPathToConversionCriteria = 0; | 6689 core.int buildCounterReportPathToConversionCriteria = 0; |
| 6690 buildReportPathToConversionCriteria() { | 6690 buildReportPathToConversionCriteria() { |
| 6691 var o = new api.ReportPathToConversionCriteria(); | 6691 var o = new api.ReportPathToConversionCriteria(); |
| 6692 buildCounterReportPathToConversionCriteria++; | 6692 buildCounterReportPathToConversionCriteria++; |
| 6693 if (buildCounterReportPathToConversionCriteria < 3) { | 6693 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6694 o.activityFilters = buildUnnamed1692(); | 6694 o.activityFilters = buildUnnamed1998(); |
| 6695 o.conversionDimensions = buildUnnamed1693(); | 6695 o.conversionDimensions = buildUnnamed1999(); |
| 6696 o.customFloodlightVariables = buildUnnamed1694(); | 6696 o.customFloodlightVariables = buildUnnamed2000(); |
| 6697 o.customRichMediaEvents = buildUnnamed1695(); | 6697 o.customRichMediaEvents = buildUnnamed2001(); |
| 6698 o.dateRange = buildDateRange(); | 6698 o.dateRange = buildDateRange(); |
| 6699 o.floodlightConfigId = buildDimensionValue(); | 6699 o.floodlightConfigId = buildDimensionValue(); |
| 6700 o.metricNames = buildUnnamed1696(); | 6700 o.metricNames = buildUnnamed2002(); |
| 6701 o.perInteractionDimensions = buildUnnamed1697(); | 6701 o.perInteractionDimensions = buildUnnamed2003(); |
| 6702 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); | 6702 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); |
| 6703 } | 6703 } |
| 6704 buildCounterReportPathToConversionCriteria--; | 6704 buildCounterReportPathToConversionCriteria--; |
| 6705 return o; | 6705 return o; |
| 6706 } | 6706 } |
| 6707 | 6707 |
| 6708 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { | 6708 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { |
| 6709 buildCounterReportPathToConversionCriteria++; | 6709 buildCounterReportPathToConversionCriteria++; |
| 6710 if (buildCounterReportPathToConversionCriteria < 3) { | 6710 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6711 checkUnnamed1692(o.activityFilters); | 6711 checkUnnamed1998(o.activityFilters); |
| 6712 checkUnnamed1693(o.conversionDimensions); | 6712 checkUnnamed1999(o.conversionDimensions); |
| 6713 checkUnnamed1694(o.customFloodlightVariables); | 6713 checkUnnamed2000(o.customFloodlightVariables); |
| 6714 checkUnnamed1695(o.customRichMediaEvents); | 6714 checkUnnamed2001(o.customRichMediaEvents); |
| 6715 checkDateRange(o.dateRange); | 6715 checkDateRange(o.dateRange); |
| 6716 checkDimensionValue(o.floodlightConfigId); | 6716 checkDimensionValue(o.floodlightConfigId); |
| 6717 checkUnnamed1696(o.metricNames); | 6717 checkUnnamed2002(o.metricNames); |
| 6718 checkUnnamed1697(o.perInteractionDimensions); | 6718 checkUnnamed2003(o.perInteractionDimensions); |
| 6719 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); | 6719 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); |
| 6720 } | 6720 } |
| 6721 buildCounterReportPathToConversionCriteria--; | 6721 buildCounterReportPathToConversionCriteria--; |
| 6722 } | 6722 } |
| 6723 | 6723 |
| 6724 buildUnnamed1698() { | 6724 buildUnnamed2004() { |
| 6725 var o = new core.List<api.DimensionValue>(); | 6725 var o = new core.List<api.DimensionValue>(); |
| 6726 o.add(buildDimensionValue()); | 6726 o.add(buildDimensionValue()); |
| 6727 o.add(buildDimensionValue()); | 6727 o.add(buildDimensionValue()); |
| 6728 return o; | 6728 return o; |
| 6729 } | 6729 } |
| 6730 | 6730 |
| 6731 checkUnnamed1698(core.List<api.DimensionValue> o) { | 6731 checkUnnamed2004(core.List<api.DimensionValue> o) { |
| 6732 unittest.expect(o, unittest.hasLength(2)); | 6732 unittest.expect(o, unittest.hasLength(2)); |
| 6733 checkDimensionValue(o[0]); | 6733 checkDimensionValue(o[0]); |
| 6734 checkDimensionValue(o[1]); | 6734 checkDimensionValue(o[1]); |
| 6735 } | 6735 } |
| 6736 | 6736 |
| 6737 buildUnnamed1699() { | 6737 buildUnnamed2005() { |
| 6738 var o = new core.List<api.SortedDimension>(); | 6738 var o = new core.List<api.SortedDimension>(); |
| 6739 o.add(buildSortedDimension()); | 6739 o.add(buildSortedDimension()); |
| 6740 o.add(buildSortedDimension()); | 6740 o.add(buildSortedDimension()); |
| 6741 return o; | 6741 return o; |
| 6742 } | 6742 } |
| 6743 | 6743 |
| 6744 checkUnnamed1699(core.List<api.SortedDimension> o) { | 6744 checkUnnamed2005(core.List<api.SortedDimension> o) { |
| 6745 unittest.expect(o, unittest.hasLength(2)); | 6745 unittest.expect(o, unittest.hasLength(2)); |
| 6746 checkSortedDimension(o[0]); | 6746 checkSortedDimension(o[0]); |
| 6747 checkSortedDimension(o[1]); | 6747 checkSortedDimension(o[1]); |
| 6748 } | 6748 } |
| 6749 | 6749 |
| 6750 buildUnnamed1700() { | 6750 buildUnnamed2006() { |
| 6751 var o = new core.List<core.String>(); | 6751 var o = new core.List<core.String>(); |
| 6752 o.add("foo"); | 6752 o.add("foo"); |
| 6753 o.add("foo"); | 6753 o.add("foo"); |
| 6754 return o; | 6754 return o; |
| 6755 } | 6755 } |
| 6756 | 6756 |
| 6757 checkUnnamed1700(core.List<core.String> o) { | 6757 checkUnnamed2006(core.List<core.String> o) { |
| 6758 unittest.expect(o, unittest.hasLength(2)); | 6758 unittest.expect(o, unittest.hasLength(2)); |
| 6759 unittest.expect(o[0], unittest.equals('foo')); | 6759 unittest.expect(o[0], unittest.equals('foo')); |
| 6760 unittest.expect(o[1], unittest.equals('foo')); | 6760 unittest.expect(o[1], unittest.equals('foo')); |
| 6761 } | 6761 } |
| 6762 | 6762 |
| 6763 buildUnnamed1701() { | 6763 buildUnnamed2007() { |
| 6764 var o = new core.List<core.String>(); | 6764 var o = new core.List<core.String>(); |
| 6765 o.add("foo"); | 6765 o.add("foo"); |
| 6766 o.add("foo"); | 6766 o.add("foo"); |
| 6767 return o; | 6767 return o; |
| 6768 } | 6768 } |
| 6769 | 6769 |
| 6770 checkUnnamed1701(core.List<core.String> o) { | 6770 checkUnnamed2007(core.List<core.String> o) { |
| 6771 unittest.expect(o, unittest.hasLength(2)); | 6771 unittest.expect(o, unittest.hasLength(2)); |
| 6772 unittest.expect(o[0], unittest.equals('foo')); | 6772 unittest.expect(o[0], unittest.equals('foo')); |
| 6773 unittest.expect(o[1], unittest.equals('foo')); | 6773 unittest.expect(o[1], unittest.equals('foo')); |
| 6774 } | 6774 } |
| 6775 | 6775 |
| 6776 core.int buildCounterReportReachCriteria = 0; | 6776 core.int buildCounterReportReachCriteria = 0; |
| 6777 buildReportReachCriteria() { | 6777 buildReportReachCriteria() { |
| 6778 var o = new api.ReportReachCriteria(); | 6778 var o = new api.ReportReachCriteria(); |
| 6779 buildCounterReportReachCriteria++; | 6779 buildCounterReportReachCriteria++; |
| 6780 if (buildCounterReportReachCriteria < 3) { | 6780 if (buildCounterReportReachCriteria < 3) { |
| 6781 o.activities = buildActivities(); | 6781 o.activities = buildActivities(); |
| 6782 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6782 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6783 o.dateRange = buildDateRange(); | 6783 o.dateRange = buildDateRange(); |
| 6784 o.dimensionFilters = buildUnnamed1698(); | 6784 o.dimensionFilters = buildUnnamed2004(); |
| 6785 o.dimensions = buildUnnamed1699(); | 6785 o.dimensions = buildUnnamed2005(); |
| 6786 o.enableAllDimensionCombinations = true; | 6786 o.enableAllDimensionCombinations = true; |
| 6787 o.metricNames = buildUnnamed1700(); | 6787 o.metricNames = buildUnnamed2006(); |
| 6788 o.reachByFrequencyMetricNames = buildUnnamed1701(); | 6788 o.reachByFrequencyMetricNames = buildUnnamed2007(); |
| 6789 } | 6789 } |
| 6790 buildCounterReportReachCriteria--; | 6790 buildCounterReportReachCriteria--; |
| 6791 return o; | 6791 return o; |
| 6792 } | 6792 } |
| 6793 | 6793 |
| 6794 checkReportReachCriteria(api.ReportReachCriteria o) { | 6794 checkReportReachCriteria(api.ReportReachCriteria o) { |
| 6795 buildCounterReportReachCriteria++; | 6795 buildCounterReportReachCriteria++; |
| 6796 if (buildCounterReportReachCriteria < 3) { | 6796 if (buildCounterReportReachCriteria < 3) { |
| 6797 checkActivities(o.activities); | 6797 checkActivities(o.activities); |
| 6798 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6798 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6799 checkDateRange(o.dateRange); | 6799 checkDateRange(o.dateRange); |
| 6800 checkUnnamed1698(o.dimensionFilters); | 6800 checkUnnamed2004(o.dimensionFilters); |
| 6801 checkUnnamed1699(o.dimensions); | 6801 checkUnnamed2005(o.dimensions); |
| 6802 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); | 6802 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); |
| 6803 checkUnnamed1700(o.metricNames); | 6803 checkUnnamed2006(o.metricNames); |
| 6804 checkUnnamed1701(o.reachByFrequencyMetricNames); | 6804 checkUnnamed2007(o.reachByFrequencyMetricNames); |
| 6805 } | 6805 } |
| 6806 buildCounterReportReachCriteria--; | 6806 buildCounterReportReachCriteria--; |
| 6807 } | 6807 } |
| 6808 | 6808 |
| 6809 buildUnnamed1702() { | 6809 buildUnnamed2008() { |
| 6810 var o = new core.List<core.String>(); | 6810 var o = new core.List<core.String>(); |
| 6811 o.add("foo"); | 6811 o.add("foo"); |
| 6812 o.add("foo"); | 6812 o.add("foo"); |
| 6813 return o; | 6813 return o; |
| 6814 } | 6814 } |
| 6815 | 6815 |
| 6816 checkUnnamed1702(core.List<core.String> o) { | 6816 checkUnnamed2008(core.List<core.String> o) { |
| 6817 unittest.expect(o, unittest.hasLength(2)); | 6817 unittest.expect(o, unittest.hasLength(2)); |
| 6818 unittest.expect(o[0], unittest.equals('foo')); | 6818 unittest.expect(o[0], unittest.equals('foo')); |
| 6819 unittest.expect(o[1], unittest.equals('foo')); | 6819 unittest.expect(o[1], unittest.equals('foo')); |
| 6820 } | 6820 } |
| 6821 | 6821 |
| 6822 core.int buildCounterReportSchedule = 0; | 6822 core.int buildCounterReportSchedule = 0; |
| 6823 buildReportSchedule() { | 6823 buildReportSchedule() { |
| 6824 var o = new api.ReportSchedule(); | 6824 var o = new api.ReportSchedule(); |
| 6825 buildCounterReportSchedule++; | 6825 buildCounterReportSchedule++; |
| 6826 if (buildCounterReportSchedule < 3) { | 6826 if (buildCounterReportSchedule < 3) { |
| 6827 o.active = true; | 6827 o.active = true; |
| 6828 o.every = 42; | 6828 o.every = 42; |
| 6829 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6829 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6830 o.repeats = "foo"; | 6830 o.repeats = "foo"; |
| 6831 o.repeatsOnWeekDays = buildUnnamed1702(); | 6831 o.repeatsOnWeekDays = buildUnnamed2008(); |
| 6832 o.runsOnDayOfMonth = "foo"; | 6832 o.runsOnDayOfMonth = "foo"; |
| 6833 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6833 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6834 } | 6834 } |
| 6835 buildCounterReportSchedule--; | 6835 buildCounterReportSchedule--; |
| 6836 return o; | 6836 return o; |
| 6837 } | 6837 } |
| 6838 | 6838 |
| 6839 checkReportSchedule(api.ReportSchedule o) { | 6839 checkReportSchedule(api.ReportSchedule o) { |
| 6840 buildCounterReportSchedule++; | 6840 buildCounterReportSchedule++; |
| 6841 if (buildCounterReportSchedule < 3) { | 6841 if (buildCounterReportSchedule < 3) { |
| 6842 unittest.expect(o.active, unittest.isTrue); | 6842 unittest.expect(o.active, unittest.isTrue); |
| 6843 unittest.expect(o.every, unittest.equals(42)); | 6843 unittest.expect(o.every, unittest.equals(42)); |
| 6844 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); | 6844 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); |
| 6845 unittest.expect(o.repeats, unittest.equals('foo')); | 6845 unittest.expect(o.repeats, unittest.equals('foo')); |
| 6846 checkUnnamed1702(o.repeatsOnWeekDays); | 6846 checkUnnamed2008(o.repeatsOnWeekDays); |
| 6847 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); | 6847 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); |
| 6848 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6848 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 6849 } | 6849 } |
| 6850 buildCounterReportSchedule--; | 6850 buildCounterReportSchedule--; |
| 6851 } | 6851 } |
| 6852 | 6852 |
| 6853 core.int buildCounterReport = 0; | 6853 core.int buildCounterReport = 0; |
| 6854 buildReport() { | 6854 buildReport() { |
| 6855 var o = new api.Report(); | 6855 var o = new api.Report(); |
| 6856 buildCounterReport++; | 6856 buildCounterReport++; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6896 unittest.expect(o.ownerProfileId, unittest.equals('foo')); | 6896 unittest.expect(o.ownerProfileId, unittest.equals('foo')); |
| 6897 checkReportPathToConversionCriteria(o.pathToConversionCriteria); | 6897 checkReportPathToConversionCriteria(o.pathToConversionCriteria); |
| 6898 checkReportReachCriteria(o.reachCriteria); | 6898 checkReportReachCriteria(o.reachCriteria); |
| 6899 checkReportSchedule(o.schedule); | 6899 checkReportSchedule(o.schedule); |
| 6900 unittest.expect(o.subAccountId, unittest.equals('foo')); | 6900 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 6901 unittest.expect(o.type, unittest.equals('foo')); | 6901 unittest.expect(o.type, unittest.equals('foo')); |
| 6902 } | 6902 } |
| 6903 buildCounterReport--; | 6903 buildCounterReport--; |
| 6904 } | 6904 } |
| 6905 | 6905 |
| 6906 buildUnnamed1703() { | 6906 buildUnnamed2009() { |
| 6907 var o = new core.List<api.Dimension>(); | 6907 var o = new core.List<api.Dimension>(); |
| 6908 o.add(buildDimension()); | 6908 o.add(buildDimension()); |
| 6909 o.add(buildDimension()); | 6909 o.add(buildDimension()); |
| 6910 return o; | 6910 return o; |
| 6911 } | 6911 } |
| 6912 | 6912 |
| 6913 checkUnnamed1703(core.List<api.Dimension> o) { | 6913 checkUnnamed2009(core.List<api.Dimension> o) { |
| 6914 unittest.expect(o, unittest.hasLength(2)); | 6914 unittest.expect(o, unittest.hasLength(2)); |
| 6915 checkDimension(o[0]); | 6915 checkDimension(o[0]); |
| 6916 checkDimension(o[1]); | 6916 checkDimension(o[1]); |
| 6917 } | 6917 } |
| 6918 | 6918 |
| 6919 buildUnnamed1704() { | 6919 buildUnnamed2010() { |
| 6920 var o = new core.List<api.Dimension>(); | 6920 var o = new core.List<api.Dimension>(); |
| 6921 o.add(buildDimension()); | 6921 o.add(buildDimension()); |
| 6922 o.add(buildDimension()); | 6922 o.add(buildDimension()); |
| 6923 return o; | 6923 return o; |
| 6924 } | 6924 } |
| 6925 | 6925 |
| 6926 checkUnnamed1704(core.List<api.Dimension> o) { | 6926 checkUnnamed2010(core.List<api.Dimension> o) { |
| 6927 unittest.expect(o, unittest.hasLength(2)); | 6927 unittest.expect(o, unittest.hasLength(2)); |
| 6928 checkDimension(o[0]); | 6928 checkDimension(o[0]); |
| 6929 checkDimension(o[1]); | 6929 checkDimension(o[1]); |
| 6930 } | 6930 } |
| 6931 | 6931 |
| 6932 buildUnnamed1705() { | 6932 buildUnnamed2011() { |
| 6933 var o = new core.List<api.Metric>(); | 6933 var o = new core.List<api.Metric>(); |
| 6934 o.add(buildMetric()); | 6934 o.add(buildMetric()); |
| 6935 o.add(buildMetric()); | 6935 o.add(buildMetric()); |
| 6936 return o; | 6936 return o; |
| 6937 } | 6937 } |
| 6938 | 6938 |
| 6939 checkUnnamed1705(core.List<api.Metric> o) { | 6939 checkUnnamed2011(core.List<api.Metric> o) { |
| 6940 unittest.expect(o, unittest.hasLength(2)); | 6940 unittest.expect(o, unittest.hasLength(2)); |
| 6941 checkMetric(o[0]); | 6941 checkMetric(o[0]); |
| 6942 checkMetric(o[1]); | 6942 checkMetric(o[1]); |
| 6943 } | 6943 } |
| 6944 | 6944 |
| 6945 buildUnnamed1706() { | 6945 buildUnnamed2012() { |
| 6946 var o = new core.List<api.Metric>(); | 6946 var o = new core.List<api.Metric>(); |
| 6947 o.add(buildMetric()); | 6947 o.add(buildMetric()); |
| 6948 o.add(buildMetric()); | 6948 o.add(buildMetric()); |
| 6949 return o; | 6949 return o; |
| 6950 } | 6950 } |
| 6951 | 6951 |
| 6952 checkUnnamed1706(core.List<api.Metric> o) { | 6952 checkUnnamed2012(core.List<api.Metric> o) { |
| 6953 unittest.expect(o, unittest.hasLength(2)); | 6953 unittest.expect(o, unittest.hasLength(2)); |
| 6954 checkMetric(o[0]); | 6954 checkMetric(o[0]); |
| 6955 checkMetric(o[1]); | 6955 checkMetric(o[1]); |
| 6956 } | 6956 } |
| 6957 | 6957 |
| 6958 core.int buildCounterReportCompatibleFields = 0; | 6958 core.int buildCounterReportCompatibleFields = 0; |
| 6959 buildReportCompatibleFields() { | 6959 buildReportCompatibleFields() { |
| 6960 var o = new api.ReportCompatibleFields(); | 6960 var o = new api.ReportCompatibleFields(); |
| 6961 buildCounterReportCompatibleFields++; | 6961 buildCounterReportCompatibleFields++; |
| 6962 if (buildCounterReportCompatibleFields < 3) { | 6962 if (buildCounterReportCompatibleFields < 3) { |
| 6963 o.dimensionFilters = buildUnnamed1703(); | 6963 o.dimensionFilters = buildUnnamed2009(); |
| 6964 o.dimensions = buildUnnamed1704(); | 6964 o.dimensions = buildUnnamed2010(); |
| 6965 o.kind = "foo"; | 6965 o.kind = "foo"; |
| 6966 o.metrics = buildUnnamed1705(); | 6966 o.metrics = buildUnnamed2011(); |
| 6967 o.pivotedActivityMetrics = buildUnnamed1706(); | 6967 o.pivotedActivityMetrics = buildUnnamed2012(); |
| 6968 } | 6968 } |
| 6969 buildCounterReportCompatibleFields--; | 6969 buildCounterReportCompatibleFields--; |
| 6970 return o; | 6970 return o; |
| 6971 } | 6971 } |
| 6972 | 6972 |
| 6973 checkReportCompatibleFields(api.ReportCompatibleFields o) { | 6973 checkReportCompatibleFields(api.ReportCompatibleFields o) { |
| 6974 buildCounterReportCompatibleFields++; | 6974 buildCounterReportCompatibleFields++; |
| 6975 if (buildCounterReportCompatibleFields < 3) { | 6975 if (buildCounterReportCompatibleFields < 3) { |
| 6976 checkUnnamed1703(o.dimensionFilters); | 6976 checkUnnamed2009(o.dimensionFilters); |
| 6977 checkUnnamed1704(o.dimensions); | 6977 checkUnnamed2010(o.dimensions); |
| 6978 unittest.expect(o.kind, unittest.equals('foo')); | 6978 unittest.expect(o.kind, unittest.equals('foo')); |
| 6979 checkUnnamed1705(o.metrics); | 6979 checkUnnamed2011(o.metrics); |
| 6980 checkUnnamed1706(o.pivotedActivityMetrics); | 6980 checkUnnamed2012(o.pivotedActivityMetrics); |
| 6981 } | 6981 } |
| 6982 buildCounterReportCompatibleFields--; | 6982 buildCounterReportCompatibleFields--; |
| 6983 } | 6983 } |
| 6984 | 6984 |
| 6985 buildUnnamed1707() { | 6985 buildUnnamed2013() { |
| 6986 var o = new core.List<api.Report>(); | 6986 var o = new core.List<api.Report>(); |
| 6987 o.add(buildReport()); | 6987 o.add(buildReport()); |
| 6988 o.add(buildReport()); | 6988 o.add(buildReport()); |
| 6989 return o; | 6989 return o; |
| 6990 } | 6990 } |
| 6991 | 6991 |
| 6992 checkUnnamed1707(core.List<api.Report> o) { | 6992 checkUnnamed2013(core.List<api.Report> o) { |
| 6993 unittest.expect(o, unittest.hasLength(2)); | 6993 unittest.expect(o, unittest.hasLength(2)); |
| 6994 checkReport(o[0]); | 6994 checkReport(o[0]); |
| 6995 checkReport(o[1]); | 6995 checkReport(o[1]); |
| 6996 } | 6996 } |
| 6997 | 6997 |
| 6998 core.int buildCounterReportList = 0; | 6998 core.int buildCounterReportList = 0; |
| 6999 buildReportList() { | 6999 buildReportList() { |
| 7000 var o = new api.ReportList(); | 7000 var o = new api.ReportList(); |
| 7001 buildCounterReportList++; | 7001 buildCounterReportList++; |
| 7002 if (buildCounterReportList < 3) { | 7002 if (buildCounterReportList < 3) { |
| 7003 o.etag = "foo"; | 7003 o.etag = "foo"; |
| 7004 o.items = buildUnnamed1707(); | 7004 o.items = buildUnnamed2013(); |
| 7005 o.kind = "foo"; | 7005 o.kind = "foo"; |
| 7006 o.nextPageToken = "foo"; | 7006 o.nextPageToken = "foo"; |
| 7007 } | 7007 } |
| 7008 buildCounterReportList--; | 7008 buildCounterReportList--; |
| 7009 return o; | 7009 return o; |
| 7010 } | 7010 } |
| 7011 | 7011 |
| 7012 checkReportList(api.ReportList o) { | 7012 checkReportList(api.ReportList o) { |
| 7013 buildCounterReportList++; | 7013 buildCounterReportList++; |
| 7014 if (buildCounterReportList < 3) { | 7014 if (buildCounterReportList < 3) { |
| 7015 unittest.expect(o.etag, unittest.equals('foo')); | 7015 unittest.expect(o.etag, unittest.equals('foo')); |
| 7016 checkUnnamed1707(o.items); | 7016 checkUnnamed2013(o.items); |
| 7017 unittest.expect(o.kind, unittest.equals('foo')); | 7017 unittest.expect(o.kind, unittest.equals('foo')); |
| 7018 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7018 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7019 } | 7019 } |
| 7020 buildCounterReportList--; | 7020 buildCounterReportList--; |
| 7021 } | 7021 } |
| 7022 | 7022 |
| 7023 core.int buildCounterReportsConfiguration = 0; | 7023 core.int buildCounterReportsConfiguration = 0; |
| 7024 buildReportsConfiguration() { | 7024 buildReportsConfiguration() { |
| 7025 var o = new api.ReportsConfiguration(); | 7025 var o = new api.ReportsConfiguration(); |
| 7026 buildCounterReportsConfiguration++; | 7026 buildCounterReportsConfiguration++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7059 checkRichMediaExitOverride(api.RichMediaExitOverride o) { | 7059 checkRichMediaExitOverride(api.RichMediaExitOverride o) { |
| 7060 buildCounterRichMediaExitOverride++; | 7060 buildCounterRichMediaExitOverride++; |
| 7061 if (buildCounterRichMediaExitOverride < 3) { | 7061 if (buildCounterRichMediaExitOverride < 3) { |
| 7062 unittest.expect(o.customExitUrl, unittest.equals('foo')); | 7062 unittest.expect(o.customExitUrl, unittest.equals('foo')); |
| 7063 unittest.expect(o.exitId, unittest.equals('foo')); | 7063 unittest.expect(o.exitId, unittest.equals('foo')); |
| 7064 unittest.expect(o.useCustomExitUrl, unittest.isTrue); | 7064 unittest.expect(o.useCustomExitUrl, unittest.isTrue); |
| 7065 } | 7065 } |
| 7066 buildCounterRichMediaExitOverride--; | 7066 buildCounterRichMediaExitOverride--; |
| 7067 } | 7067 } |
| 7068 | 7068 |
| 7069 buildUnnamed1708() { | 7069 buildUnnamed2014() { |
| 7070 var o = new core.List<api.SiteContact>(); | 7070 var o = new core.List<api.SiteContact>(); |
| 7071 o.add(buildSiteContact()); | 7071 o.add(buildSiteContact()); |
| 7072 o.add(buildSiteContact()); | 7072 o.add(buildSiteContact()); |
| 7073 return o; | 7073 return o; |
| 7074 } | 7074 } |
| 7075 | 7075 |
| 7076 checkUnnamed1708(core.List<api.SiteContact> o) { | 7076 checkUnnamed2014(core.List<api.SiteContact> o) { |
| 7077 unittest.expect(o, unittest.hasLength(2)); | 7077 unittest.expect(o, unittest.hasLength(2)); |
| 7078 checkSiteContact(o[0]); | 7078 checkSiteContact(o[0]); |
| 7079 checkSiteContact(o[1]); | 7079 checkSiteContact(o[1]); |
| 7080 } | 7080 } |
| 7081 | 7081 |
| 7082 core.int buildCounterSite = 0; | 7082 core.int buildCounterSite = 0; |
| 7083 buildSite() { | 7083 buildSite() { |
| 7084 var o = new api.Site(); | 7084 var o = new api.Site(); |
| 7085 buildCounterSite++; | 7085 buildCounterSite++; |
| 7086 if (buildCounterSite < 3) { | 7086 if (buildCounterSite < 3) { |
| 7087 o.accountId = "foo"; | 7087 o.accountId = "foo"; |
| 7088 o.approved = true; | 7088 o.approved = true; |
| 7089 o.directorySiteId = "foo"; | 7089 o.directorySiteId = "foo"; |
| 7090 o.directorySiteIdDimensionValue = buildDimensionValue(); | 7090 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 7091 o.id = "foo"; | 7091 o.id = "foo"; |
| 7092 o.idDimensionValue = buildDimensionValue(); | 7092 o.idDimensionValue = buildDimensionValue(); |
| 7093 o.keyName = "foo"; | 7093 o.keyName = "foo"; |
| 7094 o.kind = "foo"; | 7094 o.kind = "foo"; |
| 7095 o.name = "foo"; | 7095 o.name = "foo"; |
| 7096 o.siteContacts = buildUnnamed1708(); | 7096 o.siteContacts = buildUnnamed2014(); |
| 7097 o.siteSettings = buildSiteSettings(); | 7097 o.siteSettings = buildSiteSettings(); |
| 7098 o.subaccountId = "foo"; | 7098 o.subaccountId = "foo"; |
| 7099 } | 7099 } |
| 7100 buildCounterSite--; | 7100 buildCounterSite--; |
| 7101 return o; | 7101 return o; |
| 7102 } | 7102 } |
| 7103 | 7103 |
| 7104 checkSite(api.Site o) { | 7104 checkSite(api.Site o) { |
| 7105 buildCounterSite++; | 7105 buildCounterSite++; |
| 7106 if (buildCounterSite < 3) { | 7106 if (buildCounterSite < 3) { |
| 7107 unittest.expect(o.accountId, unittest.equals('foo')); | 7107 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7108 unittest.expect(o.approved, unittest.isTrue); | 7108 unittest.expect(o.approved, unittest.isTrue); |
| 7109 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 7109 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 7110 checkDimensionValue(o.directorySiteIdDimensionValue); | 7110 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 7111 unittest.expect(o.id, unittest.equals('foo')); | 7111 unittest.expect(o.id, unittest.equals('foo')); |
| 7112 checkDimensionValue(o.idDimensionValue); | 7112 checkDimensionValue(o.idDimensionValue); |
| 7113 unittest.expect(o.keyName, unittest.equals('foo')); | 7113 unittest.expect(o.keyName, unittest.equals('foo')); |
| 7114 unittest.expect(o.kind, unittest.equals('foo')); | 7114 unittest.expect(o.kind, unittest.equals('foo')); |
| 7115 unittest.expect(o.name, unittest.equals('foo')); | 7115 unittest.expect(o.name, unittest.equals('foo')); |
| 7116 checkUnnamed1708(o.siteContacts); | 7116 checkUnnamed2014(o.siteContacts); |
| 7117 checkSiteSettings(o.siteSettings); | 7117 checkSiteSettings(o.siteSettings); |
| 7118 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7118 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7119 } | 7119 } |
| 7120 buildCounterSite--; | 7120 buildCounterSite--; |
| 7121 } | 7121 } |
| 7122 | 7122 |
| 7123 core.int buildCounterSiteContact = 0; | 7123 core.int buildCounterSiteContact = 0; |
| 7124 buildSiteContact() { | 7124 buildSiteContact() { |
| 7125 var o = new api.SiteContact(); | 7125 var o = new api.SiteContact(); |
| 7126 buildCounterSiteContact++; | 7126 buildCounterSiteContact++; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7177 checkCreativeSettings(o.creativeSettings); | 7177 checkCreativeSettings(o.creativeSettings); |
| 7178 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); | 7178 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); |
| 7179 unittest.expect(o.disableNewCookie, unittest.isTrue); | 7179 unittest.expect(o.disableNewCookie, unittest.isTrue); |
| 7180 checkLookbackConfiguration(o.lookbackConfiguration); | 7180 checkLookbackConfiguration(o.lookbackConfiguration); |
| 7181 checkTagSetting(o.tagSetting); | 7181 checkTagSetting(o.tagSetting); |
| 7182 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 7182 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 7183 } | 7183 } |
| 7184 buildCounterSiteSettings--; | 7184 buildCounterSiteSettings--; |
| 7185 } | 7185 } |
| 7186 | 7186 |
| 7187 buildUnnamed1709() { | 7187 buildUnnamed2015() { |
| 7188 var o = new core.List<api.Site>(); | 7188 var o = new core.List<api.Site>(); |
| 7189 o.add(buildSite()); | 7189 o.add(buildSite()); |
| 7190 o.add(buildSite()); | 7190 o.add(buildSite()); |
| 7191 return o; | 7191 return o; |
| 7192 } | 7192 } |
| 7193 | 7193 |
| 7194 checkUnnamed1709(core.List<api.Site> o) { | 7194 checkUnnamed2015(core.List<api.Site> o) { |
| 7195 unittest.expect(o, unittest.hasLength(2)); | 7195 unittest.expect(o, unittest.hasLength(2)); |
| 7196 checkSite(o[0]); | 7196 checkSite(o[0]); |
| 7197 checkSite(o[1]); | 7197 checkSite(o[1]); |
| 7198 } | 7198 } |
| 7199 | 7199 |
| 7200 core.int buildCounterSitesListResponse = 0; | 7200 core.int buildCounterSitesListResponse = 0; |
| 7201 buildSitesListResponse() { | 7201 buildSitesListResponse() { |
| 7202 var o = new api.SitesListResponse(); | 7202 var o = new api.SitesListResponse(); |
| 7203 buildCounterSitesListResponse++; | 7203 buildCounterSitesListResponse++; |
| 7204 if (buildCounterSitesListResponse < 3) { | 7204 if (buildCounterSitesListResponse < 3) { |
| 7205 o.kind = "foo"; | 7205 o.kind = "foo"; |
| 7206 o.nextPageToken = "foo"; | 7206 o.nextPageToken = "foo"; |
| 7207 o.sites = buildUnnamed1709(); | 7207 o.sites = buildUnnamed2015(); |
| 7208 } | 7208 } |
| 7209 buildCounterSitesListResponse--; | 7209 buildCounterSitesListResponse--; |
| 7210 return o; | 7210 return o; |
| 7211 } | 7211 } |
| 7212 | 7212 |
| 7213 checkSitesListResponse(api.SitesListResponse o) { | 7213 checkSitesListResponse(api.SitesListResponse o) { |
| 7214 buildCounterSitesListResponse++; | 7214 buildCounterSitesListResponse++; |
| 7215 if (buildCounterSitesListResponse < 3) { | 7215 if (buildCounterSitesListResponse < 3) { |
| 7216 unittest.expect(o.kind, unittest.equals('foo')); | 7216 unittest.expect(o.kind, unittest.equals('foo')); |
| 7217 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7217 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7218 checkUnnamed1709(o.sites); | 7218 checkUnnamed2015(o.sites); |
| 7219 } | 7219 } |
| 7220 buildCounterSitesListResponse--; | 7220 buildCounterSitesListResponse--; |
| 7221 } | 7221 } |
| 7222 | 7222 |
| 7223 core.int buildCounterSize = 0; | 7223 core.int buildCounterSize = 0; |
| 7224 buildSize() { | 7224 buildSize() { |
| 7225 var o = new api.Size(); | 7225 var o = new api.Size(); |
| 7226 buildCounterSize++; | 7226 buildCounterSize++; |
| 7227 if (buildCounterSize < 3) { | 7227 if (buildCounterSize < 3) { |
| 7228 o.height = 42; | 7228 o.height = 42; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 7240 if (buildCounterSize < 3) { | 7240 if (buildCounterSize < 3) { |
| 7241 unittest.expect(o.height, unittest.equals(42)); | 7241 unittest.expect(o.height, unittest.equals(42)); |
| 7242 unittest.expect(o.iab, unittest.isTrue); | 7242 unittest.expect(o.iab, unittest.isTrue); |
| 7243 unittest.expect(o.id, unittest.equals('foo')); | 7243 unittest.expect(o.id, unittest.equals('foo')); |
| 7244 unittest.expect(o.kind, unittest.equals('foo')); | 7244 unittest.expect(o.kind, unittest.equals('foo')); |
| 7245 unittest.expect(o.width, unittest.equals(42)); | 7245 unittest.expect(o.width, unittest.equals(42)); |
| 7246 } | 7246 } |
| 7247 buildCounterSize--; | 7247 buildCounterSize--; |
| 7248 } | 7248 } |
| 7249 | 7249 |
| 7250 buildUnnamed1710() { | 7250 buildUnnamed2016() { |
| 7251 var o = new core.List<api.Size>(); | 7251 var o = new core.List<api.Size>(); |
| 7252 o.add(buildSize()); | 7252 o.add(buildSize()); |
| 7253 o.add(buildSize()); | 7253 o.add(buildSize()); |
| 7254 return o; | 7254 return o; |
| 7255 } | 7255 } |
| 7256 | 7256 |
| 7257 checkUnnamed1710(core.List<api.Size> o) { | 7257 checkUnnamed2016(core.List<api.Size> o) { |
| 7258 unittest.expect(o, unittest.hasLength(2)); | 7258 unittest.expect(o, unittest.hasLength(2)); |
| 7259 checkSize(o[0]); | 7259 checkSize(o[0]); |
| 7260 checkSize(o[1]); | 7260 checkSize(o[1]); |
| 7261 } | 7261 } |
| 7262 | 7262 |
| 7263 core.int buildCounterSizesListResponse = 0; | 7263 core.int buildCounterSizesListResponse = 0; |
| 7264 buildSizesListResponse() { | 7264 buildSizesListResponse() { |
| 7265 var o = new api.SizesListResponse(); | 7265 var o = new api.SizesListResponse(); |
| 7266 buildCounterSizesListResponse++; | 7266 buildCounterSizesListResponse++; |
| 7267 if (buildCounterSizesListResponse < 3) { | 7267 if (buildCounterSizesListResponse < 3) { |
| 7268 o.kind = "foo"; | 7268 o.kind = "foo"; |
| 7269 o.sizes = buildUnnamed1710(); | 7269 o.sizes = buildUnnamed2016(); |
| 7270 } | 7270 } |
| 7271 buildCounterSizesListResponse--; | 7271 buildCounterSizesListResponse--; |
| 7272 return o; | 7272 return o; |
| 7273 } | 7273 } |
| 7274 | 7274 |
| 7275 checkSizesListResponse(api.SizesListResponse o) { | 7275 checkSizesListResponse(api.SizesListResponse o) { |
| 7276 buildCounterSizesListResponse++; | 7276 buildCounterSizesListResponse++; |
| 7277 if (buildCounterSizesListResponse < 3) { | 7277 if (buildCounterSizesListResponse < 3) { |
| 7278 unittest.expect(o.kind, unittest.equals('foo')); | 7278 unittest.expect(o.kind, unittest.equals('foo')); |
| 7279 checkUnnamed1710(o.sizes); | 7279 checkUnnamed2016(o.sizes); |
| 7280 } | 7280 } |
| 7281 buildCounterSizesListResponse--; | 7281 buildCounterSizesListResponse--; |
| 7282 } | 7282 } |
| 7283 | 7283 |
| 7284 core.int buildCounterSortedDimension = 0; | 7284 core.int buildCounterSortedDimension = 0; |
| 7285 buildSortedDimension() { | 7285 buildSortedDimension() { |
| 7286 var o = new api.SortedDimension(); | 7286 var o = new api.SortedDimension(); |
| 7287 buildCounterSortedDimension++; | 7287 buildCounterSortedDimension++; |
| 7288 if (buildCounterSortedDimension < 3) { | 7288 if (buildCounterSortedDimension < 3) { |
| 7289 o.kind = "foo"; | 7289 o.kind = "foo"; |
| 7290 o.name = "foo"; | 7290 o.name = "foo"; |
| 7291 o.sortOrder = "foo"; | 7291 o.sortOrder = "foo"; |
| 7292 } | 7292 } |
| 7293 buildCounterSortedDimension--; | 7293 buildCounterSortedDimension--; |
| 7294 return o; | 7294 return o; |
| 7295 } | 7295 } |
| 7296 | 7296 |
| 7297 checkSortedDimension(api.SortedDimension o) { | 7297 checkSortedDimension(api.SortedDimension o) { |
| 7298 buildCounterSortedDimension++; | 7298 buildCounterSortedDimension++; |
| 7299 if (buildCounterSortedDimension < 3) { | 7299 if (buildCounterSortedDimension < 3) { |
| 7300 unittest.expect(o.kind, unittest.equals('foo')); | 7300 unittest.expect(o.kind, unittest.equals('foo')); |
| 7301 unittest.expect(o.name, unittest.equals('foo')); | 7301 unittest.expect(o.name, unittest.equals('foo')); |
| 7302 unittest.expect(o.sortOrder, unittest.equals('foo')); | 7302 unittest.expect(o.sortOrder, unittest.equals('foo')); |
| 7303 } | 7303 } |
| 7304 buildCounterSortedDimension--; | 7304 buildCounterSortedDimension--; |
| 7305 } | 7305 } |
| 7306 | 7306 |
| 7307 buildUnnamed1711() { | 7307 buildUnnamed2017() { |
| 7308 var o = new core.List<core.String>(); | 7308 var o = new core.List<core.String>(); |
| 7309 o.add("foo"); | 7309 o.add("foo"); |
| 7310 o.add("foo"); | 7310 o.add("foo"); |
| 7311 return o; | 7311 return o; |
| 7312 } | 7312 } |
| 7313 | 7313 |
| 7314 checkUnnamed1711(core.List<core.String> o) { | 7314 checkUnnamed2017(core.List<core.String> o) { |
| 7315 unittest.expect(o, unittest.hasLength(2)); | 7315 unittest.expect(o, unittest.hasLength(2)); |
| 7316 unittest.expect(o[0], unittest.equals('foo')); | 7316 unittest.expect(o[0], unittest.equals('foo')); |
| 7317 unittest.expect(o[1], unittest.equals('foo')); | 7317 unittest.expect(o[1], unittest.equals('foo')); |
| 7318 } | 7318 } |
| 7319 | 7319 |
| 7320 core.int buildCounterSubaccount = 0; | 7320 core.int buildCounterSubaccount = 0; |
| 7321 buildSubaccount() { | 7321 buildSubaccount() { |
| 7322 var o = new api.Subaccount(); | 7322 var o = new api.Subaccount(); |
| 7323 buildCounterSubaccount++; | 7323 buildCounterSubaccount++; |
| 7324 if (buildCounterSubaccount < 3) { | 7324 if (buildCounterSubaccount < 3) { |
| 7325 o.accountId = "foo"; | 7325 o.accountId = "foo"; |
| 7326 o.availablePermissionIds = buildUnnamed1711(); | 7326 o.availablePermissionIds = buildUnnamed2017(); |
| 7327 o.id = "foo"; | 7327 o.id = "foo"; |
| 7328 o.kind = "foo"; | 7328 o.kind = "foo"; |
| 7329 o.name = "foo"; | 7329 o.name = "foo"; |
| 7330 } | 7330 } |
| 7331 buildCounterSubaccount--; | 7331 buildCounterSubaccount--; |
| 7332 return o; | 7332 return o; |
| 7333 } | 7333 } |
| 7334 | 7334 |
| 7335 checkSubaccount(api.Subaccount o) { | 7335 checkSubaccount(api.Subaccount o) { |
| 7336 buildCounterSubaccount++; | 7336 buildCounterSubaccount++; |
| 7337 if (buildCounterSubaccount < 3) { | 7337 if (buildCounterSubaccount < 3) { |
| 7338 unittest.expect(o.accountId, unittest.equals('foo')); | 7338 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7339 checkUnnamed1711(o.availablePermissionIds); | 7339 checkUnnamed2017(o.availablePermissionIds); |
| 7340 unittest.expect(o.id, unittest.equals('foo')); | 7340 unittest.expect(o.id, unittest.equals('foo')); |
| 7341 unittest.expect(o.kind, unittest.equals('foo')); | 7341 unittest.expect(o.kind, unittest.equals('foo')); |
| 7342 unittest.expect(o.name, unittest.equals('foo')); | 7342 unittest.expect(o.name, unittest.equals('foo')); |
| 7343 } | 7343 } |
| 7344 buildCounterSubaccount--; | 7344 buildCounterSubaccount--; |
| 7345 } | 7345 } |
| 7346 | 7346 |
| 7347 buildUnnamed1712() { | 7347 buildUnnamed2018() { |
| 7348 var o = new core.List<api.Subaccount>(); | 7348 var o = new core.List<api.Subaccount>(); |
| 7349 o.add(buildSubaccount()); | 7349 o.add(buildSubaccount()); |
| 7350 o.add(buildSubaccount()); | 7350 o.add(buildSubaccount()); |
| 7351 return o; | 7351 return o; |
| 7352 } | 7352 } |
| 7353 | 7353 |
| 7354 checkUnnamed1712(core.List<api.Subaccount> o) { | 7354 checkUnnamed2018(core.List<api.Subaccount> o) { |
| 7355 unittest.expect(o, unittest.hasLength(2)); | 7355 unittest.expect(o, unittest.hasLength(2)); |
| 7356 checkSubaccount(o[0]); | 7356 checkSubaccount(o[0]); |
| 7357 checkSubaccount(o[1]); | 7357 checkSubaccount(o[1]); |
| 7358 } | 7358 } |
| 7359 | 7359 |
| 7360 core.int buildCounterSubaccountsListResponse = 0; | 7360 core.int buildCounterSubaccountsListResponse = 0; |
| 7361 buildSubaccountsListResponse() { | 7361 buildSubaccountsListResponse() { |
| 7362 var o = new api.SubaccountsListResponse(); | 7362 var o = new api.SubaccountsListResponse(); |
| 7363 buildCounterSubaccountsListResponse++; | 7363 buildCounterSubaccountsListResponse++; |
| 7364 if (buildCounterSubaccountsListResponse < 3) { | 7364 if (buildCounterSubaccountsListResponse < 3) { |
| 7365 o.kind = "foo"; | 7365 o.kind = "foo"; |
| 7366 o.nextPageToken = "foo"; | 7366 o.nextPageToken = "foo"; |
| 7367 o.subaccounts = buildUnnamed1712(); | 7367 o.subaccounts = buildUnnamed2018(); |
| 7368 } | 7368 } |
| 7369 buildCounterSubaccountsListResponse--; | 7369 buildCounterSubaccountsListResponse--; |
| 7370 return o; | 7370 return o; |
| 7371 } | 7371 } |
| 7372 | 7372 |
| 7373 checkSubaccountsListResponse(api.SubaccountsListResponse o) { | 7373 checkSubaccountsListResponse(api.SubaccountsListResponse o) { |
| 7374 buildCounterSubaccountsListResponse++; | 7374 buildCounterSubaccountsListResponse++; |
| 7375 if (buildCounterSubaccountsListResponse < 3) { | 7375 if (buildCounterSubaccountsListResponse < 3) { |
| 7376 unittest.expect(o.kind, unittest.equals('foo')); | 7376 unittest.expect(o.kind, unittest.equals('foo')); |
| 7377 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7377 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7378 checkUnnamed1712(o.subaccounts); | 7378 checkUnnamed2018(o.subaccounts); |
| 7379 } | 7379 } |
| 7380 buildCounterSubaccountsListResponse--; | 7380 buildCounterSubaccountsListResponse--; |
| 7381 } | 7381 } |
| 7382 | 7382 |
| 7383 core.int buildCounterTagData = 0; | 7383 core.int buildCounterTagData = 0; |
| 7384 buildTagData() { | 7384 buildTagData() { |
| 7385 var o = new api.TagData(); | 7385 var o = new api.TagData(); |
| 7386 buildCounterTagData++; | 7386 buildCounterTagData++; |
| 7387 if (buildCounterTagData < 3) { | 7387 if (buildCounterTagData < 3) { |
| 7388 o.adId = "foo"; | 7388 o.adId = "foo"; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7508 unittest.expect(o.kind, unittest.equals('foo')); | 7508 unittest.expect(o.kind, unittest.equals('foo')); |
| 7509 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 7509 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 7510 unittest.expect(o.listSize, unittest.equals('foo')); | 7510 unittest.expect(o.listSize, unittest.equals('foo')); |
| 7511 unittest.expect(o.listSource, unittest.equals('foo')); | 7511 unittest.expect(o.listSource, unittest.equals('foo')); |
| 7512 unittest.expect(o.name, unittest.equals('foo')); | 7512 unittest.expect(o.name, unittest.equals('foo')); |
| 7513 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7513 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7514 } | 7514 } |
| 7515 buildCounterTargetableRemarketingList--; | 7515 buildCounterTargetableRemarketingList--; |
| 7516 } | 7516 } |
| 7517 | 7517 |
| 7518 buildUnnamed1713() { | 7518 buildUnnamed2019() { |
| 7519 var o = new core.List<api.TargetableRemarketingList>(); | 7519 var o = new core.List<api.TargetableRemarketingList>(); |
| 7520 o.add(buildTargetableRemarketingList()); | 7520 o.add(buildTargetableRemarketingList()); |
| 7521 o.add(buildTargetableRemarketingList()); | 7521 o.add(buildTargetableRemarketingList()); |
| 7522 return o; | 7522 return o; |
| 7523 } | 7523 } |
| 7524 | 7524 |
| 7525 checkUnnamed1713(core.List<api.TargetableRemarketingList> o) { | 7525 checkUnnamed2019(core.List<api.TargetableRemarketingList> o) { |
| 7526 unittest.expect(o, unittest.hasLength(2)); | 7526 unittest.expect(o, unittest.hasLength(2)); |
| 7527 checkTargetableRemarketingList(o[0]); | 7527 checkTargetableRemarketingList(o[0]); |
| 7528 checkTargetableRemarketingList(o[1]); | 7528 checkTargetableRemarketingList(o[1]); |
| 7529 } | 7529 } |
| 7530 | 7530 |
| 7531 core.int buildCounterTargetableRemarketingListsListResponse = 0; | 7531 core.int buildCounterTargetableRemarketingListsListResponse = 0; |
| 7532 buildTargetableRemarketingListsListResponse() { | 7532 buildTargetableRemarketingListsListResponse() { |
| 7533 var o = new api.TargetableRemarketingListsListResponse(); | 7533 var o = new api.TargetableRemarketingListsListResponse(); |
| 7534 buildCounterTargetableRemarketingListsListResponse++; | 7534 buildCounterTargetableRemarketingListsListResponse++; |
| 7535 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7535 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7536 o.kind = "foo"; | 7536 o.kind = "foo"; |
| 7537 o.nextPageToken = "foo"; | 7537 o.nextPageToken = "foo"; |
| 7538 o.targetableRemarketingLists = buildUnnamed1713(); | 7538 o.targetableRemarketingLists = buildUnnamed2019(); |
| 7539 } | 7539 } |
| 7540 buildCounterTargetableRemarketingListsListResponse--; | 7540 buildCounterTargetableRemarketingListsListResponse--; |
| 7541 return o; | 7541 return o; |
| 7542 } | 7542 } |
| 7543 | 7543 |
| 7544 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { | 7544 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { |
| 7545 buildCounterTargetableRemarketingListsListResponse++; | 7545 buildCounterTargetableRemarketingListsListResponse++; |
| 7546 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7546 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7547 unittest.expect(o.kind, unittest.equals('foo')); | 7547 unittest.expect(o.kind, unittest.equals('foo')); |
| 7548 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7548 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7549 checkUnnamed1713(o.targetableRemarketingLists); | 7549 checkUnnamed2019(o.targetableRemarketingLists); |
| 7550 } | 7550 } |
| 7551 buildCounterTargetableRemarketingListsListResponse--; | 7551 buildCounterTargetableRemarketingListsListResponse--; |
| 7552 } | 7552 } |
| 7553 | 7553 |
| 7554 buildUnnamed1714() { | 7554 buildUnnamed2020() { |
| 7555 var o = new core.List<api.Browser>(); | 7555 var o = new core.List<api.Browser>(); |
| 7556 o.add(buildBrowser()); | 7556 o.add(buildBrowser()); |
| 7557 o.add(buildBrowser()); | 7557 o.add(buildBrowser()); |
| 7558 return o; | 7558 return o; |
| 7559 } | 7559 } |
| 7560 | 7560 |
| 7561 checkUnnamed1714(core.List<api.Browser> o) { | 7561 checkUnnamed2020(core.List<api.Browser> o) { |
| 7562 unittest.expect(o, unittest.hasLength(2)); | 7562 unittest.expect(o, unittest.hasLength(2)); |
| 7563 checkBrowser(o[0]); | 7563 checkBrowser(o[0]); |
| 7564 checkBrowser(o[1]); | 7564 checkBrowser(o[1]); |
| 7565 } | 7565 } |
| 7566 | 7566 |
| 7567 buildUnnamed1715() { | 7567 buildUnnamed2021() { |
| 7568 var o = new core.List<api.ConnectionType>(); | 7568 var o = new core.List<api.ConnectionType>(); |
| 7569 o.add(buildConnectionType()); | 7569 o.add(buildConnectionType()); |
| 7570 o.add(buildConnectionType()); | 7570 o.add(buildConnectionType()); |
| 7571 return o; | 7571 return o; |
| 7572 } | 7572 } |
| 7573 | 7573 |
| 7574 checkUnnamed1715(core.List<api.ConnectionType> o) { | 7574 checkUnnamed2021(core.List<api.ConnectionType> o) { |
| 7575 unittest.expect(o, unittest.hasLength(2)); | 7575 unittest.expect(o, unittest.hasLength(2)); |
| 7576 checkConnectionType(o[0]); | 7576 checkConnectionType(o[0]); |
| 7577 checkConnectionType(o[1]); | 7577 checkConnectionType(o[1]); |
| 7578 } | 7578 } |
| 7579 | 7579 |
| 7580 buildUnnamed1716() { | 7580 buildUnnamed2022() { |
| 7581 var o = new core.List<api.MobileCarrier>(); | 7581 var o = new core.List<api.MobileCarrier>(); |
| 7582 o.add(buildMobileCarrier()); | 7582 o.add(buildMobileCarrier()); |
| 7583 o.add(buildMobileCarrier()); | 7583 o.add(buildMobileCarrier()); |
| 7584 return o; | 7584 return o; |
| 7585 } | 7585 } |
| 7586 | 7586 |
| 7587 checkUnnamed1716(core.List<api.MobileCarrier> o) { | 7587 checkUnnamed2022(core.List<api.MobileCarrier> o) { |
| 7588 unittest.expect(o, unittest.hasLength(2)); | 7588 unittest.expect(o, unittest.hasLength(2)); |
| 7589 checkMobileCarrier(o[0]); | 7589 checkMobileCarrier(o[0]); |
| 7590 checkMobileCarrier(o[1]); | 7590 checkMobileCarrier(o[1]); |
| 7591 } | 7591 } |
| 7592 | 7592 |
| 7593 buildUnnamed1717() { | 7593 buildUnnamed2023() { |
| 7594 var o = new core.List<api.OperatingSystemVersion>(); | 7594 var o = new core.List<api.OperatingSystemVersion>(); |
| 7595 o.add(buildOperatingSystemVersion()); | 7595 o.add(buildOperatingSystemVersion()); |
| 7596 o.add(buildOperatingSystemVersion()); | 7596 o.add(buildOperatingSystemVersion()); |
| 7597 return o; | 7597 return o; |
| 7598 } | 7598 } |
| 7599 | 7599 |
| 7600 checkUnnamed1717(core.List<api.OperatingSystemVersion> o) { | 7600 checkUnnamed2023(core.List<api.OperatingSystemVersion> o) { |
| 7601 unittest.expect(o, unittest.hasLength(2)); | 7601 unittest.expect(o, unittest.hasLength(2)); |
| 7602 checkOperatingSystemVersion(o[0]); | 7602 checkOperatingSystemVersion(o[0]); |
| 7603 checkOperatingSystemVersion(o[1]); | 7603 checkOperatingSystemVersion(o[1]); |
| 7604 } | 7604 } |
| 7605 | 7605 |
| 7606 buildUnnamed1718() { | 7606 buildUnnamed2024() { |
| 7607 var o = new core.List<api.OperatingSystem>(); | 7607 var o = new core.List<api.OperatingSystem>(); |
| 7608 o.add(buildOperatingSystem()); | 7608 o.add(buildOperatingSystem()); |
| 7609 o.add(buildOperatingSystem()); | 7609 o.add(buildOperatingSystem()); |
| 7610 return o; | 7610 return o; |
| 7611 } | 7611 } |
| 7612 | 7612 |
| 7613 checkUnnamed1718(core.List<api.OperatingSystem> o) { | 7613 checkUnnamed2024(core.List<api.OperatingSystem> o) { |
| 7614 unittest.expect(o, unittest.hasLength(2)); | 7614 unittest.expect(o, unittest.hasLength(2)); |
| 7615 checkOperatingSystem(o[0]); | 7615 checkOperatingSystem(o[0]); |
| 7616 checkOperatingSystem(o[1]); | 7616 checkOperatingSystem(o[1]); |
| 7617 } | 7617 } |
| 7618 | 7618 |
| 7619 buildUnnamed1719() { | 7619 buildUnnamed2025() { |
| 7620 var o = new core.List<api.PlatformType>(); | 7620 var o = new core.List<api.PlatformType>(); |
| 7621 o.add(buildPlatformType()); | 7621 o.add(buildPlatformType()); |
| 7622 o.add(buildPlatformType()); | 7622 o.add(buildPlatformType()); |
| 7623 return o; | 7623 return o; |
| 7624 } | 7624 } |
| 7625 | 7625 |
| 7626 checkUnnamed1719(core.List<api.PlatformType> o) { | 7626 checkUnnamed2025(core.List<api.PlatformType> o) { |
| 7627 unittest.expect(o, unittest.hasLength(2)); | 7627 unittest.expect(o, unittest.hasLength(2)); |
| 7628 checkPlatformType(o[0]); | 7628 checkPlatformType(o[0]); |
| 7629 checkPlatformType(o[1]); | 7629 checkPlatformType(o[1]); |
| 7630 } | 7630 } |
| 7631 | 7631 |
| 7632 core.int buildCounterTechnologyTargeting = 0; | 7632 core.int buildCounterTechnologyTargeting = 0; |
| 7633 buildTechnologyTargeting() { | 7633 buildTechnologyTargeting() { |
| 7634 var o = new api.TechnologyTargeting(); | 7634 var o = new api.TechnologyTargeting(); |
| 7635 buildCounterTechnologyTargeting++; | 7635 buildCounterTechnologyTargeting++; |
| 7636 if (buildCounterTechnologyTargeting < 3) { | 7636 if (buildCounterTechnologyTargeting < 3) { |
| 7637 o.browsers = buildUnnamed1714(); | 7637 o.browsers = buildUnnamed2020(); |
| 7638 o.connectionTypes = buildUnnamed1715(); | 7638 o.connectionTypes = buildUnnamed2021(); |
| 7639 o.mobileCarriers = buildUnnamed1716(); | 7639 o.mobileCarriers = buildUnnamed2022(); |
| 7640 o.operatingSystemVersions = buildUnnamed1717(); | 7640 o.operatingSystemVersions = buildUnnamed2023(); |
| 7641 o.operatingSystems = buildUnnamed1718(); | 7641 o.operatingSystems = buildUnnamed2024(); |
| 7642 o.platformTypes = buildUnnamed1719(); | 7642 o.platformTypes = buildUnnamed2025(); |
| 7643 } | 7643 } |
| 7644 buildCounterTechnologyTargeting--; | 7644 buildCounterTechnologyTargeting--; |
| 7645 return o; | 7645 return o; |
| 7646 } | 7646 } |
| 7647 | 7647 |
| 7648 checkTechnologyTargeting(api.TechnologyTargeting o) { | 7648 checkTechnologyTargeting(api.TechnologyTargeting o) { |
| 7649 buildCounterTechnologyTargeting++; | 7649 buildCounterTechnologyTargeting++; |
| 7650 if (buildCounterTechnologyTargeting < 3) { | 7650 if (buildCounterTechnologyTargeting < 3) { |
| 7651 checkUnnamed1714(o.browsers); | 7651 checkUnnamed2020(o.browsers); |
| 7652 checkUnnamed1715(o.connectionTypes); | 7652 checkUnnamed2021(o.connectionTypes); |
| 7653 checkUnnamed1716(o.mobileCarriers); | 7653 checkUnnamed2022(o.mobileCarriers); |
| 7654 checkUnnamed1717(o.operatingSystemVersions); | 7654 checkUnnamed2023(o.operatingSystemVersions); |
| 7655 checkUnnamed1718(o.operatingSystems); | 7655 checkUnnamed2024(o.operatingSystems); |
| 7656 checkUnnamed1719(o.platformTypes); | 7656 checkUnnamed2025(o.platformTypes); |
| 7657 } | 7657 } |
| 7658 buildCounterTechnologyTargeting--; | 7658 buildCounterTechnologyTargeting--; |
| 7659 } | 7659 } |
| 7660 | 7660 |
| 7661 core.int buildCounterThirdPartyAuthenticationToken = 0; | 7661 core.int buildCounterThirdPartyAuthenticationToken = 0; |
| 7662 buildThirdPartyAuthenticationToken() { | 7662 buildThirdPartyAuthenticationToken() { |
| 7663 var o = new api.ThirdPartyAuthenticationToken(); | 7663 var o = new api.ThirdPartyAuthenticationToken(); |
| 7664 buildCounterThirdPartyAuthenticationToken++; | 7664 buildCounterThirdPartyAuthenticationToken++; |
| 7665 if (buildCounterThirdPartyAuthenticationToken < 3) { | 7665 if (buildCounterThirdPartyAuthenticationToken < 3) { |
| 7666 o.name = "foo"; | 7666 o.name = "foo"; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7749 unittest.expect(o.etag, unittest.equals('foo')); | 7749 unittest.expect(o.etag, unittest.equals('foo')); |
| 7750 unittest.expect(o.kind, unittest.equals('foo')); | 7750 unittest.expect(o.kind, unittest.equals('foo')); |
| 7751 unittest.expect(o.profileId, unittest.equals('foo')); | 7751 unittest.expect(o.profileId, unittest.equals('foo')); |
| 7752 unittest.expect(o.subAccountId, unittest.equals('foo')); | 7752 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 7753 unittest.expect(o.subAccountName, unittest.equals('foo')); | 7753 unittest.expect(o.subAccountName, unittest.equals('foo')); |
| 7754 unittest.expect(o.userName, unittest.equals('foo')); | 7754 unittest.expect(o.userName, unittest.equals('foo')); |
| 7755 } | 7755 } |
| 7756 buildCounterUserProfile--; | 7756 buildCounterUserProfile--; |
| 7757 } | 7757 } |
| 7758 | 7758 |
| 7759 buildUnnamed1720() { | 7759 buildUnnamed2026() { |
| 7760 var o = new core.List<api.UserProfile>(); | 7760 var o = new core.List<api.UserProfile>(); |
| 7761 o.add(buildUserProfile()); | 7761 o.add(buildUserProfile()); |
| 7762 o.add(buildUserProfile()); | 7762 o.add(buildUserProfile()); |
| 7763 return o; | 7763 return o; |
| 7764 } | 7764 } |
| 7765 | 7765 |
| 7766 checkUnnamed1720(core.List<api.UserProfile> o) { | 7766 checkUnnamed2026(core.List<api.UserProfile> o) { |
| 7767 unittest.expect(o, unittest.hasLength(2)); | 7767 unittest.expect(o, unittest.hasLength(2)); |
| 7768 checkUserProfile(o[0]); | 7768 checkUserProfile(o[0]); |
| 7769 checkUserProfile(o[1]); | 7769 checkUserProfile(o[1]); |
| 7770 } | 7770 } |
| 7771 | 7771 |
| 7772 core.int buildCounterUserProfileList = 0; | 7772 core.int buildCounterUserProfileList = 0; |
| 7773 buildUserProfileList() { | 7773 buildUserProfileList() { |
| 7774 var o = new api.UserProfileList(); | 7774 var o = new api.UserProfileList(); |
| 7775 buildCounterUserProfileList++; | 7775 buildCounterUserProfileList++; |
| 7776 if (buildCounterUserProfileList < 3) { | 7776 if (buildCounterUserProfileList < 3) { |
| 7777 o.etag = "foo"; | 7777 o.etag = "foo"; |
| 7778 o.items = buildUnnamed1720(); | 7778 o.items = buildUnnamed2026(); |
| 7779 o.kind = "foo"; | 7779 o.kind = "foo"; |
| 7780 } | 7780 } |
| 7781 buildCounterUserProfileList--; | 7781 buildCounterUserProfileList--; |
| 7782 return o; | 7782 return o; |
| 7783 } | 7783 } |
| 7784 | 7784 |
| 7785 checkUserProfileList(api.UserProfileList o) { | 7785 checkUserProfileList(api.UserProfileList o) { |
| 7786 buildCounterUserProfileList++; | 7786 buildCounterUserProfileList++; |
| 7787 if (buildCounterUserProfileList < 3) { | 7787 if (buildCounterUserProfileList < 3) { |
| 7788 unittest.expect(o.etag, unittest.equals('foo')); | 7788 unittest.expect(o.etag, unittest.equals('foo')); |
| 7789 checkUnnamed1720(o.items); | 7789 checkUnnamed2026(o.items); |
| 7790 unittest.expect(o.kind, unittest.equals('foo')); | 7790 unittest.expect(o.kind, unittest.equals('foo')); |
| 7791 } | 7791 } |
| 7792 buildCounterUserProfileList--; | 7792 buildCounterUserProfileList--; |
| 7793 } | 7793 } |
| 7794 | 7794 |
| 7795 buildUnnamed1721() { | 7795 buildUnnamed2027() { |
| 7796 var o = new core.List<api.UserRolePermission>(); | 7796 var o = new core.List<api.UserRolePermission>(); |
| 7797 o.add(buildUserRolePermission()); | 7797 o.add(buildUserRolePermission()); |
| 7798 o.add(buildUserRolePermission()); | 7798 o.add(buildUserRolePermission()); |
| 7799 return o; | 7799 return o; |
| 7800 } | 7800 } |
| 7801 | 7801 |
| 7802 checkUnnamed1721(core.List<api.UserRolePermission> o) { | 7802 checkUnnamed2027(core.List<api.UserRolePermission> o) { |
| 7803 unittest.expect(o, unittest.hasLength(2)); | 7803 unittest.expect(o, unittest.hasLength(2)); |
| 7804 checkUserRolePermission(o[0]); | 7804 checkUserRolePermission(o[0]); |
| 7805 checkUserRolePermission(o[1]); | 7805 checkUserRolePermission(o[1]); |
| 7806 } | 7806 } |
| 7807 | 7807 |
| 7808 core.int buildCounterUserRole = 0; | 7808 core.int buildCounterUserRole = 0; |
| 7809 buildUserRole() { | 7809 buildUserRole() { |
| 7810 var o = new api.UserRole(); | 7810 var o = new api.UserRole(); |
| 7811 buildCounterUserRole++; | 7811 buildCounterUserRole++; |
| 7812 if (buildCounterUserRole < 3) { | 7812 if (buildCounterUserRole < 3) { |
| 7813 o.accountId = "foo"; | 7813 o.accountId = "foo"; |
| 7814 o.defaultUserRole = true; | 7814 o.defaultUserRole = true; |
| 7815 o.id = "foo"; | 7815 o.id = "foo"; |
| 7816 o.kind = "foo"; | 7816 o.kind = "foo"; |
| 7817 o.name = "foo"; | 7817 o.name = "foo"; |
| 7818 o.parentUserRoleId = "foo"; | 7818 o.parentUserRoleId = "foo"; |
| 7819 o.permissions = buildUnnamed1721(); | 7819 o.permissions = buildUnnamed2027(); |
| 7820 o.subaccountId = "foo"; | 7820 o.subaccountId = "foo"; |
| 7821 } | 7821 } |
| 7822 buildCounterUserRole--; | 7822 buildCounterUserRole--; |
| 7823 return o; | 7823 return o; |
| 7824 } | 7824 } |
| 7825 | 7825 |
| 7826 checkUserRole(api.UserRole o) { | 7826 checkUserRole(api.UserRole o) { |
| 7827 buildCounterUserRole++; | 7827 buildCounterUserRole++; |
| 7828 if (buildCounterUserRole < 3) { | 7828 if (buildCounterUserRole < 3) { |
| 7829 unittest.expect(o.accountId, unittest.equals('foo')); | 7829 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7830 unittest.expect(o.defaultUserRole, unittest.isTrue); | 7830 unittest.expect(o.defaultUserRole, unittest.isTrue); |
| 7831 unittest.expect(o.id, unittest.equals('foo')); | 7831 unittest.expect(o.id, unittest.equals('foo')); |
| 7832 unittest.expect(o.kind, unittest.equals('foo')); | 7832 unittest.expect(o.kind, unittest.equals('foo')); |
| 7833 unittest.expect(o.name, unittest.equals('foo')); | 7833 unittest.expect(o.name, unittest.equals('foo')); |
| 7834 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); | 7834 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); |
| 7835 checkUnnamed1721(o.permissions); | 7835 checkUnnamed2027(o.permissions); |
| 7836 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7836 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7837 } | 7837 } |
| 7838 buildCounterUserRole--; | 7838 buildCounterUserRole--; |
| 7839 } | 7839 } |
| 7840 | 7840 |
| 7841 core.int buildCounterUserRolePermission = 0; | 7841 core.int buildCounterUserRolePermission = 0; |
| 7842 buildUserRolePermission() { | 7842 buildUserRolePermission() { |
| 7843 var o = new api.UserRolePermission(); | 7843 var o = new api.UserRolePermission(); |
| 7844 buildCounterUserRolePermission++; | 7844 buildCounterUserRolePermission++; |
| 7845 if (buildCounterUserRolePermission < 3) { | 7845 if (buildCounterUserRolePermission < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7881 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { | 7881 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { |
| 7882 buildCounterUserRolePermissionGroup++; | 7882 buildCounterUserRolePermissionGroup++; |
| 7883 if (buildCounterUserRolePermissionGroup < 3) { | 7883 if (buildCounterUserRolePermissionGroup < 3) { |
| 7884 unittest.expect(o.id, unittest.equals('foo')); | 7884 unittest.expect(o.id, unittest.equals('foo')); |
| 7885 unittest.expect(o.kind, unittest.equals('foo')); | 7885 unittest.expect(o.kind, unittest.equals('foo')); |
| 7886 unittest.expect(o.name, unittest.equals('foo')); | 7886 unittest.expect(o.name, unittest.equals('foo')); |
| 7887 } | 7887 } |
| 7888 buildCounterUserRolePermissionGroup--; | 7888 buildCounterUserRolePermissionGroup--; |
| 7889 } | 7889 } |
| 7890 | 7890 |
| 7891 buildUnnamed1722() { | 7891 buildUnnamed2028() { |
| 7892 var o = new core.List<api.UserRolePermissionGroup>(); | 7892 var o = new core.List<api.UserRolePermissionGroup>(); |
| 7893 o.add(buildUserRolePermissionGroup()); | 7893 o.add(buildUserRolePermissionGroup()); |
| 7894 o.add(buildUserRolePermissionGroup()); | 7894 o.add(buildUserRolePermissionGroup()); |
| 7895 return o; | 7895 return o; |
| 7896 } | 7896 } |
| 7897 | 7897 |
| 7898 checkUnnamed1722(core.List<api.UserRolePermissionGroup> o) { | 7898 checkUnnamed2028(core.List<api.UserRolePermissionGroup> o) { |
| 7899 unittest.expect(o, unittest.hasLength(2)); | 7899 unittest.expect(o, unittest.hasLength(2)); |
| 7900 checkUserRolePermissionGroup(o[0]); | 7900 checkUserRolePermissionGroup(o[0]); |
| 7901 checkUserRolePermissionGroup(o[1]); | 7901 checkUserRolePermissionGroup(o[1]); |
| 7902 } | 7902 } |
| 7903 | 7903 |
| 7904 core.int buildCounterUserRolePermissionGroupsListResponse = 0; | 7904 core.int buildCounterUserRolePermissionGroupsListResponse = 0; |
| 7905 buildUserRolePermissionGroupsListResponse() { | 7905 buildUserRolePermissionGroupsListResponse() { |
| 7906 var o = new api.UserRolePermissionGroupsListResponse(); | 7906 var o = new api.UserRolePermissionGroupsListResponse(); |
| 7907 buildCounterUserRolePermissionGroupsListResponse++; | 7907 buildCounterUserRolePermissionGroupsListResponse++; |
| 7908 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7908 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 7909 o.kind = "foo"; | 7909 o.kind = "foo"; |
| 7910 o.userRolePermissionGroups = buildUnnamed1722(); | 7910 o.userRolePermissionGroups = buildUnnamed2028(); |
| 7911 } | 7911 } |
| 7912 buildCounterUserRolePermissionGroupsListResponse--; | 7912 buildCounterUserRolePermissionGroupsListResponse--; |
| 7913 return o; | 7913 return o; |
| 7914 } | 7914 } |
| 7915 | 7915 |
| 7916 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { | 7916 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { |
| 7917 buildCounterUserRolePermissionGroupsListResponse++; | 7917 buildCounterUserRolePermissionGroupsListResponse++; |
| 7918 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7918 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 7919 unittest.expect(o.kind, unittest.equals('foo')); | 7919 unittest.expect(o.kind, unittest.equals('foo')); |
| 7920 checkUnnamed1722(o.userRolePermissionGroups); | 7920 checkUnnamed2028(o.userRolePermissionGroups); |
| 7921 } | 7921 } |
| 7922 buildCounterUserRolePermissionGroupsListResponse--; | 7922 buildCounterUserRolePermissionGroupsListResponse--; |
| 7923 } | 7923 } |
| 7924 | 7924 |
| 7925 buildUnnamed1723() { | 7925 buildUnnamed2029() { |
| 7926 var o = new core.List<api.UserRolePermission>(); | 7926 var o = new core.List<api.UserRolePermission>(); |
| 7927 o.add(buildUserRolePermission()); | 7927 o.add(buildUserRolePermission()); |
| 7928 o.add(buildUserRolePermission()); | 7928 o.add(buildUserRolePermission()); |
| 7929 return o; | 7929 return o; |
| 7930 } | 7930 } |
| 7931 | 7931 |
| 7932 checkUnnamed1723(core.List<api.UserRolePermission> o) { | 7932 checkUnnamed2029(core.List<api.UserRolePermission> o) { |
| 7933 unittest.expect(o, unittest.hasLength(2)); | 7933 unittest.expect(o, unittest.hasLength(2)); |
| 7934 checkUserRolePermission(o[0]); | 7934 checkUserRolePermission(o[0]); |
| 7935 checkUserRolePermission(o[1]); | 7935 checkUserRolePermission(o[1]); |
| 7936 } | 7936 } |
| 7937 | 7937 |
| 7938 core.int buildCounterUserRolePermissionsListResponse = 0; | 7938 core.int buildCounterUserRolePermissionsListResponse = 0; |
| 7939 buildUserRolePermissionsListResponse() { | 7939 buildUserRolePermissionsListResponse() { |
| 7940 var o = new api.UserRolePermissionsListResponse(); | 7940 var o = new api.UserRolePermissionsListResponse(); |
| 7941 buildCounterUserRolePermissionsListResponse++; | 7941 buildCounterUserRolePermissionsListResponse++; |
| 7942 if (buildCounterUserRolePermissionsListResponse < 3) { | 7942 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 7943 o.kind = "foo"; | 7943 o.kind = "foo"; |
| 7944 o.userRolePermissions = buildUnnamed1723(); | 7944 o.userRolePermissions = buildUnnamed2029(); |
| 7945 } | 7945 } |
| 7946 buildCounterUserRolePermissionsListResponse--; | 7946 buildCounterUserRolePermissionsListResponse--; |
| 7947 return o; | 7947 return o; |
| 7948 } | 7948 } |
| 7949 | 7949 |
| 7950 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { | 7950 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { |
| 7951 buildCounterUserRolePermissionsListResponse++; | 7951 buildCounterUserRolePermissionsListResponse++; |
| 7952 if (buildCounterUserRolePermissionsListResponse < 3) { | 7952 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 7953 unittest.expect(o.kind, unittest.equals('foo')); | 7953 unittest.expect(o.kind, unittest.equals('foo')); |
| 7954 checkUnnamed1723(o.userRolePermissions); | 7954 checkUnnamed2029(o.userRolePermissions); |
| 7955 } | 7955 } |
| 7956 buildCounterUserRolePermissionsListResponse--; | 7956 buildCounterUserRolePermissionsListResponse--; |
| 7957 } | 7957 } |
| 7958 | 7958 |
| 7959 buildUnnamed1724() { | 7959 buildUnnamed2030() { |
| 7960 var o = new core.List<api.UserRole>(); | 7960 var o = new core.List<api.UserRole>(); |
| 7961 o.add(buildUserRole()); | 7961 o.add(buildUserRole()); |
| 7962 o.add(buildUserRole()); | 7962 o.add(buildUserRole()); |
| 7963 return o; | 7963 return o; |
| 7964 } | 7964 } |
| 7965 | 7965 |
| 7966 checkUnnamed1724(core.List<api.UserRole> o) { | 7966 checkUnnamed2030(core.List<api.UserRole> o) { |
| 7967 unittest.expect(o, unittest.hasLength(2)); | 7967 unittest.expect(o, unittest.hasLength(2)); |
| 7968 checkUserRole(o[0]); | 7968 checkUserRole(o[0]); |
| 7969 checkUserRole(o[1]); | 7969 checkUserRole(o[1]); |
| 7970 } | 7970 } |
| 7971 | 7971 |
| 7972 core.int buildCounterUserRolesListResponse = 0; | 7972 core.int buildCounterUserRolesListResponse = 0; |
| 7973 buildUserRolesListResponse() { | 7973 buildUserRolesListResponse() { |
| 7974 var o = new api.UserRolesListResponse(); | 7974 var o = new api.UserRolesListResponse(); |
| 7975 buildCounterUserRolesListResponse++; | 7975 buildCounterUserRolesListResponse++; |
| 7976 if (buildCounterUserRolesListResponse < 3) { | 7976 if (buildCounterUserRolesListResponse < 3) { |
| 7977 o.kind = "foo"; | 7977 o.kind = "foo"; |
| 7978 o.nextPageToken = "foo"; | 7978 o.nextPageToken = "foo"; |
| 7979 o.userRoles = buildUnnamed1724(); | 7979 o.userRoles = buildUnnamed2030(); |
| 7980 } | 7980 } |
| 7981 buildCounterUserRolesListResponse--; | 7981 buildCounterUserRolesListResponse--; |
| 7982 return o; | 7982 return o; |
| 7983 } | 7983 } |
| 7984 | 7984 |
| 7985 checkUserRolesListResponse(api.UserRolesListResponse o) { | 7985 checkUserRolesListResponse(api.UserRolesListResponse o) { |
| 7986 buildCounterUserRolesListResponse++; | 7986 buildCounterUserRolesListResponse++; |
| 7987 if (buildCounterUserRolesListResponse < 3) { | 7987 if (buildCounterUserRolesListResponse < 3) { |
| 7988 unittest.expect(o.kind, unittest.equals('foo')); | 7988 unittest.expect(o.kind, unittest.equals('foo')); |
| 7989 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7989 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7990 checkUnnamed1724(o.userRoles); | 7990 checkUnnamed2030(o.userRoles); |
| 7991 } | 7991 } |
| 7992 buildCounterUserRolesListResponse--; | 7992 buildCounterUserRolesListResponse--; |
| 7993 } | 7993 } |
| 7994 | 7994 |
| 7995 buildUnnamed1725() { | 7995 buildUnnamed2031() { |
| 7996 var o = new core.List<core.String>(); | 7996 var o = new core.List<core.String>(); |
| 7997 o.add("foo"); | 7997 o.add("foo"); |
| 7998 o.add("foo"); | 7998 o.add("foo"); |
| 7999 return o; | 7999 return o; |
| 8000 } | 8000 } |
| 8001 | 8001 |
| 8002 checkUnnamed1725(core.List<core.String> o) { | 8002 checkUnnamed2031(core.List<core.String> o) { |
| 8003 unittest.expect(o, unittest.hasLength(2)); | 8003 unittest.expect(o, unittest.hasLength(2)); |
| 8004 unittest.expect(o[0], unittest.equals('foo')); | 8004 unittest.expect(o[0], unittest.equals('foo')); |
| 8005 unittest.expect(o[1], unittest.equals('foo')); | 8005 unittest.expect(o[1], unittest.equals('foo')); |
| 8006 } | 8006 } |
| 8007 | 8007 |
| 8008 buildUnnamed1726() { | 8008 buildUnnamed2032() { |
| 8009 var o = new core.List<core.String>(); | 8009 var o = new core.List<core.String>(); |
| 8010 o.add("foo"); | 8010 o.add("foo"); |
| 8011 o.add("foo"); | 8011 o.add("foo"); |
| 8012 return o; | 8012 return o; |
| 8013 } | 8013 } |
| 8014 | 8014 |
| 8015 checkUnnamed1726(core.List<core.String> o) { | 8015 checkUnnamed2032(core.List<core.String> o) { |
| 8016 unittest.expect(o, unittest.hasLength(2)); | 8016 unittest.expect(o, unittest.hasLength(2)); |
| 8017 unittest.expect(o[0], unittest.equals('foo')); | 8017 unittest.expect(o[0], unittest.equals('foo')); |
| 8018 unittest.expect(o[1], unittest.equals('foo')); | 8018 unittest.expect(o[1], unittest.equals('foo')); |
| 8019 } | 8019 } |
| 8020 | 8020 |
| 8021 buildUnnamed1727() { | 8021 buildUnnamed2033() { |
| 8022 var o = new core.List<core.String>(); | 8022 var o = new core.List<core.String>(); |
| 8023 o.add("foo"); | 8023 o.add("foo"); |
| 8024 o.add("foo"); | 8024 o.add("foo"); |
| 8025 return o; | 8025 return o; |
| 8026 } | 8026 } |
| 8027 | 8027 |
| 8028 checkUnnamed1727(core.List<core.String> o) { | 8028 checkUnnamed2033(core.List<core.String> o) { |
| 8029 unittest.expect(o, unittest.hasLength(2)); | 8029 unittest.expect(o, unittest.hasLength(2)); |
| 8030 unittest.expect(o[0], unittest.equals('foo')); | 8030 unittest.expect(o[0], unittest.equals('foo')); |
| 8031 unittest.expect(o[1], unittest.equals('foo')); | 8031 unittest.expect(o[1], unittest.equals('foo')); |
| 8032 } | 8032 } |
| 8033 | 8033 |
| 8034 buildUnnamed1728() { | 8034 buildUnnamed2034() { |
| 8035 var o = new core.List<core.String>(); | 8035 var o = new core.List<core.String>(); |
| 8036 o.add("foo"); | 8036 o.add("foo"); |
| 8037 o.add("foo"); | 8037 o.add("foo"); |
| 8038 return o; | 8038 return o; |
| 8039 } | 8039 } |
| 8040 | 8040 |
| 8041 checkUnnamed1728(core.List<core.String> o) { | 8041 checkUnnamed2034(core.List<core.String> o) { |
| 8042 unittest.expect(o, unittest.hasLength(2)); | 8042 unittest.expect(o, unittest.hasLength(2)); |
| 8043 unittest.expect(o[0], unittest.equals('foo')); | 8043 unittest.expect(o[0], unittest.equals('foo')); |
| 8044 unittest.expect(o[1], unittest.equals('foo')); | 8044 unittest.expect(o[1], unittest.equals('foo')); |
| 8045 } | 8045 } |
| 8046 | 8046 |
| 8047 buildUnnamed1729() { | 8047 buildUnnamed2035() { |
| 8048 var o = new core.List<core.String>(); | 8048 var o = new core.List<core.String>(); |
| 8049 o.add("foo"); | 8049 o.add("foo"); |
| 8050 o.add("foo"); | 8050 o.add("foo"); |
| 8051 return o; | 8051 return o; |
| 8052 } | 8052 } |
| 8053 | 8053 |
| 8054 checkUnnamed1729(core.List<core.String> o) { | 8054 checkUnnamed2035(core.List<core.String> o) { |
| 8055 unittest.expect(o, unittest.hasLength(2)); | 8055 unittest.expect(o, unittest.hasLength(2)); |
| 8056 unittest.expect(o[0], unittest.equals('foo')); | 8056 unittest.expect(o[0], unittest.equals('foo')); |
| 8057 unittest.expect(o[1], unittest.equals('foo')); | 8057 unittest.expect(o[1], unittest.equals('foo')); |
| 8058 } | 8058 } |
| 8059 | 8059 |
| 8060 buildUnnamed1730() { | 8060 buildUnnamed2036() { |
| 8061 var o = new core.List<core.String>(); | 8061 var o = new core.List<core.String>(); |
| 8062 o.add("foo"); | 8062 o.add("foo"); |
| 8063 o.add("foo"); | 8063 o.add("foo"); |
| 8064 return o; | 8064 return o; |
| 8065 } | 8065 } |
| 8066 | 8066 |
| 8067 checkUnnamed1730(core.List<core.String> o) { | 8067 checkUnnamed2036(core.List<core.String> o) { |
| 8068 unittest.expect(o, unittest.hasLength(2)); | 8068 unittest.expect(o, unittest.hasLength(2)); |
| 8069 unittest.expect(o[0], unittest.equals('foo')); | 8069 unittest.expect(o[0], unittest.equals('foo')); |
| 8070 unittest.expect(o[1], unittest.equals('foo')); | 8070 unittest.expect(o[1], unittest.equals('foo')); |
| 8071 } | 8071 } |
| 8072 | 8072 |
| 8073 buildUnnamed1731() { | 8073 buildUnnamed2037() { |
| 8074 var o = new core.List<core.String>(); | 8074 var o = new core.List<core.String>(); |
| 8075 o.add("foo"); | 8075 o.add("foo"); |
| 8076 o.add("foo"); | 8076 o.add("foo"); |
| 8077 return o; | 8077 return o; |
| 8078 } | 8078 } |
| 8079 | 8079 |
| 8080 checkUnnamed1731(core.List<core.String> o) { | 8080 checkUnnamed2037(core.List<core.String> o) { |
| 8081 unittest.expect(o, unittest.hasLength(2)); | 8081 unittest.expect(o, unittest.hasLength(2)); |
| 8082 unittest.expect(o[0], unittest.equals('foo')); | 8082 unittest.expect(o[0], unittest.equals('foo')); |
| 8083 unittest.expect(o[1], unittest.equals('foo')); | 8083 unittest.expect(o[1], unittest.equals('foo')); |
| 8084 } | 8084 } |
| 8085 | 8085 |
| 8086 buildUnnamed1732() { | 8086 buildUnnamed2038() { |
| 8087 var o = new core.List<core.String>(); | 8087 var o = new core.List<core.String>(); |
| 8088 o.add("foo"); | 8088 o.add("foo"); |
| 8089 o.add("foo"); | 8089 o.add("foo"); |
| 8090 return o; | 8090 return o; |
| 8091 } | 8091 } |
| 8092 | 8092 |
| 8093 checkUnnamed1732(core.List<core.String> o) { | 8093 checkUnnamed2038(core.List<core.String> o) { |
| 8094 unittest.expect(o, unittest.hasLength(2)); | 8094 unittest.expect(o, unittest.hasLength(2)); |
| 8095 unittest.expect(o[0], unittest.equals('foo')); | 8095 unittest.expect(o[0], unittest.equals('foo')); |
| 8096 unittest.expect(o[1], unittest.equals('foo')); | 8096 unittest.expect(o[1], unittest.equals('foo')); |
| 8097 } | 8097 } |
| 8098 | 8098 |
| 8099 buildUnnamed1733() { | 8099 buildUnnamed2039() { |
| 8100 var o = new core.List<core.String>(); | 8100 var o = new core.List<core.String>(); |
| 8101 o.add("foo"); | 8101 o.add("foo"); |
| 8102 o.add("foo"); | 8102 o.add("foo"); |
| 8103 return o; | 8103 return o; |
| 8104 } | 8104 } |
| 8105 | 8105 |
| 8106 checkUnnamed1733(core.List<core.String> o) { | 8106 checkUnnamed2039(core.List<core.String> o) { |
| 8107 unittest.expect(o, unittest.hasLength(2)); | 8107 unittest.expect(o, unittest.hasLength(2)); |
| 8108 unittest.expect(o[0], unittest.equals('foo')); | 8108 unittest.expect(o[0], unittest.equals('foo')); |
| 8109 unittest.expect(o[1], unittest.equals('foo')); | 8109 unittest.expect(o[1], unittest.equals('foo')); |
| 8110 } | 8110 } |
| 8111 | 8111 |
| 8112 buildUnnamed1734() { | 8112 buildUnnamed2040() { |
| 8113 var o = new core.List<core.String>(); | 8113 var o = new core.List<core.String>(); |
| 8114 o.add("foo"); | 8114 o.add("foo"); |
| 8115 o.add("foo"); | 8115 o.add("foo"); |
| 8116 return o; | 8116 return o; |
| 8117 } | 8117 } |
| 8118 | 8118 |
| 8119 checkUnnamed1734(core.List<core.String> o) { | 8119 checkUnnamed2040(core.List<core.String> o) { |
| 8120 unittest.expect(o, unittest.hasLength(2)); | 8120 unittest.expect(o, unittest.hasLength(2)); |
| 8121 unittest.expect(o[0], unittest.equals('foo')); | 8121 unittest.expect(o[0], unittest.equals('foo')); |
| 8122 unittest.expect(o[1], unittest.equals('foo')); | 8122 unittest.expect(o[1], unittest.equals('foo')); |
| 8123 } | 8123 } |
| 8124 | 8124 |
| 8125 buildUnnamed1735() { | 8125 buildUnnamed2041() { |
| 8126 var o = new core.List<core.String>(); | 8126 var o = new core.List<core.String>(); |
| 8127 o.add("foo"); | 8127 o.add("foo"); |
| 8128 o.add("foo"); | 8128 o.add("foo"); |
| 8129 return o; | 8129 return o; |
| 8130 } | 8130 } |
| 8131 | 8131 |
| 8132 checkUnnamed1735(core.List<core.String> o) { | 8132 checkUnnamed2041(core.List<core.String> o) { |
| 8133 unittest.expect(o, unittest.hasLength(2)); | 8133 unittest.expect(o, unittest.hasLength(2)); |
| 8134 unittest.expect(o[0], unittest.equals('foo')); | 8134 unittest.expect(o[0], unittest.equals('foo')); |
| 8135 unittest.expect(o[1], unittest.equals('foo')); | 8135 unittest.expect(o[1], unittest.equals('foo')); |
| 8136 } | 8136 } |
| 8137 | 8137 |
| 8138 buildUnnamed1736() { | 8138 buildUnnamed2042() { |
| 8139 var o = new core.List<core.String>(); | 8139 var o = new core.List<core.String>(); |
| 8140 o.add("foo"); | 8140 o.add("foo"); |
| 8141 o.add("foo"); | 8141 o.add("foo"); |
| 8142 return o; | 8142 return o; |
| 8143 } | 8143 } |
| 8144 | 8144 |
| 8145 checkUnnamed1736(core.List<core.String> o) { | 8145 checkUnnamed2042(core.List<core.String> o) { |
| 8146 unittest.expect(o, unittest.hasLength(2)); | 8146 unittest.expect(o, unittest.hasLength(2)); |
| 8147 unittest.expect(o[0], unittest.equals('foo')); | 8147 unittest.expect(o[0], unittest.equals('foo')); |
| 8148 unittest.expect(o[1], unittest.equals('foo')); | 8148 unittest.expect(o[1], unittest.equals('foo')); |
| 8149 } | 8149 } |
| 8150 | 8150 |
| 8151 buildUnnamed1737() { | 8151 buildUnnamed2043() { |
| 8152 var o = new core.List<core.String>(); | 8152 var o = new core.List<core.String>(); |
| 8153 o.add("foo"); | 8153 o.add("foo"); |
| 8154 o.add("foo"); | 8154 o.add("foo"); |
| 8155 return o; | 8155 return o; |
| 8156 } | 8156 } |
| 8157 | 8157 |
| 8158 checkUnnamed1737(core.List<core.String> o) { | 8158 checkUnnamed2043(core.List<core.String> o) { |
| 8159 unittest.expect(o, unittest.hasLength(2)); | 8159 unittest.expect(o, unittest.hasLength(2)); |
| 8160 unittest.expect(o[0], unittest.equals('foo')); | 8160 unittest.expect(o[0], unittest.equals('foo')); |
| 8161 unittest.expect(o[1], unittest.equals('foo')); | 8161 unittest.expect(o[1], unittest.equals('foo')); |
| 8162 } | 8162 } |
| 8163 | 8163 |
| 8164 buildUnnamed1738() { | 8164 buildUnnamed2044() { |
| 8165 var o = new core.List<core.String>(); | 8165 var o = new core.List<core.String>(); |
| 8166 o.add("foo"); | 8166 o.add("foo"); |
| 8167 o.add("foo"); | 8167 o.add("foo"); |
| 8168 return o; | 8168 return o; |
| 8169 } | 8169 } |
| 8170 | 8170 |
| 8171 checkUnnamed1738(core.List<core.String> o) { | 8171 checkUnnamed2044(core.List<core.String> o) { |
| 8172 unittest.expect(o, unittest.hasLength(2)); | 8172 unittest.expect(o, unittest.hasLength(2)); |
| 8173 unittest.expect(o[0], unittest.equals('foo')); | 8173 unittest.expect(o[0], unittest.equals('foo')); |
| 8174 unittest.expect(o[1], unittest.equals('foo')); | 8174 unittest.expect(o[1], unittest.equals('foo')); |
| 8175 } | 8175 } |
| 8176 | 8176 |
| 8177 buildUnnamed1739() { | 8177 buildUnnamed2045() { |
| 8178 var o = new core.List<core.String>(); | 8178 var o = new core.List<core.String>(); |
| 8179 o.add("foo"); | 8179 o.add("foo"); |
| 8180 o.add("foo"); | 8180 o.add("foo"); |
| 8181 return o; | 8181 return o; |
| 8182 } | 8182 } |
| 8183 | 8183 |
| 8184 checkUnnamed1739(core.List<core.String> o) { | 8184 checkUnnamed2045(core.List<core.String> o) { |
| 8185 unittest.expect(o, unittest.hasLength(2)); | 8185 unittest.expect(o, unittest.hasLength(2)); |
| 8186 unittest.expect(o[0], unittest.equals('foo')); | 8186 unittest.expect(o[0], unittest.equals('foo')); |
| 8187 unittest.expect(o[1], unittest.equals('foo')); | 8187 unittest.expect(o[1], unittest.equals('foo')); |
| 8188 } | 8188 } |
| 8189 | 8189 |
| 8190 buildUnnamed1740() { | 8190 buildUnnamed2046() { |
| 8191 var o = new core.List<core.String>(); | 8191 var o = new core.List<core.String>(); |
| 8192 o.add("foo"); | 8192 o.add("foo"); |
| 8193 o.add("foo"); | 8193 o.add("foo"); |
| 8194 return o; | 8194 return o; |
| 8195 } | 8195 } |
| 8196 | 8196 |
| 8197 checkUnnamed1740(core.List<core.String> o) { | 8197 checkUnnamed2046(core.List<core.String> o) { |
| 8198 unittest.expect(o, unittest.hasLength(2)); | 8198 unittest.expect(o, unittest.hasLength(2)); |
| 8199 unittest.expect(o[0], unittest.equals('foo')); | 8199 unittest.expect(o[0], unittest.equals('foo')); |
| 8200 unittest.expect(o[1], unittest.equals('foo')); | 8200 unittest.expect(o[1], unittest.equals('foo')); |
| 8201 } | 8201 } |
| 8202 | 8202 |
| 8203 buildUnnamed1741() { | 8203 buildUnnamed2047() { |
| 8204 var o = new core.List<core.String>(); | 8204 var o = new core.List<core.String>(); |
| 8205 o.add("foo"); | 8205 o.add("foo"); |
| 8206 o.add("foo"); | 8206 o.add("foo"); |
| 8207 return o; | 8207 return o; |
| 8208 } | 8208 } |
| 8209 | 8209 |
| 8210 checkUnnamed1741(core.List<core.String> o) { | 8210 checkUnnamed2047(core.List<core.String> o) { |
| 8211 unittest.expect(o, unittest.hasLength(2)); | 8211 unittest.expect(o, unittest.hasLength(2)); |
| 8212 unittest.expect(o[0], unittest.equals('foo')); | 8212 unittest.expect(o[0], unittest.equals('foo')); |
| 8213 unittest.expect(o[1], unittest.equals('foo')); | 8213 unittest.expect(o[1], unittest.equals('foo')); |
| 8214 } | 8214 } |
| 8215 | 8215 |
| 8216 buildUnnamed1742() { | 8216 buildUnnamed2048() { |
| 8217 var o = new core.List<core.String>(); | 8217 var o = new core.List<core.String>(); |
| 8218 o.add("foo"); | 8218 o.add("foo"); |
| 8219 o.add("foo"); | 8219 o.add("foo"); |
| 8220 return o; | 8220 return o; |
| 8221 } | 8221 } |
| 8222 | 8222 |
| 8223 checkUnnamed1742(core.List<core.String> o) { | 8223 checkUnnamed2048(core.List<core.String> o) { |
| 8224 unittest.expect(o, unittest.hasLength(2)); | 8224 unittest.expect(o, unittest.hasLength(2)); |
| 8225 unittest.expect(o[0], unittest.equals('foo')); | 8225 unittest.expect(o[0], unittest.equals('foo')); |
| 8226 unittest.expect(o[1], unittest.equals('foo')); | 8226 unittest.expect(o[1], unittest.equals('foo')); |
| 8227 } | 8227 } |
| 8228 | 8228 |
| 8229 buildUnnamed1743() { | 8229 buildUnnamed2049() { |
| 8230 var o = new core.List<core.String>(); | 8230 var o = new core.List<core.String>(); |
| 8231 o.add("foo"); | 8231 o.add("foo"); |
| 8232 o.add("foo"); | 8232 o.add("foo"); |
| 8233 return o; | 8233 return o; |
| 8234 } | 8234 } |
| 8235 | 8235 |
| 8236 checkUnnamed1743(core.List<core.String> o) { | 8236 checkUnnamed2049(core.List<core.String> o) { |
| 8237 unittest.expect(o, unittest.hasLength(2)); | 8237 unittest.expect(o, unittest.hasLength(2)); |
| 8238 unittest.expect(o[0], unittest.equals('foo')); | 8238 unittest.expect(o[0], unittest.equals('foo')); |
| 8239 unittest.expect(o[1], unittest.equals('foo')); | 8239 unittest.expect(o[1], unittest.equals('foo')); |
| 8240 } | 8240 } |
| 8241 | 8241 |
| 8242 buildUnnamed1744() { | 8242 buildUnnamed2050() { |
| 8243 var o = new core.List<core.String>(); | 8243 var o = new core.List<core.String>(); |
| 8244 o.add("foo"); | 8244 o.add("foo"); |
| 8245 o.add("foo"); | 8245 o.add("foo"); |
| 8246 return o; | 8246 return o; |
| 8247 } | 8247 } |
| 8248 | 8248 |
| 8249 checkUnnamed1744(core.List<core.String> o) { | 8249 checkUnnamed2050(core.List<core.String> o) { |
| 8250 unittest.expect(o, unittest.hasLength(2)); | 8250 unittest.expect(o, unittest.hasLength(2)); |
| 8251 unittest.expect(o[0], unittest.equals('foo')); | 8251 unittest.expect(o[0], unittest.equals('foo')); |
| 8252 unittest.expect(o[1], unittest.equals('foo')); | 8252 unittest.expect(o[1], unittest.equals('foo')); |
| 8253 } | 8253 } |
| 8254 | 8254 |
| 8255 buildUnnamed1745() { | 8255 buildUnnamed2051() { |
| 8256 var o = new core.List<core.String>(); | 8256 var o = new core.List<core.String>(); |
| 8257 o.add("foo"); | 8257 o.add("foo"); |
| 8258 o.add("foo"); | 8258 o.add("foo"); |
| 8259 return o; | 8259 return o; |
| 8260 } | 8260 } |
| 8261 | 8261 |
| 8262 checkUnnamed1745(core.List<core.String> o) { | 8262 checkUnnamed2051(core.List<core.String> o) { |
| 8263 unittest.expect(o, unittest.hasLength(2)); | 8263 unittest.expect(o, unittest.hasLength(2)); |
| 8264 unittest.expect(o[0], unittest.equals('foo')); | 8264 unittest.expect(o[0], unittest.equals('foo')); |
| 8265 unittest.expect(o[1], unittest.equals('foo')); | 8265 unittest.expect(o[1], unittest.equals('foo')); |
| 8266 } | 8266 } |
| 8267 | 8267 |
| 8268 buildUnnamed1746() { | 8268 buildUnnamed2052() { |
| 8269 var o = new core.List<core.String>(); | 8269 var o = new core.List<core.String>(); |
| 8270 o.add("foo"); | 8270 o.add("foo"); |
| 8271 o.add("foo"); | 8271 o.add("foo"); |
| 8272 return o; | 8272 return o; |
| 8273 } | 8273 } |
| 8274 | 8274 |
| 8275 checkUnnamed1746(core.List<core.String> o) { | 8275 checkUnnamed2052(core.List<core.String> o) { |
| 8276 unittest.expect(o, unittest.hasLength(2)); | 8276 unittest.expect(o, unittest.hasLength(2)); |
| 8277 unittest.expect(o[0], unittest.equals('foo')); | 8277 unittest.expect(o[0], unittest.equals('foo')); |
| 8278 unittest.expect(o[1], unittest.equals('foo')); | 8278 unittest.expect(o[1], unittest.equals('foo')); |
| 8279 } | 8279 } |
| 8280 | 8280 |
| 8281 buildUnnamed1747() { | 8281 buildUnnamed2053() { |
| 8282 var o = new core.List<core.String>(); | 8282 var o = new core.List<core.String>(); |
| 8283 o.add("foo"); | 8283 o.add("foo"); |
| 8284 o.add("foo"); | 8284 o.add("foo"); |
| 8285 return o; | 8285 return o; |
| 8286 } | 8286 } |
| 8287 | 8287 |
| 8288 checkUnnamed1747(core.List<core.String> o) { | 8288 checkUnnamed2053(core.List<core.String> o) { |
| 8289 unittest.expect(o, unittest.hasLength(2)); | 8289 unittest.expect(o, unittest.hasLength(2)); |
| 8290 unittest.expect(o[0], unittest.equals('foo')); | 8290 unittest.expect(o[0], unittest.equals('foo')); |
| 8291 unittest.expect(o[1], unittest.equals('foo')); | 8291 unittest.expect(o[1], unittest.equals('foo')); |
| 8292 } | 8292 } |
| 8293 | 8293 |
| 8294 buildUnnamed1748() { | 8294 buildUnnamed2054() { |
| 8295 var o = new core.List<core.String>(); | 8295 var o = new core.List<core.String>(); |
| 8296 o.add("foo"); | 8296 o.add("foo"); |
| 8297 o.add("foo"); | 8297 o.add("foo"); |
| 8298 return o; | 8298 return o; |
| 8299 } | 8299 } |
| 8300 | 8300 |
| 8301 checkUnnamed1748(core.List<core.String> o) { | 8301 checkUnnamed2054(core.List<core.String> o) { |
| 8302 unittest.expect(o, unittest.hasLength(2)); | 8302 unittest.expect(o, unittest.hasLength(2)); |
| 8303 unittest.expect(o[0], unittest.equals('foo')); | 8303 unittest.expect(o[0], unittest.equals('foo')); |
| 8304 unittest.expect(o[1], unittest.equals('foo')); | 8304 unittest.expect(o[1], unittest.equals('foo')); |
| 8305 } | 8305 } |
| 8306 | 8306 |
| 8307 buildUnnamed1749() { | 8307 buildUnnamed2055() { |
| 8308 var o = new core.List<core.String>(); | 8308 var o = new core.List<core.String>(); |
| 8309 o.add("foo"); | 8309 o.add("foo"); |
| 8310 o.add("foo"); | 8310 o.add("foo"); |
| 8311 return o; | 8311 return o; |
| 8312 } | 8312 } |
| 8313 | 8313 |
| 8314 checkUnnamed1749(core.List<core.String> o) { | 8314 checkUnnamed2055(core.List<core.String> o) { |
| 8315 unittest.expect(o, unittest.hasLength(2)); | 8315 unittest.expect(o, unittest.hasLength(2)); |
| 8316 unittest.expect(o[0], unittest.equals('foo')); | 8316 unittest.expect(o[0], unittest.equals('foo')); |
| 8317 unittest.expect(o[1], unittest.equals('foo')); | 8317 unittest.expect(o[1], unittest.equals('foo')); |
| 8318 } | 8318 } |
| 8319 | 8319 |
| 8320 buildUnnamed1750() { | 8320 buildUnnamed2056() { |
| 8321 var o = new core.List<core.String>(); | 8321 var o = new core.List<core.String>(); |
| 8322 o.add("foo"); | 8322 o.add("foo"); |
| 8323 o.add("foo"); | 8323 o.add("foo"); |
| 8324 return o; | 8324 return o; |
| 8325 } | 8325 } |
| 8326 | 8326 |
| 8327 checkUnnamed1750(core.List<core.String> o) { | 8327 checkUnnamed2056(core.List<core.String> o) { |
| 8328 unittest.expect(o, unittest.hasLength(2)); | 8328 unittest.expect(o, unittest.hasLength(2)); |
| 8329 unittest.expect(o[0], unittest.equals('foo')); | 8329 unittest.expect(o[0], unittest.equals('foo')); |
| 8330 unittest.expect(o[1], unittest.equals('foo')); | 8330 unittest.expect(o[1], unittest.equals('foo')); |
| 8331 } | 8331 } |
| 8332 | 8332 |
| 8333 buildUnnamed1751() { | 8333 buildUnnamed2057() { |
| 8334 var o = new core.List<core.String>(); | 8334 var o = new core.List<core.String>(); |
| 8335 o.add("foo"); | 8335 o.add("foo"); |
| 8336 o.add("foo"); | 8336 o.add("foo"); |
| 8337 return o; | 8337 return o; |
| 8338 } | 8338 } |
| 8339 | 8339 |
| 8340 checkUnnamed1751(core.List<core.String> o) { | 8340 checkUnnamed2057(core.List<core.String> o) { |
| 8341 unittest.expect(o, unittest.hasLength(2)); | 8341 unittest.expect(o, unittest.hasLength(2)); |
| 8342 unittest.expect(o[0], unittest.equals('foo')); | 8342 unittest.expect(o[0], unittest.equals('foo')); |
| 8343 unittest.expect(o[1], unittest.equals('foo')); | 8343 unittest.expect(o[1], unittest.equals('foo')); |
| 8344 } | 8344 } |
| 8345 | 8345 |
| 8346 buildUnnamed1752() { | 8346 buildUnnamed2058() { |
| 8347 var o = new core.List<core.String>(); | 8347 var o = new core.List<core.String>(); |
| 8348 o.add("foo"); | 8348 o.add("foo"); |
| 8349 o.add("foo"); | 8349 o.add("foo"); |
| 8350 return o; | 8350 return o; |
| 8351 } | 8351 } |
| 8352 | 8352 |
| 8353 checkUnnamed1752(core.List<core.String> o) { | 8353 checkUnnamed2058(core.List<core.String> o) { |
| 8354 unittest.expect(o, unittest.hasLength(2)); | 8354 unittest.expect(o, unittest.hasLength(2)); |
| 8355 unittest.expect(o[0], unittest.equals('foo')); | 8355 unittest.expect(o[0], unittest.equals('foo')); |
| 8356 unittest.expect(o[1], unittest.equals('foo')); | 8356 unittest.expect(o[1], unittest.equals('foo')); |
| 8357 } | 8357 } |
| 8358 | 8358 |
| 8359 buildUnnamed1753() { | 8359 buildUnnamed2059() { |
| 8360 var o = new core.List<core.String>(); | 8360 var o = new core.List<core.String>(); |
| 8361 o.add("foo"); | 8361 o.add("foo"); |
| 8362 o.add("foo"); | 8362 o.add("foo"); |
| 8363 return o; | 8363 return o; |
| 8364 } | 8364 } |
| 8365 | 8365 |
| 8366 checkUnnamed1753(core.List<core.String> o) { | 8366 checkUnnamed2059(core.List<core.String> o) { |
| 8367 unittest.expect(o, unittest.hasLength(2)); | 8367 unittest.expect(o, unittest.hasLength(2)); |
| 8368 unittest.expect(o[0], unittest.equals('foo')); | 8368 unittest.expect(o[0], unittest.equals('foo')); |
| 8369 unittest.expect(o[1], unittest.equals('foo')); | 8369 unittest.expect(o[1], unittest.equals('foo')); |
| 8370 } | 8370 } |
| 8371 | 8371 |
| 8372 buildUnnamed1754() { | 8372 buildUnnamed2060() { |
| 8373 var o = new core.List<core.String>(); | 8373 var o = new core.List<core.String>(); |
| 8374 o.add("foo"); | 8374 o.add("foo"); |
| 8375 o.add("foo"); | 8375 o.add("foo"); |
| 8376 return o; | 8376 return o; |
| 8377 } | 8377 } |
| 8378 | 8378 |
| 8379 checkUnnamed1754(core.List<core.String> o) { | 8379 checkUnnamed2060(core.List<core.String> o) { |
| 8380 unittest.expect(o, unittest.hasLength(2)); | 8380 unittest.expect(o, unittest.hasLength(2)); |
| 8381 unittest.expect(o[0], unittest.equals('foo')); | 8381 unittest.expect(o[0], unittest.equals('foo')); |
| 8382 unittest.expect(o[1], unittest.equals('foo')); | 8382 unittest.expect(o[1], unittest.equals('foo')); |
| 8383 } | 8383 } |
| 8384 | 8384 |
| 8385 buildUnnamed1755() { | 8385 buildUnnamed2061() { |
| 8386 var o = new core.List<core.String>(); | 8386 var o = new core.List<core.String>(); |
| 8387 o.add("foo"); | 8387 o.add("foo"); |
| 8388 o.add("foo"); | 8388 o.add("foo"); |
| 8389 return o; | 8389 return o; |
| 8390 } | 8390 } |
| 8391 | 8391 |
| 8392 checkUnnamed1755(core.List<core.String> o) { | 8392 checkUnnamed2061(core.List<core.String> o) { |
| 8393 unittest.expect(o, unittest.hasLength(2)); | 8393 unittest.expect(o, unittest.hasLength(2)); |
| 8394 unittest.expect(o[0], unittest.equals('foo')); | 8394 unittest.expect(o[0], unittest.equals('foo')); |
| 8395 unittest.expect(o[1], unittest.equals('foo')); | 8395 unittest.expect(o[1], unittest.equals('foo')); |
| 8396 } | 8396 } |
| 8397 | 8397 |
| 8398 buildUnnamed1756() { | 8398 buildUnnamed2062() { |
| 8399 var o = new core.List<core.String>(); | 8399 var o = new core.List<core.String>(); |
| 8400 o.add("foo"); | 8400 o.add("foo"); |
| 8401 o.add("foo"); | 8401 o.add("foo"); |
| 8402 return o; | 8402 return o; |
| 8403 } | 8403 } |
| 8404 | 8404 |
| 8405 checkUnnamed1756(core.List<core.String> o) { | 8405 checkUnnamed2062(core.List<core.String> o) { |
| 8406 unittest.expect(o, unittest.hasLength(2)); | 8406 unittest.expect(o, unittest.hasLength(2)); |
| 8407 unittest.expect(o[0], unittest.equals('foo')); | 8407 unittest.expect(o[0], unittest.equals('foo')); |
| 8408 unittest.expect(o[1], unittest.equals('foo')); | 8408 unittest.expect(o[1], unittest.equals('foo')); |
| 8409 } | 8409 } |
| 8410 | 8410 |
| 8411 buildUnnamed1757() { | 8411 buildUnnamed2063() { |
| 8412 var o = new core.List<core.String>(); | 8412 var o = new core.List<core.String>(); |
| 8413 o.add("foo"); | 8413 o.add("foo"); |
| 8414 o.add("foo"); | 8414 o.add("foo"); |
| 8415 return o; | 8415 return o; |
| 8416 } | 8416 } |
| 8417 | 8417 |
| 8418 checkUnnamed1757(core.List<core.String> o) { | 8418 checkUnnamed2063(core.List<core.String> o) { |
| 8419 unittest.expect(o, unittest.hasLength(2)); | 8419 unittest.expect(o, unittest.hasLength(2)); |
| 8420 unittest.expect(o[0], unittest.equals('foo')); | 8420 unittest.expect(o[0], unittest.equals('foo')); |
| 8421 unittest.expect(o[1], unittest.equals('foo')); | 8421 unittest.expect(o[1], unittest.equals('foo')); |
| 8422 } | 8422 } |
| 8423 | 8423 |
| 8424 buildUnnamed1758() { | 8424 buildUnnamed2064() { |
| 8425 var o = new core.List<core.String>(); | 8425 var o = new core.List<core.String>(); |
| 8426 o.add("foo"); | 8426 o.add("foo"); |
| 8427 o.add("foo"); | 8427 o.add("foo"); |
| 8428 return o; | 8428 return o; |
| 8429 } | 8429 } |
| 8430 | 8430 |
| 8431 checkUnnamed1758(core.List<core.String> o) { | 8431 checkUnnamed2064(core.List<core.String> o) { |
| 8432 unittest.expect(o, unittest.hasLength(2)); | 8432 unittest.expect(o, unittest.hasLength(2)); |
| 8433 unittest.expect(o[0], unittest.equals('foo')); | 8433 unittest.expect(o[0], unittest.equals('foo')); |
| 8434 unittest.expect(o[1], unittest.equals('foo')); | 8434 unittest.expect(o[1], unittest.equals('foo')); |
| 8435 } | 8435 } |
| 8436 | 8436 |
| 8437 buildUnnamed1759() { | 8437 buildUnnamed2065() { |
| 8438 var o = new core.List<core.String>(); | 8438 var o = new core.List<core.String>(); |
| 8439 o.add("foo"); | 8439 o.add("foo"); |
| 8440 o.add("foo"); | 8440 o.add("foo"); |
| 8441 return o; | 8441 return o; |
| 8442 } | 8442 } |
| 8443 | 8443 |
| 8444 checkUnnamed1759(core.List<core.String> o) { | 8444 checkUnnamed2065(core.List<core.String> o) { |
| 8445 unittest.expect(o, unittest.hasLength(2)); | 8445 unittest.expect(o, unittest.hasLength(2)); |
| 8446 unittest.expect(o[0], unittest.equals('foo')); | 8446 unittest.expect(o[0], unittest.equals('foo')); |
| 8447 unittest.expect(o[1], unittest.equals('foo')); | 8447 unittest.expect(o[1], unittest.equals('foo')); |
| 8448 } | 8448 } |
| 8449 | 8449 |
| 8450 buildUnnamed1760() { | 8450 buildUnnamed2066() { |
| 8451 var o = new core.List<core.String>(); | 8451 var o = new core.List<core.String>(); |
| 8452 o.add("foo"); | 8452 o.add("foo"); |
| 8453 o.add("foo"); | 8453 o.add("foo"); |
| 8454 return o; | 8454 return o; |
| 8455 } | 8455 } |
| 8456 | 8456 |
| 8457 checkUnnamed1760(core.List<core.String> o) { | 8457 checkUnnamed2066(core.List<core.String> o) { |
| 8458 unittest.expect(o, unittest.hasLength(2)); | 8458 unittest.expect(o, unittest.hasLength(2)); |
| 8459 unittest.expect(o[0], unittest.equals('foo')); | 8459 unittest.expect(o[0], unittest.equals('foo')); |
| 8460 unittest.expect(o[1], unittest.equals('foo')); | 8460 unittest.expect(o[1], unittest.equals('foo')); |
| 8461 } | 8461 } |
| 8462 | 8462 |
| 8463 buildUnnamed1761() { | 8463 buildUnnamed2067() { |
| 8464 var o = new core.List<core.String>(); | 8464 var o = new core.List<core.String>(); |
| 8465 o.add("foo"); | 8465 o.add("foo"); |
| 8466 o.add("foo"); | 8466 o.add("foo"); |
| 8467 return o; | 8467 return o; |
| 8468 } | 8468 } |
| 8469 | 8469 |
| 8470 checkUnnamed1761(core.List<core.String> o) { | 8470 checkUnnamed2067(core.List<core.String> o) { |
| 8471 unittest.expect(o, unittest.hasLength(2)); | 8471 unittest.expect(o, unittest.hasLength(2)); |
| 8472 unittest.expect(o[0], unittest.equals('foo')); | 8472 unittest.expect(o[0], unittest.equals('foo')); |
| 8473 unittest.expect(o[1], unittest.equals('foo')); | 8473 unittest.expect(o[1], unittest.equals('foo')); |
| 8474 } | 8474 } |
| 8475 | 8475 |
| 8476 buildUnnamed1762() { | 8476 buildUnnamed2068() { |
| 8477 var o = new core.List<core.String>(); | 8477 var o = new core.List<core.String>(); |
| 8478 o.add("foo"); | 8478 o.add("foo"); |
| 8479 o.add("foo"); | 8479 o.add("foo"); |
| 8480 return o; | 8480 return o; |
| 8481 } | 8481 } |
| 8482 | 8482 |
| 8483 checkUnnamed1762(core.List<core.String> o) { | 8483 checkUnnamed2068(core.List<core.String> o) { |
| 8484 unittest.expect(o, unittest.hasLength(2)); | 8484 unittest.expect(o, unittest.hasLength(2)); |
| 8485 unittest.expect(o[0], unittest.equals('foo')); | 8485 unittest.expect(o[0], unittest.equals('foo')); |
| 8486 unittest.expect(o[1], unittest.equals('foo')); | 8486 unittest.expect(o[1], unittest.equals('foo')); |
| 8487 } | 8487 } |
| 8488 | 8488 |
| 8489 buildUnnamed1763() { | 8489 buildUnnamed2069() { |
| 8490 var o = new core.List<core.String>(); | 8490 var o = new core.List<core.String>(); |
| 8491 o.add("foo"); | 8491 o.add("foo"); |
| 8492 o.add("foo"); | 8492 o.add("foo"); |
| 8493 return o; | 8493 return o; |
| 8494 } | 8494 } |
| 8495 | 8495 |
| 8496 checkUnnamed1763(core.List<core.String> o) { | 8496 checkUnnamed2069(core.List<core.String> o) { |
| 8497 unittest.expect(o, unittest.hasLength(2)); | 8497 unittest.expect(o, unittest.hasLength(2)); |
| 8498 unittest.expect(o[0], unittest.equals('foo')); | 8498 unittest.expect(o[0], unittest.equals('foo')); |
| 8499 unittest.expect(o[1], unittest.equals('foo')); | 8499 unittest.expect(o[1], unittest.equals('foo')); |
| 8500 } | 8500 } |
| 8501 | 8501 |
| 8502 buildUnnamed1764() { | 8502 buildUnnamed2070() { |
| 8503 var o = new core.List<core.String>(); | 8503 var o = new core.List<core.String>(); |
| 8504 o.add("foo"); | 8504 o.add("foo"); |
| 8505 o.add("foo"); | 8505 o.add("foo"); |
| 8506 return o; | 8506 return o; |
| 8507 } | 8507 } |
| 8508 | 8508 |
| 8509 checkUnnamed1764(core.List<core.String> o) { | 8509 checkUnnamed2070(core.List<core.String> o) { |
| 8510 unittest.expect(o, unittest.hasLength(2)); | 8510 unittest.expect(o, unittest.hasLength(2)); |
| 8511 unittest.expect(o[0], unittest.equals('foo')); | 8511 unittest.expect(o[0], unittest.equals('foo')); |
| 8512 unittest.expect(o[1], unittest.equals('foo')); | 8512 unittest.expect(o[1], unittest.equals('foo')); |
| 8513 } | 8513 } |
| 8514 | 8514 |
| 8515 buildUnnamed1765() { | 8515 buildUnnamed2071() { |
| 8516 var o = new core.List<core.String>(); | 8516 var o = new core.List<core.String>(); |
| 8517 o.add("foo"); | 8517 o.add("foo"); |
| 8518 o.add("foo"); | 8518 o.add("foo"); |
| 8519 return o; | 8519 return o; |
| 8520 } | 8520 } |
| 8521 | 8521 |
| 8522 checkUnnamed1765(core.List<core.String> o) { | 8522 checkUnnamed2071(core.List<core.String> o) { |
| 8523 unittest.expect(o, unittest.hasLength(2)); | 8523 unittest.expect(o, unittest.hasLength(2)); |
| 8524 unittest.expect(o[0], unittest.equals('foo')); | 8524 unittest.expect(o[0], unittest.equals('foo')); |
| 8525 unittest.expect(o[1], unittest.equals('foo')); | 8525 unittest.expect(o[1], unittest.equals('foo')); |
| 8526 } | 8526 } |
| 8527 | 8527 |
| 8528 buildUnnamed1766() { | 8528 buildUnnamed2072() { |
| 8529 var o = new core.List<core.String>(); | 8529 var o = new core.List<core.String>(); |
| 8530 o.add("foo"); | 8530 o.add("foo"); |
| 8531 o.add("foo"); | 8531 o.add("foo"); |
| 8532 return o; | 8532 return o; |
| 8533 } | 8533 } |
| 8534 | 8534 |
| 8535 checkUnnamed1766(core.List<core.String> o) { | 8535 checkUnnamed2072(core.List<core.String> o) { |
| 8536 unittest.expect(o, unittest.hasLength(2)); | 8536 unittest.expect(o, unittest.hasLength(2)); |
| 8537 unittest.expect(o[0], unittest.equals('foo')); | 8537 unittest.expect(o[0], unittest.equals('foo')); |
| 8538 unittest.expect(o[1], unittest.equals('foo')); | 8538 unittest.expect(o[1], unittest.equals('foo')); |
| 8539 } | 8539 } |
| 8540 | 8540 |
| 8541 buildUnnamed1767() { | 8541 buildUnnamed2073() { |
| 8542 var o = new core.List<core.String>(); | 8542 var o = new core.List<core.String>(); |
| 8543 o.add("foo"); | 8543 o.add("foo"); |
| 8544 o.add("foo"); | 8544 o.add("foo"); |
| 8545 return o; | 8545 return o; |
| 8546 } | 8546 } |
| 8547 | 8547 |
| 8548 checkUnnamed1767(core.List<core.String> o) { | 8548 checkUnnamed2073(core.List<core.String> o) { |
| 8549 unittest.expect(o, unittest.hasLength(2)); | 8549 unittest.expect(o, unittest.hasLength(2)); |
| 8550 unittest.expect(o[0], unittest.equals('foo')); | 8550 unittest.expect(o[0], unittest.equals('foo')); |
| 8551 unittest.expect(o[1], unittest.equals('foo')); | 8551 unittest.expect(o[1], unittest.equals('foo')); |
| 8552 } | 8552 } |
| 8553 | 8553 |
| 8554 buildUnnamed1768() { | 8554 buildUnnamed2074() { |
| 8555 var o = new core.List<core.String>(); | 8555 var o = new core.List<core.String>(); |
| 8556 o.add("foo"); | 8556 o.add("foo"); |
| 8557 o.add("foo"); | 8557 o.add("foo"); |
| 8558 return o; | 8558 return o; |
| 8559 } | 8559 } |
| 8560 | 8560 |
| 8561 checkUnnamed1768(core.List<core.String> o) { | 8561 checkUnnamed2074(core.List<core.String> o) { |
| 8562 unittest.expect(o, unittest.hasLength(2)); | 8562 unittest.expect(o, unittest.hasLength(2)); |
| 8563 unittest.expect(o[0], unittest.equals('foo')); | 8563 unittest.expect(o[0], unittest.equals('foo')); |
| 8564 unittest.expect(o[1], unittest.equals('foo')); | 8564 unittest.expect(o[1], unittest.equals('foo')); |
| 8565 } | 8565 } |
| 8566 | 8566 |
| 8567 buildUnnamed1769() { | 8567 buildUnnamed2075() { |
| 8568 var o = new core.List<core.String>(); | 8568 var o = new core.List<core.String>(); |
| 8569 o.add("foo"); | 8569 o.add("foo"); |
| 8570 o.add("foo"); | 8570 o.add("foo"); |
| 8571 return o; | 8571 return o; |
| 8572 } | 8572 } |
| 8573 | 8573 |
| 8574 checkUnnamed1769(core.List<core.String> o) { | 8574 checkUnnamed2075(core.List<core.String> o) { |
| 8575 unittest.expect(o, unittest.hasLength(2)); | 8575 unittest.expect(o, unittest.hasLength(2)); |
| 8576 unittest.expect(o[0], unittest.equals('foo')); | 8576 unittest.expect(o[0], unittest.equals('foo')); |
| 8577 unittest.expect(o[1], unittest.equals('foo')); | 8577 unittest.expect(o[1], unittest.equals('foo')); |
| 8578 } | 8578 } |
| 8579 | 8579 |
| 8580 buildUnnamed1770() { | 8580 buildUnnamed2076() { |
| 8581 var o = new core.List<core.String>(); | 8581 var o = new core.List<core.String>(); |
| 8582 o.add("foo"); | 8582 o.add("foo"); |
| 8583 o.add("foo"); | 8583 o.add("foo"); |
| 8584 return o; | 8584 return o; |
| 8585 } | 8585 } |
| 8586 | 8586 |
| 8587 checkUnnamed1770(core.List<core.String> o) { | 8587 checkUnnamed2076(core.List<core.String> o) { |
| 8588 unittest.expect(o, unittest.hasLength(2)); | 8588 unittest.expect(o, unittest.hasLength(2)); |
| 8589 unittest.expect(o[0], unittest.equals('foo')); | 8589 unittest.expect(o[0], unittest.equals('foo')); |
| 8590 unittest.expect(o[1], unittest.equals('foo')); | 8590 unittest.expect(o[1], unittest.equals('foo')); |
| 8591 } | 8591 } |
| 8592 | 8592 |
| 8593 buildUnnamed1771() { | 8593 buildUnnamed2077() { |
| 8594 var o = new core.List<core.String>(); | 8594 var o = new core.List<core.String>(); |
| 8595 o.add("foo"); | 8595 o.add("foo"); |
| 8596 o.add("foo"); | 8596 o.add("foo"); |
| 8597 return o; | 8597 return o; |
| 8598 } | 8598 } |
| 8599 | 8599 |
| 8600 checkUnnamed1771(core.List<core.String> o) { | 8600 checkUnnamed2077(core.List<core.String> o) { |
| 8601 unittest.expect(o, unittest.hasLength(2)); | 8601 unittest.expect(o, unittest.hasLength(2)); |
| 8602 unittest.expect(o[0], unittest.equals('foo')); | 8602 unittest.expect(o[0], unittest.equals('foo')); |
| 8603 unittest.expect(o[1], unittest.equals('foo')); | 8603 unittest.expect(o[1], unittest.equals('foo')); |
| 8604 } | 8604 } |
| 8605 | 8605 |
| 8606 buildUnnamed1772() { | 8606 buildUnnamed2078() { |
| 8607 var o = new core.List<core.String>(); | 8607 var o = new core.List<core.String>(); |
| 8608 o.add("foo"); | 8608 o.add("foo"); |
| 8609 o.add("foo"); | 8609 o.add("foo"); |
| 8610 return o; | 8610 return o; |
| 8611 } | 8611 } |
| 8612 | 8612 |
| 8613 checkUnnamed1772(core.List<core.String> o) { | 8613 checkUnnamed2078(core.List<core.String> o) { |
| 8614 unittest.expect(o, unittest.hasLength(2)); | 8614 unittest.expect(o, unittest.hasLength(2)); |
| 8615 unittest.expect(o[0], unittest.equals('foo')); | 8615 unittest.expect(o[0], unittest.equals('foo')); |
| 8616 unittest.expect(o[1], unittest.equals('foo')); | 8616 unittest.expect(o[1], unittest.equals('foo')); |
| 8617 } | 8617 } |
| 8618 | 8618 |
| 8619 buildUnnamed1773() { | 8619 buildUnnamed2079() { |
| 8620 var o = new core.List<core.String>(); | 8620 var o = new core.List<core.String>(); |
| 8621 o.add("foo"); | 8621 o.add("foo"); |
| 8622 o.add("foo"); | 8622 o.add("foo"); |
| 8623 return o; | 8623 return o; |
| 8624 } | 8624 } |
| 8625 | 8625 |
| 8626 checkUnnamed1773(core.List<core.String> o) { | 8626 checkUnnamed2079(core.List<core.String> o) { |
| 8627 unittest.expect(o, unittest.hasLength(2)); | 8627 unittest.expect(o, unittest.hasLength(2)); |
| 8628 unittest.expect(o[0], unittest.equals('foo')); | 8628 unittest.expect(o[0], unittest.equals('foo')); |
| 8629 unittest.expect(o[1], unittest.equals('foo')); | 8629 unittest.expect(o[1], unittest.equals('foo')); |
| 8630 } | 8630 } |
| 8631 | 8631 |
| 8632 buildUnnamed1774() { | 8632 buildUnnamed2080() { |
| 8633 var o = new core.List<core.String>(); | 8633 var o = new core.List<core.String>(); |
| 8634 o.add("foo"); | 8634 o.add("foo"); |
| 8635 o.add("foo"); | 8635 o.add("foo"); |
| 8636 return o; | 8636 return o; |
| 8637 } | 8637 } |
| 8638 | 8638 |
| 8639 checkUnnamed1774(core.List<core.String> o) { | 8639 checkUnnamed2080(core.List<core.String> o) { |
| 8640 unittest.expect(o, unittest.hasLength(2)); | 8640 unittest.expect(o, unittest.hasLength(2)); |
| 8641 unittest.expect(o[0], unittest.equals('foo')); | 8641 unittest.expect(o[0], unittest.equals('foo')); |
| 8642 unittest.expect(o[1], unittest.equals('foo')); | 8642 unittest.expect(o[1], unittest.equals('foo')); |
| 8643 } | 8643 } |
| 8644 | 8644 |
| 8645 buildUnnamed1775() { | 8645 buildUnnamed2081() { |
| 8646 var o = new core.List<core.String>(); | 8646 var o = new core.List<core.String>(); |
| 8647 o.add("foo"); | 8647 o.add("foo"); |
| 8648 o.add("foo"); | 8648 o.add("foo"); |
| 8649 return o; | 8649 return o; |
| 8650 } | 8650 } |
| 8651 | 8651 |
| 8652 checkUnnamed1775(core.List<core.String> o) { | 8652 checkUnnamed2081(core.List<core.String> o) { |
| 8653 unittest.expect(o, unittest.hasLength(2)); | 8653 unittest.expect(o, unittest.hasLength(2)); |
| 8654 unittest.expect(o[0], unittest.equals('foo')); | 8654 unittest.expect(o[0], unittest.equals('foo')); |
| 8655 unittest.expect(o[1], unittest.equals('foo')); | 8655 unittest.expect(o[1], unittest.equals('foo')); |
| 8656 } | 8656 } |
| 8657 | 8657 |
| 8658 buildUnnamed1776() { | 8658 buildUnnamed2082() { |
| 8659 var o = new core.List<core.String>(); | 8659 var o = new core.List<core.String>(); |
| 8660 o.add("foo"); | 8660 o.add("foo"); |
| 8661 o.add("foo"); | 8661 o.add("foo"); |
| 8662 return o; | 8662 return o; |
| 8663 } | 8663 } |
| 8664 | 8664 |
| 8665 checkUnnamed1776(core.List<core.String> o) { | 8665 checkUnnamed2082(core.List<core.String> o) { |
| 8666 unittest.expect(o, unittest.hasLength(2)); | 8666 unittest.expect(o, unittest.hasLength(2)); |
| 8667 unittest.expect(o[0], unittest.equals('foo')); | 8667 unittest.expect(o[0], unittest.equals('foo')); |
| 8668 unittest.expect(o[1], unittest.equals('foo')); | 8668 unittest.expect(o[1], unittest.equals('foo')); |
| 8669 } | 8669 } |
| 8670 | 8670 |
| 8671 buildUnnamed1777() { | 8671 buildUnnamed2083() { |
| 8672 var o = new core.List<core.String>(); | 8672 var o = new core.List<core.String>(); |
| 8673 o.add("foo"); | 8673 o.add("foo"); |
| 8674 o.add("foo"); | 8674 o.add("foo"); |
| 8675 return o; | 8675 return o; |
| 8676 } | 8676 } |
| 8677 | 8677 |
| 8678 checkUnnamed1777(core.List<core.String> o) { | 8678 checkUnnamed2083(core.List<core.String> o) { |
| 8679 unittest.expect(o, unittest.hasLength(2)); | 8679 unittest.expect(o, unittest.hasLength(2)); |
| 8680 unittest.expect(o[0], unittest.equals('foo')); | 8680 unittest.expect(o[0], unittest.equals('foo')); |
| 8681 unittest.expect(o[1], unittest.equals('foo')); | 8681 unittest.expect(o[1], unittest.equals('foo')); |
| 8682 } | 8682 } |
| 8683 | 8683 |
| 8684 buildUnnamed1778() { | 8684 buildUnnamed2084() { |
| 8685 var o = new core.List<core.String>(); | 8685 var o = new core.List<core.String>(); |
| 8686 o.add("foo"); | 8686 o.add("foo"); |
| 8687 o.add("foo"); | 8687 o.add("foo"); |
| 8688 return o; | 8688 return o; |
| 8689 } | 8689 } |
| 8690 | 8690 |
| 8691 checkUnnamed1778(core.List<core.String> o) { | 8691 checkUnnamed2084(core.List<core.String> o) { |
| 8692 unittest.expect(o, unittest.hasLength(2)); | 8692 unittest.expect(o, unittest.hasLength(2)); |
| 8693 unittest.expect(o[0], unittest.equals('foo')); | 8693 unittest.expect(o[0], unittest.equals('foo')); |
| 8694 unittest.expect(o[1], unittest.equals('foo')); | 8694 unittest.expect(o[1], unittest.equals('foo')); |
| 8695 } | 8695 } |
| 8696 | 8696 |
| 8697 buildUnnamed1779() { | 8697 buildUnnamed2085() { |
| 8698 var o = new core.List<core.String>(); | 8698 var o = new core.List<core.String>(); |
| 8699 o.add("foo"); | 8699 o.add("foo"); |
| 8700 o.add("foo"); | 8700 o.add("foo"); |
| 8701 return o; | 8701 return o; |
| 8702 } | 8702 } |
| 8703 | 8703 |
| 8704 checkUnnamed1779(core.List<core.String> o) { | 8704 checkUnnamed2085(core.List<core.String> o) { |
| 8705 unittest.expect(o, unittest.hasLength(2)); | 8705 unittest.expect(o, unittest.hasLength(2)); |
| 8706 unittest.expect(o[0], unittest.equals('foo')); | 8706 unittest.expect(o[0], unittest.equals('foo')); |
| 8707 unittest.expect(o[1], unittest.equals('foo')); | 8707 unittest.expect(o[1], unittest.equals('foo')); |
| 8708 } | 8708 } |
| 8709 | 8709 |
| 8710 buildUnnamed1780() { | 8710 buildUnnamed2086() { |
| 8711 var o = new core.List<core.String>(); | 8711 var o = new core.List<core.String>(); |
| 8712 o.add("foo"); | 8712 o.add("foo"); |
| 8713 o.add("foo"); | 8713 o.add("foo"); |
| 8714 return o; | 8714 return o; |
| 8715 } | 8715 } |
| 8716 | 8716 |
| 8717 checkUnnamed1780(core.List<core.String> o) { | 8717 checkUnnamed2086(core.List<core.String> o) { |
| 8718 unittest.expect(o, unittest.hasLength(2)); | 8718 unittest.expect(o, unittest.hasLength(2)); |
| 8719 unittest.expect(o[0], unittest.equals('foo')); | 8719 unittest.expect(o[0], unittest.equals('foo')); |
| 8720 unittest.expect(o[1], unittest.equals('foo')); | 8720 unittest.expect(o[1], unittest.equals('foo')); |
| 8721 } | 8721 } |
| 8722 | 8722 |
| 8723 buildUnnamed1781() { | 8723 buildUnnamed2087() { |
| 8724 var o = new core.List<core.String>(); | 8724 var o = new core.List<core.String>(); |
| 8725 o.add("foo"); | 8725 o.add("foo"); |
| 8726 o.add("foo"); | 8726 o.add("foo"); |
| 8727 return o; | 8727 return o; |
| 8728 } | 8728 } |
| 8729 | 8729 |
| 8730 checkUnnamed1781(core.List<core.String> o) { | 8730 checkUnnamed2087(core.List<core.String> o) { |
| 8731 unittest.expect(o, unittest.hasLength(2)); | 8731 unittest.expect(o, unittest.hasLength(2)); |
| 8732 unittest.expect(o[0], unittest.equals('foo')); | 8732 unittest.expect(o[0], unittest.equals('foo')); |
| 8733 unittest.expect(o[1], unittest.equals('foo')); | 8733 unittest.expect(o[1], unittest.equals('foo')); |
| 8734 } | 8734 } |
| 8735 | 8735 |
| 8736 buildUnnamed1782() { | 8736 buildUnnamed2088() { |
| 8737 var o = new core.List<core.String>(); | 8737 var o = new core.List<core.String>(); |
| 8738 o.add("foo"); | 8738 o.add("foo"); |
| 8739 o.add("foo"); | 8739 o.add("foo"); |
| 8740 return o; | 8740 return o; |
| 8741 } | 8741 } |
| 8742 | 8742 |
| 8743 checkUnnamed1782(core.List<core.String> o) { | 8743 checkUnnamed2088(core.List<core.String> o) { |
| 8744 unittest.expect(o, unittest.hasLength(2)); | 8744 unittest.expect(o, unittest.hasLength(2)); |
| 8745 unittest.expect(o[0], unittest.equals('foo')); | 8745 unittest.expect(o[0], unittest.equals('foo')); |
| 8746 unittest.expect(o[1], unittest.equals('foo')); | 8746 unittest.expect(o[1], unittest.equals('foo')); |
| 8747 } | 8747 } |
| 8748 | 8748 |
| 8749 buildUnnamed1783() { | 8749 buildUnnamed2089() { |
| 8750 var o = new core.List<core.String>(); | 8750 var o = new core.List<core.String>(); |
| 8751 o.add("foo"); | 8751 o.add("foo"); |
| 8752 o.add("foo"); | 8752 o.add("foo"); |
| 8753 return o; | 8753 return o; |
| 8754 } | 8754 } |
| 8755 | 8755 |
| 8756 checkUnnamed1783(core.List<core.String> o) { | 8756 checkUnnamed2089(core.List<core.String> o) { |
| 8757 unittest.expect(o, unittest.hasLength(2)); | 8757 unittest.expect(o, unittest.hasLength(2)); |
| 8758 unittest.expect(o[0], unittest.equals('foo')); | 8758 unittest.expect(o[0], unittest.equals('foo')); |
| 8759 unittest.expect(o[1], unittest.equals('foo')); | 8759 unittest.expect(o[1], unittest.equals('foo')); |
| 8760 } | 8760 } |
| 8761 | 8761 |
| 8762 buildUnnamed1784() { | 8762 buildUnnamed2090() { |
| 8763 var o = new core.List<core.String>(); | 8763 var o = new core.List<core.String>(); |
| 8764 o.add("foo"); | 8764 o.add("foo"); |
| 8765 o.add("foo"); | 8765 o.add("foo"); |
| 8766 return o; | 8766 return o; |
| 8767 } | 8767 } |
| 8768 | 8768 |
| 8769 checkUnnamed1784(core.List<core.String> o) { | 8769 checkUnnamed2090(core.List<core.String> o) { |
| 8770 unittest.expect(o, unittest.hasLength(2)); | 8770 unittest.expect(o, unittest.hasLength(2)); |
| 8771 unittest.expect(o[0], unittest.equals('foo')); | 8771 unittest.expect(o[0], unittest.equals('foo')); |
| 8772 unittest.expect(o[1], unittest.equals('foo')); | 8772 unittest.expect(o[1], unittest.equals('foo')); |
| 8773 } | 8773 } |
| 8774 | 8774 |
| 8775 buildUnnamed1785() { | 8775 buildUnnamed2091() { |
| 8776 var o = new core.List<core.String>(); | 8776 var o = new core.List<core.String>(); |
| 8777 o.add("foo"); | 8777 o.add("foo"); |
| 8778 o.add("foo"); | 8778 o.add("foo"); |
| 8779 return o; | 8779 return o; |
| 8780 } | 8780 } |
| 8781 | 8781 |
| 8782 checkUnnamed1785(core.List<core.String> o) { | 8782 checkUnnamed2091(core.List<core.String> o) { |
| 8783 unittest.expect(o, unittest.hasLength(2)); | 8783 unittest.expect(o, unittest.hasLength(2)); |
| 8784 unittest.expect(o[0], unittest.equals('foo')); | 8784 unittest.expect(o[0], unittest.equals('foo')); |
| 8785 unittest.expect(o[1], unittest.equals('foo')); | 8785 unittest.expect(o[1], unittest.equals('foo')); |
| 8786 } | 8786 } |
| 8787 | 8787 |
| 8788 buildUnnamed1786() { | 8788 buildUnnamed2092() { |
| 8789 var o = new core.List<core.String>(); | 8789 var o = new core.List<core.String>(); |
| 8790 o.add("foo"); | 8790 o.add("foo"); |
| 8791 o.add("foo"); | 8791 o.add("foo"); |
| 8792 return o; | 8792 return o; |
| 8793 } | 8793 } |
| 8794 | 8794 |
| 8795 checkUnnamed1786(core.List<core.String> o) { | 8795 checkUnnamed2092(core.List<core.String> o) { |
| 8796 unittest.expect(o, unittest.hasLength(2)); | 8796 unittest.expect(o, unittest.hasLength(2)); |
| 8797 unittest.expect(o[0], unittest.equals('foo')); | 8797 unittest.expect(o[0], unittest.equals('foo')); |
| 8798 unittest.expect(o[1], unittest.equals('foo')); | 8798 unittest.expect(o[1], unittest.equals('foo')); |
| 8799 } | 8799 } |
| 8800 | 8800 |
| 8801 buildUnnamed1787() { | 8801 buildUnnamed2093() { |
| 8802 var o = new core.List<core.String>(); | 8802 var o = new core.List<core.String>(); |
| 8803 o.add("foo"); | 8803 o.add("foo"); |
| 8804 o.add("foo"); | 8804 o.add("foo"); |
| 8805 return o; | 8805 return o; |
| 8806 } | 8806 } |
| 8807 | 8807 |
| 8808 checkUnnamed1787(core.List<core.String> o) { | 8808 checkUnnamed2093(core.List<core.String> o) { |
| 8809 unittest.expect(o, unittest.hasLength(2)); | 8809 unittest.expect(o, unittest.hasLength(2)); |
| 8810 unittest.expect(o[0], unittest.equals('foo')); | 8810 unittest.expect(o[0], unittest.equals('foo')); |
| 8811 unittest.expect(o[1], unittest.equals('foo')); | 8811 unittest.expect(o[1], unittest.equals('foo')); |
| 8812 } | 8812 } |
| 8813 | 8813 |
| 8814 buildUnnamed1788() { | 8814 buildUnnamed2094() { |
| 8815 var o = new core.List<core.String>(); | 8815 var o = new core.List<core.String>(); |
| 8816 o.add("foo"); | 8816 o.add("foo"); |
| 8817 o.add("foo"); | 8817 o.add("foo"); |
| 8818 return o; | 8818 return o; |
| 8819 } | 8819 } |
| 8820 | 8820 |
| 8821 checkUnnamed1788(core.List<core.String> o) { | 8821 checkUnnamed2094(core.List<core.String> o) { |
| 8822 unittest.expect(o, unittest.hasLength(2)); | 8822 unittest.expect(o, unittest.hasLength(2)); |
| 8823 unittest.expect(o[0], unittest.equals('foo')); | 8823 unittest.expect(o[0], unittest.equals('foo')); |
| 8824 unittest.expect(o[1], unittest.equals('foo')); | 8824 unittest.expect(o[1], unittest.equals('foo')); |
| 8825 } | 8825 } |
| 8826 | 8826 |
| 8827 buildUnnamed1789() { | 8827 buildUnnamed2095() { |
| 8828 var o = new core.List<core.String>(); | 8828 var o = new core.List<core.String>(); |
| 8829 o.add("foo"); | 8829 o.add("foo"); |
| 8830 o.add("foo"); | 8830 o.add("foo"); |
| 8831 return o; | 8831 return o; |
| 8832 } | 8832 } |
| 8833 | 8833 |
| 8834 checkUnnamed1789(core.List<core.String> o) { | 8834 checkUnnamed2095(core.List<core.String> o) { |
| 8835 unittest.expect(o, unittest.hasLength(2)); | 8835 unittest.expect(o, unittest.hasLength(2)); |
| 8836 unittest.expect(o[0], unittest.equals('foo')); | 8836 unittest.expect(o[0], unittest.equals('foo')); |
| 8837 unittest.expect(o[1], unittest.equals('foo')); | 8837 unittest.expect(o[1], unittest.equals('foo')); |
| 8838 } | 8838 } |
| 8839 | 8839 |
| 8840 buildUnnamed1790() { | 8840 buildUnnamed2096() { |
| 8841 var o = new core.List<core.String>(); | 8841 var o = new core.List<core.String>(); |
| 8842 o.add("foo"); | 8842 o.add("foo"); |
| 8843 o.add("foo"); | 8843 o.add("foo"); |
| 8844 return o; | 8844 return o; |
| 8845 } | 8845 } |
| 8846 | 8846 |
| 8847 checkUnnamed1790(core.List<core.String> o) { | 8847 checkUnnamed2096(core.List<core.String> o) { |
| 8848 unittest.expect(o, unittest.hasLength(2)); | 8848 unittest.expect(o, unittest.hasLength(2)); |
| 8849 unittest.expect(o[0], unittest.equals('foo')); | 8849 unittest.expect(o[0], unittest.equals('foo')); |
| 8850 unittest.expect(o[1], unittest.equals('foo')); | 8850 unittest.expect(o[1], unittest.equals('foo')); |
| 8851 } | 8851 } |
| 8852 | 8852 |
| 8853 buildUnnamed1791() { | 8853 buildUnnamed2097() { |
| 8854 var o = new core.List<core.String>(); | 8854 var o = new core.List<core.String>(); |
| 8855 o.add("foo"); | 8855 o.add("foo"); |
| 8856 o.add("foo"); | 8856 o.add("foo"); |
| 8857 return o; | 8857 return o; |
| 8858 } | 8858 } |
| 8859 | 8859 |
| 8860 checkUnnamed1791(core.List<core.String> o) { | 8860 checkUnnamed2097(core.List<core.String> o) { |
| 8861 unittest.expect(o, unittest.hasLength(2)); | 8861 unittest.expect(o, unittest.hasLength(2)); |
| 8862 unittest.expect(o[0], unittest.equals('foo')); | 8862 unittest.expect(o[0], unittest.equals('foo')); |
| 8863 unittest.expect(o[1], unittest.equals('foo')); | 8863 unittest.expect(o[1], unittest.equals('foo')); |
| 8864 } | 8864 } |
| 8865 | 8865 |
| 8866 buildUnnamed1792() { | 8866 buildUnnamed2098() { |
| 8867 var o = new core.List<core.String>(); | 8867 var o = new core.List<core.String>(); |
| 8868 o.add("foo"); | 8868 o.add("foo"); |
| 8869 o.add("foo"); | 8869 o.add("foo"); |
| 8870 return o; | 8870 return o; |
| 8871 } | 8871 } |
| 8872 | 8872 |
| 8873 checkUnnamed1792(core.List<core.String> o) { | 8873 checkUnnamed2098(core.List<core.String> o) { |
| 8874 unittest.expect(o, unittest.hasLength(2)); | 8874 unittest.expect(o, unittest.hasLength(2)); |
| 8875 unittest.expect(o[0], unittest.equals('foo')); | 8875 unittest.expect(o[0], unittest.equals('foo')); |
| 8876 unittest.expect(o[1], unittest.equals('foo')); | 8876 unittest.expect(o[1], unittest.equals('foo')); |
| 8877 } | 8877 } |
| 8878 | 8878 |
| 8879 buildUnnamed1793() { | 8879 buildUnnamed2099() { |
| 8880 var o = new core.List<core.String>(); | 8880 var o = new core.List<core.String>(); |
| 8881 o.add("foo"); | 8881 o.add("foo"); |
| 8882 o.add("foo"); | 8882 o.add("foo"); |
| 8883 return o; | 8883 return o; |
| 8884 } | 8884 } |
| 8885 | 8885 |
| 8886 checkUnnamed1793(core.List<core.String> o) { | 8886 checkUnnamed2099(core.List<core.String> o) { |
| 8887 unittest.expect(o, unittest.hasLength(2)); | 8887 unittest.expect(o, unittest.hasLength(2)); |
| 8888 unittest.expect(o[0], unittest.equals('foo')); | 8888 unittest.expect(o[0], unittest.equals('foo')); |
| 8889 unittest.expect(o[1], unittest.equals('foo')); | 8889 unittest.expect(o[1], unittest.equals('foo')); |
| 8890 } | 8890 } |
| 8891 | 8891 |
| 8892 buildUnnamed1794() { | 8892 buildUnnamed2100() { |
| 8893 var o = new core.List<core.String>(); | 8893 var o = new core.List<core.String>(); |
| 8894 o.add("foo"); | 8894 o.add("foo"); |
| 8895 o.add("foo"); | 8895 o.add("foo"); |
| 8896 return o; | 8896 return o; |
| 8897 } | 8897 } |
| 8898 | 8898 |
| 8899 checkUnnamed1794(core.List<core.String> o) { | 8899 checkUnnamed2100(core.List<core.String> o) { |
| 8900 unittest.expect(o, unittest.hasLength(2)); | 8900 unittest.expect(o, unittest.hasLength(2)); |
| 8901 unittest.expect(o[0], unittest.equals('foo')); | 8901 unittest.expect(o[0], unittest.equals('foo')); |
| 8902 unittest.expect(o[1], unittest.equals('foo')); | 8902 unittest.expect(o[1], unittest.equals('foo')); |
| 8903 } | 8903 } |
| 8904 | 8904 |
| 8905 buildUnnamed1795() { | 8905 buildUnnamed2101() { |
| 8906 var o = new core.List<core.String>(); | 8906 var o = new core.List<core.String>(); |
| 8907 o.add("foo"); | 8907 o.add("foo"); |
| 8908 o.add("foo"); | 8908 o.add("foo"); |
| 8909 return o; | 8909 return o; |
| 8910 } | 8910 } |
| 8911 | 8911 |
| 8912 checkUnnamed1795(core.List<core.String> o) { | 8912 checkUnnamed2101(core.List<core.String> o) { |
| 8913 unittest.expect(o, unittest.hasLength(2)); | 8913 unittest.expect(o, unittest.hasLength(2)); |
| 8914 unittest.expect(o[0], unittest.equals('foo')); | 8914 unittest.expect(o[0], unittest.equals('foo')); |
| 8915 unittest.expect(o[1], unittest.equals('foo')); | 8915 unittest.expect(o[1], unittest.equals('foo')); |
| 8916 } | 8916 } |
| 8917 | 8917 |
| 8918 buildUnnamed1796() { | 8918 buildUnnamed2102() { |
| 8919 var o = new core.List<core.String>(); | 8919 var o = new core.List<core.String>(); |
| 8920 o.add("foo"); | 8920 o.add("foo"); |
| 8921 o.add("foo"); | 8921 o.add("foo"); |
| 8922 return o; | 8922 return o; |
| 8923 } | 8923 } |
| 8924 | 8924 |
| 8925 checkUnnamed1796(core.List<core.String> o) { | 8925 checkUnnamed2102(core.List<core.String> o) { |
| 8926 unittest.expect(o, unittest.hasLength(2)); | 8926 unittest.expect(o, unittest.hasLength(2)); |
| 8927 unittest.expect(o[0], unittest.equals('foo')); | 8927 unittest.expect(o[0], unittest.equals('foo')); |
| 8928 unittest.expect(o[1], unittest.equals('foo')); | 8928 unittest.expect(o[1], unittest.equals('foo')); |
| 8929 } | 8929 } |
| 8930 | 8930 |
| 8931 buildUnnamed1797() { | 8931 buildUnnamed2103() { |
| 8932 var o = new core.List<core.String>(); | 8932 var o = new core.List<core.String>(); |
| 8933 o.add("foo"); | 8933 o.add("foo"); |
| 8934 o.add("foo"); | 8934 o.add("foo"); |
| 8935 return o; | 8935 return o; |
| 8936 } | 8936 } |
| 8937 | 8937 |
| 8938 checkUnnamed1797(core.List<core.String> o) { | 8938 checkUnnamed2103(core.List<core.String> o) { |
| 8939 unittest.expect(o, unittest.hasLength(2)); | 8939 unittest.expect(o, unittest.hasLength(2)); |
| 8940 unittest.expect(o[0], unittest.equals('foo')); | 8940 unittest.expect(o[0], unittest.equals('foo')); |
| 8941 unittest.expect(o[1], unittest.equals('foo')); | 8941 unittest.expect(o[1], unittest.equals('foo')); |
| 8942 } | 8942 } |
| 8943 | 8943 |
| 8944 buildUnnamed1798() { | 8944 buildUnnamed2104() { |
| 8945 var o = new core.List<core.String>(); | 8945 var o = new core.List<core.String>(); |
| 8946 o.add("foo"); | 8946 o.add("foo"); |
| 8947 o.add("foo"); | 8947 o.add("foo"); |
| 8948 return o; | 8948 return o; |
| 8949 } | 8949 } |
| 8950 | 8950 |
| 8951 checkUnnamed1798(core.List<core.String> o) { | 8951 checkUnnamed2104(core.List<core.String> o) { |
| 8952 unittest.expect(o, unittest.hasLength(2)); | 8952 unittest.expect(o, unittest.hasLength(2)); |
| 8953 unittest.expect(o[0], unittest.equals('foo')); | 8953 unittest.expect(o[0], unittest.equals('foo')); |
| 8954 unittest.expect(o[1], unittest.equals('foo')); | 8954 unittest.expect(o[1], unittest.equals('foo')); |
| 8955 } | 8955 } |
| 8956 | 8956 |
| 8957 buildUnnamed1799() { | 8957 buildUnnamed2105() { |
| 8958 var o = new core.List<core.String>(); | 8958 var o = new core.List<core.String>(); |
| 8959 o.add("foo"); | 8959 o.add("foo"); |
| 8960 o.add("foo"); | 8960 o.add("foo"); |
| 8961 return o; | 8961 return o; |
| 8962 } | 8962 } |
| 8963 | 8963 |
| 8964 checkUnnamed1799(core.List<core.String> o) { | 8964 checkUnnamed2105(core.List<core.String> o) { |
| 8965 unittest.expect(o, unittest.hasLength(2)); | 8965 unittest.expect(o, unittest.hasLength(2)); |
| 8966 unittest.expect(o[0], unittest.equals('foo')); | 8966 unittest.expect(o[0], unittest.equals('foo')); |
| 8967 unittest.expect(o[1], unittest.equals('foo')); | 8967 unittest.expect(o[1], unittest.equals('foo')); |
| 8968 } | 8968 } |
| 8969 | 8969 |
| 8970 buildUnnamed1800() { | 8970 buildUnnamed2106() { |
| 8971 var o = new core.List<core.String>(); | 8971 var o = new core.List<core.String>(); |
| 8972 o.add("foo"); | 8972 o.add("foo"); |
| 8973 o.add("foo"); | 8973 o.add("foo"); |
| 8974 return o; | 8974 return o; |
| 8975 } | 8975 } |
| 8976 | 8976 |
| 8977 checkUnnamed1800(core.List<core.String> o) { | 8977 checkUnnamed2106(core.List<core.String> o) { |
| 8978 unittest.expect(o, unittest.hasLength(2)); | 8978 unittest.expect(o, unittest.hasLength(2)); |
| 8979 unittest.expect(o[0], unittest.equals('foo')); | 8979 unittest.expect(o[0], unittest.equals('foo')); |
| 8980 unittest.expect(o[1], unittest.equals('foo')); | 8980 unittest.expect(o[1], unittest.equals('foo')); |
| 8981 } | 8981 } |
| 8982 | 8982 |
| 8983 buildUnnamed1801() { | 8983 buildUnnamed2107() { |
| 8984 var o = new core.List<core.String>(); | 8984 var o = new core.List<core.String>(); |
| 8985 o.add("foo"); | 8985 o.add("foo"); |
| 8986 o.add("foo"); | 8986 o.add("foo"); |
| 8987 return o; | 8987 return o; |
| 8988 } | 8988 } |
| 8989 | 8989 |
| 8990 checkUnnamed1801(core.List<core.String> o) { | 8990 checkUnnamed2107(core.List<core.String> o) { |
| 8991 unittest.expect(o, unittest.hasLength(2)); | 8991 unittest.expect(o, unittest.hasLength(2)); |
| 8992 unittest.expect(o[0], unittest.equals('foo')); | 8992 unittest.expect(o[0], unittest.equals('foo')); |
| 8993 unittest.expect(o[1], unittest.equals('foo')); | 8993 unittest.expect(o[1], unittest.equals('foo')); |
| 8994 } | 8994 } |
| 8995 | 8995 |
| 8996 buildUnnamed1802() { | 8996 buildUnnamed2108() { |
| 8997 var o = new core.List<core.String>(); | 8997 var o = new core.List<core.String>(); |
| 8998 o.add("foo"); | 8998 o.add("foo"); |
| 8999 o.add("foo"); | 8999 o.add("foo"); |
| 9000 return o; | 9000 return o; |
| 9001 } | 9001 } |
| 9002 | 9002 |
| 9003 checkUnnamed1802(core.List<core.String> o) { | 9003 checkUnnamed2108(core.List<core.String> o) { |
| 9004 unittest.expect(o, unittest.hasLength(2)); | 9004 unittest.expect(o, unittest.hasLength(2)); |
| 9005 unittest.expect(o[0], unittest.equals('foo')); | 9005 unittest.expect(o[0], unittest.equals('foo')); |
| 9006 unittest.expect(o[1], unittest.equals('foo')); | 9006 unittest.expect(o[1], unittest.equals('foo')); |
| 9007 } | 9007 } |
| 9008 | 9008 |
| 9009 buildUnnamed1803() { | 9009 buildUnnamed2109() { |
| 9010 var o = new core.List<core.String>(); | 9010 var o = new core.List<core.String>(); |
| 9011 o.add("foo"); | 9011 o.add("foo"); |
| 9012 o.add("foo"); | 9012 o.add("foo"); |
| 9013 return o; | 9013 return o; |
| 9014 } | 9014 } |
| 9015 | 9015 |
| 9016 checkUnnamed1803(core.List<core.String> o) { | 9016 checkUnnamed2109(core.List<core.String> o) { |
| 9017 unittest.expect(o, unittest.hasLength(2)); | 9017 unittest.expect(o, unittest.hasLength(2)); |
| 9018 unittest.expect(o[0], unittest.equals('foo')); | 9018 unittest.expect(o[0], unittest.equals('foo')); |
| 9019 unittest.expect(o[1], unittest.equals('foo')); | 9019 unittest.expect(o[1], unittest.equals('foo')); |
| 9020 } | 9020 } |
| 9021 | 9021 |
| 9022 buildUnnamed1804() { | 9022 buildUnnamed2110() { |
| 9023 var o = new core.List<core.String>(); | 9023 var o = new core.List<core.String>(); |
| 9024 o.add("foo"); | 9024 o.add("foo"); |
| 9025 o.add("foo"); | 9025 o.add("foo"); |
| 9026 return o; | 9026 return o; |
| 9027 } | 9027 } |
| 9028 | 9028 |
| 9029 checkUnnamed1804(core.List<core.String> o) { | 9029 checkUnnamed2110(core.List<core.String> o) { |
| 9030 unittest.expect(o, unittest.hasLength(2)); | 9030 unittest.expect(o, unittest.hasLength(2)); |
| 9031 unittest.expect(o[0], unittest.equals('foo')); | 9031 unittest.expect(o[0], unittest.equals('foo')); |
| 9032 unittest.expect(o[1], unittest.equals('foo')); | 9032 unittest.expect(o[1], unittest.equals('foo')); |
| 9033 } | 9033 } |
| 9034 | 9034 |
| 9035 buildUnnamed1805() { | 9035 buildUnnamed2111() { |
| 9036 var o = new core.List<core.String>(); | 9036 var o = new core.List<core.String>(); |
| 9037 o.add("foo"); | 9037 o.add("foo"); |
| 9038 o.add("foo"); | 9038 o.add("foo"); |
| 9039 return o; | 9039 return o; |
| 9040 } | 9040 } |
| 9041 | 9041 |
| 9042 checkUnnamed1805(core.List<core.String> o) { | 9042 checkUnnamed2111(core.List<core.String> o) { |
| 9043 unittest.expect(o, unittest.hasLength(2)); | 9043 unittest.expect(o, unittest.hasLength(2)); |
| 9044 unittest.expect(o[0], unittest.equals('foo')); | 9044 unittest.expect(o[0], unittest.equals('foo')); |
| 9045 unittest.expect(o[1], unittest.equals('foo')); | 9045 unittest.expect(o[1], unittest.equals('foo')); |
| 9046 } | 9046 } |
| 9047 | 9047 |
| 9048 buildUnnamed1806() { | 9048 buildUnnamed2112() { |
| 9049 var o = new core.List<core.String>(); | 9049 var o = new core.List<core.String>(); |
| 9050 o.add("foo"); | 9050 o.add("foo"); |
| 9051 o.add("foo"); | 9051 o.add("foo"); |
| 9052 return o; | 9052 return o; |
| 9053 } | 9053 } |
| 9054 | 9054 |
| 9055 checkUnnamed1806(core.List<core.String> o) { | 9055 checkUnnamed2112(core.List<core.String> o) { |
| 9056 unittest.expect(o, unittest.hasLength(2)); | 9056 unittest.expect(o, unittest.hasLength(2)); |
| 9057 unittest.expect(o[0], unittest.equals('foo')); | 9057 unittest.expect(o[0], unittest.equals('foo')); |
| 9058 unittest.expect(o[1], unittest.equals('foo')); | 9058 unittest.expect(o[1], unittest.equals('foo')); |
| 9059 } | 9059 } |
| 9060 | 9060 |
| 9061 buildUnnamed1807() { | 9061 buildUnnamed2113() { |
| 9062 var o = new core.List<core.String>(); | 9062 var o = new core.List<core.String>(); |
| 9063 o.add("foo"); | 9063 o.add("foo"); |
| 9064 o.add("foo"); | 9064 o.add("foo"); |
| 9065 return o; | 9065 return o; |
| 9066 } | 9066 } |
| 9067 | 9067 |
| 9068 checkUnnamed1807(core.List<core.String> o) { | 9068 checkUnnamed2113(core.List<core.String> o) { |
| 9069 unittest.expect(o, unittest.hasLength(2)); | 9069 unittest.expect(o, unittest.hasLength(2)); |
| 9070 unittest.expect(o[0], unittest.equals('foo')); | 9070 unittest.expect(o[0], unittest.equals('foo')); |
| 9071 unittest.expect(o[1], unittest.equals('foo')); | 9071 unittest.expect(o[1], unittest.equals('foo')); |
| 9072 } | 9072 } |
| 9073 | 9073 |
| 9074 buildUnnamed1808() { | 9074 buildUnnamed2114() { |
| 9075 var o = new core.List<core.String>(); | 9075 var o = new core.List<core.String>(); |
| 9076 o.add("foo"); | 9076 o.add("foo"); |
| 9077 o.add("foo"); | 9077 o.add("foo"); |
| 9078 return o; | 9078 return o; |
| 9079 } | 9079 } |
| 9080 | 9080 |
| 9081 checkUnnamed1808(core.List<core.String> o) { | 9081 checkUnnamed2114(core.List<core.String> o) { |
| 9082 unittest.expect(o, unittest.hasLength(2)); | 9082 unittest.expect(o, unittest.hasLength(2)); |
| 9083 unittest.expect(o[0], unittest.equals('foo')); | 9083 unittest.expect(o[0], unittest.equals('foo')); |
| 9084 unittest.expect(o[1], unittest.equals('foo')); | 9084 unittest.expect(o[1], unittest.equals('foo')); |
| 9085 } | 9085 } |
| 9086 | 9086 |
| 9087 buildUnnamed1809() { | 9087 buildUnnamed2115() { |
| 9088 var o = new core.List<core.String>(); | 9088 var o = new core.List<core.String>(); |
| 9089 o.add("foo"); | 9089 o.add("foo"); |
| 9090 o.add("foo"); | 9090 o.add("foo"); |
| 9091 return o; | 9091 return o; |
| 9092 } | 9092 } |
| 9093 | 9093 |
| 9094 checkUnnamed1809(core.List<core.String> o) { | 9094 checkUnnamed2115(core.List<core.String> o) { |
| 9095 unittest.expect(o, unittest.hasLength(2)); | 9095 unittest.expect(o, unittest.hasLength(2)); |
| 9096 unittest.expect(o[0], unittest.equals('foo')); | 9096 unittest.expect(o[0], unittest.equals('foo')); |
| 9097 unittest.expect(o[1], unittest.equals('foo')); | 9097 unittest.expect(o[1], unittest.equals('foo')); |
| 9098 } | 9098 } |
| 9099 | 9099 |
| 9100 buildUnnamed1810() { | 9100 buildUnnamed2116() { |
| 9101 var o = new core.List<core.String>(); | 9101 var o = new core.List<core.String>(); |
| 9102 o.add("foo"); | 9102 o.add("foo"); |
| 9103 o.add("foo"); | 9103 o.add("foo"); |
| 9104 return o; | 9104 return o; |
| 9105 } | 9105 } |
| 9106 | 9106 |
| 9107 checkUnnamed1810(core.List<core.String> o) { | 9107 checkUnnamed2116(core.List<core.String> o) { |
| 9108 unittest.expect(o, unittest.hasLength(2)); | 9108 unittest.expect(o, unittest.hasLength(2)); |
| 9109 unittest.expect(o[0], unittest.equals('foo')); | 9109 unittest.expect(o[0], unittest.equals('foo')); |
| 9110 unittest.expect(o[1], unittest.equals('foo')); | 9110 unittest.expect(o[1], unittest.equals('foo')); |
| 9111 } | 9111 } |
| 9112 | 9112 |
| 9113 | 9113 |
| 9114 main() { | 9114 main() { |
| 9115 unittest.group("obj-schema-Account", () { | 9115 unittest.group("obj-schema-Account", () { |
| 9116 unittest.test("to-json--from-json", () { | 9116 unittest.test("to-json--from-json", () { |
| 9117 var o = buildAccount(); | 9117 var o = buildAccount(); |
| 9118 var od = new api.Account.fromJson(o.toJson()); | 9118 var od = new api.Account.fromJson(o.toJson()); |
| 9119 checkAccount(od); | 9119 checkAccount(od); |
| 9120 }); | 9120 }); |
| (...skipping 2131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11252 checkAccountUserProfile(response); | 11252 checkAccountUserProfile(response); |
| 11253 }))); | 11253 }))); |
| 11254 }); | 11254 }); |
| 11255 | 11255 |
| 11256 unittest.test("method--list", () { | 11256 unittest.test("method--list", () { |
| 11257 | 11257 |
| 11258 var mock = new HttpServerMock(); | 11258 var mock = new HttpServerMock(); |
| 11259 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; | 11259 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; |
| 11260 var arg_profileId = "foo"; | 11260 var arg_profileId = "foo"; |
| 11261 var arg_active = true; | 11261 var arg_active = true; |
| 11262 var arg_ids = buildUnnamed1725(); | 11262 var arg_ids = buildUnnamed2031(); |
| 11263 var arg_maxResults = 42; | 11263 var arg_maxResults = 42; |
| 11264 var arg_pageToken = "foo"; | 11264 var arg_pageToken = "foo"; |
| 11265 var arg_searchString = "foo"; | 11265 var arg_searchString = "foo"; |
| 11266 var arg_sortField = "foo"; | 11266 var arg_sortField = "foo"; |
| 11267 var arg_sortOrder = "foo"; | 11267 var arg_sortOrder = "foo"; |
| 11268 var arg_subaccountId = "foo"; | 11268 var arg_subaccountId = "foo"; |
| 11269 var arg_userRoleId = "foo"; | 11269 var arg_userRoleId = "foo"; |
| 11270 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11270 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11271 var path = (req.url).path; | 11271 var path = (req.url).path; |
| 11272 var pathOffset = 0; | 11272 var pathOffset = 0; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11500 checkAccount(response); | 11500 checkAccount(response); |
| 11501 }))); | 11501 }))); |
| 11502 }); | 11502 }); |
| 11503 | 11503 |
| 11504 unittest.test("method--list", () { | 11504 unittest.test("method--list", () { |
| 11505 | 11505 |
| 11506 var mock = new HttpServerMock(); | 11506 var mock = new HttpServerMock(); |
| 11507 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; | 11507 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; |
| 11508 var arg_profileId = "foo"; | 11508 var arg_profileId = "foo"; |
| 11509 var arg_active = true; | 11509 var arg_active = true; |
| 11510 var arg_ids = buildUnnamed1726(); | 11510 var arg_ids = buildUnnamed2032(); |
| 11511 var arg_maxResults = 42; | 11511 var arg_maxResults = 42; |
| 11512 var arg_pageToken = "foo"; | 11512 var arg_pageToken = "foo"; |
| 11513 var arg_searchString = "foo"; | 11513 var arg_searchString = "foo"; |
| 11514 var arg_sortField = "foo"; | 11514 var arg_sortField = "foo"; |
| 11515 var arg_sortOrder = "foo"; | 11515 var arg_sortOrder = "foo"; |
| 11516 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11516 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11517 var path = (req.url).path; | 11517 var path = (req.url).path; |
| 11518 var pathOffset = 0; | 11518 var pathOffset = 0; |
| 11519 var index; | 11519 var index; |
| 11520 var subPart; | 11520 var subPart; |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11803 }); | 11803 }); |
| 11804 | 11804 |
| 11805 unittest.test("method--list", () { | 11805 unittest.test("method--list", () { |
| 11806 | 11806 |
| 11807 var mock = new HttpServerMock(); | 11807 var mock = new HttpServerMock(); |
| 11808 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; | 11808 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; |
| 11809 var arg_profileId = "foo"; | 11809 var arg_profileId = "foo"; |
| 11810 var arg_active = true; | 11810 var arg_active = true; |
| 11811 var arg_advertiserId = "foo"; | 11811 var arg_advertiserId = "foo"; |
| 11812 var arg_archived = true; | 11812 var arg_archived = true; |
| 11813 var arg_audienceSegmentIds = buildUnnamed1727(); | 11813 var arg_audienceSegmentIds = buildUnnamed2033(); |
| 11814 var arg_campaignIds = buildUnnamed1728(); | 11814 var arg_campaignIds = buildUnnamed2034(); |
| 11815 var arg_compatibility = "foo"; | 11815 var arg_compatibility = "foo"; |
| 11816 var arg_creativeIds = buildUnnamed1729(); | 11816 var arg_creativeIds = buildUnnamed2035(); |
| 11817 var arg_creativeOptimizationConfigurationIds = buildUnnamed1730(); | 11817 var arg_creativeOptimizationConfigurationIds = buildUnnamed2036(); |
| 11818 var arg_creativeType = "foo"; | 11818 var arg_creativeType = "foo"; |
| 11819 var arg_dynamicClickTracker = true; | 11819 var arg_dynamicClickTracker = true; |
| 11820 var arg_ids = buildUnnamed1731(); | 11820 var arg_ids = buildUnnamed2037(); |
| 11821 var arg_landingPageIds = buildUnnamed1732(); | 11821 var arg_landingPageIds = buildUnnamed2038(); |
| 11822 var arg_maxResults = 42; | 11822 var arg_maxResults = 42; |
| 11823 var arg_overriddenEventTagId = "foo"; | 11823 var arg_overriddenEventTagId = "foo"; |
| 11824 var arg_pageToken = "foo"; | 11824 var arg_pageToken = "foo"; |
| 11825 var arg_placementIds = buildUnnamed1733(); | 11825 var arg_placementIds = buildUnnamed2039(); |
| 11826 var arg_remarketingListIds = buildUnnamed1734(); | 11826 var arg_remarketingListIds = buildUnnamed2040(); |
| 11827 var arg_searchString = "foo"; | 11827 var arg_searchString = "foo"; |
| 11828 var arg_sizeIds = buildUnnamed1735(); | 11828 var arg_sizeIds = buildUnnamed2041(); |
| 11829 var arg_sortField = "foo"; | 11829 var arg_sortField = "foo"; |
| 11830 var arg_sortOrder = "foo"; | 11830 var arg_sortOrder = "foo"; |
| 11831 var arg_sslCompliant = true; | 11831 var arg_sslCompliant = true; |
| 11832 var arg_sslRequired = true; | 11832 var arg_sslRequired = true; |
| 11833 var arg_type = buildUnnamed1736(); | 11833 var arg_type = buildUnnamed2042(); |
| 11834 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11834 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11835 var path = (req.url).path; | 11835 var path = (req.url).path; |
| 11836 var pathOffset = 0; | 11836 var pathOffset = 0; |
| 11837 var index; | 11837 var index; |
| 11838 var subPart; | 11838 var subPart; |
| 11839 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 11839 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 11840 pathOffset += 1; | 11840 pathOffset += 1; |
| 11841 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 11841 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| 11842 pathOffset += 18; | 11842 pathOffset += 18; |
| 11843 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 11843 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12190 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { | 12190 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { |
| 12191 checkAdvertiserGroup(response); | 12191 checkAdvertiserGroup(response); |
| 12192 }))); | 12192 }))); |
| 12193 }); | 12193 }); |
| 12194 | 12194 |
| 12195 unittest.test("method--list", () { | 12195 unittest.test("method--list", () { |
| 12196 | 12196 |
| 12197 var mock = new HttpServerMock(); | 12197 var mock = new HttpServerMock(); |
| 12198 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; | 12198 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; |
| 12199 var arg_profileId = "foo"; | 12199 var arg_profileId = "foo"; |
| 12200 var arg_ids = buildUnnamed1737(); | 12200 var arg_ids = buildUnnamed2043(); |
| 12201 var arg_maxResults = 42; | 12201 var arg_maxResults = 42; |
| 12202 var arg_pageToken = "foo"; | 12202 var arg_pageToken = "foo"; |
| 12203 var arg_searchString = "foo"; | 12203 var arg_searchString = "foo"; |
| 12204 var arg_sortField = "foo"; | 12204 var arg_sortField = "foo"; |
| 12205 var arg_sortOrder = "foo"; | 12205 var arg_sortOrder = "foo"; |
| 12206 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12206 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 12207 var path = (req.url).path; | 12207 var path = (req.url).path; |
| 12208 var pathOffset = 0; | 12208 var pathOffset = 0; |
| 12209 var index; | 12209 var index; |
| 12210 var subPart; | 12210 var subPart; |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12489 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { | 12489 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { |
| 12490 checkAdvertiser(response); | 12490 checkAdvertiser(response); |
| 12491 }))); | 12491 }))); |
| 12492 }); | 12492 }); |
| 12493 | 12493 |
| 12494 unittest.test("method--list", () { | 12494 unittest.test("method--list", () { |
| 12495 | 12495 |
| 12496 var mock = new HttpServerMock(); | 12496 var mock = new HttpServerMock(); |
| 12497 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; | 12497 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; |
| 12498 var arg_profileId = "foo"; | 12498 var arg_profileId = "foo"; |
| 12499 var arg_advertiserGroupIds = buildUnnamed1738(); | 12499 var arg_advertiserGroupIds = buildUnnamed2044(); |
| 12500 var arg_floodlightConfigurationIds = buildUnnamed1739(); | 12500 var arg_floodlightConfigurationIds = buildUnnamed2045(); |
| 12501 var arg_ids = buildUnnamed1740(); | 12501 var arg_ids = buildUnnamed2046(); |
| 12502 var arg_includeAdvertisersWithoutGroupsOnly = true; | 12502 var arg_includeAdvertisersWithoutGroupsOnly = true; |
| 12503 var arg_maxResults = 42; | 12503 var arg_maxResults = 42; |
| 12504 var arg_onlyParent = true; | 12504 var arg_onlyParent = true; |
| 12505 var arg_pageToken = "foo"; | 12505 var arg_pageToken = "foo"; |
| 12506 var arg_searchString = "foo"; | 12506 var arg_searchString = "foo"; |
| 12507 var arg_sortField = "foo"; | 12507 var arg_sortField = "foo"; |
| 12508 var arg_sortOrder = "foo"; | 12508 var arg_sortOrder = "foo"; |
| 12509 var arg_status = "foo"; | 12509 var arg_status = "foo"; |
| 12510 var arg_subaccountId = "foo"; | 12510 var arg_subaccountId = "foo"; |
| 12511 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12511 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12997 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { | 12997 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { |
| 12998 checkCampaign(response); | 12998 checkCampaign(response); |
| 12999 }))); | 12999 }))); |
| 13000 }); | 13000 }); |
| 13001 | 13001 |
| 13002 unittest.test("method--list", () { | 13002 unittest.test("method--list", () { |
| 13003 | 13003 |
| 13004 var mock = new HttpServerMock(); | 13004 var mock = new HttpServerMock(); |
| 13005 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; | 13005 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; |
| 13006 var arg_profileId = "foo"; | 13006 var arg_profileId = "foo"; |
| 13007 var arg_advertiserGroupIds = buildUnnamed1741(); | 13007 var arg_advertiserGroupIds = buildUnnamed2047(); |
| 13008 var arg_advertiserIds = buildUnnamed1742(); | 13008 var arg_advertiserIds = buildUnnamed2048(); |
| 13009 var arg_archived = true; | 13009 var arg_archived = true; |
| 13010 var arg_atLeastOneOptimizationActivity = true; | 13010 var arg_atLeastOneOptimizationActivity = true; |
| 13011 var arg_excludedIds = buildUnnamed1743(); | 13011 var arg_excludedIds = buildUnnamed2049(); |
| 13012 var arg_ids = buildUnnamed1744(); | 13012 var arg_ids = buildUnnamed2050(); |
| 13013 var arg_maxResults = 42; | 13013 var arg_maxResults = 42; |
| 13014 var arg_overriddenEventTagId = "foo"; | 13014 var arg_overriddenEventTagId = "foo"; |
| 13015 var arg_pageToken = "foo"; | 13015 var arg_pageToken = "foo"; |
| 13016 var arg_searchString = "foo"; | 13016 var arg_searchString = "foo"; |
| 13017 var arg_sortField = "foo"; | 13017 var arg_sortField = "foo"; |
| 13018 var arg_sortOrder = "foo"; | 13018 var arg_sortOrder = "foo"; |
| 13019 var arg_subaccountId = "foo"; | 13019 var arg_subaccountId = "foo"; |
| 13020 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13020 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13021 var path = (req.url).path; | 13021 var path = (req.url).path; |
| 13022 var pathOffset = 0; | 13022 var pathOffset = 0; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13254 checkChangeLog(response); | 13254 checkChangeLog(response); |
| 13255 }))); | 13255 }))); |
| 13256 }); | 13256 }); |
| 13257 | 13257 |
| 13258 unittest.test("method--list", () { | 13258 unittest.test("method--list", () { |
| 13259 | 13259 |
| 13260 var mock = new HttpServerMock(); | 13260 var mock = new HttpServerMock(); |
| 13261 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; | 13261 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; |
| 13262 var arg_profileId = "foo"; | 13262 var arg_profileId = "foo"; |
| 13263 var arg_action = "foo"; | 13263 var arg_action = "foo"; |
| 13264 var arg_ids = buildUnnamed1745(); | 13264 var arg_ids = buildUnnamed2051(); |
| 13265 var arg_maxChangeTime = "foo"; | 13265 var arg_maxChangeTime = "foo"; |
| 13266 var arg_maxResults = 42; | 13266 var arg_maxResults = 42; |
| 13267 var arg_minChangeTime = "foo"; | 13267 var arg_minChangeTime = "foo"; |
| 13268 var arg_objectIds = buildUnnamed1746(); | 13268 var arg_objectIds = buildUnnamed2052(); |
| 13269 var arg_objectType = "foo"; | 13269 var arg_objectType = "foo"; |
| 13270 var arg_pageToken = "foo"; | 13270 var arg_pageToken = "foo"; |
| 13271 var arg_searchString = "foo"; | 13271 var arg_searchString = "foo"; |
| 13272 var arg_userProfileIds = buildUnnamed1747(); | 13272 var arg_userProfileIds = buildUnnamed2053(); |
| 13273 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13273 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13274 var path = (req.url).path; | 13274 var path = (req.url).path; |
| 13275 var pathOffset = 0; | 13275 var pathOffset = 0; |
| 13276 var index; | 13276 var index; |
| 13277 var subPart; | 13277 var subPart; |
| 13278 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13278 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13279 pathOffset += 1; | 13279 pathOffset += 1; |
| 13280 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 13280 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| 13281 pathOffset += 18; | 13281 pathOffset += 18; |
| 13282 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13282 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13330 | 13330 |
| 13331 }); | 13331 }); |
| 13332 | 13332 |
| 13333 | 13333 |
| 13334 unittest.group("resource-CitiesResourceApi", () { | 13334 unittest.group("resource-CitiesResourceApi", () { |
| 13335 unittest.test("method--list", () { | 13335 unittest.test("method--list", () { |
| 13336 | 13336 |
| 13337 var mock = new HttpServerMock(); | 13337 var mock = new HttpServerMock(); |
| 13338 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; | 13338 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; |
| 13339 var arg_profileId = "foo"; | 13339 var arg_profileId = "foo"; |
| 13340 var arg_countryDartIds = buildUnnamed1748(); | 13340 var arg_countryDartIds = buildUnnamed2054(); |
| 13341 var arg_dartIds = buildUnnamed1749(); | 13341 var arg_dartIds = buildUnnamed2055(); |
| 13342 var arg_namePrefix = "foo"; | 13342 var arg_namePrefix = "foo"; |
| 13343 var arg_regionDartIds = buildUnnamed1750(); | 13343 var arg_regionDartIds = buildUnnamed2056(); |
| 13344 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13344 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13345 var path = (req.url).path; | 13345 var path = (req.url).path; |
| 13346 var pathOffset = 0; | 13346 var pathOffset = 0; |
| 13347 var index; | 13347 var index; |
| 13348 var subPart; | 13348 var subPart; |
| 13349 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13349 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13350 pathOffset += 1; | 13350 pathOffset += 1; |
| 13351 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 13351 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| 13352 pathOffset += 18; | 13352 pathOffset += 18; |
| 13353 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13353 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13678 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { | 13678 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { |
| 13679 checkContentCategory(response); | 13679 checkContentCategory(response); |
| 13680 }))); | 13680 }))); |
| 13681 }); | 13681 }); |
| 13682 | 13682 |
| 13683 unittest.test("method--list", () { | 13683 unittest.test("method--list", () { |
| 13684 | 13684 |
| 13685 var mock = new HttpServerMock(); | 13685 var mock = new HttpServerMock(); |
| 13686 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; | 13686 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; |
| 13687 var arg_profileId = "foo"; | 13687 var arg_profileId = "foo"; |
| 13688 var arg_ids = buildUnnamed1751(); | 13688 var arg_ids = buildUnnamed2057(); |
| 13689 var arg_maxResults = 42; | 13689 var arg_maxResults = 42; |
| 13690 var arg_pageToken = "foo"; | 13690 var arg_pageToken = "foo"; |
| 13691 var arg_searchString = "foo"; | 13691 var arg_searchString = "foo"; |
| 13692 var arg_sortField = "foo"; | 13692 var arg_sortField = "foo"; |
| 13693 var arg_sortOrder = "foo"; | 13693 var arg_sortOrder = "foo"; |
| 13694 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13694 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13695 var path = (req.url).path; | 13695 var path = (req.url).path; |
| 13696 var pathOffset = 0; | 13696 var pathOffset = 0; |
| 13697 var index; | 13697 var index; |
| 13698 var subPart; | 13698 var subPart; |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14242 checkCreativeFieldValue(response); | 14242 checkCreativeFieldValue(response); |
| 14243 }))); | 14243 }))); |
| 14244 }); | 14244 }); |
| 14245 | 14245 |
| 14246 unittest.test("method--list", () { | 14246 unittest.test("method--list", () { |
| 14247 | 14247 |
| 14248 var mock = new HttpServerMock(); | 14248 var mock = new HttpServerMock(); |
| 14249 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; | 14249 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; |
| 14250 var arg_profileId = "foo"; | 14250 var arg_profileId = "foo"; |
| 14251 var arg_creativeFieldId = "foo"; | 14251 var arg_creativeFieldId = "foo"; |
| 14252 var arg_ids = buildUnnamed1752(); | 14252 var arg_ids = buildUnnamed2058(); |
| 14253 var arg_maxResults = 42; | 14253 var arg_maxResults = 42; |
| 14254 var arg_pageToken = "foo"; | 14254 var arg_pageToken = "foo"; |
| 14255 var arg_searchString = "foo"; | 14255 var arg_searchString = "foo"; |
| 14256 var arg_sortField = "foo"; | 14256 var arg_sortField = "foo"; |
| 14257 var arg_sortOrder = "foo"; | 14257 var arg_sortOrder = "foo"; |
| 14258 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14258 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14259 var path = (req.url).path; | 14259 var path = (req.url).path; |
| 14260 var pathOffset = 0; | 14260 var pathOffset = 0; |
| 14261 var index; | 14261 var index; |
| 14262 var subPart; | 14262 var subPart; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14619 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { | 14619 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { |
| 14620 checkCreativeField(response); | 14620 checkCreativeField(response); |
| 14621 }))); | 14621 }))); |
| 14622 }); | 14622 }); |
| 14623 | 14623 |
| 14624 unittest.test("method--list", () { | 14624 unittest.test("method--list", () { |
| 14625 | 14625 |
| 14626 var mock = new HttpServerMock(); | 14626 var mock = new HttpServerMock(); |
| 14627 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; | 14627 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; |
| 14628 var arg_profileId = "foo"; | 14628 var arg_profileId = "foo"; |
| 14629 var arg_advertiserIds = buildUnnamed1753(); | 14629 var arg_advertiserIds = buildUnnamed2059(); |
| 14630 var arg_ids = buildUnnamed1754(); | 14630 var arg_ids = buildUnnamed2060(); |
| 14631 var arg_maxResults = 42; | 14631 var arg_maxResults = 42; |
| 14632 var arg_pageToken = "foo"; | 14632 var arg_pageToken = "foo"; |
| 14633 var arg_searchString = "foo"; | 14633 var arg_searchString = "foo"; |
| 14634 var arg_sortField = "foo"; | 14634 var arg_sortField = "foo"; |
| 14635 var arg_sortOrder = "foo"; | 14635 var arg_sortOrder = "foo"; |
| 14636 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14636 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14637 var path = (req.url).path; | 14637 var path = (req.url).path; |
| 14638 var pathOffset = 0; | 14638 var pathOffset = 0; |
| 14639 var index; | 14639 var index; |
| 14640 var subPart; | 14640 var subPart; |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14920 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { | 14920 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { |
| 14921 checkCreativeGroup(response); | 14921 checkCreativeGroup(response); |
| 14922 }))); | 14922 }))); |
| 14923 }); | 14923 }); |
| 14924 | 14924 |
| 14925 unittest.test("method--list", () { | 14925 unittest.test("method--list", () { |
| 14926 | 14926 |
| 14927 var mock = new HttpServerMock(); | 14927 var mock = new HttpServerMock(); |
| 14928 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; | 14928 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; |
| 14929 var arg_profileId = "foo"; | 14929 var arg_profileId = "foo"; |
| 14930 var arg_advertiserIds = buildUnnamed1755(); | 14930 var arg_advertiserIds = buildUnnamed2061(); |
| 14931 var arg_groupNumber = 42; | 14931 var arg_groupNumber = 42; |
| 14932 var arg_ids = buildUnnamed1756(); | 14932 var arg_ids = buildUnnamed2062(); |
| 14933 var arg_maxResults = 42; | 14933 var arg_maxResults = 42; |
| 14934 var arg_pageToken = "foo"; | 14934 var arg_pageToken = "foo"; |
| 14935 var arg_searchString = "foo"; | 14935 var arg_searchString = "foo"; |
| 14936 var arg_sortField = "foo"; | 14936 var arg_sortField = "foo"; |
| 14937 var arg_sortOrder = "foo"; | 14937 var arg_sortOrder = "foo"; |
| 14938 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14938 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14939 var path = (req.url).path; | 14939 var path = (req.url).path; |
| 14940 var pathOffset = 0; | 14940 var pathOffset = 0; |
| 14941 var index; | 14941 var index; |
| 14942 var subPart; | 14942 var subPart; |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15227 | 15227 |
| 15228 unittest.test("method--list", () { | 15228 unittest.test("method--list", () { |
| 15229 | 15229 |
| 15230 var mock = new HttpServerMock(); | 15230 var mock = new HttpServerMock(); |
| 15231 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; | 15231 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; |
| 15232 var arg_profileId = "foo"; | 15232 var arg_profileId = "foo"; |
| 15233 var arg_active = true; | 15233 var arg_active = true; |
| 15234 var arg_advertiserId = "foo"; | 15234 var arg_advertiserId = "foo"; |
| 15235 var arg_archived = true; | 15235 var arg_archived = true; |
| 15236 var arg_campaignId = "foo"; | 15236 var arg_campaignId = "foo"; |
| 15237 var arg_companionCreativeIds = buildUnnamed1757(); | 15237 var arg_companionCreativeIds = buildUnnamed2063(); |
| 15238 var arg_creativeFieldIds = buildUnnamed1758(); | 15238 var arg_creativeFieldIds = buildUnnamed2064(); |
| 15239 var arg_ids = buildUnnamed1759(); | 15239 var arg_ids = buildUnnamed2065(); |
| 15240 var arg_maxResults = 42; | 15240 var arg_maxResults = 42; |
| 15241 var arg_pageToken = "foo"; | 15241 var arg_pageToken = "foo"; |
| 15242 var arg_renderingIds = buildUnnamed1760(); | 15242 var arg_renderingIds = buildUnnamed2066(); |
| 15243 var arg_searchString = "foo"; | 15243 var arg_searchString = "foo"; |
| 15244 var arg_sizeIds = buildUnnamed1761(); | 15244 var arg_sizeIds = buildUnnamed2067(); |
| 15245 var arg_sortField = "foo"; | 15245 var arg_sortField = "foo"; |
| 15246 var arg_sortOrder = "foo"; | 15246 var arg_sortOrder = "foo"; |
| 15247 var arg_studioCreativeId = "foo"; | 15247 var arg_studioCreativeId = "foo"; |
| 15248 var arg_types = buildUnnamed1762(); | 15248 var arg_types = buildUnnamed2068(); |
| 15249 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15249 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15250 var path = (req.url).path; | 15250 var path = (req.url).path; |
| 15251 var pathOffset = 0; | 15251 var pathOffset = 0; |
| 15252 var index; | 15252 var index; |
| 15253 var subPart; | 15253 var subPart; |
| 15254 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 15254 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 15255 pathOffset += 1; | 15255 pathOffset += 1; |
| 15256 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 15256 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| 15257 pathOffset += 18; | 15257 pathOffset += 18; |
| 15258 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 15258 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15550 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { | 15550 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { |
| 15551 checkDirectorySiteContact(response); | 15551 checkDirectorySiteContact(response); |
| 15552 }))); | 15552 }))); |
| 15553 }); | 15553 }); |
| 15554 | 15554 |
| 15555 unittest.test("method--list", () { | 15555 unittest.test("method--list", () { |
| 15556 | 15556 |
| 15557 var mock = new HttpServerMock(); | 15557 var mock = new HttpServerMock(); |
| 15558 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; | 15558 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; |
| 15559 var arg_profileId = "foo"; | 15559 var arg_profileId = "foo"; |
| 15560 var arg_directorySiteIds = buildUnnamed1763(); | 15560 var arg_directorySiteIds = buildUnnamed2069(); |
| 15561 var arg_ids = buildUnnamed1764(); | 15561 var arg_ids = buildUnnamed2070(); |
| 15562 var arg_maxResults = 42; | 15562 var arg_maxResults = 42; |
| 15563 var arg_pageToken = "foo"; | 15563 var arg_pageToken = "foo"; |
| 15564 var arg_searchString = "foo"; | 15564 var arg_searchString = "foo"; |
| 15565 var arg_sortField = "foo"; | 15565 var arg_sortField = "foo"; |
| 15566 var arg_sortOrder = "foo"; | 15566 var arg_sortOrder = "foo"; |
| 15567 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15567 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15568 var path = (req.url).path; | 15568 var path = (req.url).path; |
| 15569 var pathOffset = 0; | 15569 var pathOffset = 0; |
| 15570 var index; | 15570 var index; |
| 15571 var subPart; | 15571 var subPart; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15741 | 15741 |
| 15742 var mock = new HttpServerMock(); | 15742 var mock = new HttpServerMock(); |
| 15743 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; | 15743 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; |
| 15744 var arg_profileId = "foo"; | 15744 var arg_profileId = "foo"; |
| 15745 var arg_acceptsInStreamVideoPlacements = true; | 15745 var arg_acceptsInStreamVideoPlacements = true; |
| 15746 var arg_acceptsInterstitialPlacements = true; | 15746 var arg_acceptsInterstitialPlacements = true; |
| 15747 var arg_acceptsPublisherPaidPlacements = true; | 15747 var arg_acceptsPublisherPaidPlacements = true; |
| 15748 var arg_active = true; | 15748 var arg_active = true; |
| 15749 var arg_countryId = "foo"; | 15749 var arg_countryId = "foo"; |
| 15750 var arg_dfpNetworkCode = "foo"; | 15750 var arg_dfpNetworkCode = "foo"; |
| 15751 var arg_ids = buildUnnamed1765(); | 15751 var arg_ids = buildUnnamed2071(); |
| 15752 var arg_maxResults = 42; | 15752 var arg_maxResults = 42; |
| 15753 var arg_pageToken = "foo"; | 15753 var arg_pageToken = "foo"; |
| 15754 var arg_parentId = "foo"; | 15754 var arg_parentId = "foo"; |
| 15755 var arg_searchString = "foo"; | 15755 var arg_searchString = "foo"; |
| 15756 var arg_sortField = "foo"; | 15756 var arg_sortField = "foo"; |
| 15757 var arg_sortOrder = "foo"; | 15757 var arg_sortOrder = "foo"; |
| 15758 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15758 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15759 var path = (req.url).path; | 15759 var path = (req.url).path; |
| 15760 var pathOffset = 0; | 15760 var pathOffset = 0; |
| 15761 var index; | 15761 var index; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15992 unittest.test("method--list", () { | 15992 unittest.test("method--list", () { |
| 15993 | 15993 |
| 15994 var mock = new HttpServerMock(); | 15994 var mock = new HttpServerMock(); |
| 15995 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; | 15995 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; |
| 15996 var arg_profileId = "foo"; | 15996 var arg_profileId = "foo"; |
| 15997 var arg_adId = "foo"; | 15997 var arg_adId = "foo"; |
| 15998 var arg_advertiserId = "foo"; | 15998 var arg_advertiserId = "foo"; |
| 15999 var arg_campaignId = "foo"; | 15999 var arg_campaignId = "foo"; |
| 16000 var arg_definitionsOnly = true; | 16000 var arg_definitionsOnly = true; |
| 16001 var arg_enabled = true; | 16001 var arg_enabled = true; |
| 16002 var arg_eventTagTypes = buildUnnamed1766(); | 16002 var arg_eventTagTypes = buildUnnamed2072(); |
| 16003 var arg_ids = buildUnnamed1767(); | 16003 var arg_ids = buildUnnamed2073(); |
| 16004 var arg_searchString = "foo"; | 16004 var arg_searchString = "foo"; |
| 16005 var arg_sortField = "foo"; | 16005 var arg_sortField = "foo"; |
| 16006 var arg_sortOrder = "foo"; | 16006 var arg_sortOrder = "foo"; |
| 16007 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16007 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16008 var path = (req.url).path; | 16008 var path = (req.url).path; |
| 16009 var pathOffset = 0; | 16009 var pathOffset = 0; |
| 16010 var index; | 16010 var index; |
| 16011 var subPart; | 16011 var subPart; |
| 16012 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16012 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 16013 pathOffset += 1; | 16013 pathOffset += 1; |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16531 checkFloodlightActivity(response); | 16531 checkFloodlightActivity(response); |
| 16532 }))); | 16532 }))); |
| 16533 }); | 16533 }); |
| 16534 | 16534 |
| 16535 unittest.test("method--list", () { | 16535 unittest.test("method--list", () { |
| 16536 | 16536 |
| 16537 var mock = new HttpServerMock(); | 16537 var mock = new HttpServerMock(); |
| 16538 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; | 16538 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; |
| 16539 var arg_profileId = "foo"; | 16539 var arg_profileId = "foo"; |
| 16540 var arg_advertiserId = "foo"; | 16540 var arg_advertiserId = "foo"; |
| 16541 var arg_floodlightActivityGroupIds = buildUnnamed1768(); | 16541 var arg_floodlightActivityGroupIds = buildUnnamed2074(); |
| 16542 var arg_floodlightActivityGroupName = "foo"; | 16542 var arg_floodlightActivityGroupName = "foo"; |
| 16543 var arg_floodlightActivityGroupTagString = "foo"; | 16543 var arg_floodlightActivityGroupTagString = "foo"; |
| 16544 var arg_floodlightActivityGroupType = "foo"; | 16544 var arg_floodlightActivityGroupType = "foo"; |
| 16545 var arg_floodlightConfigurationId = "foo"; | 16545 var arg_floodlightConfigurationId = "foo"; |
| 16546 var arg_ids = buildUnnamed1769(); | 16546 var arg_ids = buildUnnamed2075(); |
| 16547 var arg_maxResults = 42; | 16547 var arg_maxResults = 42; |
| 16548 var arg_pageToken = "foo"; | 16548 var arg_pageToken = "foo"; |
| 16549 var arg_searchString = "foo"; | 16549 var arg_searchString = "foo"; |
| 16550 var arg_sortField = "foo"; | 16550 var arg_sortField = "foo"; |
| 16551 var arg_sortOrder = "foo"; | 16551 var arg_sortOrder = "foo"; |
| 16552 var arg_tagString = "foo"; | 16552 var arg_tagString = "foo"; |
| 16553 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16553 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16554 var path = (req.url).path; | 16554 var path = (req.url).path; |
| 16555 var pathOffset = 0; | 16555 var pathOffset = 0; |
| 16556 var index; | 16556 var index; |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16845 }))); | 16845 }))); |
| 16846 }); | 16846 }); |
| 16847 | 16847 |
| 16848 unittest.test("method--list", () { | 16848 unittest.test("method--list", () { |
| 16849 | 16849 |
| 16850 var mock = new HttpServerMock(); | 16850 var mock = new HttpServerMock(); |
| 16851 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; | 16851 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; |
| 16852 var arg_profileId = "foo"; | 16852 var arg_profileId = "foo"; |
| 16853 var arg_advertiserId = "foo"; | 16853 var arg_advertiserId = "foo"; |
| 16854 var arg_floodlightConfigurationId = "foo"; | 16854 var arg_floodlightConfigurationId = "foo"; |
| 16855 var arg_ids = buildUnnamed1770(); | 16855 var arg_ids = buildUnnamed2076(); |
| 16856 var arg_maxResults = 42; | 16856 var arg_maxResults = 42; |
| 16857 var arg_pageToken = "foo"; | 16857 var arg_pageToken = "foo"; |
| 16858 var arg_searchString = "foo"; | 16858 var arg_searchString = "foo"; |
| 16859 var arg_sortField = "foo"; | 16859 var arg_sortField = "foo"; |
| 16860 var arg_sortOrder = "foo"; | 16860 var arg_sortOrder = "foo"; |
| 16861 var arg_type = "foo"; | 16861 var arg_type = "foo"; |
| 16862 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16862 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16863 var path = (req.url).path; | 16863 var path = (req.url).path; |
| 16864 var pathOffset = 0; | 16864 var pathOffset = 0; |
| 16865 var index; | 16865 var index; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17091 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { | 17091 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { |
| 17092 checkFloodlightConfiguration(response); | 17092 checkFloodlightConfiguration(response); |
| 17093 }))); | 17093 }))); |
| 17094 }); | 17094 }); |
| 17095 | 17095 |
| 17096 unittest.test("method--list", () { | 17096 unittest.test("method--list", () { |
| 17097 | 17097 |
| 17098 var mock = new HttpServerMock(); | 17098 var mock = new HttpServerMock(); |
| 17099 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; | 17099 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; |
| 17100 var arg_profileId = "foo"; | 17100 var arg_profileId = "foo"; |
| 17101 var arg_ids = buildUnnamed1771(); | 17101 var arg_ids = buildUnnamed2077(); |
| 17102 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17102 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17103 var path = (req.url).path; | 17103 var path = (req.url).path; |
| 17104 var pathOffset = 0; | 17104 var pathOffset = 0; |
| 17105 var index; | 17105 var index; |
| 17106 var subPart; | 17106 var subPart; |
| 17107 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17107 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17108 pathOffset += 1; | 17108 pathOffset += 1; |
| 17109 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 17109 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| 17110 pathOffset += 18; | 17110 pathOffset += 18; |
| 17111 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 17111 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17332 checkInventoryItem(response); | 17332 checkInventoryItem(response); |
| 17333 }))); | 17333 }))); |
| 17334 }); | 17334 }); |
| 17335 | 17335 |
| 17336 unittest.test("method--list", () { | 17336 unittest.test("method--list", () { |
| 17337 | 17337 |
| 17338 var mock = new HttpServerMock(); | 17338 var mock = new HttpServerMock(); |
| 17339 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; | 17339 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; |
| 17340 var arg_profileId = "foo"; | 17340 var arg_profileId = "foo"; |
| 17341 var arg_projectId = "foo"; | 17341 var arg_projectId = "foo"; |
| 17342 var arg_ids = buildUnnamed1772(); | 17342 var arg_ids = buildUnnamed2078(); |
| 17343 var arg_inPlan = true; | 17343 var arg_inPlan = true; |
| 17344 var arg_maxResults = 42; | 17344 var arg_maxResults = 42; |
| 17345 var arg_orderId = buildUnnamed1773(); | 17345 var arg_orderId = buildUnnamed2079(); |
| 17346 var arg_pageToken = "foo"; | 17346 var arg_pageToken = "foo"; |
| 17347 var arg_siteId = buildUnnamed1774(); | 17347 var arg_siteId = buildUnnamed2080(); |
| 17348 var arg_sortField = "foo"; | 17348 var arg_sortField = "foo"; |
| 17349 var arg_sortOrder = "foo"; | 17349 var arg_sortOrder = "foo"; |
| 17350 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17350 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17351 var path = (req.url).path; | 17351 var path = (req.url).path; |
| 17352 var pathOffset = 0; | 17352 var pathOffset = 0; |
| 17353 var index; | 17353 var index; |
| 17354 var subPart; | 17354 var subPart; |
| 17355 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17355 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17356 pathOffset += 1; | 17356 pathOffset += 1; |
| 17357 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 17357 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| (...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18268 }))); | 18268 }))); |
| 18269 }); | 18269 }); |
| 18270 | 18270 |
| 18271 unittest.test("method--list", () { | 18271 unittest.test("method--list", () { |
| 18272 | 18272 |
| 18273 var mock = new HttpServerMock(); | 18273 var mock = new HttpServerMock(); |
| 18274 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; | 18274 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; |
| 18275 var arg_profileId = "foo"; | 18275 var arg_profileId = "foo"; |
| 18276 var arg_projectId = "foo"; | 18276 var arg_projectId = "foo"; |
| 18277 var arg_approved = true; | 18277 var arg_approved = true; |
| 18278 var arg_ids = buildUnnamed1775(); | 18278 var arg_ids = buildUnnamed2081(); |
| 18279 var arg_maxResults = 42; | 18279 var arg_maxResults = 42; |
| 18280 var arg_orderId = buildUnnamed1776(); | 18280 var arg_orderId = buildUnnamed2082(); |
| 18281 var arg_pageToken = "foo"; | 18281 var arg_pageToken = "foo"; |
| 18282 var arg_searchString = "foo"; | 18282 var arg_searchString = "foo"; |
| 18283 var arg_siteId = buildUnnamed1777(); | 18283 var arg_siteId = buildUnnamed2083(); |
| 18284 var arg_sortField = "foo"; | 18284 var arg_sortField = "foo"; |
| 18285 var arg_sortOrder = "foo"; | 18285 var arg_sortOrder = "foo"; |
| 18286 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18286 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18287 var path = (req.url).path; | 18287 var path = (req.url).path; |
| 18288 var pathOffset = 0; | 18288 var pathOffset = 0; |
| 18289 var index; | 18289 var index; |
| 18290 var subPart; | 18290 var subPart; |
| 18291 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18291 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18292 pathOffset += 1; | 18292 pathOffset += 1; |
| 18293 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 18293 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18415 checkOrder(response); | 18415 checkOrder(response); |
| 18416 }))); | 18416 }))); |
| 18417 }); | 18417 }); |
| 18418 | 18418 |
| 18419 unittest.test("method--list", () { | 18419 unittest.test("method--list", () { |
| 18420 | 18420 |
| 18421 var mock = new HttpServerMock(); | 18421 var mock = new HttpServerMock(); |
| 18422 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; | 18422 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; |
| 18423 var arg_profileId = "foo"; | 18423 var arg_profileId = "foo"; |
| 18424 var arg_projectId = "foo"; | 18424 var arg_projectId = "foo"; |
| 18425 var arg_ids = buildUnnamed1778(); | 18425 var arg_ids = buildUnnamed2084(); |
| 18426 var arg_maxResults = 42; | 18426 var arg_maxResults = 42; |
| 18427 var arg_pageToken = "foo"; | 18427 var arg_pageToken = "foo"; |
| 18428 var arg_searchString = "foo"; | 18428 var arg_searchString = "foo"; |
| 18429 var arg_siteId = buildUnnamed1779(); | 18429 var arg_siteId = buildUnnamed2085(); |
| 18430 var arg_sortField = "foo"; | 18430 var arg_sortField = "foo"; |
| 18431 var arg_sortOrder = "foo"; | 18431 var arg_sortOrder = "foo"; |
| 18432 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18432 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18433 var path = (req.url).path; | 18433 var path = (req.url).path; |
| 18434 var pathOffset = 0; | 18434 var pathOffset = 0; |
| 18435 var index; | 18435 var index; |
| 18436 var subPart; | 18436 var subPart; |
| 18437 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18437 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18438 pathOffset += 1; | 18438 pathOffset += 1; |
| 18439 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 18439 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18607 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { | 18607 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { |
| 18608 checkPlacementGroup(response); | 18608 checkPlacementGroup(response); |
| 18609 }))); | 18609 }))); |
| 18610 }); | 18610 }); |
| 18611 | 18611 |
| 18612 unittest.test("method--list", () { | 18612 unittest.test("method--list", () { |
| 18613 | 18613 |
| 18614 var mock = new HttpServerMock(); | 18614 var mock = new HttpServerMock(); |
| 18615 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; | 18615 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; |
| 18616 var arg_profileId = "foo"; | 18616 var arg_profileId = "foo"; |
| 18617 var arg_advertiserIds = buildUnnamed1780(); | 18617 var arg_advertiserIds = buildUnnamed2086(); |
| 18618 var arg_archived = true; | 18618 var arg_archived = true; |
| 18619 var arg_campaignIds = buildUnnamed1781(); | 18619 var arg_campaignIds = buildUnnamed2087(); |
| 18620 var arg_contentCategoryIds = buildUnnamed1782(); | 18620 var arg_contentCategoryIds = buildUnnamed2088(); |
| 18621 var arg_directorySiteIds = buildUnnamed1783(); | 18621 var arg_directorySiteIds = buildUnnamed2089(); |
| 18622 var arg_ids = buildUnnamed1784(); | 18622 var arg_ids = buildUnnamed2090(); |
| 18623 var arg_maxEndDate = "foo"; | 18623 var arg_maxEndDate = "foo"; |
| 18624 var arg_maxResults = 42; | 18624 var arg_maxResults = 42; |
| 18625 var arg_maxStartDate = "foo"; | 18625 var arg_maxStartDate = "foo"; |
| 18626 var arg_minEndDate = "foo"; | 18626 var arg_minEndDate = "foo"; |
| 18627 var arg_minStartDate = "foo"; | 18627 var arg_minStartDate = "foo"; |
| 18628 var arg_pageToken = "foo"; | 18628 var arg_pageToken = "foo"; |
| 18629 var arg_placementGroupType = "foo"; | 18629 var arg_placementGroupType = "foo"; |
| 18630 var arg_placementStrategyIds = buildUnnamed1785(); | 18630 var arg_placementStrategyIds = buildUnnamed2091(); |
| 18631 var arg_pricingTypes = buildUnnamed1786(); | 18631 var arg_pricingTypes = buildUnnamed2092(); |
| 18632 var arg_searchString = "foo"; | 18632 var arg_searchString = "foo"; |
| 18633 var arg_siteIds = buildUnnamed1787(); | 18633 var arg_siteIds = buildUnnamed2093(); |
| 18634 var arg_sortField = "foo"; | 18634 var arg_sortField = "foo"; |
| 18635 var arg_sortOrder = "foo"; | 18635 var arg_sortOrder = "foo"; |
| 18636 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18636 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18637 var path = (req.url).path; | 18637 var path = (req.url).path; |
| 18638 var pathOffset = 0; | 18638 var pathOffset = 0; |
| 18639 var index; | 18639 var index; |
| 18640 var subPart; | 18640 var subPart; |
| 18641 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18641 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18642 pathOffset += 1; | 18642 pathOffset += 1; |
| 18643 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 18643 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18987 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { | 18987 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { |
| 18988 checkPlacementStrategy(response); | 18988 checkPlacementStrategy(response); |
| 18989 }))); | 18989 }))); |
| 18990 }); | 18990 }); |
| 18991 | 18991 |
| 18992 unittest.test("method--list", () { | 18992 unittest.test("method--list", () { |
| 18993 | 18993 |
| 18994 var mock = new HttpServerMock(); | 18994 var mock = new HttpServerMock(); |
| 18995 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; | 18995 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; |
| 18996 var arg_profileId = "foo"; | 18996 var arg_profileId = "foo"; |
| 18997 var arg_ids = buildUnnamed1788(); | 18997 var arg_ids = buildUnnamed2094(); |
| 18998 var arg_maxResults = 42; | 18998 var arg_maxResults = 42; |
| 18999 var arg_pageToken = "foo"; | 18999 var arg_pageToken = "foo"; |
| 19000 var arg_searchString = "foo"; | 19000 var arg_searchString = "foo"; |
| 19001 var arg_sortField = "foo"; | 19001 var arg_sortField = "foo"; |
| 19002 var arg_sortOrder = "foo"; | 19002 var arg_sortOrder = "foo"; |
| 19003 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19003 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19004 var path = (req.url).path; | 19004 var path = (req.url).path; |
| 19005 var pathOffset = 0; | 19005 var pathOffset = 0; |
| 19006 var index; | 19006 var index; |
| 19007 var subPart; | 19007 var subPart; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19173 }); | 19173 }); |
| 19174 | 19174 |
| 19175 | 19175 |
| 19176 unittest.group("resource-PlacementsResourceApi", () { | 19176 unittest.group("resource-PlacementsResourceApi", () { |
| 19177 unittest.test("method--generatetags", () { | 19177 unittest.test("method--generatetags", () { |
| 19178 | 19178 |
| 19179 var mock = new HttpServerMock(); | 19179 var mock = new HttpServerMock(); |
| 19180 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19180 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19181 var arg_profileId = "foo"; | 19181 var arg_profileId = "foo"; |
| 19182 var arg_campaignId = "foo"; | 19182 var arg_campaignId = "foo"; |
| 19183 var arg_placementIds = buildUnnamed1789(); | 19183 var arg_placementIds = buildUnnamed2095(); |
| 19184 var arg_tagFormats = buildUnnamed1790(); | 19184 var arg_tagFormats = buildUnnamed2096(); |
| 19185 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19185 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19186 var path = (req.url).path; | 19186 var path = (req.url).path; |
| 19187 var pathOffset = 0; | 19187 var pathOffset = 0; |
| 19188 var index; | 19188 var index; |
| 19189 var subPart; | 19189 var subPart; |
| 19190 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19190 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19191 pathOffset += 1; | 19191 pathOffset += 1; |
| 19192 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 19192 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| 19193 pathOffset += 18; | 19193 pathOffset += 18; |
| 19194 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 19194 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19345 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { | 19345 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { |
| 19346 checkPlacement(response); | 19346 checkPlacement(response); |
| 19347 }))); | 19347 }))); |
| 19348 }); | 19348 }); |
| 19349 | 19349 |
| 19350 unittest.test("method--list", () { | 19350 unittest.test("method--list", () { |
| 19351 | 19351 |
| 19352 var mock = new HttpServerMock(); | 19352 var mock = new HttpServerMock(); |
| 19353 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19353 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19354 var arg_profileId = "foo"; | 19354 var arg_profileId = "foo"; |
| 19355 var arg_advertiserIds = buildUnnamed1791(); | 19355 var arg_advertiserIds = buildUnnamed2097(); |
| 19356 var arg_archived = true; | 19356 var arg_archived = true; |
| 19357 var arg_campaignIds = buildUnnamed1792(); | 19357 var arg_campaignIds = buildUnnamed2098(); |
| 19358 var arg_compatibilities = buildUnnamed1793(); | 19358 var arg_compatibilities = buildUnnamed2099(); |
| 19359 var arg_contentCategoryIds = buildUnnamed1794(); | 19359 var arg_contentCategoryIds = buildUnnamed2100(); |
| 19360 var arg_directorySiteIds = buildUnnamed1795(); | 19360 var arg_directorySiteIds = buildUnnamed2101(); |
| 19361 var arg_groupIds = buildUnnamed1796(); | 19361 var arg_groupIds = buildUnnamed2102(); |
| 19362 var arg_ids = buildUnnamed1797(); | 19362 var arg_ids = buildUnnamed2103(); |
| 19363 var arg_maxEndDate = "foo"; | 19363 var arg_maxEndDate = "foo"; |
| 19364 var arg_maxResults = 42; | 19364 var arg_maxResults = 42; |
| 19365 var arg_maxStartDate = "foo"; | 19365 var arg_maxStartDate = "foo"; |
| 19366 var arg_minEndDate = "foo"; | 19366 var arg_minEndDate = "foo"; |
| 19367 var arg_minStartDate = "foo"; | 19367 var arg_minStartDate = "foo"; |
| 19368 var arg_pageToken = "foo"; | 19368 var arg_pageToken = "foo"; |
| 19369 var arg_paymentSource = "foo"; | 19369 var arg_paymentSource = "foo"; |
| 19370 var arg_placementStrategyIds = buildUnnamed1798(); | 19370 var arg_placementStrategyIds = buildUnnamed2104(); |
| 19371 var arg_pricingTypes = buildUnnamed1799(); | 19371 var arg_pricingTypes = buildUnnamed2105(); |
| 19372 var arg_searchString = "foo"; | 19372 var arg_searchString = "foo"; |
| 19373 var arg_siteIds = buildUnnamed1800(); | 19373 var arg_siteIds = buildUnnamed2106(); |
| 19374 var arg_sizeIds = buildUnnamed1801(); | 19374 var arg_sizeIds = buildUnnamed2107(); |
| 19375 var arg_sortField = "foo"; | 19375 var arg_sortField = "foo"; |
| 19376 var arg_sortOrder = "foo"; | 19376 var arg_sortOrder = "foo"; |
| 19377 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19377 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19378 var path = (req.url).path; | 19378 var path = (req.url).path; |
| 19379 var pathOffset = 0; | 19379 var pathOffset = 0; |
| 19380 var index; | 19380 var index; |
| 19381 var subPart; | 19381 var subPart; |
| 19382 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19382 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19383 pathOffset += 1; | 19383 pathOffset += 1; |
| 19384 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 19384 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19847 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { | 19847 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { |
| 19848 checkProject(response); | 19848 checkProject(response); |
| 19849 }))); | 19849 }))); |
| 19850 }); | 19850 }); |
| 19851 | 19851 |
| 19852 unittest.test("method--list", () { | 19852 unittest.test("method--list", () { |
| 19853 | 19853 |
| 19854 var mock = new HttpServerMock(); | 19854 var mock = new HttpServerMock(); |
| 19855 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; | 19855 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; |
| 19856 var arg_profileId = "foo"; | 19856 var arg_profileId = "foo"; |
| 19857 var arg_advertiserIds = buildUnnamed1802(); | 19857 var arg_advertiserIds = buildUnnamed2108(); |
| 19858 var arg_ids = buildUnnamed1803(); | 19858 var arg_ids = buildUnnamed2109(); |
| 19859 var arg_maxResults = 42; | 19859 var arg_maxResults = 42; |
| 19860 var arg_pageToken = "foo"; | 19860 var arg_pageToken = "foo"; |
| 19861 var arg_searchString = "foo"; | 19861 var arg_searchString = "foo"; |
| 19862 var arg_sortField = "foo"; | 19862 var arg_sortField = "foo"; |
| 19863 var arg_sortOrder = "foo"; | 19863 var arg_sortOrder = "foo"; |
| 19864 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19864 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19865 var path = (req.url).path; | 19865 var path = (req.url).path; |
| 19866 var pathOffset = 0; | 19866 var pathOffset = 0; |
| 19867 var index; | 19867 var index; |
| 19868 var subPart; | 19868 var subPart; |
| (...skipping 1327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21196 unittest.test("method--list", () { | 21196 unittest.test("method--list", () { |
| 21197 | 21197 |
| 21198 var mock = new HttpServerMock(); | 21198 var mock = new HttpServerMock(); |
| 21199 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; | 21199 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; |
| 21200 var arg_profileId = "foo"; | 21200 var arg_profileId = "foo"; |
| 21201 var arg_acceptsInStreamVideoPlacements = true; | 21201 var arg_acceptsInStreamVideoPlacements = true; |
| 21202 var arg_acceptsInterstitialPlacements = true; | 21202 var arg_acceptsInterstitialPlacements = true; |
| 21203 var arg_acceptsPublisherPaidPlacements = true; | 21203 var arg_acceptsPublisherPaidPlacements = true; |
| 21204 var arg_adWordsSite = true; | 21204 var arg_adWordsSite = true; |
| 21205 var arg_approved = true; | 21205 var arg_approved = true; |
| 21206 var arg_campaignIds = buildUnnamed1804(); | 21206 var arg_campaignIds = buildUnnamed2110(); |
| 21207 var arg_directorySiteIds = buildUnnamed1805(); | 21207 var arg_directorySiteIds = buildUnnamed2111(); |
| 21208 var arg_ids = buildUnnamed1806(); | 21208 var arg_ids = buildUnnamed2112(); |
| 21209 var arg_maxResults = 42; | 21209 var arg_maxResults = 42; |
| 21210 var arg_pageToken = "foo"; | 21210 var arg_pageToken = "foo"; |
| 21211 var arg_searchString = "foo"; | 21211 var arg_searchString = "foo"; |
| 21212 var arg_sortField = "foo"; | 21212 var arg_sortField = "foo"; |
| 21213 var arg_sortOrder = "foo"; | 21213 var arg_sortOrder = "foo"; |
| 21214 var arg_subaccountId = "foo"; | 21214 var arg_subaccountId = "foo"; |
| 21215 var arg_unmappedSite = true; | 21215 var arg_unmappedSite = true; |
| 21216 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21216 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21217 var path = (req.url).path; | 21217 var path = (req.url).path; |
| 21218 var pathOffset = 0; | 21218 var pathOffset = 0; |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21510 }))); | 21510 }))); |
| 21511 }); | 21511 }); |
| 21512 | 21512 |
| 21513 unittest.test("method--list", () { | 21513 unittest.test("method--list", () { |
| 21514 | 21514 |
| 21515 var mock = new HttpServerMock(); | 21515 var mock = new HttpServerMock(); |
| 21516 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; | 21516 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; |
| 21517 var arg_profileId = "foo"; | 21517 var arg_profileId = "foo"; |
| 21518 var arg_height = 42; | 21518 var arg_height = 42; |
| 21519 var arg_iabStandard = true; | 21519 var arg_iabStandard = true; |
| 21520 var arg_ids = buildUnnamed1807(); | 21520 var arg_ids = buildUnnamed2113(); |
| 21521 var arg_width = 42; | 21521 var arg_width = 42; |
| 21522 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21522 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21523 var path = (req.url).path; | 21523 var path = (req.url).path; |
| 21524 var pathOffset = 0; | 21524 var pathOffset = 0; |
| 21525 var index; | 21525 var index; |
| 21526 var subPart; | 21526 var subPart; |
| 21527 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 21527 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 21528 pathOffset += 1; | 21528 pathOffset += 1; |
| 21529 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 21529 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| 21530 pathOffset += 18; | 21530 pathOffset += 18; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21687 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { | 21687 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { |
| 21688 checkSubaccount(response); | 21688 checkSubaccount(response); |
| 21689 }))); | 21689 }))); |
| 21690 }); | 21690 }); |
| 21691 | 21691 |
| 21692 unittest.test("method--list", () { | 21692 unittest.test("method--list", () { |
| 21693 | 21693 |
| 21694 var mock = new HttpServerMock(); | 21694 var mock = new HttpServerMock(); |
| 21695 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; | 21695 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; |
| 21696 var arg_profileId = "foo"; | 21696 var arg_profileId = "foo"; |
| 21697 var arg_ids = buildUnnamed1808(); | 21697 var arg_ids = buildUnnamed2114(); |
| 21698 var arg_maxResults = 42; | 21698 var arg_maxResults = 42; |
| 21699 var arg_pageToken = "foo"; | 21699 var arg_pageToken = "foo"; |
| 21700 var arg_searchString = "foo"; | 21700 var arg_searchString = "foo"; |
| 21701 var arg_sortField = "foo"; | 21701 var arg_sortField = "foo"; |
| 21702 var arg_sortOrder = "foo"; | 21702 var arg_sortOrder = "foo"; |
| 21703 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21703 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21704 var path = (req.url).path; | 21704 var path = (req.url).path; |
| 21705 var pathOffset = 0; | 21705 var pathOffset = 0; |
| 21706 var index; | 21706 var index; |
| 21707 var subPart; | 21707 var subPart; |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22269 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { | 22269 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { |
| 22270 checkUserRolePermission(response); | 22270 checkUserRolePermission(response); |
| 22271 }))); | 22271 }))); |
| 22272 }); | 22272 }); |
| 22273 | 22273 |
| 22274 unittest.test("method--list", () { | 22274 unittest.test("method--list", () { |
| 22275 | 22275 |
| 22276 var mock = new HttpServerMock(); | 22276 var mock = new HttpServerMock(); |
| 22277 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; | 22277 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; |
| 22278 var arg_profileId = "foo"; | 22278 var arg_profileId = "foo"; |
| 22279 var arg_ids = buildUnnamed1809(); | 22279 var arg_ids = buildUnnamed2115(); |
| 22280 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22280 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22281 var path = (req.url).path; | 22281 var path = (req.url).path; |
| 22282 var pathOffset = 0; | 22282 var pathOffset = 0; |
| 22283 var index; | 22283 var index; |
| 22284 var subPart; | 22284 var subPart; |
| 22285 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 22285 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 22286 pathOffset += 1; | 22286 pathOffset += 1; |
| 22287 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); | 22287 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.3/")); |
| 22288 pathOffset += 18; | 22288 pathOffset += 18; |
| 22289 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 22289 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22498 checkUserRole(response); | 22498 checkUserRole(response); |
| 22499 }))); | 22499 }))); |
| 22500 }); | 22500 }); |
| 22501 | 22501 |
| 22502 unittest.test("method--list", () { | 22502 unittest.test("method--list", () { |
| 22503 | 22503 |
| 22504 var mock = new HttpServerMock(); | 22504 var mock = new HttpServerMock(); |
| 22505 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; | 22505 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; |
| 22506 var arg_profileId = "foo"; | 22506 var arg_profileId = "foo"; |
| 22507 var arg_accountUserRoleOnly = true; | 22507 var arg_accountUserRoleOnly = true; |
| 22508 var arg_ids = buildUnnamed1810(); | 22508 var arg_ids = buildUnnamed2116(); |
| 22509 var arg_maxResults = 42; | 22509 var arg_maxResults = 42; |
| 22510 var arg_pageToken = "foo"; | 22510 var arg_pageToken = "foo"; |
| 22511 var arg_searchString = "foo"; | 22511 var arg_searchString = "foo"; |
| 22512 var arg_sortField = "foo"; | 22512 var arg_sortField = "foo"; |
| 22513 var arg_sortOrder = "foo"; | 22513 var arg_sortOrder = "foo"; |
| 22514 var arg_subaccountId = "foo"; | 22514 var arg_subaccountId = "foo"; |
| 22515 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22515 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22516 var path = (req.url).path; | 22516 var path = (req.url).path; |
| 22517 var pathOffset = 0; | 22517 var pathOffset = 0; |
| 22518 var index; | 22518 var index; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22682 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { | 22682 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { |
| 22683 checkUserRole(response); | 22683 checkUserRole(response); |
| 22684 }))); | 22684 }))); |
| 22685 }); | 22685 }); |
| 22686 | 22686 |
| 22687 }); | 22687 }); |
| 22688 | 22688 |
| 22689 | 22689 |
| 22690 } | 22690 } |
| 22691 | 22691 |
| OLD | NEW |