| OLD | NEW |
| 1 library googleapis_beta.dfareporting.v2_5beta1.test; | 1 library googleapis_beta.dfareporting.v2_5beta1.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 buildUnnamed3293() { | 54 buildUnnamed3385() { |
| 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 checkUnnamed3293(core.List<core.String> o) { | 61 checkUnnamed3385(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 buildUnnamed3294() { | 67 buildUnnamed3386() { |
| 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 checkUnnamed3294(core.List<core.String> o) { | 74 checkUnnamed3386(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 = buildUnnamed3293(); | 85 o.accountPermissionIds = buildUnnamed3385(); |
| 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 = buildUnnamed3294(); | 90 o.availablePermissionIds = buildUnnamed3386(); |
| 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 checkUnnamed3293(o.accountPermissionIds); | 112 checkUnnamed3385(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 checkUnnamed3294(o.availablePermissionIds); | 117 checkUnnamed3386(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 buildUnnamed3295() { | 162 buildUnnamed3387() { |
| 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 checkUnnamed3295(core.List<core.String> o) { | 169 checkUnnamed3387(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 = buildUnnamed3295(); | 180 o.accountProfiles = buildUnnamed3387(); |
| 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 checkUnnamed3295(o.accountProfiles); | 194 checkUnnamed3387(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 buildUnnamed3296() { | 227 buildUnnamed3388() { |
| 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 checkUnnamed3296(core.List<api.AccountPermissionGroup> o) { | 234 checkUnnamed3388(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 = buildUnnamed3296(); | 245 o.accountPermissionGroups = buildUnnamed3388(); |
| 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 checkUnnamed3296(o.accountPermissionGroups); | 255 checkUnnamed3388(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 buildUnnamed3297() { | 261 buildUnnamed3389() { |
| 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 checkUnnamed3297(core.List<api.AccountPermission> o) { | 268 checkUnnamed3389(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 = buildUnnamed3297(); | 279 o.accountPermissions = buildUnnamed3389(); |
| 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 checkUnnamed3297(o.accountPermissions); | 289 checkUnnamed3389(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 buildUnnamed3298() { | 344 buildUnnamed3390() { |
| 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 checkUnnamed3298(core.List<api.AccountUserProfile> o) { | 351 checkUnnamed3390(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 = buildUnnamed3298(); | 362 o.accountUserProfiles = buildUnnamed3390(); |
| 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 checkUnnamed3298(o.accountUserProfiles); | 373 checkUnnamed3390(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 buildUnnamed3299() { | 380 buildUnnamed3391() { |
| 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 checkUnnamed3299(core.List<api.Account> o) { | 387 checkUnnamed3391(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 = buildUnnamed3299(); | 398 o.accounts = buildUnnamed3391(); |
| 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 checkUnnamed3299(o.accounts); | 409 checkUnnamed3391(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 buildUnnamed3300() { | 416 buildUnnamed3392() { |
| 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 checkUnnamed3300(core.List<api.DimensionValue> o) { | 423 checkUnnamed3392(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 buildUnnamed3301() { | 429 buildUnnamed3393() { |
| 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 checkUnnamed3301(core.List<core.String> o) { | 436 checkUnnamed3393(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 = buildUnnamed3300(); | 447 o.filters = buildUnnamed3392(); |
| 448 o.kind = "foo"; | 448 o.kind = "foo"; |
| 449 o.metricNames = buildUnnamed3301(); | 449 o.metricNames = buildUnnamed3393(); |
| 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 checkUnnamed3300(o.filters); | 458 checkUnnamed3392(o.filters); |
| 459 unittest.expect(o.kind, unittest.equals('foo')); | 459 unittest.expect(o.kind, unittest.equals('foo')); |
| 460 checkUnnamed3301(o.metricNames); | 460 checkUnnamed3393(o.metricNames); |
| 461 } | 461 } |
| 462 buildCounterActivities--; | 462 buildCounterActivities--; |
| 463 } | 463 } |
| 464 | 464 |
| 465 buildUnnamed3302() { | 465 buildUnnamed3394() { |
| 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 checkUnnamed3302(core.List<api.CreativeGroupAssignment> o) { | 472 checkUnnamed3394(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 buildUnnamed3303() { | 478 buildUnnamed3395() { |
| 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 checkUnnamed3303(core.List<api.EventTagOverride> o) { | 485 checkUnnamed3395(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 buildUnnamed3304() { | 491 buildUnnamed3396() { |
| 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 checkUnnamed3304(core.List<api.PlacementAssignment> o) { | 498 checkUnnamed3396(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 = buildUnnamed3302(); | 522 o.creativeGroupAssignments = buildUnnamed3394(); |
| 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 = buildUnnamed3303(); | 529 o.eventTagOverrides = buildUnnamed3395(); |
| 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 = buildUnnamed3304(); | 537 o.placementAssignments = buildUnnamed3396(); |
| 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 checkUnnamed3302(o.creativeGroupAssignments); | 567 checkUnnamed3394(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 checkUnnamed3303(o.eventTagOverrides); | 574 checkUnnamed3395(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 checkUnnamed3304(o.placementAssignments); | 582 checkUnnamed3396(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 buildUnnamed3305() { | 628 buildUnnamed3397() { |
| 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 checkUnnamed3305(core.List<api.Ad> o) { | 635 checkUnnamed3397(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 = buildUnnamed3305(); | 646 o.ads = buildUnnamed3397(); |
| 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 checkUnnamed3305(o.ads); | 657 checkUnnamed3397(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 buildUnnamed3306() { | 736 buildUnnamed3398() { |
| 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 checkUnnamed3306(core.List<api.AdvertiserGroup> o) { | 743 checkUnnamed3398(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 = buildUnnamed3306(); | 754 o.advertiserGroups = buildUnnamed3398(); |
| 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 checkUnnamed3306(o.advertiserGroups); | 765 checkUnnamed3398(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 buildUnnamed3307() { | 772 buildUnnamed3399() { |
| 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 checkUnnamed3307(core.List<api.Advertiser> o) { | 779 checkUnnamed3399(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 = buildUnnamed3307(); | 790 o.advertisers = buildUnnamed3399(); |
| 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 checkUnnamed3307(o.advertisers); | 801 checkUnnamed3399(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 buildUnnamed3308() { | 831 buildUnnamed3400() { |
| 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 checkUnnamed3308(core.List<api.AudienceSegment> o) { | 838 checkUnnamed3400(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 = buildUnnamed3308(); | 849 o.audienceSegments = buildUnnamed3400(); |
| 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 checkUnnamed3308(o.audienceSegments); | 860 checkUnnamed3400(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 buildUnnamed3309() { | 896 buildUnnamed3401() { |
| 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 checkUnnamed3309(core.List<api.Browser> o) { | 903 checkUnnamed3401(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 = buildUnnamed3309(); | 914 o.browsers = buildUnnamed3401(); |
| 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 checkUnnamed3309(o.browsers); | 924 checkUnnamed3401(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 buildUnnamed3310() { | 930 buildUnnamed3402() { |
| 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 checkUnnamed3310(core.List<api.CreativeOptimizationConfiguration> o) { | 937 checkUnnamed3402(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 buildUnnamed3311() { | 943 buildUnnamed3403() { |
| 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 checkUnnamed3311(core.List<api.AudienceSegmentGroup> o) { | 950 checkUnnamed3403(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 buildUnnamed3312() { | 956 buildUnnamed3404() { |
| 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 checkUnnamed3312(core.List<core.String> o) { | 963 checkUnnamed3404(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 buildUnnamed3313() { | 969 buildUnnamed3405() { |
| 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 checkUnnamed3313(core.List<api.EventTagOverride> o) { | 976 checkUnnamed3405(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 buildUnnamed3314() { | 982 buildUnnamed3406() { |
| 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 checkUnnamed3314(core.List<core.String> o) { | 989 checkUnnamed3406(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 = buildUnnamed3310(); | 1001 o.additionalCreativeOptimizationConfigurations = buildUnnamed3402(); |
| 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 = buildUnnamed3311(); | 1006 o.audienceSegmentGroups = buildUnnamed3403(); |
| 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 = buildUnnamed3312(); | 1012 o.creativeGroupIds = buildUnnamed3404(); |
| 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 = buildUnnamed3313(); | 1016 o.eventTagOverrides = buildUnnamed3405(); |
| 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 = buildUnnamed3314(); | 1027 o.traffickerEmails = buildUnnamed3406(); |
| 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 checkUnnamed3310(o.additionalCreativeOptimizationConfigurations); | 1037 checkUnnamed3402(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 checkUnnamed3311(o.audienceSegmentGroups); | 1042 checkUnnamed3403(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 checkUnnamed3312(o.creativeGroupIds); | 1048 checkUnnamed3404(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 checkUnnamed3313(o.eventTagOverrides); | 1052 checkUnnamed3405(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 checkUnnamed3314(o.traffickerEmails); | 1063 checkUnnamed3406(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 buildUnnamed3315() { | 1089 buildUnnamed3407() { |
| 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 checkUnnamed3315(core.List<api.CampaignCreativeAssociation> o) { | 1096 checkUnnamed3407(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 = buildUnnamed3315(); | 1107 o.campaignCreativeAssociations = buildUnnamed3407(); |
| 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 checkUnnamed3315(o.campaignCreativeAssociations); | 1118 checkUnnamed3407(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 buildUnnamed3316() { | 1125 buildUnnamed3408() { |
| 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 checkUnnamed3316(core.List<api.Campaign> o) { | 1132 checkUnnamed3408(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 = buildUnnamed3316(); | 1143 o.campaigns = buildUnnamed3408(); |
| 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 checkUnnamed3316(o.campaigns); | 1154 checkUnnamed3408(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 buildUnnamed3317() { | 1206 buildUnnamed3409() { |
| 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 checkUnnamed3317(core.List<api.ChangeLog> o) { | 1213 checkUnnamed3409(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 = buildUnnamed3317(); | 1224 o.changeLogs = buildUnnamed3409(); |
| 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 checkUnnamed3317(o.changeLogs); | 1235 checkUnnamed3409(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 buildUnnamed3318() { | 1242 buildUnnamed3410() { |
| 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 checkUnnamed3318(core.List<api.City> o) { | 1249 checkUnnamed3410(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 = buildUnnamed3318(); | 1260 o.cities = buildUnnamed3410(); |
| 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 checkUnnamed3318(o.cities); | 1270 checkUnnamed3410(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 buildUnnamed3319() { | 1453 buildUnnamed3411() { |
| 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 checkUnnamed3319(core.List<api.ConnectionType> o) { | 1460 checkUnnamed3411(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 = buildUnnamed3319(); | 1471 o.connectionTypes = buildUnnamed3411(); |
| 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 checkUnnamed3319(o.connectionTypes); | 1481 checkUnnamed3411(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 buildUnnamed3320() { | 1487 buildUnnamed3412() { |
| 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 checkUnnamed3320(core.List<api.ContentCategory> o) { | 1494 checkUnnamed3412(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 = buildUnnamed3320(); | 1505 o.contentCategories = buildUnnamed3412(); |
| 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 checkUnnamed3320(o.contentCategories); | 1516 checkUnnamed3412(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 buildUnnamed3321() { | 1548 buildUnnamed3413() { |
| 1549 var o = new core.List<api.CustomFloodlightVariable>(); | 1549 var o = new core.List<api.CustomFloodlightVariable>(); |
| 1550 o.add(buildCustomFloodlightVariable()); | 1550 o.add(buildCustomFloodlightVariable()); |
| 1551 o.add(buildCustomFloodlightVariable()); | 1551 o.add(buildCustomFloodlightVariable()); |
| 1552 return o; | 1552 return o; |
| 1553 } | 1553 } |
| 1554 | 1554 |
| 1555 checkUnnamed3321(core.List<api.CustomFloodlightVariable> o) { | 1555 checkUnnamed3413(core.List<api.CustomFloodlightVariable> o) { |
| 1556 unittest.expect(o, unittest.hasLength(2)); | 1556 unittest.expect(o, unittest.hasLength(2)); |
| 1557 checkCustomFloodlightVariable(o[0]); | 1557 checkCustomFloodlightVariable(o[0]); |
| 1558 checkCustomFloodlightVariable(o[1]); | 1558 checkCustomFloodlightVariable(o[1]); |
| 1559 } | 1559 } |
| 1560 | 1560 |
| 1561 core.int buildCounterConversion = 0; | 1561 core.int buildCounterConversion = 0; |
| 1562 buildConversion() { | 1562 buildConversion() { |
| 1563 var o = new api.Conversion(); | 1563 var o = new api.Conversion(); |
| 1564 buildCounterConversion++; | 1564 buildCounterConversion++; |
| 1565 if (buildCounterConversion < 3) { | 1565 if (buildCounterConversion < 3) { |
| 1566 o.childDirectedTreatment = true; | 1566 o.childDirectedTreatment = true; |
| 1567 o.customVariables = buildUnnamed3321(); | 1567 o.customVariables = buildUnnamed3413(); |
| 1568 o.encryptedUserId = "foo"; | 1568 o.encryptedUserId = "foo"; |
| 1569 o.floodlightActivityId = "foo"; | 1569 o.floodlightActivityId = "foo"; |
| 1570 o.floodlightConfigurationId = "foo"; | 1570 o.floodlightConfigurationId = "foo"; |
| 1571 o.kind = "foo"; | 1571 o.kind = "foo"; |
| 1572 o.limitAdTracking = true; | 1572 o.limitAdTracking = true; |
| 1573 o.mobileDeviceId = "foo"; | 1573 o.mobileDeviceId = "foo"; |
| 1574 o.ordinal = "foo"; | 1574 o.ordinal = "foo"; |
| 1575 o.quantity = "foo"; | 1575 o.quantity = "foo"; |
| 1576 o.timestampMicros = "foo"; | 1576 o.timestampMicros = "foo"; |
| 1577 o.value = 42.0; | 1577 o.value = 42.0; |
| 1578 } | 1578 } |
| 1579 buildCounterConversion--; | 1579 buildCounterConversion--; |
| 1580 return o; | 1580 return o; |
| 1581 } | 1581 } |
| 1582 | 1582 |
| 1583 checkConversion(api.Conversion o) { | 1583 checkConversion(api.Conversion o) { |
| 1584 buildCounterConversion++; | 1584 buildCounterConversion++; |
| 1585 if (buildCounterConversion < 3) { | 1585 if (buildCounterConversion < 3) { |
| 1586 unittest.expect(o.childDirectedTreatment, unittest.isTrue); | 1586 unittest.expect(o.childDirectedTreatment, unittest.isTrue); |
| 1587 checkUnnamed3321(o.customVariables); | 1587 checkUnnamed3413(o.customVariables); |
| 1588 unittest.expect(o.encryptedUserId, unittest.equals('foo')); | 1588 unittest.expect(o.encryptedUserId, unittest.equals('foo')); |
| 1589 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 1589 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 1590 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 1590 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
| 1591 unittest.expect(o.kind, unittest.equals('foo')); | 1591 unittest.expect(o.kind, unittest.equals('foo')); |
| 1592 unittest.expect(o.limitAdTracking, unittest.isTrue); | 1592 unittest.expect(o.limitAdTracking, unittest.isTrue); |
| 1593 unittest.expect(o.mobileDeviceId, unittest.equals('foo')); | 1593 unittest.expect(o.mobileDeviceId, unittest.equals('foo')); |
| 1594 unittest.expect(o.ordinal, unittest.equals('foo')); | 1594 unittest.expect(o.ordinal, unittest.equals('foo')); |
| 1595 unittest.expect(o.quantity, unittest.equals('foo')); | 1595 unittest.expect(o.quantity, unittest.equals('foo')); |
| 1596 unittest.expect(o.timestampMicros, unittest.equals('foo')); | 1596 unittest.expect(o.timestampMicros, unittest.equals('foo')); |
| 1597 unittest.expect(o.value, unittest.equals(42.0)); | 1597 unittest.expect(o.value, unittest.equals(42.0)); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 1615 checkConversionError(api.ConversionError o) { | 1615 checkConversionError(api.ConversionError o) { |
| 1616 buildCounterConversionError++; | 1616 buildCounterConversionError++; |
| 1617 if (buildCounterConversionError < 3) { | 1617 if (buildCounterConversionError < 3) { |
| 1618 unittest.expect(o.code, unittest.equals('foo')); | 1618 unittest.expect(o.code, unittest.equals('foo')); |
| 1619 unittest.expect(o.kind, unittest.equals('foo')); | 1619 unittest.expect(o.kind, unittest.equals('foo')); |
| 1620 unittest.expect(o.message, unittest.equals('foo')); | 1620 unittest.expect(o.message, unittest.equals('foo')); |
| 1621 } | 1621 } |
| 1622 buildCounterConversionError--; | 1622 buildCounterConversionError--; |
| 1623 } | 1623 } |
| 1624 | 1624 |
| 1625 buildUnnamed3322() { | 1625 buildUnnamed3414() { |
| 1626 var o = new core.List<api.ConversionError>(); | 1626 var o = new core.List<api.ConversionError>(); |
| 1627 o.add(buildConversionError()); | 1627 o.add(buildConversionError()); |
| 1628 o.add(buildConversionError()); | 1628 o.add(buildConversionError()); |
| 1629 return o; | 1629 return o; |
| 1630 } | 1630 } |
| 1631 | 1631 |
| 1632 checkUnnamed3322(core.List<api.ConversionError> o) { | 1632 checkUnnamed3414(core.List<api.ConversionError> o) { |
| 1633 unittest.expect(o, unittest.hasLength(2)); | 1633 unittest.expect(o, unittest.hasLength(2)); |
| 1634 checkConversionError(o[0]); | 1634 checkConversionError(o[0]); |
| 1635 checkConversionError(o[1]); | 1635 checkConversionError(o[1]); |
| 1636 } | 1636 } |
| 1637 | 1637 |
| 1638 core.int buildCounterConversionStatus = 0; | 1638 core.int buildCounterConversionStatus = 0; |
| 1639 buildConversionStatus() { | 1639 buildConversionStatus() { |
| 1640 var o = new api.ConversionStatus(); | 1640 var o = new api.ConversionStatus(); |
| 1641 buildCounterConversionStatus++; | 1641 buildCounterConversionStatus++; |
| 1642 if (buildCounterConversionStatus < 3) { | 1642 if (buildCounterConversionStatus < 3) { |
| 1643 o.conversion = buildConversion(); | 1643 o.conversion = buildConversion(); |
| 1644 o.errors = buildUnnamed3322(); | 1644 o.errors = buildUnnamed3414(); |
| 1645 o.kind = "foo"; | 1645 o.kind = "foo"; |
| 1646 } | 1646 } |
| 1647 buildCounterConversionStatus--; | 1647 buildCounterConversionStatus--; |
| 1648 return o; | 1648 return o; |
| 1649 } | 1649 } |
| 1650 | 1650 |
| 1651 checkConversionStatus(api.ConversionStatus o) { | 1651 checkConversionStatus(api.ConversionStatus o) { |
| 1652 buildCounterConversionStatus++; | 1652 buildCounterConversionStatus++; |
| 1653 if (buildCounterConversionStatus < 3) { | 1653 if (buildCounterConversionStatus < 3) { |
| 1654 checkConversion(o.conversion); | 1654 checkConversion(o.conversion); |
| 1655 checkUnnamed3322(o.errors); | 1655 checkUnnamed3414(o.errors); |
| 1656 unittest.expect(o.kind, unittest.equals('foo')); | 1656 unittest.expect(o.kind, unittest.equals('foo')); |
| 1657 } | 1657 } |
| 1658 buildCounterConversionStatus--; | 1658 buildCounterConversionStatus--; |
| 1659 } | 1659 } |
| 1660 | 1660 |
| 1661 buildUnnamed3323() { | 1661 buildUnnamed3415() { |
| 1662 var o = new core.List<api.Conversion>(); | 1662 var o = new core.List<api.Conversion>(); |
| 1663 o.add(buildConversion()); | 1663 o.add(buildConversion()); |
| 1664 o.add(buildConversion()); | 1664 o.add(buildConversion()); |
| 1665 return o; | 1665 return o; |
| 1666 } | 1666 } |
| 1667 | 1667 |
| 1668 checkUnnamed3323(core.List<api.Conversion> o) { | 1668 checkUnnamed3415(core.List<api.Conversion> o) { |
| 1669 unittest.expect(o, unittest.hasLength(2)); | 1669 unittest.expect(o, unittest.hasLength(2)); |
| 1670 checkConversion(o[0]); | 1670 checkConversion(o[0]); |
| 1671 checkConversion(o[1]); | 1671 checkConversion(o[1]); |
| 1672 } | 1672 } |
| 1673 | 1673 |
| 1674 core.int buildCounterConversionsBatchInsertRequest = 0; | 1674 core.int buildCounterConversionsBatchInsertRequest = 0; |
| 1675 buildConversionsBatchInsertRequest() { | 1675 buildConversionsBatchInsertRequest() { |
| 1676 var o = new api.ConversionsBatchInsertRequest(); | 1676 var o = new api.ConversionsBatchInsertRequest(); |
| 1677 buildCounterConversionsBatchInsertRequest++; | 1677 buildCounterConversionsBatchInsertRequest++; |
| 1678 if (buildCounterConversionsBatchInsertRequest < 3) { | 1678 if (buildCounterConversionsBatchInsertRequest < 3) { |
| 1679 o.conversions = buildUnnamed3323(); | 1679 o.conversions = buildUnnamed3415(); |
| 1680 o.encryptionInfo = buildEncryptionInfo(); | 1680 o.encryptionInfo = buildEncryptionInfo(); |
| 1681 o.kind = "foo"; | 1681 o.kind = "foo"; |
| 1682 } | 1682 } |
| 1683 buildCounterConversionsBatchInsertRequest--; | 1683 buildCounterConversionsBatchInsertRequest--; |
| 1684 return o; | 1684 return o; |
| 1685 } | 1685 } |
| 1686 | 1686 |
| 1687 checkConversionsBatchInsertRequest(api.ConversionsBatchInsertRequest o) { | 1687 checkConversionsBatchInsertRequest(api.ConversionsBatchInsertRequest o) { |
| 1688 buildCounterConversionsBatchInsertRequest++; | 1688 buildCounterConversionsBatchInsertRequest++; |
| 1689 if (buildCounterConversionsBatchInsertRequest < 3) { | 1689 if (buildCounterConversionsBatchInsertRequest < 3) { |
| 1690 checkUnnamed3323(o.conversions); | 1690 checkUnnamed3415(o.conversions); |
| 1691 checkEncryptionInfo(o.encryptionInfo); | 1691 checkEncryptionInfo(o.encryptionInfo); |
| 1692 unittest.expect(o.kind, unittest.equals('foo')); | 1692 unittest.expect(o.kind, unittest.equals('foo')); |
| 1693 } | 1693 } |
| 1694 buildCounterConversionsBatchInsertRequest--; | 1694 buildCounterConversionsBatchInsertRequest--; |
| 1695 } | 1695 } |
| 1696 | 1696 |
| 1697 buildUnnamed3324() { | 1697 buildUnnamed3416() { |
| 1698 var o = new core.List<api.ConversionStatus>(); | 1698 var o = new core.List<api.ConversionStatus>(); |
| 1699 o.add(buildConversionStatus()); | 1699 o.add(buildConversionStatus()); |
| 1700 o.add(buildConversionStatus()); | 1700 o.add(buildConversionStatus()); |
| 1701 return o; | 1701 return o; |
| 1702 } | 1702 } |
| 1703 | 1703 |
| 1704 checkUnnamed3324(core.List<api.ConversionStatus> o) { | 1704 checkUnnamed3416(core.List<api.ConversionStatus> o) { |
| 1705 unittest.expect(o, unittest.hasLength(2)); | 1705 unittest.expect(o, unittest.hasLength(2)); |
| 1706 checkConversionStatus(o[0]); | 1706 checkConversionStatus(o[0]); |
| 1707 checkConversionStatus(o[1]); | 1707 checkConversionStatus(o[1]); |
| 1708 } | 1708 } |
| 1709 | 1709 |
| 1710 core.int buildCounterConversionsBatchInsertResponse = 0; | 1710 core.int buildCounterConversionsBatchInsertResponse = 0; |
| 1711 buildConversionsBatchInsertResponse() { | 1711 buildConversionsBatchInsertResponse() { |
| 1712 var o = new api.ConversionsBatchInsertResponse(); | 1712 var o = new api.ConversionsBatchInsertResponse(); |
| 1713 buildCounterConversionsBatchInsertResponse++; | 1713 buildCounterConversionsBatchInsertResponse++; |
| 1714 if (buildCounterConversionsBatchInsertResponse < 3) { | 1714 if (buildCounterConversionsBatchInsertResponse < 3) { |
| 1715 o.hasFailures = true; | 1715 o.hasFailures = true; |
| 1716 o.kind = "foo"; | 1716 o.kind = "foo"; |
| 1717 o.status = buildUnnamed3324(); | 1717 o.status = buildUnnamed3416(); |
| 1718 } | 1718 } |
| 1719 buildCounterConversionsBatchInsertResponse--; | 1719 buildCounterConversionsBatchInsertResponse--; |
| 1720 return o; | 1720 return o; |
| 1721 } | 1721 } |
| 1722 | 1722 |
| 1723 checkConversionsBatchInsertResponse(api.ConversionsBatchInsertResponse o) { | 1723 checkConversionsBatchInsertResponse(api.ConversionsBatchInsertResponse o) { |
| 1724 buildCounterConversionsBatchInsertResponse++; | 1724 buildCounterConversionsBatchInsertResponse++; |
| 1725 if (buildCounterConversionsBatchInsertResponse < 3) { | 1725 if (buildCounterConversionsBatchInsertResponse < 3) { |
| 1726 unittest.expect(o.hasFailures, unittest.isTrue); | 1726 unittest.expect(o.hasFailures, unittest.isTrue); |
| 1727 unittest.expect(o.kind, unittest.equals('foo')); | 1727 unittest.expect(o.kind, unittest.equals('foo')); |
| 1728 checkUnnamed3324(o.status); | 1728 checkUnnamed3416(o.status); |
| 1729 } | 1729 } |
| 1730 buildCounterConversionsBatchInsertResponse--; | 1730 buildCounterConversionsBatchInsertResponse--; |
| 1731 } | 1731 } |
| 1732 | 1732 |
| 1733 buildUnnamed3325() { | 1733 buildUnnamed3417() { |
| 1734 var o = new core.List<api.Country>(); | 1734 var o = new core.List<api.Country>(); |
| 1735 o.add(buildCountry()); | 1735 o.add(buildCountry()); |
| 1736 o.add(buildCountry()); | 1736 o.add(buildCountry()); |
| 1737 return o; | 1737 return o; |
| 1738 } | 1738 } |
| 1739 | 1739 |
| 1740 checkUnnamed3325(core.List<api.Country> o) { | 1740 checkUnnamed3417(core.List<api.Country> o) { |
| 1741 unittest.expect(o, unittest.hasLength(2)); | 1741 unittest.expect(o, unittest.hasLength(2)); |
| 1742 checkCountry(o[0]); | 1742 checkCountry(o[0]); |
| 1743 checkCountry(o[1]); | 1743 checkCountry(o[1]); |
| 1744 } | 1744 } |
| 1745 | 1745 |
| 1746 core.int buildCounterCountriesListResponse = 0; | 1746 core.int buildCounterCountriesListResponse = 0; |
| 1747 buildCountriesListResponse() { | 1747 buildCountriesListResponse() { |
| 1748 var o = new api.CountriesListResponse(); | 1748 var o = new api.CountriesListResponse(); |
| 1749 buildCounterCountriesListResponse++; | 1749 buildCounterCountriesListResponse++; |
| 1750 if (buildCounterCountriesListResponse < 3) { | 1750 if (buildCounterCountriesListResponse < 3) { |
| 1751 o.countries = buildUnnamed3325(); | 1751 o.countries = buildUnnamed3417(); |
| 1752 o.kind = "foo"; | 1752 o.kind = "foo"; |
| 1753 } | 1753 } |
| 1754 buildCounterCountriesListResponse--; | 1754 buildCounterCountriesListResponse--; |
| 1755 return o; | 1755 return o; |
| 1756 } | 1756 } |
| 1757 | 1757 |
| 1758 checkCountriesListResponse(api.CountriesListResponse o) { | 1758 checkCountriesListResponse(api.CountriesListResponse o) { |
| 1759 buildCounterCountriesListResponse++; | 1759 buildCounterCountriesListResponse++; |
| 1760 if (buildCounterCountriesListResponse < 3) { | 1760 if (buildCounterCountriesListResponse < 3) { |
| 1761 checkUnnamed3325(o.countries); | 1761 checkUnnamed3417(o.countries); |
| 1762 unittest.expect(o.kind, unittest.equals('foo')); | 1762 unittest.expect(o.kind, unittest.equals('foo')); |
| 1763 } | 1763 } |
| 1764 buildCounterCountriesListResponse--; | 1764 buildCounterCountriesListResponse--; |
| 1765 } | 1765 } |
| 1766 | 1766 |
| 1767 core.int buildCounterCountry = 0; | 1767 core.int buildCounterCountry = 0; |
| 1768 buildCountry() { | 1768 buildCountry() { |
| 1769 var o = new api.Country(); | 1769 var o = new api.Country(); |
| 1770 buildCounterCountry++; | 1770 buildCounterCountry++; |
| 1771 if (buildCounterCountry < 3) { | 1771 if (buildCounterCountry < 3) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1784 if (buildCounterCountry < 3) { | 1784 if (buildCounterCountry < 3) { |
| 1785 unittest.expect(o.countryCode, unittest.equals('foo')); | 1785 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 1786 unittest.expect(o.dartId, unittest.equals('foo')); | 1786 unittest.expect(o.dartId, unittest.equals('foo')); |
| 1787 unittest.expect(o.kind, unittest.equals('foo')); | 1787 unittest.expect(o.kind, unittest.equals('foo')); |
| 1788 unittest.expect(o.name, unittest.equals('foo')); | 1788 unittest.expect(o.name, unittest.equals('foo')); |
| 1789 unittest.expect(o.sslEnabled, unittest.isTrue); | 1789 unittest.expect(o.sslEnabled, unittest.isTrue); |
| 1790 } | 1790 } |
| 1791 buildCounterCountry--; | 1791 buildCounterCountry--; |
| 1792 } | 1792 } |
| 1793 | 1793 |
| 1794 buildUnnamed3326() { | 1794 buildUnnamed3418() { |
| 1795 var o = new core.List<core.String>(); | 1795 var o = new core.List<core.String>(); |
| 1796 o.add("foo"); | 1796 o.add("foo"); |
| 1797 o.add("foo"); | 1797 o.add("foo"); |
| 1798 return o; | 1798 return o; |
| 1799 } | 1799 } |
| 1800 | 1800 |
| 1801 checkUnnamed3326(core.List<core.String> o) { | 1801 checkUnnamed3418(core.List<core.String> o) { |
| 1802 unittest.expect(o, unittest.hasLength(2)); | 1802 unittest.expect(o, unittest.hasLength(2)); |
| 1803 unittest.expect(o[0], unittest.equals('foo')); | 1803 unittest.expect(o[0], unittest.equals('foo')); |
| 1804 unittest.expect(o[1], unittest.equals('foo')); | 1804 unittest.expect(o[1], unittest.equals('foo')); |
| 1805 } | 1805 } |
| 1806 | 1806 |
| 1807 buildUnnamed3327() { | 1807 buildUnnamed3419() { |
| 1808 var o = new core.List<core.String>(); | 1808 var o = new core.List<core.String>(); |
| 1809 o.add("foo"); | 1809 o.add("foo"); |
| 1810 o.add("foo"); | 1810 o.add("foo"); |
| 1811 return o; | 1811 return o; |
| 1812 } | 1812 } |
| 1813 | 1813 |
| 1814 checkUnnamed3327(core.List<core.String> o) { | 1814 checkUnnamed3419(core.List<core.String> o) { |
| 1815 unittest.expect(o, unittest.hasLength(2)); | 1815 unittest.expect(o, unittest.hasLength(2)); |
| 1816 unittest.expect(o[0], unittest.equals('foo')); | 1816 unittest.expect(o[0], unittest.equals('foo')); |
| 1817 unittest.expect(o[1], unittest.equals('foo')); | 1817 unittest.expect(o[1], unittest.equals('foo')); |
| 1818 } | 1818 } |
| 1819 | 1819 |
| 1820 buildUnnamed3328() { | 1820 buildUnnamed3420() { |
| 1821 var o = new core.List<api.ClickTag>(); | 1821 var o = new core.List<api.ClickTag>(); |
| 1822 o.add(buildClickTag()); | 1822 o.add(buildClickTag()); |
| 1823 o.add(buildClickTag()); | 1823 o.add(buildClickTag()); |
| 1824 return o; | 1824 return o; |
| 1825 } | 1825 } |
| 1826 | 1826 |
| 1827 checkUnnamed3328(core.List<api.ClickTag> o) { | 1827 checkUnnamed3420(core.List<api.ClickTag> o) { |
| 1828 unittest.expect(o, unittest.hasLength(2)); | 1828 unittest.expect(o, unittest.hasLength(2)); |
| 1829 checkClickTag(o[0]); | 1829 checkClickTag(o[0]); |
| 1830 checkClickTag(o[1]); | 1830 checkClickTag(o[1]); |
| 1831 } | 1831 } |
| 1832 | 1832 |
| 1833 buildUnnamed3329() { | 1833 buildUnnamed3421() { |
| 1834 var o = new core.List<core.String>(); | 1834 var o = new core.List<core.String>(); |
| 1835 o.add("foo"); | 1835 o.add("foo"); |
| 1836 o.add("foo"); | 1836 o.add("foo"); |
| 1837 return o; | 1837 return o; |
| 1838 } | 1838 } |
| 1839 | 1839 |
| 1840 checkUnnamed3329(core.List<core.String> o) { | 1840 checkUnnamed3421(core.List<core.String> o) { |
| 1841 unittest.expect(o, unittest.hasLength(2)); | 1841 unittest.expect(o, unittest.hasLength(2)); |
| 1842 unittest.expect(o[0], unittest.equals('foo')); | 1842 unittest.expect(o[0], unittest.equals('foo')); |
| 1843 unittest.expect(o[1], unittest.equals('foo')); | 1843 unittest.expect(o[1], unittest.equals('foo')); |
| 1844 } | 1844 } |
| 1845 | 1845 |
| 1846 buildUnnamed3330() { | 1846 buildUnnamed3422() { |
| 1847 var o = new core.List<core.String>(); | 1847 var o = new core.List<core.String>(); |
| 1848 o.add("foo"); | 1848 o.add("foo"); |
| 1849 o.add("foo"); | 1849 o.add("foo"); |
| 1850 return o; | 1850 return o; |
| 1851 } | 1851 } |
| 1852 | 1852 |
| 1853 checkUnnamed3330(core.List<core.String> o) { | 1853 checkUnnamed3422(core.List<core.String> o) { |
| 1854 unittest.expect(o, unittest.hasLength(2)); | 1854 unittest.expect(o, unittest.hasLength(2)); |
| 1855 unittest.expect(o[0], unittest.equals('foo')); | 1855 unittest.expect(o[0], unittest.equals('foo')); |
| 1856 unittest.expect(o[1], unittest.equals('foo')); | 1856 unittest.expect(o[1], unittest.equals('foo')); |
| 1857 } | 1857 } |
| 1858 | 1858 |
| 1859 buildUnnamed3331() { | 1859 buildUnnamed3423() { |
| 1860 var o = new core.List<api.CreativeCustomEvent>(); | 1860 var o = new core.List<api.CreativeCustomEvent>(); |
| 1861 o.add(buildCreativeCustomEvent()); | 1861 o.add(buildCreativeCustomEvent()); |
| 1862 o.add(buildCreativeCustomEvent()); | 1862 o.add(buildCreativeCustomEvent()); |
| 1863 return o; | 1863 return o; |
| 1864 } | 1864 } |
| 1865 | 1865 |
| 1866 checkUnnamed3331(core.List<api.CreativeCustomEvent> o) { | 1866 checkUnnamed3423(core.List<api.CreativeCustomEvent> o) { |
| 1867 unittest.expect(o, unittest.hasLength(2)); | 1867 unittest.expect(o, unittest.hasLength(2)); |
| 1868 checkCreativeCustomEvent(o[0]); | 1868 checkCreativeCustomEvent(o[0]); |
| 1869 checkCreativeCustomEvent(o[1]); | 1869 checkCreativeCustomEvent(o[1]); |
| 1870 } | 1870 } |
| 1871 | 1871 |
| 1872 buildUnnamed3332() { | 1872 buildUnnamed3424() { |
| 1873 var o = new core.List<api.CreativeAsset>(); | 1873 var o = new core.List<api.CreativeAsset>(); |
| 1874 o.add(buildCreativeAsset()); | 1874 o.add(buildCreativeAsset()); |
| 1875 o.add(buildCreativeAsset()); | 1875 o.add(buildCreativeAsset()); |
| 1876 return o; | 1876 return o; |
| 1877 } | 1877 } |
| 1878 | 1878 |
| 1879 checkUnnamed3332(core.List<api.CreativeAsset> o) { | 1879 checkUnnamed3424(core.List<api.CreativeAsset> o) { |
| 1880 unittest.expect(o, unittest.hasLength(2)); | 1880 unittest.expect(o, unittest.hasLength(2)); |
| 1881 checkCreativeAsset(o[0]); | 1881 checkCreativeAsset(o[0]); |
| 1882 checkCreativeAsset(o[1]); | 1882 checkCreativeAsset(o[1]); |
| 1883 } | 1883 } |
| 1884 | 1884 |
| 1885 buildUnnamed3333() { | 1885 buildUnnamed3425() { |
| 1886 var o = new core.List<api.CreativeFieldAssignment>(); | 1886 var o = new core.List<api.CreativeFieldAssignment>(); |
| 1887 o.add(buildCreativeFieldAssignment()); | 1887 o.add(buildCreativeFieldAssignment()); |
| 1888 o.add(buildCreativeFieldAssignment()); | 1888 o.add(buildCreativeFieldAssignment()); |
| 1889 return o; | 1889 return o; |
| 1890 } | 1890 } |
| 1891 | 1891 |
| 1892 checkUnnamed3333(core.List<api.CreativeFieldAssignment> o) { | 1892 checkUnnamed3425(core.List<api.CreativeFieldAssignment> o) { |
| 1893 unittest.expect(o, unittest.hasLength(2)); | 1893 unittest.expect(o, unittest.hasLength(2)); |
| 1894 checkCreativeFieldAssignment(o[0]); | 1894 checkCreativeFieldAssignment(o[0]); |
| 1895 checkCreativeFieldAssignment(o[1]); | 1895 checkCreativeFieldAssignment(o[1]); |
| 1896 } | 1896 } |
| 1897 | 1897 |
| 1898 buildUnnamed3334() { | 1898 buildUnnamed3426() { |
| 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 checkUnnamed3334(core.List<core.String> o) { | 1905 checkUnnamed3426(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 buildUnnamed3335() { | 1911 buildUnnamed3427() { |
| 1912 var o = new core.List<api.CreativeCustomEvent>(); | 1912 var o = new core.List<api.CreativeCustomEvent>(); |
| 1913 o.add(buildCreativeCustomEvent()); | 1913 o.add(buildCreativeCustomEvent()); |
| 1914 o.add(buildCreativeCustomEvent()); | 1914 o.add(buildCreativeCustomEvent()); |
| 1915 return o; | 1915 return o; |
| 1916 } | 1916 } |
| 1917 | 1917 |
| 1918 checkUnnamed3335(core.List<api.CreativeCustomEvent> o) { | 1918 checkUnnamed3427(core.List<api.CreativeCustomEvent> o) { |
| 1919 unittest.expect(o, unittest.hasLength(2)); | 1919 unittest.expect(o, unittest.hasLength(2)); |
| 1920 checkCreativeCustomEvent(o[0]); | 1920 checkCreativeCustomEvent(o[0]); |
| 1921 checkCreativeCustomEvent(o[1]); | 1921 checkCreativeCustomEvent(o[1]); |
| 1922 } | 1922 } |
| 1923 | 1923 |
| 1924 buildUnnamed3336() { | 1924 buildUnnamed3428() { |
| 1925 var o = new core.List<api.ThirdPartyTrackingUrl>(); | 1925 var o = new core.List<api.ThirdPartyTrackingUrl>(); |
| 1926 o.add(buildThirdPartyTrackingUrl()); | 1926 o.add(buildThirdPartyTrackingUrl()); |
| 1927 o.add(buildThirdPartyTrackingUrl()); | 1927 o.add(buildThirdPartyTrackingUrl()); |
| 1928 return o; | 1928 return o; |
| 1929 } | 1929 } |
| 1930 | 1930 |
| 1931 checkUnnamed3336(core.List<api.ThirdPartyTrackingUrl> o) { | 1931 checkUnnamed3428(core.List<api.ThirdPartyTrackingUrl> o) { |
| 1932 unittest.expect(o, unittest.hasLength(2)); | 1932 unittest.expect(o, unittest.hasLength(2)); |
| 1933 checkThirdPartyTrackingUrl(o[0]); | 1933 checkThirdPartyTrackingUrl(o[0]); |
| 1934 checkThirdPartyTrackingUrl(o[1]); | 1934 checkThirdPartyTrackingUrl(o[1]); |
| 1935 } | 1935 } |
| 1936 | 1936 |
| 1937 buildUnnamed3337() { | 1937 buildUnnamed3429() { |
| 1938 var o = new core.List<api.CreativeCustomEvent>(); | 1938 var o = new core.List<api.CreativeCustomEvent>(); |
| 1939 o.add(buildCreativeCustomEvent()); | 1939 o.add(buildCreativeCustomEvent()); |
| 1940 o.add(buildCreativeCustomEvent()); | 1940 o.add(buildCreativeCustomEvent()); |
| 1941 return o; | 1941 return o; |
| 1942 } | 1942 } |
| 1943 | 1943 |
| 1944 checkUnnamed3337(core.List<api.CreativeCustomEvent> o) { | 1944 checkUnnamed3429(core.List<api.CreativeCustomEvent> o) { |
| 1945 unittest.expect(o, unittest.hasLength(2)); | 1945 unittest.expect(o, unittest.hasLength(2)); |
| 1946 checkCreativeCustomEvent(o[0]); | 1946 checkCreativeCustomEvent(o[0]); |
| 1947 checkCreativeCustomEvent(o[1]); | 1947 checkCreativeCustomEvent(o[1]); |
| 1948 } | 1948 } |
| 1949 | 1949 |
| 1950 core.int buildCounterCreative = 0; | 1950 core.int buildCounterCreative = 0; |
| 1951 buildCreative() { | 1951 buildCreative() { |
| 1952 var o = new api.Creative(); | 1952 var o = new api.Creative(); |
| 1953 buildCounterCreative++; | 1953 buildCounterCreative++; |
| 1954 if (buildCounterCreative < 3) { | 1954 if (buildCounterCreative < 3) { |
| 1955 o.accountId = "foo"; | 1955 o.accountId = "foo"; |
| 1956 o.active = true; | 1956 o.active = true; |
| 1957 o.adParameters = "foo"; | 1957 o.adParameters = "foo"; |
| 1958 o.adTagKeys = buildUnnamed3326(); | 1958 o.adTagKeys = buildUnnamed3418(); |
| 1959 o.advertiserId = "foo"; | 1959 o.advertiserId = "foo"; |
| 1960 o.allowScriptAccess = true; | 1960 o.allowScriptAccess = true; |
| 1961 o.archived = true; | 1961 o.archived = true; |
| 1962 o.artworkType = "foo"; | 1962 o.artworkType = "foo"; |
| 1963 o.authoringSource = "foo"; | 1963 o.authoringSource = "foo"; |
| 1964 o.authoringTool = "foo"; | 1964 o.authoringTool = "foo"; |
| 1965 o.autoAdvanceImages = true; | 1965 o.autoAdvanceImages = true; |
| 1966 o.backgroundColor = "foo"; | 1966 o.backgroundColor = "foo"; |
| 1967 o.backupImageClickThroughUrl = "foo"; | 1967 o.backupImageClickThroughUrl = "foo"; |
| 1968 o.backupImageFeatures = buildUnnamed3327(); | 1968 o.backupImageFeatures = buildUnnamed3419(); |
| 1969 o.backupImageReportingLabel = "foo"; | 1969 o.backupImageReportingLabel = "foo"; |
| 1970 o.backupImageTargetWindow = buildTargetWindow(); | 1970 o.backupImageTargetWindow = buildTargetWindow(); |
| 1971 o.clickTags = buildUnnamed3328(); | 1971 o.clickTags = buildUnnamed3420(); |
| 1972 o.commercialId = "foo"; | 1972 o.commercialId = "foo"; |
| 1973 o.companionCreatives = buildUnnamed3329(); | 1973 o.companionCreatives = buildUnnamed3421(); |
| 1974 o.compatibility = buildUnnamed3330(); | 1974 o.compatibility = buildUnnamed3422(); |
| 1975 o.convertFlashToHtml5 = true; | 1975 o.convertFlashToHtml5 = true; |
| 1976 o.counterCustomEvents = buildUnnamed3331(); | 1976 o.counterCustomEvents = buildUnnamed3423(); |
| 1977 o.creativeAssets = buildUnnamed3332(); | 1977 o.creativeAssets = buildUnnamed3424(); |
| 1978 o.creativeFieldAssignments = buildUnnamed3333(); | 1978 o.creativeFieldAssignments = buildUnnamed3425(); |
| 1979 o.customKeyValues = buildUnnamed3334(); | 1979 o.customKeyValues = buildUnnamed3426(); |
| 1980 o.exitCustomEvents = buildUnnamed3335(); | 1980 o.exitCustomEvents = buildUnnamed3427(); |
| 1981 o.fsCommand = buildFsCommand(); | 1981 o.fsCommand = buildFsCommand(); |
| 1982 o.htmlCode = "foo"; | 1982 o.htmlCode = "foo"; |
| 1983 o.htmlCodeLocked = true; | 1983 o.htmlCodeLocked = true; |
| 1984 o.id = "foo"; | 1984 o.id = "foo"; |
| 1985 o.idDimensionValue = buildDimensionValue(); | 1985 o.idDimensionValue = buildDimensionValue(); |
| 1986 o.kind = "foo"; | 1986 o.kind = "foo"; |
| 1987 o.lastModifiedInfo = buildLastModifiedInfo(); | 1987 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 1988 o.latestTraffickedCreativeId = "foo"; | 1988 o.latestTraffickedCreativeId = "foo"; |
| 1989 o.name = "foo"; | 1989 o.name = "foo"; |
| 1990 o.overrideCss = "foo"; | 1990 o.overrideCss = "foo"; |
| 1991 o.redirectUrl = "foo"; | 1991 o.redirectUrl = "foo"; |
| 1992 o.renderingId = "foo"; | 1992 o.renderingId = "foo"; |
| 1993 o.renderingIdDimensionValue = buildDimensionValue(); | 1993 o.renderingIdDimensionValue = buildDimensionValue(); |
| 1994 o.requiredFlashPluginVersion = "foo"; | 1994 o.requiredFlashPluginVersion = "foo"; |
| 1995 o.requiredFlashVersion = 42; | 1995 o.requiredFlashVersion = 42; |
| 1996 o.size = buildSize(); | 1996 o.size = buildSize(); |
| 1997 o.skippable = true; | 1997 o.skippable = true; |
| 1998 o.sslCompliant = true; | 1998 o.sslCompliant = true; |
| 1999 o.sslOverride = true; | 1999 o.sslOverride = true; |
| 2000 o.studioAdvertiserId = "foo"; | 2000 o.studioAdvertiserId = "foo"; |
| 2001 o.studioCreativeId = "foo"; | 2001 o.studioCreativeId = "foo"; |
| 2002 o.studioTraffickedCreativeId = "foo"; | 2002 o.studioTraffickedCreativeId = "foo"; |
| 2003 o.subaccountId = "foo"; | 2003 o.subaccountId = "foo"; |
| 2004 o.thirdPartyBackupImageImpressionsUrl = "foo"; | 2004 o.thirdPartyBackupImageImpressionsUrl = "foo"; |
| 2005 o.thirdPartyRichMediaImpressionsUrl = "foo"; | 2005 o.thirdPartyRichMediaImpressionsUrl = "foo"; |
| 2006 o.thirdPartyUrls = buildUnnamed3336(); | 2006 o.thirdPartyUrls = buildUnnamed3428(); |
| 2007 o.timerCustomEvents = buildUnnamed3337(); | 2007 o.timerCustomEvents = buildUnnamed3429(); |
| 2008 o.totalFileSize = "foo"; | 2008 o.totalFileSize = "foo"; |
| 2009 o.type = "foo"; | 2009 o.type = "foo"; |
| 2010 o.version = 42; | 2010 o.version = 42; |
| 2011 o.videoDescription = "foo"; | 2011 o.videoDescription = "foo"; |
| 2012 o.videoDuration = 42.0; | 2012 o.videoDuration = 42.0; |
| 2013 } | 2013 } |
| 2014 buildCounterCreative--; | 2014 buildCounterCreative--; |
| 2015 return o; | 2015 return o; |
| 2016 } | 2016 } |
| 2017 | 2017 |
| 2018 checkCreative(api.Creative o) { | 2018 checkCreative(api.Creative o) { |
| 2019 buildCounterCreative++; | 2019 buildCounterCreative++; |
| 2020 if (buildCounterCreative < 3) { | 2020 if (buildCounterCreative < 3) { |
| 2021 unittest.expect(o.accountId, unittest.equals('foo')); | 2021 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2022 unittest.expect(o.active, unittest.isTrue); | 2022 unittest.expect(o.active, unittest.isTrue); |
| 2023 unittest.expect(o.adParameters, unittest.equals('foo')); | 2023 unittest.expect(o.adParameters, unittest.equals('foo')); |
| 2024 checkUnnamed3326(o.adTagKeys); | 2024 checkUnnamed3418(o.adTagKeys); |
| 2025 unittest.expect(o.advertiserId, unittest.equals('foo')); | 2025 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 2026 unittest.expect(o.allowScriptAccess, unittest.isTrue); | 2026 unittest.expect(o.allowScriptAccess, unittest.isTrue); |
| 2027 unittest.expect(o.archived, unittest.isTrue); | 2027 unittest.expect(o.archived, unittest.isTrue); |
| 2028 unittest.expect(o.artworkType, unittest.equals('foo')); | 2028 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 2029 unittest.expect(o.authoringSource, unittest.equals('foo')); | 2029 unittest.expect(o.authoringSource, unittest.equals('foo')); |
| 2030 unittest.expect(o.authoringTool, unittest.equals('foo')); | 2030 unittest.expect(o.authoringTool, unittest.equals('foo')); |
| 2031 unittest.expect(o.autoAdvanceImages, unittest.isTrue); | 2031 unittest.expect(o.autoAdvanceImages, unittest.isTrue); |
| 2032 unittest.expect(o.backgroundColor, unittest.equals('foo')); | 2032 unittest.expect(o.backgroundColor, unittest.equals('foo')); |
| 2033 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); | 2033 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); |
| 2034 checkUnnamed3327(o.backupImageFeatures); | 2034 checkUnnamed3419(o.backupImageFeatures); |
| 2035 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); | 2035 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); |
| 2036 checkTargetWindow(o.backupImageTargetWindow); | 2036 checkTargetWindow(o.backupImageTargetWindow); |
| 2037 checkUnnamed3328(o.clickTags); | 2037 checkUnnamed3420(o.clickTags); |
| 2038 unittest.expect(o.commercialId, unittest.equals('foo')); | 2038 unittest.expect(o.commercialId, unittest.equals('foo')); |
| 2039 checkUnnamed3329(o.companionCreatives); | 2039 checkUnnamed3421(o.companionCreatives); |
| 2040 checkUnnamed3330(o.compatibility); | 2040 checkUnnamed3422(o.compatibility); |
| 2041 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); | 2041 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); |
| 2042 checkUnnamed3331(o.counterCustomEvents); | 2042 checkUnnamed3423(o.counterCustomEvents); |
| 2043 checkUnnamed3332(o.creativeAssets); | 2043 checkUnnamed3424(o.creativeAssets); |
| 2044 checkUnnamed3333(o.creativeFieldAssignments); | 2044 checkUnnamed3425(o.creativeFieldAssignments); |
| 2045 checkUnnamed3334(o.customKeyValues); | 2045 checkUnnamed3426(o.customKeyValues); |
| 2046 checkUnnamed3335(o.exitCustomEvents); | 2046 checkUnnamed3427(o.exitCustomEvents); |
| 2047 checkFsCommand(o.fsCommand); | 2047 checkFsCommand(o.fsCommand); |
| 2048 unittest.expect(o.htmlCode, unittest.equals('foo')); | 2048 unittest.expect(o.htmlCode, unittest.equals('foo')); |
| 2049 unittest.expect(o.htmlCodeLocked, unittest.isTrue); | 2049 unittest.expect(o.htmlCodeLocked, unittest.isTrue); |
| 2050 unittest.expect(o.id, unittest.equals('foo')); | 2050 unittest.expect(o.id, unittest.equals('foo')); |
| 2051 checkDimensionValue(o.idDimensionValue); | 2051 checkDimensionValue(o.idDimensionValue); |
| 2052 unittest.expect(o.kind, unittest.equals('foo')); | 2052 unittest.expect(o.kind, unittest.equals('foo')); |
| 2053 checkLastModifiedInfo(o.lastModifiedInfo); | 2053 checkLastModifiedInfo(o.lastModifiedInfo); |
| 2054 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); | 2054 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); |
| 2055 unittest.expect(o.name, unittest.equals('foo')); | 2055 unittest.expect(o.name, unittest.equals('foo')); |
| 2056 unittest.expect(o.overrideCss, unittest.equals('foo')); | 2056 unittest.expect(o.overrideCss, unittest.equals('foo')); |
| 2057 unittest.expect(o.redirectUrl, unittest.equals('foo')); | 2057 unittest.expect(o.redirectUrl, unittest.equals('foo')); |
| 2058 unittest.expect(o.renderingId, unittest.equals('foo')); | 2058 unittest.expect(o.renderingId, unittest.equals('foo')); |
| 2059 checkDimensionValue(o.renderingIdDimensionValue); | 2059 checkDimensionValue(o.renderingIdDimensionValue); |
| 2060 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); | 2060 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); |
| 2061 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); | 2061 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); |
| 2062 checkSize(o.size); | 2062 checkSize(o.size); |
| 2063 unittest.expect(o.skippable, unittest.isTrue); | 2063 unittest.expect(o.skippable, unittest.isTrue); |
| 2064 unittest.expect(o.sslCompliant, unittest.isTrue); | 2064 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 2065 unittest.expect(o.sslOverride, unittest.isTrue); | 2065 unittest.expect(o.sslOverride, unittest.isTrue); |
| 2066 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); | 2066 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); |
| 2067 unittest.expect(o.studioCreativeId, unittest.equals('foo')); | 2067 unittest.expect(o.studioCreativeId, unittest.equals('foo')); |
| 2068 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); | 2068 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); |
| 2069 unittest.expect(o.subaccountId, unittest.equals('foo')); | 2069 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 2070 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); | 2070 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); |
| 2071 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; | 2071 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; |
| 2072 checkUnnamed3336(o.thirdPartyUrls); | 2072 checkUnnamed3428(o.thirdPartyUrls); |
| 2073 checkUnnamed3337(o.timerCustomEvents); | 2073 checkUnnamed3429(o.timerCustomEvents); |
| 2074 unittest.expect(o.totalFileSize, unittest.equals('foo')); | 2074 unittest.expect(o.totalFileSize, unittest.equals('foo')); |
| 2075 unittest.expect(o.type, unittest.equals('foo')); | 2075 unittest.expect(o.type, unittest.equals('foo')); |
| 2076 unittest.expect(o.version, unittest.equals(42)); | 2076 unittest.expect(o.version, unittest.equals(42)); |
| 2077 unittest.expect(o.videoDescription, unittest.equals('foo')); | 2077 unittest.expect(o.videoDescription, unittest.equals('foo')); |
| 2078 unittest.expect(o.videoDuration, unittest.equals(42.0)); | 2078 unittest.expect(o.videoDuration, unittest.equals(42.0)); |
| 2079 } | 2079 } |
| 2080 buildCounterCreative--; | 2080 buildCounterCreative--; |
| 2081 } | 2081 } |
| 2082 | 2082 |
| 2083 buildUnnamed3338() { | 2083 buildUnnamed3430() { |
| 2084 var o = new core.List<core.String>(); | 2084 var o = new core.List<core.String>(); |
| 2085 o.add("foo"); | 2085 o.add("foo"); |
| 2086 o.add("foo"); | 2086 o.add("foo"); |
| 2087 return o; | 2087 return o; |
| 2088 } | 2088 } |
| 2089 | 2089 |
| 2090 checkUnnamed3338(core.List<core.String> o) { | 2090 checkUnnamed3430(core.List<core.String> o) { |
| 2091 unittest.expect(o, unittest.hasLength(2)); | 2091 unittest.expect(o, unittest.hasLength(2)); |
| 2092 unittest.expect(o[0], unittest.equals('foo')); | 2092 unittest.expect(o[0], unittest.equals('foo')); |
| 2093 unittest.expect(o[1], unittest.equals('foo')); | 2093 unittest.expect(o[1], unittest.equals('foo')); |
| 2094 } | 2094 } |
| 2095 | 2095 |
| 2096 core.int buildCounterCreativeAsset = 0; | 2096 core.int buildCounterCreativeAsset = 0; |
| 2097 buildCreativeAsset() { | 2097 buildCreativeAsset() { |
| 2098 var o = new api.CreativeAsset(); | 2098 var o = new api.CreativeAsset(); |
| 2099 buildCounterCreativeAsset++; | 2099 buildCounterCreativeAsset++; |
| 2100 if (buildCounterCreativeAsset < 3) { | 2100 if (buildCounterCreativeAsset < 3) { |
| 2101 o.actionScript3 = true; | 2101 o.actionScript3 = true; |
| 2102 o.active = true; | 2102 o.active = true; |
| 2103 o.alignment = "foo"; | 2103 o.alignment = "foo"; |
| 2104 o.artworkType = "foo"; | 2104 o.artworkType = "foo"; |
| 2105 o.assetIdentifier = buildCreativeAssetId(); | 2105 o.assetIdentifier = buildCreativeAssetId(); |
| 2106 o.backupImageExit = buildCreativeCustomEvent(); | 2106 o.backupImageExit = buildCreativeCustomEvent(); |
| 2107 o.bitRate = 42; | 2107 o.bitRate = 42; |
| 2108 o.childAssetType = "foo"; | 2108 o.childAssetType = "foo"; |
| 2109 o.collapsedSize = buildSize(); | 2109 o.collapsedSize = buildSize(); |
| 2110 o.customStartTimeValue = 42; | 2110 o.customStartTimeValue = 42; |
| 2111 o.detectedFeatures = buildUnnamed3338(); | 2111 o.detectedFeatures = buildUnnamed3430(); |
| 2112 o.displayType = "foo"; | 2112 o.displayType = "foo"; |
| 2113 o.duration = 42; | 2113 o.duration = 42; |
| 2114 o.durationType = "foo"; | 2114 o.durationType = "foo"; |
| 2115 o.expandedDimension = buildSize(); | 2115 o.expandedDimension = buildSize(); |
| 2116 o.fileSize = "foo"; | 2116 o.fileSize = "foo"; |
| 2117 o.flashVersion = 42; | 2117 o.flashVersion = 42; |
| 2118 o.hideFlashObjects = true; | 2118 o.hideFlashObjects = true; |
| 2119 o.hideSelectionBoxes = true; | 2119 o.hideSelectionBoxes = true; |
| 2120 o.horizontallyLocked = true; | 2120 o.horizontallyLocked = true; |
| 2121 o.id = "foo"; | 2121 o.id = "foo"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 2151 unittest.expect(o.actionScript3, unittest.isTrue); | 2151 unittest.expect(o.actionScript3, unittest.isTrue); |
| 2152 unittest.expect(o.active, unittest.isTrue); | 2152 unittest.expect(o.active, unittest.isTrue); |
| 2153 unittest.expect(o.alignment, unittest.equals('foo')); | 2153 unittest.expect(o.alignment, unittest.equals('foo')); |
| 2154 unittest.expect(o.artworkType, unittest.equals('foo')); | 2154 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 2155 checkCreativeAssetId(o.assetIdentifier); | 2155 checkCreativeAssetId(o.assetIdentifier); |
| 2156 checkCreativeCustomEvent(o.backupImageExit); | 2156 checkCreativeCustomEvent(o.backupImageExit); |
| 2157 unittest.expect(o.bitRate, unittest.equals(42)); | 2157 unittest.expect(o.bitRate, unittest.equals(42)); |
| 2158 unittest.expect(o.childAssetType, unittest.equals('foo')); | 2158 unittest.expect(o.childAssetType, unittest.equals('foo')); |
| 2159 checkSize(o.collapsedSize); | 2159 checkSize(o.collapsedSize); |
| 2160 unittest.expect(o.customStartTimeValue, unittest.equals(42)); | 2160 unittest.expect(o.customStartTimeValue, unittest.equals(42)); |
| 2161 checkUnnamed3338(o.detectedFeatures); | 2161 checkUnnamed3430(o.detectedFeatures); |
| 2162 unittest.expect(o.displayType, unittest.equals('foo')); | 2162 unittest.expect(o.displayType, unittest.equals('foo')); |
| 2163 unittest.expect(o.duration, unittest.equals(42)); | 2163 unittest.expect(o.duration, unittest.equals(42)); |
| 2164 unittest.expect(o.durationType, unittest.equals('foo')); | 2164 unittest.expect(o.durationType, unittest.equals('foo')); |
| 2165 checkSize(o.expandedDimension); | 2165 checkSize(o.expandedDimension); |
| 2166 unittest.expect(o.fileSize, unittest.equals('foo')); | 2166 unittest.expect(o.fileSize, unittest.equals('foo')); |
| 2167 unittest.expect(o.flashVersion, unittest.equals(42)); | 2167 unittest.expect(o.flashVersion, unittest.equals(42)); |
| 2168 unittest.expect(o.hideFlashObjects, unittest.isTrue); | 2168 unittest.expect(o.hideFlashObjects, unittest.isTrue); |
| 2169 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); | 2169 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); |
| 2170 unittest.expect(o.horizontallyLocked, unittest.isTrue); | 2170 unittest.expect(o.horizontallyLocked, unittest.isTrue); |
| 2171 unittest.expect(o.id, unittest.equals('foo')); | 2171 unittest.expect(o.id, unittest.equals('foo')); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2208 | 2208 |
| 2209 checkCreativeAssetId(api.CreativeAssetId o) { | 2209 checkCreativeAssetId(api.CreativeAssetId o) { |
| 2210 buildCounterCreativeAssetId++; | 2210 buildCounterCreativeAssetId++; |
| 2211 if (buildCounterCreativeAssetId < 3) { | 2211 if (buildCounterCreativeAssetId < 3) { |
| 2212 unittest.expect(o.name, unittest.equals('foo')); | 2212 unittest.expect(o.name, unittest.equals('foo')); |
| 2213 unittest.expect(o.type, unittest.equals('foo')); | 2213 unittest.expect(o.type, unittest.equals('foo')); |
| 2214 } | 2214 } |
| 2215 buildCounterCreativeAssetId--; | 2215 buildCounterCreativeAssetId--; |
| 2216 } | 2216 } |
| 2217 | 2217 |
| 2218 buildUnnamed3339() { | 2218 buildUnnamed3431() { |
| 2219 var o = new core.List<api.ClickTag>(); | 2219 var o = new core.List<api.ClickTag>(); |
| 2220 o.add(buildClickTag()); | 2220 o.add(buildClickTag()); |
| 2221 o.add(buildClickTag()); | 2221 o.add(buildClickTag()); |
| 2222 return o; | 2222 return o; |
| 2223 } | 2223 } |
| 2224 | 2224 |
| 2225 checkUnnamed3339(core.List<api.ClickTag> o) { | 2225 checkUnnamed3431(core.List<api.ClickTag> o) { |
| 2226 unittest.expect(o, unittest.hasLength(2)); | 2226 unittest.expect(o, unittest.hasLength(2)); |
| 2227 checkClickTag(o[0]); | 2227 checkClickTag(o[0]); |
| 2228 checkClickTag(o[1]); | 2228 checkClickTag(o[1]); |
| 2229 } | 2229 } |
| 2230 | 2230 |
| 2231 buildUnnamed3340() { | 2231 buildUnnamed3432() { |
| 2232 var o = new core.List<core.String>(); | 2232 var o = new core.List<core.String>(); |
| 2233 o.add("foo"); | 2233 o.add("foo"); |
| 2234 o.add("foo"); | 2234 o.add("foo"); |
| 2235 return o; | 2235 return o; |
| 2236 } | 2236 } |
| 2237 | 2237 |
| 2238 checkUnnamed3340(core.List<core.String> o) { | 2238 checkUnnamed3432(core.List<core.String> o) { |
| 2239 unittest.expect(o, unittest.hasLength(2)); | 2239 unittest.expect(o, unittest.hasLength(2)); |
| 2240 unittest.expect(o[0], unittest.equals('foo')); | 2240 unittest.expect(o[0], unittest.equals('foo')); |
| 2241 unittest.expect(o[1], unittest.equals('foo')); | 2241 unittest.expect(o[1], unittest.equals('foo')); |
| 2242 } | 2242 } |
| 2243 | 2243 |
| 2244 buildUnnamed3341() { | 2244 buildUnnamed3433() { |
| 2245 var o = new core.List<core.String>(); | 2245 var o = new core.List<core.String>(); |
| 2246 o.add("foo"); | 2246 o.add("foo"); |
| 2247 o.add("foo"); | 2247 o.add("foo"); |
| 2248 return o; | 2248 return o; |
| 2249 } | 2249 } |
| 2250 | 2250 |
| 2251 checkUnnamed3341(core.List<core.String> o) { | 2251 checkUnnamed3433(core.List<core.String> o) { |
| 2252 unittest.expect(o, unittest.hasLength(2)); | 2252 unittest.expect(o, unittest.hasLength(2)); |
| 2253 unittest.expect(o[0], unittest.equals('foo')); | 2253 unittest.expect(o[0], unittest.equals('foo')); |
| 2254 unittest.expect(o[1], unittest.equals('foo')); | 2254 unittest.expect(o[1], unittest.equals('foo')); |
| 2255 } | 2255 } |
| 2256 | 2256 |
| 2257 core.int buildCounterCreativeAssetMetadata = 0; | 2257 core.int buildCounterCreativeAssetMetadata = 0; |
| 2258 buildCreativeAssetMetadata() { | 2258 buildCreativeAssetMetadata() { |
| 2259 var o = new api.CreativeAssetMetadata(); | 2259 var o = new api.CreativeAssetMetadata(); |
| 2260 buildCounterCreativeAssetMetadata++; | 2260 buildCounterCreativeAssetMetadata++; |
| 2261 if (buildCounterCreativeAssetMetadata < 3) { | 2261 if (buildCounterCreativeAssetMetadata < 3) { |
| 2262 o.assetIdentifier = buildCreativeAssetId(); | 2262 o.assetIdentifier = buildCreativeAssetId(); |
| 2263 o.clickTags = buildUnnamed3339(); | 2263 o.clickTags = buildUnnamed3431(); |
| 2264 o.detectedFeatures = buildUnnamed3340(); | 2264 o.detectedFeatures = buildUnnamed3432(); |
| 2265 o.kind = "foo"; | 2265 o.kind = "foo"; |
| 2266 o.warnedValidationRules = buildUnnamed3341(); | 2266 o.warnedValidationRules = buildUnnamed3433(); |
| 2267 } | 2267 } |
| 2268 buildCounterCreativeAssetMetadata--; | 2268 buildCounterCreativeAssetMetadata--; |
| 2269 return o; | 2269 return o; |
| 2270 } | 2270 } |
| 2271 | 2271 |
| 2272 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { | 2272 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { |
| 2273 buildCounterCreativeAssetMetadata++; | 2273 buildCounterCreativeAssetMetadata++; |
| 2274 if (buildCounterCreativeAssetMetadata < 3) { | 2274 if (buildCounterCreativeAssetMetadata < 3) { |
| 2275 checkCreativeAssetId(o.assetIdentifier); | 2275 checkCreativeAssetId(o.assetIdentifier); |
| 2276 checkUnnamed3339(o.clickTags); | 2276 checkUnnamed3431(o.clickTags); |
| 2277 checkUnnamed3340(o.detectedFeatures); | 2277 checkUnnamed3432(o.detectedFeatures); |
| 2278 unittest.expect(o.kind, unittest.equals('foo')); | 2278 unittest.expect(o.kind, unittest.equals('foo')); |
| 2279 checkUnnamed3341(o.warnedValidationRules); | 2279 checkUnnamed3433(o.warnedValidationRules); |
| 2280 } | 2280 } |
| 2281 buildCounterCreativeAssetMetadata--; | 2281 buildCounterCreativeAssetMetadata--; |
| 2282 } | 2282 } |
| 2283 | 2283 |
| 2284 buildUnnamed3342() { | 2284 buildUnnamed3434() { |
| 2285 var o = new core.List<api.CompanionClickThroughOverride>(); | 2285 var o = new core.List<api.CompanionClickThroughOverride>(); |
| 2286 o.add(buildCompanionClickThroughOverride()); | 2286 o.add(buildCompanionClickThroughOverride()); |
| 2287 o.add(buildCompanionClickThroughOverride()); | 2287 o.add(buildCompanionClickThroughOverride()); |
| 2288 return o; | 2288 return o; |
| 2289 } | 2289 } |
| 2290 | 2290 |
| 2291 checkUnnamed3342(core.List<api.CompanionClickThroughOverride> o) { | 2291 checkUnnamed3434(core.List<api.CompanionClickThroughOverride> o) { |
| 2292 unittest.expect(o, unittest.hasLength(2)); | 2292 unittest.expect(o, unittest.hasLength(2)); |
| 2293 checkCompanionClickThroughOverride(o[0]); | 2293 checkCompanionClickThroughOverride(o[0]); |
| 2294 checkCompanionClickThroughOverride(o[1]); | 2294 checkCompanionClickThroughOverride(o[1]); |
| 2295 } | 2295 } |
| 2296 | 2296 |
| 2297 buildUnnamed3343() { | 2297 buildUnnamed3435() { |
| 2298 var o = new core.List<api.CreativeGroupAssignment>(); | 2298 var o = new core.List<api.CreativeGroupAssignment>(); |
| 2299 o.add(buildCreativeGroupAssignment()); | 2299 o.add(buildCreativeGroupAssignment()); |
| 2300 o.add(buildCreativeGroupAssignment()); | 2300 o.add(buildCreativeGroupAssignment()); |
| 2301 return o; | 2301 return o; |
| 2302 } | 2302 } |
| 2303 | 2303 |
| 2304 checkUnnamed3343(core.List<api.CreativeGroupAssignment> o) { | 2304 checkUnnamed3435(core.List<api.CreativeGroupAssignment> o) { |
| 2305 unittest.expect(o, unittest.hasLength(2)); | 2305 unittest.expect(o, unittest.hasLength(2)); |
| 2306 checkCreativeGroupAssignment(o[0]); | 2306 checkCreativeGroupAssignment(o[0]); |
| 2307 checkCreativeGroupAssignment(o[1]); | 2307 checkCreativeGroupAssignment(o[1]); |
| 2308 } | 2308 } |
| 2309 | 2309 |
| 2310 buildUnnamed3344() { | 2310 buildUnnamed3436() { |
| 2311 var o = new core.List<api.RichMediaExitOverride>(); | 2311 var o = new core.List<api.RichMediaExitOverride>(); |
| 2312 o.add(buildRichMediaExitOverride()); | 2312 o.add(buildRichMediaExitOverride()); |
| 2313 o.add(buildRichMediaExitOverride()); | 2313 o.add(buildRichMediaExitOverride()); |
| 2314 return o; | 2314 return o; |
| 2315 } | 2315 } |
| 2316 | 2316 |
| 2317 checkUnnamed3344(core.List<api.RichMediaExitOverride> o) { | 2317 checkUnnamed3436(core.List<api.RichMediaExitOverride> o) { |
| 2318 unittest.expect(o, unittest.hasLength(2)); | 2318 unittest.expect(o, unittest.hasLength(2)); |
| 2319 checkRichMediaExitOverride(o[0]); | 2319 checkRichMediaExitOverride(o[0]); |
| 2320 checkRichMediaExitOverride(o[1]); | 2320 checkRichMediaExitOverride(o[1]); |
| 2321 } | 2321 } |
| 2322 | 2322 |
| 2323 core.int buildCounterCreativeAssignment = 0; | 2323 core.int buildCounterCreativeAssignment = 0; |
| 2324 buildCreativeAssignment() { | 2324 buildCreativeAssignment() { |
| 2325 var o = new api.CreativeAssignment(); | 2325 var o = new api.CreativeAssignment(); |
| 2326 buildCounterCreativeAssignment++; | 2326 buildCounterCreativeAssignment++; |
| 2327 if (buildCounterCreativeAssignment < 3) { | 2327 if (buildCounterCreativeAssignment < 3) { |
| 2328 o.active = true; | 2328 o.active = true; |
| 2329 o.applyEventTags = true; | 2329 o.applyEventTags = true; |
| 2330 o.clickThroughUrl = buildClickThroughUrl(); | 2330 o.clickThroughUrl = buildClickThroughUrl(); |
| 2331 o.companionCreativeOverrides = buildUnnamed3342(); | 2331 o.companionCreativeOverrides = buildUnnamed3434(); |
| 2332 o.creativeGroupAssignments = buildUnnamed3343(); | 2332 o.creativeGroupAssignments = buildUnnamed3435(); |
| 2333 o.creativeId = "foo"; | 2333 o.creativeId = "foo"; |
| 2334 o.creativeIdDimensionValue = buildDimensionValue(); | 2334 o.creativeIdDimensionValue = buildDimensionValue(); |
| 2335 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2335 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2336 o.richMediaExitOverrides = buildUnnamed3344(); | 2336 o.richMediaExitOverrides = buildUnnamed3436(); |
| 2337 o.sequence = 42; | 2337 o.sequence = 42; |
| 2338 o.sslCompliant = true; | 2338 o.sslCompliant = true; |
| 2339 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2339 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2340 o.weight = 42; | 2340 o.weight = 42; |
| 2341 } | 2341 } |
| 2342 buildCounterCreativeAssignment--; | 2342 buildCounterCreativeAssignment--; |
| 2343 return o; | 2343 return o; |
| 2344 } | 2344 } |
| 2345 | 2345 |
| 2346 checkCreativeAssignment(api.CreativeAssignment o) { | 2346 checkCreativeAssignment(api.CreativeAssignment o) { |
| 2347 buildCounterCreativeAssignment++; | 2347 buildCounterCreativeAssignment++; |
| 2348 if (buildCounterCreativeAssignment < 3) { | 2348 if (buildCounterCreativeAssignment < 3) { |
| 2349 unittest.expect(o.active, unittest.isTrue); | 2349 unittest.expect(o.active, unittest.isTrue); |
| 2350 unittest.expect(o.applyEventTags, unittest.isTrue); | 2350 unittest.expect(o.applyEventTags, unittest.isTrue); |
| 2351 checkClickThroughUrl(o.clickThroughUrl); | 2351 checkClickThroughUrl(o.clickThroughUrl); |
| 2352 checkUnnamed3342(o.companionCreativeOverrides); | 2352 checkUnnamed3434(o.companionCreativeOverrides); |
| 2353 checkUnnamed3343(o.creativeGroupAssignments); | 2353 checkUnnamed3435(o.creativeGroupAssignments); |
| 2354 unittest.expect(o.creativeId, unittest.equals('foo')); | 2354 unittest.expect(o.creativeId, unittest.equals('foo')); |
| 2355 checkDimensionValue(o.creativeIdDimensionValue); | 2355 checkDimensionValue(o.creativeIdDimensionValue); |
| 2356 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2356 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2357 checkUnnamed3344(o.richMediaExitOverrides); | 2357 checkUnnamed3436(o.richMediaExitOverrides); |
| 2358 unittest.expect(o.sequence, unittest.equals(42)); | 2358 unittest.expect(o.sequence, unittest.equals(42)); |
| 2359 unittest.expect(o.sslCompliant, unittest.isTrue); | 2359 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 2360 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 2360 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 2361 unittest.expect(o.weight, unittest.equals(42)); | 2361 unittest.expect(o.weight, unittest.equals(42)); |
| 2362 } | 2362 } |
| 2363 buildCounterCreativeAssignment--; | 2363 buildCounterCreativeAssignment--; |
| 2364 } | 2364 } |
| 2365 | 2365 |
| 2366 core.int buildCounterCreativeCustomEvent = 0; | 2366 core.int buildCounterCreativeCustomEvent = 0; |
| 2367 buildCreativeCustomEvent() { | 2367 buildCreativeCustomEvent() { |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2468 checkCreativeFieldValue(api.CreativeFieldValue o) { | 2468 checkCreativeFieldValue(api.CreativeFieldValue o) { |
| 2469 buildCounterCreativeFieldValue++; | 2469 buildCounterCreativeFieldValue++; |
| 2470 if (buildCounterCreativeFieldValue < 3) { | 2470 if (buildCounterCreativeFieldValue < 3) { |
| 2471 unittest.expect(o.id, unittest.equals('foo')); | 2471 unittest.expect(o.id, unittest.equals('foo')); |
| 2472 unittest.expect(o.kind, unittest.equals('foo')); | 2472 unittest.expect(o.kind, unittest.equals('foo')); |
| 2473 unittest.expect(o.value, unittest.equals('foo')); | 2473 unittest.expect(o.value, unittest.equals('foo')); |
| 2474 } | 2474 } |
| 2475 buildCounterCreativeFieldValue--; | 2475 buildCounterCreativeFieldValue--; |
| 2476 } | 2476 } |
| 2477 | 2477 |
| 2478 buildUnnamed3345() { | 2478 buildUnnamed3437() { |
| 2479 var o = new core.List<api.CreativeFieldValue>(); | 2479 var o = new core.List<api.CreativeFieldValue>(); |
| 2480 o.add(buildCreativeFieldValue()); | 2480 o.add(buildCreativeFieldValue()); |
| 2481 o.add(buildCreativeFieldValue()); | 2481 o.add(buildCreativeFieldValue()); |
| 2482 return o; | 2482 return o; |
| 2483 } | 2483 } |
| 2484 | 2484 |
| 2485 checkUnnamed3345(core.List<api.CreativeFieldValue> o) { | 2485 checkUnnamed3437(core.List<api.CreativeFieldValue> o) { |
| 2486 unittest.expect(o, unittest.hasLength(2)); | 2486 unittest.expect(o, unittest.hasLength(2)); |
| 2487 checkCreativeFieldValue(o[0]); | 2487 checkCreativeFieldValue(o[0]); |
| 2488 checkCreativeFieldValue(o[1]); | 2488 checkCreativeFieldValue(o[1]); |
| 2489 } | 2489 } |
| 2490 | 2490 |
| 2491 core.int buildCounterCreativeFieldValuesListResponse = 0; | 2491 core.int buildCounterCreativeFieldValuesListResponse = 0; |
| 2492 buildCreativeFieldValuesListResponse() { | 2492 buildCreativeFieldValuesListResponse() { |
| 2493 var o = new api.CreativeFieldValuesListResponse(); | 2493 var o = new api.CreativeFieldValuesListResponse(); |
| 2494 buildCounterCreativeFieldValuesListResponse++; | 2494 buildCounterCreativeFieldValuesListResponse++; |
| 2495 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2495 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2496 o.creativeFieldValues = buildUnnamed3345(); | 2496 o.creativeFieldValues = buildUnnamed3437(); |
| 2497 o.kind = "foo"; | 2497 o.kind = "foo"; |
| 2498 o.nextPageToken = "foo"; | 2498 o.nextPageToken = "foo"; |
| 2499 } | 2499 } |
| 2500 buildCounterCreativeFieldValuesListResponse--; | 2500 buildCounterCreativeFieldValuesListResponse--; |
| 2501 return o; | 2501 return o; |
| 2502 } | 2502 } |
| 2503 | 2503 |
| 2504 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { | 2504 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { |
| 2505 buildCounterCreativeFieldValuesListResponse++; | 2505 buildCounterCreativeFieldValuesListResponse++; |
| 2506 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2506 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2507 checkUnnamed3345(o.creativeFieldValues); | 2507 checkUnnamed3437(o.creativeFieldValues); |
| 2508 unittest.expect(o.kind, unittest.equals('foo')); | 2508 unittest.expect(o.kind, unittest.equals('foo')); |
| 2509 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2509 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2510 } | 2510 } |
| 2511 buildCounterCreativeFieldValuesListResponse--; | 2511 buildCounterCreativeFieldValuesListResponse--; |
| 2512 } | 2512 } |
| 2513 | 2513 |
| 2514 buildUnnamed3346() { | 2514 buildUnnamed3438() { |
| 2515 var o = new core.List<api.CreativeField>(); | 2515 var o = new core.List<api.CreativeField>(); |
| 2516 o.add(buildCreativeField()); | 2516 o.add(buildCreativeField()); |
| 2517 o.add(buildCreativeField()); | 2517 o.add(buildCreativeField()); |
| 2518 return o; | 2518 return o; |
| 2519 } | 2519 } |
| 2520 | 2520 |
| 2521 checkUnnamed3346(core.List<api.CreativeField> o) { | 2521 checkUnnamed3438(core.List<api.CreativeField> o) { |
| 2522 unittest.expect(o, unittest.hasLength(2)); | 2522 unittest.expect(o, unittest.hasLength(2)); |
| 2523 checkCreativeField(o[0]); | 2523 checkCreativeField(o[0]); |
| 2524 checkCreativeField(o[1]); | 2524 checkCreativeField(o[1]); |
| 2525 } | 2525 } |
| 2526 | 2526 |
| 2527 core.int buildCounterCreativeFieldsListResponse = 0; | 2527 core.int buildCounterCreativeFieldsListResponse = 0; |
| 2528 buildCreativeFieldsListResponse() { | 2528 buildCreativeFieldsListResponse() { |
| 2529 var o = new api.CreativeFieldsListResponse(); | 2529 var o = new api.CreativeFieldsListResponse(); |
| 2530 buildCounterCreativeFieldsListResponse++; | 2530 buildCounterCreativeFieldsListResponse++; |
| 2531 if (buildCounterCreativeFieldsListResponse < 3) { | 2531 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2532 o.creativeFields = buildUnnamed3346(); | 2532 o.creativeFields = buildUnnamed3438(); |
| 2533 o.kind = "foo"; | 2533 o.kind = "foo"; |
| 2534 o.nextPageToken = "foo"; | 2534 o.nextPageToken = "foo"; |
| 2535 } | 2535 } |
| 2536 buildCounterCreativeFieldsListResponse--; | 2536 buildCounterCreativeFieldsListResponse--; |
| 2537 return o; | 2537 return o; |
| 2538 } | 2538 } |
| 2539 | 2539 |
| 2540 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { | 2540 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { |
| 2541 buildCounterCreativeFieldsListResponse++; | 2541 buildCounterCreativeFieldsListResponse++; |
| 2542 if (buildCounterCreativeFieldsListResponse < 3) { | 2542 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2543 checkUnnamed3346(o.creativeFields); | 2543 checkUnnamed3438(o.creativeFields); |
| 2544 unittest.expect(o.kind, unittest.equals('foo')); | 2544 unittest.expect(o.kind, unittest.equals('foo')); |
| 2545 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2545 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2546 } | 2546 } |
| 2547 buildCounterCreativeFieldsListResponse--; | 2547 buildCounterCreativeFieldsListResponse--; |
| 2548 } | 2548 } |
| 2549 | 2549 |
| 2550 core.int buildCounterCreativeGroup = 0; | 2550 core.int buildCounterCreativeGroup = 0; |
| 2551 buildCreativeGroup() { | 2551 buildCreativeGroup() { |
| 2552 var o = new api.CreativeGroup(); | 2552 var o = new api.CreativeGroup(); |
| 2553 buildCounterCreativeGroup++; | 2553 buildCounterCreativeGroup++; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2594 | 2594 |
| 2595 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { | 2595 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { |
| 2596 buildCounterCreativeGroupAssignment++; | 2596 buildCounterCreativeGroupAssignment++; |
| 2597 if (buildCounterCreativeGroupAssignment < 3) { | 2597 if (buildCounterCreativeGroupAssignment < 3) { |
| 2598 unittest.expect(o.creativeGroupId, unittest.equals('foo')); | 2598 unittest.expect(o.creativeGroupId, unittest.equals('foo')); |
| 2599 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); | 2599 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); |
| 2600 } | 2600 } |
| 2601 buildCounterCreativeGroupAssignment--; | 2601 buildCounterCreativeGroupAssignment--; |
| 2602 } | 2602 } |
| 2603 | 2603 |
| 2604 buildUnnamed3347() { | 2604 buildUnnamed3439() { |
| 2605 var o = new core.List<api.CreativeGroup>(); | 2605 var o = new core.List<api.CreativeGroup>(); |
| 2606 o.add(buildCreativeGroup()); | 2606 o.add(buildCreativeGroup()); |
| 2607 o.add(buildCreativeGroup()); | 2607 o.add(buildCreativeGroup()); |
| 2608 return o; | 2608 return o; |
| 2609 } | 2609 } |
| 2610 | 2610 |
| 2611 checkUnnamed3347(core.List<api.CreativeGroup> o) { | 2611 checkUnnamed3439(core.List<api.CreativeGroup> o) { |
| 2612 unittest.expect(o, unittest.hasLength(2)); | 2612 unittest.expect(o, unittest.hasLength(2)); |
| 2613 checkCreativeGroup(o[0]); | 2613 checkCreativeGroup(o[0]); |
| 2614 checkCreativeGroup(o[1]); | 2614 checkCreativeGroup(o[1]); |
| 2615 } | 2615 } |
| 2616 | 2616 |
| 2617 core.int buildCounterCreativeGroupsListResponse = 0; | 2617 core.int buildCounterCreativeGroupsListResponse = 0; |
| 2618 buildCreativeGroupsListResponse() { | 2618 buildCreativeGroupsListResponse() { |
| 2619 var o = new api.CreativeGroupsListResponse(); | 2619 var o = new api.CreativeGroupsListResponse(); |
| 2620 buildCounterCreativeGroupsListResponse++; | 2620 buildCounterCreativeGroupsListResponse++; |
| 2621 if (buildCounterCreativeGroupsListResponse < 3) { | 2621 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2622 o.creativeGroups = buildUnnamed3347(); | 2622 o.creativeGroups = buildUnnamed3439(); |
| 2623 o.kind = "foo"; | 2623 o.kind = "foo"; |
| 2624 o.nextPageToken = "foo"; | 2624 o.nextPageToken = "foo"; |
| 2625 } | 2625 } |
| 2626 buildCounterCreativeGroupsListResponse--; | 2626 buildCounterCreativeGroupsListResponse--; |
| 2627 return o; | 2627 return o; |
| 2628 } | 2628 } |
| 2629 | 2629 |
| 2630 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { | 2630 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { |
| 2631 buildCounterCreativeGroupsListResponse++; | 2631 buildCounterCreativeGroupsListResponse++; |
| 2632 if (buildCounterCreativeGroupsListResponse < 3) { | 2632 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2633 checkUnnamed3347(o.creativeGroups); | 2633 checkUnnamed3439(o.creativeGroups); |
| 2634 unittest.expect(o.kind, unittest.equals('foo')); | 2634 unittest.expect(o.kind, unittest.equals('foo')); |
| 2635 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2635 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2636 } | 2636 } |
| 2637 buildCounterCreativeGroupsListResponse--; | 2637 buildCounterCreativeGroupsListResponse--; |
| 2638 } | 2638 } |
| 2639 | 2639 |
| 2640 buildUnnamed3348() { | 2640 buildUnnamed3440() { |
| 2641 var o = new core.List<api.OptimizationActivity>(); | 2641 var o = new core.List<api.OptimizationActivity>(); |
| 2642 o.add(buildOptimizationActivity()); | 2642 o.add(buildOptimizationActivity()); |
| 2643 o.add(buildOptimizationActivity()); | 2643 o.add(buildOptimizationActivity()); |
| 2644 return o; | 2644 return o; |
| 2645 } | 2645 } |
| 2646 | 2646 |
| 2647 checkUnnamed3348(core.List<api.OptimizationActivity> o) { | 2647 checkUnnamed3440(core.List<api.OptimizationActivity> o) { |
| 2648 unittest.expect(o, unittest.hasLength(2)); | 2648 unittest.expect(o, unittest.hasLength(2)); |
| 2649 checkOptimizationActivity(o[0]); | 2649 checkOptimizationActivity(o[0]); |
| 2650 checkOptimizationActivity(o[1]); | 2650 checkOptimizationActivity(o[1]); |
| 2651 } | 2651 } |
| 2652 | 2652 |
| 2653 core.int buildCounterCreativeOptimizationConfiguration = 0; | 2653 core.int buildCounterCreativeOptimizationConfiguration = 0; |
| 2654 buildCreativeOptimizationConfiguration() { | 2654 buildCreativeOptimizationConfiguration() { |
| 2655 var o = new api.CreativeOptimizationConfiguration(); | 2655 var o = new api.CreativeOptimizationConfiguration(); |
| 2656 buildCounterCreativeOptimizationConfiguration++; | 2656 buildCounterCreativeOptimizationConfiguration++; |
| 2657 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2657 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2658 o.id = "foo"; | 2658 o.id = "foo"; |
| 2659 o.name = "foo"; | 2659 o.name = "foo"; |
| 2660 o.optimizationActivitys = buildUnnamed3348(); | 2660 o.optimizationActivitys = buildUnnamed3440(); |
| 2661 o.optimizationModel = "foo"; | 2661 o.optimizationModel = "foo"; |
| 2662 } | 2662 } |
| 2663 buildCounterCreativeOptimizationConfiguration--; | 2663 buildCounterCreativeOptimizationConfiguration--; |
| 2664 return o; | 2664 return o; |
| 2665 } | 2665 } |
| 2666 | 2666 |
| 2667 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ | 2667 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ |
| 2668 buildCounterCreativeOptimizationConfiguration++; | 2668 buildCounterCreativeOptimizationConfiguration++; |
| 2669 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2669 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2670 unittest.expect(o.id, unittest.equals('foo')); | 2670 unittest.expect(o.id, unittest.equals('foo')); |
| 2671 unittest.expect(o.name, unittest.equals('foo')); | 2671 unittest.expect(o.name, unittest.equals('foo')); |
| 2672 checkUnnamed3348(o.optimizationActivitys); | 2672 checkUnnamed3440(o.optimizationActivitys); |
| 2673 unittest.expect(o.optimizationModel, unittest.equals('foo')); | 2673 unittest.expect(o.optimizationModel, unittest.equals('foo')); |
| 2674 } | 2674 } |
| 2675 buildCounterCreativeOptimizationConfiguration--; | 2675 buildCounterCreativeOptimizationConfiguration--; |
| 2676 } | 2676 } |
| 2677 | 2677 |
| 2678 buildUnnamed3349() { | 2678 buildUnnamed3441() { |
| 2679 var o = new core.List<api.CreativeAssignment>(); | 2679 var o = new core.List<api.CreativeAssignment>(); |
| 2680 o.add(buildCreativeAssignment()); | 2680 o.add(buildCreativeAssignment()); |
| 2681 o.add(buildCreativeAssignment()); | 2681 o.add(buildCreativeAssignment()); |
| 2682 return o; | 2682 return o; |
| 2683 } | 2683 } |
| 2684 | 2684 |
| 2685 checkUnnamed3349(core.List<api.CreativeAssignment> o) { | 2685 checkUnnamed3441(core.List<api.CreativeAssignment> o) { |
| 2686 unittest.expect(o, unittest.hasLength(2)); | 2686 unittest.expect(o, unittest.hasLength(2)); |
| 2687 checkCreativeAssignment(o[0]); | 2687 checkCreativeAssignment(o[0]); |
| 2688 checkCreativeAssignment(o[1]); | 2688 checkCreativeAssignment(o[1]); |
| 2689 } | 2689 } |
| 2690 | 2690 |
| 2691 core.int buildCounterCreativeRotation = 0; | 2691 core.int buildCounterCreativeRotation = 0; |
| 2692 buildCreativeRotation() { | 2692 buildCreativeRotation() { |
| 2693 var o = new api.CreativeRotation(); | 2693 var o = new api.CreativeRotation(); |
| 2694 buildCounterCreativeRotation++; | 2694 buildCounterCreativeRotation++; |
| 2695 if (buildCounterCreativeRotation < 3) { | 2695 if (buildCounterCreativeRotation < 3) { |
| 2696 o.creativeAssignments = buildUnnamed3349(); | 2696 o.creativeAssignments = buildUnnamed3441(); |
| 2697 o.creativeOptimizationConfigurationId = "foo"; | 2697 o.creativeOptimizationConfigurationId = "foo"; |
| 2698 o.type = "foo"; | 2698 o.type = "foo"; |
| 2699 o.weightCalculationStrategy = "foo"; | 2699 o.weightCalculationStrategy = "foo"; |
| 2700 } | 2700 } |
| 2701 buildCounterCreativeRotation--; | 2701 buildCounterCreativeRotation--; |
| 2702 return o; | 2702 return o; |
| 2703 } | 2703 } |
| 2704 | 2704 |
| 2705 checkCreativeRotation(api.CreativeRotation o) { | 2705 checkCreativeRotation(api.CreativeRotation o) { |
| 2706 buildCounterCreativeRotation++; | 2706 buildCounterCreativeRotation++; |
| 2707 if (buildCounterCreativeRotation < 3) { | 2707 if (buildCounterCreativeRotation < 3) { |
| 2708 checkUnnamed3349(o.creativeAssignments); | 2708 checkUnnamed3441(o.creativeAssignments); |
| 2709 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); | 2709 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); |
| 2710 unittest.expect(o.type, unittest.equals('foo')); | 2710 unittest.expect(o.type, unittest.equals('foo')); |
| 2711 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); | 2711 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); |
| 2712 } | 2712 } |
| 2713 buildCounterCreativeRotation--; | 2713 buildCounterCreativeRotation--; |
| 2714 } | 2714 } |
| 2715 | 2715 |
| 2716 core.int buildCounterCreativeSettings = 0; | 2716 core.int buildCounterCreativeSettings = 0; |
| 2717 buildCreativeSettings() { | 2717 buildCreativeSettings() { |
| 2718 var o = new api.CreativeSettings(); | 2718 var o = new api.CreativeSettings(); |
| 2719 buildCounterCreativeSettings++; | 2719 buildCounterCreativeSettings++; |
| 2720 if (buildCounterCreativeSettings < 3) { | 2720 if (buildCounterCreativeSettings < 3) { |
| 2721 o.iFrameFooter = "foo"; | 2721 o.iFrameFooter = "foo"; |
| 2722 o.iFrameHeader = "foo"; | 2722 o.iFrameHeader = "foo"; |
| 2723 } | 2723 } |
| 2724 buildCounterCreativeSettings--; | 2724 buildCounterCreativeSettings--; |
| 2725 return o; | 2725 return o; |
| 2726 } | 2726 } |
| 2727 | 2727 |
| 2728 checkCreativeSettings(api.CreativeSettings o) { | 2728 checkCreativeSettings(api.CreativeSettings o) { |
| 2729 buildCounterCreativeSettings++; | 2729 buildCounterCreativeSettings++; |
| 2730 if (buildCounterCreativeSettings < 3) { | 2730 if (buildCounterCreativeSettings < 3) { |
| 2731 unittest.expect(o.iFrameFooter, unittest.equals('foo')); | 2731 unittest.expect(o.iFrameFooter, unittest.equals('foo')); |
| 2732 unittest.expect(o.iFrameHeader, unittest.equals('foo')); | 2732 unittest.expect(o.iFrameHeader, unittest.equals('foo')); |
| 2733 } | 2733 } |
| 2734 buildCounterCreativeSettings--; | 2734 buildCounterCreativeSettings--; |
| 2735 } | 2735 } |
| 2736 | 2736 |
| 2737 buildUnnamed3350() { | 2737 buildUnnamed3442() { |
| 2738 var o = new core.List<api.Creative>(); | 2738 var o = new core.List<api.Creative>(); |
| 2739 o.add(buildCreative()); | 2739 o.add(buildCreative()); |
| 2740 o.add(buildCreative()); | 2740 o.add(buildCreative()); |
| 2741 return o; | 2741 return o; |
| 2742 } | 2742 } |
| 2743 | 2743 |
| 2744 checkUnnamed3350(core.List<api.Creative> o) { | 2744 checkUnnamed3442(core.List<api.Creative> o) { |
| 2745 unittest.expect(o, unittest.hasLength(2)); | 2745 unittest.expect(o, unittest.hasLength(2)); |
| 2746 checkCreative(o[0]); | 2746 checkCreative(o[0]); |
| 2747 checkCreative(o[1]); | 2747 checkCreative(o[1]); |
| 2748 } | 2748 } |
| 2749 | 2749 |
| 2750 core.int buildCounterCreativesListResponse = 0; | 2750 core.int buildCounterCreativesListResponse = 0; |
| 2751 buildCreativesListResponse() { | 2751 buildCreativesListResponse() { |
| 2752 var o = new api.CreativesListResponse(); | 2752 var o = new api.CreativesListResponse(); |
| 2753 buildCounterCreativesListResponse++; | 2753 buildCounterCreativesListResponse++; |
| 2754 if (buildCounterCreativesListResponse < 3) { | 2754 if (buildCounterCreativesListResponse < 3) { |
| 2755 o.creatives = buildUnnamed3350(); | 2755 o.creatives = buildUnnamed3442(); |
| 2756 o.kind = "foo"; | 2756 o.kind = "foo"; |
| 2757 o.nextPageToken = "foo"; | 2757 o.nextPageToken = "foo"; |
| 2758 } | 2758 } |
| 2759 buildCounterCreativesListResponse--; | 2759 buildCounterCreativesListResponse--; |
| 2760 return o; | 2760 return o; |
| 2761 } | 2761 } |
| 2762 | 2762 |
| 2763 checkCreativesListResponse(api.CreativesListResponse o) { | 2763 checkCreativesListResponse(api.CreativesListResponse o) { |
| 2764 buildCounterCreativesListResponse++; | 2764 buildCounterCreativesListResponse++; |
| 2765 if (buildCounterCreativesListResponse < 3) { | 2765 if (buildCounterCreativesListResponse < 3) { |
| 2766 checkUnnamed3350(o.creatives); | 2766 checkUnnamed3442(o.creatives); |
| 2767 unittest.expect(o.kind, unittest.equals('foo')); | 2767 unittest.expect(o.kind, unittest.equals('foo')); |
| 2768 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2768 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2769 } | 2769 } |
| 2770 buildCounterCreativesListResponse--; | 2770 buildCounterCreativesListResponse--; |
| 2771 } | 2771 } |
| 2772 | 2772 |
| 2773 buildUnnamed3351() { | 2773 buildUnnamed3443() { |
| 2774 var o = new core.List<api.Dimension>(); | 2774 var o = new core.List<api.Dimension>(); |
| 2775 o.add(buildDimension()); | 2775 o.add(buildDimension()); |
| 2776 o.add(buildDimension()); | 2776 o.add(buildDimension()); |
| 2777 return o; | 2777 return o; |
| 2778 } | 2778 } |
| 2779 | 2779 |
| 2780 checkUnnamed3351(core.List<api.Dimension> o) { | 2780 checkUnnamed3443(core.List<api.Dimension> o) { |
| 2781 unittest.expect(o, unittest.hasLength(2)); | 2781 unittest.expect(o, unittest.hasLength(2)); |
| 2782 checkDimension(o[0]); | 2782 checkDimension(o[0]); |
| 2783 checkDimension(o[1]); | 2783 checkDimension(o[1]); |
| 2784 } | 2784 } |
| 2785 | 2785 |
| 2786 buildUnnamed3352() { | 2786 buildUnnamed3444() { |
| 2787 var o = new core.List<api.Dimension>(); | 2787 var o = new core.List<api.Dimension>(); |
| 2788 o.add(buildDimension()); | 2788 o.add(buildDimension()); |
| 2789 o.add(buildDimension()); | 2789 o.add(buildDimension()); |
| 2790 return o; | 2790 return o; |
| 2791 } | 2791 } |
| 2792 | 2792 |
| 2793 checkUnnamed3352(core.List<api.Dimension> o) { | 2793 checkUnnamed3444(core.List<api.Dimension> o) { |
| 2794 unittest.expect(o, unittest.hasLength(2)); | 2794 unittest.expect(o, unittest.hasLength(2)); |
| 2795 checkDimension(o[0]); | 2795 checkDimension(o[0]); |
| 2796 checkDimension(o[1]); | 2796 checkDimension(o[1]); |
| 2797 } | 2797 } |
| 2798 | 2798 |
| 2799 buildUnnamed3353() { | 2799 buildUnnamed3445() { |
| 2800 var o = new core.List<api.Metric>(); | 2800 var o = new core.List<api.Metric>(); |
| 2801 o.add(buildMetric()); | 2801 o.add(buildMetric()); |
| 2802 o.add(buildMetric()); | 2802 o.add(buildMetric()); |
| 2803 return o; | 2803 return o; |
| 2804 } | 2804 } |
| 2805 | 2805 |
| 2806 checkUnnamed3353(core.List<api.Metric> o) { | 2806 checkUnnamed3445(core.List<api.Metric> o) { |
| 2807 unittest.expect(o, unittest.hasLength(2)); | 2807 unittest.expect(o, unittest.hasLength(2)); |
| 2808 checkMetric(o[0]); | 2808 checkMetric(o[0]); |
| 2809 checkMetric(o[1]); | 2809 checkMetric(o[1]); |
| 2810 } | 2810 } |
| 2811 | 2811 |
| 2812 buildUnnamed3354() { | 2812 buildUnnamed3446() { |
| 2813 var o = new core.List<api.Metric>(); | 2813 var o = new core.List<api.Metric>(); |
| 2814 o.add(buildMetric()); | 2814 o.add(buildMetric()); |
| 2815 o.add(buildMetric()); | 2815 o.add(buildMetric()); |
| 2816 return o; | 2816 return o; |
| 2817 } | 2817 } |
| 2818 | 2818 |
| 2819 checkUnnamed3354(core.List<api.Metric> o) { | 2819 checkUnnamed3446(core.List<api.Metric> o) { |
| 2820 unittest.expect(o, unittest.hasLength(2)); | 2820 unittest.expect(o, unittest.hasLength(2)); |
| 2821 checkMetric(o[0]); | 2821 checkMetric(o[0]); |
| 2822 checkMetric(o[1]); | 2822 checkMetric(o[1]); |
| 2823 } | 2823 } |
| 2824 | 2824 |
| 2825 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; | 2825 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; |
| 2826 buildCrossDimensionReachReportCompatibleFields() { | 2826 buildCrossDimensionReachReportCompatibleFields() { |
| 2827 var o = new api.CrossDimensionReachReportCompatibleFields(); | 2827 var o = new api.CrossDimensionReachReportCompatibleFields(); |
| 2828 buildCounterCrossDimensionReachReportCompatibleFields++; | 2828 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2829 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2829 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2830 o.breakdown = buildUnnamed3351(); | 2830 o.breakdown = buildUnnamed3443(); |
| 2831 o.dimensionFilters = buildUnnamed3352(); | 2831 o.dimensionFilters = buildUnnamed3444(); |
| 2832 o.kind = "foo"; | 2832 o.kind = "foo"; |
| 2833 o.metrics = buildUnnamed3353(); | 2833 o.metrics = buildUnnamed3445(); |
| 2834 o.overlapMetrics = buildUnnamed3354(); | 2834 o.overlapMetrics = buildUnnamed3446(); |
| 2835 } | 2835 } |
| 2836 buildCounterCrossDimensionReachReportCompatibleFields--; | 2836 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2837 return o; | 2837 return o; |
| 2838 } | 2838 } |
| 2839 | 2839 |
| 2840 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { | 2840 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { |
| 2841 buildCounterCrossDimensionReachReportCompatibleFields++; | 2841 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2842 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2842 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2843 checkUnnamed3351(o.breakdown); | 2843 checkUnnamed3443(o.breakdown); |
| 2844 checkUnnamed3352(o.dimensionFilters); | 2844 checkUnnamed3444(o.dimensionFilters); |
| 2845 unittest.expect(o.kind, unittest.equals('foo')); | 2845 unittest.expect(o.kind, unittest.equals('foo')); |
| 2846 checkUnnamed3353(o.metrics); | 2846 checkUnnamed3445(o.metrics); |
| 2847 checkUnnamed3354(o.overlapMetrics); | 2847 checkUnnamed3446(o.overlapMetrics); |
| 2848 } | 2848 } |
| 2849 buildCounterCrossDimensionReachReportCompatibleFields--; | 2849 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2850 } | 2850 } |
| 2851 | 2851 |
| 2852 core.int buildCounterCustomFloodlightVariable = 0; | 2852 core.int buildCounterCustomFloodlightVariable = 0; |
| 2853 buildCustomFloodlightVariable() { | 2853 buildCustomFloodlightVariable() { |
| 2854 var o = new api.CustomFloodlightVariable(); | 2854 var o = new api.CustomFloodlightVariable(); |
| 2855 buildCounterCustomFloodlightVariable++; | 2855 buildCounterCustomFloodlightVariable++; |
| 2856 if (buildCounterCustomFloodlightVariable < 3) { | 2856 if (buildCounterCustomFloodlightVariable < 3) { |
| 2857 o.kind = "foo"; | 2857 o.kind = "foo"; |
| 2858 o.type = "foo"; | 2858 o.type = "foo"; |
| 2859 o.value = "foo"; | 2859 o.value = "foo"; |
| 2860 } | 2860 } |
| 2861 buildCounterCustomFloodlightVariable--; | 2861 buildCounterCustomFloodlightVariable--; |
| 2862 return o; | 2862 return o; |
| 2863 } | 2863 } |
| 2864 | 2864 |
| 2865 checkCustomFloodlightVariable(api.CustomFloodlightVariable o) { | 2865 checkCustomFloodlightVariable(api.CustomFloodlightVariable o) { |
| 2866 buildCounterCustomFloodlightVariable++; | 2866 buildCounterCustomFloodlightVariable++; |
| 2867 if (buildCounterCustomFloodlightVariable < 3) { | 2867 if (buildCounterCustomFloodlightVariable < 3) { |
| 2868 unittest.expect(o.kind, unittest.equals('foo')); | 2868 unittest.expect(o.kind, unittest.equals('foo')); |
| 2869 unittest.expect(o.type, unittest.equals('foo')); | 2869 unittest.expect(o.type, unittest.equals('foo')); |
| 2870 unittest.expect(o.value, unittest.equals('foo')); | 2870 unittest.expect(o.value, unittest.equals('foo')); |
| 2871 } | 2871 } |
| 2872 buildCounterCustomFloodlightVariable--; | 2872 buildCounterCustomFloodlightVariable--; |
| 2873 } | 2873 } |
| 2874 | 2874 |
| 2875 buildUnnamed3355() { | 2875 buildUnnamed3447() { |
| 2876 var o = new core.List<api.DimensionValue>(); | 2876 var o = new core.List<api.DimensionValue>(); |
| 2877 o.add(buildDimensionValue()); | 2877 o.add(buildDimensionValue()); |
| 2878 o.add(buildDimensionValue()); | 2878 o.add(buildDimensionValue()); |
| 2879 return o; | 2879 return o; |
| 2880 } | 2880 } |
| 2881 | 2881 |
| 2882 checkUnnamed3355(core.List<api.DimensionValue> o) { | 2882 checkUnnamed3447(core.List<api.DimensionValue> o) { |
| 2883 unittest.expect(o, unittest.hasLength(2)); | 2883 unittest.expect(o, unittest.hasLength(2)); |
| 2884 checkDimensionValue(o[0]); | 2884 checkDimensionValue(o[0]); |
| 2885 checkDimensionValue(o[1]); | 2885 checkDimensionValue(o[1]); |
| 2886 } | 2886 } |
| 2887 | 2887 |
| 2888 core.int buildCounterCustomRichMediaEvents = 0; | 2888 core.int buildCounterCustomRichMediaEvents = 0; |
| 2889 buildCustomRichMediaEvents() { | 2889 buildCustomRichMediaEvents() { |
| 2890 var o = new api.CustomRichMediaEvents(); | 2890 var o = new api.CustomRichMediaEvents(); |
| 2891 buildCounterCustomRichMediaEvents++; | 2891 buildCounterCustomRichMediaEvents++; |
| 2892 if (buildCounterCustomRichMediaEvents < 3) { | 2892 if (buildCounterCustomRichMediaEvents < 3) { |
| 2893 o.filteredEventIds = buildUnnamed3355(); | 2893 o.filteredEventIds = buildUnnamed3447(); |
| 2894 o.kind = "foo"; | 2894 o.kind = "foo"; |
| 2895 } | 2895 } |
| 2896 buildCounterCustomRichMediaEvents--; | 2896 buildCounterCustomRichMediaEvents--; |
| 2897 return o; | 2897 return o; |
| 2898 } | 2898 } |
| 2899 | 2899 |
| 2900 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { | 2900 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { |
| 2901 buildCounterCustomRichMediaEvents++; | 2901 buildCounterCustomRichMediaEvents++; |
| 2902 if (buildCounterCustomRichMediaEvents < 3) { | 2902 if (buildCounterCustomRichMediaEvents < 3) { |
| 2903 checkUnnamed3355(o.filteredEventIds); | 2903 checkUnnamed3447(o.filteredEventIds); |
| 2904 unittest.expect(o.kind, unittest.equals('foo')); | 2904 unittest.expect(o.kind, unittest.equals('foo')); |
| 2905 } | 2905 } |
| 2906 buildCounterCustomRichMediaEvents--; | 2906 buildCounterCustomRichMediaEvents--; |
| 2907 } | 2907 } |
| 2908 | 2908 |
| 2909 core.int buildCounterDateRange = 0; | 2909 core.int buildCounterDateRange = 0; |
| 2910 buildDateRange() { | 2910 buildDateRange() { |
| 2911 var o = new api.DateRange(); | 2911 var o = new api.DateRange(); |
| 2912 buildCounterDateRange++; | 2912 buildCounterDateRange++; |
| 2913 if (buildCounterDateRange < 3) { | 2913 if (buildCounterDateRange < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 2924 buildCounterDateRange++; | 2924 buildCounterDateRange++; |
| 2925 if (buildCounterDateRange < 3) { | 2925 if (buildCounterDateRange < 3) { |
| 2926 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2926 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2927 unittest.expect(o.kind, unittest.equals('foo')); | 2927 unittest.expect(o.kind, unittest.equals('foo')); |
| 2928 unittest.expect(o.relativeDateRange, unittest.equals('foo')); | 2928 unittest.expect(o.relativeDateRange, unittest.equals('foo')); |
| 2929 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2929 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2930 } | 2930 } |
| 2931 buildCounterDateRange--; | 2931 buildCounterDateRange--; |
| 2932 } | 2932 } |
| 2933 | 2933 |
| 2934 buildUnnamed3356() { | 2934 buildUnnamed3448() { |
| 2935 var o = new core.List<core.String>(); | 2935 var o = new core.List<core.String>(); |
| 2936 o.add("foo"); | 2936 o.add("foo"); |
| 2937 o.add("foo"); | 2937 o.add("foo"); |
| 2938 return o; | 2938 return o; |
| 2939 } | 2939 } |
| 2940 | 2940 |
| 2941 checkUnnamed3356(core.List<core.String> o) { | 2941 checkUnnamed3448(core.List<core.String> o) { |
| 2942 unittest.expect(o, unittest.hasLength(2)); | 2942 unittest.expect(o, unittest.hasLength(2)); |
| 2943 unittest.expect(o[0], unittest.equals('foo')); | 2943 unittest.expect(o[0], unittest.equals('foo')); |
| 2944 unittest.expect(o[1], unittest.equals('foo')); | 2944 unittest.expect(o[1], unittest.equals('foo')); |
| 2945 } | 2945 } |
| 2946 | 2946 |
| 2947 buildUnnamed3357() { | 2947 buildUnnamed3449() { |
| 2948 var o = new core.List<core.int>(); | 2948 var o = new core.List<core.int>(); |
| 2949 o.add(42); | 2949 o.add(42); |
| 2950 o.add(42); | 2950 o.add(42); |
| 2951 return o; | 2951 return o; |
| 2952 } | 2952 } |
| 2953 | 2953 |
| 2954 checkUnnamed3357(core.List<core.int> o) { | 2954 checkUnnamed3449(core.List<core.int> o) { |
| 2955 unittest.expect(o, unittest.hasLength(2)); | 2955 unittest.expect(o, unittest.hasLength(2)); |
| 2956 unittest.expect(o[0], unittest.equals(42)); | 2956 unittest.expect(o[0], unittest.equals(42)); |
| 2957 unittest.expect(o[1], unittest.equals(42)); | 2957 unittest.expect(o[1], unittest.equals(42)); |
| 2958 } | 2958 } |
| 2959 | 2959 |
| 2960 core.int buildCounterDayPartTargeting = 0; | 2960 core.int buildCounterDayPartTargeting = 0; |
| 2961 buildDayPartTargeting() { | 2961 buildDayPartTargeting() { |
| 2962 var o = new api.DayPartTargeting(); | 2962 var o = new api.DayPartTargeting(); |
| 2963 buildCounterDayPartTargeting++; | 2963 buildCounterDayPartTargeting++; |
| 2964 if (buildCounterDayPartTargeting < 3) { | 2964 if (buildCounterDayPartTargeting < 3) { |
| 2965 o.daysOfWeek = buildUnnamed3356(); | 2965 o.daysOfWeek = buildUnnamed3448(); |
| 2966 o.hoursOfDay = buildUnnamed3357(); | 2966 o.hoursOfDay = buildUnnamed3449(); |
| 2967 o.userLocalTime = true; | 2967 o.userLocalTime = true; |
| 2968 } | 2968 } |
| 2969 buildCounterDayPartTargeting--; | 2969 buildCounterDayPartTargeting--; |
| 2970 return o; | 2970 return o; |
| 2971 } | 2971 } |
| 2972 | 2972 |
| 2973 checkDayPartTargeting(api.DayPartTargeting o) { | 2973 checkDayPartTargeting(api.DayPartTargeting o) { |
| 2974 buildCounterDayPartTargeting++; | 2974 buildCounterDayPartTargeting++; |
| 2975 if (buildCounterDayPartTargeting < 3) { | 2975 if (buildCounterDayPartTargeting < 3) { |
| 2976 checkUnnamed3356(o.daysOfWeek); | 2976 checkUnnamed3448(o.daysOfWeek); |
| 2977 checkUnnamed3357(o.hoursOfDay); | 2977 checkUnnamed3449(o.hoursOfDay); |
| 2978 unittest.expect(o.userLocalTime, unittest.isTrue); | 2978 unittest.expect(o.userLocalTime, unittest.isTrue); |
| 2979 } | 2979 } |
| 2980 buildCounterDayPartTargeting--; | 2980 buildCounterDayPartTargeting--; |
| 2981 } | 2981 } |
| 2982 | 2982 |
| 2983 core.int buildCounterDefaultClickThroughEventTagProperties = 0; | 2983 core.int buildCounterDefaultClickThroughEventTagProperties = 0; |
| 2984 buildDefaultClickThroughEventTagProperties() { | 2984 buildDefaultClickThroughEventTagProperties() { |
| 2985 var o = new api.DefaultClickThroughEventTagProperties(); | 2985 var o = new api.DefaultClickThroughEventTagProperties(); |
| 2986 buildCounterDefaultClickThroughEventTagProperties++; | 2986 buildCounterDefaultClickThroughEventTagProperties++; |
| 2987 if (buildCounterDefaultClickThroughEventTagProperties < 3) { | 2987 if (buildCounterDefaultClickThroughEventTagProperties < 3) { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3119 unittest.expect(o.dimensionName, unittest.equals('foo')); | 3119 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 3120 unittest.expect(o.etag, unittest.equals('foo')); | 3120 unittest.expect(o.etag, unittest.equals('foo')); |
| 3121 unittest.expect(o.id, unittest.equals('foo')); | 3121 unittest.expect(o.id, unittest.equals('foo')); |
| 3122 unittest.expect(o.kind, unittest.equals('foo')); | 3122 unittest.expect(o.kind, unittest.equals('foo')); |
| 3123 unittest.expect(o.matchType, unittest.equals('foo')); | 3123 unittest.expect(o.matchType, unittest.equals('foo')); |
| 3124 unittest.expect(o.value, unittest.equals('foo')); | 3124 unittest.expect(o.value, unittest.equals('foo')); |
| 3125 } | 3125 } |
| 3126 buildCounterDimensionValue--; | 3126 buildCounterDimensionValue--; |
| 3127 } | 3127 } |
| 3128 | 3128 |
| 3129 buildUnnamed3358() { | 3129 buildUnnamed3450() { |
| 3130 var o = new core.List<api.DimensionValue>(); | 3130 var o = new core.List<api.DimensionValue>(); |
| 3131 o.add(buildDimensionValue()); | 3131 o.add(buildDimensionValue()); |
| 3132 o.add(buildDimensionValue()); | 3132 o.add(buildDimensionValue()); |
| 3133 return o; | 3133 return o; |
| 3134 } | 3134 } |
| 3135 | 3135 |
| 3136 checkUnnamed3358(core.List<api.DimensionValue> o) { | 3136 checkUnnamed3450(core.List<api.DimensionValue> o) { |
| 3137 unittest.expect(o, unittest.hasLength(2)); | 3137 unittest.expect(o, unittest.hasLength(2)); |
| 3138 checkDimensionValue(o[0]); | 3138 checkDimensionValue(o[0]); |
| 3139 checkDimensionValue(o[1]); | 3139 checkDimensionValue(o[1]); |
| 3140 } | 3140 } |
| 3141 | 3141 |
| 3142 core.int buildCounterDimensionValueList = 0; | 3142 core.int buildCounterDimensionValueList = 0; |
| 3143 buildDimensionValueList() { | 3143 buildDimensionValueList() { |
| 3144 var o = new api.DimensionValueList(); | 3144 var o = new api.DimensionValueList(); |
| 3145 buildCounterDimensionValueList++; | 3145 buildCounterDimensionValueList++; |
| 3146 if (buildCounterDimensionValueList < 3) { | 3146 if (buildCounterDimensionValueList < 3) { |
| 3147 o.etag = "foo"; | 3147 o.etag = "foo"; |
| 3148 o.items = buildUnnamed3358(); | 3148 o.items = buildUnnamed3450(); |
| 3149 o.kind = "foo"; | 3149 o.kind = "foo"; |
| 3150 o.nextPageToken = "foo"; | 3150 o.nextPageToken = "foo"; |
| 3151 } | 3151 } |
| 3152 buildCounterDimensionValueList--; | 3152 buildCounterDimensionValueList--; |
| 3153 return o; | 3153 return o; |
| 3154 } | 3154 } |
| 3155 | 3155 |
| 3156 checkDimensionValueList(api.DimensionValueList o) { | 3156 checkDimensionValueList(api.DimensionValueList o) { |
| 3157 buildCounterDimensionValueList++; | 3157 buildCounterDimensionValueList++; |
| 3158 if (buildCounterDimensionValueList < 3) { | 3158 if (buildCounterDimensionValueList < 3) { |
| 3159 unittest.expect(o.etag, unittest.equals('foo')); | 3159 unittest.expect(o.etag, unittest.equals('foo')); |
| 3160 checkUnnamed3358(o.items); | 3160 checkUnnamed3450(o.items); |
| 3161 unittest.expect(o.kind, unittest.equals('foo')); | 3161 unittest.expect(o.kind, unittest.equals('foo')); |
| 3162 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3162 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3163 } | 3163 } |
| 3164 buildCounterDimensionValueList--; | 3164 buildCounterDimensionValueList--; |
| 3165 } | 3165 } |
| 3166 | 3166 |
| 3167 buildUnnamed3359() { | 3167 buildUnnamed3451() { |
| 3168 var o = new core.List<api.DimensionFilter>(); | 3168 var o = new core.List<api.DimensionFilter>(); |
| 3169 o.add(buildDimensionFilter()); | 3169 o.add(buildDimensionFilter()); |
| 3170 o.add(buildDimensionFilter()); | 3170 o.add(buildDimensionFilter()); |
| 3171 return o; | 3171 return o; |
| 3172 } | 3172 } |
| 3173 | 3173 |
| 3174 checkUnnamed3359(core.List<api.DimensionFilter> o) { | 3174 checkUnnamed3451(core.List<api.DimensionFilter> o) { |
| 3175 unittest.expect(o, unittest.hasLength(2)); | 3175 unittest.expect(o, unittest.hasLength(2)); |
| 3176 checkDimensionFilter(o[0]); | 3176 checkDimensionFilter(o[0]); |
| 3177 checkDimensionFilter(o[1]); | 3177 checkDimensionFilter(o[1]); |
| 3178 } | 3178 } |
| 3179 | 3179 |
| 3180 core.int buildCounterDimensionValueRequest = 0; | 3180 core.int buildCounterDimensionValueRequest = 0; |
| 3181 buildDimensionValueRequest() { | 3181 buildDimensionValueRequest() { |
| 3182 var o = new api.DimensionValueRequest(); | 3182 var o = new api.DimensionValueRequest(); |
| 3183 buildCounterDimensionValueRequest++; | 3183 buildCounterDimensionValueRequest++; |
| 3184 if (buildCounterDimensionValueRequest < 3) { | 3184 if (buildCounterDimensionValueRequest < 3) { |
| 3185 o.dimensionName = "foo"; | 3185 o.dimensionName = "foo"; |
| 3186 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 3186 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 3187 o.filters = buildUnnamed3359(); | 3187 o.filters = buildUnnamed3451(); |
| 3188 o.kind = "foo"; | 3188 o.kind = "foo"; |
| 3189 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 3189 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 3190 } | 3190 } |
| 3191 buildCounterDimensionValueRequest--; | 3191 buildCounterDimensionValueRequest--; |
| 3192 return o; | 3192 return o; |
| 3193 } | 3193 } |
| 3194 | 3194 |
| 3195 checkDimensionValueRequest(api.DimensionValueRequest o) { | 3195 checkDimensionValueRequest(api.DimensionValueRequest o) { |
| 3196 buildCounterDimensionValueRequest++; | 3196 buildCounterDimensionValueRequest++; |
| 3197 if (buildCounterDimensionValueRequest < 3) { | 3197 if (buildCounterDimensionValueRequest < 3) { |
| 3198 unittest.expect(o.dimensionName, unittest.equals('foo')); | 3198 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 3199 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 3199 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 3200 checkUnnamed3359(o.filters); | 3200 checkUnnamed3451(o.filters); |
| 3201 unittest.expect(o.kind, unittest.equals('foo')); | 3201 unittest.expect(o.kind, unittest.equals('foo')); |
| 3202 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 3202 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 3203 } | 3203 } |
| 3204 buildCounterDimensionValueRequest--; | 3204 buildCounterDimensionValueRequest--; |
| 3205 } | 3205 } |
| 3206 | 3206 |
| 3207 buildUnnamed3360() { | 3207 buildUnnamed3452() { |
| 3208 var o = new core.List<api.DirectorySiteContactAssignment>(); | 3208 var o = new core.List<api.DirectorySiteContactAssignment>(); |
| 3209 o.add(buildDirectorySiteContactAssignment()); | 3209 o.add(buildDirectorySiteContactAssignment()); |
| 3210 o.add(buildDirectorySiteContactAssignment()); | 3210 o.add(buildDirectorySiteContactAssignment()); |
| 3211 return o; | 3211 return o; |
| 3212 } | 3212 } |
| 3213 | 3213 |
| 3214 checkUnnamed3360(core.List<api.DirectorySiteContactAssignment> o) { | 3214 checkUnnamed3452(core.List<api.DirectorySiteContactAssignment> o) { |
| 3215 unittest.expect(o, unittest.hasLength(2)); | 3215 unittest.expect(o, unittest.hasLength(2)); |
| 3216 checkDirectorySiteContactAssignment(o[0]); | 3216 checkDirectorySiteContactAssignment(o[0]); |
| 3217 checkDirectorySiteContactAssignment(o[1]); | 3217 checkDirectorySiteContactAssignment(o[1]); |
| 3218 } | 3218 } |
| 3219 | 3219 |
| 3220 buildUnnamed3361() { | 3220 buildUnnamed3453() { |
| 3221 var o = new core.List<core.String>(); | 3221 var o = new core.List<core.String>(); |
| 3222 o.add("foo"); | 3222 o.add("foo"); |
| 3223 o.add("foo"); | 3223 o.add("foo"); |
| 3224 return o; | 3224 return o; |
| 3225 } | 3225 } |
| 3226 | 3226 |
| 3227 checkUnnamed3361(core.List<core.String> o) { | 3227 checkUnnamed3453(core.List<core.String> o) { |
| 3228 unittest.expect(o, unittest.hasLength(2)); | 3228 unittest.expect(o, unittest.hasLength(2)); |
| 3229 unittest.expect(o[0], unittest.equals('foo')); | 3229 unittest.expect(o[0], unittest.equals('foo')); |
| 3230 unittest.expect(o[1], unittest.equals('foo')); | 3230 unittest.expect(o[1], unittest.equals('foo')); |
| 3231 } | 3231 } |
| 3232 | 3232 |
| 3233 buildUnnamed3362() { | 3233 buildUnnamed3454() { |
| 3234 var o = new core.List<core.String>(); | 3234 var o = new core.List<core.String>(); |
| 3235 o.add("foo"); | 3235 o.add("foo"); |
| 3236 o.add("foo"); | 3236 o.add("foo"); |
| 3237 return o; | 3237 return o; |
| 3238 } | 3238 } |
| 3239 | 3239 |
| 3240 checkUnnamed3362(core.List<core.String> o) { | 3240 checkUnnamed3454(core.List<core.String> o) { |
| 3241 unittest.expect(o, unittest.hasLength(2)); | 3241 unittest.expect(o, unittest.hasLength(2)); |
| 3242 unittest.expect(o[0], unittest.equals('foo')); | 3242 unittest.expect(o[0], unittest.equals('foo')); |
| 3243 unittest.expect(o[1], unittest.equals('foo')); | 3243 unittest.expect(o[1], unittest.equals('foo')); |
| 3244 } | 3244 } |
| 3245 | 3245 |
| 3246 core.int buildCounterDirectorySite = 0; | 3246 core.int buildCounterDirectorySite = 0; |
| 3247 buildDirectorySite() { | 3247 buildDirectorySite() { |
| 3248 var o = new api.DirectorySite(); | 3248 var o = new api.DirectorySite(); |
| 3249 buildCounterDirectorySite++; | 3249 buildCounterDirectorySite++; |
| 3250 if (buildCounterDirectorySite < 3) { | 3250 if (buildCounterDirectorySite < 3) { |
| 3251 o.active = true; | 3251 o.active = true; |
| 3252 o.contactAssignments = buildUnnamed3360(); | 3252 o.contactAssignments = buildUnnamed3452(); |
| 3253 o.countryId = "foo"; | 3253 o.countryId = "foo"; |
| 3254 o.currencyId = "foo"; | 3254 o.currencyId = "foo"; |
| 3255 o.description = "foo"; | 3255 o.description = "foo"; |
| 3256 o.id = "foo"; | 3256 o.id = "foo"; |
| 3257 o.idDimensionValue = buildDimensionValue(); | 3257 o.idDimensionValue = buildDimensionValue(); |
| 3258 o.inpageTagFormats = buildUnnamed3361(); | 3258 o.inpageTagFormats = buildUnnamed3453(); |
| 3259 o.interstitialTagFormats = buildUnnamed3362(); | 3259 o.interstitialTagFormats = buildUnnamed3454(); |
| 3260 o.kind = "foo"; | 3260 o.kind = "foo"; |
| 3261 o.name = "foo"; | 3261 o.name = "foo"; |
| 3262 o.parentId = "foo"; | 3262 o.parentId = "foo"; |
| 3263 o.settings = buildDirectorySiteSettings(); | 3263 o.settings = buildDirectorySiteSettings(); |
| 3264 o.url = "foo"; | 3264 o.url = "foo"; |
| 3265 } | 3265 } |
| 3266 buildCounterDirectorySite--; | 3266 buildCounterDirectorySite--; |
| 3267 return o; | 3267 return o; |
| 3268 } | 3268 } |
| 3269 | 3269 |
| 3270 checkDirectorySite(api.DirectorySite o) { | 3270 checkDirectorySite(api.DirectorySite o) { |
| 3271 buildCounterDirectorySite++; | 3271 buildCounterDirectorySite++; |
| 3272 if (buildCounterDirectorySite < 3) { | 3272 if (buildCounterDirectorySite < 3) { |
| 3273 unittest.expect(o.active, unittest.isTrue); | 3273 unittest.expect(o.active, unittest.isTrue); |
| 3274 checkUnnamed3360(o.contactAssignments); | 3274 checkUnnamed3452(o.contactAssignments); |
| 3275 unittest.expect(o.countryId, unittest.equals('foo')); | 3275 unittest.expect(o.countryId, unittest.equals('foo')); |
| 3276 unittest.expect(o.currencyId, unittest.equals('foo')); | 3276 unittest.expect(o.currencyId, unittest.equals('foo')); |
| 3277 unittest.expect(o.description, unittest.equals('foo')); | 3277 unittest.expect(o.description, unittest.equals('foo')); |
| 3278 unittest.expect(o.id, unittest.equals('foo')); | 3278 unittest.expect(o.id, unittest.equals('foo')); |
| 3279 checkDimensionValue(o.idDimensionValue); | 3279 checkDimensionValue(o.idDimensionValue); |
| 3280 checkUnnamed3361(o.inpageTagFormats); | 3280 checkUnnamed3453(o.inpageTagFormats); |
| 3281 checkUnnamed3362(o.interstitialTagFormats); | 3281 checkUnnamed3454(o.interstitialTagFormats); |
| 3282 unittest.expect(o.kind, unittest.equals('foo')); | 3282 unittest.expect(o.kind, unittest.equals('foo')); |
| 3283 unittest.expect(o.name, unittest.equals('foo')); | 3283 unittest.expect(o.name, unittest.equals('foo')); |
| 3284 unittest.expect(o.parentId, unittest.equals('foo')); | 3284 unittest.expect(o.parentId, unittest.equals('foo')); |
| 3285 checkDirectorySiteSettings(o.settings); | 3285 checkDirectorySiteSettings(o.settings); |
| 3286 unittest.expect(o.url, unittest.equals('foo')); | 3286 unittest.expect(o.url, unittest.equals('foo')); |
| 3287 } | 3287 } |
| 3288 buildCounterDirectorySite--; | 3288 buildCounterDirectorySite--; |
| 3289 } | 3289 } |
| 3290 | 3290 |
| 3291 core.int buildCounterDirectorySiteContact = 0; | 3291 core.int buildCounterDirectorySiteContact = 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3339 | 3339 |
| 3340 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { | 3340 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { |
| 3341 buildCounterDirectorySiteContactAssignment++; | 3341 buildCounterDirectorySiteContactAssignment++; |
| 3342 if (buildCounterDirectorySiteContactAssignment < 3) { | 3342 if (buildCounterDirectorySiteContactAssignment < 3) { |
| 3343 unittest.expect(o.contactId, unittest.equals('foo')); | 3343 unittest.expect(o.contactId, unittest.equals('foo')); |
| 3344 unittest.expect(o.visibility, unittest.equals('foo')); | 3344 unittest.expect(o.visibility, unittest.equals('foo')); |
| 3345 } | 3345 } |
| 3346 buildCounterDirectorySiteContactAssignment--; | 3346 buildCounterDirectorySiteContactAssignment--; |
| 3347 } | 3347 } |
| 3348 | 3348 |
| 3349 buildUnnamed3363() { | 3349 buildUnnamed3455() { |
| 3350 var o = new core.List<api.DirectorySiteContact>(); | 3350 var o = new core.List<api.DirectorySiteContact>(); |
| 3351 o.add(buildDirectorySiteContact()); | 3351 o.add(buildDirectorySiteContact()); |
| 3352 o.add(buildDirectorySiteContact()); | 3352 o.add(buildDirectorySiteContact()); |
| 3353 return o; | 3353 return o; |
| 3354 } | 3354 } |
| 3355 | 3355 |
| 3356 checkUnnamed3363(core.List<api.DirectorySiteContact> o) { | 3356 checkUnnamed3455(core.List<api.DirectorySiteContact> o) { |
| 3357 unittest.expect(o, unittest.hasLength(2)); | 3357 unittest.expect(o, unittest.hasLength(2)); |
| 3358 checkDirectorySiteContact(o[0]); | 3358 checkDirectorySiteContact(o[0]); |
| 3359 checkDirectorySiteContact(o[1]); | 3359 checkDirectorySiteContact(o[1]); |
| 3360 } | 3360 } |
| 3361 | 3361 |
| 3362 core.int buildCounterDirectorySiteContactsListResponse = 0; | 3362 core.int buildCounterDirectorySiteContactsListResponse = 0; |
| 3363 buildDirectorySiteContactsListResponse() { | 3363 buildDirectorySiteContactsListResponse() { |
| 3364 var o = new api.DirectorySiteContactsListResponse(); | 3364 var o = new api.DirectorySiteContactsListResponse(); |
| 3365 buildCounterDirectorySiteContactsListResponse++; | 3365 buildCounterDirectorySiteContactsListResponse++; |
| 3366 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3366 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3367 o.directorySiteContacts = buildUnnamed3363(); | 3367 o.directorySiteContacts = buildUnnamed3455(); |
| 3368 o.kind = "foo"; | 3368 o.kind = "foo"; |
| 3369 o.nextPageToken = "foo"; | 3369 o.nextPageToken = "foo"; |
| 3370 } | 3370 } |
| 3371 buildCounterDirectorySiteContactsListResponse--; | 3371 buildCounterDirectorySiteContactsListResponse--; |
| 3372 return o; | 3372 return o; |
| 3373 } | 3373 } |
| 3374 | 3374 |
| 3375 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ | 3375 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ |
| 3376 buildCounterDirectorySiteContactsListResponse++; | 3376 buildCounterDirectorySiteContactsListResponse++; |
| 3377 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3377 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3378 checkUnnamed3363(o.directorySiteContacts); | 3378 checkUnnamed3455(o.directorySiteContacts); |
| 3379 unittest.expect(o.kind, unittest.equals('foo')); | 3379 unittest.expect(o.kind, unittest.equals('foo')); |
| 3380 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3380 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3381 } | 3381 } |
| 3382 buildCounterDirectorySiteContactsListResponse--; | 3382 buildCounterDirectorySiteContactsListResponse--; |
| 3383 } | 3383 } |
| 3384 | 3384 |
| 3385 core.int buildCounterDirectorySiteSettings = 0; | 3385 core.int buildCounterDirectorySiteSettings = 0; |
| 3386 buildDirectorySiteSettings() { | 3386 buildDirectorySiteSettings() { |
| 3387 var o = new api.DirectorySiteSettings(); | 3387 var o = new api.DirectorySiteSettings(); |
| 3388 buildCounterDirectorySiteSettings++; | 3388 buildCounterDirectorySiteSettings++; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 3406 checkDfpSettings(o.dfpSettings); | 3406 checkDfpSettings(o.dfpSettings); |
| 3407 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); | 3407 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); |
| 3408 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); | 3408 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); |
| 3409 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); | 3409 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); |
| 3410 unittest.expect(o.verificationTagOptOut, unittest.isTrue); | 3410 unittest.expect(o.verificationTagOptOut, unittest.isTrue); |
| 3411 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 3411 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 3412 } | 3412 } |
| 3413 buildCounterDirectorySiteSettings--; | 3413 buildCounterDirectorySiteSettings--; |
| 3414 } | 3414 } |
| 3415 | 3415 |
| 3416 buildUnnamed3364() { | 3416 buildUnnamed3456() { |
| 3417 var o = new core.List<api.DirectorySite>(); | 3417 var o = new core.List<api.DirectorySite>(); |
| 3418 o.add(buildDirectorySite()); | 3418 o.add(buildDirectorySite()); |
| 3419 o.add(buildDirectorySite()); | 3419 o.add(buildDirectorySite()); |
| 3420 return o; | 3420 return o; |
| 3421 } | 3421 } |
| 3422 | 3422 |
| 3423 checkUnnamed3364(core.List<api.DirectorySite> o) { | 3423 checkUnnamed3456(core.List<api.DirectorySite> o) { |
| 3424 unittest.expect(o, unittest.hasLength(2)); | 3424 unittest.expect(o, unittest.hasLength(2)); |
| 3425 checkDirectorySite(o[0]); | 3425 checkDirectorySite(o[0]); |
| 3426 checkDirectorySite(o[1]); | 3426 checkDirectorySite(o[1]); |
| 3427 } | 3427 } |
| 3428 | 3428 |
| 3429 core.int buildCounterDirectorySitesListResponse = 0; | 3429 core.int buildCounterDirectorySitesListResponse = 0; |
| 3430 buildDirectorySitesListResponse() { | 3430 buildDirectorySitesListResponse() { |
| 3431 var o = new api.DirectorySitesListResponse(); | 3431 var o = new api.DirectorySitesListResponse(); |
| 3432 buildCounterDirectorySitesListResponse++; | 3432 buildCounterDirectorySitesListResponse++; |
| 3433 if (buildCounterDirectorySitesListResponse < 3) { | 3433 if (buildCounterDirectorySitesListResponse < 3) { |
| 3434 o.directorySites = buildUnnamed3364(); | 3434 o.directorySites = buildUnnamed3456(); |
| 3435 o.kind = "foo"; | 3435 o.kind = "foo"; |
| 3436 o.nextPageToken = "foo"; | 3436 o.nextPageToken = "foo"; |
| 3437 } | 3437 } |
| 3438 buildCounterDirectorySitesListResponse--; | 3438 buildCounterDirectorySitesListResponse--; |
| 3439 return o; | 3439 return o; |
| 3440 } | 3440 } |
| 3441 | 3441 |
| 3442 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { | 3442 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { |
| 3443 buildCounterDirectorySitesListResponse++; | 3443 buildCounterDirectorySitesListResponse++; |
| 3444 if (buildCounterDirectorySitesListResponse < 3) { | 3444 if (buildCounterDirectorySitesListResponse < 3) { |
| 3445 checkUnnamed3364(o.directorySites); | 3445 checkUnnamed3456(o.directorySites); |
| 3446 unittest.expect(o.kind, unittest.equals('foo')); | 3446 unittest.expect(o.kind, unittest.equals('foo')); |
| 3447 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3447 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3448 } | 3448 } |
| 3449 buildCounterDirectorySitesListResponse--; | 3449 buildCounterDirectorySitesListResponse--; |
| 3450 } | 3450 } |
| 3451 | 3451 |
| 3452 core.int buildCounterDynamicTargetingKey = 0; | 3452 core.int buildCounterDynamicTargetingKey = 0; |
| 3453 buildDynamicTargetingKey() { | 3453 buildDynamicTargetingKey() { |
| 3454 var o = new api.DynamicTargetingKey(); | 3454 var o = new api.DynamicTargetingKey(); |
| 3455 buildCounterDynamicTargetingKey++; | 3455 buildCounterDynamicTargetingKey++; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3467 buildCounterDynamicTargetingKey++; | 3467 buildCounterDynamicTargetingKey++; |
| 3468 if (buildCounterDynamicTargetingKey < 3) { | 3468 if (buildCounterDynamicTargetingKey < 3) { |
| 3469 unittest.expect(o.kind, unittest.equals('foo')); | 3469 unittest.expect(o.kind, unittest.equals('foo')); |
| 3470 unittest.expect(o.name, unittest.equals('foo')); | 3470 unittest.expect(o.name, unittest.equals('foo')); |
| 3471 unittest.expect(o.objectId, unittest.equals('foo')); | 3471 unittest.expect(o.objectId, unittest.equals('foo')); |
| 3472 unittest.expect(o.objectType, unittest.equals('foo')); | 3472 unittest.expect(o.objectType, unittest.equals('foo')); |
| 3473 } | 3473 } |
| 3474 buildCounterDynamicTargetingKey--; | 3474 buildCounterDynamicTargetingKey--; |
| 3475 } | 3475 } |
| 3476 | 3476 |
| 3477 buildUnnamed3365() { | 3477 buildUnnamed3457() { |
| 3478 var o = new core.List<api.DynamicTargetingKey>(); | 3478 var o = new core.List<api.DynamicTargetingKey>(); |
| 3479 o.add(buildDynamicTargetingKey()); | 3479 o.add(buildDynamicTargetingKey()); |
| 3480 o.add(buildDynamicTargetingKey()); | 3480 o.add(buildDynamicTargetingKey()); |
| 3481 return o; | 3481 return o; |
| 3482 } | 3482 } |
| 3483 | 3483 |
| 3484 checkUnnamed3365(core.List<api.DynamicTargetingKey> o) { | 3484 checkUnnamed3457(core.List<api.DynamicTargetingKey> o) { |
| 3485 unittest.expect(o, unittest.hasLength(2)); | 3485 unittest.expect(o, unittest.hasLength(2)); |
| 3486 checkDynamicTargetingKey(o[0]); | 3486 checkDynamicTargetingKey(o[0]); |
| 3487 checkDynamicTargetingKey(o[1]); | 3487 checkDynamicTargetingKey(o[1]); |
| 3488 } | 3488 } |
| 3489 | 3489 |
| 3490 core.int buildCounterDynamicTargetingKeysListResponse = 0; | 3490 core.int buildCounterDynamicTargetingKeysListResponse = 0; |
| 3491 buildDynamicTargetingKeysListResponse() { | 3491 buildDynamicTargetingKeysListResponse() { |
| 3492 var o = new api.DynamicTargetingKeysListResponse(); | 3492 var o = new api.DynamicTargetingKeysListResponse(); |
| 3493 buildCounterDynamicTargetingKeysListResponse++; | 3493 buildCounterDynamicTargetingKeysListResponse++; |
| 3494 if (buildCounterDynamicTargetingKeysListResponse < 3) { | 3494 if (buildCounterDynamicTargetingKeysListResponse < 3) { |
| 3495 o.dynamicTargetingKeys = buildUnnamed3365(); | 3495 o.dynamicTargetingKeys = buildUnnamed3457(); |
| 3496 o.kind = "foo"; | 3496 o.kind = "foo"; |
| 3497 } | 3497 } |
| 3498 buildCounterDynamicTargetingKeysListResponse--; | 3498 buildCounterDynamicTargetingKeysListResponse--; |
| 3499 return o; | 3499 return o; |
| 3500 } | 3500 } |
| 3501 | 3501 |
| 3502 checkDynamicTargetingKeysListResponse(api.DynamicTargetingKeysListResponse o) { | 3502 checkDynamicTargetingKeysListResponse(api.DynamicTargetingKeysListResponse o) { |
| 3503 buildCounterDynamicTargetingKeysListResponse++; | 3503 buildCounterDynamicTargetingKeysListResponse++; |
| 3504 if (buildCounterDynamicTargetingKeysListResponse < 3) { | 3504 if (buildCounterDynamicTargetingKeysListResponse < 3) { |
| 3505 checkUnnamed3365(o.dynamicTargetingKeys); | 3505 checkUnnamed3457(o.dynamicTargetingKeys); |
| 3506 unittest.expect(o.kind, unittest.equals('foo')); | 3506 unittest.expect(o.kind, unittest.equals('foo')); |
| 3507 } | 3507 } |
| 3508 buildCounterDynamicTargetingKeysListResponse--; | 3508 buildCounterDynamicTargetingKeysListResponse--; |
| 3509 } | 3509 } |
| 3510 | 3510 |
| 3511 core.int buildCounterEncryptionInfo = 0; | 3511 core.int buildCounterEncryptionInfo = 0; |
| 3512 buildEncryptionInfo() { | 3512 buildEncryptionInfo() { |
| 3513 var o = new api.EncryptionInfo(); | 3513 var o = new api.EncryptionInfo(); |
| 3514 buildCounterEncryptionInfo++; | 3514 buildCounterEncryptionInfo++; |
| 3515 if (buildCounterEncryptionInfo < 3) { | 3515 if (buildCounterEncryptionInfo < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 3526 buildCounterEncryptionInfo++; | 3526 buildCounterEncryptionInfo++; |
| 3527 if (buildCounterEncryptionInfo < 3) { | 3527 if (buildCounterEncryptionInfo < 3) { |
| 3528 unittest.expect(o.encryptionEntityId, unittest.equals('foo')); | 3528 unittest.expect(o.encryptionEntityId, unittest.equals('foo')); |
| 3529 unittest.expect(o.encryptionEntityType, unittest.equals('foo')); | 3529 unittest.expect(o.encryptionEntityType, unittest.equals('foo')); |
| 3530 unittest.expect(o.encryptionSource, unittest.equals('foo')); | 3530 unittest.expect(o.encryptionSource, unittest.equals('foo')); |
| 3531 unittest.expect(o.kind, unittest.equals('foo')); | 3531 unittest.expect(o.kind, unittest.equals('foo')); |
| 3532 } | 3532 } |
| 3533 buildCounterEncryptionInfo--; | 3533 buildCounterEncryptionInfo--; |
| 3534 } | 3534 } |
| 3535 | 3535 |
| 3536 buildUnnamed3366() { | 3536 buildUnnamed3458() { |
| 3537 var o = new core.List<core.String>(); | 3537 var o = new core.List<core.String>(); |
| 3538 o.add("foo"); | 3538 o.add("foo"); |
| 3539 o.add("foo"); | 3539 o.add("foo"); |
| 3540 return o; | 3540 return o; |
| 3541 } | 3541 } |
| 3542 | 3542 |
| 3543 checkUnnamed3366(core.List<core.String> o) { | 3543 checkUnnamed3458(core.List<core.String> o) { |
| 3544 unittest.expect(o, unittest.hasLength(2)); | 3544 unittest.expect(o, unittest.hasLength(2)); |
| 3545 unittest.expect(o[0], unittest.equals('foo')); | 3545 unittest.expect(o[0], unittest.equals('foo')); |
| 3546 unittest.expect(o[1], unittest.equals('foo')); | 3546 unittest.expect(o[1], unittest.equals('foo')); |
| 3547 } | 3547 } |
| 3548 | 3548 |
| 3549 core.int buildCounterEventTag = 0; | 3549 core.int buildCounterEventTag = 0; |
| 3550 buildEventTag() { | 3550 buildEventTag() { |
| 3551 var o = new api.EventTag(); | 3551 var o = new api.EventTag(); |
| 3552 buildCounterEventTag++; | 3552 buildCounterEventTag++; |
| 3553 if (buildCounterEventTag < 3) { | 3553 if (buildCounterEventTag < 3) { |
| 3554 o.accountId = "foo"; | 3554 o.accountId = "foo"; |
| 3555 o.advertiserId = "foo"; | 3555 o.advertiserId = "foo"; |
| 3556 o.advertiserIdDimensionValue = buildDimensionValue(); | 3556 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3557 o.campaignId = "foo"; | 3557 o.campaignId = "foo"; |
| 3558 o.campaignIdDimensionValue = buildDimensionValue(); | 3558 o.campaignIdDimensionValue = buildDimensionValue(); |
| 3559 o.enabledByDefault = true; | 3559 o.enabledByDefault = true; |
| 3560 o.excludeFromAdxRequests = true; | 3560 o.excludeFromAdxRequests = true; |
| 3561 o.id = "foo"; | 3561 o.id = "foo"; |
| 3562 o.kind = "foo"; | 3562 o.kind = "foo"; |
| 3563 o.name = "foo"; | 3563 o.name = "foo"; |
| 3564 o.siteFilterType = "foo"; | 3564 o.siteFilterType = "foo"; |
| 3565 o.siteIds = buildUnnamed3366(); | 3565 o.siteIds = buildUnnamed3458(); |
| 3566 o.sslCompliant = true; | 3566 o.sslCompliant = true; |
| 3567 o.status = "foo"; | 3567 o.status = "foo"; |
| 3568 o.subaccountId = "foo"; | 3568 o.subaccountId = "foo"; |
| 3569 o.type = "foo"; | 3569 o.type = "foo"; |
| 3570 o.url = "foo"; | 3570 o.url = "foo"; |
| 3571 o.urlEscapeLevels = 42; | 3571 o.urlEscapeLevels = 42; |
| 3572 } | 3572 } |
| 3573 buildCounterEventTag--; | 3573 buildCounterEventTag--; |
| 3574 return o; | 3574 return o; |
| 3575 } | 3575 } |
| 3576 | 3576 |
| 3577 checkEventTag(api.EventTag o) { | 3577 checkEventTag(api.EventTag o) { |
| 3578 buildCounterEventTag++; | 3578 buildCounterEventTag++; |
| 3579 if (buildCounterEventTag < 3) { | 3579 if (buildCounterEventTag < 3) { |
| 3580 unittest.expect(o.accountId, unittest.equals('foo')); | 3580 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3581 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3581 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3582 checkDimensionValue(o.advertiserIdDimensionValue); | 3582 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3583 unittest.expect(o.campaignId, unittest.equals('foo')); | 3583 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 3584 checkDimensionValue(o.campaignIdDimensionValue); | 3584 checkDimensionValue(o.campaignIdDimensionValue); |
| 3585 unittest.expect(o.enabledByDefault, unittest.isTrue); | 3585 unittest.expect(o.enabledByDefault, unittest.isTrue); |
| 3586 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); | 3586 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); |
| 3587 unittest.expect(o.id, unittest.equals('foo')); | 3587 unittest.expect(o.id, unittest.equals('foo')); |
| 3588 unittest.expect(o.kind, unittest.equals('foo')); | 3588 unittest.expect(o.kind, unittest.equals('foo')); |
| 3589 unittest.expect(o.name, unittest.equals('foo')); | 3589 unittest.expect(o.name, unittest.equals('foo')); |
| 3590 unittest.expect(o.siteFilterType, unittest.equals('foo')); | 3590 unittest.expect(o.siteFilterType, unittest.equals('foo')); |
| 3591 checkUnnamed3366(o.siteIds); | 3591 checkUnnamed3458(o.siteIds); |
| 3592 unittest.expect(o.sslCompliant, unittest.isTrue); | 3592 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3593 unittest.expect(o.status, unittest.equals('foo')); | 3593 unittest.expect(o.status, unittest.equals('foo')); |
| 3594 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3594 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3595 unittest.expect(o.type, unittest.equals('foo')); | 3595 unittest.expect(o.type, unittest.equals('foo')); |
| 3596 unittest.expect(o.url, unittest.equals('foo')); | 3596 unittest.expect(o.url, unittest.equals('foo')); |
| 3597 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); | 3597 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); |
| 3598 } | 3598 } |
| 3599 buildCounterEventTag--; | 3599 buildCounterEventTag--; |
| 3600 } | 3600 } |
| 3601 | 3601 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3613 | 3613 |
| 3614 checkEventTagOverride(api.EventTagOverride o) { | 3614 checkEventTagOverride(api.EventTagOverride o) { |
| 3615 buildCounterEventTagOverride++; | 3615 buildCounterEventTagOverride++; |
| 3616 if (buildCounterEventTagOverride < 3) { | 3616 if (buildCounterEventTagOverride < 3) { |
| 3617 unittest.expect(o.enabled, unittest.isTrue); | 3617 unittest.expect(o.enabled, unittest.isTrue); |
| 3618 unittest.expect(o.id, unittest.equals('foo')); | 3618 unittest.expect(o.id, unittest.equals('foo')); |
| 3619 } | 3619 } |
| 3620 buildCounterEventTagOverride--; | 3620 buildCounterEventTagOverride--; |
| 3621 } | 3621 } |
| 3622 | 3622 |
| 3623 buildUnnamed3367() { | 3623 buildUnnamed3459() { |
| 3624 var o = new core.List<api.EventTag>(); | 3624 var o = new core.List<api.EventTag>(); |
| 3625 o.add(buildEventTag()); | 3625 o.add(buildEventTag()); |
| 3626 o.add(buildEventTag()); | 3626 o.add(buildEventTag()); |
| 3627 return o; | 3627 return o; |
| 3628 } | 3628 } |
| 3629 | 3629 |
| 3630 checkUnnamed3367(core.List<api.EventTag> o) { | 3630 checkUnnamed3459(core.List<api.EventTag> o) { |
| 3631 unittest.expect(o, unittest.hasLength(2)); | 3631 unittest.expect(o, unittest.hasLength(2)); |
| 3632 checkEventTag(o[0]); | 3632 checkEventTag(o[0]); |
| 3633 checkEventTag(o[1]); | 3633 checkEventTag(o[1]); |
| 3634 } | 3634 } |
| 3635 | 3635 |
| 3636 core.int buildCounterEventTagsListResponse = 0; | 3636 core.int buildCounterEventTagsListResponse = 0; |
| 3637 buildEventTagsListResponse() { | 3637 buildEventTagsListResponse() { |
| 3638 var o = new api.EventTagsListResponse(); | 3638 var o = new api.EventTagsListResponse(); |
| 3639 buildCounterEventTagsListResponse++; | 3639 buildCounterEventTagsListResponse++; |
| 3640 if (buildCounterEventTagsListResponse < 3) { | 3640 if (buildCounterEventTagsListResponse < 3) { |
| 3641 o.eventTags = buildUnnamed3367(); | 3641 o.eventTags = buildUnnamed3459(); |
| 3642 o.kind = "foo"; | 3642 o.kind = "foo"; |
| 3643 } | 3643 } |
| 3644 buildCounterEventTagsListResponse--; | 3644 buildCounterEventTagsListResponse--; |
| 3645 return o; | 3645 return o; |
| 3646 } | 3646 } |
| 3647 | 3647 |
| 3648 checkEventTagsListResponse(api.EventTagsListResponse o) { | 3648 checkEventTagsListResponse(api.EventTagsListResponse o) { |
| 3649 buildCounterEventTagsListResponse++; | 3649 buildCounterEventTagsListResponse++; |
| 3650 if (buildCounterEventTagsListResponse < 3) { | 3650 if (buildCounterEventTagsListResponse < 3) { |
| 3651 checkUnnamed3367(o.eventTags); | 3651 checkUnnamed3459(o.eventTags); |
| 3652 unittest.expect(o.kind, unittest.equals('foo')); | 3652 unittest.expect(o.kind, unittest.equals('foo')); |
| 3653 } | 3653 } |
| 3654 buildCounterEventTagsListResponse--; | 3654 buildCounterEventTagsListResponse--; |
| 3655 } | 3655 } |
| 3656 | 3656 |
| 3657 core.int buildCounterFileUrls = 0; | 3657 core.int buildCounterFileUrls = 0; |
| 3658 buildFileUrls() { | 3658 buildFileUrls() { |
| 3659 var o = new api.FileUrls(); | 3659 var o = new api.FileUrls(); |
| 3660 buildCounterFileUrls++; | 3660 buildCounterFileUrls++; |
| 3661 if (buildCounterFileUrls < 3) { | 3661 if (buildCounterFileUrls < 3) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3705 unittest.expect(o.id, unittest.equals('foo')); | 3705 unittest.expect(o.id, unittest.equals('foo')); |
| 3706 unittest.expect(o.kind, unittest.equals('foo')); | 3706 unittest.expect(o.kind, unittest.equals('foo')); |
| 3707 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); | 3707 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); |
| 3708 unittest.expect(o.reportId, unittest.equals('foo')); | 3708 unittest.expect(o.reportId, unittest.equals('foo')); |
| 3709 unittest.expect(o.status, unittest.equals('foo')); | 3709 unittest.expect(o.status, unittest.equals('foo')); |
| 3710 checkFileUrls(o.urls); | 3710 checkFileUrls(o.urls); |
| 3711 } | 3711 } |
| 3712 buildCounterFile--; | 3712 buildCounterFile--; |
| 3713 } | 3713 } |
| 3714 | 3714 |
| 3715 buildUnnamed3368() { | 3715 buildUnnamed3460() { |
| 3716 var o = new core.List<api.File>(); | 3716 var o = new core.List<api.File>(); |
| 3717 o.add(buildFile()); | 3717 o.add(buildFile()); |
| 3718 o.add(buildFile()); | 3718 o.add(buildFile()); |
| 3719 return o; | 3719 return o; |
| 3720 } | 3720 } |
| 3721 | 3721 |
| 3722 checkUnnamed3368(core.List<api.File> o) { | 3722 checkUnnamed3460(core.List<api.File> o) { |
| 3723 unittest.expect(o, unittest.hasLength(2)); | 3723 unittest.expect(o, unittest.hasLength(2)); |
| 3724 checkFile(o[0]); | 3724 checkFile(o[0]); |
| 3725 checkFile(o[1]); | 3725 checkFile(o[1]); |
| 3726 } | 3726 } |
| 3727 | 3727 |
| 3728 core.int buildCounterFileList = 0; | 3728 core.int buildCounterFileList = 0; |
| 3729 buildFileList() { | 3729 buildFileList() { |
| 3730 var o = new api.FileList(); | 3730 var o = new api.FileList(); |
| 3731 buildCounterFileList++; | 3731 buildCounterFileList++; |
| 3732 if (buildCounterFileList < 3) { | 3732 if (buildCounterFileList < 3) { |
| 3733 o.etag = "foo"; | 3733 o.etag = "foo"; |
| 3734 o.items = buildUnnamed3368(); | 3734 o.items = buildUnnamed3460(); |
| 3735 o.kind = "foo"; | 3735 o.kind = "foo"; |
| 3736 o.nextPageToken = "foo"; | 3736 o.nextPageToken = "foo"; |
| 3737 } | 3737 } |
| 3738 buildCounterFileList--; | 3738 buildCounterFileList--; |
| 3739 return o; | 3739 return o; |
| 3740 } | 3740 } |
| 3741 | 3741 |
| 3742 checkFileList(api.FileList o) { | 3742 checkFileList(api.FileList o) { |
| 3743 buildCounterFileList++; | 3743 buildCounterFileList++; |
| 3744 if (buildCounterFileList < 3) { | 3744 if (buildCounterFileList < 3) { |
| 3745 unittest.expect(o.etag, unittest.equals('foo')); | 3745 unittest.expect(o.etag, unittest.equals('foo')); |
| 3746 checkUnnamed3368(o.items); | 3746 checkUnnamed3460(o.items); |
| 3747 unittest.expect(o.kind, unittest.equals('foo')); | 3747 unittest.expect(o.kind, unittest.equals('foo')); |
| 3748 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3748 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3749 } | 3749 } |
| 3750 buildCounterFileList--; | 3750 buildCounterFileList--; |
| 3751 } | 3751 } |
| 3752 | 3752 |
| 3753 core.int buildCounterFlight = 0; | 3753 core.int buildCounterFlight = 0; |
| 3754 buildFlight() { | 3754 buildFlight() { |
| 3755 var o = new api.Flight(); | 3755 var o = new api.Flight(); |
| 3756 buildCounterFlight++; | 3756 buildCounterFlight++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3789 | 3789 |
| 3790 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { | 3790 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { |
| 3791 buildCounterFloodlightActivitiesGenerateTagResponse++; | 3791 buildCounterFloodlightActivitiesGenerateTagResponse++; |
| 3792 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { | 3792 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { |
| 3793 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); | 3793 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); |
| 3794 unittest.expect(o.kind, unittest.equals('foo')); | 3794 unittest.expect(o.kind, unittest.equals('foo')); |
| 3795 } | 3795 } |
| 3796 buildCounterFloodlightActivitiesGenerateTagResponse--; | 3796 buildCounterFloodlightActivitiesGenerateTagResponse--; |
| 3797 } | 3797 } |
| 3798 | 3798 |
| 3799 buildUnnamed3369() { | 3799 buildUnnamed3461() { |
| 3800 var o = new core.List<api.FloodlightActivity>(); | 3800 var o = new core.List<api.FloodlightActivity>(); |
| 3801 o.add(buildFloodlightActivity()); | 3801 o.add(buildFloodlightActivity()); |
| 3802 o.add(buildFloodlightActivity()); | 3802 o.add(buildFloodlightActivity()); |
| 3803 return o; | 3803 return o; |
| 3804 } | 3804 } |
| 3805 | 3805 |
| 3806 checkUnnamed3369(core.List<api.FloodlightActivity> o) { | 3806 checkUnnamed3461(core.List<api.FloodlightActivity> o) { |
| 3807 unittest.expect(o, unittest.hasLength(2)); | 3807 unittest.expect(o, unittest.hasLength(2)); |
| 3808 checkFloodlightActivity(o[0]); | 3808 checkFloodlightActivity(o[0]); |
| 3809 checkFloodlightActivity(o[1]); | 3809 checkFloodlightActivity(o[1]); |
| 3810 } | 3810 } |
| 3811 | 3811 |
| 3812 core.int buildCounterFloodlightActivitiesListResponse = 0; | 3812 core.int buildCounterFloodlightActivitiesListResponse = 0; |
| 3813 buildFloodlightActivitiesListResponse() { | 3813 buildFloodlightActivitiesListResponse() { |
| 3814 var o = new api.FloodlightActivitiesListResponse(); | 3814 var o = new api.FloodlightActivitiesListResponse(); |
| 3815 buildCounterFloodlightActivitiesListResponse++; | 3815 buildCounterFloodlightActivitiesListResponse++; |
| 3816 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3816 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3817 o.floodlightActivities = buildUnnamed3369(); | 3817 o.floodlightActivities = buildUnnamed3461(); |
| 3818 o.kind = "foo"; | 3818 o.kind = "foo"; |
| 3819 o.nextPageToken = "foo"; | 3819 o.nextPageToken = "foo"; |
| 3820 } | 3820 } |
| 3821 buildCounterFloodlightActivitiesListResponse--; | 3821 buildCounterFloodlightActivitiesListResponse--; |
| 3822 return o; | 3822 return o; |
| 3823 } | 3823 } |
| 3824 | 3824 |
| 3825 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { | 3825 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { |
| 3826 buildCounterFloodlightActivitiesListResponse++; | 3826 buildCounterFloodlightActivitiesListResponse++; |
| 3827 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3827 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3828 checkUnnamed3369(o.floodlightActivities); | 3828 checkUnnamed3461(o.floodlightActivities); |
| 3829 unittest.expect(o.kind, unittest.equals('foo')); | 3829 unittest.expect(o.kind, unittest.equals('foo')); |
| 3830 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3830 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3831 } | 3831 } |
| 3832 buildCounterFloodlightActivitiesListResponse--; | 3832 buildCounterFloodlightActivitiesListResponse--; |
| 3833 } | 3833 } |
| 3834 | 3834 |
| 3835 buildUnnamed3370() { | 3835 buildUnnamed3462() { |
| 3836 var o = new core.List<api.FloodlightActivityDynamicTag>(); | 3836 var o = new core.List<api.FloodlightActivityDynamicTag>(); |
| 3837 o.add(buildFloodlightActivityDynamicTag()); | 3837 o.add(buildFloodlightActivityDynamicTag()); |
| 3838 o.add(buildFloodlightActivityDynamicTag()); | 3838 o.add(buildFloodlightActivityDynamicTag()); |
| 3839 return o; | 3839 return o; |
| 3840 } | 3840 } |
| 3841 | 3841 |
| 3842 checkUnnamed3370(core.List<api.FloodlightActivityDynamicTag> o) { | 3842 checkUnnamed3462(core.List<api.FloodlightActivityDynamicTag> o) { |
| 3843 unittest.expect(o, unittest.hasLength(2)); | 3843 unittest.expect(o, unittest.hasLength(2)); |
| 3844 checkFloodlightActivityDynamicTag(o[0]); | 3844 checkFloodlightActivityDynamicTag(o[0]); |
| 3845 checkFloodlightActivityDynamicTag(o[1]); | 3845 checkFloodlightActivityDynamicTag(o[1]); |
| 3846 } | 3846 } |
| 3847 | 3847 |
| 3848 buildUnnamed3371() { | 3848 buildUnnamed3463() { |
| 3849 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); | 3849 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); |
| 3850 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3850 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3851 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3851 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3852 return o; | 3852 return o; |
| 3853 } | 3853 } |
| 3854 | 3854 |
| 3855 checkUnnamed3371(core.List<api.FloodlightActivityPublisherDynamicTag> o) { | 3855 checkUnnamed3463(core.List<api.FloodlightActivityPublisherDynamicTag> o) { |
| 3856 unittest.expect(o, unittest.hasLength(2)); | 3856 unittest.expect(o, unittest.hasLength(2)); |
| 3857 checkFloodlightActivityPublisherDynamicTag(o[0]); | 3857 checkFloodlightActivityPublisherDynamicTag(o[0]); |
| 3858 checkFloodlightActivityPublisherDynamicTag(o[1]); | 3858 checkFloodlightActivityPublisherDynamicTag(o[1]); |
| 3859 } | 3859 } |
| 3860 | 3860 |
| 3861 buildUnnamed3372() { | 3861 buildUnnamed3464() { |
| 3862 var o = new core.List<core.String>(); | 3862 var o = new core.List<core.String>(); |
| 3863 o.add("foo"); | 3863 o.add("foo"); |
| 3864 o.add("foo"); | 3864 o.add("foo"); |
| 3865 return o; | 3865 return o; |
| 3866 } | 3866 } |
| 3867 | 3867 |
| 3868 checkUnnamed3372(core.List<core.String> o) { | 3868 checkUnnamed3464(core.List<core.String> o) { |
| 3869 unittest.expect(o, unittest.hasLength(2)); | 3869 unittest.expect(o, unittest.hasLength(2)); |
| 3870 unittest.expect(o[0], unittest.equals('foo')); | 3870 unittest.expect(o[0], unittest.equals('foo')); |
| 3871 unittest.expect(o[1], unittest.equals('foo')); | 3871 unittest.expect(o[1], unittest.equals('foo')); |
| 3872 } | 3872 } |
| 3873 | 3873 |
| 3874 core.int buildCounterFloodlightActivity = 0; | 3874 core.int buildCounterFloodlightActivity = 0; |
| 3875 buildFloodlightActivity() { | 3875 buildFloodlightActivity() { |
| 3876 var o = new api.FloodlightActivity(); | 3876 var o = new api.FloodlightActivity(); |
| 3877 buildCounterFloodlightActivity++; | 3877 buildCounterFloodlightActivity++; |
| 3878 if (buildCounterFloodlightActivity < 3) { | 3878 if (buildCounterFloodlightActivity < 3) { |
| 3879 o.accountId = "foo"; | 3879 o.accountId = "foo"; |
| 3880 o.advertiserId = "foo"; | 3880 o.advertiserId = "foo"; |
| 3881 o.advertiserIdDimensionValue = buildDimensionValue(); | 3881 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3882 o.cacheBustingType = "foo"; | 3882 o.cacheBustingType = "foo"; |
| 3883 o.countingMethod = "foo"; | 3883 o.countingMethod = "foo"; |
| 3884 o.defaultTags = buildUnnamed3370(); | 3884 o.defaultTags = buildUnnamed3462(); |
| 3885 o.expectedUrl = "foo"; | 3885 o.expectedUrl = "foo"; |
| 3886 o.floodlightActivityGroupId = "foo"; | 3886 o.floodlightActivityGroupId = "foo"; |
| 3887 o.floodlightActivityGroupName = "foo"; | 3887 o.floodlightActivityGroupName = "foo"; |
| 3888 o.floodlightActivityGroupTagString = "foo"; | 3888 o.floodlightActivityGroupTagString = "foo"; |
| 3889 o.floodlightActivityGroupType = "foo"; | 3889 o.floodlightActivityGroupType = "foo"; |
| 3890 o.floodlightConfigurationId = "foo"; | 3890 o.floodlightConfigurationId = "foo"; |
| 3891 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); | 3891 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); |
| 3892 o.hidden = true; | 3892 o.hidden = true; |
| 3893 o.id = "foo"; | 3893 o.id = "foo"; |
| 3894 o.idDimensionValue = buildDimensionValue(); | 3894 o.idDimensionValue = buildDimensionValue(); |
| 3895 o.imageTagEnabled = true; | 3895 o.imageTagEnabled = true; |
| 3896 o.kind = "foo"; | 3896 o.kind = "foo"; |
| 3897 o.name = "foo"; | 3897 o.name = "foo"; |
| 3898 o.notes = "foo"; | 3898 o.notes = "foo"; |
| 3899 o.publisherTags = buildUnnamed3371(); | 3899 o.publisherTags = buildUnnamed3463(); |
| 3900 o.secure = true; | 3900 o.secure = true; |
| 3901 o.sslCompliant = true; | 3901 o.sslCompliant = true; |
| 3902 o.sslRequired = true; | 3902 o.sslRequired = true; |
| 3903 o.subaccountId = "foo"; | 3903 o.subaccountId = "foo"; |
| 3904 o.tagFormat = "foo"; | 3904 o.tagFormat = "foo"; |
| 3905 o.tagString = "foo"; | 3905 o.tagString = "foo"; |
| 3906 o.userDefinedVariableTypes = buildUnnamed3372(); | 3906 o.userDefinedVariableTypes = buildUnnamed3464(); |
| 3907 } | 3907 } |
| 3908 buildCounterFloodlightActivity--; | 3908 buildCounterFloodlightActivity--; |
| 3909 return o; | 3909 return o; |
| 3910 } | 3910 } |
| 3911 | 3911 |
| 3912 checkFloodlightActivity(api.FloodlightActivity o) { | 3912 checkFloodlightActivity(api.FloodlightActivity o) { |
| 3913 buildCounterFloodlightActivity++; | 3913 buildCounterFloodlightActivity++; |
| 3914 if (buildCounterFloodlightActivity < 3) { | 3914 if (buildCounterFloodlightActivity < 3) { |
| 3915 unittest.expect(o.accountId, unittest.equals('foo')); | 3915 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3916 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3916 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3917 checkDimensionValue(o.advertiserIdDimensionValue); | 3917 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3918 unittest.expect(o.cacheBustingType, unittest.equals('foo')); | 3918 unittest.expect(o.cacheBustingType, unittest.equals('foo')); |
| 3919 unittest.expect(o.countingMethod, unittest.equals('foo')); | 3919 unittest.expect(o.countingMethod, unittest.equals('foo')); |
| 3920 checkUnnamed3370(o.defaultTags); | 3920 checkUnnamed3462(o.defaultTags); |
| 3921 unittest.expect(o.expectedUrl, unittest.equals('foo')); | 3921 unittest.expect(o.expectedUrl, unittest.equals('foo')); |
| 3922 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); | 3922 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); |
| 3923 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); | 3923 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); |
| 3924 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); | 3924 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); |
| 3925 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); | 3925 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); |
| 3926 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 3926 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
| 3927 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); | 3927 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); |
| 3928 unittest.expect(o.hidden, unittest.isTrue); | 3928 unittest.expect(o.hidden, unittest.isTrue); |
| 3929 unittest.expect(o.id, unittest.equals('foo')); | 3929 unittest.expect(o.id, unittest.equals('foo')); |
| 3930 checkDimensionValue(o.idDimensionValue); | 3930 checkDimensionValue(o.idDimensionValue); |
| 3931 unittest.expect(o.imageTagEnabled, unittest.isTrue); | 3931 unittest.expect(o.imageTagEnabled, unittest.isTrue); |
| 3932 unittest.expect(o.kind, unittest.equals('foo')); | 3932 unittest.expect(o.kind, unittest.equals('foo')); |
| 3933 unittest.expect(o.name, unittest.equals('foo')); | 3933 unittest.expect(o.name, unittest.equals('foo')); |
| 3934 unittest.expect(o.notes, unittest.equals('foo')); | 3934 unittest.expect(o.notes, unittest.equals('foo')); |
| 3935 checkUnnamed3371(o.publisherTags); | 3935 checkUnnamed3463(o.publisherTags); |
| 3936 unittest.expect(o.secure, unittest.isTrue); | 3936 unittest.expect(o.secure, unittest.isTrue); |
| 3937 unittest.expect(o.sslCompliant, unittest.isTrue); | 3937 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3938 unittest.expect(o.sslRequired, unittest.isTrue); | 3938 unittest.expect(o.sslRequired, unittest.isTrue); |
| 3939 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3939 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3940 unittest.expect(o.tagFormat, unittest.equals('foo')); | 3940 unittest.expect(o.tagFormat, unittest.equals('foo')); |
| 3941 unittest.expect(o.tagString, unittest.equals('foo')); | 3941 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3942 checkUnnamed3372(o.userDefinedVariableTypes); | 3942 checkUnnamed3464(o.userDefinedVariableTypes); |
| 3943 } | 3943 } |
| 3944 buildCounterFloodlightActivity--; | 3944 buildCounterFloodlightActivity--; |
| 3945 } | 3945 } |
| 3946 | 3946 |
| 3947 core.int buildCounterFloodlightActivityDynamicTag = 0; | 3947 core.int buildCounterFloodlightActivityDynamicTag = 0; |
| 3948 buildFloodlightActivityDynamicTag() { | 3948 buildFloodlightActivityDynamicTag() { |
| 3949 var o = new api.FloodlightActivityDynamicTag(); | 3949 var o = new api.FloodlightActivityDynamicTag(); |
| 3950 buildCounterFloodlightActivityDynamicTag++; | 3950 buildCounterFloodlightActivityDynamicTag++; |
| 3951 if (buildCounterFloodlightActivityDynamicTag < 3) { | 3951 if (buildCounterFloodlightActivityDynamicTag < 3) { |
| 3952 o.id = "foo"; | 3952 o.id = "foo"; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4001 checkDimensionValue(o.idDimensionValue); | 4001 checkDimensionValue(o.idDimensionValue); |
| 4002 unittest.expect(o.kind, unittest.equals('foo')); | 4002 unittest.expect(o.kind, unittest.equals('foo')); |
| 4003 unittest.expect(o.name, unittest.equals('foo')); | 4003 unittest.expect(o.name, unittest.equals('foo')); |
| 4004 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4004 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4005 unittest.expect(o.tagString, unittest.equals('foo')); | 4005 unittest.expect(o.tagString, unittest.equals('foo')); |
| 4006 unittest.expect(o.type, unittest.equals('foo')); | 4006 unittest.expect(o.type, unittest.equals('foo')); |
| 4007 } | 4007 } |
| 4008 buildCounterFloodlightActivityGroup--; | 4008 buildCounterFloodlightActivityGroup--; |
| 4009 } | 4009 } |
| 4010 | 4010 |
| 4011 buildUnnamed3373() { | 4011 buildUnnamed3465() { |
| 4012 var o = new core.List<api.FloodlightActivityGroup>(); | 4012 var o = new core.List<api.FloodlightActivityGroup>(); |
| 4013 o.add(buildFloodlightActivityGroup()); | 4013 o.add(buildFloodlightActivityGroup()); |
| 4014 o.add(buildFloodlightActivityGroup()); | 4014 o.add(buildFloodlightActivityGroup()); |
| 4015 return o; | 4015 return o; |
| 4016 } | 4016 } |
| 4017 | 4017 |
| 4018 checkUnnamed3373(core.List<api.FloodlightActivityGroup> o) { | 4018 checkUnnamed3465(core.List<api.FloodlightActivityGroup> o) { |
| 4019 unittest.expect(o, unittest.hasLength(2)); | 4019 unittest.expect(o, unittest.hasLength(2)); |
| 4020 checkFloodlightActivityGroup(o[0]); | 4020 checkFloodlightActivityGroup(o[0]); |
| 4021 checkFloodlightActivityGroup(o[1]); | 4021 checkFloodlightActivityGroup(o[1]); |
| 4022 } | 4022 } |
| 4023 | 4023 |
| 4024 core.int buildCounterFloodlightActivityGroupsListResponse = 0; | 4024 core.int buildCounterFloodlightActivityGroupsListResponse = 0; |
| 4025 buildFloodlightActivityGroupsListResponse() { | 4025 buildFloodlightActivityGroupsListResponse() { |
| 4026 var o = new api.FloodlightActivityGroupsListResponse(); | 4026 var o = new api.FloodlightActivityGroupsListResponse(); |
| 4027 buildCounterFloodlightActivityGroupsListResponse++; | 4027 buildCounterFloodlightActivityGroupsListResponse++; |
| 4028 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 4028 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 4029 o.floodlightActivityGroups = buildUnnamed3373(); | 4029 o.floodlightActivityGroups = buildUnnamed3465(); |
| 4030 o.kind = "foo"; | 4030 o.kind = "foo"; |
| 4031 o.nextPageToken = "foo"; | 4031 o.nextPageToken = "foo"; |
| 4032 } | 4032 } |
| 4033 buildCounterFloodlightActivityGroupsListResponse--; | 4033 buildCounterFloodlightActivityGroupsListResponse--; |
| 4034 return o; | 4034 return o; |
| 4035 } | 4035 } |
| 4036 | 4036 |
| 4037 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { | 4037 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { |
| 4038 buildCounterFloodlightActivityGroupsListResponse++; | 4038 buildCounterFloodlightActivityGroupsListResponse++; |
| 4039 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 4039 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 4040 checkUnnamed3373(o.floodlightActivityGroups); | 4040 checkUnnamed3465(o.floodlightActivityGroups); |
| 4041 unittest.expect(o.kind, unittest.equals('foo')); | 4041 unittest.expect(o.kind, unittest.equals('foo')); |
| 4042 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4042 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4043 } | 4043 } |
| 4044 buildCounterFloodlightActivityGroupsListResponse--; | 4044 buildCounterFloodlightActivityGroupsListResponse--; |
| 4045 } | 4045 } |
| 4046 | 4046 |
| 4047 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; | 4047 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; |
| 4048 buildFloodlightActivityPublisherDynamicTag() { | 4048 buildFloodlightActivityPublisherDynamicTag() { |
| 4049 var o = new api.FloodlightActivityPublisherDynamicTag(); | 4049 var o = new api.FloodlightActivityPublisherDynamicTag(); |
| 4050 buildCounterFloodlightActivityPublisherDynamicTag++; | 4050 buildCounterFloodlightActivityPublisherDynamicTag++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 4066 unittest.expect(o.clickThrough, unittest.isTrue); | 4066 unittest.expect(o.clickThrough, unittest.isTrue); |
| 4067 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 4067 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 4068 checkFloodlightActivityDynamicTag(o.dynamicTag); | 4068 checkFloodlightActivityDynamicTag(o.dynamicTag); |
| 4069 unittest.expect(o.siteId, unittest.equals('foo')); | 4069 unittest.expect(o.siteId, unittest.equals('foo')); |
| 4070 checkDimensionValue(o.siteIdDimensionValue); | 4070 checkDimensionValue(o.siteIdDimensionValue); |
| 4071 unittest.expect(o.viewThrough, unittest.isTrue); | 4071 unittest.expect(o.viewThrough, unittest.isTrue); |
| 4072 } | 4072 } |
| 4073 buildCounterFloodlightActivityPublisherDynamicTag--; | 4073 buildCounterFloodlightActivityPublisherDynamicTag--; |
| 4074 } | 4074 } |
| 4075 | 4075 |
| 4076 buildUnnamed3374() { | 4076 buildUnnamed3466() { |
| 4077 var o = new core.List<core.String>(); | 4077 var o = new core.List<core.String>(); |
| 4078 o.add("foo"); | 4078 o.add("foo"); |
| 4079 o.add("foo"); | 4079 o.add("foo"); |
| 4080 return o; | 4080 return o; |
| 4081 } | 4081 } |
| 4082 | 4082 |
| 4083 checkUnnamed3374(core.List<core.String> o) { | 4083 checkUnnamed3466(core.List<core.String> o) { |
| 4084 unittest.expect(o, unittest.hasLength(2)); | 4084 unittest.expect(o, unittest.hasLength(2)); |
| 4085 unittest.expect(o[0], unittest.equals('foo')); | 4085 unittest.expect(o[0], unittest.equals('foo')); |
| 4086 unittest.expect(o[1], unittest.equals('foo')); | 4086 unittest.expect(o[1], unittest.equals('foo')); |
| 4087 } | 4087 } |
| 4088 | 4088 |
| 4089 buildUnnamed3375() { | 4089 buildUnnamed3467() { |
| 4090 var o = new core.List<api.ThirdPartyAuthenticationToken>(); | 4090 var o = new core.List<api.ThirdPartyAuthenticationToken>(); |
| 4091 o.add(buildThirdPartyAuthenticationToken()); | 4091 o.add(buildThirdPartyAuthenticationToken()); |
| 4092 o.add(buildThirdPartyAuthenticationToken()); | 4092 o.add(buildThirdPartyAuthenticationToken()); |
| 4093 return o; | 4093 return o; |
| 4094 } | 4094 } |
| 4095 | 4095 |
| 4096 checkUnnamed3375(core.List<api.ThirdPartyAuthenticationToken> o) { | 4096 checkUnnamed3467(core.List<api.ThirdPartyAuthenticationToken> o) { |
| 4097 unittest.expect(o, unittest.hasLength(2)); | 4097 unittest.expect(o, unittest.hasLength(2)); |
| 4098 checkThirdPartyAuthenticationToken(o[0]); | 4098 checkThirdPartyAuthenticationToken(o[0]); |
| 4099 checkThirdPartyAuthenticationToken(o[1]); | 4099 checkThirdPartyAuthenticationToken(o[1]); |
| 4100 } | 4100 } |
| 4101 | 4101 |
| 4102 buildUnnamed3376() { | 4102 buildUnnamed3468() { |
| 4103 var o = new core.List<api.UserDefinedVariableConfiguration>(); | 4103 var o = new core.List<api.UserDefinedVariableConfiguration>(); |
| 4104 o.add(buildUserDefinedVariableConfiguration()); | 4104 o.add(buildUserDefinedVariableConfiguration()); |
| 4105 o.add(buildUserDefinedVariableConfiguration()); | 4105 o.add(buildUserDefinedVariableConfiguration()); |
| 4106 return o; | 4106 return o; |
| 4107 } | 4107 } |
| 4108 | 4108 |
| 4109 checkUnnamed3376(core.List<api.UserDefinedVariableConfiguration> o) { | 4109 checkUnnamed3468(core.List<api.UserDefinedVariableConfiguration> o) { |
| 4110 unittest.expect(o, unittest.hasLength(2)); | 4110 unittest.expect(o, unittest.hasLength(2)); |
| 4111 checkUserDefinedVariableConfiguration(o[0]); | 4111 checkUserDefinedVariableConfiguration(o[0]); |
| 4112 checkUserDefinedVariableConfiguration(o[1]); | 4112 checkUserDefinedVariableConfiguration(o[1]); |
| 4113 } | 4113 } |
| 4114 | 4114 |
| 4115 core.int buildCounterFloodlightConfiguration = 0; | 4115 core.int buildCounterFloodlightConfiguration = 0; |
| 4116 buildFloodlightConfiguration() { | 4116 buildFloodlightConfiguration() { |
| 4117 var o = new api.FloodlightConfiguration(); | 4117 var o = new api.FloodlightConfiguration(); |
| 4118 buildCounterFloodlightConfiguration++; | 4118 buildCounterFloodlightConfiguration++; |
| 4119 if (buildCounterFloodlightConfiguration < 3) { | 4119 if (buildCounterFloodlightConfiguration < 3) { |
| 4120 o.accountId = "foo"; | 4120 o.accountId = "foo"; |
| 4121 o.advertiserId = "foo"; | 4121 o.advertiserId = "foo"; |
| 4122 o.advertiserIdDimensionValue = buildDimensionValue(); | 4122 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 4123 o.analyticsDataSharingEnabled = true; | 4123 o.analyticsDataSharingEnabled = true; |
| 4124 o.exposureToConversionEnabled = true; | 4124 o.exposureToConversionEnabled = true; |
| 4125 o.firstDayOfWeek = "foo"; | 4125 o.firstDayOfWeek = "foo"; |
| 4126 o.id = "foo"; | 4126 o.id = "foo"; |
| 4127 o.idDimensionValue = buildDimensionValue(); | 4127 o.idDimensionValue = buildDimensionValue(); |
| 4128 o.inAppAttributionTrackingEnabled = true; | 4128 o.inAppAttributionTrackingEnabled = true; |
| 4129 o.kind = "foo"; | 4129 o.kind = "foo"; |
| 4130 o.lookbackConfiguration = buildLookbackConfiguration(); | 4130 o.lookbackConfiguration = buildLookbackConfiguration(); |
| 4131 o.naturalSearchConversionAttributionOption = "foo"; | 4131 o.naturalSearchConversionAttributionOption = "foo"; |
| 4132 o.omnitureSettings = buildOmnitureSettings(); | 4132 o.omnitureSettings = buildOmnitureSettings(); |
| 4133 o.standardVariableTypes = buildUnnamed3374(); | 4133 o.standardVariableTypes = buildUnnamed3466(); |
| 4134 o.subaccountId = "foo"; | 4134 o.subaccountId = "foo"; |
| 4135 o.tagSettings = buildTagSettings(); | 4135 o.tagSettings = buildTagSettings(); |
| 4136 o.thirdPartyAuthenticationTokens = buildUnnamed3375(); | 4136 o.thirdPartyAuthenticationTokens = buildUnnamed3467(); |
| 4137 o.userDefinedVariableConfigurations = buildUnnamed3376(); | 4137 o.userDefinedVariableConfigurations = buildUnnamed3468(); |
| 4138 } | 4138 } |
| 4139 buildCounterFloodlightConfiguration--; | 4139 buildCounterFloodlightConfiguration--; |
| 4140 return o; | 4140 return o; |
| 4141 } | 4141 } |
| 4142 | 4142 |
| 4143 checkFloodlightConfiguration(api.FloodlightConfiguration o) { | 4143 checkFloodlightConfiguration(api.FloodlightConfiguration o) { |
| 4144 buildCounterFloodlightConfiguration++; | 4144 buildCounterFloodlightConfiguration++; |
| 4145 if (buildCounterFloodlightConfiguration < 3) { | 4145 if (buildCounterFloodlightConfiguration < 3) { |
| 4146 unittest.expect(o.accountId, unittest.equals('foo')); | 4146 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4147 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4147 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4148 checkDimensionValue(o.advertiserIdDimensionValue); | 4148 checkDimensionValue(o.advertiserIdDimensionValue); |
| 4149 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); | 4149 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); |
| 4150 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); | 4150 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); |
| 4151 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); | 4151 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); |
| 4152 unittest.expect(o.id, unittest.equals('foo')); | 4152 unittest.expect(o.id, unittest.equals('foo')); |
| 4153 checkDimensionValue(o.idDimensionValue); | 4153 checkDimensionValue(o.idDimensionValue); |
| 4154 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); | 4154 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); |
| 4155 unittest.expect(o.kind, unittest.equals('foo')); | 4155 unittest.expect(o.kind, unittest.equals('foo')); |
| 4156 checkLookbackConfiguration(o.lookbackConfiguration); | 4156 checkLookbackConfiguration(o.lookbackConfiguration); |
| 4157 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); | 4157 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); |
| 4158 checkOmnitureSettings(o.omnitureSettings); | 4158 checkOmnitureSettings(o.omnitureSettings); |
| 4159 checkUnnamed3374(o.standardVariableTypes); | 4159 checkUnnamed3466(o.standardVariableTypes); |
| 4160 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4160 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4161 checkTagSettings(o.tagSettings); | 4161 checkTagSettings(o.tagSettings); |
| 4162 checkUnnamed3375(o.thirdPartyAuthenticationTokens); | 4162 checkUnnamed3467(o.thirdPartyAuthenticationTokens); |
| 4163 checkUnnamed3376(o.userDefinedVariableConfigurations); | 4163 checkUnnamed3468(o.userDefinedVariableConfigurations); |
| 4164 } | 4164 } |
| 4165 buildCounterFloodlightConfiguration--; | 4165 buildCounterFloodlightConfiguration--; |
| 4166 } | 4166 } |
| 4167 | 4167 |
| 4168 buildUnnamed3377() { | 4168 buildUnnamed3469() { |
| 4169 var o = new core.List<api.FloodlightConfiguration>(); | 4169 var o = new core.List<api.FloodlightConfiguration>(); |
| 4170 o.add(buildFloodlightConfiguration()); | 4170 o.add(buildFloodlightConfiguration()); |
| 4171 o.add(buildFloodlightConfiguration()); | 4171 o.add(buildFloodlightConfiguration()); |
| 4172 return o; | 4172 return o; |
| 4173 } | 4173 } |
| 4174 | 4174 |
| 4175 checkUnnamed3377(core.List<api.FloodlightConfiguration> o) { | 4175 checkUnnamed3469(core.List<api.FloodlightConfiguration> o) { |
| 4176 unittest.expect(o, unittest.hasLength(2)); | 4176 unittest.expect(o, unittest.hasLength(2)); |
| 4177 checkFloodlightConfiguration(o[0]); | 4177 checkFloodlightConfiguration(o[0]); |
| 4178 checkFloodlightConfiguration(o[1]); | 4178 checkFloodlightConfiguration(o[1]); |
| 4179 } | 4179 } |
| 4180 | 4180 |
| 4181 core.int buildCounterFloodlightConfigurationsListResponse = 0; | 4181 core.int buildCounterFloodlightConfigurationsListResponse = 0; |
| 4182 buildFloodlightConfigurationsListResponse() { | 4182 buildFloodlightConfigurationsListResponse() { |
| 4183 var o = new api.FloodlightConfigurationsListResponse(); | 4183 var o = new api.FloodlightConfigurationsListResponse(); |
| 4184 buildCounterFloodlightConfigurationsListResponse++; | 4184 buildCounterFloodlightConfigurationsListResponse++; |
| 4185 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 4185 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 4186 o.floodlightConfigurations = buildUnnamed3377(); | 4186 o.floodlightConfigurations = buildUnnamed3469(); |
| 4187 o.kind = "foo"; | 4187 o.kind = "foo"; |
| 4188 } | 4188 } |
| 4189 buildCounterFloodlightConfigurationsListResponse--; | 4189 buildCounterFloodlightConfigurationsListResponse--; |
| 4190 return o; | 4190 return o; |
| 4191 } | 4191 } |
| 4192 | 4192 |
| 4193 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { | 4193 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { |
| 4194 buildCounterFloodlightConfigurationsListResponse++; | 4194 buildCounterFloodlightConfigurationsListResponse++; |
| 4195 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 4195 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 4196 checkUnnamed3377(o.floodlightConfigurations); | 4196 checkUnnamed3469(o.floodlightConfigurations); |
| 4197 unittest.expect(o.kind, unittest.equals('foo')); | 4197 unittest.expect(o.kind, unittest.equals('foo')); |
| 4198 } | 4198 } |
| 4199 buildCounterFloodlightConfigurationsListResponse--; | 4199 buildCounterFloodlightConfigurationsListResponse--; |
| 4200 } | 4200 } |
| 4201 | 4201 |
| 4202 buildUnnamed3378() { | 4202 buildUnnamed3470() { |
| 4203 var o = new core.List<api.Dimension>(); | 4203 var o = new core.List<api.Dimension>(); |
| 4204 o.add(buildDimension()); | 4204 o.add(buildDimension()); |
| 4205 o.add(buildDimension()); | 4205 o.add(buildDimension()); |
| 4206 return o; | 4206 return o; |
| 4207 } | 4207 } |
| 4208 | 4208 |
| 4209 checkUnnamed3378(core.List<api.Dimension> o) { | 4209 checkUnnamed3470(core.List<api.Dimension> o) { |
| 4210 unittest.expect(o, unittest.hasLength(2)); | 4210 unittest.expect(o, unittest.hasLength(2)); |
| 4211 checkDimension(o[0]); | 4211 checkDimension(o[0]); |
| 4212 checkDimension(o[1]); | 4212 checkDimension(o[1]); |
| 4213 } | 4213 } |
| 4214 | 4214 |
| 4215 buildUnnamed3379() { | 4215 buildUnnamed3471() { |
| 4216 var o = new core.List<api.Dimension>(); | 4216 var o = new core.List<api.Dimension>(); |
| 4217 o.add(buildDimension()); | 4217 o.add(buildDimension()); |
| 4218 o.add(buildDimension()); | 4218 o.add(buildDimension()); |
| 4219 return o; | 4219 return o; |
| 4220 } | 4220 } |
| 4221 | 4221 |
| 4222 checkUnnamed3379(core.List<api.Dimension> o) { | 4222 checkUnnamed3471(core.List<api.Dimension> o) { |
| 4223 unittest.expect(o, unittest.hasLength(2)); | 4223 unittest.expect(o, unittest.hasLength(2)); |
| 4224 checkDimension(o[0]); | 4224 checkDimension(o[0]); |
| 4225 checkDimension(o[1]); | 4225 checkDimension(o[1]); |
| 4226 } | 4226 } |
| 4227 | 4227 |
| 4228 buildUnnamed3380() { | 4228 buildUnnamed3472() { |
| 4229 var o = new core.List<api.Metric>(); | 4229 var o = new core.List<api.Metric>(); |
| 4230 o.add(buildMetric()); | 4230 o.add(buildMetric()); |
| 4231 o.add(buildMetric()); | 4231 o.add(buildMetric()); |
| 4232 return o; | 4232 return o; |
| 4233 } | 4233 } |
| 4234 | 4234 |
| 4235 checkUnnamed3380(core.List<api.Metric> o) { | 4235 checkUnnamed3472(core.List<api.Metric> o) { |
| 4236 unittest.expect(o, unittest.hasLength(2)); | 4236 unittest.expect(o, unittest.hasLength(2)); |
| 4237 checkMetric(o[0]); | 4237 checkMetric(o[0]); |
| 4238 checkMetric(o[1]); | 4238 checkMetric(o[1]); |
| 4239 } | 4239 } |
| 4240 | 4240 |
| 4241 core.int buildCounterFloodlightReportCompatibleFields = 0; | 4241 core.int buildCounterFloodlightReportCompatibleFields = 0; |
| 4242 buildFloodlightReportCompatibleFields() { | 4242 buildFloodlightReportCompatibleFields() { |
| 4243 var o = new api.FloodlightReportCompatibleFields(); | 4243 var o = new api.FloodlightReportCompatibleFields(); |
| 4244 buildCounterFloodlightReportCompatibleFields++; | 4244 buildCounterFloodlightReportCompatibleFields++; |
| 4245 if (buildCounterFloodlightReportCompatibleFields < 3) { | 4245 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 4246 o.dimensionFilters = buildUnnamed3378(); | 4246 o.dimensionFilters = buildUnnamed3470(); |
| 4247 o.dimensions = buildUnnamed3379(); | 4247 o.dimensions = buildUnnamed3471(); |
| 4248 o.kind = "foo"; | 4248 o.kind = "foo"; |
| 4249 o.metrics = buildUnnamed3380(); | 4249 o.metrics = buildUnnamed3472(); |
| 4250 } | 4250 } |
| 4251 buildCounterFloodlightReportCompatibleFields--; | 4251 buildCounterFloodlightReportCompatibleFields--; |
| 4252 return o; | 4252 return o; |
| 4253 } | 4253 } |
| 4254 | 4254 |
| 4255 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { | 4255 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { |
| 4256 buildCounterFloodlightReportCompatibleFields++; | 4256 buildCounterFloodlightReportCompatibleFields++; |
| 4257 if (buildCounterFloodlightReportCompatibleFields < 3) { | 4257 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 4258 checkUnnamed3378(o.dimensionFilters); | 4258 checkUnnamed3470(o.dimensionFilters); |
| 4259 checkUnnamed3379(o.dimensions); | 4259 checkUnnamed3471(o.dimensions); |
| 4260 unittest.expect(o.kind, unittest.equals('foo')); | 4260 unittest.expect(o.kind, unittest.equals('foo')); |
| 4261 checkUnnamed3380(o.metrics); | 4261 checkUnnamed3472(o.metrics); |
| 4262 } | 4262 } |
| 4263 buildCounterFloodlightReportCompatibleFields--; | 4263 buildCounterFloodlightReportCompatibleFields--; |
| 4264 } | 4264 } |
| 4265 | 4265 |
| 4266 core.int buildCounterFrequencyCap = 0; | 4266 core.int buildCounterFrequencyCap = 0; |
| 4267 buildFrequencyCap() { | 4267 buildFrequencyCap() { |
| 4268 var o = new api.FrequencyCap(); | 4268 var o = new api.FrequencyCap(); |
| 4269 buildCounterFrequencyCap++; | 4269 buildCounterFrequencyCap++; |
| 4270 if (buildCounterFrequencyCap < 3) { | 4270 if (buildCounterFrequencyCap < 3) { |
| 4271 o.duration = "foo"; | 4271 o.duration = "foo"; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4304 if (buildCounterFsCommand < 3) { | 4304 if (buildCounterFsCommand < 3) { |
| 4305 unittest.expect(o.left, unittest.equals(42)); | 4305 unittest.expect(o.left, unittest.equals(42)); |
| 4306 unittest.expect(o.positionOption, unittest.equals('foo')); | 4306 unittest.expect(o.positionOption, unittest.equals('foo')); |
| 4307 unittest.expect(o.top, unittest.equals(42)); | 4307 unittest.expect(o.top, unittest.equals(42)); |
| 4308 unittest.expect(o.windowHeight, unittest.equals(42)); | 4308 unittest.expect(o.windowHeight, unittest.equals(42)); |
| 4309 unittest.expect(o.windowWidth, unittest.equals(42)); | 4309 unittest.expect(o.windowWidth, unittest.equals(42)); |
| 4310 } | 4310 } |
| 4311 buildCounterFsCommand--; | 4311 buildCounterFsCommand--; |
| 4312 } | 4312 } |
| 4313 | 4313 |
| 4314 buildUnnamed3381() { | 4314 buildUnnamed3473() { |
| 4315 var o = new core.List<api.City>(); | 4315 var o = new core.List<api.City>(); |
| 4316 o.add(buildCity()); | 4316 o.add(buildCity()); |
| 4317 o.add(buildCity()); | 4317 o.add(buildCity()); |
| 4318 return o; | 4318 return o; |
| 4319 } | 4319 } |
| 4320 | 4320 |
| 4321 checkUnnamed3381(core.List<api.City> o) { | 4321 checkUnnamed3473(core.List<api.City> o) { |
| 4322 unittest.expect(o, unittest.hasLength(2)); | 4322 unittest.expect(o, unittest.hasLength(2)); |
| 4323 checkCity(o[0]); | 4323 checkCity(o[0]); |
| 4324 checkCity(o[1]); | 4324 checkCity(o[1]); |
| 4325 } | 4325 } |
| 4326 | 4326 |
| 4327 buildUnnamed3382() { | 4327 buildUnnamed3474() { |
| 4328 var o = new core.List<api.Country>(); | 4328 var o = new core.List<api.Country>(); |
| 4329 o.add(buildCountry()); | 4329 o.add(buildCountry()); |
| 4330 o.add(buildCountry()); | 4330 o.add(buildCountry()); |
| 4331 return o; | 4331 return o; |
| 4332 } | 4332 } |
| 4333 | 4333 |
| 4334 checkUnnamed3382(core.List<api.Country> o) { | 4334 checkUnnamed3474(core.List<api.Country> o) { |
| 4335 unittest.expect(o, unittest.hasLength(2)); | 4335 unittest.expect(o, unittest.hasLength(2)); |
| 4336 checkCountry(o[0]); | 4336 checkCountry(o[0]); |
| 4337 checkCountry(o[1]); | 4337 checkCountry(o[1]); |
| 4338 } | 4338 } |
| 4339 | 4339 |
| 4340 buildUnnamed3383() { | 4340 buildUnnamed3475() { |
| 4341 var o = new core.List<api.Metro>(); | 4341 var o = new core.List<api.Metro>(); |
| 4342 o.add(buildMetro()); | 4342 o.add(buildMetro()); |
| 4343 o.add(buildMetro()); | 4343 o.add(buildMetro()); |
| 4344 return o; | 4344 return o; |
| 4345 } | 4345 } |
| 4346 | 4346 |
| 4347 checkUnnamed3383(core.List<api.Metro> o) { | 4347 checkUnnamed3475(core.List<api.Metro> o) { |
| 4348 unittest.expect(o, unittest.hasLength(2)); | 4348 unittest.expect(o, unittest.hasLength(2)); |
| 4349 checkMetro(o[0]); | 4349 checkMetro(o[0]); |
| 4350 checkMetro(o[1]); | 4350 checkMetro(o[1]); |
| 4351 } | 4351 } |
| 4352 | 4352 |
| 4353 buildUnnamed3384() { | 4353 buildUnnamed3476() { |
| 4354 var o = new core.List<api.PostalCode>(); | 4354 var o = new core.List<api.PostalCode>(); |
| 4355 o.add(buildPostalCode()); | 4355 o.add(buildPostalCode()); |
| 4356 o.add(buildPostalCode()); | 4356 o.add(buildPostalCode()); |
| 4357 return o; | 4357 return o; |
| 4358 } | 4358 } |
| 4359 | 4359 |
| 4360 checkUnnamed3384(core.List<api.PostalCode> o) { | 4360 checkUnnamed3476(core.List<api.PostalCode> o) { |
| 4361 unittest.expect(o, unittest.hasLength(2)); | 4361 unittest.expect(o, unittest.hasLength(2)); |
| 4362 checkPostalCode(o[0]); | 4362 checkPostalCode(o[0]); |
| 4363 checkPostalCode(o[1]); | 4363 checkPostalCode(o[1]); |
| 4364 } | 4364 } |
| 4365 | 4365 |
| 4366 buildUnnamed3385() { | 4366 buildUnnamed3477() { |
| 4367 var o = new core.List<api.Region>(); | 4367 var o = new core.List<api.Region>(); |
| 4368 o.add(buildRegion()); | 4368 o.add(buildRegion()); |
| 4369 o.add(buildRegion()); | 4369 o.add(buildRegion()); |
| 4370 return o; | 4370 return o; |
| 4371 } | 4371 } |
| 4372 | 4372 |
| 4373 checkUnnamed3385(core.List<api.Region> o) { | 4373 checkUnnamed3477(core.List<api.Region> o) { |
| 4374 unittest.expect(o, unittest.hasLength(2)); | 4374 unittest.expect(o, unittest.hasLength(2)); |
| 4375 checkRegion(o[0]); | 4375 checkRegion(o[0]); |
| 4376 checkRegion(o[1]); | 4376 checkRegion(o[1]); |
| 4377 } | 4377 } |
| 4378 | 4378 |
| 4379 core.int buildCounterGeoTargeting = 0; | 4379 core.int buildCounterGeoTargeting = 0; |
| 4380 buildGeoTargeting() { | 4380 buildGeoTargeting() { |
| 4381 var o = new api.GeoTargeting(); | 4381 var o = new api.GeoTargeting(); |
| 4382 buildCounterGeoTargeting++; | 4382 buildCounterGeoTargeting++; |
| 4383 if (buildCounterGeoTargeting < 3) { | 4383 if (buildCounterGeoTargeting < 3) { |
| 4384 o.cities = buildUnnamed3381(); | 4384 o.cities = buildUnnamed3473(); |
| 4385 o.countries = buildUnnamed3382(); | 4385 o.countries = buildUnnamed3474(); |
| 4386 o.excludeCountries = true; | 4386 o.excludeCountries = true; |
| 4387 o.metros = buildUnnamed3383(); | 4387 o.metros = buildUnnamed3475(); |
| 4388 o.postalCodes = buildUnnamed3384(); | 4388 o.postalCodes = buildUnnamed3476(); |
| 4389 o.regions = buildUnnamed3385(); | 4389 o.regions = buildUnnamed3477(); |
| 4390 } | 4390 } |
| 4391 buildCounterGeoTargeting--; | 4391 buildCounterGeoTargeting--; |
| 4392 return o; | 4392 return o; |
| 4393 } | 4393 } |
| 4394 | 4394 |
| 4395 checkGeoTargeting(api.GeoTargeting o) { | 4395 checkGeoTargeting(api.GeoTargeting o) { |
| 4396 buildCounterGeoTargeting++; | 4396 buildCounterGeoTargeting++; |
| 4397 if (buildCounterGeoTargeting < 3) { | 4397 if (buildCounterGeoTargeting < 3) { |
| 4398 checkUnnamed3381(o.cities); | 4398 checkUnnamed3473(o.cities); |
| 4399 checkUnnamed3382(o.countries); | 4399 checkUnnamed3474(o.countries); |
| 4400 unittest.expect(o.excludeCountries, unittest.isTrue); | 4400 unittest.expect(o.excludeCountries, unittest.isTrue); |
| 4401 checkUnnamed3383(o.metros); | 4401 checkUnnamed3475(o.metros); |
| 4402 checkUnnamed3384(o.postalCodes); | 4402 checkUnnamed3476(o.postalCodes); |
| 4403 checkUnnamed3385(o.regions); | 4403 checkUnnamed3477(o.regions); |
| 4404 } | 4404 } |
| 4405 buildCounterGeoTargeting--; | 4405 buildCounterGeoTargeting--; |
| 4406 } | 4406 } |
| 4407 | 4407 |
| 4408 buildUnnamed3386() { | 4408 buildUnnamed3478() { |
| 4409 var o = new core.List<api.AdSlot>(); | 4409 var o = new core.List<api.AdSlot>(); |
| 4410 o.add(buildAdSlot()); | 4410 o.add(buildAdSlot()); |
| 4411 o.add(buildAdSlot()); | 4411 o.add(buildAdSlot()); |
| 4412 return o; | 4412 return o; |
| 4413 } | 4413 } |
| 4414 | 4414 |
| 4415 checkUnnamed3386(core.List<api.AdSlot> o) { | 4415 checkUnnamed3478(core.List<api.AdSlot> o) { |
| 4416 unittest.expect(o, unittest.hasLength(2)); | 4416 unittest.expect(o, unittest.hasLength(2)); |
| 4417 checkAdSlot(o[0]); | 4417 checkAdSlot(o[0]); |
| 4418 checkAdSlot(o[1]); | 4418 checkAdSlot(o[1]); |
| 4419 } | 4419 } |
| 4420 | 4420 |
| 4421 core.int buildCounterInventoryItem = 0; | 4421 core.int buildCounterInventoryItem = 0; |
| 4422 buildInventoryItem() { | 4422 buildInventoryItem() { |
| 4423 var o = new api.InventoryItem(); | 4423 var o = new api.InventoryItem(); |
| 4424 buildCounterInventoryItem++; | 4424 buildCounterInventoryItem++; |
| 4425 if (buildCounterInventoryItem < 3) { | 4425 if (buildCounterInventoryItem < 3) { |
| 4426 o.accountId = "foo"; | 4426 o.accountId = "foo"; |
| 4427 o.adSlots = buildUnnamed3386(); | 4427 o.adSlots = buildUnnamed3478(); |
| 4428 o.advertiserId = "foo"; | 4428 o.advertiserId = "foo"; |
| 4429 o.contentCategoryId = "foo"; | 4429 o.contentCategoryId = "foo"; |
| 4430 o.estimatedClickThroughRate = "foo"; | 4430 o.estimatedClickThroughRate = "foo"; |
| 4431 o.estimatedConversionRate = "foo"; | 4431 o.estimatedConversionRate = "foo"; |
| 4432 o.id = "foo"; | 4432 o.id = "foo"; |
| 4433 o.inPlan = true; | 4433 o.inPlan = true; |
| 4434 o.kind = "foo"; | 4434 o.kind = "foo"; |
| 4435 o.lastModifiedInfo = buildLastModifiedInfo(); | 4435 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4436 o.name = "foo"; | 4436 o.name = "foo"; |
| 4437 o.negotiationChannelId = "foo"; | 4437 o.negotiationChannelId = "foo"; |
| 4438 o.orderId = "foo"; | 4438 o.orderId = "foo"; |
| 4439 o.placementStrategyId = "foo"; | 4439 o.placementStrategyId = "foo"; |
| 4440 o.pricing = buildPricing(); | 4440 o.pricing = buildPricing(); |
| 4441 o.projectId = "foo"; | 4441 o.projectId = "foo"; |
| 4442 o.rfpId = "foo"; | 4442 o.rfpId = "foo"; |
| 4443 o.siteId = "foo"; | 4443 o.siteId = "foo"; |
| 4444 o.subaccountId = "foo"; | 4444 o.subaccountId = "foo"; |
| 4445 o.type = "foo"; | 4445 o.type = "foo"; |
| 4446 } | 4446 } |
| 4447 buildCounterInventoryItem--; | 4447 buildCounterInventoryItem--; |
| 4448 return o; | 4448 return o; |
| 4449 } | 4449 } |
| 4450 | 4450 |
| 4451 checkInventoryItem(api.InventoryItem o) { | 4451 checkInventoryItem(api.InventoryItem o) { |
| 4452 buildCounterInventoryItem++; | 4452 buildCounterInventoryItem++; |
| 4453 if (buildCounterInventoryItem < 3) { | 4453 if (buildCounterInventoryItem < 3) { |
| 4454 unittest.expect(o.accountId, unittest.equals('foo')); | 4454 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4455 checkUnnamed3386(o.adSlots); | 4455 checkUnnamed3478(o.adSlots); |
| 4456 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4456 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4457 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 4457 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 4458 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); | 4458 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); |
| 4459 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); | 4459 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); |
| 4460 unittest.expect(o.id, unittest.equals('foo')); | 4460 unittest.expect(o.id, unittest.equals('foo')); |
| 4461 unittest.expect(o.inPlan, unittest.isTrue); | 4461 unittest.expect(o.inPlan, unittest.isTrue); |
| 4462 unittest.expect(o.kind, unittest.equals('foo')); | 4462 unittest.expect(o.kind, unittest.equals('foo')); |
| 4463 checkLastModifiedInfo(o.lastModifiedInfo); | 4463 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4464 unittest.expect(o.name, unittest.equals('foo')); | 4464 unittest.expect(o.name, unittest.equals('foo')); |
| 4465 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); | 4465 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); |
| 4466 unittest.expect(o.orderId, unittest.equals('foo')); | 4466 unittest.expect(o.orderId, unittest.equals('foo')); |
| 4467 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 4467 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 4468 checkPricing(o.pricing); | 4468 checkPricing(o.pricing); |
| 4469 unittest.expect(o.projectId, unittest.equals('foo')); | 4469 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4470 unittest.expect(o.rfpId, unittest.equals('foo')); | 4470 unittest.expect(o.rfpId, unittest.equals('foo')); |
| 4471 unittest.expect(o.siteId, unittest.equals('foo')); | 4471 unittest.expect(o.siteId, unittest.equals('foo')); |
| 4472 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4472 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4473 unittest.expect(o.type, unittest.equals('foo')); | 4473 unittest.expect(o.type, unittest.equals('foo')); |
| 4474 } | 4474 } |
| 4475 buildCounterInventoryItem--; | 4475 buildCounterInventoryItem--; |
| 4476 } | 4476 } |
| 4477 | 4477 |
| 4478 buildUnnamed3387() { | 4478 buildUnnamed3479() { |
| 4479 var o = new core.List<api.InventoryItem>(); | 4479 var o = new core.List<api.InventoryItem>(); |
| 4480 o.add(buildInventoryItem()); | 4480 o.add(buildInventoryItem()); |
| 4481 o.add(buildInventoryItem()); | 4481 o.add(buildInventoryItem()); |
| 4482 return o; | 4482 return o; |
| 4483 } | 4483 } |
| 4484 | 4484 |
| 4485 checkUnnamed3387(core.List<api.InventoryItem> o) { | 4485 checkUnnamed3479(core.List<api.InventoryItem> o) { |
| 4486 unittest.expect(o, unittest.hasLength(2)); | 4486 unittest.expect(o, unittest.hasLength(2)); |
| 4487 checkInventoryItem(o[0]); | 4487 checkInventoryItem(o[0]); |
| 4488 checkInventoryItem(o[1]); | 4488 checkInventoryItem(o[1]); |
| 4489 } | 4489 } |
| 4490 | 4490 |
| 4491 core.int buildCounterInventoryItemsListResponse = 0; | 4491 core.int buildCounterInventoryItemsListResponse = 0; |
| 4492 buildInventoryItemsListResponse() { | 4492 buildInventoryItemsListResponse() { |
| 4493 var o = new api.InventoryItemsListResponse(); | 4493 var o = new api.InventoryItemsListResponse(); |
| 4494 buildCounterInventoryItemsListResponse++; | 4494 buildCounterInventoryItemsListResponse++; |
| 4495 if (buildCounterInventoryItemsListResponse < 3) { | 4495 if (buildCounterInventoryItemsListResponse < 3) { |
| 4496 o.inventoryItems = buildUnnamed3387(); | 4496 o.inventoryItems = buildUnnamed3479(); |
| 4497 o.kind = "foo"; | 4497 o.kind = "foo"; |
| 4498 o.nextPageToken = "foo"; | 4498 o.nextPageToken = "foo"; |
| 4499 } | 4499 } |
| 4500 buildCounterInventoryItemsListResponse--; | 4500 buildCounterInventoryItemsListResponse--; |
| 4501 return o; | 4501 return o; |
| 4502 } | 4502 } |
| 4503 | 4503 |
| 4504 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { | 4504 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { |
| 4505 buildCounterInventoryItemsListResponse++; | 4505 buildCounterInventoryItemsListResponse++; |
| 4506 if (buildCounterInventoryItemsListResponse < 3) { | 4506 if (buildCounterInventoryItemsListResponse < 3) { |
| 4507 checkUnnamed3387(o.inventoryItems); | 4507 checkUnnamed3479(o.inventoryItems); |
| 4508 unittest.expect(o.kind, unittest.equals('foo')); | 4508 unittest.expect(o.kind, unittest.equals('foo')); |
| 4509 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4509 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4510 } | 4510 } |
| 4511 buildCounterInventoryItemsListResponse--; | 4511 buildCounterInventoryItemsListResponse--; |
| 4512 } | 4512 } |
| 4513 | 4513 |
| 4514 core.int buildCounterKeyValueTargetingExpression = 0; | 4514 core.int buildCounterKeyValueTargetingExpression = 0; |
| 4515 buildKeyValueTargetingExpression() { | 4515 buildKeyValueTargetingExpression() { |
| 4516 var o = new api.KeyValueTargetingExpression(); | 4516 var o = new api.KeyValueTargetingExpression(); |
| 4517 buildCounterKeyValueTargetingExpression++; | 4517 buildCounterKeyValueTargetingExpression++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4550 if (buildCounterLandingPage < 3) { | 4550 if (buildCounterLandingPage < 3) { |
| 4551 unittest.expect(o.default_, unittest.isTrue); | 4551 unittest.expect(o.default_, unittest.isTrue); |
| 4552 unittest.expect(o.id, unittest.equals('foo')); | 4552 unittest.expect(o.id, unittest.equals('foo')); |
| 4553 unittest.expect(o.kind, unittest.equals('foo')); | 4553 unittest.expect(o.kind, unittest.equals('foo')); |
| 4554 unittest.expect(o.name, unittest.equals('foo')); | 4554 unittest.expect(o.name, unittest.equals('foo')); |
| 4555 unittest.expect(o.url, unittest.equals('foo')); | 4555 unittest.expect(o.url, unittest.equals('foo')); |
| 4556 } | 4556 } |
| 4557 buildCounterLandingPage--; | 4557 buildCounterLandingPage--; |
| 4558 } | 4558 } |
| 4559 | 4559 |
| 4560 buildUnnamed3388() { | 4560 buildUnnamed3480() { |
| 4561 var o = new core.List<api.LandingPage>(); | 4561 var o = new core.List<api.LandingPage>(); |
| 4562 o.add(buildLandingPage()); | 4562 o.add(buildLandingPage()); |
| 4563 o.add(buildLandingPage()); | 4563 o.add(buildLandingPage()); |
| 4564 return o; | 4564 return o; |
| 4565 } | 4565 } |
| 4566 | 4566 |
| 4567 checkUnnamed3388(core.List<api.LandingPage> o) { | 4567 checkUnnamed3480(core.List<api.LandingPage> o) { |
| 4568 unittest.expect(o, unittest.hasLength(2)); | 4568 unittest.expect(o, unittest.hasLength(2)); |
| 4569 checkLandingPage(o[0]); | 4569 checkLandingPage(o[0]); |
| 4570 checkLandingPage(o[1]); | 4570 checkLandingPage(o[1]); |
| 4571 } | 4571 } |
| 4572 | 4572 |
| 4573 core.int buildCounterLandingPagesListResponse = 0; | 4573 core.int buildCounterLandingPagesListResponse = 0; |
| 4574 buildLandingPagesListResponse() { | 4574 buildLandingPagesListResponse() { |
| 4575 var o = new api.LandingPagesListResponse(); | 4575 var o = new api.LandingPagesListResponse(); |
| 4576 buildCounterLandingPagesListResponse++; | 4576 buildCounterLandingPagesListResponse++; |
| 4577 if (buildCounterLandingPagesListResponse < 3) { | 4577 if (buildCounterLandingPagesListResponse < 3) { |
| 4578 o.kind = "foo"; | 4578 o.kind = "foo"; |
| 4579 o.landingPages = buildUnnamed3388(); | 4579 o.landingPages = buildUnnamed3480(); |
| 4580 } | 4580 } |
| 4581 buildCounterLandingPagesListResponse--; | 4581 buildCounterLandingPagesListResponse--; |
| 4582 return o; | 4582 return o; |
| 4583 } | 4583 } |
| 4584 | 4584 |
| 4585 checkLandingPagesListResponse(api.LandingPagesListResponse o) { | 4585 checkLandingPagesListResponse(api.LandingPagesListResponse o) { |
| 4586 buildCounterLandingPagesListResponse++; | 4586 buildCounterLandingPagesListResponse++; |
| 4587 if (buildCounterLandingPagesListResponse < 3) { | 4587 if (buildCounterLandingPagesListResponse < 3) { |
| 4588 unittest.expect(o.kind, unittest.equals('foo')); | 4588 unittest.expect(o.kind, unittest.equals('foo')); |
| 4589 checkUnnamed3388(o.landingPages); | 4589 checkUnnamed3480(o.landingPages); |
| 4590 } | 4590 } |
| 4591 buildCounterLandingPagesListResponse--; | 4591 buildCounterLandingPagesListResponse--; |
| 4592 } | 4592 } |
| 4593 | 4593 |
| 4594 core.int buildCounterLastModifiedInfo = 0; | 4594 core.int buildCounterLastModifiedInfo = 0; |
| 4595 buildLastModifiedInfo() { | 4595 buildLastModifiedInfo() { |
| 4596 var o = new api.LastModifiedInfo(); | 4596 var o = new api.LastModifiedInfo(); |
| 4597 buildCounterLastModifiedInfo++; | 4597 buildCounterLastModifiedInfo++; |
| 4598 if (buildCounterLastModifiedInfo < 3) { | 4598 if (buildCounterLastModifiedInfo < 3) { |
| 4599 o.time = "foo"; | 4599 o.time = "foo"; |
| 4600 } | 4600 } |
| 4601 buildCounterLastModifiedInfo--; | 4601 buildCounterLastModifiedInfo--; |
| 4602 return o; | 4602 return o; |
| 4603 } | 4603 } |
| 4604 | 4604 |
| 4605 checkLastModifiedInfo(api.LastModifiedInfo o) { | 4605 checkLastModifiedInfo(api.LastModifiedInfo o) { |
| 4606 buildCounterLastModifiedInfo++; | 4606 buildCounterLastModifiedInfo++; |
| 4607 if (buildCounterLastModifiedInfo < 3) { | 4607 if (buildCounterLastModifiedInfo < 3) { |
| 4608 unittest.expect(o.time, unittest.equals('foo')); | 4608 unittest.expect(o.time, unittest.equals('foo')); |
| 4609 } | 4609 } |
| 4610 buildCounterLastModifiedInfo--; | 4610 buildCounterLastModifiedInfo--; |
| 4611 } | 4611 } |
| 4612 | 4612 |
| 4613 buildUnnamed3389() { | 4613 buildUnnamed3481() { |
| 4614 var o = new core.List<api.ListPopulationTerm>(); | 4614 var o = new core.List<api.ListPopulationTerm>(); |
| 4615 o.add(buildListPopulationTerm()); | 4615 o.add(buildListPopulationTerm()); |
| 4616 o.add(buildListPopulationTerm()); | 4616 o.add(buildListPopulationTerm()); |
| 4617 return o; | 4617 return o; |
| 4618 } | 4618 } |
| 4619 | 4619 |
| 4620 checkUnnamed3389(core.List<api.ListPopulationTerm> o) { | 4620 checkUnnamed3481(core.List<api.ListPopulationTerm> o) { |
| 4621 unittest.expect(o, unittest.hasLength(2)); | 4621 unittest.expect(o, unittest.hasLength(2)); |
| 4622 checkListPopulationTerm(o[0]); | 4622 checkListPopulationTerm(o[0]); |
| 4623 checkListPopulationTerm(o[1]); | 4623 checkListPopulationTerm(o[1]); |
| 4624 } | 4624 } |
| 4625 | 4625 |
| 4626 core.int buildCounterListPopulationClause = 0; | 4626 core.int buildCounterListPopulationClause = 0; |
| 4627 buildListPopulationClause() { | 4627 buildListPopulationClause() { |
| 4628 var o = new api.ListPopulationClause(); | 4628 var o = new api.ListPopulationClause(); |
| 4629 buildCounterListPopulationClause++; | 4629 buildCounterListPopulationClause++; |
| 4630 if (buildCounterListPopulationClause < 3) { | 4630 if (buildCounterListPopulationClause < 3) { |
| 4631 o.terms = buildUnnamed3389(); | 4631 o.terms = buildUnnamed3481(); |
| 4632 } | 4632 } |
| 4633 buildCounterListPopulationClause--; | 4633 buildCounterListPopulationClause--; |
| 4634 return o; | 4634 return o; |
| 4635 } | 4635 } |
| 4636 | 4636 |
| 4637 checkListPopulationClause(api.ListPopulationClause o) { | 4637 checkListPopulationClause(api.ListPopulationClause o) { |
| 4638 buildCounterListPopulationClause++; | 4638 buildCounterListPopulationClause++; |
| 4639 if (buildCounterListPopulationClause < 3) { | 4639 if (buildCounterListPopulationClause < 3) { |
| 4640 checkUnnamed3389(o.terms); | 4640 checkUnnamed3481(o.terms); |
| 4641 } | 4641 } |
| 4642 buildCounterListPopulationClause--; | 4642 buildCounterListPopulationClause--; |
| 4643 } | 4643 } |
| 4644 | 4644 |
| 4645 buildUnnamed3390() { | 4645 buildUnnamed3482() { |
| 4646 var o = new core.List<api.ListPopulationClause>(); | 4646 var o = new core.List<api.ListPopulationClause>(); |
| 4647 o.add(buildListPopulationClause()); | 4647 o.add(buildListPopulationClause()); |
| 4648 o.add(buildListPopulationClause()); | 4648 o.add(buildListPopulationClause()); |
| 4649 return o; | 4649 return o; |
| 4650 } | 4650 } |
| 4651 | 4651 |
| 4652 checkUnnamed3390(core.List<api.ListPopulationClause> o) { | 4652 checkUnnamed3482(core.List<api.ListPopulationClause> o) { |
| 4653 unittest.expect(o, unittest.hasLength(2)); | 4653 unittest.expect(o, unittest.hasLength(2)); |
| 4654 checkListPopulationClause(o[0]); | 4654 checkListPopulationClause(o[0]); |
| 4655 checkListPopulationClause(o[1]); | 4655 checkListPopulationClause(o[1]); |
| 4656 } | 4656 } |
| 4657 | 4657 |
| 4658 core.int buildCounterListPopulationRule = 0; | 4658 core.int buildCounterListPopulationRule = 0; |
| 4659 buildListPopulationRule() { | 4659 buildListPopulationRule() { |
| 4660 var o = new api.ListPopulationRule(); | 4660 var o = new api.ListPopulationRule(); |
| 4661 buildCounterListPopulationRule++; | 4661 buildCounterListPopulationRule++; |
| 4662 if (buildCounterListPopulationRule < 3) { | 4662 if (buildCounterListPopulationRule < 3) { |
| 4663 o.floodlightActivityId = "foo"; | 4663 o.floodlightActivityId = "foo"; |
| 4664 o.floodlightActivityName = "foo"; | 4664 o.floodlightActivityName = "foo"; |
| 4665 o.listPopulationClauses = buildUnnamed3390(); | 4665 o.listPopulationClauses = buildUnnamed3482(); |
| 4666 } | 4666 } |
| 4667 buildCounterListPopulationRule--; | 4667 buildCounterListPopulationRule--; |
| 4668 return o; | 4668 return o; |
| 4669 } | 4669 } |
| 4670 | 4670 |
| 4671 checkListPopulationRule(api.ListPopulationRule o) { | 4671 checkListPopulationRule(api.ListPopulationRule o) { |
| 4672 buildCounterListPopulationRule++; | 4672 buildCounterListPopulationRule++; |
| 4673 if (buildCounterListPopulationRule < 3) { | 4673 if (buildCounterListPopulationRule < 3) { |
| 4674 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4674 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4675 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); | 4675 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); |
| 4676 checkUnnamed3390(o.listPopulationClauses); | 4676 checkUnnamed3482(o.listPopulationClauses); |
| 4677 } | 4677 } |
| 4678 buildCounterListPopulationRule--; | 4678 buildCounterListPopulationRule--; |
| 4679 } | 4679 } |
| 4680 | 4680 |
| 4681 core.int buildCounterListPopulationTerm = 0; | 4681 core.int buildCounterListPopulationTerm = 0; |
| 4682 buildListPopulationTerm() { | 4682 buildListPopulationTerm() { |
| 4683 var o = new api.ListPopulationTerm(); | 4683 var o = new api.ListPopulationTerm(); |
| 4684 buildCounterListPopulationTerm++; | 4684 buildCounterListPopulationTerm++; |
| 4685 if (buildCounterListPopulationTerm < 3) { | 4685 if (buildCounterListPopulationTerm < 3) { |
| 4686 o.contains = true; | 4686 o.contains = true; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4796 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4796 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4797 unittest.expect(o.dartId, unittest.equals('foo')); | 4797 unittest.expect(o.dartId, unittest.equals('foo')); |
| 4798 unittest.expect(o.dmaId, unittest.equals('foo')); | 4798 unittest.expect(o.dmaId, unittest.equals('foo')); |
| 4799 unittest.expect(o.kind, unittest.equals('foo')); | 4799 unittest.expect(o.kind, unittest.equals('foo')); |
| 4800 unittest.expect(o.metroCode, unittest.equals('foo')); | 4800 unittest.expect(o.metroCode, unittest.equals('foo')); |
| 4801 unittest.expect(o.name, unittest.equals('foo')); | 4801 unittest.expect(o.name, unittest.equals('foo')); |
| 4802 } | 4802 } |
| 4803 buildCounterMetro--; | 4803 buildCounterMetro--; |
| 4804 } | 4804 } |
| 4805 | 4805 |
| 4806 buildUnnamed3391() { | 4806 buildUnnamed3483() { |
| 4807 var o = new core.List<api.Metro>(); | 4807 var o = new core.List<api.Metro>(); |
| 4808 o.add(buildMetro()); | 4808 o.add(buildMetro()); |
| 4809 o.add(buildMetro()); | 4809 o.add(buildMetro()); |
| 4810 return o; | 4810 return o; |
| 4811 } | 4811 } |
| 4812 | 4812 |
| 4813 checkUnnamed3391(core.List<api.Metro> o) { | 4813 checkUnnamed3483(core.List<api.Metro> o) { |
| 4814 unittest.expect(o, unittest.hasLength(2)); | 4814 unittest.expect(o, unittest.hasLength(2)); |
| 4815 checkMetro(o[0]); | 4815 checkMetro(o[0]); |
| 4816 checkMetro(o[1]); | 4816 checkMetro(o[1]); |
| 4817 } | 4817 } |
| 4818 | 4818 |
| 4819 core.int buildCounterMetrosListResponse = 0; | 4819 core.int buildCounterMetrosListResponse = 0; |
| 4820 buildMetrosListResponse() { | 4820 buildMetrosListResponse() { |
| 4821 var o = new api.MetrosListResponse(); | 4821 var o = new api.MetrosListResponse(); |
| 4822 buildCounterMetrosListResponse++; | 4822 buildCounterMetrosListResponse++; |
| 4823 if (buildCounterMetrosListResponse < 3) { | 4823 if (buildCounterMetrosListResponse < 3) { |
| 4824 o.kind = "foo"; | 4824 o.kind = "foo"; |
| 4825 o.metros = buildUnnamed3391(); | 4825 o.metros = buildUnnamed3483(); |
| 4826 } | 4826 } |
| 4827 buildCounterMetrosListResponse--; | 4827 buildCounterMetrosListResponse--; |
| 4828 return o; | 4828 return o; |
| 4829 } | 4829 } |
| 4830 | 4830 |
| 4831 checkMetrosListResponse(api.MetrosListResponse o) { | 4831 checkMetrosListResponse(api.MetrosListResponse o) { |
| 4832 buildCounterMetrosListResponse++; | 4832 buildCounterMetrosListResponse++; |
| 4833 if (buildCounterMetrosListResponse < 3) { | 4833 if (buildCounterMetrosListResponse < 3) { |
| 4834 unittest.expect(o.kind, unittest.equals('foo')); | 4834 unittest.expect(o.kind, unittest.equals('foo')); |
| 4835 checkUnnamed3391(o.metros); | 4835 checkUnnamed3483(o.metros); |
| 4836 } | 4836 } |
| 4837 buildCounterMetrosListResponse--; | 4837 buildCounterMetrosListResponse--; |
| 4838 } | 4838 } |
| 4839 | 4839 |
| 4840 core.int buildCounterMobileCarrier = 0; | 4840 core.int buildCounterMobileCarrier = 0; |
| 4841 buildMobileCarrier() { | 4841 buildMobileCarrier() { |
| 4842 var o = new api.MobileCarrier(); | 4842 var o = new api.MobileCarrier(); |
| 4843 buildCounterMobileCarrier++; | 4843 buildCounterMobileCarrier++; |
| 4844 if (buildCounterMobileCarrier < 3) { | 4844 if (buildCounterMobileCarrier < 3) { |
| 4845 o.countryCode = "foo"; | 4845 o.countryCode = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4857 if (buildCounterMobileCarrier < 3) { | 4857 if (buildCounterMobileCarrier < 3) { |
| 4858 unittest.expect(o.countryCode, unittest.equals('foo')); | 4858 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 4859 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4859 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4860 unittest.expect(o.id, unittest.equals('foo')); | 4860 unittest.expect(o.id, unittest.equals('foo')); |
| 4861 unittest.expect(o.kind, unittest.equals('foo')); | 4861 unittest.expect(o.kind, unittest.equals('foo')); |
| 4862 unittest.expect(o.name, unittest.equals('foo')); | 4862 unittest.expect(o.name, unittest.equals('foo')); |
| 4863 } | 4863 } |
| 4864 buildCounterMobileCarrier--; | 4864 buildCounterMobileCarrier--; |
| 4865 } | 4865 } |
| 4866 | 4866 |
| 4867 buildUnnamed3392() { | 4867 buildUnnamed3484() { |
| 4868 var o = new core.List<api.MobileCarrier>(); | 4868 var o = new core.List<api.MobileCarrier>(); |
| 4869 o.add(buildMobileCarrier()); | 4869 o.add(buildMobileCarrier()); |
| 4870 o.add(buildMobileCarrier()); | 4870 o.add(buildMobileCarrier()); |
| 4871 return o; | 4871 return o; |
| 4872 } | 4872 } |
| 4873 | 4873 |
| 4874 checkUnnamed3392(core.List<api.MobileCarrier> o) { | 4874 checkUnnamed3484(core.List<api.MobileCarrier> o) { |
| 4875 unittest.expect(o, unittest.hasLength(2)); | 4875 unittest.expect(o, unittest.hasLength(2)); |
| 4876 checkMobileCarrier(o[0]); | 4876 checkMobileCarrier(o[0]); |
| 4877 checkMobileCarrier(o[1]); | 4877 checkMobileCarrier(o[1]); |
| 4878 } | 4878 } |
| 4879 | 4879 |
| 4880 core.int buildCounterMobileCarriersListResponse = 0; | 4880 core.int buildCounterMobileCarriersListResponse = 0; |
| 4881 buildMobileCarriersListResponse() { | 4881 buildMobileCarriersListResponse() { |
| 4882 var o = new api.MobileCarriersListResponse(); | 4882 var o = new api.MobileCarriersListResponse(); |
| 4883 buildCounterMobileCarriersListResponse++; | 4883 buildCounterMobileCarriersListResponse++; |
| 4884 if (buildCounterMobileCarriersListResponse < 3) { | 4884 if (buildCounterMobileCarriersListResponse < 3) { |
| 4885 o.kind = "foo"; | 4885 o.kind = "foo"; |
| 4886 o.mobileCarriers = buildUnnamed3392(); | 4886 o.mobileCarriers = buildUnnamed3484(); |
| 4887 } | 4887 } |
| 4888 buildCounterMobileCarriersListResponse--; | 4888 buildCounterMobileCarriersListResponse--; |
| 4889 return o; | 4889 return o; |
| 4890 } | 4890 } |
| 4891 | 4891 |
| 4892 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { | 4892 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { |
| 4893 buildCounterMobileCarriersListResponse++; | 4893 buildCounterMobileCarriersListResponse++; |
| 4894 if (buildCounterMobileCarriersListResponse < 3) { | 4894 if (buildCounterMobileCarriersListResponse < 3) { |
| 4895 unittest.expect(o.kind, unittest.equals('foo')); | 4895 unittest.expect(o.kind, unittest.equals('foo')); |
| 4896 checkUnnamed3392(o.mobileCarriers); | 4896 checkUnnamed3484(o.mobileCarriers); |
| 4897 } | 4897 } |
| 4898 buildCounterMobileCarriersListResponse--; | 4898 buildCounterMobileCarriersListResponse--; |
| 4899 } | 4899 } |
| 4900 | 4900 |
| 4901 buildUnnamed3393() { | 4901 buildUnnamed3485() { |
| 4902 var o = new core.List<core.String>(); | 4902 var o = new core.List<core.String>(); |
| 4903 o.add("foo"); | 4903 o.add("foo"); |
| 4904 o.add("foo"); | 4904 o.add("foo"); |
| 4905 return o; | 4905 return o; |
| 4906 } | 4906 } |
| 4907 | 4907 |
| 4908 checkUnnamed3393(core.List<core.String> o) { | 4908 checkUnnamed3485(core.List<core.String> o) { |
| 4909 unittest.expect(o, unittest.hasLength(2)); | 4909 unittest.expect(o, unittest.hasLength(2)); |
| 4910 unittest.expect(o[0], unittest.equals('foo')); | 4910 unittest.expect(o[0], unittest.equals('foo')); |
| 4911 unittest.expect(o[1], unittest.equals('foo')); | 4911 unittest.expect(o[1], unittest.equals('foo')); |
| 4912 } | 4912 } |
| 4913 | 4913 |
| 4914 core.int buildCounterObjectFilter = 0; | 4914 core.int buildCounterObjectFilter = 0; |
| 4915 buildObjectFilter() { | 4915 buildObjectFilter() { |
| 4916 var o = new api.ObjectFilter(); | 4916 var o = new api.ObjectFilter(); |
| 4917 buildCounterObjectFilter++; | 4917 buildCounterObjectFilter++; |
| 4918 if (buildCounterObjectFilter < 3) { | 4918 if (buildCounterObjectFilter < 3) { |
| 4919 o.kind = "foo"; | 4919 o.kind = "foo"; |
| 4920 o.objectIds = buildUnnamed3393(); | 4920 o.objectIds = buildUnnamed3485(); |
| 4921 o.status = "foo"; | 4921 o.status = "foo"; |
| 4922 } | 4922 } |
| 4923 buildCounterObjectFilter--; | 4923 buildCounterObjectFilter--; |
| 4924 return o; | 4924 return o; |
| 4925 } | 4925 } |
| 4926 | 4926 |
| 4927 checkObjectFilter(api.ObjectFilter o) { | 4927 checkObjectFilter(api.ObjectFilter o) { |
| 4928 buildCounterObjectFilter++; | 4928 buildCounterObjectFilter++; |
| 4929 if (buildCounterObjectFilter < 3) { | 4929 if (buildCounterObjectFilter < 3) { |
| 4930 unittest.expect(o.kind, unittest.equals('foo')); | 4930 unittest.expect(o.kind, unittest.equals('foo')); |
| 4931 checkUnnamed3393(o.objectIds); | 4931 checkUnnamed3485(o.objectIds); |
| 4932 unittest.expect(o.status, unittest.equals('foo')); | 4932 unittest.expect(o.status, unittest.equals('foo')); |
| 4933 } | 4933 } |
| 4934 buildCounterObjectFilter--; | 4934 buildCounterObjectFilter--; |
| 4935 } | 4935 } |
| 4936 | 4936 |
| 4937 core.int buildCounterOffsetPosition = 0; | 4937 core.int buildCounterOffsetPosition = 0; |
| 4938 buildOffsetPosition() { | 4938 buildOffsetPosition() { |
| 4939 var o = new api.OffsetPosition(); | 4939 var o = new api.OffsetPosition(); |
| 4940 buildCounterOffsetPosition++; | 4940 buildCounterOffsetPosition++; |
| 4941 if (buildCounterOffsetPosition < 3) { | 4941 if (buildCounterOffsetPosition < 3) { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5025 unittest.expect(o.id, unittest.equals('foo')); | 5025 unittest.expect(o.id, unittest.equals('foo')); |
| 5026 unittest.expect(o.kind, unittest.equals('foo')); | 5026 unittest.expect(o.kind, unittest.equals('foo')); |
| 5027 unittest.expect(o.majorVersion, unittest.equals('foo')); | 5027 unittest.expect(o.majorVersion, unittest.equals('foo')); |
| 5028 unittest.expect(o.minorVersion, unittest.equals('foo')); | 5028 unittest.expect(o.minorVersion, unittest.equals('foo')); |
| 5029 unittest.expect(o.name, unittest.equals('foo')); | 5029 unittest.expect(o.name, unittest.equals('foo')); |
| 5030 checkOperatingSystem(o.operatingSystem); | 5030 checkOperatingSystem(o.operatingSystem); |
| 5031 } | 5031 } |
| 5032 buildCounterOperatingSystemVersion--; | 5032 buildCounterOperatingSystemVersion--; |
| 5033 } | 5033 } |
| 5034 | 5034 |
| 5035 buildUnnamed3394() { | 5035 buildUnnamed3486() { |
| 5036 var o = new core.List<api.OperatingSystemVersion>(); | 5036 var o = new core.List<api.OperatingSystemVersion>(); |
| 5037 o.add(buildOperatingSystemVersion()); | 5037 o.add(buildOperatingSystemVersion()); |
| 5038 o.add(buildOperatingSystemVersion()); | 5038 o.add(buildOperatingSystemVersion()); |
| 5039 return o; | 5039 return o; |
| 5040 } | 5040 } |
| 5041 | 5041 |
| 5042 checkUnnamed3394(core.List<api.OperatingSystemVersion> o) { | 5042 checkUnnamed3486(core.List<api.OperatingSystemVersion> o) { |
| 5043 unittest.expect(o, unittest.hasLength(2)); | 5043 unittest.expect(o, unittest.hasLength(2)); |
| 5044 checkOperatingSystemVersion(o[0]); | 5044 checkOperatingSystemVersion(o[0]); |
| 5045 checkOperatingSystemVersion(o[1]); | 5045 checkOperatingSystemVersion(o[1]); |
| 5046 } | 5046 } |
| 5047 | 5047 |
| 5048 core.int buildCounterOperatingSystemVersionsListResponse = 0; | 5048 core.int buildCounterOperatingSystemVersionsListResponse = 0; |
| 5049 buildOperatingSystemVersionsListResponse() { | 5049 buildOperatingSystemVersionsListResponse() { |
| 5050 var o = new api.OperatingSystemVersionsListResponse(); | 5050 var o = new api.OperatingSystemVersionsListResponse(); |
| 5051 buildCounterOperatingSystemVersionsListResponse++; | 5051 buildCounterOperatingSystemVersionsListResponse++; |
| 5052 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 5052 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 5053 o.kind = "foo"; | 5053 o.kind = "foo"; |
| 5054 o.operatingSystemVersions = buildUnnamed3394(); | 5054 o.operatingSystemVersions = buildUnnamed3486(); |
| 5055 } | 5055 } |
| 5056 buildCounterOperatingSystemVersionsListResponse--; | 5056 buildCounterOperatingSystemVersionsListResponse--; |
| 5057 return o; | 5057 return o; |
| 5058 } | 5058 } |
| 5059 | 5059 |
| 5060 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { | 5060 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { |
| 5061 buildCounterOperatingSystemVersionsListResponse++; | 5061 buildCounterOperatingSystemVersionsListResponse++; |
| 5062 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 5062 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 5063 unittest.expect(o.kind, unittest.equals('foo')); | 5063 unittest.expect(o.kind, unittest.equals('foo')); |
| 5064 checkUnnamed3394(o.operatingSystemVersions); | 5064 checkUnnamed3486(o.operatingSystemVersions); |
| 5065 } | 5065 } |
| 5066 buildCounterOperatingSystemVersionsListResponse--; | 5066 buildCounterOperatingSystemVersionsListResponse--; |
| 5067 } | 5067 } |
| 5068 | 5068 |
| 5069 buildUnnamed3395() { | 5069 buildUnnamed3487() { |
| 5070 var o = new core.List<api.OperatingSystem>(); | 5070 var o = new core.List<api.OperatingSystem>(); |
| 5071 o.add(buildOperatingSystem()); | 5071 o.add(buildOperatingSystem()); |
| 5072 o.add(buildOperatingSystem()); | 5072 o.add(buildOperatingSystem()); |
| 5073 return o; | 5073 return o; |
| 5074 } | 5074 } |
| 5075 | 5075 |
| 5076 checkUnnamed3395(core.List<api.OperatingSystem> o) { | 5076 checkUnnamed3487(core.List<api.OperatingSystem> o) { |
| 5077 unittest.expect(o, unittest.hasLength(2)); | 5077 unittest.expect(o, unittest.hasLength(2)); |
| 5078 checkOperatingSystem(o[0]); | 5078 checkOperatingSystem(o[0]); |
| 5079 checkOperatingSystem(o[1]); | 5079 checkOperatingSystem(o[1]); |
| 5080 } | 5080 } |
| 5081 | 5081 |
| 5082 core.int buildCounterOperatingSystemsListResponse = 0; | 5082 core.int buildCounterOperatingSystemsListResponse = 0; |
| 5083 buildOperatingSystemsListResponse() { | 5083 buildOperatingSystemsListResponse() { |
| 5084 var o = new api.OperatingSystemsListResponse(); | 5084 var o = new api.OperatingSystemsListResponse(); |
| 5085 buildCounterOperatingSystemsListResponse++; | 5085 buildCounterOperatingSystemsListResponse++; |
| 5086 if (buildCounterOperatingSystemsListResponse < 3) { | 5086 if (buildCounterOperatingSystemsListResponse < 3) { |
| 5087 o.kind = "foo"; | 5087 o.kind = "foo"; |
| 5088 o.operatingSystems = buildUnnamed3395(); | 5088 o.operatingSystems = buildUnnamed3487(); |
| 5089 } | 5089 } |
| 5090 buildCounterOperatingSystemsListResponse--; | 5090 buildCounterOperatingSystemsListResponse--; |
| 5091 return o; | 5091 return o; |
| 5092 } | 5092 } |
| 5093 | 5093 |
| 5094 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { | 5094 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { |
| 5095 buildCounterOperatingSystemsListResponse++; | 5095 buildCounterOperatingSystemsListResponse++; |
| 5096 if (buildCounterOperatingSystemsListResponse < 3) { | 5096 if (buildCounterOperatingSystemsListResponse < 3) { |
| 5097 unittest.expect(o.kind, unittest.equals('foo')); | 5097 unittest.expect(o.kind, unittest.equals('foo')); |
| 5098 checkUnnamed3395(o.operatingSystems); | 5098 checkUnnamed3487(o.operatingSystems); |
| 5099 } | 5099 } |
| 5100 buildCounterOperatingSystemsListResponse--; | 5100 buildCounterOperatingSystemsListResponse--; |
| 5101 } | 5101 } |
| 5102 | 5102 |
| 5103 core.int buildCounterOptimizationActivity = 0; | 5103 core.int buildCounterOptimizationActivity = 0; |
| 5104 buildOptimizationActivity() { | 5104 buildOptimizationActivity() { |
| 5105 var o = new api.OptimizationActivity(); | 5105 var o = new api.OptimizationActivity(); |
| 5106 buildCounterOptimizationActivity++; | 5106 buildCounterOptimizationActivity++; |
| 5107 if (buildCounterOptimizationActivity < 3) { | 5107 if (buildCounterOptimizationActivity < 3) { |
| 5108 o.floodlightActivityId = "foo"; | 5108 o.floodlightActivityId = "foo"; |
| 5109 o.floodlightActivityIdDimensionValue = buildDimensionValue(); | 5109 o.floodlightActivityIdDimensionValue = buildDimensionValue(); |
| 5110 o.weight = 42; | 5110 o.weight = 42; |
| 5111 } | 5111 } |
| 5112 buildCounterOptimizationActivity--; | 5112 buildCounterOptimizationActivity--; |
| 5113 return o; | 5113 return o; |
| 5114 } | 5114 } |
| 5115 | 5115 |
| 5116 checkOptimizationActivity(api.OptimizationActivity o) { | 5116 checkOptimizationActivity(api.OptimizationActivity o) { |
| 5117 buildCounterOptimizationActivity++; | 5117 buildCounterOptimizationActivity++; |
| 5118 if (buildCounterOptimizationActivity < 3) { | 5118 if (buildCounterOptimizationActivity < 3) { |
| 5119 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 5119 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 5120 checkDimensionValue(o.floodlightActivityIdDimensionValue); | 5120 checkDimensionValue(o.floodlightActivityIdDimensionValue); |
| 5121 unittest.expect(o.weight, unittest.equals(42)); | 5121 unittest.expect(o.weight, unittest.equals(42)); |
| 5122 } | 5122 } |
| 5123 buildCounterOptimizationActivity--; | 5123 buildCounterOptimizationActivity--; |
| 5124 } | 5124 } |
| 5125 | 5125 |
| 5126 buildUnnamed3396() { | 5126 buildUnnamed3488() { |
| 5127 var o = new core.List<core.String>(); | 5127 var o = new core.List<core.String>(); |
| 5128 o.add("foo"); | 5128 o.add("foo"); |
| 5129 o.add("foo"); | 5129 o.add("foo"); |
| 5130 return o; | 5130 return o; |
| 5131 } | 5131 } |
| 5132 | 5132 |
| 5133 checkUnnamed3396(core.List<core.String> o) { | 5133 checkUnnamed3488(core.List<core.String> o) { |
| 5134 unittest.expect(o, unittest.hasLength(2)); | 5134 unittest.expect(o, unittest.hasLength(2)); |
| 5135 unittest.expect(o[0], unittest.equals('foo')); | 5135 unittest.expect(o[0], unittest.equals('foo')); |
| 5136 unittest.expect(o[1], unittest.equals('foo')); | 5136 unittest.expect(o[1], unittest.equals('foo')); |
| 5137 } | 5137 } |
| 5138 | 5138 |
| 5139 buildUnnamed3397() { | 5139 buildUnnamed3489() { |
| 5140 var o = new core.List<api.OrderContact>(); | 5140 var o = new core.List<api.OrderContact>(); |
| 5141 o.add(buildOrderContact()); | 5141 o.add(buildOrderContact()); |
| 5142 o.add(buildOrderContact()); | 5142 o.add(buildOrderContact()); |
| 5143 return o; | 5143 return o; |
| 5144 } | 5144 } |
| 5145 | 5145 |
| 5146 checkUnnamed3397(core.List<api.OrderContact> o) { | 5146 checkUnnamed3489(core.List<api.OrderContact> o) { |
| 5147 unittest.expect(o, unittest.hasLength(2)); | 5147 unittest.expect(o, unittest.hasLength(2)); |
| 5148 checkOrderContact(o[0]); | 5148 checkOrderContact(o[0]); |
| 5149 checkOrderContact(o[1]); | 5149 checkOrderContact(o[1]); |
| 5150 } | 5150 } |
| 5151 | 5151 |
| 5152 buildUnnamed3398() { | 5152 buildUnnamed3490() { |
| 5153 var o = new core.List<core.String>(); | 5153 var o = new core.List<core.String>(); |
| 5154 o.add("foo"); | 5154 o.add("foo"); |
| 5155 o.add("foo"); | 5155 o.add("foo"); |
| 5156 return o; | 5156 return o; |
| 5157 } | 5157 } |
| 5158 | 5158 |
| 5159 checkUnnamed3398(core.List<core.String> o) { | 5159 checkUnnamed3490(core.List<core.String> o) { |
| 5160 unittest.expect(o, unittest.hasLength(2)); | 5160 unittest.expect(o, unittest.hasLength(2)); |
| 5161 unittest.expect(o[0], unittest.equals('foo')); | 5161 unittest.expect(o[0], unittest.equals('foo')); |
| 5162 unittest.expect(o[1], unittest.equals('foo')); | 5162 unittest.expect(o[1], unittest.equals('foo')); |
| 5163 } | 5163 } |
| 5164 | 5164 |
| 5165 buildUnnamed3399() { | 5165 buildUnnamed3491() { |
| 5166 var o = new core.List<core.String>(); | 5166 var o = new core.List<core.String>(); |
| 5167 o.add("foo"); | 5167 o.add("foo"); |
| 5168 o.add("foo"); | 5168 o.add("foo"); |
| 5169 return o; | 5169 return o; |
| 5170 } | 5170 } |
| 5171 | 5171 |
| 5172 checkUnnamed3399(core.List<core.String> o) { | 5172 checkUnnamed3491(core.List<core.String> o) { |
| 5173 unittest.expect(o, unittest.hasLength(2)); | 5173 unittest.expect(o, unittest.hasLength(2)); |
| 5174 unittest.expect(o[0], unittest.equals('foo')); | 5174 unittest.expect(o[0], unittest.equals('foo')); |
| 5175 unittest.expect(o[1], unittest.equals('foo')); | 5175 unittest.expect(o[1], unittest.equals('foo')); |
| 5176 } | 5176 } |
| 5177 | 5177 |
| 5178 core.int buildCounterOrder = 0; | 5178 core.int buildCounterOrder = 0; |
| 5179 buildOrder() { | 5179 buildOrder() { |
| 5180 var o = new api.Order(); | 5180 var o = new api.Order(); |
| 5181 buildCounterOrder++; | 5181 buildCounterOrder++; |
| 5182 if (buildCounterOrder < 3) { | 5182 if (buildCounterOrder < 3) { |
| 5183 o.accountId = "foo"; | 5183 o.accountId = "foo"; |
| 5184 o.advertiserId = "foo"; | 5184 o.advertiserId = "foo"; |
| 5185 o.approverUserProfileIds = buildUnnamed3396(); | 5185 o.approverUserProfileIds = buildUnnamed3488(); |
| 5186 o.buyerInvoiceId = "foo"; | 5186 o.buyerInvoiceId = "foo"; |
| 5187 o.buyerOrganizationName = "foo"; | 5187 o.buyerOrganizationName = "foo"; |
| 5188 o.comments = "foo"; | 5188 o.comments = "foo"; |
| 5189 o.contacts = buildUnnamed3397(); | 5189 o.contacts = buildUnnamed3489(); |
| 5190 o.id = "foo"; | 5190 o.id = "foo"; |
| 5191 o.kind = "foo"; | 5191 o.kind = "foo"; |
| 5192 o.lastModifiedInfo = buildLastModifiedInfo(); | 5192 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 5193 o.name = "foo"; | 5193 o.name = "foo"; |
| 5194 o.notes = "foo"; | 5194 o.notes = "foo"; |
| 5195 o.planningTermId = "foo"; | 5195 o.planningTermId = "foo"; |
| 5196 o.projectId = "foo"; | 5196 o.projectId = "foo"; |
| 5197 o.sellerOrderId = "foo"; | 5197 o.sellerOrderId = "foo"; |
| 5198 o.sellerOrganizationName = "foo"; | 5198 o.sellerOrganizationName = "foo"; |
| 5199 o.siteId = buildUnnamed3398(); | 5199 o.siteId = buildUnnamed3490(); |
| 5200 o.siteNames = buildUnnamed3399(); | 5200 o.siteNames = buildUnnamed3491(); |
| 5201 o.subaccountId = "foo"; | 5201 o.subaccountId = "foo"; |
| 5202 o.termsAndConditions = "foo"; | 5202 o.termsAndConditions = "foo"; |
| 5203 } | 5203 } |
| 5204 buildCounterOrder--; | 5204 buildCounterOrder--; |
| 5205 return o; | 5205 return o; |
| 5206 } | 5206 } |
| 5207 | 5207 |
| 5208 checkOrder(api.Order o) { | 5208 checkOrder(api.Order o) { |
| 5209 buildCounterOrder++; | 5209 buildCounterOrder++; |
| 5210 if (buildCounterOrder < 3) { | 5210 if (buildCounterOrder < 3) { |
| 5211 unittest.expect(o.accountId, unittest.equals('foo')); | 5211 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5212 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5212 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5213 checkUnnamed3396(o.approverUserProfileIds); | 5213 checkUnnamed3488(o.approverUserProfileIds); |
| 5214 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); | 5214 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); |
| 5215 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); | 5215 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); |
| 5216 unittest.expect(o.comments, unittest.equals('foo')); | 5216 unittest.expect(o.comments, unittest.equals('foo')); |
| 5217 checkUnnamed3397(o.contacts); | 5217 checkUnnamed3489(o.contacts); |
| 5218 unittest.expect(o.id, unittest.equals('foo')); | 5218 unittest.expect(o.id, unittest.equals('foo')); |
| 5219 unittest.expect(o.kind, unittest.equals('foo')); | 5219 unittest.expect(o.kind, unittest.equals('foo')); |
| 5220 checkLastModifiedInfo(o.lastModifiedInfo); | 5220 checkLastModifiedInfo(o.lastModifiedInfo); |
| 5221 unittest.expect(o.name, unittest.equals('foo')); | 5221 unittest.expect(o.name, unittest.equals('foo')); |
| 5222 unittest.expect(o.notes, unittest.equals('foo')); | 5222 unittest.expect(o.notes, unittest.equals('foo')); |
| 5223 unittest.expect(o.planningTermId, unittest.equals('foo')); | 5223 unittest.expect(o.planningTermId, unittest.equals('foo')); |
| 5224 unittest.expect(o.projectId, unittest.equals('foo')); | 5224 unittest.expect(o.projectId, unittest.equals('foo')); |
| 5225 unittest.expect(o.sellerOrderId, unittest.equals('foo')); | 5225 unittest.expect(o.sellerOrderId, unittest.equals('foo')); |
| 5226 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); | 5226 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); |
| 5227 checkUnnamed3398(o.siteId); | 5227 checkUnnamed3490(o.siteId); |
| 5228 checkUnnamed3399(o.siteNames); | 5228 checkUnnamed3491(o.siteNames); |
| 5229 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5229 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5230 unittest.expect(o.termsAndConditions, unittest.equals('foo')); | 5230 unittest.expect(o.termsAndConditions, unittest.equals('foo')); |
| 5231 } | 5231 } |
| 5232 buildCounterOrder--; | 5232 buildCounterOrder--; |
| 5233 } | 5233 } |
| 5234 | 5234 |
| 5235 core.int buildCounterOrderContact = 0; | 5235 core.int buildCounterOrderContact = 0; |
| 5236 buildOrderContact() { | 5236 buildOrderContact() { |
| 5237 var o = new api.OrderContact(); | 5237 var o = new api.OrderContact(); |
| 5238 buildCounterOrderContact++; | 5238 buildCounterOrderContact++; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 5252 if (buildCounterOrderContact < 3) { | 5252 if (buildCounterOrderContact < 3) { |
| 5253 unittest.expect(o.contactInfo, unittest.equals('foo')); | 5253 unittest.expect(o.contactInfo, unittest.equals('foo')); |
| 5254 unittest.expect(o.contactName, unittest.equals('foo')); | 5254 unittest.expect(o.contactName, unittest.equals('foo')); |
| 5255 unittest.expect(o.contactTitle, unittest.equals('foo')); | 5255 unittest.expect(o.contactTitle, unittest.equals('foo')); |
| 5256 unittest.expect(o.contactType, unittest.equals('foo')); | 5256 unittest.expect(o.contactType, unittest.equals('foo')); |
| 5257 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); | 5257 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); |
| 5258 } | 5258 } |
| 5259 buildCounterOrderContact--; | 5259 buildCounterOrderContact--; |
| 5260 } | 5260 } |
| 5261 | 5261 |
| 5262 buildUnnamed3400() { | 5262 buildUnnamed3492() { |
| 5263 var o = new core.List<core.String>(); | 5263 var o = new core.List<core.String>(); |
| 5264 o.add("foo"); | 5264 o.add("foo"); |
| 5265 o.add("foo"); | 5265 o.add("foo"); |
| 5266 return o; | 5266 return o; |
| 5267 } | 5267 } |
| 5268 | 5268 |
| 5269 checkUnnamed3400(core.List<core.String> o) { | 5269 checkUnnamed3492(core.List<core.String> o) { |
| 5270 unittest.expect(o, unittest.hasLength(2)); | 5270 unittest.expect(o, unittest.hasLength(2)); |
| 5271 unittest.expect(o[0], unittest.equals('foo')); | 5271 unittest.expect(o[0], unittest.equals('foo')); |
| 5272 unittest.expect(o[1], unittest.equals('foo')); | 5272 unittest.expect(o[1], unittest.equals('foo')); |
| 5273 } | 5273 } |
| 5274 | 5274 |
| 5275 buildUnnamed3401() { | 5275 buildUnnamed3493() { |
| 5276 var o = new core.List<core.String>(); | 5276 var o = new core.List<core.String>(); |
| 5277 o.add("foo"); | 5277 o.add("foo"); |
| 5278 o.add("foo"); | 5278 o.add("foo"); |
| 5279 return o; | 5279 return o; |
| 5280 } | 5280 } |
| 5281 | 5281 |
| 5282 checkUnnamed3401(core.List<core.String> o) { | 5282 checkUnnamed3493(core.List<core.String> o) { |
| 5283 unittest.expect(o, unittest.hasLength(2)); | 5283 unittest.expect(o, unittest.hasLength(2)); |
| 5284 unittest.expect(o[0], unittest.equals('foo')); | 5284 unittest.expect(o[0], unittest.equals('foo')); |
| 5285 unittest.expect(o[1], unittest.equals('foo')); | 5285 unittest.expect(o[1], unittest.equals('foo')); |
| 5286 } | 5286 } |
| 5287 | 5287 |
| 5288 core.int buildCounterOrderDocument = 0; | 5288 core.int buildCounterOrderDocument = 0; |
| 5289 buildOrderDocument() { | 5289 buildOrderDocument() { |
| 5290 var o = new api.OrderDocument(); | 5290 var o = new api.OrderDocument(); |
| 5291 buildCounterOrderDocument++; | 5291 buildCounterOrderDocument++; |
| 5292 if (buildCounterOrderDocument < 3) { | 5292 if (buildCounterOrderDocument < 3) { |
| 5293 o.accountId = "foo"; | 5293 o.accountId = "foo"; |
| 5294 o.advertiserId = "foo"; | 5294 o.advertiserId = "foo"; |
| 5295 o.amendedOrderDocumentId = "foo"; | 5295 o.amendedOrderDocumentId = "foo"; |
| 5296 o.approvedByUserProfileIds = buildUnnamed3400(); | 5296 o.approvedByUserProfileIds = buildUnnamed3492(); |
| 5297 o.cancelled = true; | 5297 o.cancelled = true; |
| 5298 o.createdInfo = buildLastModifiedInfo(); | 5298 o.createdInfo = buildLastModifiedInfo(); |
| 5299 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5299 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5300 o.id = "foo"; | 5300 o.id = "foo"; |
| 5301 o.kind = "foo"; | 5301 o.kind = "foo"; |
| 5302 o.lastSentRecipients = buildUnnamed3401(); | 5302 o.lastSentRecipients = buildUnnamed3493(); |
| 5303 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); | 5303 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 5304 o.orderId = "foo"; | 5304 o.orderId = "foo"; |
| 5305 o.projectId = "foo"; | 5305 o.projectId = "foo"; |
| 5306 o.signed = true; | 5306 o.signed = true; |
| 5307 o.subaccountId = "foo"; | 5307 o.subaccountId = "foo"; |
| 5308 o.title = "foo"; | 5308 o.title = "foo"; |
| 5309 o.type = "foo"; | 5309 o.type = "foo"; |
| 5310 } | 5310 } |
| 5311 buildCounterOrderDocument--; | 5311 buildCounterOrderDocument--; |
| 5312 return o; | 5312 return o; |
| 5313 } | 5313 } |
| 5314 | 5314 |
| 5315 checkOrderDocument(api.OrderDocument o) { | 5315 checkOrderDocument(api.OrderDocument o) { |
| 5316 buildCounterOrderDocument++; | 5316 buildCounterOrderDocument++; |
| 5317 if (buildCounterOrderDocument < 3) { | 5317 if (buildCounterOrderDocument < 3) { |
| 5318 unittest.expect(o.accountId, unittest.equals('foo')); | 5318 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5319 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5319 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5320 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); | 5320 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); |
| 5321 checkUnnamed3400(o.approvedByUserProfileIds); | 5321 checkUnnamed3492(o.approvedByUserProfileIds); |
| 5322 unittest.expect(o.cancelled, unittest.isTrue); | 5322 unittest.expect(o.cancelled, unittest.isTrue); |
| 5323 checkLastModifiedInfo(o.createdInfo); | 5323 checkLastModifiedInfo(o.createdInfo); |
| 5324 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); | 5324 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); |
| 5325 unittest.expect(o.id, unittest.equals('foo')); | 5325 unittest.expect(o.id, unittest.equals('foo')); |
| 5326 unittest.expect(o.kind, unittest.equals('foo')); | 5326 unittest.expect(o.kind, unittest.equals('foo')); |
| 5327 checkUnnamed3401(o.lastSentRecipients); | 5327 checkUnnamed3493(o.lastSentRecipients); |
| 5328 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); | 5328 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); |
| 5329 unittest.expect(o.orderId, unittest.equals('foo')); | 5329 unittest.expect(o.orderId, unittest.equals('foo')); |
| 5330 unittest.expect(o.projectId, unittest.equals('foo')); | 5330 unittest.expect(o.projectId, unittest.equals('foo')); |
| 5331 unittest.expect(o.signed, unittest.isTrue); | 5331 unittest.expect(o.signed, unittest.isTrue); |
| 5332 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5332 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5333 unittest.expect(o.title, unittest.equals('foo')); | 5333 unittest.expect(o.title, unittest.equals('foo')); |
| 5334 unittest.expect(o.type, unittest.equals('foo')); | 5334 unittest.expect(o.type, unittest.equals('foo')); |
| 5335 } | 5335 } |
| 5336 buildCounterOrderDocument--; | 5336 buildCounterOrderDocument--; |
| 5337 } | 5337 } |
| 5338 | 5338 |
| 5339 buildUnnamed3402() { | 5339 buildUnnamed3494() { |
| 5340 var o = new core.List<api.OrderDocument>(); | 5340 var o = new core.List<api.OrderDocument>(); |
| 5341 o.add(buildOrderDocument()); | 5341 o.add(buildOrderDocument()); |
| 5342 o.add(buildOrderDocument()); | 5342 o.add(buildOrderDocument()); |
| 5343 return o; | 5343 return o; |
| 5344 } | 5344 } |
| 5345 | 5345 |
| 5346 checkUnnamed3402(core.List<api.OrderDocument> o) { | 5346 checkUnnamed3494(core.List<api.OrderDocument> o) { |
| 5347 unittest.expect(o, unittest.hasLength(2)); | 5347 unittest.expect(o, unittest.hasLength(2)); |
| 5348 checkOrderDocument(o[0]); | 5348 checkOrderDocument(o[0]); |
| 5349 checkOrderDocument(o[1]); | 5349 checkOrderDocument(o[1]); |
| 5350 } | 5350 } |
| 5351 | 5351 |
| 5352 core.int buildCounterOrderDocumentsListResponse = 0; | 5352 core.int buildCounterOrderDocumentsListResponse = 0; |
| 5353 buildOrderDocumentsListResponse() { | 5353 buildOrderDocumentsListResponse() { |
| 5354 var o = new api.OrderDocumentsListResponse(); | 5354 var o = new api.OrderDocumentsListResponse(); |
| 5355 buildCounterOrderDocumentsListResponse++; | 5355 buildCounterOrderDocumentsListResponse++; |
| 5356 if (buildCounterOrderDocumentsListResponse < 3) { | 5356 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5357 o.kind = "foo"; | 5357 o.kind = "foo"; |
| 5358 o.nextPageToken = "foo"; | 5358 o.nextPageToken = "foo"; |
| 5359 o.orderDocuments = buildUnnamed3402(); | 5359 o.orderDocuments = buildUnnamed3494(); |
| 5360 } | 5360 } |
| 5361 buildCounterOrderDocumentsListResponse--; | 5361 buildCounterOrderDocumentsListResponse--; |
| 5362 return o; | 5362 return o; |
| 5363 } | 5363 } |
| 5364 | 5364 |
| 5365 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { | 5365 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { |
| 5366 buildCounterOrderDocumentsListResponse++; | 5366 buildCounterOrderDocumentsListResponse++; |
| 5367 if (buildCounterOrderDocumentsListResponse < 3) { | 5367 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5368 unittest.expect(o.kind, unittest.equals('foo')); | 5368 unittest.expect(o.kind, unittest.equals('foo')); |
| 5369 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5369 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5370 checkUnnamed3402(o.orderDocuments); | 5370 checkUnnamed3494(o.orderDocuments); |
| 5371 } | 5371 } |
| 5372 buildCounterOrderDocumentsListResponse--; | 5372 buildCounterOrderDocumentsListResponse--; |
| 5373 } | 5373 } |
| 5374 | 5374 |
| 5375 buildUnnamed3403() { | 5375 buildUnnamed3495() { |
| 5376 var o = new core.List<api.Order>(); | 5376 var o = new core.List<api.Order>(); |
| 5377 o.add(buildOrder()); | 5377 o.add(buildOrder()); |
| 5378 o.add(buildOrder()); | 5378 o.add(buildOrder()); |
| 5379 return o; | 5379 return o; |
| 5380 } | 5380 } |
| 5381 | 5381 |
| 5382 checkUnnamed3403(core.List<api.Order> o) { | 5382 checkUnnamed3495(core.List<api.Order> o) { |
| 5383 unittest.expect(o, unittest.hasLength(2)); | 5383 unittest.expect(o, unittest.hasLength(2)); |
| 5384 checkOrder(o[0]); | 5384 checkOrder(o[0]); |
| 5385 checkOrder(o[1]); | 5385 checkOrder(o[1]); |
| 5386 } | 5386 } |
| 5387 | 5387 |
| 5388 core.int buildCounterOrdersListResponse = 0; | 5388 core.int buildCounterOrdersListResponse = 0; |
| 5389 buildOrdersListResponse() { | 5389 buildOrdersListResponse() { |
| 5390 var o = new api.OrdersListResponse(); | 5390 var o = new api.OrdersListResponse(); |
| 5391 buildCounterOrdersListResponse++; | 5391 buildCounterOrdersListResponse++; |
| 5392 if (buildCounterOrdersListResponse < 3) { | 5392 if (buildCounterOrdersListResponse < 3) { |
| 5393 o.kind = "foo"; | 5393 o.kind = "foo"; |
| 5394 o.nextPageToken = "foo"; | 5394 o.nextPageToken = "foo"; |
| 5395 o.orders = buildUnnamed3403(); | 5395 o.orders = buildUnnamed3495(); |
| 5396 } | 5396 } |
| 5397 buildCounterOrdersListResponse--; | 5397 buildCounterOrdersListResponse--; |
| 5398 return o; | 5398 return o; |
| 5399 } | 5399 } |
| 5400 | 5400 |
| 5401 checkOrdersListResponse(api.OrdersListResponse o) { | 5401 checkOrdersListResponse(api.OrdersListResponse o) { |
| 5402 buildCounterOrdersListResponse++; | 5402 buildCounterOrdersListResponse++; |
| 5403 if (buildCounterOrdersListResponse < 3) { | 5403 if (buildCounterOrdersListResponse < 3) { |
| 5404 unittest.expect(o.kind, unittest.equals('foo')); | 5404 unittest.expect(o.kind, unittest.equals('foo')); |
| 5405 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5405 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5406 checkUnnamed3403(o.orders); | 5406 checkUnnamed3495(o.orders); |
| 5407 } | 5407 } |
| 5408 buildCounterOrdersListResponse--; | 5408 buildCounterOrdersListResponse--; |
| 5409 } | 5409 } |
| 5410 | 5410 |
| 5411 buildUnnamed3404() { | 5411 buildUnnamed3496() { |
| 5412 var o = new core.List<api.Dimension>(); | 5412 var o = new core.List<api.Dimension>(); |
| 5413 o.add(buildDimension()); | 5413 o.add(buildDimension()); |
| 5414 o.add(buildDimension()); | 5414 o.add(buildDimension()); |
| 5415 return o; | 5415 return o; |
| 5416 } | 5416 } |
| 5417 | 5417 |
| 5418 checkUnnamed3404(core.List<api.Dimension> o) { | 5418 checkUnnamed3496(core.List<api.Dimension> o) { |
| 5419 unittest.expect(o, unittest.hasLength(2)); | 5419 unittest.expect(o, unittest.hasLength(2)); |
| 5420 checkDimension(o[0]); | 5420 checkDimension(o[0]); |
| 5421 checkDimension(o[1]); | 5421 checkDimension(o[1]); |
| 5422 } | 5422 } |
| 5423 | 5423 |
| 5424 buildUnnamed3405() { | 5424 buildUnnamed3497() { |
| 5425 var o = new core.List<api.Dimension>(); | 5425 var o = new core.List<api.Dimension>(); |
| 5426 o.add(buildDimension()); | 5426 o.add(buildDimension()); |
| 5427 o.add(buildDimension()); | 5427 o.add(buildDimension()); |
| 5428 return o; | 5428 return o; |
| 5429 } | 5429 } |
| 5430 | 5430 |
| 5431 checkUnnamed3405(core.List<api.Dimension> o) { | 5431 checkUnnamed3497(core.List<api.Dimension> o) { |
| 5432 unittest.expect(o, unittest.hasLength(2)); | 5432 unittest.expect(o, unittest.hasLength(2)); |
| 5433 checkDimension(o[0]); | 5433 checkDimension(o[0]); |
| 5434 checkDimension(o[1]); | 5434 checkDimension(o[1]); |
| 5435 } | 5435 } |
| 5436 | 5436 |
| 5437 buildUnnamed3406() { | 5437 buildUnnamed3498() { |
| 5438 var o = new core.List<api.Metric>(); | 5438 var o = new core.List<api.Metric>(); |
| 5439 o.add(buildMetric()); | 5439 o.add(buildMetric()); |
| 5440 o.add(buildMetric()); | 5440 o.add(buildMetric()); |
| 5441 return o; | 5441 return o; |
| 5442 } | 5442 } |
| 5443 | 5443 |
| 5444 checkUnnamed3406(core.List<api.Metric> o) { | 5444 checkUnnamed3498(core.List<api.Metric> o) { |
| 5445 unittest.expect(o, unittest.hasLength(2)); | 5445 unittest.expect(o, unittest.hasLength(2)); |
| 5446 checkMetric(o[0]); | 5446 checkMetric(o[0]); |
| 5447 checkMetric(o[1]); | 5447 checkMetric(o[1]); |
| 5448 } | 5448 } |
| 5449 | 5449 |
| 5450 buildUnnamed3407() { | 5450 buildUnnamed3499() { |
| 5451 var o = new core.List<api.Dimension>(); | 5451 var o = new core.List<api.Dimension>(); |
| 5452 o.add(buildDimension()); | 5452 o.add(buildDimension()); |
| 5453 o.add(buildDimension()); | 5453 o.add(buildDimension()); |
| 5454 return o; | 5454 return o; |
| 5455 } | 5455 } |
| 5456 | 5456 |
| 5457 checkUnnamed3407(core.List<api.Dimension> o) { | 5457 checkUnnamed3499(core.List<api.Dimension> o) { |
| 5458 unittest.expect(o, unittest.hasLength(2)); | 5458 unittest.expect(o, unittest.hasLength(2)); |
| 5459 checkDimension(o[0]); | 5459 checkDimension(o[0]); |
| 5460 checkDimension(o[1]); | 5460 checkDimension(o[1]); |
| 5461 } | 5461 } |
| 5462 | 5462 |
| 5463 core.int buildCounterPathToConversionReportCompatibleFields = 0; | 5463 core.int buildCounterPathToConversionReportCompatibleFields = 0; |
| 5464 buildPathToConversionReportCompatibleFields() { | 5464 buildPathToConversionReportCompatibleFields() { |
| 5465 var o = new api.PathToConversionReportCompatibleFields(); | 5465 var o = new api.PathToConversionReportCompatibleFields(); |
| 5466 buildCounterPathToConversionReportCompatibleFields++; | 5466 buildCounterPathToConversionReportCompatibleFields++; |
| 5467 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5467 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5468 o.conversionDimensions = buildUnnamed3404(); | 5468 o.conversionDimensions = buildUnnamed3496(); |
| 5469 o.customFloodlightVariables = buildUnnamed3405(); | 5469 o.customFloodlightVariables = buildUnnamed3497(); |
| 5470 o.kind = "foo"; | 5470 o.kind = "foo"; |
| 5471 o.metrics = buildUnnamed3406(); | 5471 o.metrics = buildUnnamed3498(); |
| 5472 o.perInteractionDimensions = buildUnnamed3407(); | 5472 o.perInteractionDimensions = buildUnnamed3499(); |
| 5473 } | 5473 } |
| 5474 buildCounterPathToConversionReportCompatibleFields--; | 5474 buildCounterPathToConversionReportCompatibleFields--; |
| 5475 return o; | 5475 return o; |
| 5476 } | 5476 } |
| 5477 | 5477 |
| 5478 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { | 5478 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { |
| 5479 buildCounterPathToConversionReportCompatibleFields++; | 5479 buildCounterPathToConversionReportCompatibleFields++; |
| 5480 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5480 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5481 checkUnnamed3404(o.conversionDimensions); | 5481 checkUnnamed3496(o.conversionDimensions); |
| 5482 checkUnnamed3405(o.customFloodlightVariables); | 5482 checkUnnamed3497(o.customFloodlightVariables); |
| 5483 unittest.expect(o.kind, unittest.equals('foo')); | 5483 unittest.expect(o.kind, unittest.equals('foo')); |
| 5484 checkUnnamed3406(o.metrics); | 5484 checkUnnamed3498(o.metrics); |
| 5485 checkUnnamed3407(o.perInteractionDimensions); | 5485 checkUnnamed3499(o.perInteractionDimensions); |
| 5486 } | 5486 } |
| 5487 buildCounterPathToConversionReportCompatibleFields--; | 5487 buildCounterPathToConversionReportCompatibleFields--; |
| 5488 } | 5488 } |
| 5489 | 5489 |
| 5490 buildUnnamed3408() { | 5490 buildUnnamed3500() { |
| 5491 var o = new core.List<core.String>(); | 5491 var o = new core.List<core.String>(); |
| 5492 o.add("foo"); | 5492 o.add("foo"); |
| 5493 o.add("foo"); | 5493 o.add("foo"); |
| 5494 return o; | 5494 return o; |
| 5495 } | 5495 } |
| 5496 | 5496 |
| 5497 checkUnnamed3408(core.List<core.String> o) { | 5497 checkUnnamed3500(core.List<core.String> o) { |
| 5498 unittest.expect(o, unittest.hasLength(2)); | 5498 unittest.expect(o, unittest.hasLength(2)); |
| 5499 unittest.expect(o[0], unittest.equals('foo')); | 5499 unittest.expect(o[0], unittest.equals('foo')); |
| 5500 unittest.expect(o[1], unittest.equals('foo')); | 5500 unittest.expect(o[1], unittest.equals('foo')); |
| 5501 } | 5501 } |
| 5502 | 5502 |
| 5503 core.int buildCounterPlacement = 0; | 5503 core.int buildCounterPlacement = 0; |
| 5504 buildPlacement() { | 5504 buildPlacement() { |
| 5505 var o = new api.Placement(); | 5505 var o = new api.Placement(); |
| 5506 buildCounterPlacement++; | 5506 buildCounterPlacement++; |
| 5507 if (buildCounterPlacement < 3) { | 5507 if (buildCounterPlacement < 3) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5532 o.placementStrategyId = "foo"; | 5532 o.placementStrategyId = "foo"; |
| 5533 o.pricingSchedule = buildPricingSchedule(); | 5533 o.pricingSchedule = buildPricingSchedule(); |
| 5534 o.primary = true; | 5534 o.primary = true; |
| 5535 o.publisherUpdateInfo = buildLastModifiedInfo(); | 5535 o.publisherUpdateInfo = buildLastModifiedInfo(); |
| 5536 o.siteId = "foo"; | 5536 o.siteId = "foo"; |
| 5537 o.siteIdDimensionValue = buildDimensionValue(); | 5537 o.siteIdDimensionValue = buildDimensionValue(); |
| 5538 o.size = buildSize(); | 5538 o.size = buildSize(); |
| 5539 o.sslRequired = true; | 5539 o.sslRequired = true; |
| 5540 o.status = "foo"; | 5540 o.status = "foo"; |
| 5541 o.subaccountId = "foo"; | 5541 o.subaccountId = "foo"; |
| 5542 o.tagFormats = buildUnnamed3408(); | 5542 o.tagFormats = buildUnnamed3500(); |
| 5543 o.tagSetting = buildTagSetting(); | 5543 o.tagSetting = buildTagSetting(); |
| 5544 } | 5544 } |
| 5545 buildCounterPlacement--; | 5545 buildCounterPlacement--; |
| 5546 return o; | 5546 return o; |
| 5547 } | 5547 } |
| 5548 | 5548 |
| 5549 checkPlacement(api.Placement o) { | 5549 checkPlacement(api.Placement o) { |
| 5550 buildCounterPlacement++; | 5550 buildCounterPlacement++; |
| 5551 if (buildCounterPlacement < 3) { | 5551 if (buildCounterPlacement < 3) { |
| 5552 unittest.expect(o.accountId, unittest.equals('foo')); | 5552 unittest.expect(o.accountId, unittest.equals('foo')); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 5576 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5576 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5577 checkPricingSchedule(o.pricingSchedule); | 5577 checkPricingSchedule(o.pricingSchedule); |
| 5578 unittest.expect(o.primary, unittest.isTrue); | 5578 unittest.expect(o.primary, unittest.isTrue); |
| 5579 checkLastModifiedInfo(o.publisherUpdateInfo); | 5579 checkLastModifiedInfo(o.publisherUpdateInfo); |
| 5580 unittest.expect(o.siteId, unittest.equals('foo')); | 5580 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5581 checkDimensionValue(o.siteIdDimensionValue); | 5581 checkDimensionValue(o.siteIdDimensionValue); |
| 5582 checkSize(o.size); | 5582 checkSize(o.size); |
| 5583 unittest.expect(o.sslRequired, unittest.isTrue); | 5583 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5584 unittest.expect(o.status, unittest.equals('foo')); | 5584 unittest.expect(o.status, unittest.equals('foo')); |
| 5585 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5585 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5586 checkUnnamed3408(o.tagFormats); | 5586 checkUnnamed3500(o.tagFormats); |
| 5587 checkTagSetting(o.tagSetting); | 5587 checkTagSetting(o.tagSetting); |
| 5588 } | 5588 } |
| 5589 buildCounterPlacement--; | 5589 buildCounterPlacement--; |
| 5590 } | 5590 } |
| 5591 | 5591 |
| 5592 core.int buildCounterPlacementAssignment = 0; | 5592 core.int buildCounterPlacementAssignment = 0; |
| 5593 buildPlacementAssignment() { | 5593 buildPlacementAssignment() { |
| 5594 var o = new api.PlacementAssignment(); | 5594 var o = new api.PlacementAssignment(); |
| 5595 buildCounterPlacementAssignment++; | 5595 buildCounterPlacementAssignment++; |
| 5596 if (buildCounterPlacementAssignment < 3) { | 5596 if (buildCounterPlacementAssignment < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 5607 buildCounterPlacementAssignment++; | 5607 buildCounterPlacementAssignment++; |
| 5608 if (buildCounterPlacementAssignment < 3) { | 5608 if (buildCounterPlacementAssignment < 3) { |
| 5609 unittest.expect(o.active, unittest.isTrue); | 5609 unittest.expect(o.active, unittest.isTrue); |
| 5610 unittest.expect(o.placementId, unittest.equals('foo')); | 5610 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5611 checkDimensionValue(o.placementIdDimensionValue); | 5611 checkDimensionValue(o.placementIdDimensionValue); |
| 5612 unittest.expect(o.sslRequired, unittest.isTrue); | 5612 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5613 } | 5613 } |
| 5614 buildCounterPlacementAssignment--; | 5614 buildCounterPlacementAssignment--; |
| 5615 } | 5615 } |
| 5616 | 5616 |
| 5617 buildUnnamed3409() { | 5617 buildUnnamed3501() { |
| 5618 var o = new core.List<core.String>(); | 5618 var o = new core.List<core.String>(); |
| 5619 o.add("foo"); | 5619 o.add("foo"); |
| 5620 o.add("foo"); | 5620 o.add("foo"); |
| 5621 return o; | 5621 return o; |
| 5622 } | 5622 } |
| 5623 | 5623 |
| 5624 checkUnnamed3409(core.List<core.String> o) { | 5624 checkUnnamed3501(core.List<core.String> o) { |
| 5625 unittest.expect(o, unittest.hasLength(2)); | 5625 unittest.expect(o, unittest.hasLength(2)); |
| 5626 unittest.expect(o[0], unittest.equals('foo')); | 5626 unittest.expect(o[0], unittest.equals('foo')); |
| 5627 unittest.expect(o[1], unittest.equals('foo')); | 5627 unittest.expect(o[1], unittest.equals('foo')); |
| 5628 } | 5628 } |
| 5629 | 5629 |
| 5630 core.int buildCounterPlacementGroup = 0; | 5630 core.int buildCounterPlacementGroup = 0; |
| 5631 buildPlacementGroup() { | 5631 buildPlacementGroup() { |
| 5632 var o = new api.PlacementGroup(); | 5632 var o = new api.PlacementGroup(); |
| 5633 buildCounterPlacementGroup++; | 5633 buildCounterPlacementGroup++; |
| 5634 if (buildCounterPlacementGroup < 3) { | 5634 if (buildCounterPlacementGroup < 3) { |
| 5635 o.accountId = "foo"; | 5635 o.accountId = "foo"; |
| 5636 o.advertiserId = "foo"; | 5636 o.advertiserId = "foo"; |
| 5637 o.advertiserIdDimensionValue = buildDimensionValue(); | 5637 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 5638 o.archived = true; | 5638 o.archived = true; |
| 5639 o.campaignId = "foo"; | 5639 o.campaignId = "foo"; |
| 5640 o.campaignIdDimensionValue = buildDimensionValue(); | 5640 o.campaignIdDimensionValue = buildDimensionValue(); |
| 5641 o.childPlacementIds = buildUnnamed3409(); | 5641 o.childPlacementIds = buildUnnamed3501(); |
| 5642 o.comment = "foo"; | 5642 o.comment = "foo"; |
| 5643 o.contentCategoryId = "foo"; | 5643 o.contentCategoryId = "foo"; |
| 5644 o.createInfo = buildLastModifiedInfo(); | 5644 o.createInfo = buildLastModifiedInfo(); |
| 5645 o.directorySiteId = "foo"; | 5645 o.directorySiteId = "foo"; |
| 5646 o.directorySiteIdDimensionValue = buildDimensionValue(); | 5646 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 5647 o.externalId = "foo"; | 5647 o.externalId = "foo"; |
| 5648 o.id = "foo"; | 5648 o.id = "foo"; |
| 5649 o.idDimensionValue = buildDimensionValue(); | 5649 o.idDimensionValue = buildDimensionValue(); |
| 5650 o.kind = "foo"; | 5650 o.kind = "foo"; |
| 5651 o.lastModifiedInfo = buildLastModifiedInfo(); | 5651 o.lastModifiedInfo = buildLastModifiedInfo(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 5665 | 5665 |
| 5666 checkPlacementGroup(api.PlacementGroup o) { | 5666 checkPlacementGroup(api.PlacementGroup o) { |
| 5667 buildCounterPlacementGroup++; | 5667 buildCounterPlacementGroup++; |
| 5668 if (buildCounterPlacementGroup < 3) { | 5668 if (buildCounterPlacementGroup < 3) { |
| 5669 unittest.expect(o.accountId, unittest.equals('foo')); | 5669 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5670 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5670 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5671 checkDimensionValue(o.advertiserIdDimensionValue); | 5671 checkDimensionValue(o.advertiserIdDimensionValue); |
| 5672 unittest.expect(o.archived, unittest.isTrue); | 5672 unittest.expect(o.archived, unittest.isTrue); |
| 5673 unittest.expect(o.campaignId, unittest.equals('foo')); | 5673 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 5674 checkDimensionValue(o.campaignIdDimensionValue); | 5674 checkDimensionValue(o.campaignIdDimensionValue); |
| 5675 checkUnnamed3409(o.childPlacementIds); | 5675 checkUnnamed3501(o.childPlacementIds); |
| 5676 unittest.expect(o.comment, unittest.equals('foo')); | 5676 unittest.expect(o.comment, unittest.equals('foo')); |
| 5677 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 5677 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 5678 checkLastModifiedInfo(o.createInfo); | 5678 checkLastModifiedInfo(o.createInfo); |
| 5679 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 5679 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 5680 checkDimensionValue(o.directorySiteIdDimensionValue); | 5680 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 5681 unittest.expect(o.externalId, unittest.equals('foo')); | 5681 unittest.expect(o.externalId, unittest.equals('foo')); |
| 5682 unittest.expect(o.id, unittest.equals('foo')); | 5682 unittest.expect(o.id, unittest.equals('foo')); |
| 5683 checkDimensionValue(o.idDimensionValue); | 5683 checkDimensionValue(o.idDimensionValue); |
| 5684 unittest.expect(o.kind, unittest.equals('foo')); | 5684 unittest.expect(o.kind, unittest.equals('foo')); |
| 5685 checkLastModifiedInfo(o.lastModifiedInfo); | 5685 checkLastModifiedInfo(o.lastModifiedInfo); |
| 5686 unittest.expect(o.name, unittest.equals('foo')); | 5686 unittest.expect(o.name, unittest.equals('foo')); |
| 5687 unittest.expect(o.placementGroupType, unittest.equals('foo')); | 5687 unittest.expect(o.placementGroupType, unittest.equals('foo')); |
| 5688 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5688 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5689 checkPricingSchedule(o.pricingSchedule); | 5689 checkPricingSchedule(o.pricingSchedule); |
| 5690 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); | 5690 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); |
| 5691 checkDimensionValue(o.primaryPlacementIdDimensionValue); | 5691 checkDimensionValue(o.primaryPlacementIdDimensionValue); |
| 5692 unittest.expect(o.siteId, unittest.equals('foo')); | 5692 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5693 checkDimensionValue(o.siteIdDimensionValue); | 5693 checkDimensionValue(o.siteIdDimensionValue); |
| 5694 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5694 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5695 } | 5695 } |
| 5696 buildCounterPlacementGroup--; | 5696 buildCounterPlacementGroup--; |
| 5697 } | 5697 } |
| 5698 | 5698 |
| 5699 buildUnnamed3410() { | 5699 buildUnnamed3502() { |
| 5700 var o = new core.List<api.PlacementGroup>(); | 5700 var o = new core.List<api.PlacementGroup>(); |
| 5701 o.add(buildPlacementGroup()); | 5701 o.add(buildPlacementGroup()); |
| 5702 o.add(buildPlacementGroup()); | 5702 o.add(buildPlacementGroup()); |
| 5703 return o; | 5703 return o; |
| 5704 } | 5704 } |
| 5705 | 5705 |
| 5706 checkUnnamed3410(core.List<api.PlacementGroup> o) { | 5706 checkUnnamed3502(core.List<api.PlacementGroup> o) { |
| 5707 unittest.expect(o, unittest.hasLength(2)); | 5707 unittest.expect(o, unittest.hasLength(2)); |
| 5708 checkPlacementGroup(o[0]); | 5708 checkPlacementGroup(o[0]); |
| 5709 checkPlacementGroup(o[1]); | 5709 checkPlacementGroup(o[1]); |
| 5710 } | 5710 } |
| 5711 | 5711 |
| 5712 core.int buildCounterPlacementGroupsListResponse = 0; | 5712 core.int buildCounterPlacementGroupsListResponse = 0; |
| 5713 buildPlacementGroupsListResponse() { | 5713 buildPlacementGroupsListResponse() { |
| 5714 var o = new api.PlacementGroupsListResponse(); | 5714 var o = new api.PlacementGroupsListResponse(); |
| 5715 buildCounterPlacementGroupsListResponse++; | 5715 buildCounterPlacementGroupsListResponse++; |
| 5716 if (buildCounterPlacementGroupsListResponse < 3) { | 5716 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5717 o.kind = "foo"; | 5717 o.kind = "foo"; |
| 5718 o.nextPageToken = "foo"; | 5718 o.nextPageToken = "foo"; |
| 5719 o.placementGroups = buildUnnamed3410(); | 5719 o.placementGroups = buildUnnamed3502(); |
| 5720 } | 5720 } |
| 5721 buildCounterPlacementGroupsListResponse--; | 5721 buildCounterPlacementGroupsListResponse--; |
| 5722 return o; | 5722 return o; |
| 5723 } | 5723 } |
| 5724 | 5724 |
| 5725 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { | 5725 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { |
| 5726 buildCounterPlacementGroupsListResponse++; | 5726 buildCounterPlacementGroupsListResponse++; |
| 5727 if (buildCounterPlacementGroupsListResponse < 3) { | 5727 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5728 unittest.expect(o.kind, unittest.equals('foo')); | 5728 unittest.expect(o.kind, unittest.equals('foo')); |
| 5729 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5729 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5730 checkUnnamed3410(o.placementGroups); | 5730 checkUnnamed3502(o.placementGroups); |
| 5731 } | 5731 } |
| 5732 buildCounterPlacementGroupsListResponse--; | 5732 buildCounterPlacementGroupsListResponse--; |
| 5733 } | 5733 } |
| 5734 | 5734 |
| 5735 buildUnnamed3411() { | 5735 buildUnnamed3503() { |
| 5736 var o = new core.List<api.PlacementStrategy>(); | 5736 var o = new core.List<api.PlacementStrategy>(); |
| 5737 o.add(buildPlacementStrategy()); | 5737 o.add(buildPlacementStrategy()); |
| 5738 o.add(buildPlacementStrategy()); | 5738 o.add(buildPlacementStrategy()); |
| 5739 return o; | 5739 return o; |
| 5740 } | 5740 } |
| 5741 | 5741 |
| 5742 checkUnnamed3411(core.List<api.PlacementStrategy> o) { | 5742 checkUnnamed3503(core.List<api.PlacementStrategy> o) { |
| 5743 unittest.expect(o, unittest.hasLength(2)); | 5743 unittest.expect(o, unittest.hasLength(2)); |
| 5744 checkPlacementStrategy(o[0]); | 5744 checkPlacementStrategy(o[0]); |
| 5745 checkPlacementStrategy(o[1]); | 5745 checkPlacementStrategy(o[1]); |
| 5746 } | 5746 } |
| 5747 | 5747 |
| 5748 core.int buildCounterPlacementStrategiesListResponse = 0; | 5748 core.int buildCounterPlacementStrategiesListResponse = 0; |
| 5749 buildPlacementStrategiesListResponse() { | 5749 buildPlacementStrategiesListResponse() { |
| 5750 var o = new api.PlacementStrategiesListResponse(); | 5750 var o = new api.PlacementStrategiesListResponse(); |
| 5751 buildCounterPlacementStrategiesListResponse++; | 5751 buildCounterPlacementStrategiesListResponse++; |
| 5752 if (buildCounterPlacementStrategiesListResponse < 3) { | 5752 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5753 o.kind = "foo"; | 5753 o.kind = "foo"; |
| 5754 o.nextPageToken = "foo"; | 5754 o.nextPageToken = "foo"; |
| 5755 o.placementStrategies = buildUnnamed3411(); | 5755 o.placementStrategies = buildUnnamed3503(); |
| 5756 } | 5756 } |
| 5757 buildCounterPlacementStrategiesListResponse--; | 5757 buildCounterPlacementStrategiesListResponse--; |
| 5758 return o; | 5758 return o; |
| 5759 } | 5759 } |
| 5760 | 5760 |
| 5761 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { | 5761 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { |
| 5762 buildCounterPlacementStrategiesListResponse++; | 5762 buildCounterPlacementStrategiesListResponse++; |
| 5763 if (buildCounterPlacementStrategiesListResponse < 3) { | 5763 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5764 unittest.expect(o.kind, unittest.equals('foo')); | 5764 unittest.expect(o.kind, unittest.equals('foo')); |
| 5765 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5765 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5766 checkUnnamed3411(o.placementStrategies); | 5766 checkUnnamed3503(o.placementStrategies); |
| 5767 } | 5767 } |
| 5768 buildCounterPlacementStrategiesListResponse--; | 5768 buildCounterPlacementStrategiesListResponse--; |
| 5769 } | 5769 } |
| 5770 | 5770 |
| 5771 core.int buildCounterPlacementStrategy = 0; | 5771 core.int buildCounterPlacementStrategy = 0; |
| 5772 buildPlacementStrategy() { | 5772 buildPlacementStrategy() { |
| 5773 var o = new api.PlacementStrategy(); | 5773 var o = new api.PlacementStrategy(); |
| 5774 buildCounterPlacementStrategy++; | 5774 buildCounterPlacementStrategy++; |
| 5775 if (buildCounterPlacementStrategy < 3) { | 5775 if (buildCounterPlacementStrategy < 3) { |
| 5776 o.accountId = "foo"; | 5776 o.accountId = "foo"; |
| 5777 o.id = "foo"; | 5777 o.id = "foo"; |
| 5778 o.kind = "foo"; | 5778 o.kind = "foo"; |
| 5779 o.name = "foo"; | 5779 o.name = "foo"; |
| 5780 } | 5780 } |
| 5781 buildCounterPlacementStrategy--; | 5781 buildCounterPlacementStrategy--; |
| 5782 return o; | 5782 return o; |
| 5783 } | 5783 } |
| 5784 | 5784 |
| 5785 checkPlacementStrategy(api.PlacementStrategy o) { | 5785 checkPlacementStrategy(api.PlacementStrategy o) { |
| 5786 buildCounterPlacementStrategy++; | 5786 buildCounterPlacementStrategy++; |
| 5787 if (buildCounterPlacementStrategy < 3) { | 5787 if (buildCounterPlacementStrategy < 3) { |
| 5788 unittest.expect(o.accountId, unittest.equals('foo')); | 5788 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5789 unittest.expect(o.id, unittest.equals('foo')); | 5789 unittest.expect(o.id, unittest.equals('foo')); |
| 5790 unittest.expect(o.kind, unittest.equals('foo')); | 5790 unittest.expect(o.kind, unittest.equals('foo')); |
| 5791 unittest.expect(o.name, unittest.equals('foo')); | 5791 unittest.expect(o.name, unittest.equals('foo')); |
| 5792 } | 5792 } |
| 5793 buildCounterPlacementStrategy--; | 5793 buildCounterPlacementStrategy--; |
| 5794 } | 5794 } |
| 5795 | 5795 |
| 5796 buildUnnamed3412() { | 5796 buildUnnamed3504() { |
| 5797 var o = new core.List<api.TagData>(); | 5797 var o = new core.List<api.TagData>(); |
| 5798 o.add(buildTagData()); | 5798 o.add(buildTagData()); |
| 5799 o.add(buildTagData()); | 5799 o.add(buildTagData()); |
| 5800 return o; | 5800 return o; |
| 5801 } | 5801 } |
| 5802 | 5802 |
| 5803 checkUnnamed3412(core.List<api.TagData> o) { | 5803 checkUnnamed3504(core.List<api.TagData> o) { |
| 5804 unittest.expect(o, unittest.hasLength(2)); | 5804 unittest.expect(o, unittest.hasLength(2)); |
| 5805 checkTagData(o[0]); | 5805 checkTagData(o[0]); |
| 5806 checkTagData(o[1]); | 5806 checkTagData(o[1]); |
| 5807 } | 5807 } |
| 5808 | 5808 |
| 5809 core.int buildCounterPlacementTag = 0; | 5809 core.int buildCounterPlacementTag = 0; |
| 5810 buildPlacementTag() { | 5810 buildPlacementTag() { |
| 5811 var o = new api.PlacementTag(); | 5811 var o = new api.PlacementTag(); |
| 5812 buildCounterPlacementTag++; | 5812 buildCounterPlacementTag++; |
| 5813 if (buildCounterPlacementTag < 3) { | 5813 if (buildCounterPlacementTag < 3) { |
| 5814 o.placementId = "foo"; | 5814 o.placementId = "foo"; |
| 5815 o.tagDatas = buildUnnamed3412(); | 5815 o.tagDatas = buildUnnamed3504(); |
| 5816 } | 5816 } |
| 5817 buildCounterPlacementTag--; | 5817 buildCounterPlacementTag--; |
| 5818 return o; | 5818 return o; |
| 5819 } | 5819 } |
| 5820 | 5820 |
| 5821 checkPlacementTag(api.PlacementTag o) { | 5821 checkPlacementTag(api.PlacementTag o) { |
| 5822 buildCounterPlacementTag++; | 5822 buildCounterPlacementTag++; |
| 5823 if (buildCounterPlacementTag < 3) { | 5823 if (buildCounterPlacementTag < 3) { |
| 5824 unittest.expect(o.placementId, unittest.equals('foo')); | 5824 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5825 checkUnnamed3412(o.tagDatas); | 5825 checkUnnamed3504(o.tagDatas); |
| 5826 } | 5826 } |
| 5827 buildCounterPlacementTag--; | 5827 buildCounterPlacementTag--; |
| 5828 } | 5828 } |
| 5829 | 5829 |
| 5830 buildUnnamed3413() { | 5830 buildUnnamed3505() { |
| 5831 var o = new core.List<api.PlacementTag>(); | 5831 var o = new core.List<api.PlacementTag>(); |
| 5832 o.add(buildPlacementTag()); | 5832 o.add(buildPlacementTag()); |
| 5833 o.add(buildPlacementTag()); | 5833 o.add(buildPlacementTag()); |
| 5834 return o; | 5834 return o; |
| 5835 } | 5835 } |
| 5836 | 5836 |
| 5837 checkUnnamed3413(core.List<api.PlacementTag> o) { | 5837 checkUnnamed3505(core.List<api.PlacementTag> o) { |
| 5838 unittest.expect(o, unittest.hasLength(2)); | 5838 unittest.expect(o, unittest.hasLength(2)); |
| 5839 checkPlacementTag(o[0]); | 5839 checkPlacementTag(o[0]); |
| 5840 checkPlacementTag(o[1]); | 5840 checkPlacementTag(o[1]); |
| 5841 } | 5841 } |
| 5842 | 5842 |
| 5843 core.int buildCounterPlacementsGenerateTagsResponse = 0; | 5843 core.int buildCounterPlacementsGenerateTagsResponse = 0; |
| 5844 buildPlacementsGenerateTagsResponse() { | 5844 buildPlacementsGenerateTagsResponse() { |
| 5845 var o = new api.PlacementsGenerateTagsResponse(); | 5845 var o = new api.PlacementsGenerateTagsResponse(); |
| 5846 buildCounterPlacementsGenerateTagsResponse++; | 5846 buildCounterPlacementsGenerateTagsResponse++; |
| 5847 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5847 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5848 o.kind = "foo"; | 5848 o.kind = "foo"; |
| 5849 o.placementTags = buildUnnamed3413(); | 5849 o.placementTags = buildUnnamed3505(); |
| 5850 } | 5850 } |
| 5851 buildCounterPlacementsGenerateTagsResponse--; | 5851 buildCounterPlacementsGenerateTagsResponse--; |
| 5852 return o; | 5852 return o; |
| 5853 } | 5853 } |
| 5854 | 5854 |
| 5855 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { | 5855 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { |
| 5856 buildCounterPlacementsGenerateTagsResponse++; | 5856 buildCounterPlacementsGenerateTagsResponse++; |
| 5857 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5857 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5858 unittest.expect(o.kind, unittest.equals('foo')); | 5858 unittest.expect(o.kind, unittest.equals('foo')); |
| 5859 checkUnnamed3413(o.placementTags); | 5859 checkUnnamed3505(o.placementTags); |
| 5860 } | 5860 } |
| 5861 buildCounterPlacementsGenerateTagsResponse--; | 5861 buildCounterPlacementsGenerateTagsResponse--; |
| 5862 } | 5862 } |
| 5863 | 5863 |
| 5864 buildUnnamed3414() { | 5864 buildUnnamed3506() { |
| 5865 var o = new core.List<api.Placement>(); | 5865 var o = new core.List<api.Placement>(); |
| 5866 o.add(buildPlacement()); | 5866 o.add(buildPlacement()); |
| 5867 o.add(buildPlacement()); | 5867 o.add(buildPlacement()); |
| 5868 return o; | 5868 return o; |
| 5869 } | 5869 } |
| 5870 | 5870 |
| 5871 checkUnnamed3414(core.List<api.Placement> o) { | 5871 checkUnnamed3506(core.List<api.Placement> o) { |
| 5872 unittest.expect(o, unittest.hasLength(2)); | 5872 unittest.expect(o, unittest.hasLength(2)); |
| 5873 checkPlacement(o[0]); | 5873 checkPlacement(o[0]); |
| 5874 checkPlacement(o[1]); | 5874 checkPlacement(o[1]); |
| 5875 } | 5875 } |
| 5876 | 5876 |
| 5877 core.int buildCounterPlacementsListResponse = 0; | 5877 core.int buildCounterPlacementsListResponse = 0; |
| 5878 buildPlacementsListResponse() { | 5878 buildPlacementsListResponse() { |
| 5879 var o = new api.PlacementsListResponse(); | 5879 var o = new api.PlacementsListResponse(); |
| 5880 buildCounterPlacementsListResponse++; | 5880 buildCounterPlacementsListResponse++; |
| 5881 if (buildCounterPlacementsListResponse < 3) { | 5881 if (buildCounterPlacementsListResponse < 3) { |
| 5882 o.kind = "foo"; | 5882 o.kind = "foo"; |
| 5883 o.nextPageToken = "foo"; | 5883 o.nextPageToken = "foo"; |
| 5884 o.placements = buildUnnamed3414(); | 5884 o.placements = buildUnnamed3506(); |
| 5885 } | 5885 } |
| 5886 buildCounterPlacementsListResponse--; | 5886 buildCounterPlacementsListResponse--; |
| 5887 return o; | 5887 return o; |
| 5888 } | 5888 } |
| 5889 | 5889 |
| 5890 checkPlacementsListResponse(api.PlacementsListResponse o) { | 5890 checkPlacementsListResponse(api.PlacementsListResponse o) { |
| 5891 buildCounterPlacementsListResponse++; | 5891 buildCounterPlacementsListResponse++; |
| 5892 if (buildCounterPlacementsListResponse < 3) { | 5892 if (buildCounterPlacementsListResponse < 3) { |
| 5893 unittest.expect(o.kind, unittest.equals('foo')); | 5893 unittest.expect(o.kind, unittest.equals('foo')); |
| 5894 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5894 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5895 checkUnnamed3414(o.placements); | 5895 checkUnnamed3506(o.placements); |
| 5896 } | 5896 } |
| 5897 buildCounterPlacementsListResponse--; | 5897 buildCounterPlacementsListResponse--; |
| 5898 } | 5898 } |
| 5899 | 5899 |
| 5900 core.int buildCounterPlatformType = 0; | 5900 core.int buildCounterPlatformType = 0; |
| 5901 buildPlatformType() { | 5901 buildPlatformType() { |
| 5902 var o = new api.PlatformType(); | 5902 var o = new api.PlatformType(); |
| 5903 buildCounterPlatformType++; | 5903 buildCounterPlatformType++; |
| 5904 if (buildCounterPlatformType < 3) { | 5904 if (buildCounterPlatformType < 3) { |
| 5905 o.id = "foo"; | 5905 o.id = "foo"; |
| 5906 o.kind = "foo"; | 5906 o.kind = "foo"; |
| 5907 o.name = "foo"; | 5907 o.name = "foo"; |
| 5908 } | 5908 } |
| 5909 buildCounterPlatformType--; | 5909 buildCounterPlatformType--; |
| 5910 return o; | 5910 return o; |
| 5911 } | 5911 } |
| 5912 | 5912 |
| 5913 checkPlatformType(api.PlatformType o) { | 5913 checkPlatformType(api.PlatformType o) { |
| 5914 buildCounterPlatformType++; | 5914 buildCounterPlatformType++; |
| 5915 if (buildCounterPlatformType < 3) { | 5915 if (buildCounterPlatformType < 3) { |
| 5916 unittest.expect(o.id, unittest.equals('foo')); | 5916 unittest.expect(o.id, unittest.equals('foo')); |
| 5917 unittest.expect(o.kind, unittest.equals('foo')); | 5917 unittest.expect(o.kind, unittest.equals('foo')); |
| 5918 unittest.expect(o.name, unittest.equals('foo')); | 5918 unittest.expect(o.name, unittest.equals('foo')); |
| 5919 } | 5919 } |
| 5920 buildCounterPlatformType--; | 5920 buildCounterPlatformType--; |
| 5921 } | 5921 } |
| 5922 | 5922 |
| 5923 buildUnnamed3415() { | 5923 buildUnnamed3507() { |
| 5924 var o = new core.List<api.PlatformType>(); | 5924 var o = new core.List<api.PlatformType>(); |
| 5925 o.add(buildPlatformType()); | 5925 o.add(buildPlatformType()); |
| 5926 o.add(buildPlatformType()); | 5926 o.add(buildPlatformType()); |
| 5927 return o; | 5927 return o; |
| 5928 } | 5928 } |
| 5929 | 5929 |
| 5930 checkUnnamed3415(core.List<api.PlatformType> o) { | 5930 checkUnnamed3507(core.List<api.PlatformType> o) { |
| 5931 unittest.expect(o, unittest.hasLength(2)); | 5931 unittest.expect(o, unittest.hasLength(2)); |
| 5932 checkPlatformType(o[0]); | 5932 checkPlatformType(o[0]); |
| 5933 checkPlatformType(o[1]); | 5933 checkPlatformType(o[1]); |
| 5934 } | 5934 } |
| 5935 | 5935 |
| 5936 core.int buildCounterPlatformTypesListResponse = 0; | 5936 core.int buildCounterPlatformTypesListResponse = 0; |
| 5937 buildPlatformTypesListResponse() { | 5937 buildPlatformTypesListResponse() { |
| 5938 var o = new api.PlatformTypesListResponse(); | 5938 var o = new api.PlatformTypesListResponse(); |
| 5939 buildCounterPlatformTypesListResponse++; | 5939 buildCounterPlatformTypesListResponse++; |
| 5940 if (buildCounterPlatformTypesListResponse < 3) { | 5940 if (buildCounterPlatformTypesListResponse < 3) { |
| 5941 o.kind = "foo"; | 5941 o.kind = "foo"; |
| 5942 o.platformTypes = buildUnnamed3415(); | 5942 o.platformTypes = buildUnnamed3507(); |
| 5943 } | 5943 } |
| 5944 buildCounterPlatformTypesListResponse--; | 5944 buildCounterPlatformTypesListResponse--; |
| 5945 return o; | 5945 return o; |
| 5946 } | 5946 } |
| 5947 | 5947 |
| 5948 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { | 5948 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { |
| 5949 buildCounterPlatformTypesListResponse++; | 5949 buildCounterPlatformTypesListResponse++; |
| 5950 if (buildCounterPlatformTypesListResponse < 3) { | 5950 if (buildCounterPlatformTypesListResponse < 3) { |
| 5951 unittest.expect(o.kind, unittest.equals('foo')); | 5951 unittest.expect(o.kind, unittest.equals('foo')); |
| 5952 checkUnnamed3415(o.platformTypes); | 5952 checkUnnamed3507(o.platformTypes); |
| 5953 } | 5953 } |
| 5954 buildCounterPlatformTypesListResponse--; | 5954 buildCounterPlatformTypesListResponse--; |
| 5955 } | 5955 } |
| 5956 | 5956 |
| 5957 core.int buildCounterPopupWindowProperties = 0; | 5957 core.int buildCounterPopupWindowProperties = 0; |
| 5958 buildPopupWindowProperties() { | 5958 buildPopupWindowProperties() { |
| 5959 var o = new api.PopupWindowProperties(); | 5959 var o = new api.PopupWindowProperties(); |
| 5960 buildCounterPopupWindowProperties++; | 5960 buildCounterPopupWindowProperties++; |
| 5961 if (buildCounterPopupWindowProperties < 3) { | 5961 if (buildCounterPopupWindowProperties < 3) { |
| 5962 o.dimension = buildSize(); | 5962 o.dimension = buildSize(); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6009 if (buildCounterPostalCode < 3) { | 6009 if (buildCounterPostalCode < 3) { |
| 6010 unittest.expect(o.code, unittest.equals('foo')); | 6010 unittest.expect(o.code, unittest.equals('foo')); |
| 6011 unittest.expect(o.countryCode, unittest.equals('foo')); | 6011 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 6012 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6012 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 6013 unittest.expect(o.id, unittest.equals('foo')); | 6013 unittest.expect(o.id, unittest.equals('foo')); |
| 6014 unittest.expect(o.kind, unittest.equals('foo')); | 6014 unittest.expect(o.kind, unittest.equals('foo')); |
| 6015 } | 6015 } |
| 6016 buildCounterPostalCode--; | 6016 buildCounterPostalCode--; |
| 6017 } | 6017 } |
| 6018 | 6018 |
| 6019 buildUnnamed3416() { | 6019 buildUnnamed3508() { |
| 6020 var o = new core.List<api.PostalCode>(); | 6020 var o = new core.List<api.PostalCode>(); |
| 6021 o.add(buildPostalCode()); | 6021 o.add(buildPostalCode()); |
| 6022 o.add(buildPostalCode()); | 6022 o.add(buildPostalCode()); |
| 6023 return o; | 6023 return o; |
| 6024 } | 6024 } |
| 6025 | 6025 |
| 6026 checkUnnamed3416(core.List<api.PostalCode> o) { | 6026 checkUnnamed3508(core.List<api.PostalCode> o) { |
| 6027 unittest.expect(o, unittest.hasLength(2)); | 6027 unittest.expect(o, unittest.hasLength(2)); |
| 6028 checkPostalCode(o[0]); | 6028 checkPostalCode(o[0]); |
| 6029 checkPostalCode(o[1]); | 6029 checkPostalCode(o[1]); |
| 6030 } | 6030 } |
| 6031 | 6031 |
| 6032 core.int buildCounterPostalCodesListResponse = 0; | 6032 core.int buildCounterPostalCodesListResponse = 0; |
| 6033 buildPostalCodesListResponse() { | 6033 buildPostalCodesListResponse() { |
| 6034 var o = new api.PostalCodesListResponse(); | 6034 var o = new api.PostalCodesListResponse(); |
| 6035 buildCounterPostalCodesListResponse++; | 6035 buildCounterPostalCodesListResponse++; |
| 6036 if (buildCounterPostalCodesListResponse < 3) { | 6036 if (buildCounterPostalCodesListResponse < 3) { |
| 6037 o.kind = "foo"; | 6037 o.kind = "foo"; |
| 6038 o.postalCodes = buildUnnamed3416(); | 6038 o.postalCodes = buildUnnamed3508(); |
| 6039 } | 6039 } |
| 6040 buildCounterPostalCodesListResponse--; | 6040 buildCounterPostalCodesListResponse--; |
| 6041 return o; | 6041 return o; |
| 6042 } | 6042 } |
| 6043 | 6043 |
| 6044 checkPostalCodesListResponse(api.PostalCodesListResponse o) { | 6044 checkPostalCodesListResponse(api.PostalCodesListResponse o) { |
| 6045 buildCounterPostalCodesListResponse++; | 6045 buildCounterPostalCodesListResponse++; |
| 6046 if (buildCounterPostalCodesListResponse < 3) { | 6046 if (buildCounterPostalCodesListResponse < 3) { |
| 6047 unittest.expect(o.kind, unittest.equals('foo')); | 6047 unittest.expect(o.kind, unittest.equals('foo')); |
| 6048 checkUnnamed3416(o.postalCodes); | 6048 checkUnnamed3508(o.postalCodes); |
| 6049 } | 6049 } |
| 6050 buildCounterPostalCodesListResponse--; | 6050 buildCounterPostalCodesListResponse--; |
| 6051 } | 6051 } |
| 6052 | 6052 |
| 6053 buildUnnamed3417() { | 6053 buildUnnamed3509() { |
| 6054 var o = new core.List<api.Flight>(); | 6054 var o = new core.List<api.Flight>(); |
| 6055 o.add(buildFlight()); | 6055 o.add(buildFlight()); |
| 6056 o.add(buildFlight()); | 6056 o.add(buildFlight()); |
| 6057 return o; | 6057 return o; |
| 6058 } | 6058 } |
| 6059 | 6059 |
| 6060 checkUnnamed3417(core.List<api.Flight> o) { | 6060 checkUnnamed3509(core.List<api.Flight> o) { |
| 6061 unittest.expect(o, unittest.hasLength(2)); | 6061 unittest.expect(o, unittest.hasLength(2)); |
| 6062 checkFlight(o[0]); | 6062 checkFlight(o[0]); |
| 6063 checkFlight(o[1]); | 6063 checkFlight(o[1]); |
| 6064 } | 6064 } |
| 6065 | 6065 |
| 6066 core.int buildCounterPricing = 0; | 6066 core.int buildCounterPricing = 0; |
| 6067 buildPricing() { | 6067 buildPricing() { |
| 6068 var o = new api.Pricing(); | 6068 var o = new api.Pricing(); |
| 6069 buildCounterPricing++; | 6069 buildCounterPricing++; |
| 6070 if (buildCounterPricing < 3) { | 6070 if (buildCounterPricing < 3) { |
| 6071 o.capCostType = "foo"; | 6071 o.capCostType = "foo"; |
| 6072 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6072 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6073 o.flights = buildUnnamed3417(); | 6073 o.flights = buildUnnamed3509(); |
| 6074 o.groupType = "foo"; | 6074 o.groupType = "foo"; |
| 6075 o.pricingType = "foo"; | 6075 o.pricingType = "foo"; |
| 6076 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6076 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6077 } | 6077 } |
| 6078 buildCounterPricing--; | 6078 buildCounterPricing--; |
| 6079 return o; | 6079 return o; |
| 6080 } | 6080 } |
| 6081 | 6081 |
| 6082 checkPricing(api.Pricing o) { | 6082 checkPricing(api.Pricing o) { |
| 6083 buildCounterPricing++; | 6083 buildCounterPricing++; |
| 6084 if (buildCounterPricing < 3) { | 6084 if (buildCounterPricing < 3) { |
| 6085 unittest.expect(o.capCostType, unittest.equals('foo')); | 6085 unittest.expect(o.capCostType, unittest.equals('foo')); |
| 6086 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 6086 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 6087 checkUnnamed3417(o.flights); | 6087 checkUnnamed3509(o.flights); |
| 6088 unittest.expect(o.groupType, unittest.equals('foo')); | 6088 unittest.expect(o.groupType, unittest.equals('foo')); |
| 6089 unittest.expect(o.pricingType, unittest.equals('foo')); | 6089 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 6090 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6090 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 6091 } | 6091 } |
| 6092 buildCounterPricing--; | 6092 buildCounterPricing--; |
| 6093 } | 6093 } |
| 6094 | 6094 |
| 6095 buildUnnamed3418() { | 6095 buildUnnamed3510() { |
| 6096 var o = new core.List<api.PricingSchedulePricingPeriod>(); | 6096 var o = new core.List<api.PricingSchedulePricingPeriod>(); |
| 6097 o.add(buildPricingSchedulePricingPeriod()); | 6097 o.add(buildPricingSchedulePricingPeriod()); |
| 6098 o.add(buildPricingSchedulePricingPeriod()); | 6098 o.add(buildPricingSchedulePricingPeriod()); |
| 6099 return o; | 6099 return o; |
| 6100 } | 6100 } |
| 6101 | 6101 |
| 6102 checkUnnamed3418(core.List<api.PricingSchedulePricingPeriod> o) { | 6102 checkUnnamed3510(core.List<api.PricingSchedulePricingPeriod> o) { |
| 6103 unittest.expect(o, unittest.hasLength(2)); | 6103 unittest.expect(o, unittest.hasLength(2)); |
| 6104 checkPricingSchedulePricingPeriod(o[0]); | 6104 checkPricingSchedulePricingPeriod(o[0]); |
| 6105 checkPricingSchedulePricingPeriod(o[1]); | 6105 checkPricingSchedulePricingPeriod(o[1]); |
| 6106 } | 6106 } |
| 6107 | 6107 |
| 6108 core.int buildCounterPricingSchedule = 0; | 6108 core.int buildCounterPricingSchedule = 0; |
| 6109 buildPricingSchedule() { | 6109 buildPricingSchedule() { |
| 6110 var o = new api.PricingSchedule(); | 6110 var o = new api.PricingSchedule(); |
| 6111 buildCounterPricingSchedule++; | 6111 buildCounterPricingSchedule++; |
| 6112 if (buildCounterPricingSchedule < 3) { | 6112 if (buildCounterPricingSchedule < 3) { |
| 6113 o.capCostOption = "foo"; | 6113 o.capCostOption = "foo"; |
| 6114 o.disregardOverdelivery = true; | 6114 o.disregardOverdelivery = true; |
| 6115 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6115 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6116 o.flighted = true; | 6116 o.flighted = true; |
| 6117 o.floodlightActivityId = "foo"; | 6117 o.floodlightActivityId = "foo"; |
| 6118 o.pricingPeriods = buildUnnamed3418(); | 6118 o.pricingPeriods = buildUnnamed3510(); |
| 6119 o.pricingType = "foo"; | 6119 o.pricingType = "foo"; |
| 6120 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6120 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6121 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6121 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6122 } | 6122 } |
| 6123 buildCounterPricingSchedule--; | 6123 buildCounterPricingSchedule--; |
| 6124 return o; | 6124 return o; |
| 6125 } | 6125 } |
| 6126 | 6126 |
| 6127 checkPricingSchedule(api.PricingSchedule o) { | 6127 checkPricingSchedule(api.PricingSchedule o) { |
| 6128 buildCounterPricingSchedule++; | 6128 buildCounterPricingSchedule++; |
| 6129 if (buildCounterPricingSchedule < 3) { | 6129 if (buildCounterPricingSchedule < 3) { |
| 6130 unittest.expect(o.capCostOption, unittest.equals('foo')); | 6130 unittest.expect(o.capCostOption, unittest.equals('foo')); |
| 6131 unittest.expect(o.disregardOverdelivery, unittest.isTrue); | 6131 unittest.expect(o.disregardOverdelivery, unittest.isTrue); |
| 6132 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 6132 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 6133 unittest.expect(o.flighted, unittest.isTrue); | 6133 unittest.expect(o.flighted, unittest.isTrue); |
| 6134 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 6134 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 6135 checkUnnamed3418(o.pricingPeriods); | 6135 checkUnnamed3510(o.pricingPeriods); |
| 6136 unittest.expect(o.pricingType, unittest.equals('foo')); | 6136 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 6137 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6137 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 6138 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); | 6138 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); |
| 6139 } | 6139 } |
| 6140 buildCounterPricingSchedule--; | 6140 buildCounterPricingSchedule--; |
| 6141 } | 6141 } |
| 6142 | 6142 |
| 6143 core.int buildCounterPricingSchedulePricingPeriod = 0; | 6143 core.int buildCounterPricingSchedulePricingPeriod = 0; |
| 6144 buildPricingSchedulePricingPeriod() { | 6144 buildPricingSchedulePricingPeriod() { |
| 6145 var o = new api.PricingSchedulePricingPeriod(); | 6145 var o = new api.PricingSchedulePricingPeriod(); |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6219 unittest.expect(o.targetClicks, unittest.equals('foo')); | 6219 unittest.expect(o.targetClicks, unittest.equals('foo')); |
| 6220 unittest.expect(o.targetConversions, unittest.equals('foo')); | 6220 unittest.expect(o.targetConversions, unittest.equals('foo')); |
| 6221 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); | 6221 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); |
| 6222 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); | 6222 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); |
| 6223 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); | 6223 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); |
| 6224 unittest.expect(o.targetImpressions, unittest.equals('foo')); | 6224 unittest.expect(o.targetImpressions, unittest.equals('foo')); |
| 6225 } | 6225 } |
| 6226 buildCounterProject--; | 6226 buildCounterProject--; |
| 6227 } | 6227 } |
| 6228 | 6228 |
| 6229 buildUnnamed3419() { | 6229 buildUnnamed3511() { |
| 6230 var o = new core.List<api.Project>(); | 6230 var o = new core.List<api.Project>(); |
| 6231 o.add(buildProject()); | 6231 o.add(buildProject()); |
| 6232 o.add(buildProject()); | 6232 o.add(buildProject()); |
| 6233 return o; | 6233 return o; |
| 6234 } | 6234 } |
| 6235 | 6235 |
| 6236 checkUnnamed3419(core.List<api.Project> o) { | 6236 checkUnnamed3511(core.List<api.Project> o) { |
| 6237 unittest.expect(o, unittest.hasLength(2)); | 6237 unittest.expect(o, unittest.hasLength(2)); |
| 6238 checkProject(o[0]); | 6238 checkProject(o[0]); |
| 6239 checkProject(o[1]); | 6239 checkProject(o[1]); |
| 6240 } | 6240 } |
| 6241 | 6241 |
| 6242 core.int buildCounterProjectsListResponse = 0; | 6242 core.int buildCounterProjectsListResponse = 0; |
| 6243 buildProjectsListResponse() { | 6243 buildProjectsListResponse() { |
| 6244 var o = new api.ProjectsListResponse(); | 6244 var o = new api.ProjectsListResponse(); |
| 6245 buildCounterProjectsListResponse++; | 6245 buildCounterProjectsListResponse++; |
| 6246 if (buildCounterProjectsListResponse < 3) { | 6246 if (buildCounterProjectsListResponse < 3) { |
| 6247 o.kind = "foo"; | 6247 o.kind = "foo"; |
| 6248 o.nextPageToken = "foo"; | 6248 o.nextPageToken = "foo"; |
| 6249 o.projects = buildUnnamed3419(); | 6249 o.projects = buildUnnamed3511(); |
| 6250 } | 6250 } |
| 6251 buildCounterProjectsListResponse--; | 6251 buildCounterProjectsListResponse--; |
| 6252 return o; | 6252 return o; |
| 6253 } | 6253 } |
| 6254 | 6254 |
| 6255 checkProjectsListResponse(api.ProjectsListResponse o) { | 6255 checkProjectsListResponse(api.ProjectsListResponse o) { |
| 6256 buildCounterProjectsListResponse++; | 6256 buildCounterProjectsListResponse++; |
| 6257 if (buildCounterProjectsListResponse < 3) { | 6257 if (buildCounterProjectsListResponse < 3) { |
| 6258 unittest.expect(o.kind, unittest.equals('foo')); | 6258 unittest.expect(o.kind, unittest.equals('foo')); |
| 6259 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6259 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6260 checkUnnamed3419(o.projects); | 6260 checkUnnamed3511(o.projects); |
| 6261 } | 6261 } |
| 6262 buildCounterProjectsListResponse--; | 6262 buildCounterProjectsListResponse--; |
| 6263 } | 6263 } |
| 6264 | 6264 |
| 6265 buildUnnamed3420() { | 6265 buildUnnamed3512() { |
| 6266 var o = new core.List<api.Dimension>(); | 6266 var o = new core.List<api.Dimension>(); |
| 6267 o.add(buildDimension()); | 6267 o.add(buildDimension()); |
| 6268 o.add(buildDimension()); | 6268 o.add(buildDimension()); |
| 6269 return o; | 6269 return o; |
| 6270 } | 6270 } |
| 6271 | 6271 |
| 6272 checkUnnamed3420(core.List<api.Dimension> o) { | 6272 checkUnnamed3512(core.List<api.Dimension> o) { |
| 6273 unittest.expect(o, unittest.hasLength(2)); | 6273 unittest.expect(o, unittest.hasLength(2)); |
| 6274 checkDimension(o[0]); | 6274 checkDimension(o[0]); |
| 6275 checkDimension(o[1]); | 6275 checkDimension(o[1]); |
| 6276 } | 6276 } |
| 6277 | 6277 |
| 6278 buildUnnamed3421() { | 6278 buildUnnamed3513() { |
| 6279 var o = new core.List<api.Dimension>(); | 6279 var o = new core.List<api.Dimension>(); |
| 6280 o.add(buildDimension()); | 6280 o.add(buildDimension()); |
| 6281 o.add(buildDimension()); | 6281 o.add(buildDimension()); |
| 6282 return o; | 6282 return o; |
| 6283 } | 6283 } |
| 6284 | 6284 |
| 6285 checkUnnamed3421(core.List<api.Dimension> o) { | 6285 checkUnnamed3513(core.List<api.Dimension> o) { |
| 6286 unittest.expect(o, unittest.hasLength(2)); | 6286 unittest.expect(o, unittest.hasLength(2)); |
| 6287 checkDimension(o[0]); | 6287 checkDimension(o[0]); |
| 6288 checkDimension(o[1]); | 6288 checkDimension(o[1]); |
| 6289 } | 6289 } |
| 6290 | 6290 |
| 6291 buildUnnamed3422() { | 6291 buildUnnamed3514() { |
| 6292 var o = new core.List<api.Metric>(); | 6292 var o = new core.List<api.Metric>(); |
| 6293 o.add(buildMetric()); | 6293 o.add(buildMetric()); |
| 6294 o.add(buildMetric()); | 6294 o.add(buildMetric()); |
| 6295 return o; | 6295 return o; |
| 6296 } | 6296 } |
| 6297 | 6297 |
| 6298 checkUnnamed3422(core.List<api.Metric> o) { | 6298 checkUnnamed3514(core.List<api.Metric> o) { |
| 6299 unittest.expect(o, unittest.hasLength(2)); | 6299 unittest.expect(o, unittest.hasLength(2)); |
| 6300 checkMetric(o[0]); | 6300 checkMetric(o[0]); |
| 6301 checkMetric(o[1]); | 6301 checkMetric(o[1]); |
| 6302 } | 6302 } |
| 6303 | 6303 |
| 6304 buildUnnamed3423() { | 6304 buildUnnamed3515() { |
| 6305 var o = new core.List<api.Metric>(); | 6305 var o = new core.List<api.Metric>(); |
| 6306 o.add(buildMetric()); | 6306 o.add(buildMetric()); |
| 6307 o.add(buildMetric()); | 6307 o.add(buildMetric()); |
| 6308 return o; | 6308 return o; |
| 6309 } | 6309 } |
| 6310 | 6310 |
| 6311 checkUnnamed3423(core.List<api.Metric> o) { | 6311 checkUnnamed3515(core.List<api.Metric> o) { |
| 6312 unittest.expect(o, unittest.hasLength(2)); | 6312 unittest.expect(o, unittest.hasLength(2)); |
| 6313 checkMetric(o[0]); | 6313 checkMetric(o[0]); |
| 6314 checkMetric(o[1]); | 6314 checkMetric(o[1]); |
| 6315 } | 6315 } |
| 6316 | 6316 |
| 6317 buildUnnamed3424() { | 6317 buildUnnamed3516() { |
| 6318 var o = new core.List<api.Metric>(); | 6318 var o = new core.List<api.Metric>(); |
| 6319 o.add(buildMetric()); | 6319 o.add(buildMetric()); |
| 6320 o.add(buildMetric()); | 6320 o.add(buildMetric()); |
| 6321 return o; | 6321 return o; |
| 6322 } | 6322 } |
| 6323 | 6323 |
| 6324 checkUnnamed3424(core.List<api.Metric> o) { | 6324 checkUnnamed3516(core.List<api.Metric> o) { |
| 6325 unittest.expect(o, unittest.hasLength(2)); | 6325 unittest.expect(o, unittest.hasLength(2)); |
| 6326 checkMetric(o[0]); | 6326 checkMetric(o[0]); |
| 6327 checkMetric(o[1]); | 6327 checkMetric(o[1]); |
| 6328 } | 6328 } |
| 6329 | 6329 |
| 6330 core.int buildCounterReachReportCompatibleFields = 0; | 6330 core.int buildCounterReachReportCompatibleFields = 0; |
| 6331 buildReachReportCompatibleFields() { | 6331 buildReachReportCompatibleFields() { |
| 6332 var o = new api.ReachReportCompatibleFields(); | 6332 var o = new api.ReachReportCompatibleFields(); |
| 6333 buildCounterReachReportCompatibleFields++; | 6333 buildCounterReachReportCompatibleFields++; |
| 6334 if (buildCounterReachReportCompatibleFields < 3) { | 6334 if (buildCounterReachReportCompatibleFields < 3) { |
| 6335 o.dimensionFilters = buildUnnamed3420(); | 6335 o.dimensionFilters = buildUnnamed3512(); |
| 6336 o.dimensions = buildUnnamed3421(); | 6336 o.dimensions = buildUnnamed3513(); |
| 6337 o.kind = "foo"; | 6337 o.kind = "foo"; |
| 6338 o.metrics = buildUnnamed3422(); | 6338 o.metrics = buildUnnamed3514(); |
| 6339 o.pivotedActivityMetrics = buildUnnamed3423(); | 6339 o.pivotedActivityMetrics = buildUnnamed3515(); |
| 6340 o.reachByFrequencyMetrics = buildUnnamed3424(); | 6340 o.reachByFrequencyMetrics = buildUnnamed3516(); |
| 6341 } | 6341 } |
| 6342 buildCounterReachReportCompatibleFields--; | 6342 buildCounterReachReportCompatibleFields--; |
| 6343 return o; | 6343 return o; |
| 6344 } | 6344 } |
| 6345 | 6345 |
| 6346 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { | 6346 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { |
| 6347 buildCounterReachReportCompatibleFields++; | 6347 buildCounterReachReportCompatibleFields++; |
| 6348 if (buildCounterReachReportCompatibleFields < 3) { | 6348 if (buildCounterReachReportCompatibleFields < 3) { |
| 6349 checkUnnamed3420(o.dimensionFilters); | 6349 checkUnnamed3512(o.dimensionFilters); |
| 6350 checkUnnamed3421(o.dimensions); | 6350 checkUnnamed3513(o.dimensions); |
| 6351 unittest.expect(o.kind, unittest.equals('foo')); | 6351 unittest.expect(o.kind, unittest.equals('foo')); |
| 6352 checkUnnamed3422(o.metrics); | 6352 checkUnnamed3514(o.metrics); |
| 6353 checkUnnamed3423(o.pivotedActivityMetrics); | 6353 checkUnnamed3515(o.pivotedActivityMetrics); |
| 6354 checkUnnamed3424(o.reachByFrequencyMetrics); | 6354 checkUnnamed3516(o.reachByFrequencyMetrics); |
| 6355 } | 6355 } |
| 6356 buildCounterReachReportCompatibleFields--; | 6356 buildCounterReachReportCompatibleFields--; |
| 6357 } | 6357 } |
| 6358 | 6358 |
| 6359 core.int buildCounterRecipient = 0; | 6359 core.int buildCounterRecipient = 0; |
| 6360 buildRecipient() { | 6360 buildRecipient() { |
| 6361 var o = new api.Recipient(); | 6361 var o = new api.Recipient(); |
| 6362 buildCounterRecipient++; | 6362 buildCounterRecipient++; |
| 6363 if (buildCounterRecipient < 3) { | 6363 if (buildCounterRecipient < 3) { |
| 6364 o.deliveryType = "foo"; | 6364 o.deliveryType = "foo"; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6401 unittest.expect(o.countryCode, unittest.equals('foo')); | 6401 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 6402 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6402 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 6403 unittest.expect(o.dartId, unittest.equals('foo')); | 6403 unittest.expect(o.dartId, unittest.equals('foo')); |
| 6404 unittest.expect(o.kind, unittest.equals('foo')); | 6404 unittest.expect(o.kind, unittest.equals('foo')); |
| 6405 unittest.expect(o.name, unittest.equals('foo')); | 6405 unittest.expect(o.name, unittest.equals('foo')); |
| 6406 unittest.expect(o.regionCode, unittest.equals('foo')); | 6406 unittest.expect(o.regionCode, unittest.equals('foo')); |
| 6407 } | 6407 } |
| 6408 buildCounterRegion--; | 6408 buildCounterRegion--; |
| 6409 } | 6409 } |
| 6410 | 6410 |
| 6411 buildUnnamed3425() { | 6411 buildUnnamed3517() { |
| 6412 var o = new core.List<api.Region>(); | 6412 var o = new core.List<api.Region>(); |
| 6413 o.add(buildRegion()); | 6413 o.add(buildRegion()); |
| 6414 o.add(buildRegion()); | 6414 o.add(buildRegion()); |
| 6415 return o; | 6415 return o; |
| 6416 } | 6416 } |
| 6417 | 6417 |
| 6418 checkUnnamed3425(core.List<api.Region> o) { | 6418 checkUnnamed3517(core.List<api.Region> o) { |
| 6419 unittest.expect(o, unittest.hasLength(2)); | 6419 unittest.expect(o, unittest.hasLength(2)); |
| 6420 checkRegion(o[0]); | 6420 checkRegion(o[0]); |
| 6421 checkRegion(o[1]); | 6421 checkRegion(o[1]); |
| 6422 } | 6422 } |
| 6423 | 6423 |
| 6424 core.int buildCounterRegionsListResponse = 0; | 6424 core.int buildCounterRegionsListResponse = 0; |
| 6425 buildRegionsListResponse() { | 6425 buildRegionsListResponse() { |
| 6426 var o = new api.RegionsListResponse(); | 6426 var o = new api.RegionsListResponse(); |
| 6427 buildCounterRegionsListResponse++; | 6427 buildCounterRegionsListResponse++; |
| 6428 if (buildCounterRegionsListResponse < 3) { | 6428 if (buildCounterRegionsListResponse < 3) { |
| 6429 o.kind = "foo"; | 6429 o.kind = "foo"; |
| 6430 o.regions = buildUnnamed3425(); | 6430 o.regions = buildUnnamed3517(); |
| 6431 } | 6431 } |
| 6432 buildCounterRegionsListResponse--; | 6432 buildCounterRegionsListResponse--; |
| 6433 return o; | 6433 return o; |
| 6434 } | 6434 } |
| 6435 | 6435 |
| 6436 checkRegionsListResponse(api.RegionsListResponse o) { | 6436 checkRegionsListResponse(api.RegionsListResponse o) { |
| 6437 buildCounterRegionsListResponse++; | 6437 buildCounterRegionsListResponse++; |
| 6438 if (buildCounterRegionsListResponse < 3) { | 6438 if (buildCounterRegionsListResponse < 3) { |
| 6439 unittest.expect(o.kind, unittest.equals('foo')); | 6439 unittest.expect(o.kind, unittest.equals('foo')); |
| 6440 checkUnnamed3425(o.regions); | 6440 checkUnnamed3517(o.regions); |
| 6441 } | 6441 } |
| 6442 buildCounterRegionsListResponse--; | 6442 buildCounterRegionsListResponse--; |
| 6443 } | 6443 } |
| 6444 | 6444 |
| 6445 core.int buildCounterRemarketingList = 0; | 6445 core.int buildCounterRemarketingList = 0; |
| 6446 buildRemarketingList() { | 6446 buildRemarketingList() { |
| 6447 var o = new api.RemarketingList(); | 6447 var o = new api.RemarketingList(); |
| 6448 buildCounterRemarketingList++; | 6448 buildCounterRemarketingList++; |
| 6449 if (buildCounterRemarketingList < 3) { | 6449 if (buildCounterRemarketingList < 3) { |
| 6450 o.accountId = "foo"; | 6450 o.accountId = "foo"; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 6478 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 6478 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 6479 checkListPopulationRule(o.listPopulationRule); | 6479 checkListPopulationRule(o.listPopulationRule); |
| 6480 unittest.expect(o.listSize, unittest.equals('foo')); | 6480 unittest.expect(o.listSize, unittest.equals('foo')); |
| 6481 unittest.expect(o.listSource, unittest.equals('foo')); | 6481 unittest.expect(o.listSource, unittest.equals('foo')); |
| 6482 unittest.expect(o.name, unittest.equals('foo')); | 6482 unittest.expect(o.name, unittest.equals('foo')); |
| 6483 unittest.expect(o.subaccountId, unittest.equals('foo')); | 6483 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 6484 } | 6484 } |
| 6485 buildCounterRemarketingList--; | 6485 buildCounterRemarketingList--; |
| 6486 } | 6486 } |
| 6487 | 6487 |
| 6488 buildUnnamed3426() { | 6488 buildUnnamed3518() { |
| 6489 var o = new core.List<core.String>(); | 6489 var o = new core.List<core.String>(); |
| 6490 o.add("foo"); | 6490 o.add("foo"); |
| 6491 o.add("foo"); | 6491 o.add("foo"); |
| 6492 return o; | 6492 return o; |
| 6493 } | 6493 } |
| 6494 | 6494 |
| 6495 checkUnnamed3426(core.List<core.String> o) { | 6495 checkUnnamed3518(core.List<core.String> o) { |
| 6496 unittest.expect(o, unittest.hasLength(2)); | 6496 unittest.expect(o, unittest.hasLength(2)); |
| 6497 unittest.expect(o[0], unittest.equals('foo')); | 6497 unittest.expect(o[0], unittest.equals('foo')); |
| 6498 unittest.expect(o[1], unittest.equals('foo')); | 6498 unittest.expect(o[1], unittest.equals('foo')); |
| 6499 } | 6499 } |
| 6500 | 6500 |
| 6501 buildUnnamed3427() { | 6501 buildUnnamed3519() { |
| 6502 var o = new core.List<core.String>(); | 6502 var o = new core.List<core.String>(); |
| 6503 o.add("foo"); | 6503 o.add("foo"); |
| 6504 o.add("foo"); | 6504 o.add("foo"); |
| 6505 return o; | 6505 return o; |
| 6506 } | 6506 } |
| 6507 | 6507 |
| 6508 checkUnnamed3427(core.List<core.String> o) { | 6508 checkUnnamed3519(core.List<core.String> o) { |
| 6509 unittest.expect(o, unittest.hasLength(2)); | 6509 unittest.expect(o, unittest.hasLength(2)); |
| 6510 unittest.expect(o[0], unittest.equals('foo')); | 6510 unittest.expect(o[0], unittest.equals('foo')); |
| 6511 unittest.expect(o[1], unittest.equals('foo')); | 6511 unittest.expect(o[1], unittest.equals('foo')); |
| 6512 } | 6512 } |
| 6513 | 6513 |
| 6514 core.int buildCounterRemarketingListShare = 0; | 6514 core.int buildCounterRemarketingListShare = 0; |
| 6515 buildRemarketingListShare() { | 6515 buildRemarketingListShare() { |
| 6516 var o = new api.RemarketingListShare(); | 6516 var o = new api.RemarketingListShare(); |
| 6517 buildCounterRemarketingListShare++; | 6517 buildCounterRemarketingListShare++; |
| 6518 if (buildCounterRemarketingListShare < 3) { | 6518 if (buildCounterRemarketingListShare < 3) { |
| 6519 o.kind = "foo"; | 6519 o.kind = "foo"; |
| 6520 o.remarketingListId = "foo"; | 6520 o.remarketingListId = "foo"; |
| 6521 o.sharedAccountIds = buildUnnamed3426(); | 6521 o.sharedAccountIds = buildUnnamed3518(); |
| 6522 o.sharedAdvertiserIds = buildUnnamed3427(); | 6522 o.sharedAdvertiserIds = buildUnnamed3519(); |
| 6523 } | 6523 } |
| 6524 buildCounterRemarketingListShare--; | 6524 buildCounterRemarketingListShare--; |
| 6525 return o; | 6525 return o; |
| 6526 } | 6526 } |
| 6527 | 6527 |
| 6528 checkRemarketingListShare(api.RemarketingListShare o) { | 6528 checkRemarketingListShare(api.RemarketingListShare o) { |
| 6529 buildCounterRemarketingListShare++; | 6529 buildCounterRemarketingListShare++; |
| 6530 if (buildCounterRemarketingListShare < 3) { | 6530 if (buildCounterRemarketingListShare < 3) { |
| 6531 unittest.expect(o.kind, unittest.equals('foo')); | 6531 unittest.expect(o.kind, unittest.equals('foo')); |
| 6532 unittest.expect(o.remarketingListId, unittest.equals('foo')); | 6532 unittest.expect(o.remarketingListId, unittest.equals('foo')); |
| 6533 checkUnnamed3426(o.sharedAccountIds); | 6533 checkUnnamed3518(o.sharedAccountIds); |
| 6534 checkUnnamed3427(o.sharedAdvertiserIds); | 6534 checkUnnamed3519(o.sharedAdvertiserIds); |
| 6535 } | 6535 } |
| 6536 buildCounterRemarketingListShare--; | 6536 buildCounterRemarketingListShare--; |
| 6537 } | 6537 } |
| 6538 | 6538 |
| 6539 buildUnnamed3428() { | 6539 buildUnnamed3520() { |
| 6540 var o = new core.List<api.RemarketingList>(); | 6540 var o = new core.List<api.RemarketingList>(); |
| 6541 o.add(buildRemarketingList()); | 6541 o.add(buildRemarketingList()); |
| 6542 o.add(buildRemarketingList()); | 6542 o.add(buildRemarketingList()); |
| 6543 return o; | 6543 return o; |
| 6544 } | 6544 } |
| 6545 | 6545 |
| 6546 checkUnnamed3428(core.List<api.RemarketingList> o) { | 6546 checkUnnamed3520(core.List<api.RemarketingList> o) { |
| 6547 unittest.expect(o, unittest.hasLength(2)); | 6547 unittest.expect(o, unittest.hasLength(2)); |
| 6548 checkRemarketingList(o[0]); | 6548 checkRemarketingList(o[0]); |
| 6549 checkRemarketingList(o[1]); | 6549 checkRemarketingList(o[1]); |
| 6550 } | 6550 } |
| 6551 | 6551 |
| 6552 core.int buildCounterRemarketingListsListResponse = 0; | 6552 core.int buildCounterRemarketingListsListResponse = 0; |
| 6553 buildRemarketingListsListResponse() { | 6553 buildRemarketingListsListResponse() { |
| 6554 var o = new api.RemarketingListsListResponse(); | 6554 var o = new api.RemarketingListsListResponse(); |
| 6555 buildCounterRemarketingListsListResponse++; | 6555 buildCounterRemarketingListsListResponse++; |
| 6556 if (buildCounterRemarketingListsListResponse < 3) { | 6556 if (buildCounterRemarketingListsListResponse < 3) { |
| 6557 o.kind = "foo"; | 6557 o.kind = "foo"; |
| 6558 o.nextPageToken = "foo"; | 6558 o.nextPageToken = "foo"; |
| 6559 o.remarketingLists = buildUnnamed3428(); | 6559 o.remarketingLists = buildUnnamed3520(); |
| 6560 } | 6560 } |
| 6561 buildCounterRemarketingListsListResponse--; | 6561 buildCounterRemarketingListsListResponse--; |
| 6562 return o; | 6562 return o; |
| 6563 } | 6563 } |
| 6564 | 6564 |
| 6565 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { | 6565 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { |
| 6566 buildCounterRemarketingListsListResponse++; | 6566 buildCounterRemarketingListsListResponse++; |
| 6567 if (buildCounterRemarketingListsListResponse < 3) { | 6567 if (buildCounterRemarketingListsListResponse < 3) { |
| 6568 unittest.expect(o.kind, unittest.equals('foo')); | 6568 unittest.expect(o.kind, unittest.equals('foo')); |
| 6569 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6569 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6570 checkUnnamed3428(o.remarketingLists); | 6570 checkUnnamed3520(o.remarketingLists); |
| 6571 } | 6571 } |
| 6572 buildCounterRemarketingListsListResponse--; | 6572 buildCounterRemarketingListsListResponse--; |
| 6573 } | 6573 } |
| 6574 | 6574 |
| 6575 buildUnnamed3429() { | 6575 buildUnnamed3521() { |
| 6576 var o = new core.List<api.DimensionValue>(); | 6576 var o = new core.List<api.DimensionValue>(); |
| 6577 o.add(buildDimensionValue()); | 6577 o.add(buildDimensionValue()); |
| 6578 o.add(buildDimensionValue()); | 6578 o.add(buildDimensionValue()); |
| 6579 return o; | 6579 return o; |
| 6580 } | 6580 } |
| 6581 | 6581 |
| 6582 checkUnnamed3429(core.List<api.DimensionValue> o) { | 6582 checkUnnamed3521(core.List<api.DimensionValue> o) { |
| 6583 unittest.expect(o, unittest.hasLength(2)); | 6583 unittest.expect(o, unittest.hasLength(2)); |
| 6584 checkDimensionValue(o[0]); | 6584 checkDimensionValue(o[0]); |
| 6585 checkDimensionValue(o[1]); | 6585 checkDimensionValue(o[1]); |
| 6586 } | 6586 } |
| 6587 | 6587 |
| 6588 buildUnnamed3430() { | 6588 buildUnnamed3522() { |
| 6589 var o = new core.List<api.SortedDimension>(); | 6589 var o = new core.List<api.SortedDimension>(); |
| 6590 o.add(buildSortedDimension()); | 6590 o.add(buildSortedDimension()); |
| 6591 o.add(buildSortedDimension()); | 6591 o.add(buildSortedDimension()); |
| 6592 return o; | 6592 return o; |
| 6593 } | 6593 } |
| 6594 | 6594 |
| 6595 checkUnnamed3430(core.List<api.SortedDimension> o) { | 6595 checkUnnamed3522(core.List<api.SortedDimension> o) { |
| 6596 unittest.expect(o, unittest.hasLength(2)); | 6596 unittest.expect(o, unittest.hasLength(2)); |
| 6597 checkSortedDimension(o[0]); | 6597 checkSortedDimension(o[0]); |
| 6598 checkSortedDimension(o[1]); | 6598 checkSortedDimension(o[1]); |
| 6599 } | 6599 } |
| 6600 | 6600 |
| 6601 buildUnnamed3431() { | 6601 buildUnnamed3523() { |
| 6602 var o = new core.List<core.String>(); | 6602 var o = new core.List<core.String>(); |
| 6603 o.add("foo"); | 6603 o.add("foo"); |
| 6604 o.add("foo"); | 6604 o.add("foo"); |
| 6605 return o; | 6605 return o; |
| 6606 } | 6606 } |
| 6607 | 6607 |
| 6608 checkUnnamed3431(core.List<core.String> o) { | 6608 checkUnnamed3523(core.List<core.String> o) { |
| 6609 unittest.expect(o, unittest.hasLength(2)); | 6609 unittest.expect(o, unittest.hasLength(2)); |
| 6610 unittest.expect(o[0], unittest.equals('foo')); | 6610 unittest.expect(o[0], unittest.equals('foo')); |
| 6611 unittest.expect(o[1], unittest.equals('foo')); | 6611 unittest.expect(o[1], unittest.equals('foo')); |
| 6612 } | 6612 } |
| 6613 | 6613 |
| 6614 core.int buildCounterReportCriteria = 0; | 6614 core.int buildCounterReportCriteria = 0; |
| 6615 buildReportCriteria() { | 6615 buildReportCriteria() { |
| 6616 var o = new api.ReportCriteria(); | 6616 var o = new api.ReportCriteria(); |
| 6617 buildCounterReportCriteria++; | 6617 buildCounterReportCriteria++; |
| 6618 if (buildCounterReportCriteria < 3) { | 6618 if (buildCounterReportCriteria < 3) { |
| 6619 o.activities = buildActivities(); | 6619 o.activities = buildActivities(); |
| 6620 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6620 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6621 o.dateRange = buildDateRange(); | 6621 o.dateRange = buildDateRange(); |
| 6622 o.dimensionFilters = buildUnnamed3429(); | 6622 o.dimensionFilters = buildUnnamed3521(); |
| 6623 o.dimensions = buildUnnamed3430(); | 6623 o.dimensions = buildUnnamed3522(); |
| 6624 o.metricNames = buildUnnamed3431(); | 6624 o.metricNames = buildUnnamed3523(); |
| 6625 } | 6625 } |
| 6626 buildCounterReportCriteria--; | 6626 buildCounterReportCriteria--; |
| 6627 return o; | 6627 return o; |
| 6628 } | 6628 } |
| 6629 | 6629 |
| 6630 checkReportCriteria(api.ReportCriteria o) { | 6630 checkReportCriteria(api.ReportCriteria o) { |
| 6631 buildCounterReportCriteria++; | 6631 buildCounterReportCriteria++; |
| 6632 if (buildCounterReportCriteria < 3) { | 6632 if (buildCounterReportCriteria < 3) { |
| 6633 checkActivities(o.activities); | 6633 checkActivities(o.activities); |
| 6634 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6634 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6635 checkDateRange(o.dateRange); | 6635 checkDateRange(o.dateRange); |
| 6636 checkUnnamed3429(o.dimensionFilters); | 6636 checkUnnamed3521(o.dimensionFilters); |
| 6637 checkUnnamed3430(o.dimensions); | 6637 checkUnnamed3522(o.dimensions); |
| 6638 checkUnnamed3431(o.metricNames); | 6638 checkUnnamed3523(o.metricNames); |
| 6639 } | 6639 } |
| 6640 buildCounterReportCriteria--; | 6640 buildCounterReportCriteria--; |
| 6641 } | 6641 } |
| 6642 | 6642 |
| 6643 buildUnnamed3432() { | 6643 buildUnnamed3524() { |
| 6644 var o = new core.List<api.SortedDimension>(); | 6644 var o = new core.List<api.SortedDimension>(); |
| 6645 o.add(buildSortedDimension()); | 6645 o.add(buildSortedDimension()); |
| 6646 o.add(buildSortedDimension()); | 6646 o.add(buildSortedDimension()); |
| 6647 return o; | 6647 return o; |
| 6648 } | 6648 } |
| 6649 | 6649 |
| 6650 checkUnnamed3432(core.List<api.SortedDimension> o) { | 6650 checkUnnamed3524(core.List<api.SortedDimension> o) { |
| 6651 unittest.expect(o, unittest.hasLength(2)); | 6651 unittest.expect(o, unittest.hasLength(2)); |
| 6652 checkSortedDimension(o[0]); | 6652 checkSortedDimension(o[0]); |
| 6653 checkSortedDimension(o[1]); | 6653 checkSortedDimension(o[1]); |
| 6654 } | 6654 } |
| 6655 | 6655 |
| 6656 buildUnnamed3433() { | 6656 buildUnnamed3525() { |
| 6657 var o = new core.List<api.DimensionValue>(); | 6657 var o = new core.List<api.DimensionValue>(); |
| 6658 o.add(buildDimensionValue()); | 6658 o.add(buildDimensionValue()); |
| 6659 o.add(buildDimensionValue()); | 6659 o.add(buildDimensionValue()); |
| 6660 return o; | 6660 return o; |
| 6661 } | 6661 } |
| 6662 | 6662 |
| 6663 checkUnnamed3433(core.List<api.DimensionValue> o) { | 6663 checkUnnamed3525(core.List<api.DimensionValue> o) { |
| 6664 unittest.expect(o, unittest.hasLength(2)); | 6664 unittest.expect(o, unittest.hasLength(2)); |
| 6665 checkDimensionValue(o[0]); | 6665 checkDimensionValue(o[0]); |
| 6666 checkDimensionValue(o[1]); | 6666 checkDimensionValue(o[1]); |
| 6667 } | 6667 } |
| 6668 | 6668 |
| 6669 buildUnnamed3434() { | 6669 buildUnnamed3526() { |
| 6670 var o = new core.List<core.String>(); | 6670 var o = new core.List<core.String>(); |
| 6671 o.add("foo"); | 6671 o.add("foo"); |
| 6672 o.add("foo"); | 6672 o.add("foo"); |
| 6673 return o; | 6673 return o; |
| 6674 } | 6674 } |
| 6675 | 6675 |
| 6676 checkUnnamed3434(core.List<core.String> o) { | 6676 checkUnnamed3526(core.List<core.String> o) { |
| 6677 unittest.expect(o, unittest.hasLength(2)); | 6677 unittest.expect(o, unittest.hasLength(2)); |
| 6678 unittest.expect(o[0], unittest.equals('foo')); | 6678 unittest.expect(o[0], unittest.equals('foo')); |
| 6679 unittest.expect(o[1], unittest.equals('foo')); | 6679 unittest.expect(o[1], unittest.equals('foo')); |
| 6680 } | 6680 } |
| 6681 | 6681 |
| 6682 buildUnnamed3435() { | 6682 buildUnnamed3527() { |
| 6683 var o = new core.List<core.String>(); | 6683 var o = new core.List<core.String>(); |
| 6684 o.add("foo"); | 6684 o.add("foo"); |
| 6685 o.add("foo"); | 6685 o.add("foo"); |
| 6686 return o; | 6686 return o; |
| 6687 } | 6687 } |
| 6688 | 6688 |
| 6689 checkUnnamed3435(core.List<core.String> o) { | 6689 checkUnnamed3527(core.List<core.String> o) { |
| 6690 unittest.expect(o, unittest.hasLength(2)); | 6690 unittest.expect(o, unittest.hasLength(2)); |
| 6691 unittest.expect(o[0], unittest.equals('foo')); | 6691 unittest.expect(o[0], unittest.equals('foo')); |
| 6692 unittest.expect(o[1], unittest.equals('foo')); | 6692 unittest.expect(o[1], unittest.equals('foo')); |
| 6693 } | 6693 } |
| 6694 | 6694 |
| 6695 core.int buildCounterReportCrossDimensionReachCriteria = 0; | 6695 core.int buildCounterReportCrossDimensionReachCriteria = 0; |
| 6696 buildReportCrossDimensionReachCriteria() { | 6696 buildReportCrossDimensionReachCriteria() { |
| 6697 var o = new api.ReportCrossDimensionReachCriteria(); | 6697 var o = new api.ReportCrossDimensionReachCriteria(); |
| 6698 buildCounterReportCrossDimensionReachCriteria++; | 6698 buildCounterReportCrossDimensionReachCriteria++; |
| 6699 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6699 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6700 o.breakdown = buildUnnamed3432(); | 6700 o.breakdown = buildUnnamed3524(); |
| 6701 o.dateRange = buildDateRange(); | 6701 o.dateRange = buildDateRange(); |
| 6702 o.dimension = "foo"; | 6702 o.dimension = "foo"; |
| 6703 o.dimensionFilters = buildUnnamed3433(); | 6703 o.dimensionFilters = buildUnnamed3525(); |
| 6704 o.metricNames = buildUnnamed3434(); | 6704 o.metricNames = buildUnnamed3526(); |
| 6705 o.overlapMetricNames = buildUnnamed3435(); | 6705 o.overlapMetricNames = buildUnnamed3527(); |
| 6706 o.pivoted = true; | 6706 o.pivoted = true; |
| 6707 } | 6707 } |
| 6708 buildCounterReportCrossDimensionReachCriteria--; | 6708 buildCounterReportCrossDimensionReachCriteria--; |
| 6709 return o; | 6709 return o; |
| 6710 } | 6710 } |
| 6711 | 6711 |
| 6712 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ | 6712 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ |
| 6713 buildCounterReportCrossDimensionReachCriteria++; | 6713 buildCounterReportCrossDimensionReachCriteria++; |
| 6714 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6714 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6715 checkUnnamed3432(o.breakdown); | 6715 checkUnnamed3524(o.breakdown); |
| 6716 checkDateRange(o.dateRange); | 6716 checkDateRange(o.dateRange); |
| 6717 unittest.expect(o.dimension, unittest.equals('foo')); | 6717 unittest.expect(o.dimension, unittest.equals('foo')); |
| 6718 checkUnnamed3433(o.dimensionFilters); | 6718 checkUnnamed3525(o.dimensionFilters); |
| 6719 checkUnnamed3434(o.metricNames); | 6719 checkUnnamed3526(o.metricNames); |
| 6720 checkUnnamed3435(o.overlapMetricNames); | 6720 checkUnnamed3527(o.overlapMetricNames); |
| 6721 unittest.expect(o.pivoted, unittest.isTrue); | 6721 unittest.expect(o.pivoted, unittest.isTrue); |
| 6722 } | 6722 } |
| 6723 buildCounterReportCrossDimensionReachCriteria--; | 6723 buildCounterReportCrossDimensionReachCriteria--; |
| 6724 } | 6724 } |
| 6725 | 6725 |
| 6726 buildUnnamed3436() { | 6726 buildUnnamed3528() { |
| 6727 var o = new core.List<api.Recipient>(); | 6727 var o = new core.List<api.Recipient>(); |
| 6728 o.add(buildRecipient()); | 6728 o.add(buildRecipient()); |
| 6729 o.add(buildRecipient()); | 6729 o.add(buildRecipient()); |
| 6730 return o; | 6730 return o; |
| 6731 } | 6731 } |
| 6732 | 6732 |
| 6733 checkUnnamed3436(core.List<api.Recipient> o) { | 6733 checkUnnamed3528(core.List<api.Recipient> o) { |
| 6734 unittest.expect(o, unittest.hasLength(2)); | 6734 unittest.expect(o, unittest.hasLength(2)); |
| 6735 checkRecipient(o[0]); | 6735 checkRecipient(o[0]); |
| 6736 checkRecipient(o[1]); | 6736 checkRecipient(o[1]); |
| 6737 } | 6737 } |
| 6738 | 6738 |
| 6739 core.int buildCounterReportDelivery = 0; | 6739 core.int buildCounterReportDelivery = 0; |
| 6740 buildReportDelivery() { | 6740 buildReportDelivery() { |
| 6741 var o = new api.ReportDelivery(); | 6741 var o = new api.ReportDelivery(); |
| 6742 buildCounterReportDelivery++; | 6742 buildCounterReportDelivery++; |
| 6743 if (buildCounterReportDelivery < 3) { | 6743 if (buildCounterReportDelivery < 3) { |
| 6744 o.emailOwner = true; | 6744 o.emailOwner = true; |
| 6745 o.emailOwnerDeliveryType = "foo"; | 6745 o.emailOwnerDeliveryType = "foo"; |
| 6746 o.message = "foo"; | 6746 o.message = "foo"; |
| 6747 o.recipients = buildUnnamed3436(); | 6747 o.recipients = buildUnnamed3528(); |
| 6748 } | 6748 } |
| 6749 buildCounterReportDelivery--; | 6749 buildCounterReportDelivery--; |
| 6750 return o; | 6750 return o; |
| 6751 } | 6751 } |
| 6752 | 6752 |
| 6753 checkReportDelivery(api.ReportDelivery o) { | 6753 checkReportDelivery(api.ReportDelivery o) { |
| 6754 buildCounterReportDelivery++; | 6754 buildCounterReportDelivery++; |
| 6755 if (buildCounterReportDelivery < 3) { | 6755 if (buildCounterReportDelivery < 3) { |
| 6756 unittest.expect(o.emailOwner, unittest.isTrue); | 6756 unittest.expect(o.emailOwner, unittest.isTrue); |
| 6757 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); | 6757 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); |
| 6758 unittest.expect(o.message, unittest.equals('foo')); | 6758 unittest.expect(o.message, unittest.equals('foo')); |
| 6759 checkUnnamed3436(o.recipients); | 6759 checkUnnamed3528(o.recipients); |
| 6760 } | 6760 } |
| 6761 buildCounterReportDelivery--; | 6761 buildCounterReportDelivery--; |
| 6762 } | 6762 } |
| 6763 | 6763 |
| 6764 buildUnnamed3437() { | 6764 buildUnnamed3529() { |
| 6765 var o = new core.List<api.DimensionValue>(); | 6765 var o = new core.List<api.DimensionValue>(); |
| 6766 o.add(buildDimensionValue()); | 6766 o.add(buildDimensionValue()); |
| 6767 o.add(buildDimensionValue()); | 6767 o.add(buildDimensionValue()); |
| 6768 return o; | 6768 return o; |
| 6769 } | 6769 } |
| 6770 | 6770 |
| 6771 checkUnnamed3437(core.List<api.DimensionValue> o) { | 6771 checkUnnamed3529(core.List<api.DimensionValue> o) { |
| 6772 unittest.expect(o, unittest.hasLength(2)); | 6772 unittest.expect(o, unittest.hasLength(2)); |
| 6773 checkDimensionValue(o[0]); | 6773 checkDimensionValue(o[0]); |
| 6774 checkDimensionValue(o[1]); | 6774 checkDimensionValue(o[1]); |
| 6775 } | 6775 } |
| 6776 | 6776 |
| 6777 buildUnnamed3438() { | 6777 buildUnnamed3530() { |
| 6778 var o = new core.List<api.DimensionValue>(); | 6778 var o = new core.List<api.DimensionValue>(); |
| 6779 o.add(buildDimensionValue()); | 6779 o.add(buildDimensionValue()); |
| 6780 o.add(buildDimensionValue()); | 6780 o.add(buildDimensionValue()); |
| 6781 return o; | 6781 return o; |
| 6782 } | 6782 } |
| 6783 | 6783 |
| 6784 checkUnnamed3438(core.List<api.DimensionValue> o) { | 6784 checkUnnamed3530(core.List<api.DimensionValue> o) { |
| 6785 unittest.expect(o, unittest.hasLength(2)); | 6785 unittest.expect(o, unittest.hasLength(2)); |
| 6786 checkDimensionValue(o[0]); | 6786 checkDimensionValue(o[0]); |
| 6787 checkDimensionValue(o[1]); | 6787 checkDimensionValue(o[1]); |
| 6788 } | 6788 } |
| 6789 | 6789 |
| 6790 buildUnnamed3439() { | 6790 buildUnnamed3531() { |
| 6791 var o = new core.List<api.SortedDimension>(); | 6791 var o = new core.List<api.SortedDimension>(); |
| 6792 o.add(buildSortedDimension()); | 6792 o.add(buildSortedDimension()); |
| 6793 o.add(buildSortedDimension()); | 6793 o.add(buildSortedDimension()); |
| 6794 return o; | 6794 return o; |
| 6795 } | 6795 } |
| 6796 | 6796 |
| 6797 checkUnnamed3439(core.List<api.SortedDimension> o) { | 6797 checkUnnamed3531(core.List<api.SortedDimension> o) { |
| 6798 unittest.expect(o, unittest.hasLength(2)); | 6798 unittest.expect(o, unittest.hasLength(2)); |
| 6799 checkSortedDimension(o[0]); | 6799 checkSortedDimension(o[0]); |
| 6800 checkSortedDimension(o[1]); | 6800 checkSortedDimension(o[1]); |
| 6801 } | 6801 } |
| 6802 | 6802 |
| 6803 buildUnnamed3440() { | 6803 buildUnnamed3532() { |
| 6804 var o = new core.List<core.String>(); | 6804 var o = new core.List<core.String>(); |
| 6805 o.add("foo"); | 6805 o.add("foo"); |
| 6806 o.add("foo"); | 6806 o.add("foo"); |
| 6807 return o; | 6807 return o; |
| 6808 } | 6808 } |
| 6809 | 6809 |
| 6810 checkUnnamed3440(core.List<core.String> o) { | 6810 checkUnnamed3532(core.List<core.String> o) { |
| 6811 unittest.expect(o, unittest.hasLength(2)); | 6811 unittest.expect(o, unittest.hasLength(2)); |
| 6812 unittest.expect(o[0], unittest.equals('foo')); | 6812 unittest.expect(o[0], unittest.equals('foo')); |
| 6813 unittest.expect(o[1], unittest.equals('foo')); | 6813 unittest.expect(o[1], unittest.equals('foo')); |
| 6814 } | 6814 } |
| 6815 | 6815 |
| 6816 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; | 6816 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; |
| 6817 buildReportFloodlightCriteriaReportProperties() { | 6817 buildReportFloodlightCriteriaReportProperties() { |
| 6818 var o = new api.ReportFloodlightCriteriaReportProperties(); | 6818 var o = new api.ReportFloodlightCriteriaReportProperties(); |
| 6819 buildCounterReportFloodlightCriteriaReportProperties++; | 6819 buildCounterReportFloodlightCriteriaReportProperties++; |
| 6820 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { | 6820 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 6834 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); | 6834 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); |
| 6835 } | 6835 } |
| 6836 buildCounterReportFloodlightCriteriaReportProperties--; | 6836 buildCounterReportFloodlightCriteriaReportProperties--; |
| 6837 } | 6837 } |
| 6838 | 6838 |
| 6839 core.int buildCounterReportFloodlightCriteria = 0; | 6839 core.int buildCounterReportFloodlightCriteria = 0; |
| 6840 buildReportFloodlightCriteria() { | 6840 buildReportFloodlightCriteria() { |
| 6841 var o = new api.ReportFloodlightCriteria(); | 6841 var o = new api.ReportFloodlightCriteria(); |
| 6842 buildCounterReportFloodlightCriteria++; | 6842 buildCounterReportFloodlightCriteria++; |
| 6843 if (buildCounterReportFloodlightCriteria < 3) { | 6843 if (buildCounterReportFloodlightCriteria < 3) { |
| 6844 o.customRichMediaEvents = buildUnnamed3437(); | 6844 o.customRichMediaEvents = buildUnnamed3529(); |
| 6845 o.dateRange = buildDateRange(); | 6845 o.dateRange = buildDateRange(); |
| 6846 o.dimensionFilters = buildUnnamed3438(); | 6846 o.dimensionFilters = buildUnnamed3530(); |
| 6847 o.dimensions = buildUnnamed3439(); | 6847 o.dimensions = buildUnnamed3531(); |
| 6848 o.floodlightConfigId = buildDimensionValue(); | 6848 o.floodlightConfigId = buildDimensionValue(); |
| 6849 o.metricNames = buildUnnamed3440(); | 6849 o.metricNames = buildUnnamed3532(); |
| 6850 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); | 6850 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); |
| 6851 } | 6851 } |
| 6852 buildCounterReportFloodlightCriteria--; | 6852 buildCounterReportFloodlightCriteria--; |
| 6853 return o; | 6853 return o; |
| 6854 } | 6854 } |
| 6855 | 6855 |
| 6856 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { | 6856 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { |
| 6857 buildCounterReportFloodlightCriteria++; | 6857 buildCounterReportFloodlightCriteria++; |
| 6858 if (buildCounterReportFloodlightCriteria < 3) { | 6858 if (buildCounterReportFloodlightCriteria < 3) { |
| 6859 checkUnnamed3437(o.customRichMediaEvents); | 6859 checkUnnamed3529(o.customRichMediaEvents); |
| 6860 checkDateRange(o.dateRange); | 6860 checkDateRange(o.dateRange); |
| 6861 checkUnnamed3438(o.dimensionFilters); | 6861 checkUnnamed3530(o.dimensionFilters); |
| 6862 checkUnnamed3439(o.dimensions); | 6862 checkUnnamed3531(o.dimensions); |
| 6863 checkDimensionValue(o.floodlightConfigId); | 6863 checkDimensionValue(o.floodlightConfigId); |
| 6864 checkUnnamed3440(o.metricNames); | 6864 checkUnnamed3532(o.metricNames); |
| 6865 checkReportFloodlightCriteriaReportProperties(o.reportProperties); | 6865 checkReportFloodlightCriteriaReportProperties(o.reportProperties); |
| 6866 } | 6866 } |
| 6867 buildCounterReportFloodlightCriteria--; | 6867 buildCounterReportFloodlightCriteria--; |
| 6868 } | 6868 } |
| 6869 | 6869 |
| 6870 buildUnnamed3441() { | 6870 buildUnnamed3533() { |
| 6871 var o = new core.List<api.DimensionValue>(); | 6871 var o = new core.List<api.DimensionValue>(); |
| 6872 o.add(buildDimensionValue()); | 6872 o.add(buildDimensionValue()); |
| 6873 o.add(buildDimensionValue()); | 6873 o.add(buildDimensionValue()); |
| 6874 return o; | 6874 return o; |
| 6875 } | 6875 } |
| 6876 | 6876 |
| 6877 checkUnnamed3441(core.List<api.DimensionValue> o) { | 6877 checkUnnamed3533(core.List<api.DimensionValue> o) { |
| 6878 unittest.expect(o, unittest.hasLength(2)); | 6878 unittest.expect(o, unittest.hasLength(2)); |
| 6879 checkDimensionValue(o[0]); | 6879 checkDimensionValue(o[0]); |
| 6880 checkDimensionValue(o[1]); | 6880 checkDimensionValue(o[1]); |
| 6881 } | 6881 } |
| 6882 | 6882 |
| 6883 buildUnnamed3442() { | 6883 buildUnnamed3534() { |
| 6884 var o = new core.List<api.SortedDimension>(); | 6884 var o = new core.List<api.SortedDimension>(); |
| 6885 o.add(buildSortedDimension()); | 6885 o.add(buildSortedDimension()); |
| 6886 o.add(buildSortedDimension()); | 6886 o.add(buildSortedDimension()); |
| 6887 return o; | 6887 return o; |
| 6888 } | 6888 } |
| 6889 | 6889 |
| 6890 checkUnnamed3442(core.List<api.SortedDimension> o) { | 6890 checkUnnamed3534(core.List<api.SortedDimension> o) { |
| 6891 unittest.expect(o, unittest.hasLength(2)); | 6891 unittest.expect(o, unittest.hasLength(2)); |
| 6892 checkSortedDimension(o[0]); | 6892 checkSortedDimension(o[0]); |
| 6893 checkSortedDimension(o[1]); | 6893 checkSortedDimension(o[1]); |
| 6894 } | 6894 } |
| 6895 | 6895 |
| 6896 buildUnnamed3443() { | 6896 buildUnnamed3535() { |
| 6897 var o = new core.List<api.SortedDimension>(); | 6897 var o = new core.List<api.SortedDimension>(); |
| 6898 o.add(buildSortedDimension()); | 6898 o.add(buildSortedDimension()); |
| 6899 o.add(buildSortedDimension()); | 6899 o.add(buildSortedDimension()); |
| 6900 return o; | 6900 return o; |
| 6901 } | 6901 } |
| 6902 | 6902 |
| 6903 checkUnnamed3443(core.List<api.SortedDimension> o) { | 6903 checkUnnamed3535(core.List<api.SortedDimension> o) { |
| 6904 unittest.expect(o, unittest.hasLength(2)); | 6904 unittest.expect(o, unittest.hasLength(2)); |
| 6905 checkSortedDimension(o[0]); | 6905 checkSortedDimension(o[0]); |
| 6906 checkSortedDimension(o[1]); | 6906 checkSortedDimension(o[1]); |
| 6907 } | 6907 } |
| 6908 | 6908 |
| 6909 buildUnnamed3444() { | 6909 buildUnnamed3536() { |
| 6910 var o = new core.List<api.DimensionValue>(); | 6910 var o = new core.List<api.DimensionValue>(); |
| 6911 o.add(buildDimensionValue()); | 6911 o.add(buildDimensionValue()); |
| 6912 o.add(buildDimensionValue()); | 6912 o.add(buildDimensionValue()); |
| 6913 return o; | 6913 return o; |
| 6914 } | 6914 } |
| 6915 | 6915 |
| 6916 checkUnnamed3444(core.List<api.DimensionValue> o) { | 6916 checkUnnamed3536(core.List<api.DimensionValue> o) { |
| 6917 unittest.expect(o, unittest.hasLength(2)); | 6917 unittest.expect(o, unittest.hasLength(2)); |
| 6918 checkDimensionValue(o[0]); | 6918 checkDimensionValue(o[0]); |
| 6919 checkDimensionValue(o[1]); | 6919 checkDimensionValue(o[1]); |
| 6920 } | 6920 } |
| 6921 | 6921 |
| 6922 buildUnnamed3445() { | 6922 buildUnnamed3537() { |
| 6923 var o = new core.List<core.String>(); | 6923 var o = new core.List<core.String>(); |
| 6924 o.add("foo"); | 6924 o.add("foo"); |
| 6925 o.add("foo"); | 6925 o.add("foo"); |
| 6926 return o; | 6926 return o; |
| 6927 } | 6927 } |
| 6928 | 6928 |
| 6929 checkUnnamed3445(core.List<core.String> o) { | 6929 checkUnnamed3537(core.List<core.String> o) { |
| 6930 unittest.expect(o, unittest.hasLength(2)); | 6930 unittest.expect(o, unittest.hasLength(2)); |
| 6931 unittest.expect(o[0], unittest.equals('foo')); | 6931 unittest.expect(o[0], unittest.equals('foo')); |
| 6932 unittest.expect(o[1], unittest.equals('foo')); | 6932 unittest.expect(o[1], unittest.equals('foo')); |
| 6933 } | 6933 } |
| 6934 | 6934 |
| 6935 buildUnnamed3446() { | 6935 buildUnnamed3538() { |
| 6936 var o = new core.List<api.SortedDimension>(); | 6936 var o = new core.List<api.SortedDimension>(); |
| 6937 o.add(buildSortedDimension()); | 6937 o.add(buildSortedDimension()); |
| 6938 o.add(buildSortedDimension()); | 6938 o.add(buildSortedDimension()); |
| 6939 return o; | 6939 return o; |
| 6940 } | 6940 } |
| 6941 | 6941 |
| 6942 checkUnnamed3446(core.List<api.SortedDimension> o) { | 6942 checkUnnamed3538(core.List<api.SortedDimension> o) { |
| 6943 unittest.expect(o, unittest.hasLength(2)); | 6943 unittest.expect(o, unittest.hasLength(2)); |
| 6944 checkSortedDimension(o[0]); | 6944 checkSortedDimension(o[0]); |
| 6945 checkSortedDimension(o[1]); | 6945 checkSortedDimension(o[1]); |
| 6946 } | 6946 } |
| 6947 | 6947 |
| 6948 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; | 6948 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; |
| 6949 buildReportPathToConversionCriteriaReportProperties() { | 6949 buildReportPathToConversionCriteriaReportProperties() { |
| 6950 var o = new api.ReportPathToConversionCriteriaReportProperties(); | 6950 var o = new api.ReportPathToConversionCriteriaReportProperties(); |
| 6951 buildCounterReportPathToConversionCriteriaReportProperties++; | 6951 buildCounterReportPathToConversionCriteriaReportProperties++; |
| 6952 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { | 6952 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 6978 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); | 6978 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); |
| 6979 } | 6979 } |
| 6980 buildCounterReportPathToConversionCriteriaReportProperties--; | 6980 buildCounterReportPathToConversionCriteriaReportProperties--; |
| 6981 } | 6981 } |
| 6982 | 6982 |
| 6983 core.int buildCounterReportPathToConversionCriteria = 0; | 6983 core.int buildCounterReportPathToConversionCriteria = 0; |
| 6984 buildReportPathToConversionCriteria() { | 6984 buildReportPathToConversionCriteria() { |
| 6985 var o = new api.ReportPathToConversionCriteria(); | 6985 var o = new api.ReportPathToConversionCriteria(); |
| 6986 buildCounterReportPathToConversionCriteria++; | 6986 buildCounterReportPathToConversionCriteria++; |
| 6987 if (buildCounterReportPathToConversionCriteria < 3) { | 6987 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6988 o.activityFilters = buildUnnamed3441(); | 6988 o.activityFilters = buildUnnamed3533(); |
| 6989 o.conversionDimensions = buildUnnamed3442(); | 6989 o.conversionDimensions = buildUnnamed3534(); |
| 6990 o.customFloodlightVariables = buildUnnamed3443(); | 6990 o.customFloodlightVariables = buildUnnamed3535(); |
| 6991 o.customRichMediaEvents = buildUnnamed3444(); | 6991 o.customRichMediaEvents = buildUnnamed3536(); |
| 6992 o.dateRange = buildDateRange(); | 6992 o.dateRange = buildDateRange(); |
| 6993 o.floodlightConfigId = buildDimensionValue(); | 6993 o.floodlightConfigId = buildDimensionValue(); |
| 6994 o.metricNames = buildUnnamed3445(); | 6994 o.metricNames = buildUnnamed3537(); |
| 6995 o.perInteractionDimensions = buildUnnamed3446(); | 6995 o.perInteractionDimensions = buildUnnamed3538(); |
| 6996 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); | 6996 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); |
| 6997 } | 6997 } |
| 6998 buildCounterReportPathToConversionCriteria--; | 6998 buildCounterReportPathToConversionCriteria--; |
| 6999 return o; | 6999 return o; |
| 7000 } | 7000 } |
| 7001 | 7001 |
| 7002 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { | 7002 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { |
| 7003 buildCounterReportPathToConversionCriteria++; | 7003 buildCounterReportPathToConversionCriteria++; |
| 7004 if (buildCounterReportPathToConversionCriteria < 3) { | 7004 if (buildCounterReportPathToConversionCriteria < 3) { |
| 7005 checkUnnamed3441(o.activityFilters); | 7005 checkUnnamed3533(o.activityFilters); |
| 7006 checkUnnamed3442(o.conversionDimensions); | 7006 checkUnnamed3534(o.conversionDimensions); |
| 7007 checkUnnamed3443(o.customFloodlightVariables); | 7007 checkUnnamed3535(o.customFloodlightVariables); |
| 7008 checkUnnamed3444(o.customRichMediaEvents); | 7008 checkUnnamed3536(o.customRichMediaEvents); |
| 7009 checkDateRange(o.dateRange); | 7009 checkDateRange(o.dateRange); |
| 7010 checkDimensionValue(o.floodlightConfigId); | 7010 checkDimensionValue(o.floodlightConfigId); |
| 7011 checkUnnamed3445(o.metricNames); | 7011 checkUnnamed3537(o.metricNames); |
| 7012 checkUnnamed3446(o.perInteractionDimensions); | 7012 checkUnnamed3538(o.perInteractionDimensions); |
| 7013 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); | 7013 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); |
| 7014 } | 7014 } |
| 7015 buildCounterReportPathToConversionCriteria--; | 7015 buildCounterReportPathToConversionCriteria--; |
| 7016 } | 7016 } |
| 7017 | 7017 |
| 7018 buildUnnamed3447() { | 7018 buildUnnamed3539() { |
| 7019 var o = new core.List<api.DimensionValue>(); | 7019 var o = new core.List<api.DimensionValue>(); |
| 7020 o.add(buildDimensionValue()); | 7020 o.add(buildDimensionValue()); |
| 7021 o.add(buildDimensionValue()); | 7021 o.add(buildDimensionValue()); |
| 7022 return o; | 7022 return o; |
| 7023 } | 7023 } |
| 7024 | 7024 |
| 7025 checkUnnamed3447(core.List<api.DimensionValue> o) { | 7025 checkUnnamed3539(core.List<api.DimensionValue> o) { |
| 7026 unittest.expect(o, unittest.hasLength(2)); | 7026 unittest.expect(o, unittest.hasLength(2)); |
| 7027 checkDimensionValue(o[0]); | 7027 checkDimensionValue(o[0]); |
| 7028 checkDimensionValue(o[1]); | 7028 checkDimensionValue(o[1]); |
| 7029 } | 7029 } |
| 7030 | 7030 |
| 7031 buildUnnamed3448() { | 7031 buildUnnamed3540() { |
| 7032 var o = new core.List<api.SortedDimension>(); | 7032 var o = new core.List<api.SortedDimension>(); |
| 7033 o.add(buildSortedDimension()); | 7033 o.add(buildSortedDimension()); |
| 7034 o.add(buildSortedDimension()); | 7034 o.add(buildSortedDimension()); |
| 7035 return o; | 7035 return o; |
| 7036 } | 7036 } |
| 7037 | 7037 |
| 7038 checkUnnamed3448(core.List<api.SortedDimension> o) { | 7038 checkUnnamed3540(core.List<api.SortedDimension> o) { |
| 7039 unittest.expect(o, unittest.hasLength(2)); | 7039 unittest.expect(o, unittest.hasLength(2)); |
| 7040 checkSortedDimension(o[0]); | 7040 checkSortedDimension(o[0]); |
| 7041 checkSortedDimension(o[1]); | 7041 checkSortedDimension(o[1]); |
| 7042 } | 7042 } |
| 7043 | 7043 |
| 7044 buildUnnamed3449() { | 7044 buildUnnamed3541() { |
| 7045 var o = new core.List<core.String>(); | 7045 var o = new core.List<core.String>(); |
| 7046 o.add("foo"); | 7046 o.add("foo"); |
| 7047 o.add("foo"); | 7047 o.add("foo"); |
| 7048 return o; | 7048 return o; |
| 7049 } | 7049 } |
| 7050 | 7050 |
| 7051 checkUnnamed3449(core.List<core.String> o) { | 7051 checkUnnamed3541(core.List<core.String> o) { |
| 7052 unittest.expect(o, unittest.hasLength(2)); | 7052 unittest.expect(o, unittest.hasLength(2)); |
| 7053 unittest.expect(o[0], unittest.equals('foo')); | 7053 unittest.expect(o[0], unittest.equals('foo')); |
| 7054 unittest.expect(o[1], unittest.equals('foo')); | 7054 unittest.expect(o[1], unittest.equals('foo')); |
| 7055 } | 7055 } |
| 7056 | 7056 |
| 7057 buildUnnamed3450() { | 7057 buildUnnamed3542() { |
| 7058 var o = new core.List<core.String>(); | 7058 var o = new core.List<core.String>(); |
| 7059 o.add("foo"); | 7059 o.add("foo"); |
| 7060 o.add("foo"); | 7060 o.add("foo"); |
| 7061 return o; | 7061 return o; |
| 7062 } | 7062 } |
| 7063 | 7063 |
| 7064 checkUnnamed3450(core.List<core.String> o) { | 7064 checkUnnamed3542(core.List<core.String> o) { |
| 7065 unittest.expect(o, unittest.hasLength(2)); | 7065 unittest.expect(o, unittest.hasLength(2)); |
| 7066 unittest.expect(o[0], unittest.equals('foo')); | 7066 unittest.expect(o[0], unittest.equals('foo')); |
| 7067 unittest.expect(o[1], unittest.equals('foo')); | 7067 unittest.expect(o[1], unittest.equals('foo')); |
| 7068 } | 7068 } |
| 7069 | 7069 |
| 7070 core.int buildCounterReportReachCriteria = 0; | 7070 core.int buildCounterReportReachCriteria = 0; |
| 7071 buildReportReachCriteria() { | 7071 buildReportReachCriteria() { |
| 7072 var o = new api.ReportReachCriteria(); | 7072 var o = new api.ReportReachCriteria(); |
| 7073 buildCounterReportReachCriteria++; | 7073 buildCounterReportReachCriteria++; |
| 7074 if (buildCounterReportReachCriteria < 3) { | 7074 if (buildCounterReportReachCriteria < 3) { |
| 7075 o.activities = buildActivities(); | 7075 o.activities = buildActivities(); |
| 7076 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 7076 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 7077 o.dateRange = buildDateRange(); | 7077 o.dateRange = buildDateRange(); |
| 7078 o.dimensionFilters = buildUnnamed3447(); | 7078 o.dimensionFilters = buildUnnamed3539(); |
| 7079 o.dimensions = buildUnnamed3448(); | 7079 o.dimensions = buildUnnamed3540(); |
| 7080 o.enableAllDimensionCombinations = true; | 7080 o.enableAllDimensionCombinations = true; |
| 7081 o.metricNames = buildUnnamed3449(); | 7081 o.metricNames = buildUnnamed3541(); |
| 7082 o.reachByFrequencyMetricNames = buildUnnamed3450(); | 7082 o.reachByFrequencyMetricNames = buildUnnamed3542(); |
| 7083 } | 7083 } |
| 7084 buildCounterReportReachCriteria--; | 7084 buildCounterReportReachCriteria--; |
| 7085 return o; | 7085 return o; |
| 7086 } | 7086 } |
| 7087 | 7087 |
| 7088 checkReportReachCriteria(api.ReportReachCriteria o) { | 7088 checkReportReachCriteria(api.ReportReachCriteria o) { |
| 7089 buildCounterReportReachCriteria++; | 7089 buildCounterReportReachCriteria++; |
| 7090 if (buildCounterReportReachCriteria < 3) { | 7090 if (buildCounterReportReachCriteria < 3) { |
| 7091 checkActivities(o.activities); | 7091 checkActivities(o.activities); |
| 7092 checkCustomRichMediaEvents(o.customRichMediaEvents); | 7092 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 7093 checkDateRange(o.dateRange); | 7093 checkDateRange(o.dateRange); |
| 7094 checkUnnamed3447(o.dimensionFilters); | 7094 checkUnnamed3539(o.dimensionFilters); |
| 7095 checkUnnamed3448(o.dimensions); | 7095 checkUnnamed3540(o.dimensions); |
| 7096 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); | 7096 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); |
| 7097 checkUnnamed3449(o.metricNames); | 7097 checkUnnamed3541(o.metricNames); |
| 7098 checkUnnamed3450(o.reachByFrequencyMetricNames); | 7098 checkUnnamed3542(o.reachByFrequencyMetricNames); |
| 7099 } | 7099 } |
| 7100 buildCounterReportReachCriteria--; | 7100 buildCounterReportReachCriteria--; |
| 7101 } | 7101 } |
| 7102 | 7102 |
| 7103 buildUnnamed3451() { | 7103 buildUnnamed3543() { |
| 7104 var o = new core.List<core.String>(); | 7104 var o = new core.List<core.String>(); |
| 7105 o.add("foo"); | 7105 o.add("foo"); |
| 7106 o.add("foo"); | 7106 o.add("foo"); |
| 7107 return o; | 7107 return o; |
| 7108 } | 7108 } |
| 7109 | 7109 |
| 7110 checkUnnamed3451(core.List<core.String> o) { | 7110 checkUnnamed3543(core.List<core.String> o) { |
| 7111 unittest.expect(o, unittest.hasLength(2)); | 7111 unittest.expect(o, unittest.hasLength(2)); |
| 7112 unittest.expect(o[0], unittest.equals('foo')); | 7112 unittest.expect(o[0], unittest.equals('foo')); |
| 7113 unittest.expect(o[1], unittest.equals('foo')); | 7113 unittest.expect(o[1], unittest.equals('foo')); |
| 7114 } | 7114 } |
| 7115 | 7115 |
| 7116 core.int buildCounterReportSchedule = 0; | 7116 core.int buildCounterReportSchedule = 0; |
| 7117 buildReportSchedule() { | 7117 buildReportSchedule() { |
| 7118 var o = new api.ReportSchedule(); | 7118 var o = new api.ReportSchedule(); |
| 7119 buildCounterReportSchedule++; | 7119 buildCounterReportSchedule++; |
| 7120 if (buildCounterReportSchedule < 3) { | 7120 if (buildCounterReportSchedule < 3) { |
| 7121 o.active = true; | 7121 o.active = true; |
| 7122 o.every = 42; | 7122 o.every = 42; |
| 7123 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 7123 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 7124 o.repeats = "foo"; | 7124 o.repeats = "foo"; |
| 7125 o.repeatsOnWeekDays = buildUnnamed3451(); | 7125 o.repeatsOnWeekDays = buildUnnamed3543(); |
| 7126 o.runsOnDayOfMonth = "foo"; | 7126 o.runsOnDayOfMonth = "foo"; |
| 7127 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 7127 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 7128 } | 7128 } |
| 7129 buildCounterReportSchedule--; | 7129 buildCounterReportSchedule--; |
| 7130 return o; | 7130 return o; |
| 7131 } | 7131 } |
| 7132 | 7132 |
| 7133 checkReportSchedule(api.ReportSchedule o) { | 7133 checkReportSchedule(api.ReportSchedule o) { |
| 7134 buildCounterReportSchedule++; | 7134 buildCounterReportSchedule++; |
| 7135 if (buildCounterReportSchedule < 3) { | 7135 if (buildCounterReportSchedule < 3) { |
| 7136 unittest.expect(o.active, unittest.isTrue); | 7136 unittest.expect(o.active, unittest.isTrue); |
| 7137 unittest.expect(o.every, unittest.equals(42)); | 7137 unittest.expect(o.every, unittest.equals(42)); |
| 7138 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); | 7138 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); |
| 7139 unittest.expect(o.repeats, unittest.equals('foo')); | 7139 unittest.expect(o.repeats, unittest.equals('foo')); |
| 7140 checkUnnamed3451(o.repeatsOnWeekDays); | 7140 checkUnnamed3543(o.repeatsOnWeekDays); |
| 7141 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); | 7141 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); |
| 7142 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 7142 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 7143 } | 7143 } |
| 7144 buildCounterReportSchedule--; | 7144 buildCounterReportSchedule--; |
| 7145 } | 7145 } |
| 7146 | 7146 |
| 7147 core.int buildCounterReport = 0; | 7147 core.int buildCounterReport = 0; |
| 7148 buildReport() { | 7148 buildReport() { |
| 7149 var o = new api.Report(); | 7149 var o = new api.Report(); |
| 7150 buildCounterReport++; | 7150 buildCounterReport++; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7190 unittest.expect(o.ownerProfileId, unittest.equals('foo')); | 7190 unittest.expect(o.ownerProfileId, unittest.equals('foo')); |
| 7191 checkReportPathToConversionCriteria(o.pathToConversionCriteria); | 7191 checkReportPathToConversionCriteria(o.pathToConversionCriteria); |
| 7192 checkReportReachCriteria(o.reachCriteria); | 7192 checkReportReachCriteria(o.reachCriteria); |
| 7193 checkReportSchedule(o.schedule); | 7193 checkReportSchedule(o.schedule); |
| 7194 unittest.expect(o.subAccountId, unittest.equals('foo')); | 7194 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 7195 unittest.expect(o.type, unittest.equals('foo')); | 7195 unittest.expect(o.type, unittest.equals('foo')); |
| 7196 } | 7196 } |
| 7197 buildCounterReport--; | 7197 buildCounterReport--; |
| 7198 } | 7198 } |
| 7199 | 7199 |
| 7200 buildUnnamed3452() { | 7200 buildUnnamed3544() { |
| 7201 var o = new core.List<api.Dimension>(); | 7201 var o = new core.List<api.Dimension>(); |
| 7202 o.add(buildDimension()); | 7202 o.add(buildDimension()); |
| 7203 o.add(buildDimension()); | 7203 o.add(buildDimension()); |
| 7204 return o; | 7204 return o; |
| 7205 } | 7205 } |
| 7206 | 7206 |
| 7207 checkUnnamed3452(core.List<api.Dimension> o) { | 7207 checkUnnamed3544(core.List<api.Dimension> o) { |
| 7208 unittest.expect(o, unittest.hasLength(2)); | 7208 unittest.expect(o, unittest.hasLength(2)); |
| 7209 checkDimension(o[0]); | 7209 checkDimension(o[0]); |
| 7210 checkDimension(o[1]); | 7210 checkDimension(o[1]); |
| 7211 } | 7211 } |
| 7212 | 7212 |
| 7213 buildUnnamed3453() { | 7213 buildUnnamed3545() { |
| 7214 var o = new core.List<api.Dimension>(); | 7214 var o = new core.List<api.Dimension>(); |
| 7215 o.add(buildDimension()); | 7215 o.add(buildDimension()); |
| 7216 o.add(buildDimension()); | 7216 o.add(buildDimension()); |
| 7217 return o; | 7217 return o; |
| 7218 } | 7218 } |
| 7219 | 7219 |
| 7220 checkUnnamed3453(core.List<api.Dimension> o) { | 7220 checkUnnamed3545(core.List<api.Dimension> o) { |
| 7221 unittest.expect(o, unittest.hasLength(2)); | 7221 unittest.expect(o, unittest.hasLength(2)); |
| 7222 checkDimension(o[0]); | 7222 checkDimension(o[0]); |
| 7223 checkDimension(o[1]); | 7223 checkDimension(o[1]); |
| 7224 } | 7224 } |
| 7225 | 7225 |
| 7226 buildUnnamed3454() { | 7226 buildUnnamed3546() { |
| 7227 var o = new core.List<api.Metric>(); | 7227 var o = new core.List<api.Metric>(); |
| 7228 o.add(buildMetric()); | 7228 o.add(buildMetric()); |
| 7229 o.add(buildMetric()); | 7229 o.add(buildMetric()); |
| 7230 return o; | 7230 return o; |
| 7231 } | 7231 } |
| 7232 | 7232 |
| 7233 checkUnnamed3454(core.List<api.Metric> o) { | 7233 checkUnnamed3546(core.List<api.Metric> o) { |
| 7234 unittest.expect(o, unittest.hasLength(2)); | 7234 unittest.expect(o, unittest.hasLength(2)); |
| 7235 checkMetric(o[0]); | 7235 checkMetric(o[0]); |
| 7236 checkMetric(o[1]); | 7236 checkMetric(o[1]); |
| 7237 } | 7237 } |
| 7238 | 7238 |
| 7239 buildUnnamed3455() { | 7239 buildUnnamed3547() { |
| 7240 var o = new core.List<api.Metric>(); | 7240 var o = new core.List<api.Metric>(); |
| 7241 o.add(buildMetric()); | 7241 o.add(buildMetric()); |
| 7242 o.add(buildMetric()); | 7242 o.add(buildMetric()); |
| 7243 return o; | 7243 return o; |
| 7244 } | 7244 } |
| 7245 | 7245 |
| 7246 checkUnnamed3455(core.List<api.Metric> o) { | 7246 checkUnnamed3547(core.List<api.Metric> o) { |
| 7247 unittest.expect(o, unittest.hasLength(2)); | 7247 unittest.expect(o, unittest.hasLength(2)); |
| 7248 checkMetric(o[0]); | 7248 checkMetric(o[0]); |
| 7249 checkMetric(o[1]); | 7249 checkMetric(o[1]); |
| 7250 } | 7250 } |
| 7251 | 7251 |
| 7252 core.int buildCounterReportCompatibleFields = 0; | 7252 core.int buildCounterReportCompatibleFields = 0; |
| 7253 buildReportCompatibleFields() { | 7253 buildReportCompatibleFields() { |
| 7254 var o = new api.ReportCompatibleFields(); | 7254 var o = new api.ReportCompatibleFields(); |
| 7255 buildCounterReportCompatibleFields++; | 7255 buildCounterReportCompatibleFields++; |
| 7256 if (buildCounterReportCompatibleFields < 3) { | 7256 if (buildCounterReportCompatibleFields < 3) { |
| 7257 o.dimensionFilters = buildUnnamed3452(); | 7257 o.dimensionFilters = buildUnnamed3544(); |
| 7258 o.dimensions = buildUnnamed3453(); | 7258 o.dimensions = buildUnnamed3545(); |
| 7259 o.kind = "foo"; | 7259 o.kind = "foo"; |
| 7260 o.metrics = buildUnnamed3454(); | 7260 o.metrics = buildUnnamed3546(); |
| 7261 o.pivotedActivityMetrics = buildUnnamed3455(); | 7261 o.pivotedActivityMetrics = buildUnnamed3547(); |
| 7262 } | 7262 } |
| 7263 buildCounterReportCompatibleFields--; | 7263 buildCounterReportCompatibleFields--; |
| 7264 return o; | 7264 return o; |
| 7265 } | 7265 } |
| 7266 | 7266 |
| 7267 checkReportCompatibleFields(api.ReportCompatibleFields o) { | 7267 checkReportCompatibleFields(api.ReportCompatibleFields o) { |
| 7268 buildCounterReportCompatibleFields++; | 7268 buildCounterReportCompatibleFields++; |
| 7269 if (buildCounterReportCompatibleFields < 3) { | 7269 if (buildCounterReportCompatibleFields < 3) { |
| 7270 checkUnnamed3452(o.dimensionFilters); | 7270 checkUnnamed3544(o.dimensionFilters); |
| 7271 checkUnnamed3453(o.dimensions); | 7271 checkUnnamed3545(o.dimensions); |
| 7272 unittest.expect(o.kind, unittest.equals('foo')); | 7272 unittest.expect(o.kind, unittest.equals('foo')); |
| 7273 checkUnnamed3454(o.metrics); | 7273 checkUnnamed3546(o.metrics); |
| 7274 checkUnnamed3455(o.pivotedActivityMetrics); | 7274 checkUnnamed3547(o.pivotedActivityMetrics); |
| 7275 } | 7275 } |
| 7276 buildCounterReportCompatibleFields--; | 7276 buildCounterReportCompatibleFields--; |
| 7277 } | 7277 } |
| 7278 | 7278 |
| 7279 buildUnnamed3456() { | 7279 buildUnnamed3548() { |
| 7280 var o = new core.List<api.Report>(); | 7280 var o = new core.List<api.Report>(); |
| 7281 o.add(buildReport()); | 7281 o.add(buildReport()); |
| 7282 o.add(buildReport()); | 7282 o.add(buildReport()); |
| 7283 return o; | 7283 return o; |
| 7284 } | 7284 } |
| 7285 | 7285 |
| 7286 checkUnnamed3456(core.List<api.Report> o) { | 7286 checkUnnamed3548(core.List<api.Report> o) { |
| 7287 unittest.expect(o, unittest.hasLength(2)); | 7287 unittest.expect(o, unittest.hasLength(2)); |
| 7288 checkReport(o[0]); | 7288 checkReport(o[0]); |
| 7289 checkReport(o[1]); | 7289 checkReport(o[1]); |
| 7290 } | 7290 } |
| 7291 | 7291 |
| 7292 core.int buildCounterReportList = 0; | 7292 core.int buildCounterReportList = 0; |
| 7293 buildReportList() { | 7293 buildReportList() { |
| 7294 var o = new api.ReportList(); | 7294 var o = new api.ReportList(); |
| 7295 buildCounterReportList++; | 7295 buildCounterReportList++; |
| 7296 if (buildCounterReportList < 3) { | 7296 if (buildCounterReportList < 3) { |
| 7297 o.etag = "foo"; | 7297 o.etag = "foo"; |
| 7298 o.items = buildUnnamed3456(); | 7298 o.items = buildUnnamed3548(); |
| 7299 o.kind = "foo"; | 7299 o.kind = "foo"; |
| 7300 o.nextPageToken = "foo"; | 7300 o.nextPageToken = "foo"; |
| 7301 } | 7301 } |
| 7302 buildCounterReportList--; | 7302 buildCounterReportList--; |
| 7303 return o; | 7303 return o; |
| 7304 } | 7304 } |
| 7305 | 7305 |
| 7306 checkReportList(api.ReportList o) { | 7306 checkReportList(api.ReportList o) { |
| 7307 buildCounterReportList++; | 7307 buildCounterReportList++; |
| 7308 if (buildCounterReportList < 3) { | 7308 if (buildCounterReportList < 3) { |
| 7309 unittest.expect(o.etag, unittest.equals('foo')); | 7309 unittest.expect(o.etag, unittest.equals('foo')); |
| 7310 checkUnnamed3456(o.items); | 7310 checkUnnamed3548(o.items); |
| 7311 unittest.expect(o.kind, unittest.equals('foo')); | 7311 unittest.expect(o.kind, unittest.equals('foo')); |
| 7312 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7312 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7313 } | 7313 } |
| 7314 buildCounterReportList--; | 7314 buildCounterReportList--; |
| 7315 } | 7315 } |
| 7316 | 7316 |
| 7317 core.int buildCounterReportsConfiguration = 0; | 7317 core.int buildCounterReportsConfiguration = 0; |
| 7318 buildReportsConfiguration() { | 7318 buildReportsConfiguration() { |
| 7319 var o = new api.ReportsConfiguration(); | 7319 var o = new api.ReportsConfiguration(); |
| 7320 buildCounterReportsConfiguration++; | 7320 buildCounterReportsConfiguration++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7353 checkRichMediaExitOverride(api.RichMediaExitOverride o) { | 7353 checkRichMediaExitOverride(api.RichMediaExitOverride o) { |
| 7354 buildCounterRichMediaExitOverride++; | 7354 buildCounterRichMediaExitOverride++; |
| 7355 if (buildCounterRichMediaExitOverride < 3) { | 7355 if (buildCounterRichMediaExitOverride < 3) { |
| 7356 unittest.expect(o.customExitUrl, unittest.equals('foo')); | 7356 unittest.expect(o.customExitUrl, unittest.equals('foo')); |
| 7357 unittest.expect(o.exitId, unittest.equals('foo')); | 7357 unittest.expect(o.exitId, unittest.equals('foo')); |
| 7358 unittest.expect(o.useCustomExitUrl, unittest.isTrue); | 7358 unittest.expect(o.useCustomExitUrl, unittest.isTrue); |
| 7359 } | 7359 } |
| 7360 buildCounterRichMediaExitOverride--; | 7360 buildCounterRichMediaExitOverride--; |
| 7361 } | 7361 } |
| 7362 | 7362 |
| 7363 buildUnnamed3457() { | 7363 buildUnnamed3549() { |
| 7364 var o = new core.List<api.SiteContact>(); | 7364 var o = new core.List<api.SiteContact>(); |
| 7365 o.add(buildSiteContact()); | 7365 o.add(buildSiteContact()); |
| 7366 o.add(buildSiteContact()); | 7366 o.add(buildSiteContact()); |
| 7367 return o; | 7367 return o; |
| 7368 } | 7368 } |
| 7369 | 7369 |
| 7370 checkUnnamed3457(core.List<api.SiteContact> o) { | 7370 checkUnnamed3549(core.List<api.SiteContact> o) { |
| 7371 unittest.expect(o, unittest.hasLength(2)); | 7371 unittest.expect(o, unittest.hasLength(2)); |
| 7372 checkSiteContact(o[0]); | 7372 checkSiteContact(o[0]); |
| 7373 checkSiteContact(o[1]); | 7373 checkSiteContact(o[1]); |
| 7374 } | 7374 } |
| 7375 | 7375 |
| 7376 core.int buildCounterSite = 0; | 7376 core.int buildCounterSite = 0; |
| 7377 buildSite() { | 7377 buildSite() { |
| 7378 var o = new api.Site(); | 7378 var o = new api.Site(); |
| 7379 buildCounterSite++; | 7379 buildCounterSite++; |
| 7380 if (buildCounterSite < 3) { | 7380 if (buildCounterSite < 3) { |
| 7381 o.accountId = "foo"; | 7381 o.accountId = "foo"; |
| 7382 o.approved = true; | 7382 o.approved = true; |
| 7383 o.directorySiteId = "foo"; | 7383 o.directorySiteId = "foo"; |
| 7384 o.directorySiteIdDimensionValue = buildDimensionValue(); | 7384 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 7385 o.id = "foo"; | 7385 o.id = "foo"; |
| 7386 o.idDimensionValue = buildDimensionValue(); | 7386 o.idDimensionValue = buildDimensionValue(); |
| 7387 o.keyName = "foo"; | 7387 o.keyName = "foo"; |
| 7388 o.kind = "foo"; | 7388 o.kind = "foo"; |
| 7389 o.name = "foo"; | 7389 o.name = "foo"; |
| 7390 o.siteContacts = buildUnnamed3457(); | 7390 o.siteContacts = buildUnnamed3549(); |
| 7391 o.siteSettings = buildSiteSettings(); | 7391 o.siteSettings = buildSiteSettings(); |
| 7392 o.subaccountId = "foo"; | 7392 o.subaccountId = "foo"; |
| 7393 } | 7393 } |
| 7394 buildCounterSite--; | 7394 buildCounterSite--; |
| 7395 return o; | 7395 return o; |
| 7396 } | 7396 } |
| 7397 | 7397 |
| 7398 checkSite(api.Site o) { | 7398 checkSite(api.Site o) { |
| 7399 buildCounterSite++; | 7399 buildCounterSite++; |
| 7400 if (buildCounterSite < 3) { | 7400 if (buildCounterSite < 3) { |
| 7401 unittest.expect(o.accountId, unittest.equals('foo')); | 7401 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7402 unittest.expect(o.approved, unittest.isTrue); | 7402 unittest.expect(o.approved, unittest.isTrue); |
| 7403 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 7403 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 7404 checkDimensionValue(o.directorySiteIdDimensionValue); | 7404 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 7405 unittest.expect(o.id, unittest.equals('foo')); | 7405 unittest.expect(o.id, unittest.equals('foo')); |
| 7406 checkDimensionValue(o.idDimensionValue); | 7406 checkDimensionValue(o.idDimensionValue); |
| 7407 unittest.expect(o.keyName, unittest.equals('foo')); | 7407 unittest.expect(o.keyName, unittest.equals('foo')); |
| 7408 unittest.expect(o.kind, unittest.equals('foo')); | 7408 unittest.expect(o.kind, unittest.equals('foo')); |
| 7409 unittest.expect(o.name, unittest.equals('foo')); | 7409 unittest.expect(o.name, unittest.equals('foo')); |
| 7410 checkUnnamed3457(o.siteContacts); | 7410 checkUnnamed3549(o.siteContacts); |
| 7411 checkSiteSettings(o.siteSettings); | 7411 checkSiteSettings(o.siteSettings); |
| 7412 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7412 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7413 } | 7413 } |
| 7414 buildCounterSite--; | 7414 buildCounterSite--; |
| 7415 } | 7415 } |
| 7416 | 7416 |
| 7417 core.int buildCounterSiteContact = 0; | 7417 core.int buildCounterSiteContact = 0; |
| 7418 buildSiteContact() { | 7418 buildSiteContact() { |
| 7419 var o = new api.SiteContact(); | 7419 var o = new api.SiteContact(); |
| 7420 buildCounterSiteContact++; | 7420 buildCounterSiteContact++; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7471 checkCreativeSettings(o.creativeSettings); | 7471 checkCreativeSettings(o.creativeSettings); |
| 7472 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); | 7472 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); |
| 7473 unittest.expect(o.disableNewCookie, unittest.isTrue); | 7473 unittest.expect(o.disableNewCookie, unittest.isTrue); |
| 7474 checkLookbackConfiguration(o.lookbackConfiguration); | 7474 checkLookbackConfiguration(o.lookbackConfiguration); |
| 7475 checkTagSetting(o.tagSetting); | 7475 checkTagSetting(o.tagSetting); |
| 7476 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 7476 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 7477 } | 7477 } |
| 7478 buildCounterSiteSettings--; | 7478 buildCounterSiteSettings--; |
| 7479 } | 7479 } |
| 7480 | 7480 |
| 7481 buildUnnamed3458() { | 7481 buildUnnamed3550() { |
| 7482 var o = new core.List<api.Site>(); | 7482 var o = new core.List<api.Site>(); |
| 7483 o.add(buildSite()); | 7483 o.add(buildSite()); |
| 7484 o.add(buildSite()); | 7484 o.add(buildSite()); |
| 7485 return o; | 7485 return o; |
| 7486 } | 7486 } |
| 7487 | 7487 |
| 7488 checkUnnamed3458(core.List<api.Site> o) { | 7488 checkUnnamed3550(core.List<api.Site> o) { |
| 7489 unittest.expect(o, unittest.hasLength(2)); | 7489 unittest.expect(o, unittest.hasLength(2)); |
| 7490 checkSite(o[0]); | 7490 checkSite(o[0]); |
| 7491 checkSite(o[1]); | 7491 checkSite(o[1]); |
| 7492 } | 7492 } |
| 7493 | 7493 |
| 7494 core.int buildCounterSitesListResponse = 0; | 7494 core.int buildCounterSitesListResponse = 0; |
| 7495 buildSitesListResponse() { | 7495 buildSitesListResponse() { |
| 7496 var o = new api.SitesListResponse(); | 7496 var o = new api.SitesListResponse(); |
| 7497 buildCounterSitesListResponse++; | 7497 buildCounterSitesListResponse++; |
| 7498 if (buildCounterSitesListResponse < 3) { | 7498 if (buildCounterSitesListResponse < 3) { |
| 7499 o.kind = "foo"; | 7499 o.kind = "foo"; |
| 7500 o.nextPageToken = "foo"; | 7500 o.nextPageToken = "foo"; |
| 7501 o.sites = buildUnnamed3458(); | 7501 o.sites = buildUnnamed3550(); |
| 7502 } | 7502 } |
| 7503 buildCounterSitesListResponse--; | 7503 buildCounterSitesListResponse--; |
| 7504 return o; | 7504 return o; |
| 7505 } | 7505 } |
| 7506 | 7506 |
| 7507 checkSitesListResponse(api.SitesListResponse o) { | 7507 checkSitesListResponse(api.SitesListResponse o) { |
| 7508 buildCounterSitesListResponse++; | 7508 buildCounterSitesListResponse++; |
| 7509 if (buildCounterSitesListResponse < 3) { | 7509 if (buildCounterSitesListResponse < 3) { |
| 7510 unittest.expect(o.kind, unittest.equals('foo')); | 7510 unittest.expect(o.kind, unittest.equals('foo')); |
| 7511 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7511 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7512 checkUnnamed3458(o.sites); | 7512 checkUnnamed3550(o.sites); |
| 7513 } | 7513 } |
| 7514 buildCounterSitesListResponse--; | 7514 buildCounterSitesListResponse--; |
| 7515 } | 7515 } |
| 7516 | 7516 |
| 7517 core.int buildCounterSize = 0; | 7517 core.int buildCounterSize = 0; |
| 7518 buildSize() { | 7518 buildSize() { |
| 7519 var o = new api.Size(); | 7519 var o = new api.Size(); |
| 7520 buildCounterSize++; | 7520 buildCounterSize++; |
| 7521 if (buildCounterSize < 3) { | 7521 if (buildCounterSize < 3) { |
| 7522 o.height = 42; | 7522 o.height = 42; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 7534 if (buildCounterSize < 3) { | 7534 if (buildCounterSize < 3) { |
| 7535 unittest.expect(o.height, unittest.equals(42)); | 7535 unittest.expect(o.height, unittest.equals(42)); |
| 7536 unittest.expect(o.iab, unittest.isTrue); | 7536 unittest.expect(o.iab, unittest.isTrue); |
| 7537 unittest.expect(o.id, unittest.equals('foo')); | 7537 unittest.expect(o.id, unittest.equals('foo')); |
| 7538 unittest.expect(o.kind, unittest.equals('foo')); | 7538 unittest.expect(o.kind, unittest.equals('foo')); |
| 7539 unittest.expect(o.width, unittest.equals(42)); | 7539 unittest.expect(o.width, unittest.equals(42)); |
| 7540 } | 7540 } |
| 7541 buildCounterSize--; | 7541 buildCounterSize--; |
| 7542 } | 7542 } |
| 7543 | 7543 |
| 7544 buildUnnamed3459() { | 7544 buildUnnamed3551() { |
| 7545 var o = new core.List<api.Size>(); | 7545 var o = new core.List<api.Size>(); |
| 7546 o.add(buildSize()); | 7546 o.add(buildSize()); |
| 7547 o.add(buildSize()); | 7547 o.add(buildSize()); |
| 7548 return o; | 7548 return o; |
| 7549 } | 7549 } |
| 7550 | 7550 |
| 7551 checkUnnamed3459(core.List<api.Size> o) { | 7551 checkUnnamed3551(core.List<api.Size> o) { |
| 7552 unittest.expect(o, unittest.hasLength(2)); | 7552 unittest.expect(o, unittest.hasLength(2)); |
| 7553 checkSize(o[0]); | 7553 checkSize(o[0]); |
| 7554 checkSize(o[1]); | 7554 checkSize(o[1]); |
| 7555 } | 7555 } |
| 7556 | 7556 |
| 7557 core.int buildCounterSizesListResponse = 0; | 7557 core.int buildCounterSizesListResponse = 0; |
| 7558 buildSizesListResponse() { | 7558 buildSizesListResponse() { |
| 7559 var o = new api.SizesListResponse(); | 7559 var o = new api.SizesListResponse(); |
| 7560 buildCounterSizesListResponse++; | 7560 buildCounterSizesListResponse++; |
| 7561 if (buildCounterSizesListResponse < 3) { | 7561 if (buildCounterSizesListResponse < 3) { |
| 7562 o.kind = "foo"; | 7562 o.kind = "foo"; |
| 7563 o.sizes = buildUnnamed3459(); | 7563 o.sizes = buildUnnamed3551(); |
| 7564 } | 7564 } |
| 7565 buildCounterSizesListResponse--; | 7565 buildCounterSizesListResponse--; |
| 7566 return o; | 7566 return o; |
| 7567 } | 7567 } |
| 7568 | 7568 |
| 7569 checkSizesListResponse(api.SizesListResponse o) { | 7569 checkSizesListResponse(api.SizesListResponse o) { |
| 7570 buildCounterSizesListResponse++; | 7570 buildCounterSizesListResponse++; |
| 7571 if (buildCounterSizesListResponse < 3) { | 7571 if (buildCounterSizesListResponse < 3) { |
| 7572 unittest.expect(o.kind, unittest.equals('foo')); | 7572 unittest.expect(o.kind, unittest.equals('foo')); |
| 7573 checkUnnamed3459(o.sizes); | 7573 checkUnnamed3551(o.sizes); |
| 7574 } | 7574 } |
| 7575 buildCounterSizesListResponse--; | 7575 buildCounterSizesListResponse--; |
| 7576 } | 7576 } |
| 7577 | 7577 |
| 7578 core.int buildCounterSortedDimension = 0; | 7578 core.int buildCounterSortedDimension = 0; |
| 7579 buildSortedDimension() { | 7579 buildSortedDimension() { |
| 7580 var o = new api.SortedDimension(); | 7580 var o = new api.SortedDimension(); |
| 7581 buildCounterSortedDimension++; | 7581 buildCounterSortedDimension++; |
| 7582 if (buildCounterSortedDimension < 3) { | 7582 if (buildCounterSortedDimension < 3) { |
| 7583 o.kind = "foo"; | 7583 o.kind = "foo"; |
| 7584 o.name = "foo"; | 7584 o.name = "foo"; |
| 7585 o.sortOrder = "foo"; | 7585 o.sortOrder = "foo"; |
| 7586 } | 7586 } |
| 7587 buildCounterSortedDimension--; | 7587 buildCounterSortedDimension--; |
| 7588 return o; | 7588 return o; |
| 7589 } | 7589 } |
| 7590 | 7590 |
| 7591 checkSortedDimension(api.SortedDimension o) { | 7591 checkSortedDimension(api.SortedDimension o) { |
| 7592 buildCounterSortedDimension++; | 7592 buildCounterSortedDimension++; |
| 7593 if (buildCounterSortedDimension < 3) { | 7593 if (buildCounterSortedDimension < 3) { |
| 7594 unittest.expect(o.kind, unittest.equals('foo')); | 7594 unittest.expect(o.kind, unittest.equals('foo')); |
| 7595 unittest.expect(o.name, unittest.equals('foo')); | 7595 unittest.expect(o.name, unittest.equals('foo')); |
| 7596 unittest.expect(o.sortOrder, unittest.equals('foo')); | 7596 unittest.expect(o.sortOrder, unittest.equals('foo')); |
| 7597 } | 7597 } |
| 7598 buildCounterSortedDimension--; | 7598 buildCounterSortedDimension--; |
| 7599 } | 7599 } |
| 7600 | 7600 |
| 7601 buildUnnamed3460() { | 7601 buildUnnamed3552() { |
| 7602 var o = new core.List<core.String>(); | 7602 var o = new core.List<core.String>(); |
| 7603 o.add("foo"); | 7603 o.add("foo"); |
| 7604 o.add("foo"); | 7604 o.add("foo"); |
| 7605 return o; | 7605 return o; |
| 7606 } | 7606 } |
| 7607 | 7607 |
| 7608 checkUnnamed3460(core.List<core.String> o) { | 7608 checkUnnamed3552(core.List<core.String> o) { |
| 7609 unittest.expect(o, unittest.hasLength(2)); | 7609 unittest.expect(o, unittest.hasLength(2)); |
| 7610 unittest.expect(o[0], unittest.equals('foo')); | 7610 unittest.expect(o[0], unittest.equals('foo')); |
| 7611 unittest.expect(o[1], unittest.equals('foo')); | 7611 unittest.expect(o[1], unittest.equals('foo')); |
| 7612 } | 7612 } |
| 7613 | 7613 |
| 7614 core.int buildCounterSubaccount = 0; | 7614 core.int buildCounterSubaccount = 0; |
| 7615 buildSubaccount() { | 7615 buildSubaccount() { |
| 7616 var o = new api.Subaccount(); | 7616 var o = new api.Subaccount(); |
| 7617 buildCounterSubaccount++; | 7617 buildCounterSubaccount++; |
| 7618 if (buildCounterSubaccount < 3) { | 7618 if (buildCounterSubaccount < 3) { |
| 7619 o.accountId = "foo"; | 7619 o.accountId = "foo"; |
| 7620 o.availablePermissionIds = buildUnnamed3460(); | 7620 o.availablePermissionIds = buildUnnamed3552(); |
| 7621 o.id = "foo"; | 7621 o.id = "foo"; |
| 7622 o.kind = "foo"; | 7622 o.kind = "foo"; |
| 7623 o.name = "foo"; | 7623 o.name = "foo"; |
| 7624 } | 7624 } |
| 7625 buildCounterSubaccount--; | 7625 buildCounterSubaccount--; |
| 7626 return o; | 7626 return o; |
| 7627 } | 7627 } |
| 7628 | 7628 |
| 7629 checkSubaccount(api.Subaccount o) { | 7629 checkSubaccount(api.Subaccount o) { |
| 7630 buildCounterSubaccount++; | 7630 buildCounterSubaccount++; |
| 7631 if (buildCounterSubaccount < 3) { | 7631 if (buildCounterSubaccount < 3) { |
| 7632 unittest.expect(o.accountId, unittest.equals('foo')); | 7632 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7633 checkUnnamed3460(o.availablePermissionIds); | 7633 checkUnnamed3552(o.availablePermissionIds); |
| 7634 unittest.expect(o.id, unittest.equals('foo')); | 7634 unittest.expect(o.id, unittest.equals('foo')); |
| 7635 unittest.expect(o.kind, unittest.equals('foo')); | 7635 unittest.expect(o.kind, unittest.equals('foo')); |
| 7636 unittest.expect(o.name, unittest.equals('foo')); | 7636 unittest.expect(o.name, unittest.equals('foo')); |
| 7637 } | 7637 } |
| 7638 buildCounterSubaccount--; | 7638 buildCounterSubaccount--; |
| 7639 } | 7639 } |
| 7640 | 7640 |
| 7641 buildUnnamed3461() { | 7641 buildUnnamed3553() { |
| 7642 var o = new core.List<api.Subaccount>(); | 7642 var o = new core.List<api.Subaccount>(); |
| 7643 o.add(buildSubaccount()); | 7643 o.add(buildSubaccount()); |
| 7644 o.add(buildSubaccount()); | 7644 o.add(buildSubaccount()); |
| 7645 return o; | 7645 return o; |
| 7646 } | 7646 } |
| 7647 | 7647 |
| 7648 checkUnnamed3461(core.List<api.Subaccount> o) { | 7648 checkUnnamed3553(core.List<api.Subaccount> o) { |
| 7649 unittest.expect(o, unittest.hasLength(2)); | 7649 unittest.expect(o, unittest.hasLength(2)); |
| 7650 checkSubaccount(o[0]); | 7650 checkSubaccount(o[0]); |
| 7651 checkSubaccount(o[1]); | 7651 checkSubaccount(o[1]); |
| 7652 } | 7652 } |
| 7653 | 7653 |
| 7654 core.int buildCounterSubaccountsListResponse = 0; | 7654 core.int buildCounterSubaccountsListResponse = 0; |
| 7655 buildSubaccountsListResponse() { | 7655 buildSubaccountsListResponse() { |
| 7656 var o = new api.SubaccountsListResponse(); | 7656 var o = new api.SubaccountsListResponse(); |
| 7657 buildCounterSubaccountsListResponse++; | 7657 buildCounterSubaccountsListResponse++; |
| 7658 if (buildCounterSubaccountsListResponse < 3) { | 7658 if (buildCounterSubaccountsListResponse < 3) { |
| 7659 o.kind = "foo"; | 7659 o.kind = "foo"; |
| 7660 o.nextPageToken = "foo"; | 7660 o.nextPageToken = "foo"; |
| 7661 o.subaccounts = buildUnnamed3461(); | 7661 o.subaccounts = buildUnnamed3553(); |
| 7662 } | 7662 } |
| 7663 buildCounterSubaccountsListResponse--; | 7663 buildCounterSubaccountsListResponse--; |
| 7664 return o; | 7664 return o; |
| 7665 } | 7665 } |
| 7666 | 7666 |
| 7667 checkSubaccountsListResponse(api.SubaccountsListResponse o) { | 7667 checkSubaccountsListResponse(api.SubaccountsListResponse o) { |
| 7668 buildCounterSubaccountsListResponse++; | 7668 buildCounterSubaccountsListResponse++; |
| 7669 if (buildCounterSubaccountsListResponse < 3) { | 7669 if (buildCounterSubaccountsListResponse < 3) { |
| 7670 unittest.expect(o.kind, unittest.equals('foo')); | 7670 unittest.expect(o.kind, unittest.equals('foo')); |
| 7671 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7671 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7672 checkUnnamed3461(o.subaccounts); | 7672 checkUnnamed3553(o.subaccounts); |
| 7673 } | 7673 } |
| 7674 buildCounterSubaccountsListResponse--; | 7674 buildCounterSubaccountsListResponse--; |
| 7675 } | 7675 } |
| 7676 | 7676 |
| 7677 core.int buildCounterTagData = 0; | 7677 core.int buildCounterTagData = 0; |
| 7678 buildTagData() { | 7678 buildTagData() { |
| 7679 var o = new api.TagData(); | 7679 var o = new api.TagData(); |
| 7680 buildCounterTagData++; | 7680 buildCounterTagData++; |
| 7681 if (buildCounterTagData < 3) { | 7681 if (buildCounterTagData < 3) { |
| 7682 o.adId = "foo"; | 7682 o.adId = "foo"; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7802 unittest.expect(o.kind, unittest.equals('foo')); | 7802 unittest.expect(o.kind, unittest.equals('foo')); |
| 7803 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 7803 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 7804 unittest.expect(o.listSize, unittest.equals('foo')); | 7804 unittest.expect(o.listSize, unittest.equals('foo')); |
| 7805 unittest.expect(o.listSource, unittest.equals('foo')); | 7805 unittest.expect(o.listSource, unittest.equals('foo')); |
| 7806 unittest.expect(o.name, unittest.equals('foo')); | 7806 unittest.expect(o.name, unittest.equals('foo')); |
| 7807 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7807 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7808 } | 7808 } |
| 7809 buildCounterTargetableRemarketingList--; | 7809 buildCounterTargetableRemarketingList--; |
| 7810 } | 7810 } |
| 7811 | 7811 |
| 7812 buildUnnamed3462() { | 7812 buildUnnamed3554() { |
| 7813 var o = new core.List<api.TargetableRemarketingList>(); | 7813 var o = new core.List<api.TargetableRemarketingList>(); |
| 7814 o.add(buildTargetableRemarketingList()); | 7814 o.add(buildTargetableRemarketingList()); |
| 7815 o.add(buildTargetableRemarketingList()); | 7815 o.add(buildTargetableRemarketingList()); |
| 7816 return o; | 7816 return o; |
| 7817 } | 7817 } |
| 7818 | 7818 |
| 7819 checkUnnamed3462(core.List<api.TargetableRemarketingList> o) { | 7819 checkUnnamed3554(core.List<api.TargetableRemarketingList> o) { |
| 7820 unittest.expect(o, unittest.hasLength(2)); | 7820 unittest.expect(o, unittest.hasLength(2)); |
| 7821 checkTargetableRemarketingList(o[0]); | 7821 checkTargetableRemarketingList(o[0]); |
| 7822 checkTargetableRemarketingList(o[1]); | 7822 checkTargetableRemarketingList(o[1]); |
| 7823 } | 7823 } |
| 7824 | 7824 |
| 7825 core.int buildCounterTargetableRemarketingListsListResponse = 0; | 7825 core.int buildCounterTargetableRemarketingListsListResponse = 0; |
| 7826 buildTargetableRemarketingListsListResponse() { | 7826 buildTargetableRemarketingListsListResponse() { |
| 7827 var o = new api.TargetableRemarketingListsListResponse(); | 7827 var o = new api.TargetableRemarketingListsListResponse(); |
| 7828 buildCounterTargetableRemarketingListsListResponse++; | 7828 buildCounterTargetableRemarketingListsListResponse++; |
| 7829 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7829 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7830 o.kind = "foo"; | 7830 o.kind = "foo"; |
| 7831 o.nextPageToken = "foo"; | 7831 o.nextPageToken = "foo"; |
| 7832 o.targetableRemarketingLists = buildUnnamed3462(); | 7832 o.targetableRemarketingLists = buildUnnamed3554(); |
| 7833 } | 7833 } |
| 7834 buildCounterTargetableRemarketingListsListResponse--; | 7834 buildCounterTargetableRemarketingListsListResponse--; |
| 7835 return o; | 7835 return o; |
| 7836 } | 7836 } |
| 7837 | 7837 |
| 7838 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { | 7838 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { |
| 7839 buildCounterTargetableRemarketingListsListResponse++; | 7839 buildCounterTargetableRemarketingListsListResponse++; |
| 7840 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7840 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7841 unittest.expect(o.kind, unittest.equals('foo')); | 7841 unittest.expect(o.kind, unittest.equals('foo')); |
| 7842 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7842 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7843 checkUnnamed3462(o.targetableRemarketingLists); | 7843 checkUnnamed3554(o.targetableRemarketingLists); |
| 7844 } | 7844 } |
| 7845 buildCounterTargetableRemarketingListsListResponse--; | 7845 buildCounterTargetableRemarketingListsListResponse--; |
| 7846 } | 7846 } |
| 7847 | 7847 |
| 7848 buildUnnamed3463() { | 7848 buildUnnamed3555() { |
| 7849 var o = new core.List<api.Browser>(); | 7849 var o = new core.List<api.Browser>(); |
| 7850 o.add(buildBrowser()); | 7850 o.add(buildBrowser()); |
| 7851 o.add(buildBrowser()); | 7851 o.add(buildBrowser()); |
| 7852 return o; | 7852 return o; |
| 7853 } | 7853 } |
| 7854 | 7854 |
| 7855 checkUnnamed3463(core.List<api.Browser> o) { | 7855 checkUnnamed3555(core.List<api.Browser> o) { |
| 7856 unittest.expect(o, unittest.hasLength(2)); | 7856 unittest.expect(o, unittest.hasLength(2)); |
| 7857 checkBrowser(o[0]); | 7857 checkBrowser(o[0]); |
| 7858 checkBrowser(o[1]); | 7858 checkBrowser(o[1]); |
| 7859 } | 7859 } |
| 7860 | 7860 |
| 7861 buildUnnamed3464() { | 7861 buildUnnamed3556() { |
| 7862 var o = new core.List<api.ConnectionType>(); | 7862 var o = new core.List<api.ConnectionType>(); |
| 7863 o.add(buildConnectionType()); | 7863 o.add(buildConnectionType()); |
| 7864 o.add(buildConnectionType()); | 7864 o.add(buildConnectionType()); |
| 7865 return o; | 7865 return o; |
| 7866 } | 7866 } |
| 7867 | 7867 |
| 7868 checkUnnamed3464(core.List<api.ConnectionType> o) { | 7868 checkUnnamed3556(core.List<api.ConnectionType> o) { |
| 7869 unittest.expect(o, unittest.hasLength(2)); | 7869 unittest.expect(o, unittest.hasLength(2)); |
| 7870 checkConnectionType(o[0]); | 7870 checkConnectionType(o[0]); |
| 7871 checkConnectionType(o[1]); | 7871 checkConnectionType(o[1]); |
| 7872 } | 7872 } |
| 7873 | 7873 |
| 7874 buildUnnamed3465() { | 7874 buildUnnamed3557() { |
| 7875 var o = new core.List<api.MobileCarrier>(); | 7875 var o = new core.List<api.MobileCarrier>(); |
| 7876 o.add(buildMobileCarrier()); | 7876 o.add(buildMobileCarrier()); |
| 7877 o.add(buildMobileCarrier()); | 7877 o.add(buildMobileCarrier()); |
| 7878 return o; | 7878 return o; |
| 7879 } | 7879 } |
| 7880 | 7880 |
| 7881 checkUnnamed3465(core.List<api.MobileCarrier> o) { | 7881 checkUnnamed3557(core.List<api.MobileCarrier> o) { |
| 7882 unittest.expect(o, unittest.hasLength(2)); | 7882 unittest.expect(o, unittest.hasLength(2)); |
| 7883 checkMobileCarrier(o[0]); | 7883 checkMobileCarrier(o[0]); |
| 7884 checkMobileCarrier(o[1]); | 7884 checkMobileCarrier(o[1]); |
| 7885 } | 7885 } |
| 7886 | 7886 |
| 7887 buildUnnamed3466() { | 7887 buildUnnamed3558() { |
| 7888 var o = new core.List<api.OperatingSystemVersion>(); | 7888 var o = new core.List<api.OperatingSystemVersion>(); |
| 7889 o.add(buildOperatingSystemVersion()); | 7889 o.add(buildOperatingSystemVersion()); |
| 7890 o.add(buildOperatingSystemVersion()); | 7890 o.add(buildOperatingSystemVersion()); |
| 7891 return o; | 7891 return o; |
| 7892 } | 7892 } |
| 7893 | 7893 |
| 7894 checkUnnamed3466(core.List<api.OperatingSystemVersion> o) { | 7894 checkUnnamed3558(core.List<api.OperatingSystemVersion> o) { |
| 7895 unittest.expect(o, unittest.hasLength(2)); | 7895 unittest.expect(o, unittest.hasLength(2)); |
| 7896 checkOperatingSystemVersion(o[0]); | 7896 checkOperatingSystemVersion(o[0]); |
| 7897 checkOperatingSystemVersion(o[1]); | 7897 checkOperatingSystemVersion(o[1]); |
| 7898 } | 7898 } |
| 7899 | 7899 |
| 7900 buildUnnamed3467() { | 7900 buildUnnamed3559() { |
| 7901 var o = new core.List<api.OperatingSystem>(); | 7901 var o = new core.List<api.OperatingSystem>(); |
| 7902 o.add(buildOperatingSystem()); | 7902 o.add(buildOperatingSystem()); |
| 7903 o.add(buildOperatingSystem()); | 7903 o.add(buildOperatingSystem()); |
| 7904 return o; | 7904 return o; |
| 7905 } | 7905 } |
| 7906 | 7906 |
| 7907 checkUnnamed3467(core.List<api.OperatingSystem> o) { | 7907 checkUnnamed3559(core.List<api.OperatingSystem> o) { |
| 7908 unittest.expect(o, unittest.hasLength(2)); | 7908 unittest.expect(o, unittest.hasLength(2)); |
| 7909 checkOperatingSystem(o[0]); | 7909 checkOperatingSystem(o[0]); |
| 7910 checkOperatingSystem(o[1]); | 7910 checkOperatingSystem(o[1]); |
| 7911 } | 7911 } |
| 7912 | 7912 |
| 7913 buildUnnamed3468() { | 7913 buildUnnamed3560() { |
| 7914 var o = new core.List<api.PlatformType>(); | 7914 var o = new core.List<api.PlatformType>(); |
| 7915 o.add(buildPlatformType()); | 7915 o.add(buildPlatformType()); |
| 7916 o.add(buildPlatformType()); | 7916 o.add(buildPlatformType()); |
| 7917 return o; | 7917 return o; |
| 7918 } | 7918 } |
| 7919 | 7919 |
| 7920 checkUnnamed3468(core.List<api.PlatformType> o) { | 7920 checkUnnamed3560(core.List<api.PlatformType> o) { |
| 7921 unittest.expect(o, unittest.hasLength(2)); | 7921 unittest.expect(o, unittest.hasLength(2)); |
| 7922 checkPlatformType(o[0]); | 7922 checkPlatformType(o[0]); |
| 7923 checkPlatformType(o[1]); | 7923 checkPlatformType(o[1]); |
| 7924 } | 7924 } |
| 7925 | 7925 |
| 7926 core.int buildCounterTechnologyTargeting = 0; | 7926 core.int buildCounterTechnologyTargeting = 0; |
| 7927 buildTechnologyTargeting() { | 7927 buildTechnologyTargeting() { |
| 7928 var o = new api.TechnologyTargeting(); | 7928 var o = new api.TechnologyTargeting(); |
| 7929 buildCounterTechnologyTargeting++; | 7929 buildCounterTechnologyTargeting++; |
| 7930 if (buildCounterTechnologyTargeting < 3) { | 7930 if (buildCounterTechnologyTargeting < 3) { |
| 7931 o.browsers = buildUnnamed3463(); | 7931 o.browsers = buildUnnamed3555(); |
| 7932 o.connectionTypes = buildUnnamed3464(); | 7932 o.connectionTypes = buildUnnamed3556(); |
| 7933 o.mobileCarriers = buildUnnamed3465(); | 7933 o.mobileCarriers = buildUnnamed3557(); |
| 7934 o.operatingSystemVersions = buildUnnamed3466(); | 7934 o.operatingSystemVersions = buildUnnamed3558(); |
| 7935 o.operatingSystems = buildUnnamed3467(); | 7935 o.operatingSystems = buildUnnamed3559(); |
| 7936 o.platformTypes = buildUnnamed3468(); | 7936 o.platformTypes = buildUnnamed3560(); |
| 7937 } | 7937 } |
| 7938 buildCounterTechnologyTargeting--; | 7938 buildCounterTechnologyTargeting--; |
| 7939 return o; | 7939 return o; |
| 7940 } | 7940 } |
| 7941 | 7941 |
| 7942 checkTechnologyTargeting(api.TechnologyTargeting o) { | 7942 checkTechnologyTargeting(api.TechnologyTargeting o) { |
| 7943 buildCounterTechnologyTargeting++; | 7943 buildCounterTechnologyTargeting++; |
| 7944 if (buildCounterTechnologyTargeting < 3) { | 7944 if (buildCounterTechnologyTargeting < 3) { |
| 7945 checkUnnamed3463(o.browsers); | 7945 checkUnnamed3555(o.browsers); |
| 7946 checkUnnamed3464(o.connectionTypes); | 7946 checkUnnamed3556(o.connectionTypes); |
| 7947 checkUnnamed3465(o.mobileCarriers); | 7947 checkUnnamed3557(o.mobileCarriers); |
| 7948 checkUnnamed3466(o.operatingSystemVersions); | 7948 checkUnnamed3558(o.operatingSystemVersions); |
| 7949 checkUnnamed3467(o.operatingSystems); | 7949 checkUnnamed3559(o.operatingSystems); |
| 7950 checkUnnamed3468(o.platformTypes); | 7950 checkUnnamed3560(o.platformTypes); |
| 7951 } | 7951 } |
| 7952 buildCounterTechnologyTargeting--; | 7952 buildCounterTechnologyTargeting--; |
| 7953 } | 7953 } |
| 7954 | 7954 |
| 7955 core.int buildCounterThirdPartyAuthenticationToken = 0; | 7955 core.int buildCounterThirdPartyAuthenticationToken = 0; |
| 7956 buildThirdPartyAuthenticationToken() { | 7956 buildThirdPartyAuthenticationToken() { |
| 7957 var o = new api.ThirdPartyAuthenticationToken(); | 7957 var o = new api.ThirdPartyAuthenticationToken(); |
| 7958 buildCounterThirdPartyAuthenticationToken++; | 7958 buildCounterThirdPartyAuthenticationToken++; |
| 7959 if (buildCounterThirdPartyAuthenticationToken < 3) { | 7959 if (buildCounterThirdPartyAuthenticationToken < 3) { |
| 7960 o.name = "foo"; | 7960 o.name = "foo"; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8043 unittest.expect(o.etag, unittest.equals('foo')); | 8043 unittest.expect(o.etag, unittest.equals('foo')); |
| 8044 unittest.expect(o.kind, unittest.equals('foo')); | 8044 unittest.expect(o.kind, unittest.equals('foo')); |
| 8045 unittest.expect(o.profileId, unittest.equals('foo')); | 8045 unittest.expect(o.profileId, unittest.equals('foo')); |
| 8046 unittest.expect(o.subAccountId, unittest.equals('foo')); | 8046 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 8047 unittest.expect(o.subAccountName, unittest.equals('foo')); | 8047 unittest.expect(o.subAccountName, unittest.equals('foo')); |
| 8048 unittest.expect(o.userName, unittest.equals('foo')); | 8048 unittest.expect(o.userName, unittest.equals('foo')); |
| 8049 } | 8049 } |
| 8050 buildCounterUserProfile--; | 8050 buildCounterUserProfile--; |
| 8051 } | 8051 } |
| 8052 | 8052 |
| 8053 buildUnnamed3469() { | 8053 buildUnnamed3561() { |
| 8054 var o = new core.List<api.UserProfile>(); | 8054 var o = new core.List<api.UserProfile>(); |
| 8055 o.add(buildUserProfile()); | 8055 o.add(buildUserProfile()); |
| 8056 o.add(buildUserProfile()); | 8056 o.add(buildUserProfile()); |
| 8057 return o; | 8057 return o; |
| 8058 } | 8058 } |
| 8059 | 8059 |
| 8060 checkUnnamed3469(core.List<api.UserProfile> o) { | 8060 checkUnnamed3561(core.List<api.UserProfile> o) { |
| 8061 unittest.expect(o, unittest.hasLength(2)); | 8061 unittest.expect(o, unittest.hasLength(2)); |
| 8062 checkUserProfile(o[0]); | 8062 checkUserProfile(o[0]); |
| 8063 checkUserProfile(o[1]); | 8063 checkUserProfile(o[1]); |
| 8064 } | 8064 } |
| 8065 | 8065 |
| 8066 core.int buildCounterUserProfileList = 0; | 8066 core.int buildCounterUserProfileList = 0; |
| 8067 buildUserProfileList() { | 8067 buildUserProfileList() { |
| 8068 var o = new api.UserProfileList(); | 8068 var o = new api.UserProfileList(); |
| 8069 buildCounterUserProfileList++; | 8069 buildCounterUserProfileList++; |
| 8070 if (buildCounterUserProfileList < 3) { | 8070 if (buildCounterUserProfileList < 3) { |
| 8071 o.etag = "foo"; | 8071 o.etag = "foo"; |
| 8072 o.items = buildUnnamed3469(); | 8072 o.items = buildUnnamed3561(); |
| 8073 o.kind = "foo"; | 8073 o.kind = "foo"; |
| 8074 } | 8074 } |
| 8075 buildCounterUserProfileList--; | 8075 buildCounterUserProfileList--; |
| 8076 return o; | 8076 return o; |
| 8077 } | 8077 } |
| 8078 | 8078 |
| 8079 checkUserProfileList(api.UserProfileList o) { | 8079 checkUserProfileList(api.UserProfileList o) { |
| 8080 buildCounterUserProfileList++; | 8080 buildCounterUserProfileList++; |
| 8081 if (buildCounterUserProfileList < 3) { | 8081 if (buildCounterUserProfileList < 3) { |
| 8082 unittest.expect(o.etag, unittest.equals('foo')); | 8082 unittest.expect(o.etag, unittest.equals('foo')); |
| 8083 checkUnnamed3469(o.items); | 8083 checkUnnamed3561(o.items); |
| 8084 unittest.expect(o.kind, unittest.equals('foo')); | 8084 unittest.expect(o.kind, unittest.equals('foo')); |
| 8085 } | 8085 } |
| 8086 buildCounterUserProfileList--; | 8086 buildCounterUserProfileList--; |
| 8087 } | 8087 } |
| 8088 | 8088 |
| 8089 buildUnnamed3470() { | 8089 buildUnnamed3562() { |
| 8090 var o = new core.List<api.UserRolePermission>(); | 8090 var o = new core.List<api.UserRolePermission>(); |
| 8091 o.add(buildUserRolePermission()); | 8091 o.add(buildUserRolePermission()); |
| 8092 o.add(buildUserRolePermission()); | 8092 o.add(buildUserRolePermission()); |
| 8093 return o; | 8093 return o; |
| 8094 } | 8094 } |
| 8095 | 8095 |
| 8096 checkUnnamed3470(core.List<api.UserRolePermission> o) { | 8096 checkUnnamed3562(core.List<api.UserRolePermission> o) { |
| 8097 unittest.expect(o, unittest.hasLength(2)); | 8097 unittest.expect(o, unittest.hasLength(2)); |
| 8098 checkUserRolePermission(o[0]); | 8098 checkUserRolePermission(o[0]); |
| 8099 checkUserRolePermission(o[1]); | 8099 checkUserRolePermission(o[1]); |
| 8100 } | 8100 } |
| 8101 | 8101 |
| 8102 core.int buildCounterUserRole = 0; | 8102 core.int buildCounterUserRole = 0; |
| 8103 buildUserRole() { | 8103 buildUserRole() { |
| 8104 var o = new api.UserRole(); | 8104 var o = new api.UserRole(); |
| 8105 buildCounterUserRole++; | 8105 buildCounterUserRole++; |
| 8106 if (buildCounterUserRole < 3) { | 8106 if (buildCounterUserRole < 3) { |
| 8107 o.accountId = "foo"; | 8107 o.accountId = "foo"; |
| 8108 o.defaultUserRole = true; | 8108 o.defaultUserRole = true; |
| 8109 o.id = "foo"; | 8109 o.id = "foo"; |
| 8110 o.kind = "foo"; | 8110 o.kind = "foo"; |
| 8111 o.name = "foo"; | 8111 o.name = "foo"; |
| 8112 o.parentUserRoleId = "foo"; | 8112 o.parentUserRoleId = "foo"; |
| 8113 o.permissions = buildUnnamed3470(); | 8113 o.permissions = buildUnnamed3562(); |
| 8114 o.subaccountId = "foo"; | 8114 o.subaccountId = "foo"; |
| 8115 } | 8115 } |
| 8116 buildCounterUserRole--; | 8116 buildCounterUserRole--; |
| 8117 return o; | 8117 return o; |
| 8118 } | 8118 } |
| 8119 | 8119 |
| 8120 checkUserRole(api.UserRole o) { | 8120 checkUserRole(api.UserRole o) { |
| 8121 buildCounterUserRole++; | 8121 buildCounterUserRole++; |
| 8122 if (buildCounterUserRole < 3) { | 8122 if (buildCounterUserRole < 3) { |
| 8123 unittest.expect(o.accountId, unittest.equals('foo')); | 8123 unittest.expect(o.accountId, unittest.equals('foo')); |
| 8124 unittest.expect(o.defaultUserRole, unittest.isTrue); | 8124 unittest.expect(o.defaultUserRole, unittest.isTrue); |
| 8125 unittest.expect(o.id, unittest.equals('foo')); | 8125 unittest.expect(o.id, unittest.equals('foo')); |
| 8126 unittest.expect(o.kind, unittest.equals('foo')); | 8126 unittest.expect(o.kind, unittest.equals('foo')); |
| 8127 unittest.expect(o.name, unittest.equals('foo')); | 8127 unittest.expect(o.name, unittest.equals('foo')); |
| 8128 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); | 8128 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); |
| 8129 checkUnnamed3470(o.permissions); | 8129 checkUnnamed3562(o.permissions); |
| 8130 unittest.expect(o.subaccountId, unittest.equals('foo')); | 8130 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 8131 } | 8131 } |
| 8132 buildCounterUserRole--; | 8132 buildCounterUserRole--; |
| 8133 } | 8133 } |
| 8134 | 8134 |
| 8135 core.int buildCounterUserRolePermission = 0; | 8135 core.int buildCounterUserRolePermission = 0; |
| 8136 buildUserRolePermission() { | 8136 buildUserRolePermission() { |
| 8137 var o = new api.UserRolePermission(); | 8137 var o = new api.UserRolePermission(); |
| 8138 buildCounterUserRolePermission++; | 8138 buildCounterUserRolePermission++; |
| 8139 if (buildCounterUserRolePermission < 3) { | 8139 if (buildCounterUserRolePermission < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8175 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { | 8175 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { |
| 8176 buildCounterUserRolePermissionGroup++; | 8176 buildCounterUserRolePermissionGroup++; |
| 8177 if (buildCounterUserRolePermissionGroup < 3) { | 8177 if (buildCounterUserRolePermissionGroup < 3) { |
| 8178 unittest.expect(o.id, unittest.equals('foo')); | 8178 unittest.expect(o.id, unittest.equals('foo')); |
| 8179 unittest.expect(o.kind, unittest.equals('foo')); | 8179 unittest.expect(o.kind, unittest.equals('foo')); |
| 8180 unittest.expect(o.name, unittest.equals('foo')); | 8180 unittest.expect(o.name, unittest.equals('foo')); |
| 8181 } | 8181 } |
| 8182 buildCounterUserRolePermissionGroup--; | 8182 buildCounterUserRolePermissionGroup--; |
| 8183 } | 8183 } |
| 8184 | 8184 |
| 8185 buildUnnamed3471() { | 8185 buildUnnamed3563() { |
| 8186 var o = new core.List<api.UserRolePermissionGroup>(); | 8186 var o = new core.List<api.UserRolePermissionGroup>(); |
| 8187 o.add(buildUserRolePermissionGroup()); | 8187 o.add(buildUserRolePermissionGroup()); |
| 8188 o.add(buildUserRolePermissionGroup()); | 8188 o.add(buildUserRolePermissionGroup()); |
| 8189 return o; | 8189 return o; |
| 8190 } | 8190 } |
| 8191 | 8191 |
| 8192 checkUnnamed3471(core.List<api.UserRolePermissionGroup> o) { | 8192 checkUnnamed3563(core.List<api.UserRolePermissionGroup> o) { |
| 8193 unittest.expect(o, unittest.hasLength(2)); | 8193 unittest.expect(o, unittest.hasLength(2)); |
| 8194 checkUserRolePermissionGroup(o[0]); | 8194 checkUserRolePermissionGroup(o[0]); |
| 8195 checkUserRolePermissionGroup(o[1]); | 8195 checkUserRolePermissionGroup(o[1]); |
| 8196 } | 8196 } |
| 8197 | 8197 |
| 8198 core.int buildCounterUserRolePermissionGroupsListResponse = 0; | 8198 core.int buildCounterUserRolePermissionGroupsListResponse = 0; |
| 8199 buildUserRolePermissionGroupsListResponse() { | 8199 buildUserRolePermissionGroupsListResponse() { |
| 8200 var o = new api.UserRolePermissionGroupsListResponse(); | 8200 var o = new api.UserRolePermissionGroupsListResponse(); |
| 8201 buildCounterUserRolePermissionGroupsListResponse++; | 8201 buildCounterUserRolePermissionGroupsListResponse++; |
| 8202 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 8202 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 8203 o.kind = "foo"; | 8203 o.kind = "foo"; |
| 8204 o.userRolePermissionGroups = buildUnnamed3471(); | 8204 o.userRolePermissionGroups = buildUnnamed3563(); |
| 8205 } | 8205 } |
| 8206 buildCounterUserRolePermissionGroupsListResponse--; | 8206 buildCounterUserRolePermissionGroupsListResponse--; |
| 8207 return o; | 8207 return o; |
| 8208 } | 8208 } |
| 8209 | 8209 |
| 8210 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { | 8210 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { |
| 8211 buildCounterUserRolePermissionGroupsListResponse++; | 8211 buildCounterUserRolePermissionGroupsListResponse++; |
| 8212 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 8212 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 8213 unittest.expect(o.kind, unittest.equals('foo')); | 8213 unittest.expect(o.kind, unittest.equals('foo')); |
| 8214 checkUnnamed3471(o.userRolePermissionGroups); | 8214 checkUnnamed3563(o.userRolePermissionGroups); |
| 8215 } | 8215 } |
| 8216 buildCounterUserRolePermissionGroupsListResponse--; | 8216 buildCounterUserRolePermissionGroupsListResponse--; |
| 8217 } | 8217 } |
| 8218 | 8218 |
| 8219 buildUnnamed3472() { | 8219 buildUnnamed3564() { |
| 8220 var o = new core.List<api.UserRolePermission>(); | 8220 var o = new core.List<api.UserRolePermission>(); |
| 8221 o.add(buildUserRolePermission()); | 8221 o.add(buildUserRolePermission()); |
| 8222 o.add(buildUserRolePermission()); | 8222 o.add(buildUserRolePermission()); |
| 8223 return o; | 8223 return o; |
| 8224 } | 8224 } |
| 8225 | 8225 |
| 8226 checkUnnamed3472(core.List<api.UserRolePermission> o) { | 8226 checkUnnamed3564(core.List<api.UserRolePermission> o) { |
| 8227 unittest.expect(o, unittest.hasLength(2)); | 8227 unittest.expect(o, unittest.hasLength(2)); |
| 8228 checkUserRolePermission(o[0]); | 8228 checkUserRolePermission(o[0]); |
| 8229 checkUserRolePermission(o[1]); | 8229 checkUserRolePermission(o[1]); |
| 8230 } | 8230 } |
| 8231 | 8231 |
| 8232 core.int buildCounterUserRolePermissionsListResponse = 0; | 8232 core.int buildCounterUserRolePermissionsListResponse = 0; |
| 8233 buildUserRolePermissionsListResponse() { | 8233 buildUserRolePermissionsListResponse() { |
| 8234 var o = new api.UserRolePermissionsListResponse(); | 8234 var o = new api.UserRolePermissionsListResponse(); |
| 8235 buildCounterUserRolePermissionsListResponse++; | 8235 buildCounterUserRolePermissionsListResponse++; |
| 8236 if (buildCounterUserRolePermissionsListResponse < 3) { | 8236 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 8237 o.kind = "foo"; | 8237 o.kind = "foo"; |
| 8238 o.userRolePermissions = buildUnnamed3472(); | 8238 o.userRolePermissions = buildUnnamed3564(); |
| 8239 } | 8239 } |
| 8240 buildCounterUserRolePermissionsListResponse--; | 8240 buildCounterUserRolePermissionsListResponse--; |
| 8241 return o; | 8241 return o; |
| 8242 } | 8242 } |
| 8243 | 8243 |
| 8244 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { | 8244 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { |
| 8245 buildCounterUserRolePermissionsListResponse++; | 8245 buildCounterUserRolePermissionsListResponse++; |
| 8246 if (buildCounterUserRolePermissionsListResponse < 3) { | 8246 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 8247 unittest.expect(o.kind, unittest.equals('foo')); | 8247 unittest.expect(o.kind, unittest.equals('foo')); |
| 8248 checkUnnamed3472(o.userRolePermissions); | 8248 checkUnnamed3564(o.userRolePermissions); |
| 8249 } | 8249 } |
| 8250 buildCounterUserRolePermissionsListResponse--; | 8250 buildCounterUserRolePermissionsListResponse--; |
| 8251 } | 8251 } |
| 8252 | 8252 |
| 8253 buildUnnamed3473() { | 8253 buildUnnamed3565() { |
| 8254 var o = new core.List<api.UserRole>(); | 8254 var o = new core.List<api.UserRole>(); |
| 8255 o.add(buildUserRole()); | 8255 o.add(buildUserRole()); |
| 8256 o.add(buildUserRole()); | 8256 o.add(buildUserRole()); |
| 8257 return o; | 8257 return o; |
| 8258 } | 8258 } |
| 8259 | 8259 |
| 8260 checkUnnamed3473(core.List<api.UserRole> o) { | 8260 checkUnnamed3565(core.List<api.UserRole> o) { |
| 8261 unittest.expect(o, unittest.hasLength(2)); | 8261 unittest.expect(o, unittest.hasLength(2)); |
| 8262 checkUserRole(o[0]); | 8262 checkUserRole(o[0]); |
| 8263 checkUserRole(o[1]); | 8263 checkUserRole(o[1]); |
| 8264 } | 8264 } |
| 8265 | 8265 |
| 8266 core.int buildCounterUserRolesListResponse = 0; | 8266 core.int buildCounterUserRolesListResponse = 0; |
| 8267 buildUserRolesListResponse() { | 8267 buildUserRolesListResponse() { |
| 8268 var o = new api.UserRolesListResponse(); | 8268 var o = new api.UserRolesListResponse(); |
| 8269 buildCounterUserRolesListResponse++; | 8269 buildCounterUserRolesListResponse++; |
| 8270 if (buildCounterUserRolesListResponse < 3) { | 8270 if (buildCounterUserRolesListResponse < 3) { |
| 8271 o.kind = "foo"; | 8271 o.kind = "foo"; |
| 8272 o.nextPageToken = "foo"; | 8272 o.nextPageToken = "foo"; |
| 8273 o.userRoles = buildUnnamed3473(); | 8273 o.userRoles = buildUnnamed3565(); |
| 8274 } | 8274 } |
| 8275 buildCounterUserRolesListResponse--; | 8275 buildCounterUserRolesListResponse--; |
| 8276 return o; | 8276 return o; |
| 8277 } | 8277 } |
| 8278 | 8278 |
| 8279 checkUserRolesListResponse(api.UserRolesListResponse o) { | 8279 checkUserRolesListResponse(api.UserRolesListResponse o) { |
| 8280 buildCounterUserRolesListResponse++; | 8280 buildCounterUserRolesListResponse++; |
| 8281 if (buildCounterUserRolesListResponse < 3) { | 8281 if (buildCounterUserRolesListResponse < 3) { |
| 8282 unittest.expect(o.kind, unittest.equals('foo')); | 8282 unittest.expect(o.kind, unittest.equals('foo')); |
| 8283 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8283 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8284 checkUnnamed3473(o.userRoles); | 8284 checkUnnamed3565(o.userRoles); |
| 8285 } | 8285 } |
| 8286 buildCounterUserRolesListResponse--; | 8286 buildCounterUserRolesListResponse--; |
| 8287 } | 8287 } |
| 8288 | 8288 |
| 8289 buildUnnamed3474() { | 8289 buildUnnamed3566() { |
| 8290 var o = new core.List<core.String>(); | 8290 var o = new core.List<core.String>(); |
| 8291 o.add("foo"); | 8291 o.add("foo"); |
| 8292 o.add("foo"); | 8292 o.add("foo"); |
| 8293 return o; | 8293 return o; |
| 8294 } | 8294 } |
| 8295 | 8295 |
| 8296 checkUnnamed3474(core.List<core.String> o) { | 8296 checkUnnamed3566(core.List<core.String> o) { |
| 8297 unittest.expect(o, unittest.hasLength(2)); | 8297 unittest.expect(o, unittest.hasLength(2)); |
| 8298 unittest.expect(o[0], unittest.equals('foo')); | 8298 unittest.expect(o[0], unittest.equals('foo')); |
| 8299 unittest.expect(o[1], unittest.equals('foo')); | 8299 unittest.expect(o[1], unittest.equals('foo')); |
| 8300 } | 8300 } |
| 8301 | 8301 |
| 8302 buildUnnamed3475() { | 8302 buildUnnamed3567() { |
| 8303 var o = new core.List<core.String>(); | 8303 var o = new core.List<core.String>(); |
| 8304 o.add("foo"); | 8304 o.add("foo"); |
| 8305 o.add("foo"); | 8305 o.add("foo"); |
| 8306 return o; | 8306 return o; |
| 8307 } | 8307 } |
| 8308 | 8308 |
| 8309 checkUnnamed3475(core.List<core.String> o) { | 8309 checkUnnamed3567(core.List<core.String> o) { |
| 8310 unittest.expect(o, unittest.hasLength(2)); | 8310 unittest.expect(o, unittest.hasLength(2)); |
| 8311 unittest.expect(o[0], unittest.equals('foo')); | 8311 unittest.expect(o[0], unittest.equals('foo')); |
| 8312 unittest.expect(o[1], unittest.equals('foo')); | 8312 unittest.expect(o[1], unittest.equals('foo')); |
| 8313 } | 8313 } |
| 8314 | 8314 |
| 8315 buildUnnamed3476() { | 8315 buildUnnamed3568() { |
| 8316 var o = new core.List<core.String>(); | 8316 var o = new core.List<core.String>(); |
| 8317 o.add("foo"); | 8317 o.add("foo"); |
| 8318 o.add("foo"); | 8318 o.add("foo"); |
| 8319 return o; | 8319 return o; |
| 8320 } | 8320 } |
| 8321 | 8321 |
| 8322 checkUnnamed3476(core.List<core.String> o) { | 8322 checkUnnamed3568(core.List<core.String> o) { |
| 8323 unittest.expect(o, unittest.hasLength(2)); | 8323 unittest.expect(o, unittest.hasLength(2)); |
| 8324 unittest.expect(o[0], unittest.equals('foo')); | 8324 unittest.expect(o[0], unittest.equals('foo')); |
| 8325 unittest.expect(o[1], unittest.equals('foo')); | 8325 unittest.expect(o[1], unittest.equals('foo')); |
| 8326 } | 8326 } |
| 8327 | 8327 |
| 8328 buildUnnamed3477() { | 8328 buildUnnamed3569() { |
| 8329 var o = new core.List<core.String>(); | 8329 var o = new core.List<core.String>(); |
| 8330 o.add("foo"); | 8330 o.add("foo"); |
| 8331 o.add("foo"); | 8331 o.add("foo"); |
| 8332 return o; | 8332 return o; |
| 8333 } | 8333 } |
| 8334 | 8334 |
| 8335 checkUnnamed3477(core.List<core.String> o) { | 8335 checkUnnamed3569(core.List<core.String> o) { |
| 8336 unittest.expect(o, unittest.hasLength(2)); | 8336 unittest.expect(o, unittest.hasLength(2)); |
| 8337 unittest.expect(o[0], unittest.equals('foo')); | 8337 unittest.expect(o[0], unittest.equals('foo')); |
| 8338 unittest.expect(o[1], unittest.equals('foo')); | 8338 unittest.expect(o[1], unittest.equals('foo')); |
| 8339 } | 8339 } |
| 8340 | 8340 |
| 8341 buildUnnamed3478() { | 8341 buildUnnamed3570() { |
| 8342 var o = new core.List<core.String>(); | 8342 var o = new core.List<core.String>(); |
| 8343 o.add("foo"); | 8343 o.add("foo"); |
| 8344 o.add("foo"); | 8344 o.add("foo"); |
| 8345 return o; | 8345 return o; |
| 8346 } | 8346 } |
| 8347 | 8347 |
| 8348 checkUnnamed3478(core.List<core.String> o) { | 8348 checkUnnamed3570(core.List<core.String> o) { |
| 8349 unittest.expect(o, unittest.hasLength(2)); | 8349 unittest.expect(o, unittest.hasLength(2)); |
| 8350 unittest.expect(o[0], unittest.equals('foo')); | 8350 unittest.expect(o[0], unittest.equals('foo')); |
| 8351 unittest.expect(o[1], unittest.equals('foo')); | 8351 unittest.expect(o[1], unittest.equals('foo')); |
| 8352 } | 8352 } |
| 8353 | 8353 |
| 8354 buildUnnamed3479() { | 8354 buildUnnamed3571() { |
| 8355 var o = new core.List<core.String>(); | 8355 var o = new core.List<core.String>(); |
| 8356 o.add("foo"); | 8356 o.add("foo"); |
| 8357 o.add("foo"); | 8357 o.add("foo"); |
| 8358 return o; | 8358 return o; |
| 8359 } | 8359 } |
| 8360 | 8360 |
| 8361 checkUnnamed3479(core.List<core.String> o) { | 8361 checkUnnamed3571(core.List<core.String> o) { |
| 8362 unittest.expect(o, unittest.hasLength(2)); | 8362 unittest.expect(o, unittest.hasLength(2)); |
| 8363 unittest.expect(o[0], unittest.equals('foo')); | 8363 unittest.expect(o[0], unittest.equals('foo')); |
| 8364 unittest.expect(o[1], unittest.equals('foo')); | 8364 unittest.expect(o[1], unittest.equals('foo')); |
| 8365 } | 8365 } |
| 8366 | 8366 |
| 8367 buildUnnamed3480() { | 8367 buildUnnamed3572() { |
| 8368 var o = new core.List<core.String>(); | 8368 var o = new core.List<core.String>(); |
| 8369 o.add("foo"); | 8369 o.add("foo"); |
| 8370 o.add("foo"); | 8370 o.add("foo"); |
| 8371 return o; | 8371 return o; |
| 8372 } | 8372 } |
| 8373 | 8373 |
| 8374 checkUnnamed3480(core.List<core.String> o) { | 8374 checkUnnamed3572(core.List<core.String> o) { |
| 8375 unittest.expect(o, unittest.hasLength(2)); | 8375 unittest.expect(o, unittest.hasLength(2)); |
| 8376 unittest.expect(o[0], unittest.equals('foo')); | 8376 unittest.expect(o[0], unittest.equals('foo')); |
| 8377 unittest.expect(o[1], unittest.equals('foo')); | 8377 unittest.expect(o[1], unittest.equals('foo')); |
| 8378 } | 8378 } |
| 8379 | 8379 |
| 8380 buildUnnamed3481() { | 8380 buildUnnamed3573() { |
| 8381 var o = new core.List<core.String>(); | 8381 var o = new core.List<core.String>(); |
| 8382 o.add("foo"); | 8382 o.add("foo"); |
| 8383 o.add("foo"); | 8383 o.add("foo"); |
| 8384 return o; | 8384 return o; |
| 8385 } | 8385 } |
| 8386 | 8386 |
| 8387 checkUnnamed3481(core.List<core.String> o) { | 8387 checkUnnamed3573(core.List<core.String> o) { |
| 8388 unittest.expect(o, unittest.hasLength(2)); | 8388 unittest.expect(o, unittest.hasLength(2)); |
| 8389 unittest.expect(o[0], unittest.equals('foo')); | 8389 unittest.expect(o[0], unittest.equals('foo')); |
| 8390 unittest.expect(o[1], unittest.equals('foo')); | 8390 unittest.expect(o[1], unittest.equals('foo')); |
| 8391 } | 8391 } |
| 8392 | 8392 |
| 8393 buildUnnamed3482() { | 8393 buildUnnamed3574() { |
| 8394 var o = new core.List<core.String>(); | 8394 var o = new core.List<core.String>(); |
| 8395 o.add("foo"); | 8395 o.add("foo"); |
| 8396 o.add("foo"); | 8396 o.add("foo"); |
| 8397 return o; | 8397 return o; |
| 8398 } | 8398 } |
| 8399 | 8399 |
| 8400 checkUnnamed3482(core.List<core.String> o) { | 8400 checkUnnamed3574(core.List<core.String> o) { |
| 8401 unittest.expect(o, unittest.hasLength(2)); | 8401 unittest.expect(o, unittest.hasLength(2)); |
| 8402 unittest.expect(o[0], unittest.equals('foo')); | 8402 unittest.expect(o[0], unittest.equals('foo')); |
| 8403 unittest.expect(o[1], unittest.equals('foo')); | 8403 unittest.expect(o[1], unittest.equals('foo')); |
| 8404 } | 8404 } |
| 8405 | 8405 |
| 8406 buildUnnamed3483() { | 8406 buildUnnamed3575() { |
| 8407 var o = new core.List<core.String>(); | 8407 var o = new core.List<core.String>(); |
| 8408 o.add("foo"); | 8408 o.add("foo"); |
| 8409 o.add("foo"); | 8409 o.add("foo"); |
| 8410 return o; | 8410 return o; |
| 8411 } | 8411 } |
| 8412 | 8412 |
| 8413 checkUnnamed3483(core.List<core.String> o) { | 8413 checkUnnamed3575(core.List<core.String> o) { |
| 8414 unittest.expect(o, unittest.hasLength(2)); | 8414 unittest.expect(o, unittest.hasLength(2)); |
| 8415 unittest.expect(o[0], unittest.equals('foo')); | 8415 unittest.expect(o[0], unittest.equals('foo')); |
| 8416 unittest.expect(o[1], unittest.equals('foo')); | 8416 unittest.expect(o[1], unittest.equals('foo')); |
| 8417 } | 8417 } |
| 8418 | 8418 |
| 8419 buildUnnamed3484() { | 8419 buildUnnamed3576() { |
| 8420 var o = new core.List<core.String>(); | 8420 var o = new core.List<core.String>(); |
| 8421 o.add("foo"); | 8421 o.add("foo"); |
| 8422 o.add("foo"); | 8422 o.add("foo"); |
| 8423 return o; | 8423 return o; |
| 8424 } | 8424 } |
| 8425 | 8425 |
| 8426 checkUnnamed3484(core.List<core.String> o) { | 8426 checkUnnamed3576(core.List<core.String> o) { |
| 8427 unittest.expect(o, unittest.hasLength(2)); | 8427 unittest.expect(o, unittest.hasLength(2)); |
| 8428 unittest.expect(o[0], unittest.equals('foo')); | 8428 unittest.expect(o[0], unittest.equals('foo')); |
| 8429 unittest.expect(o[1], unittest.equals('foo')); | 8429 unittest.expect(o[1], unittest.equals('foo')); |
| 8430 } | 8430 } |
| 8431 | 8431 |
| 8432 buildUnnamed3485() { | 8432 buildUnnamed3577() { |
| 8433 var o = new core.List<core.String>(); | 8433 var o = new core.List<core.String>(); |
| 8434 o.add("foo"); | 8434 o.add("foo"); |
| 8435 o.add("foo"); | 8435 o.add("foo"); |
| 8436 return o; | 8436 return o; |
| 8437 } | 8437 } |
| 8438 | 8438 |
| 8439 checkUnnamed3485(core.List<core.String> o) { | 8439 checkUnnamed3577(core.List<core.String> o) { |
| 8440 unittest.expect(o, unittest.hasLength(2)); | 8440 unittest.expect(o, unittest.hasLength(2)); |
| 8441 unittest.expect(o[0], unittest.equals('foo')); | 8441 unittest.expect(o[0], unittest.equals('foo')); |
| 8442 unittest.expect(o[1], unittest.equals('foo')); | 8442 unittest.expect(o[1], unittest.equals('foo')); |
| 8443 } | 8443 } |
| 8444 | 8444 |
| 8445 buildUnnamed3486() { | 8445 buildUnnamed3578() { |
| 8446 var o = new core.List<core.String>(); | 8446 var o = new core.List<core.String>(); |
| 8447 o.add("foo"); | 8447 o.add("foo"); |
| 8448 o.add("foo"); | 8448 o.add("foo"); |
| 8449 return o; | 8449 return o; |
| 8450 } | 8450 } |
| 8451 | 8451 |
| 8452 checkUnnamed3486(core.List<core.String> o) { | 8452 checkUnnamed3578(core.List<core.String> o) { |
| 8453 unittest.expect(o, unittest.hasLength(2)); | 8453 unittest.expect(o, unittest.hasLength(2)); |
| 8454 unittest.expect(o[0], unittest.equals('foo')); | 8454 unittest.expect(o[0], unittest.equals('foo')); |
| 8455 unittest.expect(o[1], unittest.equals('foo')); | 8455 unittest.expect(o[1], unittest.equals('foo')); |
| 8456 } | 8456 } |
| 8457 | 8457 |
| 8458 buildUnnamed3487() { | 8458 buildUnnamed3579() { |
| 8459 var o = new core.List<core.String>(); | 8459 var o = new core.List<core.String>(); |
| 8460 o.add("foo"); | 8460 o.add("foo"); |
| 8461 o.add("foo"); | 8461 o.add("foo"); |
| 8462 return o; | 8462 return o; |
| 8463 } | 8463 } |
| 8464 | 8464 |
| 8465 checkUnnamed3487(core.List<core.String> o) { | 8465 checkUnnamed3579(core.List<core.String> o) { |
| 8466 unittest.expect(o, unittest.hasLength(2)); | 8466 unittest.expect(o, unittest.hasLength(2)); |
| 8467 unittest.expect(o[0], unittest.equals('foo')); | 8467 unittest.expect(o[0], unittest.equals('foo')); |
| 8468 unittest.expect(o[1], unittest.equals('foo')); | 8468 unittest.expect(o[1], unittest.equals('foo')); |
| 8469 } | 8469 } |
| 8470 | 8470 |
| 8471 buildUnnamed3488() { | 8471 buildUnnamed3580() { |
| 8472 var o = new core.List<core.String>(); | 8472 var o = new core.List<core.String>(); |
| 8473 o.add("foo"); | 8473 o.add("foo"); |
| 8474 o.add("foo"); | 8474 o.add("foo"); |
| 8475 return o; | 8475 return o; |
| 8476 } | 8476 } |
| 8477 | 8477 |
| 8478 checkUnnamed3488(core.List<core.String> o) { | 8478 checkUnnamed3580(core.List<core.String> o) { |
| 8479 unittest.expect(o, unittest.hasLength(2)); | 8479 unittest.expect(o, unittest.hasLength(2)); |
| 8480 unittest.expect(o[0], unittest.equals('foo')); | 8480 unittest.expect(o[0], unittest.equals('foo')); |
| 8481 unittest.expect(o[1], unittest.equals('foo')); | 8481 unittest.expect(o[1], unittest.equals('foo')); |
| 8482 } | 8482 } |
| 8483 | 8483 |
| 8484 buildUnnamed3489() { | 8484 buildUnnamed3581() { |
| 8485 var o = new core.List<core.String>(); | 8485 var o = new core.List<core.String>(); |
| 8486 o.add("foo"); | 8486 o.add("foo"); |
| 8487 o.add("foo"); | 8487 o.add("foo"); |
| 8488 return o; | 8488 return o; |
| 8489 } | 8489 } |
| 8490 | 8490 |
| 8491 checkUnnamed3489(core.List<core.String> o) { | 8491 checkUnnamed3581(core.List<core.String> o) { |
| 8492 unittest.expect(o, unittest.hasLength(2)); | 8492 unittest.expect(o, unittest.hasLength(2)); |
| 8493 unittest.expect(o[0], unittest.equals('foo')); | 8493 unittest.expect(o[0], unittest.equals('foo')); |
| 8494 unittest.expect(o[1], unittest.equals('foo')); | 8494 unittest.expect(o[1], unittest.equals('foo')); |
| 8495 } | 8495 } |
| 8496 | 8496 |
| 8497 buildUnnamed3490() { | 8497 buildUnnamed3582() { |
| 8498 var o = new core.List<core.String>(); | 8498 var o = new core.List<core.String>(); |
| 8499 o.add("foo"); | 8499 o.add("foo"); |
| 8500 o.add("foo"); | 8500 o.add("foo"); |
| 8501 return o; | 8501 return o; |
| 8502 } | 8502 } |
| 8503 | 8503 |
| 8504 checkUnnamed3490(core.List<core.String> o) { | 8504 checkUnnamed3582(core.List<core.String> o) { |
| 8505 unittest.expect(o, unittest.hasLength(2)); | 8505 unittest.expect(o, unittest.hasLength(2)); |
| 8506 unittest.expect(o[0], unittest.equals('foo')); | 8506 unittest.expect(o[0], unittest.equals('foo')); |
| 8507 unittest.expect(o[1], unittest.equals('foo')); | 8507 unittest.expect(o[1], unittest.equals('foo')); |
| 8508 } | 8508 } |
| 8509 | 8509 |
| 8510 buildUnnamed3491() { | 8510 buildUnnamed3583() { |
| 8511 var o = new core.List<core.String>(); | 8511 var o = new core.List<core.String>(); |
| 8512 o.add("foo"); | 8512 o.add("foo"); |
| 8513 o.add("foo"); | 8513 o.add("foo"); |
| 8514 return o; | 8514 return o; |
| 8515 } | 8515 } |
| 8516 | 8516 |
| 8517 checkUnnamed3491(core.List<core.String> o) { | 8517 checkUnnamed3583(core.List<core.String> o) { |
| 8518 unittest.expect(o, unittest.hasLength(2)); | 8518 unittest.expect(o, unittest.hasLength(2)); |
| 8519 unittest.expect(o[0], unittest.equals('foo')); | 8519 unittest.expect(o[0], unittest.equals('foo')); |
| 8520 unittest.expect(o[1], unittest.equals('foo')); | 8520 unittest.expect(o[1], unittest.equals('foo')); |
| 8521 } | 8521 } |
| 8522 | 8522 |
| 8523 buildUnnamed3492() { | 8523 buildUnnamed3584() { |
| 8524 var o = new core.List<core.String>(); | 8524 var o = new core.List<core.String>(); |
| 8525 o.add("foo"); | 8525 o.add("foo"); |
| 8526 o.add("foo"); | 8526 o.add("foo"); |
| 8527 return o; | 8527 return o; |
| 8528 } | 8528 } |
| 8529 | 8529 |
| 8530 checkUnnamed3492(core.List<core.String> o) { | 8530 checkUnnamed3584(core.List<core.String> o) { |
| 8531 unittest.expect(o, unittest.hasLength(2)); | 8531 unittest.expect(o, unittest.hasLength(2)); |
| 8532 unittest.expect(o[0], unittest.equals('foo')); | 8532 unittest.expect(o[0], unittest.equals('foo')); |
| 8533 unittest.expect(o[1], unittest.equals('foo')); | 8533 unittest.expect(o[1], unittest.equals('foo')); |
| 8534 } | 8534 } |
| 8535 | 8535 |
| 8536 buildUnnamed3493() { | 8536 buildUnnamed3585() { |
| 8537 var o = new core.List<core.String>(); | 8537 var o = new core.List<core.String>(); |
| 8538 o.add("foo"); | 8538 o.add("foo"); |
| 8539 o.add("foo"); | 8539 o.add("foo"); |
| 8540 return o; | 8540 return o; |
| 8541 } | 8541 } |
| 8542 | 8542 |
| 8543 checkUnnamed3493(core.List<core.String> o) { | 8543 checkUnnamed3585(core.List<core.String> o) { |
| 8544 unittest.expect(o, unittest.hasLength(2)); | 8544 unittest.expect(o, unittest.hasLength(2)); |
| 8545 unittest.expect(o[0], unittest.equals('foo')); | 8545 unittest.expect(o[0], unittest.equals('foo')); |
| 8546 unittest.expect(o[1], unittest.equals('foo')); | 8546 unittest.expect(o[1], unittest.equals('foo')); |
| 8547 } | 8547 } |
| 8548 | 8548 |
| 8549 buildUnnamed3494() { | 8549 buildUnnamed3586() { |
| 8550 var o = new core.List<core.String>(); | 8550 var o = new core.List<core.String>(); |
| 8551 o.add("foo"); | 8551 o.add("foo"); |
| 8552 o.add("foo"); | 8552 o.add("foo"); |
| 8553 return o; | 8553 return o; |
| 8554 } | 8554 } |
| 8555 | 8555 |
| 8556 checkUnnamed3494(core.List<core.String> o) { | 8556 checkUnnamed3586(core.List<core.String> o) { |
| 8557 unittest.expect(o, unittest.hasLength(2)); | 8557 unittest.expect(o, unittest.hasLength(2)); |
| 8558 unittest.expect(o[0], unittest.equals('foo')); | 8558 unittest.expect(o[0], unittest.equals('foo')); |
| 8559 unittest.expect(o[1], unittest.equals('foo')); | 8559 unittest.expect(o[1], unittest.equals('foo')); |
| 8560 } | 8560 } |
| 8561 | 8561 |
| 8562 buildUnnamed3495() { | 8562 buildUnnamed3587() { |
| 8563 var o = new core.List<core.String>(); | 8563 var o = new core.List<core.String>(); |
| 8564 o.add("foo"); | 8564 o.add("foo"); |
| 8565 o.add("foo"); | 8565 o.add("foo"); |
| 8566 return o; | 8566 return o; |
| 8567 } | 8567 } |
| 8568 | 8568 |
| 8569 checkUnnamed3495(core.List<core.String> o) { | 8569 checkUnnamed3587(core.List<core.String> o) { |
| 8570 unittest.expect(o, unittest.hasLength(2)); | 8570 unittest.expect(o, unittest.hasLength(2)); |
| 8571 unittest.expect(o[0], unittest.equals('foo')); | 8571 unittest.expect(o[0], unittest.equals('foo')); |
| 8572 unittest.expect(o[1], unittest.equals('foo')); | 8572 unittest.expect(o[1], unittest.equals('foo')); |
| 8573 } | 8573 } |
| 8574 | 8574 |
| 8575 buildUnnamed3496() { | 8575 buildUnnamed3588() { |
| 8576 var o = new core.List<core.String>(); | 8576 var o = new core.List<core.String>(); |
| 8577 o.add("foo"); | 8577 o.add("foo"); |
| 8578 o.add("foo"); | 8578 o.add("foo"); |
| 8579 return o; | 8579 return o; |
| 8580 } | 8580 } |
| 8581 | 8581 |
| 8582 checkUnnamed3496(core.List<core.String> o) { | 8582 checkUnnamed3588(core.List<core.String> o) { |
| 8583 unittest.expect(o, unittest.hasLength(2)); | 8583 unittest.expect(o, unittest.hasLength(2)); |
| 8584 unittest.expect(o[0], unittest.equals('foo')); | 8584 unittest.expect(o[0], unittest.equals('foo')); |
| 8585 unittest.expect(o[1], unittest.equals('foo')); | 8585 unittest.expect(o[1], unittest.equals('foo')); |
| 8586 } | 8586 } |
| 8587 | 8587 |
| 8588 buildUnnamed3497() { | 8588 buildUnnamed3589() { |
| 8589 var o = new core.List<core.String>(); | 8589 var o = new core.List<core.String>(); |
| 8590 o.add("foo"); | 8590 o.add("foo"); |
| 8591 o.add("foo"); | 8591 o.add("foo"); |
| 8592 return o; | 8592 return o; |
| 8593 } | 8593 } |
| 8594 | 8594 |
| 8595 checkUnnamed3497(core.List<core.String> o) { | 8595 checkUnnamed3589(core.List<core.String> o) { |
| 8596 unittest.expect(o, unittest.hasLength(2)); | 8596 unittest.expect(o, unittest.hasLength(2)); |
| 8597 unittest.expect(o[0], unittest.equals('foo')); | 8597 unittest.expect(o[0], unittest.equals('foo')); |
| 8598 unittest.expect(o[1], unittest.equals('foo')); | 8598 unittest.expect(o[1], unittest.equals('foo')); |
| 8599 } | 8599 } |
| 8600 | 8600 |
| 8601 buildUnnamed3498() { | 8601 buildUnnamed3590() { |
| 8602 var o = new core.List<core.String>(); | 8602 var o = new core.List<core.String>(); |
| 8603 o.add("foo"); | 8603 o.add("foo"); |
| 8604 o.add("foo"); | 8604 o.add("foo"); |
| 8605 return o; | 8605 return o; |
| 8606 } | 8606 } |
| 8607 | 8607 |
| 8608 checkUnnamed3498(core.List<core.String> o) { | 8608 checkUnnamed3590(core.List<core.String> o) { |
| 8609 unittest.expect(o, unittest.hasLength(2)); | 8609 unittest.expect(o, unittest.hasLength(2)); |
| 8610 unittest.expect(o[0], unittest.equals('foo')); | 8610 unittest.expect(o[0], unittest.equals('foo')); |
| 8611 unittest.expect(o[1], unittest.equals('foo')); | 8611 unittest.expect(o[1], unittest.equals('foo')); |
| 8612 } | 8612 } |
| 8613 | 8613 |
| 8614 buildUnnamed3499() { | 8614 buildUnnamed3591() { |
| 8615 var o = new core.List<core.String>(); | 8615 var o = new core.List<core.String>(); |
| 8616 o.add("foo"); | 8616 o.add("foo"); |
| 8617 o.add("foo"); | 8617 o.add("foo"); |
| 8618 return o; | 8618 return o; |
| 8619 } | 8619 } |
| 8620 | 8620 |
| 8621 checkUnnamed3499(core.List<core.String> o) { | 8621 checkUnnamed3591(core.List<core.String> o) { |
| 8622 unittest.expect(o, unittest.hasLength(2)); | 8622 unittest.expect(o, unittest.hasLength(2)); |
| 8623 unittest.expect(o[0], unittest.equals('foo')); | 8623 unittest.expect(o[0], unittest.equals('foo')); |
| 8624 unittest.expect(o[1], unittest.equals('foo')); | 8624 unittest.expect(o[1], unittest.equals('foo')); |
| 8625 } | 8625 } |
| 8626 | 8626 |
| 8627 buildUnnamed3500() { | 8627 buildUnnamed3592() { |
| 8628 var o = new core.List<core.String>(); | 8628 var o = new core.List<core.String>(); |
| 8629 o.add("foo"); | 8629 o.add("foo"); |
| 8630 o.add("foo"); | 8630 o.add("foo"); |
| 8631 return o; | 8631 return o; |
| 8632 } | 8632 } |
| 8633 | 8633 |
| 8634 checkUnnamed3500(core.List<core.String> o) { | 8634 checkUnnamed3592(core.List<core.String> o) { |
| 8635 unittest.expect(o, unittest.hasLength(2)); | 8635 unittest.expect(o, unittest.hasLength(2)); |
| 8636 unittest.expect(o[0], unittest.equals('foo')); | 8636 unittest.expect(o[0], unittest.equals('foo')); |
| 8637 unittest.expect(o[1], unittest.equals('foo')); | 8637 unittest.expect(o[1], unittest.equals('foo')); |
| 8638 } | 8638 } |
| 8639 | 8639 |
| 8640 buildUnnamed3501() { | 8640 buildUnnamed3593() { |
| 8641 var o = new core.List<core.String>(); | 8641 var o = new core.List<core.String>(); |
| 8642 o.add("foo"); | 8642 o.add("foo"); |
| 8643 o.add("foo"); | 8643 o.add("foo"); |
| 8644 return o; | 8644 return o; |
| 8645 } | 8645 } |
| 8646 | 8646 |
| 8647 checkUnnamed3501(core.List<core.String> o) { | 8647 checkUnnamed3593(core.List<core.String> o) { |
| 8648 unittest.expect(o, unittest.hasLength(2)); | 8648 unittest.expect(o, unittest.hasLength(2)); |
| 8649 unittest.expect(o[0], unittest.equals('foo')); | 8649 unittest.expect(o[0], unittest.equals('foo')); |
| 8650 unittest.expect(o[1], unittest.equals('foo')); | 8650 unittest.expect(o[1], unittest.equals('foo')); |
| 8651 } | 8651 } |
| 8652 | 8652 |
| 8653 buildUnnamed3502() { | 8653 buildUnnamed3594() { |
| 8654 var o = new core.List<core.String>(); | 8654 var o = new core.List<core.String>(); |
| 8655 o.add("foo"); | 8655 o.add("foo"); |
| 8656 o.add("foo"); | 8656 o.add("foo"); |
| 8657 return o; | 8657 return o; |
| 8658 } | 8658 } |
| 8659 | 8659 |
| 8660 checkUnnamed3502(core.List<core.String> o) { | 8660 checkUnnamed3594(core.List<core.String> o) { |
| 8661 unittest.expect(o, unittest.hasLength(2)); | 8661 unittest.expect(o, unittest.hasLength(2)); |
| 8662 unittest.expect(o[0], unittest.equals('foo')); | 8662 unittest.expect(o[0], unittest.equals('foo')); |
| 8663 unittest.expect(o[1], unittest.equals('foo')); | 8663 unittest.expect(o[1], unittest.equals('foo')); |
| 8664 } | 8664 } |
| 8665 | 8665 |
| 8666 buildUnnamed3503() { | 8666 buildUnnamed3595() { |
| 8667 var o = new core.List<core.String>(); | 8667 var o = new core.List<core.String>(); |
| 8668 o.add("foo"); | 8668 o.add("foo"); |
| 8669 o.add("foo"); | 8669 o.add("foo"); |
| 8670 return o; | 8670 return o; |
| 8671 } | 8671 } |
| 8672 | 8672 |
| 8673 checkUnnamed3503(core.List<core.String> o) { | 8673 checkUnnamed3595(core.List<core.String> o) { |
| 8674 unittest.expect(o, unittest.hasLength(2)); | 8674 unittest.expect(o, unittest.hasLength(2)); |
| 8675 unittest.expect(o[0], unittest.equals('foo')); | 8675 unittest.expect(o[0], unittest.equals('foo')); |
| 8676 unittest.expect(o[1], unittest.equals('foo')); | 8676 unittest.expect(o[1], unittest.equals('foo')); |
| 8677 } | 8677 } |
| 8678 | 8678 |
| 8679 buildUnnamed3504() { | 8679 buildUnnamed3596() { |
| 8680 var o = new core.List<core.String>(); | 8680 var o = new core.List<core.String>(); |
| 8681 o.add("foo"); | 8681 o.add("foo"); |
| 8682 o.add("foo"); | 8682 o.add("foo"); |
| 8683 return o; | 8683 return o; |
| 8684 } | 8684 } |
| 8685 | 8685 |
| 8686 checkUnnamed3504(core.List<core.String> o) { | 8686 checkUnnamed3596(core.List<core.String> o) { |
| 8687 unittest.expect(o, unittest.hasLength(2)); | 8687 unittest.expect(o, unittest.hasLength(2)); |
| 8688 unittest.expect(o[0], unittest.equals('foo')); | 8688 unittest.expect(o[0], unittest.equals('foo')); |
| 8689 unittest.expect(o[1], unittest.equals('foo')); | 8689 unittest.expect(o[1], unittest.equals('foo')); |
| 8690 } | 8690 } |
| 8691 | 8691 |
| 8692 buildUnnamed3505() { | 8692 buildUnnamed3597() { |
| 8693 var o = new core.List<core.String>(); | 8693 var o = new core.List<core.String>(); |
| 8694 o.add("foo"); | 8694 o.add("foo"); |
| 8695 o.add("foo"); | 8695 o.add("foo"); |
| 8696 return o; | 8696 return o; |
| 8697 } | 8697 } |
| 8698 | 8698 |
| 8699 checkUnnamed3505(core.List<core.String> o) { | 8699 checkUnnamed3597(core.List<core.String> o) { |
| 8700 unittest.expect(o, unittest.hasLength(2)); | 8700 unittest.expect(o, unittest.hasLength(2)); |
| 8701 unittest.expect(o[0], unittest.equals('foo')); | 8701 unittest.expect(o[0], unittest.equals('foo')); |
| 8702 unittest.expect(o[1], unittest.equals('foo')); | 8702 unittest.expect(o[1], unittest.equals('foo')); |
| 8703 } | 8703 } |
| 8704 | 8704 |
| 8705 buildUnnamed3506() { | 8705 buildUnnamed3598() { |
| 8706 var o = new core.List<core.String>(); | 8706 var o = new core.List<core.String>(); |
| 8707 o.add("foo"); | 8707 o.add("foo"); |
| 8708 o.add("foo"); | 8708 o.add("foo"); |
| 8709 return o; | 8709 return o; |
| 8710 } | 8710 } |
| 8711 | 8711 |
| 8712 checkUnnamed3506(core.List<core.String> o) { | 8712 checkUnnamed3598(core.List<core.String> o) { |
| 8713 unittest.expect(o, unittest.hasLength(2)); | 8713 unittest.expect(o, unittest.hasLength(2)); |
| 8714 unittest.expect(o[0], unittest.equals('foo')); | 8714 unittest.expect(o[0], unittest.equals('foo')); |
| 8715 unittest.expect(o[1], unittest.equals('foo')); | 8715 unittest.expect(o[1], unittest.equals('foo')); |
| 8716 } | 8716 } |
| 8717 | 8717 |
| 8718 buildUnnamed3507() { | 8718 buildUnnamed3599() { |
| 8719 var o = new core.List<core.String>(); | 8719 var o = new core.List<core.String>(); |
| 8720 o.add("foo"); | 8720 o.add("foo"); |
| 8721 o.add("foo"); | 8721 o.add("foo"); |
| 8722 return o; | 8722 return o; |
| 8723 } | 8723 } |
| 8724 | 8724 |
| 8725 checkUnnamed3507(core.List<core.String> o) { | 8725 checkUnnamed3599(core.List<core.String> o) { |
| 8726 unittest.expect(o, unittest.hasLength(2)); | 8726 unittest.expect(o, unittest.hasLength(2)); |
| 8727 unittest.expect(o[0], unittest.equals('foo')); | 8727 unittest.expect(o[0], unittest.equals('foo')); |
| 8728 unittest.expect(o[1], unittest.equals('foo')); | 8728 unittest.expect(o[1], unittest.equals('foo')); |
| 8729 } | 8729 } |
| 8730 | 8730 |
| 8731 buildUnnamed3508() { | 8731 buildUnnamed3600() { |
| 8732 var o = new core.List<core.String>(); | 8732 var o = new core.List<core.String>(); |
| 8733 o.add("foo"); | 8733 o.add("foo"); |
| 8734 o.add("foo"); | 8734 o.add("foo"); |
| 8735 return o; | 8735 return o; |
| 8736 } | 8736 } |
| 8737 | 8737 |
| 8738 checkUnnamed3508(core.List<core.String> o) { | 8738 checkUnnamed3600(core.List<core.String> o) { |
| 8739 unittest.expect(o, unittest.hasLength(2)); | 8739 unittest.expect(o, unittest.hasLength(2)); |
| 8740 unittest.expect(o[0], unittest.equals('foo')); | 8740 unittest.expect(o[0], unittest.equals('foo')); |
| 8741 unittest.expect(o[1], unittest.equals('foo')); | 8741 unittest.expect(o[1], unittest.equals('foo')); |
| 8742 } | 8742 } |
| 8743 | 8743 |
| 8744 buildUnnamed3509() { | 8744 buildUnnamed3601() { |
| 8745 var o = new core.List<core.String>(); | 8745 var o = new core.List<core.String>(); |
| 8746 o.add("foo"); | 8746 o.add("foo"); |
| 8747 o.add("foo"); | 8747 o.add("foo"); |
| 8748 return o; | 8748 return o; |
| 8749 } | 8749 } |
| 8750 | 8750 |
| 8751 checkUnnamed3509(core.List<core.String> o) { | 8751 checkUnnamed3601(core.List<core.String> o) { |
| 8752 unittest.expect(o, unittest.hasLength(2)); | 8752 unittest.expect(o, unittest.hasLength(2)); |
| 8753 unittest.expect(o[0], unittest.equals('foo')); | 8753 unittest.expect(o[0], unittest.equals('foo')); |
| 8754 unittest.expect(o[1], unittest.equals('foo')); | 8754 unittest.expect(o[1], unittest.equals('foo')); |
| 8755 } | 8755 } |
| 8756 | 8756 |
| 8757 buildUnnamed3510() { | 8757 buildUnnamed3602() { |
| 8758 var o = new core.List<core.String>(); | 8758 var o = new core.List<core.String>(); |
| 8759 o.add("foo"); | 8759 o.add("foo"); |
| 8760 o.add("foo"); | 8760 o.add("foo"); |
| 8761 return o; | 8761 return o; |
| 8762 } | 8762 } |
| 8763 | 8763 |
| 8764 checkUnnamed3510(core.List<core.String> o) { | 8764 checkUnnamed3602(core.List<core.String> o) { |
| 8765 unittest.expect(o, unittest.hasLength(2)); | 8765 unittest.expect(o, unittest.hasLength(2)); |
| 8766 unittest.expect(o[0], unittest.equals('foo')); | 8766 unittest.expect(o[0], unittest.equals('foo')); |
| 8767 unittest.expect(o[1], unittest.equals('foo')); | 8767 unittest.expect(o[1], unittest.equals('foo')); |
| 8768 } | 8768 } |
| 8769 | 8769 |
| 8770 buildUnnamed3511() { | 8770 buildUnnamed3603() { |
| 8771 var o = new core.List<core.String>(); | 8771 var o = new core.List<core.String>(); |
| 8772 o.add("foo"); | 8772 o.add("foo"); |
| 8773 o.add("foo"); | 8773 o.add("foo"); |
| 8774 return o; | 8774 return o; |
| 8775 } | 8775 } |
| 8776 | 8776 |
| 8777 checkUnnamed3511(core.List<core.String> o) { | 8777 checkUnnamed3603(core.List<core.String> o) { |
| 8778 unittest.expect(o, unittest.hasLength(2)); | 8778 unittest.expect(o, unittest.hasLength(2)); |
| 8779 unittest.expect(o[0], unittest.equals('foo')); | 8779 unittest.expect(o[0], unittest.equals('foo')); |
| 8780 unittest.expect(o[1], unittest.equals('foo')); | 8780 unittest.expect(o[1], unittest.equals('foo')); |
| 8781 } | 8781 } |
| 8782 | 8782 |
| 8783 buildUnnamed3512() { | 8783 buildUnnamed3604() { |
| 8784 var o = new core.List<core.String>(); | 8784 var o = new core.List<core.String>(); |
| 8785 o.add("foo"); | 8785 o.add("foo"); |
| 8786 o.add("foo"); | 8786 o.add("foo"); |
| 8787 return o; | 8787 return o; |
| 8788 } | 8788 } |
| 8789 | 8789 |
| 8790 checkUnnamed3512(core.List<core.String> o) { | 8790 checkUnnamed3604(core.List<core.String> o) { |
| 8791 unittest.expect(o, unittest.hasLength(2)); | 8791 unittest.expect(o, unittest.hasLength(2)); |
| 8792 unittest.expect(o[0], unittest.equals('foo')); | 8792 unittest.expect(o[0], unittest.equals('foo')); |
| 8793 unittest.expect(o[1], unittest.equals('foo')); | 8793 unittest.expect(o[1], unittest.equals('foo')); |
| 8794 } | 8794 } |
| 8795 | 8795 |
| 8796 buildUnnamed3513() { | 8796 buildUnnamed3605() { |
| 8797 var o = new core.List<core.String>(); | 8797 var o = new core.List<core.String>(); |
| 8798 o.add("foo"); | 8798 o.add("foo"); |
| 8799 o.add("foo"); | 8799 o.add("foo"); |
| 8800 return o; | 8800 return o; |
| 8801 } | 8801 } |
| 8802 | 8802 |
| 8803 checkUnnamed3513(core.List<core.String> o) { | 8803 checkUnnamed3605(core.List<core.String> o) { |
| 8804 unittest.expect(o, unittest.hasLength(2)); | 8804 unittest.expect(o, unittest.hasLength(2)); |
| 8805 unittest.expect(o[0], unittest.equals('foo')); | 8805 unittest.expect(o[0], unittest.equals('foo')); |
| 8806 unittest.expect(o[1], unittest.equals('foo')); | 8806 unittest.expect(o[1], unittest.equals('foo')); |
| 8807 } | 8807 } |
| 8808 | 8808 |
| 8809 buildUnnamed3514() { | 8809 buildUnnamed3606() { |
| 8810 var o = new core.List<core.String>(); | 8810 var o = new core.List<core.String>(); |
| 8811 o.add("foo"); | 8811 o.add("foo"); |
| 8812 o.add("foo"); | 8812 o.add("foo"); |
| 8813 return o; | 8813 return o; |
| 8814 } | 8814 } |
| 8815 | 8815 |
| 8816 checkUnnamed3514(core.List<core.String> o) { | 8816 checkUnnamed3606(core.List<core.String> o) { |
| 8817 unittest.expect(o, unittest.hasLength(2)); | 8817 unittest.expect(o, unittest.hasLength(2)); |
| 8818 unittest.expect(o[0], unittest.equals('foo')); | 8818 unittest.expect(o[0], unittest.equals('foo')); |
| 8819 unittest.expect(o[1], unittest.equals('foo')); | 8819 unittest.expect(o[1], unittest.equals('foo')); |
| 8820 } | 8820 } |
| 8821 | 8821 |
| 8822 buildUnnamed3515() { | 8822 buildUnnamed3607() { |
| 8823 var o = new core.List<core.String>(); | 8823 var o = new core.List<core.String>(); |
| 8824 o.add("foo"); | 8824 o.add("foo"); |
| 8825 o.add("foo"); | 8825 o.add("foo"); |
| 8826 return o; | 8826 return o; |
| 8827 } | 8827 } |
| 8828 | 8828 |
| 8829 checkUnnamed3515(core.List<core.String> o) { | 8829 checkUnnamed3607(core.List<core.String> o) { |
| 8830 unittest.expect(o, unittest.hasLength(2)); | 8830 unittest.expect(o, unittest.hasLength(2)); |
| 8831 unittest.expect(o[0], unittest.equals('foo')); | 8831 unittest.expect(o[0], unittest.equals('foo')); |
| 8832 unittest.expect(o[1], unittest.equals('foo')); | 8832 unittest.expect(o[1], unittest.equals('foo')); |
| 8833 } | 8833 } |
| 8834 | 8834 |
| 8835 buildUnnamed3516() { | 8835 buildUnnamed3608() { |
| 8836 var o = new core.List<core.String>(); | 8836 var o = new core.List<core.String>(); |
| 8837 o.add("foo"); | 8837 o.add("foo"); |
| 8838 o.add("foo"); | 8838 o.add("foo"); |
| 8839 return o; | 8839 return o; |
| 8840 } | 8840 } |
| 8841 | 8841 |
| 8842 checkUnnamed3516(core.List<core.String> o) { | 8842 checkUnnamed3608(core.List<core.String> o) { |
| 8843 unittest.expect(o, unittest.hasLength(2)); | 8843 unittest.expect(o, unittest.hasLength(2)); |
| 8844 unittest.expect(o[0], unittest.equals('foo')); | 8844 unittest.expect(o[0], unittest.equals('foo')); |
| 8845 unittest.expect(o[1], unittest.equals('foo')); | 8845 unittest.expect(o[1], unittest.equals('foo')); |
| 8846 } | 8846 } |
| 8847 | 8847 |
| 8848 buildUnnamed3517() { | 8848 buildUnnamed3609() { |
| 8849 var o = new core.List<core.String>(); | 8849 var o = new core.List<core.String>(); |
| 8850 o.add("foo"); | 8850 o.add("foo"); |
| 8851 o.add("foo"); | 8851 o.add("foo"); |
| 8852 return o; | 8852 return o; |
| 8853 } | 8853 } |
| 8854 | 8854 |
| 8855 checkUnnamed3517(core.List<core.String> o) { | 8855 checkUnnamed3609(core.List<core.String> o) { |
| 8856 unittest.expect(o, unittest.hasLength(2)); | 8856 unittest.expect(o, unittest.hasLength(2)); |
| 8857 unittest.expect(o[0], unittest.equals('foo')); | 8857 unittest.expect(o[0], unittest.equals('foo')); |
| 8858 unittest.expect(o[1], unittest.equals('foo')); | 8858 unittest.expect(o[1], unittest.equals('foo')); |
| 8859 } | 8859 } |
| 8860 | 8860 |
| 8861 buildUnnamed3518() { | 8861 buildUnnamed3610() { |
| 8862 var o = new core.List<core.String>(); | 8862 var o = new core.List<core.String>(); |
| 8863 o.add("foo"); | 8863 o.add("foo"); |
| 8864 o.add("foo"); | 8864 o.add("foo"); |
| 8865 return o; | 8865 return o; |
| 8866 } | 8866 } |
| 8867 | 8867 |
| 8868 checkUnnamed3518(core.List<core.String> o) { | 8868 checkUnnamed3610(core.List<core.String> o) { |
| 8869 unittest.expect(o, unittest.hasLength(2)); | 8869 unittest.expect(o, unittest.hasLength(2)); |
| 8870 unittest.expect(o[0], unittest.equals('foo')); | 8870 unittest.expect(o[0], unittest.equals('foo')); |
| 8871 unittest.expect(o[1], unittest.equals('foo')); | 8871 unittest.expect(o[1], unittest.equals('foo')); |
| 8872 } | 8872 } |
| 8873 | 8873 |
| 8874 buildUnnamed3519() { | 8874 buildUnnamed3611() { |
| 8875 var o = new core.List<core.String>(); | 8875 var o = new core.List<core.String>(); |
| 8876 o.add("foo"); | 8876 o.add("foo"); |
| 8877 o.add("foo"); | 8877 o.add("foo"); |
| 8878 return o; | 8878 return o; |
| 8879 } | 8879 } |
| 8880 | 8880 |
| 8881 checkUnnamed3519(core.List<core.String> o) { | 8881 checkUnnamed3611(core.List<core.String> o) { |
| 8882 unittest.expect(o, unittest.hasLength(2)); | 8882 unittest.expect(o, unittest.hasLength(2)); |
| 8883 unittest.expect(o[0], unittest.equals('foo')); | 8883 unittest.expect(o[0], unittest.equals('foo')); |
| 8884 unittest.expect(o[1], unittest.equals('foo')); | 8884 unittest.expect(o[1], unittest.equals('foo')); |
| 8885 } | 8885 } |
| 8886 | 8886 |
| 8887 buildUnnamed3520() { | 8887 buildUnnamed3612() { |
| 8888 var o = new core.List<core.String>(); | 8888 var o = new core.List<core.String>(); |
| 8889 o.add("foo"); | 8889 o.add("foo"); |
| 8890 o.add("foo"); | 8890 o.add("foo"); |
| 8891 return o; | 8891 return o; |
| 8892 } | 8892 } |
| 8893 | 8893 |
| 8894 checkUnnamed3520(core.List<core.String> o) { | 8894 checkUnnamed3612(core.List<core.String> o) { |
| 8895 unittest.expect(o, unittest.hasLength(2)); | 8895 unittest.expect(o, unittest.hasLength(2)); |
| 8896 unittest.expect(o[0], unittest.equals('foo')); | 8896 unittest.expect(o[0], unittest.equals('foo')); |
| 8897 unittest.expect(o[1], unittest.equals('foo')); | 8897 unittest.expect(o[1], unittest.equals('foo')); |
| 8898 } | 8898 } |
| 8899 | 8899 |
| 8900 buildUnnamed3521() { | 8900 buildUnnamed3613() { |
| 8901 var o = new core.List<core.String>(); | 8901 var o = new core.List<core.String>(); |
| 8902 o.add("foo"); | 8902 o.add("foo"); |
| 8903 o.add("foo"); | 8903 o.add("foo"); |
| 8904 return o; | 8904 return o; |
| 8905 } | 8905 } |
| 8906 | 8906 |
| 8907 checkUnnamed3521(core.List<core.String> o) { | 8907 checkUnnamed3613(core.List<core.String> o) { |
| 8908 unittest.expect(o, unittest.hasLength(2)); | 8908 unittest.expect(o, unittest.hasLength(2)); |
| 8909 unittest.expect(o[0], unittest.equals('foo')); | 8909 unittest.expect(o[0], unittest.equals('foo')); |
| 8910 unittest.expect(o[1], unittest.equals('foo')); | 8910 unittest.expect(o[1], unittest.equals('foo')); |
| 8911 } | 8911 } |
| 8912 | 8912 |
| 8913 buildUnnamed3522() { | 8913 buildUnnamed3614() { |
| 8914 var o = new core.List<core.String>(); | 8914 var o = new core.List<core.String>(); |
| 8915 o.add("foo"); | 8915 o.add("foo"); |
| 8916 o.add("foo"); | 8916 o.add("foo"); |
| 8917 return o; | 8917 return o; |
| 8918 } | 8918 } |
| 8919 | 8919 |
| 8920 checkUnnamed3522(core.List<core.String> o) { | 8920 checkUnnamed3614(core.List<core.String> o) { |
| 8921 unittest.expect(o, unittest.hasLength(2)); | 8921 unittest.expect(o, unittest.hasLength(2)); |
| 8922 unittest.expect(o[0], unittest.equals('foo')); | 8922 unittest.expect(o[0], unittest.equals('foo')); |
| 8923 unittest.expect(o[1], unittest.equals('foo')); | 8923 unittest.expect(o[1], unittest.equals('foo')); |
| 8924 } | 8924 } |
| 8925 | 8925 |
| 8926 buildUnnamed3523() { | 8926 buildUnnamed3615() { |
| 8927 var o = new core.List<core.String>(); | 8927 var o = new core.List<core.String>(); |
| 8928 o.add("foo"); | 8928 o.add("foo"); |
| 8929 o.add("foo"); | 8929 o.add("foo"); |
| 8930 return o; | 8930 return o; |
| 8931 } | 8931 } |
| 8932 | 8932 |
| 8933 checkUnnamed3523(core.List<core.String> o) { | 8933 checkUnnamed3615(core.List<core.String> o) { |
| 8934 unittest.expect(o, unittest.hasLength(2)); | 8934 unittest.expect(o, unittest.hasLength(2)); |
| 8935 unittest.expect(o[0], unittest.equals('foo')); | 8935 unittest.expect(o[0], unittest.equals('foo')); |
| 8936 unittest.expect(o[1], unittest.equals('foo')); | 8936 unittest.expect(o[1], unittest.equals('foo')); |
| 8937 } | 8937 } |
| 8938 | 8938 |
| 8939 buildUnnamed3524() { | 8939 buildUnnamed3616() { |
| 8940 var o = new core.List<core.String>(); | 8940 var o = new core.List<core.String>(); |
| 8941 o.add("foo"); | 8941 o.add("foo"); |
| 8942 o.add("foo"); | 8942 o.add("foo"); |
| 8943 return o; | 8943 return o; |
| 8944 } | 8944 } |
| 8945 | 8945 |
| 8946 checkUnnamed3524(core.List<core.String> o) { | 8946 checkUnnamed3616(core.List<core.String> o) { |
| 8947 unittest.expect(o, unittest.hasLength(2)); | 8947 unittest.expect(o, unittest.hasLength(2)); |
| 8948 unittest.expect(o[0], unittest.equals('foo')); | 8948 unittest.expect(o[0], unittest.equals('foo')); |
| 8949 unittest.expect(o[1], unittest.equals('foo')); | 8949 unittest.expect(o[1], unittest.equals('foo')); |
| 8950 } | 8950 } |
| 8951 | 8951 |
| 8952 buildUnnamed3525() { | 8952 buildUnnamed3617() { |
| 8953 var o = new core.List<core.String>(); | 8953 var o = new core.List<core.String>(); |
| 8954 o.add("foo"); | 8954 o.add("foo"); |
| 8955 o.add("foo"); | 8955 o.add("foo"); |
| 8956 return o; | 8956 return o; |
| 8957 } | 8957 } |
| 8958 | 8958 |
| 8959 checkUnnamed3525(core.List<core.String> o) { | 8959 checkUnnamed3617(core.List<core.String> o) { |
| 8960 unittest.expect(o, unittest.hasLength(2)); | 8960 unittest.expect(o, unittest.hasLength(2)); |
| 8961 unittest.expect(o[0], unittest.equals('foo')); | 8961 unittest.expect(o[0], unittest.equals('foo')); |
| 8962 unittest.expect(o[1], unittest.equals('foo')); | 8962 unittest.expect(o[1], unittest.equals('foo')); |
| 8963 } | 8963 } |
| 8964 | 8964 |
| 8965 buildUnnamed3526() { | 8965 buildUnnamed3618() { |
| 8966 var o = new core.List<core.String>(); | 8966 var o = new core.List<core.String>(); |
| 8967 o.add("foo"); | 8967 o.add("foo"); |
| 8968 o.add("foo"); | 8968 o.add("foo"); |
| 8969 return o; | 8969 return o; |
| 8970 } | 8970 } |
| 8971 | 8971 |
| 8972 checkUnnamed3526(core.List<core.String> o) { | 8972 checkUnnamed3618(core.List<core.String> o) { |
| 8973 unittest.expect(o, unittest.hasLength(2)); | 8973 unittest.expect(o, unittest.hasLength(2)); |
| 8974 unittest.expect(o[0], unittest.equals('foo')); | 8974 unittest.expect(o[0], unittest.equals('foo')); |
| 8975 unittest.expect(o[1], unittest.equals('foo')); | 8975 unittest.expect(o[1], unittest.equals('foo')); |
| 8976 } | 8976 } |
| 8977 | 8977 |
| 8978 buildUnnamed3527() { | 8978 buildUnnamed3619() { |
| 8979 var o = new core.List<core.String>(); | 8979 var o = new core.List<core.String>(); |
| 8980 o.add("foo"); | 8980 o.add("foo"); |
| 8981 o.add("foo"); | 8981 o.add("foo"); |
| 8982 return o; | 8982 return o; |
| 8983 } | 8983 } |
| 8984 | 8984 |
| 8985 checkUnnamed3527(core.List<core.String> o) { | 8985 checkUnnamed3619(core.List<core.String> o) { |
| 8986 unittest.expect(o, unittest.hasLength(2)); | 8986 unittest.expect(o, unittest.hasLength(2)); |
| 8987 unittest.expect(o[0], unittest.equals('foo')); | 8987 unittest.expect(o[0], unittest.equals('foo')); |
| 8988 unittest.expect(o[1], unittest.equals('foo')); | 8988 unittest.expect(o[1], unittest.equals('foo')); |
| 8989 } | 8989 } |
| 8990 | 8990 |
| 8991 buildUnnamed3528() { | 8991 buildUnnamed3620() { |
| 8992 var o = new core.List<core.String>(); | 8992 var o = new core.List<core.String>(); |
| 8993 o.add("foo"); | 8993 o.add("foo"); |
| 8994 o.add("foo"); | 8994 o.add("foo"); |
| 8995 return o; | 8995 return o; |
| 8996 } | 8996 } |
| 8997 | 8997 |
| 8998 checkUnnamed3528(core.List<core.String> o) { | 8998 checkUnnamed3620(core.List<core.String> o) { |
| 8999 unittest.expect(o, unittest.hasLength(2)); | 8999 unittest.expect(o, unittest.hasLength(2)); |
| 9000 unittest.expect(o[0], unittest.equals('foo')); | 9000 unittest.expect(o[0], unittest.equals('foo')); |
| 9001 unittest.expect(o[1], unittest.equals('foo')); | 9001 unittest.expect(o[1], unittest.equals('foo')); |
| 9002 } | 9002 } |
| 9003 | 9003 |
| 9004 buildUnnamed3529() { | 9004 buildUnnamed3621() { |
| 9005 var o = new core.List<core.String>(); | 9005 var o = new core.List<core.String>(); |
| 9006 o.add("foo"); | 9006 o.add("foo"); |
| 9007 o.add("foo"); | 9007 o.add("foo"); |
| 9008 return o; | 9008 return o; |
| 9009 } | 9009 } |
| 9010 | 9010 |
| 9011 checkUnnamed3529(core.List<core.String> o) { | 9011 checkUnnamed3621(core.List<core.String> o) { |
| 9012 unittest.expect(o, unittest.hasLength(2)); | 9012 unittest.expect(o, unittest.hasLength(2)); |
| 9013 unittest.expect(o[0], unittest.equals('foo')); | 9013 unittest.expect(o[0], unittest.equals('foo')); |
| 9014 unittest.expect(o[1], unittest.equals('foo')); | 9014 unittest.expect(o[1], unittest.equals('foo')); |
| 9015 } | 9015 } |
| 9016 | 9016 |
| 9017 buildUnnamed3530() { | 9017 buildUnnamed3622() { |
| 9018 var o = new core.List<core.String>(); | 9018 var o = new core.List<core.String>(); |
| 9019 o.add("foo"); | 9019 o.add("foo"); |
| 9020 o.add("foo"); | 9020 o.add("foo"); |
| 9021 return o; | 9021 return o; |
| 9022 } | 9022 } |
| 9023 | 9023 |
| 9024 checkUnnamed3530(core.List<core.String> o) { | 9024 checkUnnamed3622(core.List<core.String> o) { |
| 9025 unittest.expect(o, unittest.hasLength(2)); | 9025 unittest.expect(o, unittest.hasLength(2)); |
| 9026 unittest.expect(o[0], unittest.equals('foo')); | 9026 unittest.expect(o[0], unittest.equals('foo')); |
| 9027 unittest.expect(o[1], unittest.equals('foo')); | 9027 unittest.expect(o[1], unittest.equals('foo')); |
| 9028 } | 9028 } |
| 9029 | 9029 |
| 9030 buildUnnamed3531() { | 9030 buildUnnamed3623() { |
| 9031 var o = new core.List<core.String>(); | 9031 var o = new core.List<core.String>(); |
| 9032 o.add("foo"); | 9032 o.add("foo"); |
| 9033 o.add("foo"); | 9033 o.add("foo"); |
| 9034 return o; | 9034 return o; |
| 9035 } | 9035 } |
| 9036 | 9036 |
| 9037 checkUnnamed3531(core.List<core.String> o) { | 9037 checkUnnamed3623(core.List<core.String> o) { |
| 9038 unittest.expect(o, unittest.hasLength(2)); | 9038 unittest.expect(o, unittest.hasLength(2)); |
| 9039 unittest.expect(o[0], unittest.equals('foo')); | 9039 unittest.expect(o[0], unittest.equals('foo')); |
| 9040 unittest.expect(o[1], unittest.equals('foo')); | 9040 unittest.expect(o[1], unittest.equals('foo')); |
| 9041 } | 9041 } |
| 9042 | 9042 |
| 9043 buildUnnamed3532() { | 9043 buildUnnamed3624() { |
| 9044 var o = new core.List<core.String>(); | 9044 var o = new core.List<core.String>(); |
| 9045 o.add("foo"); | 9045 o.add("foo"); |
| 9046 o.add("foo"); | 9046 o.add("foo"); |
| 9047 return o; | 9047 return o; |
| 9048 } | 9048 } |
| 9049 | 9049 |
| 9050 checkUnnamed3532(core.List<core.String> o) { | 9050 checkUnnamed3624(core.List<core.String> o) { |
| 9051 unittest.expect(o, unittest.hasLength(2)); | 9051 unittest.expect(o, unittest.hasLength(2)); |
| 9052 unittest.expect(o[0], unittest.equals('foo')); | 9052 unittest.expect(o[0], unittest.equals('foo')); |
| 9053 unittest.expect(o[1], unittest.equals('foo')); | 9053 unittest.expect(o[1], unittest.equals('foo')); |
| 9054 } | 9054 } |
| 9055 | 9055 |
| 9056 buildUnnamed3533() { | 9056 buildUnnamed3625() { |
| 9057 var o = new core.List<core.String>(); | 9057 var o = new core.List<core.String>(); |
| 9058 o.add("foo"); | 9058 o.add("foo"); |
| 9059 o.add("foo"); | 9059 o.add("foo"); |
| 9060 return o; | 9060 return o; |
| 9061 } | 9061 } |
| 9062 | 9062 |
| 9063 checkUnnamed3533(core.List<core.String> o) { | 9063 checkUnnamed3625(core.List<core.String> o) { |
| 9064 unittest.expect(o, unittest.hasLength(2)); | 9064 unittest.expect(o, unittest.hasLength(2)); |
| 9065 unittest.expect(o[0], unittest.equals('foo')); | 9065 unittest.expect(o[0], unittest.equals('foo')); |
| 9066 unittest.expect(o[1], unittest.equals('foo')); | 9066 unittest.expect(o[1], unittest.equals('foo')); |
| 9067 } | 9067 } |
| 9068 | 9068 |
| 9069 buildUnnamed3534() { | 9069 buildUnnamed3626() { |
| 9070 var o = new core.List<core.String>(); | 9070 var o = new core.List<core.String>(); |
| 9071 o.add("foo"); | 9071 o.add("foo"); |
| 9072 o.add("foo"); | 9072 o.add("foo"); |
| 9073 return o; | 9073 return o; |
| 9074 } | 9074 } |
| 9075 | 9075 |
| 9076 checkUnnamed3534(core.List<core.String> o) { | 9076 checkUnnamed3626(core.List<core.String> o) { |
| 9077 unittest.expect(o, unittest.hasLength(2)); | 9077 unittest.expect(o, unittest.hasLength(2)); |
| 9078 unittest.expect(o[0], unittest.equals('foo')); | 9078 unittest.expect(o[0], unittest.equals('foo')); |
| 9079 unittest.expect(o[1], unittest.equals('foo')); | 9079 unittest.expect(o[1], unittest.equals('foo')); |
| 9080 } | 9080 } |
| 9081 | 9081 |
| 9082 buildUnnamed3535() { | 9082 buildUnnamed3627() { |
| 9083 var o = new core.List<core.String>(); | 9083 var o = new core.List<core.String>(); |
| 9084 o.add("foo"); | 9084 o.add("foo"); |
| 9085 o.add("foo"); | 9085 o.add("foo"); |
| 9086 return o; | 9086 return o; |
| 9087 } | 9087 } |
| 9088 | 9088 |
| 9089 checkUnnamed3535(core.List<core.String> o) { | 9089 checkUnnamed3627(core.List<core.String> o) { |
| 9090 unittest.expect(o, unittest.hasLength(2)); | 9090 unittest.expect(o, unittest.hasLength(2)); |
| 9091 unittest.expect(o[0], unittest.equals('foo')); | 9091 unittest.expect(o[0], unittest.equals('foo')); |
| 9092 unittest.expect(o[1], unittest.equals('foo')); | 9092 unittest.expect(o[1], unittest.equals('foo')); |
| 9093 } | 9093 } |
| 9094 | 9094 |
| 9095 buildUnnamed3536() { | 9095 buildUnnamed3628() { |
| 9096 var o = new core.List<core.String>(); | 9096 var o = new core.List<core.String>(); |
| 9097 o.add("foo"); | 9097 o.add("foo"); |
| 9098 o.add("foo"); | 9098 o.add("foo"); |
| 9099 return o; | 9099 return o; |
| 9100 } | 9100 } |
| 9101 | 9101 |
| 9102 checkUnnamed3536(core.List<core.String> o) { | 9102 checkUnnamed3628(core.List<core.String> o) { |
| 9103 unittest.expect(o, unittest.hasLength(2)); | 9103 unittest.expect(o, unittest.hasLength(2)); |
| 9104 unittest.expect(o[0], unittest.equals('foo')); | 9104 unittest.expect(o[0], unittest.equals('foo')); |
| 9105 unittest.expect(o[1], unittest.equals('foo')); | 9105 unittest.expect(o[1], unittest.equals('foo')); |
| 9106 } | 9106 } |
| 9107 | 9107 |
| 9108 buildUnnamed3537() { | 9108 buildUnnamed3629() { |
| 9109 var o = new core.List<core.String>(); | 9109 var o = new core.List<core.String>(); |
| 9110 o.add("foo"); | 9110 o.add("foo"); |
| 9111 o.add("foo"); | 9111 o.add("foo"); |
| 9112 return o; | 9112 return o; |
| 9113 } | 9113 } |
| 9114 | 9114 |
| 9115 checkUnnamed3537(core.List<core.String> o) { | 9115 checkUnnamed3629(core.List<core.String> o) { |
| 9116 unittest.expect(o, unittest.hasLength(2)); | 9116 unittest.expect(o, unittest.hasLength(2)); |
| 9117 unittest.expect(o[0], unittest.equals('foo')); | 9117 unittest.expect(o[0], unittest.equals('foo')); |
| 9118 unittest.expect(o[1], unittest.equals('foo')); | 9118 unittest.expect(o[1], unittest.equals('foo')); |
| 9119 } | 9119 } |
| 9120 | 9120 |
| 9121 buildUnnamed3538() { | 9121 buildUnnamed3630() { |
| 9122 var o = new core.List<core.String>(); | 9122 var o = new core.List<core.String>(); |
| 9123 o.add("foo"); | 9123 o.add("foo"); |
| 9124 o.add("foo"); | 9124 o.add("foo"); |
| 9125 return o; | 9125 return o; |
| 9126 } | 9126 } |
| 9127 | 9127 |
| 9128 checkUnnamed3538(core.List<core.String> o) { | 9128 checkUnnamed3630(core.List<core.String> o) { |
| 9129 unittest.expect(o, unittest.hasLength(2)); | 9129 unittest.expect(o, unittest.hasLength(2)); |
| 9130 unittest.expect(o[0], unittest.equals('foo')); | 9130 unittest.expect(o[0], unittest.equals('foo')); |
| 9131 unittest.expect(o[1], unittest.equals('foo')); | 9131 unittest.expect(o[1], unittest.equals('foo')); |
| 9132 } | 9132 } |
| 9133 | 9133 |
| 9134 buildUnnamed3539() { | 9134 buildUnnamed3631() { |
| 9135 var o = new core.List<core.String>(); | 9135 var o = new core.List<core.String>(); |
| 9136 o.add("foo"); | 9136 o.add("foo"); |
| 9137 o.add("foo"); | 9137 o.add("foo"); |
| 9138 return o; | 9138 return o; |
| 9139 } | 9139 } |
| 9140 | 9140 |
| 9141 checkUnnamed3539(core.List<core.String> o) { | 9141 checkUnnamed3631(core.List<core.String> o) { |
| 9142 unittest.expect(o, unittest.hasLength(2)); | 9142 unittest.expect(o, unittest.hasLength(2)); |
| 9143 unittest.expect(o[0], unittest.equals('foo')); | 9143 unittest.expect(o[0], unittest.equals('foo')); |
| 9144 unittest.expect(o[1], unittest.equals('foo')); | 9144 unittest.expect(o[1], unittest.equals('foo')); |
| 9145 } | 9145 } |
| 9146 | 9146 |
| 9147 buildUnnamed3540() { | 9147 buildUnnamed3632() { |
| 9148 var o = new core.List<core.String>(); | 9148 var o = new core.List<core.String>(); |
| 9149 o.add("foo"); | 9149 o.add("foo"); |
| 9150 o.add("foo"); | 9150 o.add("foo"); |
| 9151 return o; | 9151 return o; |
| 9152 } | 9152 } |
| 9153 | 9153 |
| 9154 checkUnnamed3540(core.List<core.String> o) { | 9154 checkUnnamed3632(core.List<core.String> o) { |
| 9155 unittest.expect(o, unittest.hasLength(2)); | 9155 unittest.expect(o, unittest.hasLength(2)); |
| 9156 unittest.expect(o[0], unittest.equals('foo')); | 9156 unittest.expect(o[0], unittest.equals('foo')); |
| 9157 unittest.expect(o[1], unittest.equals('foo')); | 9157 unittest.expect(o[1], unittest.equals('foo')); |
| 9158 } | 9158 } |
| 9159 | 9159 |
| 9160 buildUnnamed3541() { | 9160 buildUnnamed3633() { |
| 9161 var o = new core.List<core.String>(); | 9161 var o = new core.List<core.String>(); |
| 9162 o.add("foo"); | 9162 o.add("foo"); |
| 9163 o.add("foo"); | 9163 o.add("foo"); |
| 9164 return o; | 9164 return o; |
| 9165 } | 9165 } |
| 9166 | 9166 |
| 9167 checkUnnamed3541(core.List<core.String> o) { | 9167 checkUnnamed3633(core.List<core.String> o) { |
| 9168 unittest.expect(o, unittest.hasLength(2)); | 9168 unittest.expect(o, unittest.hasLength(2)); |
| 9169 unittest.expect(o[0], unittest.equals('foo')); | 9169 unittest.expect(o[0], unittest.equals('foo')); |
| 9170 unittest.expect(o[1], unittest.equals('foo')); | 9170 unittest.expect(o[1], unittest.equals('foo')); |
| 9171 } | 9171 } |
| 9172 | 9172 |
| 9173 buildUnnamed3542() { | 9173 buildUnnamed3634() { |
| 9174 var o = new core.List<core.String>(); | 9174 var o = new core.List<core.String>(); |
| 9175 o.add("foo"); | 9175 o.add("foo"); |
| 9176 o.add("foo"); | 9176 o.add("foo"); |
| 9177 return o; | 9177 return o; |
| 9178 } | 9178 } |
| 9179 | 9179 |
| 9180 checkUnnamed3542(core.List<core.String> o) { | 9180 checkUnnamed3634(core.List<core.String> o) { |
| 9181 unittest.expect(o, unittest.hasLength(2)); | 9181 unittest.expect(o, unittest.hasLength(2)); |
| 9182 unittest.expect(o[0], unittest.equals('foo')); | 9182 unittest.expect(o[0], unittest.equals('foo')); |
| 9183 unittest.expect(o[1], unittest.equals('foo')); | 9183 unittest.expect(o[1], unittest.equals('foo')); |
| 9184 } | 9184 } |
| 9185 | 9185 |
| 9186 buildUnnamed3543() { | 9186 buildUnnamed3635() { |
| 9187 var o = new core.List<core.String>(); | 9187 var o = new core.List<core.String>(); |
| 9188 o.add("foo"); | 9188 o.add("foo"); |
| 9189 o.add("foo"); | 9189 o.add("foo"); |
| 9190 return o; | 9190 return o; |
| 9191 } | 9191 } |
| 9192 | 9192 |
| 9193 checkUnnamed3543(core.List<core.String> o) { | 9193 checkUnnamed3635(core.List<core.String> o) { |
| 9194 unittest.expect(o, unittest.hasLength(2)); | 9194 unittest.expect(o, unittest.hasLength(2)); |
| 9195 unittest.expect(o[0], unittest.equals('foo')); | 9195 unittest.expect(o[0], unittest.equals('foo')); |
| 9196 unittest.expect(o[1], unittest.equals('foo')); | 9196 unittest.expect(o[1], unittest.equals('foo')); |
| 9197 } | 9197 } |
| 9198 | 9198 |
| 9199 buildUnnamed3544() { | 9199 buildUnnamed3636() { |
| 9200 var o = new core.List<core.String>(); | 9200 var o = new core.List<core.String>(); |
| 9201 o.add("foo"); | 9201 o.add("foo"); |
| 9202 o.add("foo"); | 9202 o.add("foo"); |
| 9203 return o; | 9203 return o; |
| 9204 } | 9204 } |
| 9205 | 9205 |
| 9206 checkUnnamed3544(core.List<core.String> o) { | 9206 checkUnnamed3636(core.List<core.String> o) { |
| 9207 unittest.expect(o, unittest.hasLength(2)); | 9207 unittest.expect(o, unittest.hasLength(2)); |
| 9208 unittest.expect(o[0], unittest.equals('foo')); | 9208 unittest.expect(o[0], unittest.equals('foo')); |
| 9209 unittest.expect(o[1], unittest.equals('foo')); | 9209 unittest.expect(o[1], unittest.equals('foo')); |
| 9210 } | 9210 } |
| 9211 | 9211 |
| 9212 buildUnnamed3545() { | 9212 buildUnnamed3637() { |
| 9213 var o = new core.List<core.String>(); | 9213 var o = new core.List<core.String>(); |
| 9214 o.add("foo"); | 9214 o.add("foo"); |
| 9215 o.add("foo"); | 9215 o.add("foo"); |
| 9216 return o; | 9216 return o; |
| 9217 } | 9217 } |
| 9218 | 9218 |
| 9219 checkUnnamed3545(core.List<core.String> o) { | 9219 checkUnnamed3637(core.List<core.String> o) { |
| 9220 unittest.expect(o, unittest.hasLength(2)); | 9220 unittest.expect(o, unittest.hasLength(2)); |
| 9221 unittest.expect(o[0], unittest.equals('foo')); | 9221 unittest.expect(o[0], unittest.equals('foo')); |
| 9222 unittest.expect(o[1], unittest.equals('foo')); | 9222 unittest.expect(o[1], unittest.equals('foo')); |
| 9223 } | 9223 } |
| 9224 | 9224 |
| 9225 buildUnnamed3546() { | 9225 buildUnnamed3638() { |
| 9226 var o = new core.List<core.String>(); | 9226 var o = new core.List<core.String>(); |
| 9227 o.add("foo"); | 9227 o.add("foo"); |
| 9228 o.add("foo"); | 9228 o.add("foo"); |
| 9229 return o; | 9229 return o; |
| 9230 } | 9230 } |
| 9231 | 9231 |
| 9232 checkUnnamed3546(core.List<core.String> o) { | 9232 checkUnnamed3638(core.List<core.String> o) { |
| 9233 unittest.expect(o, unittest.hasLength(2)); | 9233 unittest.expect(o, unittest.hasLength(2)); |
| 9234 unittest.expect(o[0], unittest.equals('foo')); | 9234 unittest.expect(o[0], unittest.equals('foo')); |
| 9235 unittest.expect(o[1], unittest.equals('foo')); | 9235 unittest.expect(o[1], unittest.equals('foo')); |
| 9236 } | 9236 } |
| 9237 | 9237 |
| 9238 buildUnnamed3547() { | 9238 buildUnnamed3639() { |
| 9239 var o = new core.List<core.String>(); | 9239 var o = new core.List<core.String>(); |
| 9240 o.add("foo"); | 9240 o.add("foo"); |
| 9241 o.add("foo"); | 9241 o.add("foo"); |
| 9242 return o; | 9242 return o; |
| 9243 } | 9243 } |
| 9244 | 9244 |
| 9245 checkUnnamed3547(core.List<core.String> o) { | 9245 checkUnnamed3639(core.List<core.String> o) { |
| 9246 unittest.expect(o, unittest.hasLength(2)); | 9246 unittest.expect(o, unittest.hasLength(2)); |
| 9247 unittest.expect(o[0], unittest.equals('foo')); | 9247 unittest.expect(o[0], unittest.equals('foo')); |
| 9248 unittest.expect(o[1], unittest.equals('foo')); | 9248 unittest.expect(o[1], unittest.equals('foo')); |
| 9249 } | 9249 } |
| 9250 | 9250 |
| 9251 buildUnnamed3548() { | 9251 buildUnnamed3640() { |
| 9252 var o = new core.List<core.String>(); | 9252 var o = new core.List<core.String>(); |
| 9253 o.add("foo"); | 9253 o.add("foo"); |
| 9254 o.add("foo"); | 9254 o.add("foo"); |
| 9255 return o; | 9255 return o; |
| 9256 } | 9256 } |
| 9257 | 9257 |
| 9258 checkUnnamed3548(core.List<core.String> o) { | 9258 checkUnnamed3640(core.List<core.String> o) { |
| 9259 unittest.expect(o, unittest.hasLength(2)); | 9259 unittest.expect(o, unittest.hasLength(2)); |
| 9260 unittest.expect(o[0], unittest.equals('foo')); | 9260 unittest.expect(o[0], unittest.equals('foo')); |
| 9261 unittest.expect(o[1], unittest.equals('foo')); | 9261 unittest.expect(o[1], unittest.equals('foo')); |
| 9262 } | 9262 } |
| 9263 | 9263 |
| 9264 buildUnnamed3549() { | 9264 buildUnnamed3641() { |
| 9265 var o = new core.List<core.String>(); | 9265 var o = new core.List<core.String>(); |
| 9266 o.add("foo"); | 9266 o.add("foo"); |
| 9267 o.add("foo"); | 9267 o.add("foo"); |
| 9268 return o; | 9268 return o; |
| 9269 } | 9269 } |
| 9270 | 9270 |
| 9271 checkUnnamed3549(core.List<core.String> o) { | 9271 checkUnnamed3641(core.List<core.String> o) { |
| 9272 unittest.expect(o, unittest.hasLength(2)); | 9272 unittest.expect(o, unittest.hasLength(2)); |
| 9273 unittest.expect(o[0], unittest.equals('foo')); | 9273 unittest.expect(o[0], unittest.equals('foo')); |
| 9274 unittest.expect(o[1], unittest.equals('foo')); | 9274 unittest.expect(o[1], unittest.equals('foo')); |
| 9275 } | 9275 } |
| 9276 | 9276 |
| 9277 buildUnnamed3550() { | 9277 buildUnnamed3642() { |
| 9278 var o = new core.List<core.String>(); | 9278 var o = new core.List<core.String>(); |
| 9279 o.add("foo"); | 9279 o.add("foo"); |
| 9280 o.add("foo"); | 9280 o.add("foo"); |
| 9281 return o; | 9281 return o; |
| 9282 } | 9282 } |
| 9283 | 9283 |
| 9284 checkUnnamed3550(core.List<core.String> o) { | 9284 checkUnnamed3642(core.List<core.String> o) { |
| 9285 unittest.expect(o, unittest.hasLength(2)); | 9285 unittest.expect(o, unittest.hasLength(2)); |
| 9286 unittest.expect(o[0], unittest.equals('foo')); | 9286 unittest.expect(o[0], unittest.equals('foo')); |
| 9287 unittest.expect(o[1], unittest.equals('foo')); | 9287 unittest.expect(o[1], unittest.equals('foo')); |
| 9288 } | 9288 } |
| 9289 | 9289 |
| 9290 buildUnnamed3551() { | 9290 buildUnnamed3643() { |
| 9291 var o = new core.List<core.String>(); | 9291 var o = new core.List<core.String>(); |
| 9292 o.add("foo"); | 9292 o.add("foo"); |
| 9293 o.add("foo"); | 9293 o.add("foo"); |
| 9294 return o; | 9294 return o; |
| 9295 } | 9295 } |
| 9296 | 9296 |
| 9297 checkUnnamed3551(core.List<core.String> o) { | 9297 checkUnnamed3643(core.List<core.String> o) { |
| 9298 unittest.expect(o, unittest.hasLength(2)); | 9298 unittest.expect(o, unittest.hasLength(2)); |
| 9299 unittest.expect(o[0], unittest.equals('foo')); | 9299 unittest.expect(o[0], unittest.equals('foo')); |
| 9300 unittest.expect(o[1], unittest.equals('foo')); | 9300 unittest.expect(o[1], unittest.equals('foo')); |
| 9301 } | 9301 } |
| 9302 | 9302 |
| 9303 buildUnnamed3552() { | 9303 buildUnnamed3644() { |
| 9304 var o = new core.List<core.String>(); | 9304 var o = new core.List<core.String>(); |
| 9305 o.add("foo"); | 9305 o.add("foo"); |
| 9306 o.add("foo"); | 9306 o.add("foo"); |
| 9307 return o; | 9307 return o; |
| 9308 } | 9308 } |
| 9309 | 9309 |
| 9310 checkUnnamed3552(core.List<core.String> o) { | 9310 checkUnnamed3644(core.List<core.String> o) { |
| 9311 unittest.expect(o, unittest.hasLength(2)); | 9311 unittest.expect(o, unittest.hasLength(2)); |
| 9312 unittest.expect(o[0], unittest.equals('foo')); | 9312 unittest.expect(o[0], unittest.equals('foo')); |
| 9313 unittest.expect(o[1], unittest.equals('foo')); | 9313 unittest.expect(o[1], unittest.equals('foo')); |
| 9314 } | 9314 } |
| 9315 | 9315 |
| 9316 buildUnnamed3553() { | 9316 buildUnnamed3645() { |
| 9317 var o = new core.List<core.String>(); | 9317 var o = new core.List<core.String>(); |
| 9318 o.add("foo"); | 9318 o.add("foo"); |
| 9319 o.add("foo"); | 9319 o.add("foo"); |
| 9320 return o; | 9320 return o; |
| 9321 } | 9321 } |
| 9322 | 9322 |
| 9323 checkUnnamed3553(core.List<core.String> o) { | 9323 checkUnnamed3645(core.List<core.String> o) { |
| 9324 unittest.expect(o, unittest.hasLength(2)); | 9324 unittest.expect(o, unittest.hasLength(2)); |
| 9325 unittest.expect(o[0], unittest.equals('foo')); | 9325 unittest.expect(o[0], unittest.equals('foo')); |
| 9326 unittest.expect(o[1], unittest.equals('foo')); | 9326 unittest.expect(o[1], unittest.equals('foo')); |
| 9327 } | 9327 } |
| 9328 | 9328 |
| 9329 buildUnnamed3554() { | 9329 buildUnnamed3646() { |
| 9330 var o = new core.List<core.String>(); | 9330 var o = new core.List<core.String>(); |
| 9331 o.add("foo"); | 9331 o.add("foo"); |
| 9332 o.add("foo"); | 9332 o.add("foo"); |
| 9333 return o; | 9333 return o; |
| 9334 } | 9334 } |
| 9335 | 9335 |
| 9336 checkUnnamed3554(core.List<core.String> o) { | 9336 checkUnnamed3646(core.List<core.String> o) { |
| 9337 unittest.expect(o, unittest.hasLength(2)); | 9337 unittest.expect(o, unittest.hasLength(2)); |
| 9338 unittest.expect(o[0], unittest.equals('foo')); | 9338 unittest.expect(o[0], unittest.equals('foo')); |
| 9339 unittest.expect(o[1], unittest.equals('foo')); | 9339 unittest.expect(o[1], unittest.equals('foo')); |
| 9340 } | 9340 } |
| 9341 | 9341 |
| 9342 buildUnnamed3555() { | 9342 buildUnnamed3647() { |
| 9343 var o = new core.List<core.String>(); | 9343 var o = new core.List<core.String>(); |
| 9344 o.add("foo"); | 9344 o.add("foo"); |
| 9345 o.add("foo"); | 9345 o.add("foo"); |
| 9346 return o; | 9346 return o; |
| 9347 } | 9347 } |
| 9348 | 9348 |
| 9349 checkUnnamed3555(core.List<core.String> o) { | 9349 checkUnnamed3647(core.List<core.String> o) { |
| 9350 unittest.expect(o, unittest.hasLength(2)); | 9350 unittest.expect(o, unittest.hasLength(2)); |
| 9351 unittest.expect(o[0], unittest.equals('foo')); | 9351 unittest.expect(o[0], unittest.equals('foo')); |
| 9352 unittest.expect(o[1], unittest.equals('foo')); | 9352 unittest.expect(o[1], unittest.equals('foo')); |
| 9353 } | 9353 } |
| 9354 | 9354 |
| 9355 buildUnnamed3556() { | 9355 buildUnnamed3648() { |
| 9356 var o = new core.List<core.String>(); | 9356 var o = new core.List<core.String>(); |
| 9357 o.add("foo"); | 9357 o.add("foo"); |
| 9358 o.add("foo"); | 9358 o.add("foo"); |
| 9359 return o; | 9359 return o; |
| 9360 } | 9360 } |
| 9361 | 9361 |
| 9362 checkUnnamed3556(core.List<core.String> o) { | 9362 checkUnnamed3648(core.List<core.String> o) { |
| 9363 unittest.expect(o, unittest.hasLength(2)); | 9363 unittest.expect(o, unittest.hasLength(2)); |
| 9364 unittest.expect(o[0], unittest.equals('foo')); | 9364 unittest.expect(o[0], unittest.equals('foo')); |
| 9365 unittest.expect(o[1], unittest.equals('foo')); | 9365 unittest.expect(o[1], unittest.equals('foo')); |
| 9366 } | 9366 } |
| 9367 | 9367 |
| 9368 buildUnnamed3557() { | 9368 buildUnnamed3649() { |
| 9369 var o = new core.List<core.String>(); | 9369 var o = new core.List<core.String>(); |
| 9370 o.add("foo"); | 9370 o.add("foo"); |
| 9371 o.add("foo"); | 9371 o.add("foo"); |
| 9372 return o; | 9372 return o; |
| 9373 } | 9373 } |
| 9374 | 9374 |
| 9375 checkUnnamed3557(core.List<core.String> o) { | 9375 checkUnnamed3649(core.List<core.String> o) { |
| 9376 unittest.expect(o, unittest.hasLength(2)); | 9376 unittest.expect(o, unittest.hasLength(2)); |
| 9377 unittest.expect(o[0], unittest.equals('foo')); | 9377 unittest.expect(o[0], unittest.equals('foo')); |
| 9378 unittest.expect(o[1], unittest.equals('foo')); | 9378 unittest.expect(o[1], unittest.equals('foo')); |
| 9379 } | 9379 } |
| 9380 | 9380 |
| 9381 buildUnnamed3558() { | 9381 buildUnnamed3650() { |
| 9382 var o = new core.List<core.String>(); | 9382 var o = new core.List<core.String>(); |
| 9383 o.add("foo"); | 9383 o.add("foo"); |
| 9384 o.add("foo"); | 9384 o.add("foo"); |
| 9385 return o; | 9385 return o; |
| 9386 } | 9386 } |
| 9387 | 9387 |
| 9388 checkUnnamed3558(core.List<core.String> o) { | 9388 checkUnnamed3650(core.List<core.String> o) { |
| 9389 unittest.expect(o, unittest.hasLength(2)); | 9389 unittest.expect(o, unittest.hasLength(2)); |
| 9390 unittest.expect(o[0], unittest.equals('foo')); | 9390 unittest.expect(o[0], unittest.equals('foo')); |
| 9391 unittest.expect(o[1], unittest.equals('foo')); | 9391 unittest.expect(o[1], unittest.equals('foo')); |
| 9392 } | 9392 } |
| 9393 | 9393 |
| 9394 buildUnnamed3559() { | 9394 buildUnnamed3651() { |
| 9395 var o = new core.List<core.String>(); | 9395 var o = new core.List<core.String>(); |
| 9396 o.add("foo"); | 9396 o.add("foo"); |
| 9397 o.add("foo"); | 9397 o.add("foo"); |
| 9398 return o; | 9398 return o; |
| 9399 } | 9399 } |
| 9400 | 9400 |
| 9401 checkUnnamed3559(core.List<core.String> o) { | 9401 checkUnnamed3651(core.List<core.String> o) { |
| 9402 unittest.expect(o, unittest.hasLength(2)); | 9402 unittest.expect(o, unittest.hasLength(2)); |
| 9403 unittest.expect(o[0], unittest.equals('foo')); | 9403 unittest.expect(o[0], unittest.equals('foo')); |
| 9404 unittest.expect(o[1], unittest.equals('foo')); | 9404 unittest.expect(o[1], unittest.equals('foo')); |
| 9405 } | 9405 } |
| 9406 | 9406 |
| 9407 buildUnnamed3560() { | 9407 buildUnnamed3652() { |
| 9408 var o = new core.List<core.String>(); | 9408 var o = new core.List<core.String>(); |
| 9409 o.add("foo"); | 9409 o.add("foo"); |
| 9410 o.add("foo"); | 9410 o.add("foo"); |
| 9411 return o; | 9411 return o; |
| 9412 } | 9412 } |
| 9413 | 9413 |
| 9414 checkUnnamed3560(core.List<core.String> o) { | 9414 checkUnnamed3652(core.List<core.String> o) { |
| 9415 unittest.expect(o, unittest.hasLength(2)); | 9415 unittest.expect(o, unittest.hasLength(2)); |
| 9416 unittest.expect(o[0], unittest.equals('foo')); | 9416 unittest.expect(o[0], unittest.equals('foo')); |
| 9417 unittest.expect(o[1], unittest.equals('foo')); | 9417 unittest.expect(o[1], unittest.equals('foo')); |
| 9418 } | 9418 } |
| 9419 | 9419 |
| 9420 | 9420 |
| 9421 main() { | 9421 main() { |
| 9422 unittest.group("obj-schema-Account", () { | 9422 unittest.group("obj-schema-Account", () { |
| 9423 unittest.test("to-json--from-json", () { | 9423 unittest.test("to-json--from-json", () { |
| 9424 var o = buildAccount(); | 9424 var o = buildAccount(); |
| 9425 var od = new api.Account.fromJson(o.toJson()); | 9425 var od = new api.Account.fromJson(o.toJson()); |
| 9426 checkAccount(od); | 9426 checkAccount(od); |
| 9427 }); | 9427 }); |
| (...skipping 2212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11640 checkAccountUserProfile(response); | 11640 checkAccountUserProfile(response); |
| 11641 }))); | 11641 }))); |
| 11642 }); | 11642 }); |
| 11643 | 11643 |
| 11644 unittest.test("method--list", () { | 11644 unittest.test("method--list", () { |
| 11645 | 11645 |
| 11646 var mock = new HttpServerMock(); | 11646 var mock = new HttpServerMock(); |
| 11647 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; | 11647 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; |
| 11648 var arg_profileId = "foo"; | 11648 var arg_profileId = "foo"; |
| 11649 var arg_active = true; | 11649 var arg_active = true; |
| 11650 var arg_ids = buildUnnamed3474(); | 11650 var arg_ids = buildUnnamed3566(); |
| 11651 var arg_maxResults = 42; | 11651 var arg_maxResults = 42; |
| 11652 var arg_pageToken = "foo"; | 11652 var arg_pageToken = "foo"; |
| 11653 var arg_searchString = "foo"; | 11653 var arg_searchString = "foo"; |
| 11654 var arg_sortField = "foo"; | 11654 var arg_sortField = "foo"; |
| 11655 var arg_sortOrder = "foo"; | 11655 var arg_sortOrder = "foo"; |
| 11656 var arg_subaccountId = "foo"; | 11656 var arg_subaccountId = "foo"; |
| 11657 var arg_userRoleId = "foo"; | 11657 var arg_userRoleId = "foo"; |
| 11658 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11658 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11659 var path = (req.url).path; | 11659 var path = (req.url).path; |
| 11660 var pathOffset = 0; | 11660 var pathOffset = 0; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11888 checkAccount(response); | 11888 checkAccount(response); |
| 11889 }))); | 11889 }))); |
| 11890 }); | 11890 }); |
| 11891 | 11891 |
| 11892 unittest.test("method--list", () { | 11892 unittest.test("method--list", () { |
| 11893 | 11893 |
| 11894 var mock = new HttpServerMock(); | 11894 var mock = new HttpServerMock(); |
| 11895 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; | 11895 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; |
| 11896 var arg_profileId = "foo"; | 11896 var arg_profileId = "foo"; |
| 11897 var arg_active = true; | 11897 var arg_active = true; |
| 11898 var arg_ids = buildUnnamed3475(); | 11898 var arg_ids = buildUnnamed3567(); |
| 11899 var arg_maxResults = 42; | 11899 var arg_maxResults = 42; |
| 11900 var arg_pageToken = "foo"; | 11900 var arg_pageToken = "foo"; |
| 11901 var arg_searchString = "foo"; | 11901 var arg_searchString = "foo"; |
| 11902 var arg_sortField = "foo"; | 11902 var arg_sortField = "foo"; |
| 11903 var arg_sortOrder = "foo"; | 11903 var arg_sortOrder = "foo"; |
| 11904 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11904 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11905 var path = (req.url).path; | 11905 var path = (req.url).path; |
| 11906 var pathOffset = 0; | 11906 var pathOffset = 0; |
| 11907 var index; | 11907 var index; |
| 11908 var subPart; | 11908 var subPart; |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12191 }); | 12191 }); |
| 12192 | 12192 |
| 12193 unittest.test("method--list", () { | 12193 unittest.test("method--list", () { |
| 12194 | 12194 |
| 12195 var mock = new HttpServerMock(); | 12195 var mock = new HttpServerMock(); |
| 12196 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; | 12196 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; |
| 12197 var arg_profileId = "foo"; | 12197 var arg_profileId = "foo"; |
| 12198 var arg_active = true; | 12198 var arg_active = true; |
| 12199 var arg_advertiserId = "foo"; | 12199 var arg_advertiserId = "foo"; |
| 12200 var arg_archived = true; | 12200 var arg_archived = true; |
| 12201 var arg_audienceSegmentIds = buildUnnamed3476(); | 12201 var arg_audienceSegmentIds = buildUnnamed3568(); |
| 12202 var arg_campaignIds = buildUnnamed3477(); | 12202 var arg_campaignIds = buildUnnamed3569(); |
| 12203 var arg_compatibility = "foo"; | 12203 var arg_compatibility = "foo"; |
| 12204 var arg_creativeIds = buildUnnamed3478(); | 12204 var arg_creativeIds = buildUnnamed3570(); |
| 12205 var arg_creativeOptimizationConfigurationIds = buildUnnamed3479(); | 12205 var arg_creativeOptimizationConfigurationIds = buildUnnamed3571(); |
| 12206 var arg_creativeType = "foo"; | 12206 var arg_creativeType = "foo"; |
| 12207 var arg_dynamicClickTracker = true; | 12207 var arg_dynamicClickTracker = true; |
| 12208 var arg_ids = buildUnnamed3480(); | 12208 var arg_ids = buildUnnamed3572(); |
| 12209 var arg_landingPageIds = buildUnnamed3481(); | 12209 var arg_landingPageIds = buildUnnamed3573(); |
| 12210 var arg_maxResults = 42; | 12210 var arg_maxResults = 42; |
| 12211 var arg_overriddenEventTagId = "foo"; | 12211 var arg_overriddenEventTagId = "foo"; |
| 12212 var arg_pageToken = "foo"; | 12212 var arg_pageToken = "foo"; |
| 12213 var arg_placementIds = buildUnnamed3482(); | 12213 var arg_placementIds = buildUnnamed3574(); |
| 12214 var arg_remarketingListIds = buildUnnamed3483(); | 12214 var arg_remarketingListIds = buildUnnamed3575(); |
| 12215 var arg_searchString = "foo"; | 12215 var arg_searchString = "foo"; |
| 12216 var arg_sizeIds = buildUnnamed3484(); | 12216 var arg_sizeIds = buildUnnamed3576(); |
| 12217 var arg_sortField = "foo"; | 12217 var arg_sortField = "foo"; |
| 12218 var arg_sortOrder = "foo"; | 12218 var arg_sortOrder = "foo"; |
| 12219 var arg_sslCompliant = true; | 12219 var arg_sslCompliant = true; |
| 12220 var arg_sslRequired = true; | 12220 var arg_sslRequired = true; |
| 12221 var arg_type = buildUnnamed3485(); | 12221 var arg_type = buildUnnamed3577(); |
| 12222 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12222 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 12223 var path = (req.url).path; | 12223 var path = (req.url).path; |
| 12224 var pathOffset = 0; | 12224 var pathOffset = 0; |
| 12225 var index; | 12225 var index; |
| 12226 var subPart; | 12226 var subPart; |
| 12227 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 12227 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 12228 pathOffset += 1; | 12228 pathOffset += 1; |
| 12229 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 12229 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| 12230 pathOffset += 23; | 12230 pathOffset += 23; |
| 12231 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 12231 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12578 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { | 12578 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { |
| 12579 checkAdvertiserGroup(response); | 12579 checkAdvertiserGroup(response); |
| 12580 }))); | 12580 }))); |
| 12581 }); | 12581 }); |
| 12582 | 12582 |
| 12583 unittest.test("method--list", () { | 12583 unittest.test("method--list", () { |
| 12584 | 12584 |
| 12585 var mock = new HttpServerMock(); | 12585 var mock = new HttpServerMock(); |
| 12586 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; | 12586 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; |
| 12587 var arg_profileId = "foo"; | 12587 var arg_profileId = "foo"; |
| 12588 var arg_ids = buildUnnamed3486(); | 12588 var arg_ids = buildUnnamed3578(); |
| 12589 var arg_maxResults = 42; | 12589 var arg_maxResults = 42; |
| 12590 var arg_pageToken = "foo"; | 12590 var arg_pageToken = "foo"; |
| 12591 var arg_searchString = "foo"; | 12591 var arg_searchString = "foo"; |
| 12592 var arg_sortField = "foo"; | 12592 var arg_sortField = "foo"; |
| 12593 var arg_sortOrder = "foo"; | 12593 var arg_sortOrder = "foo"; |
| 12594 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12594 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 12595 var path = (req.url).path; | 12595 var path = (req.url).path; |
| 12596 var pathOffset = 0; | 12596 var pathOffset = 0; |
| 12597 var index; | 12597 var index; |
| 12598 var subPart; | 12598 var subPart; |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12877 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { | 12877 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { |
| 12878 checkAdvertiser(response); | 12878 checkAdvertiser(response); |
| 12879 }))); | 12879 }))); |
| 12880 }); | 12880 }); |
| 12881 | 12881 |
| 12882 unittest.test("method--list", () { | 12882 unittest.test("method--list", () { |
| 12883 | 12883 |
| 12884 var mock = new HttpServerMock(); | 12884 var mock = new HttpServerMock(); |
| 12885 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; | 12885 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; |
| 12886 var arg_profileId = "foo"; | 12886 var arg_profileId = "foo"; |
| 12887 var arg_advertiserGroupIds = buildUnnamed3487(); | 12887 var arg_advertiserGroupIds = buildUnnamed3579(); |
| 12888 var arg_floodlightConfigurationIds = buildUnnamed3488(); | 12888 var arg_floodlightConfigurationIds = buildUnnamed3580(); |
| 12889 var arg_ids = buildUnnamed3489(); | 12889 var arg_ids = buildUnnamed3581(); |
| 12890 var arg_includeAdvertisersWithoutGroupsOnly = true; | 12890 var arg_includeAdvertisersWithoutGroupsOnly = true; |
| 12891 var arg_maxResults = 42; | 12891 var arg_maxResults = 42; |
| 12892 var arg_onlyParent = true; | 12892 var arg_onlyParent = true; |
| 12893 var arg_pageToken = "foo"; | 12893 var arg_pageToken = "foo"; |
| 12894 var arg_searchString = "foo"; | 12894 var arg_searchString = "foo"; |
| 12895 var arg_sortField = "foo"; | 12895 var arg_sortField = "foo"; |
| 12896 var arg_sortOrder = "foo"; | 12896 var arg_sortOrder = "foo"; |
| 12897 var arg_status = "foo"; | 12897 var arg_status = "foo"; |
| 12898 var arg_subaccountId = "foo"; | 12898 var arg_subaccountId = "foo"; |
| 12899 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12899 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13385 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { | 13385 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { |
| 13386 checkCampaign(response); | 13386 checkCampaign(response); |
| 13387 }))); | 13387 }))); |
| 13388 }); | 13388 }); |
| 13389 | 13389 |
| 13390 unittest.test("method--list", () { | 13390 unittest.test("method--list", () { |
| 13391 | 13391 |
| 13392 var mock = new HttpServerMock(); | 13392 var mock = new HttpServerMock(); |
| 13393 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; | 13393 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; |
| 13394 var arg_profileId = "foo"; | 13394 var arg_profileId = "foo"; |
| 13395 var arg_advertiserGroupIds = buildUnnamed3490(); | 13395 var arg_advertiserGroupIds = buildUnnamed3582(); |
| 13396 var arg_advertiserIds = buildUnnamed3491(); | 13396 var arg_advertiserIds = buildUnnamed3583(); |
| 13397 var arg_archived = true; | 13397 var arg_archived = true; |
| 13398 var arg_atLeastOneOptimizationActivity = true; | 13398 var arg_atLeastOneOptimizationActivity = true; |
| 13399 var arg_excludedIds = buildUnnamed3492(); | 13399 var arg_excludedIds = buildUnnamed3584(); |
| 13400 var arg_ids = buildUnnamed3493(); | 13400 var arg_ids = buildUnnamed3585(); |
| 13401 var arg_maxResults = 42; | 13401 var arg_maxResults = 42; |
| 13402 var arg_overriddenEventTagId = "foo"; | 13402 var arg_overriddenEventTagId = "foo"; |
| 13403 var arg_pageToken = "foo"; | 13403 var arg_pageToken = "foo"; |
| 13404 var arg_searchString = "foo"; | 13404 var arg_searchString = "foo"; |
| 13405 var arg_sortField = "foo"; | 13405 var arg_sortField = "foo"; |
| 13406 var arg_sortOrder = "foo"; | 13406 var arg_sortOrder = "foo"; |
| 13407 var arg_subaccountId = "foo"; | 13407 var arg_subaccountId = "foo"; |
| 13408 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13408 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13409 var path = (req.url).path; | 13409 var path = (req.url).path; |
| 13410 var pathOffset = 0; | 13410 var pathOffset = 0; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13642 checkChangeLog(response); | 13642 checkChangeLog(response); |
| 13643 }))); | 13643 }))); |
| 13644 }); | 13644 }); |
| 13645 | 13645 |
| 13646 unittest.test("method--list", () { | 13646 unittest.test("method--list", () { |
| 13647 | 13647 |
| 13648 var mock = new HttpServerMock(); | 13648 var mock = new HttpServerMock(); |
| 13649 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; | 13649 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; |
| 13650 var arg_profileId = "foo"; | 13650 var arg_profileId = "foo"; |
| 13651 var arg_action = "foo"; | 13651 var arg_action = "foo"; |
| 13652 var arg_ids = buildUnnamed3494(); | 13652 var arg_ids = buildUnnamed3586(); |
| 13653 var arg_maxChangeTime = "foo"; | 13653 var arg_maxChangeTime = "foo"; |
| 13654 var arg_maxResults = 42; | 13654 var arg_maxResults = 42; |
| 13655 var arg_minChangeTime = "foo"; | 13655 var arg_minChangeTime = "foo"; |
| 13656 var arg_objectIds = buildUnnamed3495(); | 13656 var arg_objectIds = buildUnnamed3587(); |
| 13657 var arg_objectType = "foo"; | 13657 var arg_objectType = "foo"; |
| 13658 var arg_pageToken = "foo"; | 13658 var arg_pageToken = "foo"; |
| 13659 var arg_searchString = "foo"; | 13659 var arg_searchString = "foo"; |
| 13660 var arg_userProfileIds = buildUnnamed3496(); | 13660 var arg_userProfileIds = buildUnnamed3588(); |
| 13661 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13661 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13662 var path = (req.url).path; | 13662 var path = (req.url).path; |
| 13663 var pathOffset = 0; | 13663 var pathOffset = 0; |
| 13664 var index; | 13664 var index; |
| 13665 var subPart; | 13665 var subPart; |
| 13666 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13666 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13667 pathOffset += 1; | 13667 pathOffset += 1; |
| 13668 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 13668 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| 13669 pathOffset += 23; | 13669 pathOffset += 23; |
| 13670 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13670 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13718 | 13718 |
| 13719 }); | 13719 }); |
| 13720 | 13720 |
| 13721 | 13721 |
| 13722 unittest.group("resource-CitiesResourceApi", () { | 13722 unittest.group("resource-CitiesResourceApi", () { |
| 13723 unittest.test("method--list", () { | 13723 unittest.test("method--list", () { |
| 13724 | 13724 |
| 13725 var mock = new HttpServerMock(); | 13725 var mock = new HttpServerMock(); |
| 13726 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; | 13726 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; |
| 13727 var arg_profileId = "foo"; | 13727 var arg_profileId = "foo"; |
| 13728 var arg_countryDartIds = buildUnnamed3497(); | 13728 var arg_countryDartIds = buildUnnamed3589(); |
| 13729 var arg_dartIds = buildUnnamed3498(); | 13729 var arg_dartIds = buildUnnamed3590(); |
| 13730 var arg_namePrefix = "foo"; | 13730 var arg_namePrefix = "foo"; |
| 13731 var arg_regionDartIds = buildUnnamed3499(); | 13731 var arg_regionDartIds = buildUnnamed3591(); |
| 13732 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13732 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13733 var path = (req.url).path; | 13733 var path = (req.url).path; |
| 13734 var pathOffset = 0; | 13734 var pathOffset = 0; |
| 13735 var index; | 13735 var index; |
| 13736 var subPart; | 13736 var subPart; |
| 13737 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13737 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13738 pathOffset += 1; | 13738 pathOffset += 1; |
| 13739 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 13739 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| 13740 pathOffset += 23; | 13740 pathOffset += 23; |
| 13741 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13741 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14066 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { | 14066 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { |
| 14067 checkContentCategory(response); | 14067 checkContentCategory(response); |
| 14068 }))); | 14068 }))); |
| 14069 }); | 14069 }); |
| 14070 | 14070 |
| 14071 unittest.test("method--list", () { | 14071 unittest.test("method--list", () { |
| 14072 | 14072 |
| 14073 var mock = new HttpServerMock(); | 14073 var mock = new HttpServerMock(); |
| 14074 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; | 14074 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; |
| 14075 var arg_profileId = "foo"; | 14075 var arg_profileId = "foo"; |
| 14076 var arg_ids = buildUnnamed3500(); | 14076 var arg_ids = buildUnnamed3592(); |
| 14077 var arg_maxResults = 42; | 14077 var arg_maxResults = 42; |
| 14078 var arg_pageToken = "foo"; | 14078 var arg_pageToken = "foo"; |
| 14079 var arg_searchString = "foo"; | 14079 var arg_searchString = "foo"; |
| 14080 var arg_sortField = "foo"; | 14080 var arg_sortField = "foo"; |
| 14081 var arg_sortOrder = "foo"; | 14081 var arg_sortOrder = "foo"; |
| 14082 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14082 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14083 var path = (req.url).path; | 14083 var path = (req.url).path; |
| 14084 var pathOffset = 0; | 14084 var pathOffset = 0; |
| 14085 var index; | 14085 var index; |
| 14086 var subPart; | 14086 var subPart; |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14691 checkCreativeFieldValue(response); | 14691 checkCreativeFieldValue(response); |
| 14692 }))); | 14692 }))); |
| 14693 }); | 14693 }); |
| 14694 | 14694 |
| 14695 unittest.test("method--list", () { | 14695 unittest.test("method--list", () { |
| 14696 | 14696 |
| 14697 var mock = new HttpServerMock(); | 14697 var mock = new HttpServerMock(); |
| 14698 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; | 14698 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; |
| 14699 var arg_profileId = "foo"; | 14699 var arg_profileId = "foo"; |
| 14700 var arg_creativeFieldId = "foo"; | 14700 var arg_creativeFieldId = "foo"; |
| 14701 var arg_ids = buildUnnamed3501(); | 14701 var arg_ids = buildUnnamed3593(); |
| 14702 var arg_maxResults = 42; | 14702 var arg_maxResults = 42; |
| 14703 var arg_pageToken = "foo"; | 14703 var arg_pageToken = "foo"; |
| 14704 var arg_searchString = "foo"; | 14704 var arg_searchString = "foo"; |
| 14705 var arg_sortField = "foo"; | 14705 var arg_sortField = "foo"; |
| 14706 var arg_sortOrder = "foo"; | 14706 var arg_sortOrder = "foo"; |
| 14707 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14707 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14708 var path = (req.url).path; | 14708 var path = (req.url).path; |
| 14709 var pathOffset = 0; | 14709 var pathOffset = 0; |
| 14710 var index; | 14710 var index; |
| 14711 var subPart; | 14711 var subPart; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15068 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { | 15068 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { |
| 15069 checkCreativeField(response); | 15069 checkCreativeField(response); |
| 15070 }))); | 15070 }))); |
| 15071 }); | 15071 }); |
| 15072 | 15072 |
| 15073 unittest.test("method--list", () { | 15073 unittest.test("method--list", () { |
| 15074 | 15074 |
| 15075 var mock = new HttpServerMock(); | 15075 var mock = new HttpServerMock(); |
| 15076 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; | 15076 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; |
| 15077 var arg_profileId = "foo"; | 15077 var arg_profileId = "foo"; |
| 15078 var arg_advertiserIds = buildUnnamed3502(); | 15078 var arg_advertiserIds = buildUnnamed3594(); |
| 15079 var arg_ids = buildUnnamed3503(); | 15079 var arg_ids = buildUnnamed3595(); |
| 15080 var arg_maxResults = 42; | 15080 var arg_maxResults = 42; |
| 15081 var arg_pageToken = "foo"; | 15081 var arg_pageToken = "foo"; |
| 15082 var arg_searchString = "foo"; | 15082 var arg_searchString = "foo"; |
| 15083 var arg_sortField = "foo"; | 15083 var arg_sortField = "foo"; |
| 15084 var arg_sortOrder = "foo"; | 15084 var arg_sortOrder = "foo"; |
| 15085 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15085 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15086 var path = (req.url).path; | 15086 var path = (req.url).path; |
| 15087 var pathOffset = 0; | 15087 var pathOffset = 0; |
| 15088 var index; | 15088 var index; |
| 15089 var subPart; | 15089 var subPart; |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15369 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { | 15369 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { |
| 15370 checkCreativeGroup(response); | 15370 checkCreativeGroup(response); |
| 15371 }))); | 15371 }))); |
| 15372 }); | 15372 }); |
| 15373 | 15373 |
| 15374 unittest.test("method--list", () { | 15374 unittest.test("method--list", () { |
| 15375 | 15375 |
| 15376 var mock = new HttpServerMock(); | 15376 var mock = new HttpServerMock(); |
| 15377 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; | 15377 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; |
| 15378 var arg_profileId = "foo"; | 15378 var arg_profileId = "foo"; |
| 15379 var arg_advertiserIds = buildUnnamed3504(); | 15379 var arg_advertiserIds = buildUnnamed3596(); |
| 15380 var arg_groupNumber = 42; | 15380 var arg_groupNumber = 42; |
| 15381 var arg_ids = buildUnnamed3505(); | 15381 var arg_ids = buildUnnamed3597(); |
| 15382 var arg_maxResults = 42; | 15382 var arg_maxResults = 42; |
| 15383 var arg_pageToken = "foo"; | 15383 var arg_pageToken = "foo"; |
| 15384 var arg_searchString = "foo"; | 15384 var arg_searchString = "foo"; |
| 15385 var arg_sortField = "foo"; | 15385 var arg_sortField = "foo"; |
| 15386 var arg_sortOrder = "foo"; | 15386 var arg_sortOrder = "foo"; |
| 15387 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15387 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15388 var path = (req.url).path; | 15388 var path = (req.url).path; |
| 15389 var pathOffset = 0; | 15389 var pathOffset = 0; |
| 15390 var index; | 15390 var index; |
| 15391 var subPart; | 15391 var subPart; |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15676 | 15676 |
| 15677 unittest.test("method--list", () { | 15677 unittest.test("method--list", () { |
| 15678 | 15678 |
| 15679 var mock = new HttpServerMock(); | 15679 var mock = new HttpServerMock(); |
| 15680 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; | 15680 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; |
| 15681 var arg_profileId = "foo"; | 15681 var arg_profileId = "foo"; |
| 15682 var arg_active = true; | 15682 var arg_active = true; |
| 15683 var arg_advertiserId = "foo"; | 15683 var arg_advertiserId = "foo"; |
| 15684 var arg_archived = true; | 15684 var arg_archived = true; |
| 15685 var arg_campaignId = "foo"; | 15685 var arg_campaignId = "foo"; |
| 15686 var arg_companionCreativeIds = buildUnnamed3506(); | 15686 var arg_companionCreativeIds = buildUnnamed3598(); |
| 15687 var arg_creativeFieldIds = buildUnnamed3507(); | 15687 var arg_creativeFieldIds = buildUnnamed3599(); |
| 15688 var arg_ids = buildUnnamed3508(); | 15688 var arg_ids = buildUnnamed3600(); |
| 15689 var arg_maxResults = 42; | 15689 var arg_maxResults = 42; |
| 15690 var arg_pageToken = "foo"; | 15690 var arg_pageToken = "foo"; |
| 15691 var arg_renderingIds = buildUnnamed3509(); | 15691 var arg_renderingIds = buildUnnamed3601(); |
| 15692 var arg_searchString = "foo"; | 15692 var arg_searchString = "foo"; |
| 15693 var arg_sizeIds = buildUnnamed3510(); | 15693 var arg_sizeIds = buildUnnamed3602(); |
| 15694 var arg_sortField = "foo"; | 15694 var arg_sortField = "foo"; |
| 15695 var arg_sortOrder = "foo"; | 15695 var arg_sortOrder = "foo"; |
| 15696 var arg_studioCreativeId = "foo"; | 15696 var arg_studioCreativeId = "foo"; |
| 15697 var arg_types = buildUnnamed3511(); | 15697 var arg_types = buildUnnamed3603(); |
| 15698 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15698 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15699 var path = (req.url).path; | 15699 var path = (req.url).path; |
| 15700 var pathOffset = 0; | 15700 var pathOffset = 0; |
| 15701 var index; | 15701 var index; |
| 15702 var subPart; | 15702 var subPart; |
| 15703 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 15703 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 15704 pathOffset += 1; | 15704 pathOffset += 1; |
| 15705 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 15705 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| 15706 pathOffset += 23; | 15706 pathOffset += 23; |
| 15707 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 15707 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15999 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { | 15999 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { |
| 16000 checkDirectorySiteContact(response); | 16000 checkDirectorySiteContact(response); |
| 16001 }))); | 16001 }))); |
| 16002 }); | 16002 }); |
| 16003 | 16003 |
| 16004 unittest.test("method--list", () { | 16004 unittest.test("method--list", () { |
| 16005 | 16005 |
| 16006 var mock = new HttpServerMock(); | 16006 var mock = new HttpServerMock(); |
| 16007 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; | 16007 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; |
| 16008 var arg_profileId = "foo"; | 16008 var arg_profileId = "foo"; |
| 16009 var arg_directorySiteIds = buildUnnamed3512(); | 16009 var arg_directorySiteIds = buildUnnamed3604(); |
| 16010 var arg_ids = buildUnnamed3513(); | 16010 var arg_ids = buildUnnamed3605(); |
| 16011 var arg_maxResults = 42; | 16011 var arg_maxResults = 42; |
| 16012 var arg_pageToken = "foo"; | 16012 var arg_pageToken = "foo"; |
| 16013 var arg_searchString = "foo"; | 16013 var arg_searchString = "foo"; |
| 16014 var arg_sortField = "foo"; | 16014 var arg_sortField = "foo"; |
| 16015 var arg_sortOrder = "foo"; | 16015 var arg_sortOrder = "foo"; |
| 16016 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16016 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16017 var path = (req.url).path; | 16017 var path = (req.url).path; |
| 16018 var pathOffset = 0; | 16018 var pathOffset = 0; |
| 16019 var index; | 16019 var index; |
| 16020 var subPart; | 16020 var subPart; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16190 | 16190 |
| 16191 var mock = new HttpServerMock(); | 16191 var mock = new HttpServerMock(); |
| 16192 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; | 16192 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; |
| 16193 var arg_profileId = "foo"; | 16193 var arg_profileId = "foo"; |
| 16194 var arg_acceptsInStreamVideoPlacements = true; | 16194 var arg_acceptsInStreamVideoPlacements = true; |
| 16195 var arg_acceptsInterstitialPlacements = true; | 16195 var arg_acceptsInterstitialPlacements = true; |
| 16196 var arg_acceptsPublisherPaidPlacements = true; | 16196 var arg_acceptsPublisherPaidPlacements = true; |
| 16197 var arg_active = true; | 16197 var arg_active = true; |
| 16198 var arg_countryId = "foo"; | 16198 var arg_countryId = "foo"; |
| 16199 var arg_dfpNetworkCode = "foo"; | 16199 var arg_dfpNetworkCode = "foo"; |
| 16200 var arg_ids = buildUnnamed3514(); | 16200 var arg_ids = buildUnnamed3606(); |
| 16201 var arg_maxResults = 42; | 16201 var arg_maxResults = 42; |
| 16202 var arg_pageToken = "foo"; | 16202 var arg_pageToken = "foo"; |
| 16203 var arg_parentId = "foo"; | 16203 var arg_parentId = "foo"; |
| 16204 var arg_searchString = "foo"; | 16204 var arg_searchString = "foo"; |
| 16205 var arg_sortField = "foo"; | 16205 var arg_sortField = "foo"; |
| 16206 var arg_sortOrder = "foo"; | 16206 var arg_sortOrder = "foo"; |
| 16207 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16207 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16208 var path = (req.url).path; | 16208 var path = (req.url).path; |
| 16209 var pathOffset = 0; | 16209 var pathOffset = 0; |
| 16210 var index; | 16210 var index; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16384 checkDynamicTargetingKey(response); | 16384 checkDynamicTargetingKey(response); |
| 16385 }))); | 16385 }))); |
| 16386 }); | 16386 }); |
| 16387 | 16387 |
| 16388 unittest.test("method--list", () { | 16388 unittest.test("method--list", () { |
| 16389 | 16389 |
| 16390 var mock = new HttpServerMock(); | 16390 var mock = new HttpServerMock(); |
| 16391 api.DynamicTargetingKeysResourceApi res = new api.DfareportingApi(mock).dy
namicTargetingKeys; | 16391 api.DynamicTargetingKeysResourceApi res = new api.DfareportingApi(mock).dy
namicTargetingKeys; |
| 16392 var arg_profileId = "foo"; | 16392 var arg_profileId = "foo"; |
| 16393 var arg_advertiserId = "foo"; | 16393 var arg_advertiserId = "foo"; |
| 16394 var arg_names = buildUnnamed3515(); | 16394 var arg_names = buildUnnamed3607(); |
| 16395 var arg_objectId = "foo"; | 16395 var arg_objectId = "foo"; |
| 16396 var arg_objectType = "foo"; | 16396 var arg_objectType = "foo"; |
| 16397 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16397 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16398 var path = (req.url).path; | 16398 var path = (req.url).path; |
| 16399 var pathOffset = 0; | 16399 var pathOffset = 0; |
| 16400 var index; | 16400 var index; |
| 16401 var subPart; | 16401 var subPart; |
| 16402 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16402 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 16403 pathOffset += 1; | 16403 pathOffset += 1; |
| 16404 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 16404 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16622 unittest.test("method--list", () { | 16622 unittest.test("method--list", () { |
| 16623 | 16623 |
| 16624 var mock = new HttpServerMock(); | 16624 var mock = new HttpServerMock(); |
| 16625 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; | 16625 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; |
| 16626 var arg_profileId = "foo"; | 16626 var arg_profileId = "foo"; |
| 16627 var arg_adId = "foo"; | 16627 var arg_adId = "foo"; |
| 16628 var arg_advertiserId = "foo"; | 16628 var arg_advertiserId = "foo"; |
| 16629 var arg_campaignId = "foo"; | 16629 var arg_campaignId = "foo"; |
| 16630 var arg_definitionsOnly = true; | 16630 var arg_definitionsOnly = true; |
| 16631 var arg_enabled = true; | 16631 var arg_enabled = true; |
| 16632 var arg_eventTagTypes = buildUnnamed3516(); | 16632 var arg_eventTagTypes = buildUnnamed3608(); |
| 16633 var arg_ids = buildUnnamed3517(); | 16633 var arg_ids = buildUnnamed3609(); |
| 16634 var arg_searchString = "foo"; | 16634 var arg_searchString = "foo"; |
| 16635 var arg_sortField = "foo"; | 16635 var arg_sortField = "foo"; |
| 16636 var arg_sortOrder = "foo"; | 16636 var arg_sortOrder = "foo"; |
| 16637 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16637 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16638 var path = (req.url).path; | 16638 var path = (req.url).path; |
| 16639 var pathOffset = 0; | 16639 var pathOffset = 0; |
| 16640 var index; | 16640 var index; |
| 16641 var subPart; | 16641 var subPart; |
| 16642 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16642 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 16643 pathOffset += 1; | 16643 pathOffset += 1; |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17161 checkFloodlightActivity(response); | 17161 checkFloodlightActivity(response); |
| 17162 }))); | 17162 }))); |
| 17163 }); | 17163 }); |
| 17164 | 17164 |
| 17165 unittest.test("method--list", () { | 17165 unittest.test("method--list", () { |
| 17166 | 17166 |
| 17167 var mock = new HttpServerMock(); | 17167 var mock = new HttpServerMock(); |
| 17168 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; | 17168 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; |
| 17169 var arg_profileId = "foo"; | 17169 var arg_profileId = "foo"; |
| 17170 var arg_advertiserId = "foo"; | 17170 var arg_advertiserId = "foo"; |
| 17171 var arg_floodlightActivityGroupIds = buildUnnamed3518(); | 17171 var arg_floodlightActivityGroupIds = buildUnnamed3610(); |
| 17172 var arg_floodlightActivityGroupName = "foo"; | 17172 var arg_floodlightActivityGroupName = "foo"; |
| 17173 var arg_floodlightActivityGroupTagString = "foo"; | 17173 var arg_floodlightActivityGroupTagString = "foo"; |
| 17174 var arg_floodlightActivityGroupType = "foo"; | 17174 var arg_floodlightActivityGroupType = "foo"; |
| 17175 var arg_floodlightConfigurationId = "foo"; | 17175 var arg_floodlightConfigurationId = "foo"; |
| 17176 var arg_ids = buildUnnamed3519(); | 17176 var arg_ids = buildUnnamed3611(); |
| 17177 var arg_maxResults = 42; | 17177 var arg_maxResults = 42; |
| 17178 var arg_pageToken = "foo"; | 17178 var arg_pageToken = "foo"; |
| 17179 var arg_searchString = "foo"; | 17179 var arg_searchString = "foo"; |
| 17180 var arg_sortField = "foo"; | 17180 var arg_sortField = "foo"; |
| 17181 var arg_sortOrder = "foo"; | 17181 var arg_sortOrder = "foo"; |
| 17182 var arg_tagString = "foo"; | 17182 var arg_tagString = "foo"; |
| 17183 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17183 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17184 var path = (req.url).path; | 17184 var path = (req.url).path; |
| 17185 var pathOffset = 0; | 17185 var pathOffset = 0; |
| 17186 var index; | 17186 var index; |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17475 }))); | 17475 }))); |
| 17476 }); | 17476 }); |
| 17477 | 17477 |
| 17478 unittest.test("method--list", () { | 17478 unittest.test("method--list", () { |
| 17479 | 17479 |
| 17480 var mock = new HttpServerMock(); | 17480 var mock = new HttpServerMock(); |
| 17481 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; | 17481 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; |
| 17482 var arg_profileId = "foo"; | 17482 var arg_profileId = "foo"; |
| 17483 var arg_advertiserId = "foo"; | 17483 var arg_advertiserId = "foo"; |
| 17484 var arg_floodlightConfigurationId = "foo"; | 17484 var arg_floodlightConfigurationId = "foo"; |
| 17485 var arg_ids = buildUnnamed3520(); | 17485 var arg_ids = buildUnnamed3612(); |
| 17486 var arg_maxResults = 42; | 17486 var arg_maxResults = 42; |
| 17487 var arg_pageToken = "foo"; | 17487 var arg_pageToken = "foo"; |
| 17488 var arg_searchString = "foo"; | 17488 var arg_searchString = "foo"; |
| 17489 var arg_sortField = "foo"; | 17489 var arg_sortField = "foo"; |
| 17490 var arg_sortOrder = "foo"; | 17490 var arg_sortOrder = "foo"; |
| 17491 var arg_type = "foo"; | 17491 var arg_type = "foo"; |
| 17492 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17492 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17493 var path = (req.url).path; | 17493 var path = (req.url).path; |
| 17494 var pathOffset = 0; | 17494 var pathOffset = 0; |
| 17495 var index; | 17495 var index; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17721 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { | 17721 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { |
| 17722 checkFloodlightConfiguration(response); | 17722 checkFloodlightConfiguration(response); |
| 17723 }))); | 17723 }))); |
| 17724 }); | 17724 }); |
| 17725 | 17725 |
| 17726 unittest.test("method--list", () { | 17726 unittest.test("method--list", () { |
| 17727 | 17727 |
| 17728 var mock = new HttpServerMock(); | 17728 var mock = new HttpServerMock(); |
| 17729 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; | 17729 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; |
| 17730 var arg_profileId = "foo"; | 17730 var arg_profileId = "foo"; |
| 17731 var arg_ids = buildUnnamed3521(); | 17731 var arg_ids = buildUnnamed3613(); |
| 17732 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17732 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17733 var path = (req.url).path; | 17733 var path = (req.url).path; |
| 17734 var pathOffset = 0; | 17734 var pathOffset = 0; |
| 17735 var index; | 17735 var index; |
| 17736 var subPart; | 17736 var subPart; |
| 17737 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17737 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17738 pathOffset += 1; | 17738 pathOffset += 1; |
| 17739 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 17739 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| 17740 pathOffset += 23; | 17740 pathOffset += 23; |
| 17741 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 17741 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17962 checkInventoryItem(response); | 17962 checkInventoryItem(response); |
| 17963 }))); | 17963 }))); |
| 17964 }); | 17964 }); |
| 17965 | 17965 |
| 17966 unittest.test("method--list", () { | 17966 unittest.test("method--list", () { |
| 17967 | 17967 |
| 17968 var mock = new HttpServerMock(); | 17968 var mock = new HttpServerMock(); |
| 17969 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; | 17969 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; |
| 17970 var arg_profileId = "foo"; | 17970 var arg_profileId = "foo"; |
| 17971 var arg_projectId = "foo"; | 17971 var arg_projectId = "foo"; |
| 17972 var arg_ids = buildUnnamed3522(); | 17972 var arg_ids = buildUnnamed3614(); |
| 17973 var arg_inPlan = true; | 17973 var arg_inPlan = true; |
| 17974 var arg_maxResults = 42; | 17974 var arg_maxResults = 42; |
| 17975 var arg_orderId = buildUnnamed3523(); | 17975 var arg_orderId = buildUnnamed3615(); |
| 17976 var arg_pageToken = "foo"; | 17976 var arg_pageToken = "foo"; |
| 17977 var arg_siteId = buildUnnamed3524(); | 17977 var arg_siteId = buildUnnamed3616(); |
| 17978 var arg_sortField = "foo"; | 17978 var arg_sortField = "foo"; |
| 17979 var arg_sortOrder = "foo"; | 17979 var arg_sortOrder = "foo"; |
| 17980 var arg_type = "foo"; | 17980 var arg_type = "foo"; |
| 17981 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17981 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17982 var path = (req.url).path; | 17982 var path = (req.url).path; |
| 17983 var pathOffset = 0; | 17983 var pathOffset = 0; |
| 17984 var index; | 17984 var index; |
| 17985 var subPart; | 17985 var subPart; |
| 17986 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17986 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17987 pathOffset += 1; | 17987 pathOffset += 1; |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18900 }))); | 18900 }))); |
| 18901 }); | 18901 }); |
| 18902 | 18902 |
| 18903 unittest.test("method--list", () { | 18903 unittest.test("method--list", () { |
| 18904 | 18904 |
| 18905 var mock = new HttpServerMock(); | 18905 var mock = new HttpServerMock(); |
| 18906 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; | 18906 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; |
| 18907 var arg_profileId = "foo"; | 18907 var arg_profileId = "foo"; |
| 18908 var arg_projectId = "foo"; | 18908 var arg_projectId = "foo"; |
| 18909 var arg_approved = true; | 18909 var arg_approved = true; |
| 18910 var arg_ids = buildUnnamed3525(); | 18910 var arg_ids = buildUnnamed3617(); |
| 18911 var arg_maxResults = 42; | 18911 var arg_maxResults = 42; |
| 18912 var arg_orderId = buildUnnamed3526(); | 18912 var arg_orderId = buildUnnamed3618(); |
| 18913 var arg_pageToken = "foo"; | 18913 var arg_pageToken = "foo"; |
| 18914 var arg_searchString = "foo"; | 18914 var arg_searchString = "foo"; |
| 18915 var arg_siteId = buildUnnamed3527(); | 18915 var arg_siteId = buildUnnamed3619(); |
| 18916 var arg_sortField = "foo"; | 18916 var arg_sortField = "foo"; |
| 18917 var arg_sortOrder = "foo"; | 18917 var arg_sortOrder = "foo"; |
| 18918 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18918 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18919 var path = (req.url).path; | 18919 var path = (req.url).path; |
| 18920 var pathOffset = 0; | 18920 var pathOffset = 0; |
| 18921 var index; | 18921 var index; |
| 18922 var subPart; | 18922 var subPart; |
| 18923 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18923 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18924 pathOffset += 1; | 18924 pathOffset += 1; |
| 18925 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 18925 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19047 checkOrder(response); | 19047 checkOrder(response); |
| 19048 }))); | 19048 }))); |
| 19049 }); | 19049 }); |
| 19050 | 19050 |
| 19051 unittest.test("method--list", () { | 19051 unittest.test("method--list", () { |
| 19052 | 19052 |
| 19053 var mock = new HttpServerMock(); | 19053 var mock = new HttpServerMock(); |
| 19054 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; | 19054 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; |
| 19055 var arg_profileId = "foo"; | 19055 var arg_profileId = "foo"; |
| 19056 var arg_projectId = "foo"; | 19056 var arg_projectId = "foo"; |
| 19057 var arg_ids = buildUnnamed3528(); | 19057 var arg_ids = buildUnnamed3620(); |
| 19058 var arg_maxResults = 42; | 19058 var arg_maxResults = 42; |
| 19059 var arg_pageToken = "foo"; | 19059 var arg_pageToken = "foo"; |
| 19060 var arg_searchString = "foo"; | 19060 var arg_searchString = "foo"; |
| 19061 var arg_siteId = buildUnnamed3529(); | 19061 var arg_siteId = buildUnnamed3621(); |
| 19062 var arg_sortField = "foo"; | 19062 var arg_sortField = "foo"; |
| 19063 var arg_sortOrder = "foo"; | 19063 var arg_sortOrder = "foo"; |
| 19064 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19064 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19065 var path = (req.url).path; | 19065 var path = (req.url).path; |
| 19066 var pathOffset = 0; | 19066 var pathOffset = 0; |
| 19067 var index; | 19067 var index; |
| 19068 var subPart; | 19068 var subPart; |
| 19069 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19069 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19070 pathOffset += 1; | 19070 pathOffset += 1; |
| 19071 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 19071 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19239 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { | 19239 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { |
| 19240 checkPlacementGroup(response); | 19240 checkPlacementGroup(response); |
| 19241 }))); | 19241 }))); |
| 19242 }); | 19242 }); |
| 19243 | 19243 |
| 19244 unittest.test("method--list", () { | 19244 unittest.test("method--list", () { |
| 19245 | 19245 |
| 19246 var mock = new HttpServerMock(); | 19246 var mock = new HttpServerMock(); |
| 19247 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; | 19247 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; |
| 19248 var arg_profileId = "foo"; | 19248 var arg_profileId = "foo"; |
| 19249 var arg_advertiserIds = buildUnnamed3530(); | 19249 var arg_advertiserIds = buildUnnamed3622(); |
| 19250 var arg_archived = true; | 19250 var arg_archived = true; |
| 19251 var arg_campaignIds = buildUnnamed3531(); | 19251 var arg_campaignIds = buildUnnamed3623(); |
| 19252 var arg_contentCategoryIds = buildUnnamed3532(); | 19252 var arg_contentCategoryIds = buildUnnamed3624(); |
| 19253 var arg_directorySiteIds = buildUnnamed3533(); | 19253 var arg_directorySiteIds = buildUnnamed3625(); |
| 19254 var arg_ids = buildUnnamed3534(); | 19254 var arg_ids = buildUnnamed3626(); |
| 19255 var arg_maxEndDate = "foo"; | 19255 var arg_maxEndDate = "foo"; |
| 19256 var arg_maxResults = 42; | 19256 var arg_maxResults = 42; |
| 19257 var arg_maxStartDate = "foo"; | 19257 var arg_maxStartDate = "foo"; |
| 19258 var arg_minEndDate = "foo"; | 19258 var arg_minEndDate = "foo"; |
| 19259 var arg_minStartDate = "foo"; | 19259 var arg_minStartDate = "foo"; |
| 19260 var arg_pageToken = "foo"; | 19260 var arg_pageToken = "foo"; |
| 19261 var arg_placementGroupType = "foo"; | 19261 var arg_placementGroupType = "foo"; |
| 19262 var arg_placementStrategyIds = buildUnnamed3535(); | 19262 var arg_placementStrategyIds = buildUnnamed3627(); |
| 19263 var arg_pricingTypes = buildUnnamed3536(); | 19263 var arg_pricingTypes = buildUnnamed3628(); |
| 19264 var arg_searchString = "foo"; | 19264 var arg_searchString = "foo"; |
| 19265 var arg_siteIds = buildUnnamed3537(); | 19265 var arg_siteIds = buildUnnamed3629(); |
| 19266 var arg_sortField = "foo"; | 19266 var arg_sortField = "foo"; |
| 19267 var arg_sortOrder = "foo"; | 19267 var arg_sortOrder = "foo"; |
| 19268 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19268 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19269 var path = (req.url).path; | 19269 var path = (req.url).path; |
| 19270 var pathOffset = 0; | 19270 var pathOffset = 0; |
| 19271 var index; | 19271 var index; |
| 19272 var subPart; | 19272 var subPart; |
| 19273 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19273 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19274 pathOffset += 1; | 19274 pathOffset += 1; |
| 19275 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 19275 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19619 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { | 19619 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { |
| 19620 checkPlacementStrategy(response); | 19620 checkPlacementStrategy(response); |
| 19621 }))); | 19621 }))); |
| 19622 }); | 19622 }); |
| 19623 | 19623 |
| 19624 unittest.test("method--list", () { | 19624 unittest.test("method--list", () { |
| 19625 | 19625 |
| 19626 var mock = new HttpServerMock(); | 19626 var mock = new HttpServerMock(); |
| 19627 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; | 19627 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; |
| 19628 var arg_profileId = "foo"; | 19628 var arg_profileId = "foo"; |
| 19629 var arg_ids = buildUnnamed3538(); | 19629 var arg_ids = buildUnnamed3630(); |
| 19630 var arg_maxResults = 42; | 19630 var arg_maxResults = 42; |
| 19631 var arg_pageToken = "foo"; | 19631 var arg_pageToken = "foo"; |
| 19632 var arg_searchString = "foo"; | 19632 var arg_searchString = "foo"; |
| 19633 var arg_sortField = "foo"; | 19633 var arg_sortField = "foo"; |
| 19634 var arg_sortOrder = "foo"; | 19634 var arg_sortOrder = "foo"; |
| 19635 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19635 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19636 var path = (req.url).path; | 19636 var path = (req.url).path; |
| 19637 var pathOffset = 0; | 19637 var pathOffset = 0; |
| 19638 var index; | 19638 var index; |
| 19639 var subPart; | 19639 var subPart; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19805 }); | 19805 }); |
| 19806 | 19806 |
| 19807 | 19807 |
| 19808 unittest.group("resource-PlacementsResourceApi", () { | 19808 unittest.group("resource-PlacementsResourceApi", () { |
| 19809 unittest.test("method--generatetags", () { | 19809 unittest.test("method--generatetags", () { |
| 19810 | 19810 |
| 19811 var mock = new HttpServerMock(); | 19811 var mock = new HttpServerMock(); |
| 19812 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19812 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19813 var arg_profileId = "foo"; | 19813 var arg_profileId = "foo"; |
| 19814 var arg_campaignId = "foo"; | 19814 var arg_campaignId = "foo"; |
| 19815 var arg_placementIds = buildUnnamed3539(); | 19815 var arg_placementIds = buildUnnamed3631(); |
| 19816 var arg_tagFormats = buildUnnamed3540(); | 19816 var arg_tagFormats = buildUnnamed3632(); |
| 19817 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19817 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19818 var path = (req.url).path; | 19818 var path = (req.url).path; |
| 19819 var pathOffset = 0; | 19819 var pathOffset = 0; |
| 19820 var index; | 19820 var index; |
| 19821 var subPart; | 19821 var subPart; |
| 19822 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19822 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19823 pathOffset += 1; | 19823 pathOffset += 1; |
| 19824 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 19824 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| 19825 pathOffset += 23; | 19825 pathOffset += 23; |
| 19826 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 19826 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19977 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { | 19977 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { |
| 19978 checkPlacement(response); | 19978 checkPlacement(response); |
| 19979 }))); | 19979 }))); |
| 19980 }); | 19980 }); |
| 19981 | 19981 |
| 19982 unittest.test("method--list", () { | 19982 unittest.test("method--list", () { |
| 19983 | 19983 |
| 19984 var mock = new HttpServerMock(); | 19984 var mock = new HttpServerMock(); |
| 19985 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19985 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19986 var arg_profileId = "foo"; | 19986 var arg_profileId = "foo"; |
| 19987 var arg_advertiserIds = buildUnnamed3541(); | 19987 var arg_advertiserIds = buildUnnamed3633(); |
| 19988 var arg_archived = true; | 19988 var arg_archived = true; |
| 19989 var arg_campaignIds = buildUnnamed3542(); | 19989 var arg_campaignIds = buildUnnamed3634(); |
| 19990 var arg_compatibilities = buildUnnamed3543(); | 19990 var arg_compatibilities = buildUnnamed3635(); |
| 19991 var arg_contentCategoryIds = buildUnnamed3544(); | 19991 var arg_contentCategoryIds = buildUnnamed3636(); |
| 19992 var arg_directorySiteIds = buildUnnamed3545(); | 19992 var arg_directorySiteIds = buildUnnamed3637(); |
| 19993 var arg_groupIds = buildUnnamed3546(); | 19993 var arg_groupIds = buildUnnamed3638(); |
| 19994 var arg_ids = buildUnnamed3547(); | 19994 var arg_ids = buildUnnamed3639(); |
| 19995 var arg_maxEndDate = "foo"; | 19995 var arg_maxEndDate = "foo"; |
| 19996 var arg_maxResults = 42; | 19996 var arg_maxResults = 42; |
| 19997 var arg_maxStartDate = "foo"; | 19997 var arg_maxStartDate = "foo"; |
| 19998 var arg_minEndDate = "foo"; | 19998 var arg_minEndDate = "foo"; |
| 19999 var arg_minStartDate = "foo"; | 19999 var arg_minStartDate = "foo"; |
| 20000 var arg_pageToken = "foo"; | 20000 var arg_pageToken = "foo"; |
| 20001 var arg_paymentSource = "foo"; | 20001 var arg_paymentSource = "foo"; |
| 20002 var arg_placementStrategyIds = buildUnnamed3548(); | 20002 var arg_placementStrategyIds = buildUnnamed3640(); |
| 20003 var arg_pricingTypes = buildUnnamed3549(); | 20003 var arg_pricingTypes = buildUnnamed3641(); |
| 20004 var arg_searchString = "foo"; | 20004 var arg_searchString = "foo"; |
| 20005 var arg_siteIds = buildUnnamed3550(); | 20005 var arg_siteIds = buildUnnamed3642(); |
| 20006 var arg_sizeIds = buildUnnamed3551(); | 20006 var arg_sizeIds = buildUnnamed3643(); |
| 20007 var arg_sortField = "foo"; | 20007 var arg_sortField = "foo"; |
| 20008 var arg_sortOrder = "foo"; | 20008 var arg_sortOrder = "foo"; |
| 20009 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 20009 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 20010 var path = (req.url).path; | 20010 var path = (req.url).path; |
| 20011 var pathOffset = 0; | 20011 var pathOffset = 0; |
| 20012 var index; | 20012 var index; |
| 20013 var subPart; | 20013 var subPart; |
| 20014 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 20014 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 20015 pathOffset += 1; | 20015 pathOffset += 1; |
| 20016 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 20016 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20479 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { | 20479 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { |
| 20480 checkProject(response); | 20480 checkProject(response); |
| 20481 }))); | 20481 }))); |
| 20482 }); | 20482 }); |
| 20483 | 20483 |
| 20484 unittest.test("method--list", () { | 20484 unittest.test("method--list", () { |
| 20485 | 20485 |
| 20486 var mock = new HttpServerMock(); | 20486 var mock = new HttpServerMock(); |
| 20487 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; | 20487 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; |
| 20488 var arg_profileId = "foo"; | 20488 var arg_profileId = "foo"; |
| 20489 var arg_advertiserIds = buildUnnamed3552(); | 20489 var arg_advertiserIds = buildUnnamed3644(); |
| 20490 var arg_ids = buildUnnamed3553(); | 20490 var arg_ids = buildUnnamed3645(); |
| 20491 var arg_maxResults = 42; | 20491 var arg_maxResults = 42; |
| 20492 var arg_pageToken = "foo"; | 20492 var arg_pageToken = "foo"; |
| 20493 var arg_searchString = "foo"; | 20493 var arg_searchString = "foo"; |
| 20494 var arg_sortField = "foo"; | 20494 var arg_sortField = "foo"; |
| 20495 var arg_sortOrder = "foo"; | 20495 var arg_sortOrder = "foo"; |
| 20496 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 20496 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 20497 var path = (req.url).path; | 20497 var path = (req.url).path; |
| 20498 var pathOffset = 0; | 20498 var pathOffset = 0; |
| 20499 var index; | 20499 var index; |
| 20500 var subPart; | 20500 var subPart; |
| (...skipping 1327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21828 unittest.test("method--list", () { | 21828 unittest.test("method--list", () { |
| 21829 | 21829 |
| 21830 var mock = new HttpServerMock(); | 21830 var mock = new HttpServerMock(); |
| 21831 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; | 21831 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; |
| 21832 var arg_profileId = "foo"; | 21832 var arg_profileId = "foo"; |
| 21833 var arg_acceptsInStreamVideoPlacements = true; | 21833 var arg_acceptsInStreamVideoPlacements = true; |
| 21834 var arg_acceptsInterstitialPlacements = true; | 21834 var arg_acceptsInterstitialPlacements = true; |
| 21835 var arg_acceptsPublisherPaidPlacements = true; | 21835 var arg_acceptsPublisherPaidPlacements = true; |
| 21836 var arg_adWordsSite = true; | 21836 var arg_adWordsSite = true; |
| 21837 var arg_approved = true; | 21837 var arg_approved = true; |
| 21838 var arg_campaignIds = buildUnnamed3554(); | 21838 var arg_campaignIds = buildUnnamed3646(); |
| 21839 var arg_directorySiteIds = buildUnnamed3555(); | 21839 var arg_directorySiteIds = buildUnnamed3647(); |
| 21840 var arg_ids = buildUnnamed3556(); | 21840 var arg_ids = buildUnnamed3648(); |
| 21841 var arg_maxResults = 42; | 21841 var arg_maxResults = 42; |
| 21842 var arg_pageToken = "foo"; | 21842 var arg_pageToken = "foo"; |
| 21843 var arg_searchString = "foo"; | 21843 var arg_searchString = "foo"; |
| 21844 var arg_sortField = "foo"; | 21844 var arg_sortField = "foo"; |
| 21845 var arg_sortOrder = "foo"; | 21845 var arg_sortOrder = "foo"; |
| 21846 var arg_subaccountId = "foo"; | 21846 var arg_subaccountId = "foo"; |
| 21847 var arg_unmappedSite = true; | 21847 var arg_unmappedSite = true; |
| 21848 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21848 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21849 var path = (req.url).path; | 21849 var path = (req.url).path; |
| 21850 var pathOffset = 0; | 21850 var pathOffset = 0; |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22142 }))); | 22142 }))); |
| 22143 }); | 22143 }); |
| 22144 | 22144 |
| 22145 unittest.test("method--list", () { | 22145 unittest.test("method--list", () { |
| 22146 | 22146 |
| 22147 var mock = new HttpServerMock(); | 22147 var mock = new HttpServerMock(); |
| 22148 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; | 22148 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; |
| 22149 var arg_profileId = "foo"; | 22149 var arg_profileId = "foo"; |
| 22150 var arg_height = 42; | 22150 var arg_height = 42; |
| 22151 var arg_iabStandard = true; | 22151 var arg_iabStandard = true; |
| 22152 var arg_ids = buildUnnamed3557(); | 22152 var arg_ids = buildUnnamed3649(); |
| 22153 var arg_width = 42; | 22153 var arg_width = 42; |
| 22154 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22154 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22155 var path = (req.url).path; | 22155 var path = (req.url).path; |
| 22156 var pathOffset = 0; | 22156 var pathOffset = 0; |
| 22157 var index; | 22157 var index; |
| 22158 var subPart; | 22158 var subPart; |
| 22159 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 22159 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 22160 pathOffset += 1; | 22160 pathOffset += 1; |
| 22161 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 22161 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| 22162 pathOffset += 23; | 22162 pathOffset += 23; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22319 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { | 22319 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { |
| 22320 checkSubaccount(response); | 22320 checkSubaccount(response); |
| 22321 }))); | 22321 }))); |
| 22322 }); | 22322 }); |
| 22323 | 22323 |
| 22324 unittest.test("method--list", () { | 22324 unittest.test("method--list", () { |
| 22325 | 22325 |
| 22326 var mock = new HttpServerMock(); | 22326 var mock = new HttpServerMock(); |
| 22327 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; | 22327 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; |
| 22328 var arg_profileId = "foo"; | 22328 var arg_profileId = "foo"; |
| 22329 var arg_ids = buildUnnamed3558(); | 22329 var arg_ids = buildUnnamed3650(); |
| 22330 var arg_maxResults = 42; | 22330 var arg_maxResults = 42; |
| 22331 var arg_pageToken = "foo"; | 22331 var arg_pageToken = "foo"; |
| 22332 var arg_searchString = "foo"; | 22332 var arg_searchString = "foo"; |
| 22333 var arg_sortField = "foo"; | 22333 var arg_sortField = "foo"; |
| 22334 var arg_sortOrder = "foo"; | 22334 var arg_sortOrder = "foo"; |
| 22335 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22335 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22336 var path = (req.url).path; | 22336 var path = (req.url).path; |
| 22337 var pathOffset = 0; | 22337 var pathOffset = 0; |
| 22338 var index; | 22338 var index; |
| 22339 var subPart; | 22339 var subPart; |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22901 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { | 22901 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { |
| 22902 checkUserRolePermission(response); | 22902 checkUserRolePermission(response); |
| 22903 }))); | 22903 }))); |
| 22904 }); | 22904 }); |
| 22905 | 22905 |
| 22906 unittest.test("method--list", () { | 22906 unittest.test("method--list", () { |
| 22907 | 22907 |
| 22908 var mock = new HttpServerMock(); | 22908 var mock = new HttpServerMock(); |
| 22909 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; | 22909 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; |
| 22910 var arg_profileId = "foo"; | 22910 var arg_profileId = "foo"; |
| 22911 var arg_ids = buildUnnamed3559(); | 22911 var arg_ids = buildUnnamed3651(); |
| 22912 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22912 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22913 var path = (req.url).path; | 22913 var path = (req.url).path; |
| 22914 var pathOffset = 0; | 22914 var pathOffset = 0; |
| 22915 var index; | 22915 var index; |
| 22916 var subPart; | 22916 var subPart; |
| 22917 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 22917 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 22918 pathOffset += 1; | 22918 pathOffset += 1; |
| 22919 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); | 22919 unittest.expect(path.substring(pathOffset, pathOffset + 23), unittest.eq
uals("dfareporting/v2.5beta1/")); |
| 22920 pathOffset += 23; | 22920 pathOffset += 23; |
| 22921 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 22921 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 23130 checkUserRole(response); | 23130 checkUserRole(response); |
| 23131 }))); | 23131 }))); |
| 23132 }); | 23132 }); |
| 23133 | 23133 |
| 23134 unittest.test("method--list", () { | 23134 unittest.test("method--list", () { |
| 23135 | 23135 |
| 23136 var mock = new HttpServerMock(); | 23136 var mock = new HttpServerMock(); |
| 23137 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; | 23137 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; |
| 23138 var arg_profileId = "foo"; | 23138 var arg_profileId = "foo"; |
| 23139 var arg_accountUserRoleOnly = true; | 23139 var arg_accountUserRoleOnly = true; |
| 23140 var arg_ids = buildUnnamed3560(); | 23140 var arg_ids = buildUnnamed3652(); |
| 23141 var arg_maxResults = 42; | 23141 var arg_maxResults = 42; |
| 23142 var arg_pageToken = "foo"; | 23142 var arg_pageToken = "foo"; |
| 23143 var arg_searchString = "foo"; | 23143 var arg_searchString = "foo"; |
| 23144 var arg_sortField = "foo"; | 23144 var arg_sortField = "foo"; |
| 23145 var arg_sortOrder = "foo"; | 23145 var arg_sortOrder = "foo"; |
| 23146 var arg_subaccountId = "foo"; | 23146 var arg_subaccountId = "foo"; |
| 23147 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 23147 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 23148 var path = (req.url).path; | 23148 var path = (req.url).path; |
| 23149 var pathOffset = 0; | 23149 var pathOffset = 0; |
| 23150 var index; | 23150 var index; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 23314 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { | 23314 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { |
| 23315 checkUserRole(response); | 23315 checkUserRole(response); |
| 23316 }))); | 23316 }))); |
| 23317 }); | 23317 }); |
| 23318 | 23318 |
| 23319 }); | 23319 }); |
| 23320 | 23320 |
| 23321 | 23321 |
| 23322 } | 23322 } |
| 23323 | 23323 |
| OLD | NEW |