| OLD | NEW |
| 1 library googleapis.dfareporting.v2_1.test; | 1 library googleapis.dfareporting.v2_1.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 buildUnnamed1042() { | 54 buildUnnamed762() { |
| 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 checkUnnamed1042(core.List<core.String> o) { | 61 checkUnnamed762(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 buildUnnamed1043() { | 67 buildUnnamed763() { |
| 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 checkUnnamed1043(core.List<core.String> o) { | 74 checkUnnamed763(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 = buildUnnamed1042(); | 85 o.accountPermissionIds = buildUnnamed762(); |
| 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 = buildUnnamed1043(); | 90 o.availablePermissionIds = buildUnnamed763(); |
| 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 checkUnnamed1042(o.accountPermissionIds); | 112 checkUnnamed762(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 checkUnnamed1043(o.availablePermissionIds); | 117 checkUnnamed763(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 buildUnnamed1044() { | 162 buildUnnamed764() { |
| 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 checkUnnamed1044(core.List<core.String> o) { | 169 checkUnnamed764(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 = buildUnnamed1044(); | 180 o.accountProfiles = buildUnnamed764(); |
| 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 checkUnnamed1044(o.accountProfiles); | 194 checkUnnamed764(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 buildUnnamed1045() { | 227 buildUnnamed765() { |
| 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 checkUnnamed1045(core.List<api.AccountPermissionGroup> o) { | 234 checkUnnamed765(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 = buildUnnamed1045(); | 245 o.accountPermissionGroups = buildUnnamed765(); |
| 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 checkUnnamed1045(o.accountPermissionGroups); | 255 checkUnnamed765(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 buildUnnamed1046() { | 261 buildUnnamed766() { |
| 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 checkUnnamed1046(core.List<api.AccountPermission> o) { | 268 checkUnnamed766(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 = buildUnnamed1046(); | 279 o.accountPermissions = buildUnnamed766(); |
| 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 checkUnnamed1046(o.accountPermissions); | 289 checkUnnamed766(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 buildUnnamed1047() { | 344 buildUnnamed767() { |
| 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 checkUnnamed1047(core.List<api.AccountUserProfile> o) { | 351 checkUnnamed767(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 = buildUnnamed1047(); | 362 o.accountUserProfiles = buildUnnamed767(); |
| 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 checkUnnamed1047(o.accountUserProfiles); | 373 checkUnnamed767(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 buildUnnamed1048() { | 380 buildUnnamed768() { |
| 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 checkUnnamed1048(core.List<api.Account> o) { | 387 checkUnnamed768(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 = buildUnnamed1048(); | 398 o.accounts = buildUnnamed768(); |
| 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 checkUnnamed1048(o.accounts); | 409 checkUnnamed768(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 buildUnnamed1049() { | 416 buildUnnamed769() { |
| 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 checkUnnamed1049(core.List<api.DimensionValue> o) { | 423 checkUnnamed769(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 buildUnnamed1050() { | 429 buildUnnamed770() { |
| 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 checkUnnamed1050(core.List<core.String> o) { | 436 checkUnnamed770(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 = buildUnnamed1049(); | 447 o.filters = buildUnnamed769(); |
| 448 o.kind = "foo"; | 448 o.kind = "foo"; |
| 449 o.metricNames = buildUnnamed1050(); | 449 o.metricNames = buildUnnamed770(); |
| 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 checkUnnamed1049(o.filters); | 458 checkUnnamed769(o.filters); |
| 459 unittest.expect(o.kind, unittest.equals('foo')); | 459 unittest.expect(o.kind, unittest.equals('foo')); |
| 460 checkUnnamed1050(o.metricNames); | 460 checkUnnamed770(o.metricNames); |
| 461 } | 461 } |
| 462 buildCounterActivities--; | 462 buildCounterActivities--; |
| 463 } | 463 } |
| 464 | 464 |
| 465 buildUnnamed1051() { | 465 buildUnnamed771() { |
| 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 checkUnnamed1051(core.List<api.CreativeGroupAssignment> o) { | 472 checkUnnamed771(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 buildUnnamed1052() { | 478 buildUnnamed772() { |
| 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 checkUnnamed1052(core.List<api.EventTagOverride> o) { | 485 checkUnnamed772(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 buildUnnamed1053() { | 491 buildUnnamed773() { |
| 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 checkUnnamed1053(core.List<api.PlacementAssignment> o) { | 498 checkUnnamed773(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 = buildUnnamed1051(); | 522 o.creativeGroupAssignments = buildUnnamed771(); |
| 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 = buildUnnamed1052(); | 529 o.eventTagOverrides = buildUnnamed772(); |
| 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 = buildUnnamed1053(); | 537 o.placementAssignments = buildUnnamed773(); |
| 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 checkUnnamed1051(o.creativeGroupAssignments); | 567 checkUnnamed771(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 checkUnnamed1052(o.eventTagOverrides); | 574 checkUnnamed772(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 checkUnnamed1053(o.placementAssignments); | 582 checkUnnamed773(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 buildUnnamed1054() { | 628 buildUnnamed774() { |
| 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 checkUnnamed1054(core.List<api.Ad> o) { | 635 checkUnnamed774(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 = buildUnnamed1054(); | 646 o.ads = buildUnnamed774(); |
| 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 checkUnnamed1054(o.ads); | 657 checkUnnamed774(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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 buildCounterAdvertiserGroup++; | 724 buildCounterAdvertiserGroup++; |
| 725 if (buildCounterAdvertiserGroup < 3) { | 725 if (buildCounterAdvertiserGroup < 3) { |
| 726 unittest.expect(o.accountId, unittest.equals('foo')); | 726 unittest.expect(o.accountId, unittest.equals('foo')); |
| 727 unittest.expect(o.id, unittest.equals('foo')); | 727 unittest.expect(o.id, unittest.equals('foo')); |
| 728 unittest.expect(o.kind, unittest.equals('foo')); | 728 unittest.expect(o.kind, unittest.equals('foo')); |
| 729 unittest.expect(o.name, unittest.equals('foo')); | 729 unittest.expect(o.name, unittest.equals('foo')); |
| 730 } | 730 } |
| 731 buildCounterAdvertiserGroup--; | 731 buildCounterAdvertiserGroup--; |
| 732 } | 732 } |
| 733 | 733 |
| 734 buildUnnamed1055() { | 734 buildUnnamed775() { |
| 735 var o = new core.List<api.AdvertiserGroup>(); | 735 var o = new core.List<api.AdvertiserGroup>(); |
| 736 o.add(buildAdvertiserGroup()); | 736 o.add(buildAdvertiserGroup()); |
| 737 o.add(buildAdvertiserGroup()); | 737 o.add(buildAdvertiserGroup()); |
| 738 return o; | 738 return o; |
| 739 } | 739 } |
| 740 | 740 |
| 741 checkUnnamed1055(core.List<api.AdvertiserGroup> o) { | 741 checkUnnamed775(core.List<api.AdvertiserGroup> o) { |
| 742 unittest.expect(o, unittest.hasLength(2)); | 742 unittest.expect(o, unittest.hasLength(2)); |
| 743 checkAdvertiserGroup(o[0]); | 743 checkAdvertiserGroup(o[0]); |
| 744 checkAdvertiserGroup(o[1]); | 744 checkAdvertiserGroup(o[1]); |
| 745 } | 745 } |
| 746 | 746 |
| 747 core.int buildCounterAdvertiserGroupsListResponse = 0; | 747 core.int buildCounterAdvertiserGroupsListResponse = 0; |
| 748 buildAdvertiserGroupsListResponse() { | 748 buildAdvertiserGroupsListResponse() { |
| 749 var o = new api.AdvertiserGroupsListResponse(); | 749 var o = new api.AdvertiserGroupsListResponse(); |
| 750 buildCounterAdvertiserGroupsListResponse++; | 750 buildCounterAdvertiserGroupsListResponse++; |
| 751 if (buildCounterAdvertiserGroupsListResponse < 3) { | 751 if (buildCounterAdvertiserGroupsListResponse < 3) { |
| 752 o.advertiserGroups = buildUnnamed1055(); | 752 o.advertiserGroups = buildUnnamed775(); |
| 753 o.kind = "foo"; | 753 o.kind = "foo"; |
| 754 o.nextPageToken = "foo"; | 754 o.nextPageToken = "foo"; |
| 755 } | 755 } |
| 756 buildCounterAdvertiserGroupsListResponse--; | 756 buildCounterAdvertiserGroupsListResponse--; |
| 757 return o; | 757 return o; |
| 758 } | 758 } |
| 759 | 759 |
| 760 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { | 760 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { |
| 761 buildCounterAdvertiserGroupsListResponse++; | 761 buildCounterAdvertiserGroupsListResponse++; |
| 762 if (buildCounterAdvertiserGroupsListResponse < 3) { | 762 if (buildCounterAdvertiserGroupsListResponse < 3) { |
| 763 checkUnnamed1055(o.advertiserGroups); | 763 checkUnnamed775(o.advertiserGroups); |
| 764 unittest.expect(o.kind, unittest.equals('foo')); | 764 unittest.expect(o.kind, unittest.equals('foo')); |
| 765 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 765 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 766 } | 766 } |
| 767 buildCounterAdvertiserGroupsListResponse--; | 767 buildCounterAdvertiserGroupsListResponse--; |
| 768 } | 768 } |
| 769 | 769 |
| 770 buildUnnamed1056() { | 770 buildUnnamed776() { |
| 771 var o = new core.List<api.Advertiser>(); | 771 var o = new core.List<api.Advertiser>(); |
| 772 o.add(buildAdvertiser()); | 772 o.add(buildAdvertiser()); |
| 773 o.add(buildAdvertiser()); | 773 o.add(buildAdvertiser()); |
| 774 return o; | 774 return o; |
| 775 } | 775 } |
| 776 | 776 |
| 777 checkUnnamed1056(core.List<api.Advertiser> o) { | 777 checkUnnamed776(core.List<api.Advertiser> o) { |
| 778 unittest.expect(o, unittest.hasLength(2)); | 778 unittest.expect(o, unittest.hasLength(2)); |
| 779 checkAdvertiser(o[0]); | 779 checkAdvertiser(o[0]); |
| 780 checkAdvertiser(o[1]); | 780 checkAdvertiser(o[1]); |
| 781 } | 781 } |
| 782 | 782 |
| 783 core.int buildCounterAdvertisersListResponse = 0; | 783 core.int buildCounterAdvertisersListResponse = 0; |
| 784 buildAdvertisersListResponse() { | 784 buildAdvertisersListResponse() { |
| 785 var o = new api.AdvertisersListResponse(); | 785 var o = new api.AdvertisersListResponse(); |
| 786 buildCounterAdvertisersListResponse++; | 786 buildCounterAdvertisersListResponse++; |
| 787 if (buildCounterAdvertisersListResponse < 3) { | 787 if (buildCounterAdvertisersListResponse < 3) { |
| 788 o.advertisers = buildUnnamed1056(); | 788 o.advertisers = buildUnnamed776(); |
| 789 o.kind = "foo"; | 789 o.kind = "foo"; |
| 790 o.nextPageToken = "foo"; | 790 o.nextPageToken = "foo"; |
| 791 } | 791 } |
| 792 buildCounterAdvertisersListResponse--; | 792 buildCounterAdvertisersListResponse--; |
| 793 return o; | 793 return o; |
| 794 } | 794 } |
| 795 | 795 |
| 796 checkAdvertisersListResponse(api.AdvertisersListResponse o) { | 796 checkAdvertisersListResponse(api.AdvertisersListResponse o) { |
| 797 buildCounterAdvertisersListResponse++; | 797 buildCounterAdvertisersListResponse++; |
| 798 if (buildCounterAdvertisersListResponse < 3) { | 798 if (buildCounterAdvertisersListResponse < 3) { |
| 799 checkUnnamed1056(o.advertisers); | 799 checkUnnamed776(o.advertisers); |
| 800 unittest.expect(o.kind, unittest.equals('foo')); | 800 unittest.expect(o.kind, unittest.equals('foo')); |
| 801 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 801 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 802 } | 802 } |
| 803 buildCounterAdvertisersListResponse--; | 803 buildCounterAdvertisersListResponse--; |
| 804 } | 804 } |
| 805 | 805 |
| 806 core.int buildCounterAudienceSegment = 0; | 806 core.int buildCounterAudienceSegment = 0; |
| 807 buildAudienceSegment() { | 807 buildAudienceSegment() { |
| 808 var o = new api.AudienceSegment(); | 808 var o = new api.AudienceSegment(); |
| 809 buildCounterAudienceSegment++; | 809 buildCounterAudienceSegment++; |
| 810 if (buildCounterAudienceSegment < 3) { | 810 if (buildCounterAudienceSegment < 3) { |
| 811 o.allocation = 42; | 811 o.allocation = 42; |
| 812 o.id = "foo"; | 812 o.id = "foo"; |
| 813 o.name = "foo"; | 813 o.name = "foo"; |
| 814 } | 814 } |
| 815 buildCounterAudienceSegment--; | 815 buildCounterAudienceSegment--; |
| 816 return o; | 816 return o; |
| 817 } | 817 } |
| 818 | 818 |
| 819 checkAudienceSegment(api.AudienceSegment o) { | 819 checkAudienceSegment(api.AudienceSegment o) { |
| 820 buildCounterAudienceSegment++; | 820 buildCounterAudienceSegment++; |
| 821 if (buildCounterAudienceSegment < 3) { | 821 if (buildCounterAudienceSegment < 3) { |
| 822 unittest.expect(o.allocation, unittest.equals(42)); | 822 unittest.expect(o.allocation, unittest.equals(42)); |
| 823 unittest.expect(o.id, unittest.equals('foo')); | 823 unittest.expect(o.id, unittest.equals('foo')); |
| 824 unittest.expect(o.name, unittest.equals('foo')); | 824 unittest.expect(o.name, unittest.equals('foo')); |
| 825 } | 825 } |
| 826 buildCounterAudienceSegment--; | 826 buildCounterAudienceSegment--; |
| 827 } | 827 } |
| 828 | 828 |
| 829 buildUnnamed1057() { | 829 buildUnnamed777() { |
| 830 var o = new core.List<api.AudienceSegment>(); | 830 var o = new core.List<api.AudienceSegment>(); |
| 831 o.add(buildAudienceSegment()); | 831 o.add(buildAudienceSegment()); |
| 832 o.add(buildAudienceSegment()); | 832 o.add(buildAudienceSegment()); |
| 833 return o; | 833 return o; |
| 834 } | 834 } |
| 835 | 835 |
| 836 checkUnnamed1057(core.List<api.AudienceSegment> o) { | 836 checkUnnamed777(core.List<api.AudienceSegment> o) { |
| 837 unittest.expect(o, unittest.hasLength(2)); | 837 unittest.expect(o, unittest.hasLength(2)); |
| 838 checkAudienceSegment(o[0]); | 838 checkAudienceSegment(o[0]); |
| 839 checkAudienceSegment(o[1]); | 839 checkAudienceSegment(o[1]); |
| 840 } | 840 } |
| 841 | 841 |
| 842 core.int buildCounterAudienceSegmentGroup = 0; | 842 core.int buildCounterAudienceSegmentGroup = 0; |
| 843 buildAudienceSegmentGroup() { | 843 buildAudienceSegmentGroup() { |
| 844 var o = new api.AudienceSegmentGroup(); | 844 var o = new api.AudienceSegmentGroup(); |
| 845 buildCounterAudienceSegmentGroup++; | 845 buildCounterAudienceSegmentGroup++; |
| 846 if (buildCounterAudienceSegmentGroup < 3) { | 846 if (buildCounterAudienceSegmentGroup < 3) { |
| 847 o.audienceSegments = buildUnnamed1057(); | 847 o.audienceSegments = buildUnnamed777(); |
| 848 o.id = "foo"; | 848 o.id = "foo"; |
| 849 o.name = "foo"; | 849 o.name = "foo"; |
| 850 } | 850 } |
| 851 buildCounterAudienceSegmentGroup--; | 851 buildCounterAudienceSegmentGroup--; |
| 852 return o; | 852 return o; |
| 853 } | 853 } |
| 854 | 854 |
| 855 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { | 855 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { |
| 856 buildCounterAudienceSegmentGroup++; | 856 buildCounterAudienceSegmentGroup++; |
| 857 if (buildCounterAudienceSegmentGroup < 3) { | 857 if (buildCounterAudienceSegmentGroup < 3) { |
| 858 checkUnnamed1057(o.audienceSegments); | 858 checkUnnamed777(o.audienceSegments); |
| 859 unittest.expect(o.id, unittest.equals('foo')); | 859 unittest.expect(o.id, unittest.equals('foo')); |
| 860 unittest.expect(o.name, unittest.equals('foo')); | 860 unittest.expect(o.name, unittest.equals('foo')); |
| 861 } | 861 } |
| 862 buildCounterAudienceSegmentGroup--; | 862 buildCounterAudienceSegmentGroup--; |
| 863 } | 863 } |
| 864 | 864 |
| 865 core.int buildCounterBrowser = 0; | 865 core.int buildCounterBrowser = 0; |
| 866 buildBrowser() { | 866 buildBrowser() { |
| 867 var o = new api.Browser(); | 867 var o = new api.Browser(); |
| 868 buildCounterBrowser++; | 868 buildCounterBrowser++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 884 unittest.expect(o.browserVersionId, unittest.equals('foo')); | 884 unittest.expect(o.browserVersionId, unittest.equals('foo')); |
| 885 unittest.expect(o.dartId, unittest.equals('foo')); | 885 unittest.expect(o.dartId, unittest.equals('foo')); |
| 886 unittest.expect(o.kind, unittest.equals('foo')); | 886 unittest.expect(o.kind, unittest.equals('foo')); |
| 887 unittest.expect(o.majorVersion, unittest.equals('foo')); | 887 unittest.expect(o.majorVersion, unittest.equals('foo')); |
| 888 unittest.expect(o.minorVersion, unittest.equals('foo')); | 888 unittest.expect(o.minorVersion, unittest.equals('foo')); |
| 889 unittest.expect(o.name, unittest.equals('foo')); | 889 unittest.expect(o.name, unittest.equals('foo')); |
| 890 } | 890 } |
| 891 buildCounterBrowser--; | 891 buildCounterBrowser--; |
| 892 } | 892 } |
| 893 | 893 |
| 894 buildUnnamed1058() { | 894 buildUnnamed778() { |
| 895 var o = new core.List<api.Browser>(); | 895 var o = new core.List<api.Browser>(); |
| 896 o.add(buildBrowser()); | 896 o.add(buildBrowser()); |
| 897 o.add(buildBrowser()); | 897 o.add(buildBrowser()); |
| 898 return o; | 898 return o; |
| 899 } | 899 } |
| 900 | 900 |
| 901 checkUnnamed1058(core.List<api.Browser> o) { | 901 checkUnnamed778(core.List<api.Browser> o) { |
| 902 unittest.expect(o, unittest.hasLength(2)); | 902 unittest.expect(o, unittest.hasLength(2)); |
| 903 checkBrowser(o[0]); | 903 checkBrowser(o[0]); |
| 904 checkBrowser(o[1]); | 904 checkBrowser(o[1]); |
| 905 } | 905 } |
| 906 | 906 |
| 907 core.int buildCounterBrowsersListResponse = 0; | 907 core.int buildCounterBrowsersListResponse = 0; |
| 908 buildBrowsersListResponse() { | 908 buildBrowsersListResponse() { |
| 909 var o = new api.BrowsersListResponse(); | 909 var o = new api.BrowsersListResponse(); |
| 910 buildCounterBrowsersListResponse++; | 910 buildCounterBrowsersListResponse++; |
| 911 if (buildCounterBrowsersListResponse < 3) { | 911 if (buildCounterBrowsersListResponse < 3) { |
| 912 o.browsers = buildUnnamed1058(); | 912 o.browsers = buildUnnamed778(); |
| 913 o.kind = "foo"; | 913 o.kind = "foo"; |
| 914 } | 914 } |
| 915 buildCounterBrowsersListResponse--; | 915 buildCounterBrowsersListResponse--; |
| 916 return o; | 916 return o; |
| 917 } | 917 } |
| 918 | 918 |
| 919 checkBrowsersListResponse(api.BrowsersListResponse o) { | 919 checkBrowsersListResponse(api.BrowsersListResponse o) { |
| 920 buildCounterBrowsersListResponse++; | 920 buildCounterBrowsersListResponse++; |
| 921 if (buildCounterBrowsersListResponse < 3) { | 921 if (buildCounterBrowsersListResponse < 3) { |
| 922 checkUnnamed1058(o.browsers); | 922 checkUnnamed778(o.browsers); |
| 923 unittest.expect(o.kind, unittest.equals('foo')); | 923 unittest.expect(o.kind, unittest.equals('foo')); |
| 924 } | 924 } |
| 925 buildCounterBrowsersListResponse--; | 925 buildCounterBrowsersListResponse--; |
| 926 } | 926 } |
| 927 | 927 |
| 928 buildUnnamed1059() { | 928 buildUnnamed779() { |
| 929 var o = new core.List<api.CreativeOptimizationConfiguration>(); | 929 var o = new core.List<api.CreativeOptimizationConfiguration>(); |
| 930 o.add(buildCreativeOptimizationConfiguration()); | 930 o.add(buildCreativeOptimizationConfiguration()); |
| 931 o.add(buildCreativeOptimizationConfiguration()); | 931 o.add(buildCreativeOptimizationConfiguration()); |
| 932 return o; | 932 return o; |
| 933 } | 933 } |
| 934 | 934 |
| 935 checkUnnamed1059(core.List<api.CreativeOptimizationConfiguration> o) { | 935 checkUnnamed779(core.List<api.CreativeOptimizationConfiguration> o) { |
| 936 unittest.expect(o, unittest.hasLength(2)); | 936 unittest.expect(o, unittest.hasLength(2)); |
| 937 checkCreativeOptimizationConfiguration(o[0]); | 937 checkCreativeOptimizationConfiguration(o[0]); |
| 938 checkCreativeOptimizationConfiguration(o[1]); | 938 checkCreativeOptimizationConfiguration(o[1]); |
| 939 } | 939 } |
| 940 | 940 |
| 941 buildUnnamed1060() { | 941 buildUnnamed780() { |
| 942 var o = new core.List<api.AudienceSegmentGroup>(); | 942 var o = new core.List<api.AudienceSegmentGroup>(); |
| 943 o.add(buildAudienceSegmentGroup()); | 943 o.add(buildAudienceSegmentGroup()); |
| 944 o.add(buildAudienceSegmentGroup()); | 944 o.add(buildAudienceSegmentGroup()); |
| 945 return o; | 945 return o; |
| 946 } | 946 } |
| 947 | 947 |
| 948 checkUnnamed1060(core.List<api.AudienceSegmentGroup> o) { | 948 checkUnnamed780(core.List<api.AudienceSegmentGroup> o) { |
| 949 unittest.expect(o, unittest.hasLength(2)); | 949 unittest.expect(o, unittest.hasLength(2)); |
| 950 checkAudienceSegmentGroup(o[0]); | 950 checkAudienceSegmentGroup(o[0]); |
| 951 checkAudienceSegmentGroup(o[1]); | 951 checkAudienceSegmentGroup(o[1]); |
| 952 } | 952 } |
| 953 | 953 |
| 954 buildUnnamed1061() { | 954 buildUnnamed781() { |
| 955 var o = new core.List<core.String>(); | 955 var o = new core.List<core.String>(); |
| 956 o.add("foo"); | 956 o.add("foo"); |
| 957 o.add("foo"); | 957 o.add("foo"); |
| 958 return o; | 958 return o; |
| 959 } | 959 } |
| 960 | 960 |
| 961 checkUnnamed1061(core.List<core.String> o) { | 961 checkUnnamed781(core.List<core.String> o) { |
| 962 unittest.expect(o, unittest.hasLength(2)); | 962 unittest.expect(o, unittest.hasLength(2)); |
| 963 unittest.expect(o[0], unittest.equals('foo')); | 963 unittest.expect(o[0], unittest.equals('foo')); |
| 964 unittest.expect(o[1], unittest.equals('foo')); | 964 unittest.expect(o[1], unittest.equals('foo')); |
| 965 } | 965 } |
| 966 | 966 |
| 967 buildUnnamed1062() { | 967 buildUnnamed782() { |
| 968 var o = new core.List<api.EventTagOverride>(); | 968 var o = new core.List<api.EventTagOverride>(); |
| 969 o.add(buildEventTagOverride()); | 969 o.add(buildEventTagOverride()); |
| 970 o.add(buildEventTagOverride()); | 970 o.add(buildEventTagOverride()); |
| 971 return o; | 971 return o; |
| 972 } | 972 } |
| 973 | 973 |
| 974 checkUnnamed1062(core.List<api.EventTagOverride> o) { | 974 checkUnnamed782(core.List<api.EventTagOverride> o) { |
| 975 unittest.expect(o, unittest.hasLength(2)); | 975 unittest.expect(o, unittest.hasLength(2)); |
| 976 checkEventTagOverride(o[0]); | 976 checkEventTagOverride(o[0]); |
| 977 checkEventTagOverride(o[1]); | 977 checkEventTagOverride(o[1]); |
| 978 } | 978 } |
| 979 | 979 |
| 980 buildUnnamed1063() { | 980 buildUnnamed783() { |
| 981 var o = new core.List<core.String>(); | 981 var o = new core.List<core.String>(); |
| 982 o.add("foo"); | 982 o.add("foo"); |
| 983 o.add("foo"); | 983 o.add("foo"); |
| 984 return o; | 984 return o; |
| 985 } | 985 } |
| 986 | 986 |
| 987 checkUnnamed1063(core.List<core.String> o) { | 987 checkUnnamed783(core.List<core.String> o) { |
| 988 unittest.expect(o, unittest.hasLength(2)); | 988 unittest.expect(o, unittest.hasLength(2)); |
| 989 unittest.expect(o[0], unittest.equals('foo')); | 989 unittest.expect(o[0], unittest.equals('foo')); |
| 990 unittest.expect(o[1], unittest.equals('foo')); | 990 unittest.expect(o[1], unittest.equals('foo')); |
| 991 } | 991 } |
| 992 | 992 |
| 993 core.int buildCounterCampaign = 0; | 993 core.int buildCounterCampaign = 0; |
| 994 buildCampaign() { | 994 buildCampaign() { |
| 995 var o = new api.Campaign(); | 995 var o = new api.Campaign(); |
| 996 buildCounterCampaign++; | 996 buildCounterCampaign++; |
| 997 if (buildCounterCampaign < 3) { | 997 if (buildCounterCampaign < 3) { |
| 998 o.accountId = "foo"; | 998 o.accountId = "foo"; |
| 999 o.additionalCreativeOptimizationConfigurations = buildUnnamed1059(); | 999 o.additionalCreativeOptimizationConfigurations = buildUnnamed779(); |
| 1000 o.advertiserGroupId = "foo"; | 1000 o.advertiserGroupId = "foo"; |
| 1001 o.advertiserId = "foo"; | 1001 o.advertiserId = "foo"; |
| 1002 o.advertiserIdDimensionValue = buildDimensionValue(); | 1002 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 1003 o.archived = true; | 1003 o.archived = true; |
| 1004 o.audienceSegmentGroups = buildUnnamed1060(); | 1004 o.audienceSegmentGroups = buildUnnamed780(); |
| 1005 o.billingInvoiceCode = "foo"; | 1005 o.billingInvoiceCode = "foo"; |
| 1006 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); | 1006 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); |
| 1007 o.comment = "foo"; | 1007 o.comment = "foo"; |
| 1008 o.comscoreVceEnabled = true; | 1008 o.comscoreVceEnabled = true; |
| 1009 o.createInfo = buildLastModifiedInfo(); | 1009 o.createInfo = buildLastModifiedInfo(); |
| 1010 o.creativeGroupIds = buildUnnamed1061(); | 1010 o.creativeGroupIds = buildUnnamed781(); |
| 1011 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); | 1011 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); |
| 1012 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); | 1012 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); |
| 1013 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 1013 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 1014 o.eventTagOverrides = buildUnnamed1062(); | 1014 o.eventTagOverrides = buildUnnamed782(); |
| 1015 o.externalId = "foo"; | 1015 o.externalId = "foo"; |
| 1016 o.id = "foo"; | 1016 o.id = "foo"; |
| 1017 o.idDimensionValue = buildDimensionValue(); | 1017 o.idDimensionValue = buildDimensionValue(); |
| 1018 o.kind = "foo"; | 1018 o.kind = "foo"; |
| 1019 o.lastModifiedInfo = buildLastModifiedInfo(); | 1019 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 1020 o.lookbackConfiguration = buildLookbackConfiguration(); | 1020 o.lookbackConfiguration = buildLookbackConfiguration(); |
| 1021 o.name = "foo"; | 1021 o.name = "foo"; |
| 1022 o.nielsenOcrEnabled = true; | 1022 o.nielsenOcrEnabled = true; |
| 1023 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 1023 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 1024 o.subaccountId = "foo"; | 1024 o.subaccountId = "foo"; |
| 1025 o.traffickerEmails = buildUnnamed1063(); | 1025 o.traffickerEmails = buildUnnamed783(); |
| 1026 } | 1026 } |
| 1027 buildCounterCampaign--; | 1027 buildCounterCampaign--; |
| 1028 return o; | 1028 return o; |
| 1029 } | 1029 } |
| 1030 | 1030 |
| 1031 checkCampaign(api.Campaign o) { | 1031 checkCampaign(api.Campaign o) { |
| 1032 buildCounterCampaign++; | 1032 buildCounterCampaign++; |
| 1033 if (buildCounterCampaign < 3) { | 1033 if (buildCounterCampaign < 3) { |
| 1034 unittest.expect(o.accountId, unittest.equals('foo')); | 1034 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1035 checkUnnamed1059(o.additionalCreativeOptimizationConfigurations); | 1035 checkUnnamed779(o.additionalCreativeOptimizationConfigurations); |
| 1036 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); | 1036 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); |
| 1037 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1037 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 1038 checkDimensionValue(o.advertiserIdDimensionValue); | 1038 checkDimensionValue(o.advertiserIdDimensionValue); |
| 1039 unittest.expect(o.archived, unittest.isTrue); | 1039 unittest.expect(o.archived, unittest.isTrue); |
| 1040 checkUnnamed1060(o.audienceSegmentGroups); | 1040 checkUnnamed780(o.audienceSegmentGroups); |
| 1041 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); | 1041 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); |
| 1042 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); | 1042 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); |
| 1043 unittest.expect(o.comment, unittest.equals('foo')); | 1043 unittest.expect(o.comment, unittest.equals('foo')); |
| 1044 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); | 1044 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); |
| 1045 checkLastModifiedInfo(o.createInfo); | 1045 checkLastModifiedInfo(o.createInfo); |
| 1046 checkUnnamed1061(o.creativeGroupIds); | 1046 checkUnnamed781(o.creativeGroupIds); |
| 1047 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); | 1047 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); |
| 1048 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); | 1048 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); |
| 1049 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 1049 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 1050 checkUnnamed1062(o.eventTagOverrides); | 1050 checkUnnamed782(o.eventTagOverrides); |
| 1051 unittest.expect(o.externalId, unittest.equals('foo')); | 1051 unittest.expect(o.externalId, unittest.equals('foo')); |
| 1052 unittest.expect(o.id, unittest.equals('foo')); | 1052 unittest.expect(o.id, unittest.equals('foo')); |
| 1053 checkDimensionValue(o.idDimensionValue); | 1053 checkDimensionValue(o.idDimensionValue); |
| 1054 unittest.expect(o.kind, unittest.equals('foo')); | 1054 unittest.expect(o.kind, unittest.equals('foo')); |
| 1055 checkLastModifiedInfo(o.lastModifiedInfo); | 1055 checkLastModifiedInfo(o.lastModifiedInfo); |
| 1056 checkLookbackConfiguration(o.lookbackConfiguration); | 1056 checkLookbackConfiguration(o.lookbackConfiguration); |
| 1057 unittest.expect(o.name, unittest.equals('foo')); | 1057 unittest.expect(o.name, unittest.equals('foo')); |
| 1058 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); | 1058 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); |
| 1059 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 1059 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 1060 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1060 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1061 checkUnnamed1063(o.traffickerEmails); | 1061 checkUnnamed783(o.traffickerEmails); |
| 1062 } | 1062 } |
| 1063 buildCounterCampaign--; | 1063 buildCounterCampaign--; |
| 1064 } | 1064 } |
| 1065 | 1065 |
| 1066 core.int buildCounterCampaignCreativeAssociation = 0; | 1066 core.int buildCounterCampaignCreativeAssociation = 0; |
| 1067 buildCampaignCreativeAssociation() { | 1067 buildCampaignCreativeAssociation() { |
| 1068 var o = new api.CampaignCreativeAssociation(); | 1068 var o = new api.CampaignCreativeAssociation(); |
| 1069 buildCounterCampaignCreativeAssociation++; | 1069 buildCounterCampaignCreativeAssociation++; |
| 1070 if (buildCounterCampaignCreativeAssociation < 3) { | 1070 if (buildCounterCampaignCreativeAssociation < 3) { |
| 1071 o.creativeId = "foo"; | 1071 o.creativeId = "foo"; |
| 1072 o.kind = "foo"; | 1072 o.kind = "foo"; |
| 1073 } | 1073 } |
| 1074 buildCounterCampaignCreativeAssociation--; | 1074 buildCounterCampaignCreativeAssociation--; |
| 1075 return o; | 1075 return o; |
| 1076 } | 1076 } |
| 1077 | 1077 |
| 1078 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { | 1078 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { |
| 1079 buildCounterCampaignCreativeAssociation++; | 1079 buildCounterCampaignCreativeAssociation++; |
| 1080 if (buildCounterCampaignCreativeAssociation < 3) { | 1080 if (buildCounterCampaignCreativeAssociation < 3) { |
| 1081 unittest.expect(o.creativeId, unittest.equals('foo')); | 1081 unittest.expect(o.creativeId, unittest.equals('foo')); |
| 1082 unittest.expect(o.kind, unittest.equals('foo')); | 1082 unittest.expect(o.kind, unittest.equals('foo')); |
| 1083 } | 1083 } |
| 1084 buildCounterCampaignCreativeAssociation--; | 1084 buildCounterCampaignCreativeAssociation--; |
| 1085 } | 1085 } |
| 1086 | 1086 |
| 1087 buildUnnamed1064() { | 1087 buildUnnamed784() { |
| 1088 var o = new core.List<api.CampaignCreativeAssociation>(); | 1088 var o = new core.List<api.CampaignCreativeAssociation>(); |
| 1089 o.add(buildCampaignCreativeAssociation()); | 1089 o.add(buildCampaignCreativeAssociation()); |
| 1090 o.add(buildCampaignCreativeAssociation()); | 1090 o.add(buildCampaignCreativeAssociation()); |
| 1091 return o; | 1091 return o; |
| 1092 } | 1092 } |
| 1093 | 1093 |
| 1094 checkUnnamed1064(core.List<api.CampaignCreativeAssociation> o) { | 1094 checkUnnamed784(core.List<api.CampaignCreativeAssociation> o) { |
| 1095 unittest.expect(o, unittest.hasLength(2)); | 1095 unittest.expect(o, unittest.hasLength(2)); |
| 1096 checkCampaignCreativeAssociation(o[0]); | 1096 checkCampaignCreativeAssociation(o[0]); |
| 1097 checkCampaignCreativeAssociation(o[1]); | 1097 checkCampaignCreativeAssociation(o[1]); |
| 1098 } | 1098 } |
| 1099 | 1099 |
| 1100 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; | 1100 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; |
| 1101 buildCampaignCreativeAssociationsListResponse() { | 1101 buildCampaignCreativeAssociationsListResponse() { |
| 1102 var o = new api.CampaignCreativeAssociationsListResponse(); | 1102 var o = new api.CampaignCreativeAssociationsListResponse(); |
| 1103 buildCounterCampaignCreativeAssociationsListResponse++; | 1103 buildCounterCampaignCreativeAssociationsListResponse++; |
| 1104 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1104 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
| 1105 o.campaignCreativeAssociations = buildUnnamed1064(); | 1105 o.campaignCreativeAssociations = buildUnnamed784(); |
| 1106 o.kind = "foo"; | 1106 o.kind = "foo"; |
| 1107 o.nextPageToken = "foo"; | 1107 o.nextPageToken = "foo"; |
| 1108 } | 1108 } |
| 1109 buildCounterCampaignCreativeAssociationsListResponse--; | 1109 buildCounterCampaignCreativeAssociationsListResponse--; |
| 1110 return o; | 1110 return o; |
| 1111 } | 1111 } |
| 1112 | 1112 |
| 1113 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { | 1113 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { |
| 1114 buildCounterCampaignCreativeAssociationsListResponse++; | 1114 buildCounterCampaignCreativeAssociationsListResponse++; |
| 1115 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1115 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
| 1116 checkUnnamed1064(o.campaignCreativeAssociations); | 1116 checkUnnamed784(o.campaignCreativeAssociations); |
| 1117 unittest.expect(o.kind, unittest.equals('foo')); | 1117 unittest.expect(o.kind, unittest.equals('foo')); |
| 1118 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1118 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1119 } | 1119 } |
| 1120 buildCounterCampaignCreativeAssociationsListResponse--; | 1120 buildCounterCampaignCreativeAssociationsListResponse--; |
| 1121 } | 1121 } |
| 1122 | 1122 |
| 1123 buildUnnamed1065() { | 1123 buildUnnamed785() { |
| 1124 var o = new core.List<api.Campaign>(); | 1124 var o = new core.List<api.Campaign>(); |
| 1125 o.add(buildCampaign()); | 1125 o.add(buildCampaign()); |
| 1126 o.add(buildCampaign()); | 1126 o.add(buildCampaign()); |
| 1127 return o; | 1127 return o; |
| 1128 } | 1128 } |
| 1129 | 1129 |
| 1130 checkUnnamed1065(core.List<api.Campaign> o) { | 1130 checkUnnamed785(core.List<api.Campaign> o) { |
| 1131 unittest.expect(o, unittest.hasLength(2)); | 1131 unittest.expect(o, unittest.hasLength(2)); |
| 1132 checkCampaign(o[0]); | 1132 checkCampaign(o[0]); |
| 1133 checkCampaign(o[1]); | 1133 checkCampaign(o[1]); |
| 1134 } | 1134 } |
| 1135 | 1135 |
| 1136 core.int buildCounterCampaignsListResponse = 0; | 1136 core.int buildCounterCampaignsListResponse = 0; |
| 1137 buildCampaignsListResponse() { | 1137 buildCampaignsListResponse() { |
| 1138 var o = new api.CampaignsListResponse(); | 1138 var o = new api.CampaignsListResponse(); |
| 1139 buildCounterCampaignsListResponse++; | 1139 buildCounterCampaignsListResponse++; |
| 1140 if (buildCounterCampaignsListResponse < 3) { | 1140 if (buildCounterCampaignsListResponse < 3) { |
| 1141 o.campaigns = buildUnnamed1065(); | 1141 o.campaigns = buildUnnamed785(); |
| 1142 o.kind = "foo"; | 1142 o.kind = "foo"; |
| 1143 o.nextPageToken = "foo"; | 1143 o.nextPageToken = "foo"; |
| 1144 } | 1144 } |
| 1145 buildCounterCampaignsListResponse--; | 1145 buildCounterCampaignsListResponse--; |
| 1146 return o; | 1146 return o; |
| 1147 } | 1147 } |
| 1148 | 1148 |
| 1149 checkCampaignsListResponse(api.CampaignsListResponse o) { | 1149 checkCampaignsListResponse(api.CampaignsListResponse o) { |
| 1150 buildCounterCampaignsListResponse++; | 1150 buildCounterCampaignsListResponse++; |
| 1151 if (buildCounterCampaignsListResponse < 3) { | 1151 if (buildCounterCampaignsListResponse < 3) { |
| 1152 checkUnnamed1065(o.campaigns); | 1152 checkUnnamed785(o.campaigns); |
| 1153 unittest.expect(o.kind, unittest.equals('foo')); | 1153 unittest.expect(o.kind, unittest.equals('foo')); |
| 1154 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1154 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1155 } | 1155 } |
| 1156 buildCounterCampaignsListResponse--; | 1156 buildCounterCampaignsListResponse--; |
| 1157 } | 1157 } |
| 1158 | 1158 |
| 1159 core.int buildCounterChangeLog = 0; | 1159 core.int buildCounterChangeLog = 0; |
| 1160 buildChangeLog() { | 1160 buildChangeLog() { |
| 1161 var o = new api.ChangeLog(); | 1161 var o = new api.ChangeLog(); |
| 1162 buildCounterChangeLog++; | 1162 buildCounterChangeLog++; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1194 unittest.expect(o.objectType, unittest.equals('foo')); | 1194 unittest.expect(o.objectType, unittest.equals('foo')); |
| 1195 unittest.expect(o.oldValue, unittest.equals('foo')); | 1195 unittest.expect(o.oldValue, unittest.equals('foo')); |
| 1196 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1196 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1197 unittest.expect(o.transactionId, unittest.equals('foo')); | 1197 unittest.expect(o.transactionId, unittest.equals('foo')); |
| 1198 unittest.expect(o.userProfileId, unittest.equals('foo')); | 1198 unittest.expect(o.userProfileId, unittest.equals('foo')); |
| 1199 unittest.expect(o.userProfileName, unittest.equals('foo')); | 1199 unittest.expect(o.userProfileName, unittest.equals('foo')); |
| 1200 } | 1200 } |
| 1201 buildCounterChangeLog--; | 1201 buildCounterChangeLog--; |
| 1202 } | 1202 } |
| 1203 | 1203 |
| 1204 buildUnnamed1066() { | 1204 buildUnnamed786() { |
| 1205 var o = new core.List<api.ChangeLog>(); | 1205 var o = new core.List<api.ChangeLog>(); |
| 1206 o.add(buildChangeLog()); | 1206 o.add(buildChangeLog()); |
| 1207 o.add(buildChangeLog()); | 1207 o.add(buildChangeLog()); |
| 1208 return o; | 1208 return o; |
| 1209 } | 1209 } |
| 1210 | 1210 |
| 1211 checkUnnamed1066(core.List<api.ChangeLog> o) { | 1211 checkUnnamed786(core.List<api.ChangeLog> o) { |
| 1212 unittest.expect(o, unittest.hasLength(2)); | 1212 unittest.expect(o, unittest.hasLength(2)); |
| 1213 checkChangeLog(o[0]); | 1213 checkChangeLog(o[0]); |
| 1214 checkChangeLog(o[1]); | 1214 checkChangeLog(o[1]); |
| 1215 } | 1215 } |
| 1216 | 1216 |
| 1217 core.int buildCounterChangeLogsListResponse = 0; | 1217 core.int buildCounterChangeLogsListResponse = 0; |
| 1218 buildChangeLogsListResponse() { | 1218 buildChangeLogsListResponse() { |
| 1219 var o = new api.ChangeLogsListResponse(); | 1219 var o = new api.ChangeLogsListResponse(); |
| 1220 buildCounterChangeLogsListResponse++; | 1220 buildCounterChangeLogsListResponse++; |
| 1221 if (buildCounterChangeLogsListResponse < 3) { | 1221 if (buildCounterChangeLogsListResponse < 3) { |
| 1222 o.changeLogs = buildUnnamed1066(); | 1222 o.changeLogs = buildUnnamed786(); |
| 1223 o.kind = "foo"; | 1223 o.kind = "foo"; |
| 1224 o.nextPageToken = "foo"; | 1224 o.nextPageToken = "foo"; |
| 1225 } | 1225 } |
| 1226 buildCounterChangeLogsListResponse--; | 1226 buildCounterChangeLogsListResponse--; |
| 1227 return o; | 1227 return o; |
| 1228 } | 1228 } |
| 1229 | 1229 |
| 1230 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { | 1230 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { |
| 1231 buildCounterChangeLogsListResponse++; | 1231 buildCounterChangeLogsListResponse++; |
| 1232 if (buildCounterChangeLogsListResponse < 3) { | 1232 if (buildCounterChangeLogsListResponse < 3) { |
| 1233 checkUnnamed1066(o.changeLogs); | 1233 checkUnnamed786(o.changeLogs); |
| 1234 unittest.expect(o.kind, unittest.equals('foo')); | 1234 unittest.expect(o.kind, unittest.equals('foo')); |
| 1235 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1235 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1236 } | 1236 } |
| 1237 buildCounterChangeLogsListResponse--; | 1237 buildCounterChangeLogsListResponse--; |
| 1238 } | 1238 } |
| 1239 | 1239 |
| 1240 buildUnnamed1067() { | 1240 buildUnnamed787() { |
| 1241 var o = new core.List<api.City>(); | 1241 var o = new core.List<api.City>(); |
| 1242 o.add(buildCity()); | 1242 o.add(buildCity()); |
| 1243 o.add(buildCity()); | 1243 o.add(buildCity()); |
| 1244 return o; | 1244 return o; |
| 1245 } | 1245 } |
| 1246 | 1246 |
| 1247 checkUnnamed1067(core.List<api.City> o) { | 1247 checkUnnamed787(core.List<api.City> o) { |
| 1248 unittest.expect(o, unittest.hasLength(2)); | 1248 unittest.expect(o, unittest.hasLength(2)); |
| 1249 checkCity(o[0]); | 1249 checkCity(o[0]); |
| 1250 checkCity(o[1]); | 1250 checkCity(o[1]); |
| 1251 } | 1251 } |
| 1252 | 1252 |
| 1253 core.int buildCounterCitiesListResponse = 0; | 1253 core.int buildCounterCitiesListResponse = 0; |
| 1254 buildCitiesListResponse() { | 1254 buildCitiesListResponse() { |
| 1255 var o = new api.CitiesListResponse(); | 1255 var o = new api.CitiesListResponse(); |
| 1256 buildCounterCitiesListResponse++; | 1256 buildCounterCitiesListResponse++; |
| 1257 if (buildCounterCitiesListResponse < 3) { | 1257 if (buildCounterCitiesListResponse < 3) { |
| 1258 o.cities = buildUnnamed1067(); | 1258 o.cities = buildUnnamed787(); |
| 1259 o.kind = "foo"; | 1259 o.kind = "foo"; |
| 1260 } | 1260 } |
| 1261 buildCounterCitiesListResponse--; | 1261 buildCounterCitiesListResponse--; |
| 1262 return o; | 1262 return o; |
| 1263 } | 1263 } |
| 1264 | 1264 |
| 1265 checkCitiesListResponse(api.CitiesListResponse o) { | 1265 checkCitiesListResponse(api.CitiesListResponse o) { |
| 1266 buildCounterCitiesListResponse++; | 1266 buildCounterCitiesListResponse++; |
| 1267 if (buildCounterCitiesListResponse < 3) { | 1267 if (buildCounterCitiesListResponse < 3) { |
| 1268 checkUnnamed1067(o.cities); | 1268 checkUnnamed787(o.cities); |
| 1269 unittest.expect(o.kind, unittest.equals('foo')); | 1269 unittest.expect(o.kind, unittest.equals('foo')); |
| 1270 } | 1270 } |
| 1271 buildCounterCitiesListResponse--; | 1271 buildCounterCitiesListResponse--; |
| 1272 } | 1272 } |
| 1273 | 1273 |
| 1274 core.int buildCounterCity = 0; | 1274 core.int buildCounterCity = 0; |
| 1275 buildCity() { | 1275 buildCity() { |
| 1276 var o = new api.City(); | 1276 var o = new api.City(); |
| 1277 buildCounterCity++; | 1277 buildCounterCity++; |
| 1278 if (buildCounterCity < 3) { | 1278 if (buildCounterCity < 3) { |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1439 checkConnectionType(api.ConnectionType o) { | 1439 checkConnectionType(api.ConnectionType o) { |
| 1440 buildCounterConnectionType++; | 1440 buildCounterConnectionType++; |
| 1441 if (buildCounterConnectionType < 3) { | 1441 if (buildCounterConnectionType < 3) { |
| 1442 unittest.expect(o.id, unittest.equals('foo')); | 1442 unittest.expect(o.id, unittest.equals('foo')); |
| 1443 unittest.expect(o.kind, unittest.equals('foo')); | 1443 unittest.expect(o.kind, unittest.equals('foo')); |
| 1444 unittest.expect(o.name, unittest.equals('foo')); | 1444 unittest.expect(o.name, unittest.equals('foo')); |
| 1445 } | 1445 } |
| 1446 buildCounterConnectionType--; | 1446 buildCounterConnectionType--; |
| 1447 } | 1447 } |
| 1448 | 1448 |
| 1449 buildUnnamed1068() { | 1449 buildUnnamed788() { |
| 1450 var o = new core.List<api.ConnectionType>(); | 1450 var o = new core.List<api.ConnectionType>(); |
| 1451 o.add(buildConnectionType()); | 1451 o.add(buildConnectionType()); |
| 1452 o.add(buildConnectionType()); | 1452 o.add(buildConnectionType()); |
| 1453 return o; | 1453 return o; |
| 1454 } | 1454 } |
| 1455 | 1455 |
| 1456 checkUnnamed1068(core.List<api.ConnectionType> o) { | 1456 checkUnnamed788(core.List<api.ConnectionType> o) { |
| 1457 unittest.expect(o, unittest.hasLength(2)); | 1457 unittest.expect(o, unittest.hasLength(2)); |
| 1458 checkConnectionType(o[0]); | 1458 checkConnectionType(o[0]); |
| 1459 checkConnectionType(o[1]); | 1459 checkConnectionType(o[1]); |
| 1460 } | 1460 } |
| 1461 | 1461 |
| 1462 core.int buildCounterConnectionTypesListResponse = 0; | 1462 core.int buildCounterConnectionTypesListResponse = 0; |
| 1463 buildConnectionTypesListResponse() { | 1463 buildConnectionTypesListResponse() { |
| 1464 var o = new api.ConnectionTypesListResponse(); | 1464 var o = new api.ConnectionTypesListResponse(); |
| 1465 buildCounterConnectionTypesListResponse++; | 1465 buildCounterConnectionTypesListResponse++; |
| 1466 if (buildCounterConnectionTypesListResponse < 3) { | 1466 if (buildCounterConnectionTypesListResponse < 3) { |
| 1467 o.connectionTypes = buildUnnamed1068(); | 1467 o.connectionTypes = buildUnnamed788(); |
| 1468 o.kind = "foo"; | 1468 o.kind = "foo"; |
| 1469 } | 1469 } |
| 1470 buildCounterConnectionTypesListResponse--; | 1470 buildCounterConnectionTypesListResponse--; |
| 1471 return o; | 1471 return o; |
| 1472 } | 1472 } |
| 1473 | 1473 |
| 1474 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { | 1474 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { |
| 1475 buildCounterConnectionTypesListResponse++; | 1475 buildCounterConnectionTypesListResponse++; |
| 1476 if (buildCounterConnectionTypesListResponse < 3) { | 1476 if (buildCounterConnectionTypesListResponse < 3) { |
| 1477 checkUnnamed1068(o.connectionTypes); | 1477 checkUnnamed788(o.connectionTypes); |
| 1478 unittest.expect(o.kind, unittest.equals('foo')); | 1478 unittest.expect(o.kind, unittest.equals('foo')); |
| 1479 } | 1479 } |
| 1480 buildCounterConnectionTypesListResponse--; | 1480 buildCounterConnectionTypesListResponse--; |
| 1481 } | 1481 } |
| 1482 | 1482 |
| 1483 buildUnnamed1069() { | 1483 buildUnnamed789() { |
| 1484 var o = new core.List<api.ContentCategory>(); | 1484 var o = new core.List<api.ContentCategory>(); |
| 1485 o.add(buildContentCategory()); | 1485 o.add(buildContentCategory()); |
| 1486 o.add(buildContentCategory()); | 1486 o.add(buildContentCategory()); |
| 1487 return o; | 1487 return o; |
| 1488 } | 1488 } |
| 1489 | 1489 |
| 1490 checkUnnamed1069(core.List<api.ContentCategory> o) { | 1490 checkUnnamed789(core.List<api.ContentCategory> o) { |
| 1491 unittest.expect(o, unittest.hasLength(2)); | 1491 unittest.expect(o, unittest.hasLength(2)); |
| 1492 checkContentCategory(o[0]); | 1492 checkContentCategory(o[0]); |
| 1493 checkContentCategory(o[1]); | 1493 checkContentCategory(o[1]); |
| 1494 } | 1494 } |
| 1495 | 1495 |
| 1496 core.int buildCounterContentCategoriesListResponse = 0; | 1496 core.int buildCounterContentCategoriesListResponse = 0; |
| 1497 buildContentCategoriesListResponse() { | 1497 buildContentCategoriesListResponse() { |
| 1498 var o = new api.ContentCategoriesListResponse(); | 1498 var o = new api.ContentCategoriesListResponse(); |
| 1499 buildCounterContentCategoriesListResponse++; | 1499 buildCounterContentCategoriesListResponse++; |
| 1500 if (buildCounterContentCategoriesListResponse < 3) { | 1500 if (buildCounterContentCategoriesListResponse < 3) { |
| 1501 o.contentCategories = buildUnnamed1069(); | 1501 o.contentCategories = buildUnnamed789(); |
| 1502 o.kind = "foo"; | 1502 o.kind = "foo"; |
| 1503 o.nextPageToken = "foo"; | 1503 o.nextPageToken = "foo"; |
| 1504 } | 1504 } |
| 1505 buildCounterContentCategoriesListResponse--; | 1505 buildCounterContentCategoriesListResponse--; |
| 1506 return o; | 1506 return o; |
| 1507 } | 1507 } |
| 1508 | 1508 |
| 1509 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { | 1509 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { |
| 1510 buildCounterContentCategoriesListResponse++; | 1510 buildCounterContentCategoriesListResponse++; |
| 1511 if (buildCounterContentCategoriesListResponse < 3) { | 1511 if (buildCounterContentCategoriesListResponse < 3) { |
| 1512 checkUnnamed1069(o.contentCategories); | 1512 checkUnnamed789(o.contentCategories); |
| 1513 unittest.expect(o.kind, unittest.equals('foo')); | 1513 unittest.expect(o.kind, unittest.equals('foo')); |
| 1514 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1514 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1515 } | 1515 } |
| 1516 buildCounterContentCategoriesListResponse--; | 1516 buildCounterContentCategoriesListResponse--; |
| 1517 } | 1517 } |
| 1518 | 1518 |
| 1519 core.int buildCounterContentCategory = 0; | 1519 core.int buildCounterContentCategory = 0; |
| 1520 buildContentCategory() { | 1520 buildContentCategory() { |
| 1521 var o = new api.ContentCategory(); | 1521 var o = new api.ContentCategory(); |
| 1522 buildCounterContentCategory++; | 1522 buildCounterContentCategory++; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 1534 buildCounterContentCategory++; | 1534 buildCounterContentCategory++; |
| 1535 if (buildCounterContentCategory < 3) { | 1535 if (buildCounterContentCategory < 3) { |
| 1536 unittest.expect(o.accountId, unittest.equals('foo')); | 1536 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1537 unittest.expect(o.id, unittest.equals('foo')); | 1537 unittest.expect(o.id, unittest.equals('foo')); |
| 1538 unittest.expect(o.kind, unittest.equals('foo')); | 1538 unittest.expect(o.kind, unittest.equals('foo')); |
| 1539 unittest.expect(o.name, unittest.equals('foo')); | 1539 unittest.expect(o.name, unittest.equals('foo')); |
| 1540 } | 1540 } |
| 1541 buildCounterContentCategory--; | 1541 buildCounterContentCategory--; |
| 1542 } | 1542 } |
| 1543 | 1543 |
| 1544 buildUnnamed1070() { | 1544 buildUnnamed790() { |
| 1545 var o = new core.List<api.Country>(); | 1545 var o = new core.List<api.Country>(); |
| 1546 o.add(buildCountry()); | 1546 o.add(buildCountry()); |
| 1547 o.add(buildCountry()); | 1547 o.add(buildCountry()); |
| 1548 return o; | 1548 return o; |
| 1549 } | 1549 } |
| 1550 | 1550 |
| 1551 checkUnnamed1070(core.List<api.Country> o) { | 1551 checkUnnamed790(core.List<api.Country> o) { |
| 1552 unittest.expect(o, unittest.hasLength(2)); | 1552 unittest.expect(o, unittest.hasLength(2)); |
| 1553 checkCountry(o[0]); | 1553 checkCountry(o[0]); |
| 1554 checkCountry(o[1]); | 1554 checkCountry(o[1]); |
| 1555 } | 1555 } |
| 1556 | 1556 |
| 1557 core.int buildCounterCountriesListResponse = 0; | 1557 core.int buildCounterCountriesListResponse = 0; |
| 1558 buildCountriesListResponse() { | 1558 buildCountriesListResponse() { |
| 1559 var o = new api.CountriesListResponse(); | 1559 var o = new api.CountriesListResponse(); |
| 1560 buildCounterCountriesListResponse++; | 1560 buildCounterCountriesListResponse++; |
| 1561 if (buildCounterCountriesListResponse < 3) { | 1561 if (buildCounterCountriesListResponse < 3) { |
| 1562 o.countries = buildUnnamed1070(); | 1562 o.countries = buildUnnamed790(); |
| 1563 o.kind = "foo"; | 1563 o.kind = "foo"; |
| 1564 } | 1564 } |
| 1565 buildCounterCountriesListResponse--; | 1565 buildCounterCountriesListResponse--; |
| 1566 return o; | 1566 return o; |
| 1567 } | 1567 } |
| 1568 | 1568 |
| 1569 checkCountriesListResponse(api.CountriesListResponse o) { | 1569 checkCountriesListResponse(api.CountriesListResponse o) { |
| 1570 buildCounterCountriesListResponse++; | 1570 buildCounterCountriesListResponse++; |
| 1571 if (buildCounterCountriesListResponse < 3) { | 1571 if (buildCounterCountriesListResponse < 3) { |
| 1572 checkUnnamed1070(o.countries); | 1572 checkUnnamed790(o.countries); |
| 1573 unittest.expect(o.kind, unittest.equals('foo')); | 1573 unittest.expect(o.kind, unittest.equals('foo')); |
| 1574 } | 1574 } |
| 1575 buildCounterCountriesListResponse--; | 1575 buildCounterCountriesListResponse--; |
| 1576 } | 1576 } |
| 1577 | 1577 |
| 1578 core.int buildCounterCountry = 0; | 1578 core.int buildCounterCountry = 0; |
| 1579 buildCountry() { | 1579 buildCountry() { |
| 1580 var o = new api.Country(); | 1580 var o = new api.Country(); |
| 1581 buildCounterCountry++; | 1581 buildCounterCountry++; |
| 1582 if (buildCounterCountry < 3) { | 1582 if (buildCounterCountry < 3) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1595 if (buildCounterCountry < 3) { | 1595 if (buildCounterCountry < 3) { |
| 1596 unittest.expect(o.countryCode, unittest.equals('foo')); | 1596 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 1597 unittest.expect(o.dartId, unittest.equals('foo')); | 1597 unittest.expect(o.dartId, unittest.equals('foo')); |
| 1598 unittest.expect(o.kind, unittest.equals('foo')); | 1598 unittest.expect(o.kind, unittest.equals('foo')); |
| 1599 unittest.expect(o.name, unittest.equals('foo')); | 1599 unittest.expect(o.name, unittest.equals('foo')); |
| 1600 unittest.expect(o.sslEnabled, unittest.isTrue); | 1600 unittest.expect(o.sslEnabled, unittest.isTrue); |
| 1601 } | 1601 } |
| 1602 buildCounterCountry--; | 1602 buildCounterCountry--; |
| 1603 } | 1603 } |
| 1604 | 1604 |
| 1605 buildUnnamed1071() { | 1605 buildUnnamed791() { |
| 1606 var o = new core.List<core.String>(); | 1606 var o = new core.List<core.String>(); |
| 1607 o.add("foo"); | 1607 o.add("foo"); |
| 1608 o.add("foo"); | 1608 o.add("foo"); |
| 1609 return o; | 1609 return o; |
| 1610 } | 1610 } |
| 1611 | 1611 |
| 1612 checkUnnamed1071(core.List<core.String> o) { | 1612 checkUnnamed791(core.List<core.String> o) { |
| 1613 unittest.expect(o, unittest.hasLength(2)); | 1613 unittest.expect(o, unittest.hasLength(2)); |
| 1614 unittest.expect(o[0], unittest.equals('foo')); | 1614 unittest.expect(o[0], unittest.equals('foo')); |
| 1615 unittest.expect(o[1], unittest.equals('foo')); | 1615 unittest.expect(o[1], unittest.equals('foo')); |
| 1616 } | 1616 } |
| 1617 | 1617 |
| 1618 buildUnnamed1072() { | 1618 buildUnnamed792() { |
| 1619 var o = new core.List<core.String>(); | 1619 var o = new core.List<core.String>(); |
| 1620 o.add("foo"); | 1620 o.add("foo"); |
| 1621 o.add("foo"); | 1621 o.add("foo"); |
| 1622 return o; | 1622 return o; |
| 1623 } | 1623 } |
| 1624 | 1624 |
| 1625 checkUnnamed1072(core.List<core.String> o) { | 1625 checkUnnamed792(core.List<core.String> o) { |
| 1626 unittest.expect(o, unittest.hasLength(2)); | 1626 unittest.expect(o, unittest.hasLength(2)); |
| 1627 unittest.expect(o[0], unittest.equals('foo')); | 1627 unittest.expect(o[0], unittest.equals('foo')); |
| 1628 unittest.expect(o[1], unittest.equals('foo')); | 1628 unittest.expect(o[1], unittest.equals('foo')); |
| 1629 } | 1629 } |
| 1630 | 1630 |
| 1631 buildUnnamed1073() { | 1631 buildUnnamed793() { |
| 1632 var o = new core.List<api.ClickTag>(); | 1632 var o = new core.List<api.ClickTag>(); |
| 1633 o.add(buildClickTag()); | 1633 o.add(buildClickTag()); |
| 1634 o.add(buildClickTag()); | 1634 o.add(buildClickTag()); |
| 1635 return o; | 1635 return o; |
| 1636 } | 1636 } |
| 1637 | 1637 |
| 1638 checkUnnamed1073(core.List<api.ClickTag> o) { | 1638 checkUnnamed793(core.List<api.ClickTag> o) { |
| 1639 unittest.expect(o, unittest.hasLength(2)); | 1639 unittest.expect(o, unittest.hasLength(2)); |
| 1640 checkClickTag(o[0]); | 1640 checkClickTag(o[0]); |
| 1641 checkClickTag(o[1]); | 1641 checkClickTag(o[1]); |
| 1642 } | 1642 } |
| 1643 | 1643 |
| 1644 buildUnnamed1074() { | 1644 buildUnnamed794() { |
| 1645 var o = new core.List<core.String>(); | 1645 var o = new core.List<core.String>(); |
| 1646 o.add("foo"); | 1646 o.add("foo"); |
| 1647 o.add("foo"); | 1647 o.add("foo"); |
| 1648 return o; | 1648 return o; |
| 1649 } | 1649 } |
| 1650 | 1650 |
| 1651 checkUnnamed1074(core.List<core.String> o) { | 1651 checkUnnamed794(core.List<core.String> o) { |
| 1652 unittest.expect(o, unittest.hasLength(2)); | 1652 unittest.expect(o, unittest.hasLength(2)); |
| 1653 unittest.expect(o[0], unittest.equals('foo')); | 1653 unittest.expect(o[0], unittest.equals('foo')); |
| 1654 unittest.expect(o[1], unittest.equals('foo')); | 1654 unittest.expect(o[1], unittest.equals('foo')); |
| 1655 } | 1655 } |
| 1656 | 1656 |
| 1657 buildUnnamed1075() { | 1657 buildUnnamed795() { |
| 1658 var o = new core.List<core.String>(); | 1658 var o = new core.List<core.String>(); |
| 1659 o.add("foo"); | 1659 o.add("foo"); |
| 1660 o.add("foo"); | 1660 o.add("foo"); |
| 1661 return o; | 1661 return o; |
| 1662 } | 1662 } |
| 1663 | 1663 |
| 1664 checkUnnamed1075(core.List<core.String> o) { | 1664 checkUnnamed795(core.List<core.String> o) { |
| 1665 unittest.expect(o, unittest.hasLength(2)); | 1665 unittest.expect(o, unittest.hasLength(2)); |
| 1666 unittest.expect(o[0], unittest.equals('foo')); | 1666 unittest.expect(o[0], unittest.equals('foo')); |
| 1667 unittest.expect(o[1], unittest.equals('foo')); | 1667 unittest.expect(o[1], unittest.equals('foo')); |
| 1668 } | 1668 } |
| 1669 | 1669 |
| 1670 buildUnnamed1076() { | 1670 buildUnnamed796() { |
| 1671 var o = new core.List<api.CreativeCustomEvent>(); | 1671 var o = new core.List<api.CreativeCustomEvent>(); |
| 1672 o.add(buildCreativeCustomEvent()); | 1672 o.add(buildCreativeCustomEvent()); |
| 1673 o.add(buildCreativeCustomEvent()); | 1673 o.add(buildCreativeCustomEvent()); |
| 1674 return o; | 1674 return o; |
| 1675 } | 1675 } |
| 1676 | 1676 |
| 1677 checkUnnamed1076(core.List<api.CreativeCustomEvent> o) { | 1677 checkUnnamed796(core.List<api.CreativeCustomEvent> o) { |
| 1678 unittest.expect(o, unittest.hasLength(2)); | 1678 unittest.expect(o, unittest.hasLength(2)); |
| 1679 checkCreativeCustomEvent(o[0]); | 1679 checkCreativeCustomEvent(o[0]); |
| 1680 checkCreativeCustomEvent(o[1]); | 1680 checkCreativeCustomEvent(o[1]); |
| 1681 } | 1681 } |
| 1682 | 1682 |
| 1683 buildUnnamed1077() { | 1683 buildUnnamed797() { |
| 1684 var o = new core.List<api.CreativeAsset>(); | 1684 var o = new core.List<api.CreativeAsset>(); |
| 1685 o.add(buildCreativeAsset()); | 1685 o.add(buildCreativeAsset()); |
| 1686 o.add(buildCreativeAsset()); | 1686 o.add(buildCreativeAsset()); |
| 1687 return o; | 1687 return o; |
| 1688 } | 1688 } |
| 1689 | 1689 |
| 1690 checkUnnamed1077(core.List<api.CreativeAsset> o) { | 1690 checkUnnamed797(core.List<api.CreativeAsset> o) { |
| 1691 unittest.expect(o, unittest.hasLength(2)); | 1691 unittest.expect(o, unittest.hasLength(2)); |
| 1692 checkCreativeAsset(o[0]); | 1692 checkCreativeAsset(o[0]); |
| 1693 checkCreativeAsset(o[1]); | 1693 checkCreativeAsset(o[1]); |
| 1694 } | 1694 } |
| 1695 | 1695 |
| 1696 buildUnnamed1078() { | 1696 buildUnnamed798() { |
| 1697 var o = new core.List<api.CreativeFieldAssignment>(); | 1697 var o = new core.List<api.CreativeFieldAssignment>(); |
| 1698 o.add(buildCreativeFieldAssignment()); | 1698 o.add(buildCreativeFieldAssignment()); |
| 1699 o.add(buildCreativeFieldAssignment()); | 1699 o.add(buildCreativeFieldAssignment()); |
| 1700 return o; | 1700 return o; |
| 1701 } | 1701 } |
| 1702 | 1702 |
| 1703 checkUnnamed1078(core.List<api.CreativeFieldAssignment> o) { | 1703 checkUnnamed798(core.List<api.CreativeFieldAssignment> o) { |
| 1704 unittest.expect(o, unittest.hasLength(2)); | 1704 unittest.expect(o, unittest.hasLength(2)); |
| 1705 checkCreativeFieldAssignment(o[0]); | 1705 checkCreativeFieldAssignment(o[0]); |
| 1706 checkCreativeFieldAssignment(o[1]); | 1706 checkCreativeFieldAssignment(o[1]); |
| 1707 } | 1707 } |
| 1708 | 1708 |
| 1709 buildUnnamed1079() { | 1709 buildUnnamed799() { |
| 1710 var o = new core.List<core.String>(); | 1710 var o = new core.List<core.String>(); |
| 1711 o.add("foo"); | 1711 o.add("foo"); |
| 1712 o.add("foo"); | 1712 o.add("foo"); |
| 1713 return o; | 1713 return o; |
| 1714 } | 1714 } |
| 1715 | 1715 |
| 1716 checkUnnamed1079(core.List<core.String> o) { | 1716 checkUnnamed799(core.List<core.String> o) { |
| 1717 unittest.expect(o, unittest.hasLength(2)); | 1717 unittest.expect(o, unittest.hasLength(2)); |
| 1718 unittest.expect(o[0], unittest.equals('foo')); | 1718 unittest.expect(o[0], unittest.equals('foo')); |
| 1719 unittest.expect(o[1], unittest.equals('foo')); | 1719 unittest.expect(o[1], unittest.equals('foo')); |
| 1720 } | 1720 } |
| 1721 | 1721 |
| 1722 buildUnnamed1080() { | 1722 buildUnnamed800() { |
| 1723 var o = new core.List<api.CreativeCustomEvent>(); | 1723 var o = new core.List<api.CreativeCustomEvent>(); |
| 1724 o.add(buildCreativeCustomEvent()); | 1724 o.add(buildCreativeCustomEvent()); |
| 1725 o.add(buildCreativeCustomEvent()); | 1725 o.add(buildCreativeCustomEvent()); |
| 1726 return o; | 1726 return o; |
| 1727 } | 1727 } |
| 1728 | 1728 |
| 1729 checkUnnamed1080(core.List<api.CreativeCustomEvent> o) { | 1729 checkUnnamed800(core.List<api.CreativeCustomEvent> o) { |
| 1730 unittest.expect(o, unittest.hasLength(2)); | 1730 unittest.expect(o, unittest.hasLength(2)); |
| 1731 checkCreativeCustomEvent(o[0]); | 1731 checkCreativeCustomEvent(o[0]); |
| 1732 checkCreativeCustomEvent(o[1]); | 1732 checkCreativeCustomEvent(o[1]); |
| 1733 } | 1733 } |
| 1734 | 1734 |
| 1735 buildUnnamed1081() { | 1735 buildUnnamed801() { |
| 1736 var o = new core.List<api.ThirdPartyTrackingUrl>(); | 1736 var o = new core.List<api.ThirdPartyTrackingUrl>(); |
| 1737 o.add(buildThirdPartyTrackingUrl()); | 1737 o.add(buildThirdPartyTrackingUrl()); |
| 1738 o.add(buildThirdPartyTrackingUrl()); | 1738 o.add(buildThirdPartyTrackingUrl()); |
| 1739 return o; | 1739 return o; |
| 1740 } | 1740 } |
| 1741 | 1741 |
| 1742 checkUnnamed1081(core.List<api.ThirdPartyTrackingUrl> o) { | 1742 checkUnnamed801(core.List<api.ThirdPartyTrackingUrl> o) { |
| 1743 unittest.expect(o, unittest.hasLength(2)); | 1743 unittest.expect(o, unittest.hasLength(2)); |
| 1744 checkThirdPartyTrackingUrl(o[0]); | 1744 checkThirdPartyTrackingUrl(o[0]); |
| 1745 checkThirdPartyTrackingUrl(o[1]); | 1745 checkThirdPartyTrackingUrl(o[1]); |
| 1746 } | 1746 } |
| 1747 | 1747 |
| 1748 buildUnnamed1082() { | 1748 buildUnnamed802() { |
| 1749 var o = new core.List<api.CreativeCustomEvent>(); | 1749 var o = new core.List<api.CreativeCustomEvent>(); |
| 1750 o.add(buildCreativeCustomEvent()); | 1750 o.add(buildCreativeCustomEvent()); |
| 1751 o.add(buildCreativeCustomEvent()); | 1751 o.add(buildCreativeCustomEvent()); |
| 1752 return o; | 1752 return o; |
| 1753 } | 1753 } |
| 1754 | 1754 |
| 1755 checkUnnamed1082(core.List<api.CreativeCustomEvent> o) { | 1755 checkUnnamed802(core.List<api.CreativeCustomEvent> o) { |
| 1756 unittest.expect(o, unittest.hasLength(2)); | 1756 unittest.expect(o, unittest.hasLength(2)); |
| 1757 checkCreativeCustomEvent(o[0]); | 1757 checkCreativeCustomEvent(o[0]); |
| 1758 checkCreativeCustomEvent(o[1]); | 1758 checkCreativeCustomEvent(o[1]); |
| 1759 } | 1759 } |
| 1760 | 1760 |
| 1761 core.int buildCounterCreative = 0; | 1761 core.int buildCounterCreative = 0; |
| 1762 buildCreative() { | 1762 buildCreative() { |
| 1763 var o = new api.Creative(); | 1763 var o = new api.Creative(); |
| 1764 buildCounterCreative++; | 1764 buildCounterCreative++; |
| 1765 if (buildCounterCreative < 3) { | 1765 if (buildCounterCreative < 3) { |
| 1766 o.accountId = "foo"; | 1766 o.accountId = "foo"; |
| 1767 o.active = true; | 1767 o.active = true; |
| 1768 o.adParameters = "foo"; | 1768 o.adParameters = "foo"; |
| 1769 o.adTagKeys = buildUnnamed1071(); | 1769 o.adTagKeys = buildUnnamed791(); |
| 1770 o.advertiserId = "foo"; | 1770 o.advertiserId = "foo"; |
| 1771 o.allowScriptAccess = true; | 1771 o.allowScriptAccess = true; |
| 1772 o.archived = true; | 1772 o.archived = true; |
| 1773 o.artworkType = "foo"; | 1773 o.artworkType = "foo"; |
| 1774 o.authoringTool = "foo"; | 1774 o.authoringTool = "foo"; |
| 1775 o.autoAdvanceImages = true; | 1775 o.autoAdvanceImages = true; |
| 1776 o.backgroundColor = "foo"; | 1776 o.backgroundColor = "foo"; |
| 1777 o.backupImageClickThroughUrl = "foo"; | 1777 o.backupImageClickThroughUrl = "foo"; |
| 1778 o.backupImageFeatures = buildUnnamed1072(); | 1778 o.backupImageFeatures = buildUnnamed792(); |
| 1779 o.backupImageReportingLabel = "foo"; | 1779 o.backupImageReportingLabel = "foo"; |
| 1780 o.backupImageTargetWindow = buildTargetWindow(); | 1780 o.backupImageTargetWindow = buildTargetWindow(); |
| 1781 o.clickTags = buildUnnamed1073(); | 1781 o.clickTags = buildUnnamed793(); |
| 1782 o.commercialId = "foo"; | 1782 o.commercialId = "foo"; |
| 1783 o.companionCreatives = buildUnnamed1074(); | 1783 o.companionCreatives = buildUnnamed794(); |
| 1784 o.compatibility = buildUnnamed1075(); | 1784 o.compatibility = buildUnnamed795(); |
| 1785 o.convertFlashToHtml5 = true; | 1785 o.convertFlashToHtml5 = true; |
| 1786 o.counterCustomEvents = buildUnnamed1076(); | 1786 o.counterCustomEvents = buildUnnamed796(); |
| 1787 o.creativeAssets = buildUnnamed1077(); | 1787 o.creativeAssets = buildUnnamed797(); |
| 1788 o.creativeFieldAssignments = buildUnnamed1078(); | 1788 o.creativeFieldAssignments = buildUnnamed798(); |
| 1789 o.customKeyValues = buildUnnamed1079(); | 1789 o.customKeyValues = buildUnnamed799(); |
| 1790 o.exitCustomEvents = buildUnnamed1080(); | 1790 o.exitCustomEvents = buildUnnamed800(); |
| 1791 o.fsCommand = buildFsCommand(); | 1791 o.fsCommand = buildFsCommand(); |
| 1792 o.htmlCode = "foo"; | 1792 o.htmlCode = "foo"; |
| 1793 o.htmlCodeLocked = true; | 1793 o.htmlCodeLocked = true; |
| 1794 o.id = "foo"; | 1794 o.id = "foo"; |
| 1795 o.idDimensionValue = buildDimensionValue(); | 1795 o.idDimensionValue = buildDimensionValue(); |
| 1796 o.kind = "foo"; | 1796 o.kind = "foo"; |
| 1797 o.lastModifiedInfo = buildLastModifiedInfo(); | 1797 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 1798 o.latestTraffickedCreativeId = "foo"; | 1798 o.latestTraffickedCreativeId = "foo"; |
| 1799 o.name = "foo"; | 1799 o.name = "foo"; |
| 1800 o.overrideCss = "foo"; | 1800 o.overrideCss = "foo"; |
| 1801 o.redirectUrl = "foo"; | 1801 o.redirectUrl = "foo"; |
| 1802 o.renderingId = "foo"; | 1802 o.renderingId = "foo"; |
| 1803 o.renderingIdDimensionValue = buildDimensionValue(); | 1803 o.renderingIdDimensionValue = buildDimensionValue(); |
| 1804 o.requiredFlashPluginVersion = "foo"; | 1804 o.requiredFlashPluginVersion = "foo"; |
| 1805 o.requiredFlashVersion = 42; | 1805 o.requiredFlashVersion = 42; |
| 1806 o.size = buildSize(); | 1806 o.size = buildSize(); |
| 1807 o.skippable = true; | 1807 o.skippable = true; |
| 1808 o.sslCompliant = true; | 1808 o.sslCompliant = true; |
| 1809 o.studioAdvertiserId = "foo"; | 1809 o.studioAdvertiserId = "foo"; |
| 1810 o.studioCreativeId = "foo"; | 1810 o.studioCreativeId = "foo"; |
| 1811 o.studioTraffickedCreativeId = "foo"; | 1811 o.studioTraffickedCreativeId = "foo"; |
| 1812 o.subaccountId = "foo"; | 1812 o.subaccountId = "foo"; |
| 1813 o.thirdPartyBackupImageImpressionsUrl = "foo"; | 1813 o.thirdPartyBackupImageImpressionsUrl = "foo"; |
| 1814 o.thirdPartyRichMediaImpressionsUrl = "foo"; | 1814 o.thirdPartyRichMediaImpressionsUrl = "foo"; |
| 1815 o.thirdPartyUrls = buildUnnamed1081(); | 1815 o.thirdPartyUrls = buildUnnamed801(); |
| 1816 o.timerCustomEvents = buildUnnamed1082(); | 1816 o.timerCustomEvents = buildUnnamed802(); |
| 1817 o.totalFileSize = "foo"; | 1817 o.totalFileSize = "foo"; |
| 1818 o.type = "foo"; | 1818 o.type = "foo"; |
| 1819 o.version = 42; | 1819 o.version = 42; |
| 1820 o.videoDescription = "foo"; | 1820 o.videoDescription = "foo"; |
| 1821 o.videoDuration = 42.0; | 1821 o.videoDuration = 42.0; |
| 1822 } | 1822 } |
| 1823 buildCounterCreative--; | 1823 buildCounterCreative--; |
| 1824 return o; | 1824 return o; |
| 1825 } | 1825 } |
| 1826 | 1826 |
| 1827 checkCreative(api.Creative o) { | 1827 checkCreative(api.Creative o) { |
| 1828 buildCounterCreative++; | 1828 buildCounterCreative++; |
| 1829 if (buildCounterCreative < 3) { | 1829 if (buildCounterCreative < 3) { |
| 1830 unittest.expect(o.accountId, unittest.equals('foo')); | 1830 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1831 unittest.expect(o.active, unittest.isTrue); | 1831 unittest.expect(o.active, unittest.isTrue); |
| 1832 unittest.expect(o.adParameters, unittest.equals('foo')); | 1832 unittest.expect(o.adParameters, unittest.equals('foo')); |
| 1833 checkUnnamed1071(o.adTagKeys); | 1833 checkUnnamed791(o.adTagKeys); |
| 1834 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1834 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 1835 unittest.expect(o.allowScriptAccess, unittest.isTrue); | 1835 unittest.expect(o.allowScriptAccess, unittest.isTrue); |
| 1836 unittest.expect(o.archived, unittest.isTrue); | 1836 unittest.expect(o.archived, unittest.isTrue); |
| 1837 unittest.expect(o.artworkType, unittest.equals('foo')); | 1837 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 1838 unittest.expect(o.authoringTool, unittest.equals('foo')); | 1838 unittest.expect(o.authoringTool, unittest.equals('foo')); |
| 1839 unittest.expect(o.autoAdvanceImages, unittest.isTrue); | 1839 unittest.expect(o.autoAdvanceImages, unittest.isTrue); |
| 1840 unittest.expect(o.backgroundColor, unittest.equals('foo')); | 1840 unittest.expect(o.backgroundColor, unittest.equals('foo')); |
| 1841 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); | 1841 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); |
| 1842 checkUnnamed1072(o.backupImageFeatures); | 1842 checkUnnamed792(o.backupImageFeatures); |
| 1843 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); | 1843 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); |
| 1844 checkTargetWindow(o.backupImageTargetWindow); | 1844 checkTargetWindow(o.backupImageTargetWindow); |
| 1845 checkUnnamed1073(o.clickTags); | 1845 checkUnnamed793(o.clickTags); |
| 1846 unittest.expect(o.commercialId, unittest.equals('foo')); | 1846 unittest.expect(o.commercialId, unittest.equals('foo')); |
| 1847 checkUnnamed1074(o.companionCreatives); | 1847 checkUnnamed794(o.companionCreatives); |
| 1848 checkUnnamed1075(o.compatibility); | 1848 checkUnnamed795(o.compatibility); |
| 1849 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); | 1849 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); |
| 1850 checkUnnamed1076(o.counterCustomEvents); | 1850 checkUnnamed796(o.counterCustomEvents); |
| 1851 checkUnnamed1077(o.creativeAssets); | 1851 checkUnnamed797(o.creativeAssets); |
| 1852 checkUnnamed1078(o.creativeFieldAssignments); | 1852 checkUnnamed798(o.creativeFieldAssignments); |
| 1853 checkUnnamed1079(o.customKeyValues); | 1853 checkUnnamed799(o.customKeyValues); |
| 1854 checkUnnamed1080(o.exitCustomEvents); | 1854 checkUnnamed800(o.exitCustomEvents); |
| 1855 checkFsCommand(o.fsCommand); | 1855 checkFsCommand(o.fsCommand); |
| 1856 unittest.expect(o.htmlCode, unittest.equals('foo')); | 1856 unittest.expect(o.htmlCode, unittest.equals('foo')); |
| 1857 unittest.expect(o.htmlCodeLocked, unittest.isTrue); | 1857 unittest.expect(o.htmlCodeLocked, unittest.isTrue); |
| 1858 unittest.expect(o.id, unittest.equals('foo')); | 1858 unittest.expect(o.id, unittest.equals('foo')); |
| 1859 checkDimensionValue(o.idDimensionValue); | 1859 checkDimensionValue(o.idDimensionValue); |
| 1860 unittest.expect(o.kind, unittest.equals('foo')); | 1860 unittest.expect(o.kind, unittest.equals('foo')); |
| 1861 checkLastModifiedInfo(o.lastModifiedInfo); | 1861 checkLastModifiedInfo(o.lastModifiedInfo); |
| 1862 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); | 1862 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); |
| 1863 unittest.expect(o.name, unittest.equals('foo')); | 1863 unittest.expect(o.name, unittest.equals('foo')); |
| 1864 unittest.expect(o.overrideCss, unittest.equals('foo')); | 1864 unittest.expect(o.overrideCss, unittest.equals('foo')); |
| 1865 unittest.expect(o.redirectUrl, unittest.equals('foo')); | 1865 unittest.expect(o.redirectUrl, unittest.equals('foo')); |
| 1866 unittest.expect(o.renderingId, unittest.equals('foo')); | 1866 unittest.expect(o.renderingId, unittest.equals('foo')); |
| 1867 checkDimensionValue(o.renderingIdDimensionValue); | 1867 checkDimensionValue(o.renderingIdDimensionValue); |
| 1868 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); | 1868 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); |
| 1869 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); | 1869 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); |
| 1870 checkSize(o.size); | 1870 checkSize(o.size); |
| 1871 unittest.expect(o.skippable, unittest.isTrue); | 1871 unittest.expect(o.skippable, unittest.isTrue); |
| 1872 unittest.expect(o.sslCompliant, unittest.isTrue); | 1872 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 1873 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); | 1873 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); |
| 1874 unittest.expect(o.studioCreativeId, unittest.equals('foo')); | 1874 unittest.expect(o.studioCreativeId, unittest.equals('foo')); |
| 1875 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); | 1875 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); |
| 1876 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1876 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1877 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); | 1877 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); |
| 1878 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; | 1878 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; |
| 1879 checkUnnamed1081(o.thirdPartyUrls); | 1879 checkUnnamed801(o.thirdPartyUrls); |
| 1880 checkUnnamed1082(o.timerCustomEvents); | 1880 checkUnnamed802(o.timerCustomEvents); |
| 1881 unittest.expect(o.totalFileSize, unittest.equals('foo')); | 1881 unittest.expect(o.totalFileSize, unittest.equals('foo')); |
| 1882 unittest.expect(o.type, unittest.equals('foo')); | 1882 unittest.expect(o.type, unittest.equals('foo')); |
| 1883 unittest.expect(o.version, unittest.equals(42)); | 1883 unittest.expect(o.version, unittest.equals(42)); |
| 1884 unittest.expect(o.videoDescription, unittest.equals('foo')); | 1884 unittest.expect(o.videoDescription, unittest.equals('foo')); |
| 1885 unittest.expect(o.videoDuration, unittest.equals(42.0)); | 1885 unittest.expect(o.videoDuration, unittest.equals(42.0)); |
| 1886 } | 1886 } |
| 1887 buildCounterCreative--; | 1887 buildCounterCreative--; |
| 1888 } | 1888 } |
| 1889 | 1889 |
| 1890 buildUnnamed1083() { | 1890 buildUnnamed803() { |
| 1891 var o = new core.List<core.String>(); | 1891 var o = new core.List<core.String>(); |
| 1892 o.add("foo"); | 1892 o.add("foo"); |
| 1893 o.add("foo"); | 1893 o.add("foo"); |
| 1894 return o; | 1894 return o; |
| 1895 } | 1895 } |
| 1896 | 1896 |
| 1897 checkUnnamed1083(core.List<core.String> o) { | 1897 checkUnnamed803(core.List<core.String> o) { |
| 1898 unittest.expect(o, unittest.hasLength(2)); | 1898 unittest.expect(o, unittest.hasLength(2)); |
| 1899 unittest.expect(o[0], unittest.equals('foo')); | 1899 unittest.expect(o[0], unittest.equals('foo')); |
| 1900 unittest.expect(o[1], unittest.equals('foo')); | 1900 unittest.expect(o[1], unittest.equals('foo')); |
| 1901 } | 1901 } |
| 1902 | 1902 |
| 1903 core.int buildCounterCreativeAsset = 0; | 1903 core.int buildCounterCreativeAsset = 0; |
| 1904 buildCreativeAsset() { | 1904 buildCreativeAsset() { |
| 1905 var o = new api.CreativeAsset(); | 1905 var o = new api.CreativeAsset(); |
| 1906 buildCounterCreativeAsset++; | 1906 buildCounterCreativeAsset++; |
| 1907 if (buildCounterCreativeAsset < 3) { | 1907 if (buildCounterCreativeAsset < 3) { |
| 1908 o.actionScript3 = true; | 1908 o.actionScript3 = true; |
| 1909 o.active = true; | 1909 o.active = true; |
| 1910 o.alignment = "foo"; | 1910 o.alignment = "foo"; |
| 1911 o.artworkType = "foo"; | 1911 o.artworkType = "foo"; |
| 1912 o.assetIdentifier = buildCreativeAssetId(); | 1912 o.assetIdentifier = buildCreativeAssetId(); |
| 1913 o.backupImageExit = buildCreativeCustomEvent(); | 1913 o.backupImageExit = buildCreativeCustomEvent(); |
| 1914 o.bitRate = 42; | 1914 o.bitRate = 42; |
| 1915 o.childAssetType = "foo"; | 1915 o.childAssetType = "foo"; |
| 1916 o.collapsedSize = buildSize(); | 1916 o.collapsedSize = buildSize(); |
| 1917 o.customStartTimeValue = 42; | 1917 o.customStartTimeValue = 42; |
| 1918 o.detectedFeatures = buildUnnamed1083(); | 1918 o.detectedFeatures = buildUnnamed803(); |
| 1919 o.displayType = "foo"; | 1919 o.displayType = "foo"; |
| 1920 o.duration = 42; | 1920 o.duration = 42; |
| 1921 o.durationType = "foo"; | 1921 o.durationType = "foo"; |
| 1922 o.expandedDimension = buildSize(); | 1922 o.expandedDimension = buildSize(); |
| 1923 o.fileSize = "foo"; | 1923 o.fileSize = "foo"; |
| 1924 o.flashVersion = 42; | 1924 o.flashVersion = 42; |
| 1925 o.hideFlashObjects = true; | 1925 o.hideFlashObjects = true; |
| 1926 o.hideSelectionBoxes = true; | 1926 o.hideSelectionBoxes = true; |
| 1927 o.horizontallyLocked = true; | 1927 o.horizontallyLocked = true; |
| 1928 o.id = "foo"; | 1928 o.id = "foo"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1958 unittest.expect(o.actionScript3, unittest.isTrue); | 1958 unittest.expect(o.actionScript3, unittest.isTrue); |
| 1959 unittest.expect(o.active, unittest.isTrue); | 1959 unittest.expect(o.active, unittest.isTrue); |
| 1960 unittest.expect(o.alignment, unittest.equals('foo')); | 1960 unittest.expect(o.alignment, unittest.equals('foo')); |
| 1961 unittest.expect(o.artworkType, unittest.equals('foo')); | 1961 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 1962 checkCreativeAssetId(o.assetIdentifier); | 1962 checkCreativeAssetId(o.assetIdentifier); |
| 1963 checkCreativeCustomEvent(o.backupImageExit); | 1963 checkCreativeCustomEvent(o.backupImageExit); |
| 1964 unittest.expect(o.bitRate, unittest.equals(42)); | 1964 unittest.expect(o.bitRate, unittest.equals(42)); |
| 1965 unittest.expect(o.childAssetType, unittest.equals('foo')); | 1965 unittest.expect(o.childAssetType, unittest.equals('foo')); |
| 1966 checkSize(o.collapsedSize); | 1966 checkSize(o.collapsedSize); |
| 1967 unittest.expect(o.customStartTimeValue, unittest.equals(42)); | 1967 unittest.expect(o.customStartTimeValue, unittest.equals(42)); |
| 1968 checkUnnamed1083(o.detectedFeatures); | 1968 checkUnnamed803(o.detectedFeatures); |
| 1969 unittest.expect(o.displayType, unittest.equals('foo')); | 1969 unittest.expect(o.displayType, unittest.equals('foo')); |
| 1970 unittest.expect(o.duration, unittest.equals(42)); | 1970 unittest.expect(o.duration, unittest.equals(42)); |
| 1971 unittest.expect(o.durationType, unittest.equals('foo')); | 1971 unittest.expect(o.durationType, unittest.equals('foo')); |
| 1972 checkSize(o.expandedDimension); | 1972 checkSize(o.expandedDimension); |
| 1973 unittest.expect(o.fileSize, unittest.equals('foo')); | 1973 unittest.expect(o.fileSize, unittest.equals('foo')); |
| 1974 unittest.expect(o.flashVersion, unittest.equals(42)); | 1974 unittest.expect(o.flashVersion, unittest.equals(42)); |
| 1975 unittest.expect(o.hideFlashObjects, unittest.isTrue); | 1975 unittest.expect(o.hideFlashObjects, unittest.isTrue); |
| 1976 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); | 1976 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); |
| 1977 unittest.expect(o.horizontallyLocked, unittest.isTrue); | 1977 unittest.expect(o.horizontallyLocked, unittest.isTrue); |
| 1978 unittest.expect(o.id, unittest.equals('foo')); | 1978 unittest.expect(o.id, unittest.equals('foo')); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2015 | 2015 |
| 2016 checkCreativeAssetId(api.CreativeAssetId o) { | 2016 checkCreativeAssetId(api.CreativeAssetId o) { |
| 2017 buildCounterCreativeAssetId++; | 2017 buildCounterCreativeAssetId++; |
| 2018 if (buildCounterCreativeAssetId < 3) { | 2018 if (buildCounterCreativeAssetId < 3) { |
| 2019 unittest.expect(o.name, unittest.equals('foo')); | 2019 unittest.expect(o.name, unittest.equals('foo')); |
| 2020 unittest.expect(o.type, unittest.equals('foo')); | 2020 unittest.expect(o.type, unittest.equals('foo')); |
| 2021 } | 2021 } |
| 2022 buildCounterCreativeAssetId--; | 2022 buildCounterCreativeAssetId--; |
| 2023 } | 2023 } |
| 2024 | 2024 |
| 2025 buildUnnamed1084() { | 2025 buildUnnamed804() { |
| 2026 var o = new core.List<api.ClickTag>(); | 2026 var o = new core.List<api.ClickTag>(); |
| 2027 o.add(buildClickTag()); | 2027 o.add(buildClickTag()); |
| 2028 o.add(buildClickTag()); | 2028 o.add(buildClickTag()); |
| 2029 return o; | 2029 return o; |
| 2030 } | 2030 } |
| 2031 | 2031 |
| 2032 checkUnnamed1084(core.List<api.ClickTag> o) { | 2032 checkUnnamed804(core.List<api.ClickTag> o) { |
| 2033 unittest.expect(o, unittest.hasLength(2)); | 2033 unittest.expect(o, unittest.hasLength(2)); |
| 2034 checkClickTag(o[0]); | 2034 checkClickTag(o[0]); |
| 2035 checkClickTag(o[1]); | 2035 checkClickTag(o[1]); |
| 2036 } | 2036 } |
| 2037 | 2037 |
| 2038 buildUnnamed1085() { | 2038 buildUnnamed805() { |
| 2039 var o = new core.List<core.String>(); | 2039 var o = new core.List<core.String>(); |
| 2040 o.add("foo"); | 2040 o.add("foo"); |
| 2041 o.add("foo"); | 2041 o.add("foo"); |
| 2042 return o; | 2042 return o; |
| 2043 } | 2043 } |
| 2044 | 2044 |
| 2045 checkUnnamed1085(core.List<core.String> o) { | 2045 checkUnnamed805(core.List<core.String> o) { |
| 2046 unittest.expect(o, unittest.hasLength(2)); | 2046 unittest.expect(o, unittest.hasLength(2)); |
| 2047 unittest.expect(o[0], unittest.equals('foo')); | 2047 unittest.expect(o[0], unittest.equals('foo')); |
| 2048 unittest.expect(o[1], unittest.equals('foo')); | 2048 unittest.expect(o[1], unittest.equals('foo')); |
| 2049 } | 2049 } |
| 2050 | 2050 |
| 2051 buildUnnamed1086() { | 2051 buildUnnamed806() { |
| 2052 var o = new core.List<core.String>(); | 2052 var o = new core.List<core.String>(); |
| 2053 o.add("foo"); | 2053 o.add("foo"); |
| 2054 o.add("foo"); | 2054 o.add("foo"); |
| 2055 return o; | 2055 return o; |
| 2056 } | 2056 } |
| 2057 | 2057 |
| 2058 checkUnnamed1086(core.List<core.String> o) { | 2058 checkUnnamed806(core.List<core.String> o) { |
| 2059 unittest.expect(o, unittest.hasLength(2)); | 2059 unittest.expect(o, unittest.hasLength(2)); |
| 2060 unittest.expect(o[0], unittest.equals('foo')); | 2060 unittest.expect(o[0], unittest.equals('foo')); |
| 2061 unittest.expect(o[1], unittest.equals('foo')); | 2061 unittest.expect(o[1], unittest.equals('foo')); |
| 2062 } | 2062 } |
| 2063 | 2063 |
| 2064 core.int buildCounterCreativeAssetMetadata = 0; | 2064 core.int buildCounterCreativeAssetMetadata = 0; |
| 2065 buildCreativeAssetMetadata() { | 2065 buildCreativeAssetMetadata() { |
| 2066 var o = new api.CreativeAssetMetadata(); | 2066 var o = new api.CreativeAssetMetadata(); |
| 2067 buildCounterCreativeAssetMetadata++; | 2067 buildCounterCreativeAssetMetadata++; |
| 2068 if (buildCounterCreativeAssetMetadata < 3) { | 2068 if (buildCounterCreativeAssetMetadata < 3) { |
| 2069 o.assetIdentifier = buildCreativeAssetId(); | 2069 o.assetIdentifier = buildCreativeAssetId(); |
| 2070 o.clickTags = buildUnnamed1084(); | 2070 o.clickTags = buildUnnamed804(); |
| 2071 o.detectedFeatures = buildUnnamed1085(); | 2071 o.detectedFeatures = buildUnnamed805(); |
| 2072 o.kind = "foo"; | 2072 o.kind = "foo"; |
| 2073 o.warnedValidationRules = buildUnnamed1086(); | 2073 o.warnedValidationRules = buildUnnamed806(); |
| 2074 } | 2074 } |
| 2075 buildCounterCreativeAssetMetadata--; | 2075 buildCounterCreativeAssetMetadata--; |
| 2076 return o; | 2076 return o; |
| 2077 } | 2077 } |
| 2078 | 2078 |
| 2079 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { | 2079 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { |
| 2080 buildCounterCreativeAssetMetadata++; | 2080 buildCounterCreativeAssetMetadata++; |
| 2081 if (buildCounterCreativeAssetMetadata < 3) { | 2081 if (buildCounterCreativeAssetMetadata < 3) { |
| 2082 checkCreativeAssetId(o.assetIdentifier); | 2082 checkCreativeAssetId(o.assetIdentifier); |
| 2083 checkUnnamed1084(o.clickTags); | 2083 checkUnnamed804(o.clickTags); |
| 2084 checkUnnamed1085(o.detectedFeatures); | 2084 checkUnnamed805(o.detectedFeatures); |
| 2085 unittest.expect(o.kind, unittest.equals('foo')); | 2085 unittest.expect(o.kind, unittest.equals('foo')); |
| 2086 checkUnnamed1086(o.warnedValidationRules); | 2086 checkUnnamed806(o.warnedValidationRules); |
| 2087 } | 2087 } |
| 2088 buildCounterCreativeAssetMetadata--; | 2088 buildCounterCreativeAssetMetadata--; |
| 2089 } | 2089 } |
| 2090 | 2090 |
| 2091 buildUnnamed1087() { | 2091 buildUnnamed807() { |
| 2092 var o = new core.List<api.CompanionClickThroughOverride>(); | 2092 var o = new core.List<api.CompanionClickThroughOverride>(); |
| 2093 o.add(buildCompanionClickThroughOverride()); | 2093 o.add(buildCompanionClickThroughOverride()); |
| 2094 o.add(buildCompanionClickThroughOverride()); | 2094 o.add(buildCompanionClickThroughOverride()); |
| 2095 return o; | 2095 return o; |
| 2096 } | 2096 } |
| 2097 | 2097 |
| 2098 checkUnnamed1087(core.List<api.CompanionClickThroughOverride> o) { | 2098 checkUnnamed807(core.List<api.CompanionClickThroughOverride> o) { |
| 2099 unittest.expect(o, unittest.hasLength(2)); | 2099 unittest.expect(o, unittest.hasLength(2)); |
| 2100 checkCompanionClickThroughOverride(o[0]); | 2100 checkCompanionClickThroughOverride(o[0]); |
| 2101 checkCompanionClickThroughOverride(o[1]); | 2101 checkCompanionClickThroughOverride(o[1]); |
| 2102 } | 2102 } |
| 2103 | 2103 |
| 2104 buildUnnamed1088() { | 2104 buildUnnamed808() { |
| 2105 var o = new core.List<api.CreativeGroupAssignment>(); | 2105 var o = new core.List<api.CreativeGroupAssignment>(); |
| 2106 o.add(buildCreativeGroupAssignment()); | 2106 o.add(buildCreativeGroupAssignment()); |
| 2107 o.add(buildCreativeGroupAssignment()); | 2107 o.add(buildCreativeGroupAssignment()); |
| 2108 return o; | 2108 return o; |
| 2109 } | 2109 } |
| 2110 | 2110 |
| 2111 checkUnnamed1088(core.List<api.CreativeGroupAssignment> o) { | 2111 checkUnnamed808(core.List<api.CreativeGroupAssignment> o) { |
| 2112 unittest.expect(o, unittest.hasLength(2)); | 2112 unittest.expect(o, unittest.hasLength(2)); |
| 2113 checkCreativeGroupAssignment(o[0]); | 2113 checkCreativeGroupAssignment(o[0]); |
| 2114 checkCreativeGroupAssignment(o[1]); | 2114 checkCreativeGroupAssignment(o[1]); |
| 2115 } | 2115 } |
| 2116 | 2116 |
| 2117 buildUnnamed1089() { | 2117 buildUnnamed809() { |
| 2118 var o = new core.List<api.RichMediaExitOverride>(); | 2118 var o = new core.List<api.RichMediaExitOverride>(); |
| 2119 o.add(buildRichMediaExitOverride()); | 2119 o.add(buildRichMediaExitOverride()); |
| 2120 o.add(buildRichMediaExitOverride()); | 2120 o.add(buildRichMediaExitOverride()); |
| 2121 return o; | 2121 return o; |
| 2122 } | 2122 } |
| 2123 | 2123 |
| 2124 checkUnnamed1089(core.List<api.RichMediaExitOverride> o) { | 2124 checkUnnamed809(core.List<api.RichMediaExitOverride> o) { |
| 2125 unittest.expect(o, unittest.hasLength(2)); | 2125 unittest.expect(o, unittest.hasLength(2)); |
| 2126 checkRichMediaExitOverride(o[0]); | 2126 checkRichMediaExitOverride(o[0]); |
| 2127 checkRichMediaExitOverride(o[1]); | 2127 checkRichMediaExitOverride(o[1]); |
| 2128 } | 2128 } |
| 2129 | 2129 |
| 2130 core.int buildCounterCreativeAssignment = 0; | 2130 core.int buildCounterCreativeAssignment = 0; |
| 2131 buildCreativeAssignment() { | 2131 buildCreativeAssignment() { |
| 2132 var o = new api.CreativeAssignment(); | 2132 var o = new api.CreativeAssignment(); |
| 2133 buildCounterCreativeAssignment++; | 2133 buildCounterCreativeAssignment++; |
| 2134 if (buildCounterCreativeAssignment < 3) { | 2134 if (buildCounterCreativeAssignment < 3) { |
| 2135 o.active = true; | 2135 o.active = true; |
| 2136 o.applyEventTags = true; | 2136 o.applyEventTags = true; |
| 2137 o.clickThroughUrl = buildClickThroughUrl(); | 2137 o.clickThroughUrl = buildClickThroughUrl(); |
| 2138 o.companionCreativeOverrides = buildUnnamed1087(); | 2138 o.companionCreativeOverrides = buildUnnamed807(); |
| 2139 o.creativeGroupAssignments = buildUnnamed1088(); | 2139 o.creativeGroupAssignments = buildUnnamed808(); |
| 2140 o.creativeId = "foo"; | 2140 o.creativeId = "foo"; |
| 2141 o.creativeIdDimensionValue = buildDimensionValue(); | 2141 o.creativeIdDimensionValue = buildDimensionValue(); |
| 2142 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2142 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2143 o.richMediaExitOverrides = buildUnnamed1089(); | 2143 o.richMediaExitOverrides = buildUnnamed809(); |
| 2144 o.sequence = 42; | 2144 o.sequence = 42; |
| 2145 o.sslCompliant = true; | 2145 o.sslCompliant = true; |
| 2146 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2146 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2147 o.weight = 42; | 2147 o.weight = 42; |
| 2148 } | 2148 } |
| 2149 buildCounterCreativeAssignment--; | 2149 buildCounterCreativeAssignment--; |
| 2150 return o; | 2150 return o; |
| 2151 } | 2151 } |
| 2152 | 2152 |
| 2153 checkCreativeAssignment(api.CreativeAssignment o) { | 2153 checkCreativeAssignment(api.CreativeAssignment o) { |
| 2154 buildCounterCreativeAssignment++; | 2154 buildCounterCreativeAssignment++; |
| 2155 if (buildCounterCreativeAssignment < 3) { | 2155 if (buildCounterCreativeAssignment < 3) { |
| 2156 unittest.expect(o.active, unittest.isTrue); | 2156 unittest.expect(o.active, unittest.isTrue); |
| 2157 unittest.expect(o.applyEventTags, unittest.isTrue); | 2157 unittest.expect(o.applyEventTags, unittest.isTrue); |
| 2158 checkClickThroughUrl(o.clickThroughUrl); | 2158 checkClickThroughUrl(o.clickThroughUrl); |
| 2159 checkUnnamed1087(o.companionCreativeOverrides); | 2159 checkUnnamed807(o.companionCreativeOverrides); |
| 2160 checkUnnamed1088(o.creativeGroupAssignments); | 2160 checkUnnamed808(o.creativeGroupAssignments); |
| 2161 unittest.expect(o.creativeId, unittest.equals('foo')); | 2161 unittest.expect(o.creativeId, unittest.equals('foo')); |
| 2162 checkDimensionValue(o.creativeIdDimensionValue); | 2162 checkDimensionValue(o.creativeIdDimensionValue); |
| 2163 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2163 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2164 checkUnnamed1089(o.richMediaExitOverrides); | 2164 checkUnnamed809(o.richMediaExitOverrides); |
| 2165 unittest.expect(o.sequence, unittest.equals(42)); | 2165 unittest.expect(o.sequence, unittest.equals(42)); |
| 2166 unittest.expect(o.sslCompliant, unittest.isTrue); | 2166 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 2167 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 2167 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 2168 unittest.expect(o.weight, unittest.equals(42)); | 2168 unittest.expect(o.weight, unittest.equals(42)); |
| 2169 } | 2169 } |
| 2170 buildCounterCreativeAssignment--; | 2170 buildCounterCreativeAssignment--; |
| 2171 } | 2171 } |
| 2172 | 2172 |
| 2173 core.int buildCounterCreativeCustomEvent = 0; | 2173 core.int buildCounterCreativeCustomEvent = 0; |
| 2174 buildCreativeCustomEvent() { | 2174 buildCreativeCustomEvent() { |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2275 checkCreativeFieldValue(api.CreativeFieldValue o) { | 2275 checkCreativeFieldValue(api.CreativeFieldValue o) { |
| 2276 buildCounterCreativeFieldValue++; | 2276 buildCounterCreativeFieldValue++; |
| 2277 if (buildCounterCreativeFieldValue < 3) { | 2277 if (buildCounterCreativeFieldValue < 3) { |
| 2278 unittest.expect(o.id, unittest.equals('foo')); | 2278 unittest.expect(o.id, unittest.equals('foo')); |
| 2279 unittest.expect(o.kind, unittest.equals('foo')); | 2279 unittest.expect(o.kind, unittest.equals('foo')); |
| 2280 unittest.expect(o.value, unittest.equals('foo')); | 2280 unittest.expect(o.value, unittest.equals('foo')); |
| 2281 } | 2281 } |
| 2282 buildCounterCreativeFieldValue--; | 2282 buildCounterCreativeFieldValue--; |
| 2283 } | 2283 } |
| 2284 | 2284 |
| 2285 buildUnnamed1090() { | 2285 buildUnnamed810() { |
| 2286 var o = new core.List<api.CreativeFieldValue>(); | 2286 var o = new core.List<api.CreativeFieldValue>(); |
| 2287 o.add(buildCreativeFieldValue()); | 2287 o.add(buildCreativeFieldValue()); |
| 2288 o.add(buildCreativeFieldValue()); | 2288 o.add(buildCreativeFieldValue()); |
| 2289 return o; | 2289 return o; |
| 2290 } | 2290 } |
| 2291 | 2291 |
| 2292 checkUnnamed1090(core.List<api.CreativeFieldValue> o) { | 2292 checkUnnamed810(core.List<api.CreativeFieldValue> o) { |
| 2293 unittest.expect(o, unittest.hasLength(2)); | 2293 unittest.expect(o, unittest.hasLength(2)); |
| 2294 checkCreativeFieldValue(o[0]); | 2294 checkCreativeFieldValue(o[0]); |
| 2295 checkCreativeFieldValue(o[1]); | 2295 checkCreativeFieldValue(o[1]); |
| 2296 } | 2296 } |
| 2297 | 2297 |
| 2298 core.int buildCounterCreativeFieldValuesListResponse = 0; | 2298 core.int buildCounterCreativeFieldValuesListResponse = 0; |
| 2299 buildCreativeFieldValuesListResponse() { | 2299 buildCreativeFieldValuesListResponse() { |
| 2300 var o = new api.CreativeFieldValuesListResponse(); | 2300 var o = new api.CreativeFieldValuesListResponse(); |
| 2301 buildCounterCreativeFieldValuesListResponse++; | 2301 buildCounterCreativeFieldValuesListResponse++; |
| 2302 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2302 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2303 o.creativeFieldValues = buildUnnamed1090(); | 2303 o.creativeFieldValues = buildUnnamed810(); |
| 2304 o.kind = "foo"; | 2304 o.kind = "foo"; |
| 2305 o.nextPageToken = "foo"; | 2305 o.nextPageToken = "foo"; |
| 2306 } | 2306 } |
| 2307 buildCounterCreativeFieldValuesListResponse--; | 2307 buildCounterCreativeFieldValuesListResponse--; |
| 2308 return o; | 2308 return o; |
| 2309 } | 2309 } |
| 2310 | 2310 |
| 2311 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { | 2311 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { |
| 2312 buildCounterCreativeFieldValuesListResponse++; | 2312 buildCounterCreativeFieldValuesListResponse++; |
| 2313 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2313 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2314 checkUnnamed1090(o.creativeFieldValues); | 2314 checkUnnamed810(o.creativeFieldValues); |
| 2315 unittest.expect(o.kind, unittest.equals('foo')); | 2315 unittest.expect(o.kind, unittest.equals('foo')); |
| 2316 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2316 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2317 } | 2317 } |
| 2318 buildCounterCreativeFieldValuesListResponse--; | 2318 buildCounterCreativeFieldValuesListResponse--; |
| 2319 } | 2319 } |
| 2320 | 2320 |
| 2321 buildUnnamed1091() { | 2321 buildUnnamed811() { |
| 2322 var o = new core.List<api.CreativeField>(); | 2322 var o = new core.List<api.CreativeField>(); |
| 2323 o.add(buildCreativeField()); | 2323 o.add(buildCreativeField()); |
| 2324 o.add(buildCreativeField()); | 2324 o.add(buildCreativeField()); |
| 2325 return o; | 2325 return o; |
| 2326 } | 2326 } |
| 2327 | 2327 |
| 2328 checkUnnamed1091(core.List<api.CreativeField> o) { | 2328 checkUnnamed811(core.List<api.CreativeField> o) { |
| 2329 unittest.expect(o, unittest.hasLength(2)); | 2329 unittest.expect(o, unittest.hasLength(2)); |
| 2330 checkCreativeField(o[0]); | 2330 checkCreativeField(o[0]); |
| 2331 checkCreativeField(o[1]); | 2331 checkCreativeField(o[1]); |
| 2332 } | 2332 } |
| 2333 | 2333 |
| 2334 core.int buildCounterCreativeFieldsListResponse = 0; | 2334 core.int buildCounterCreativeFieldsListResponse = 0; |
| 2335 buildCreativeFieldsListResponse() { | 2335 buildCreativeFieldsListResponse() { |
| 2336 var o = new api.CreativeFieldsListResponse(); | 2336 var o = new api.CreativeFieldsListResponse(); |
| 2337 buildCounterCreativeFieldsListResponse++; | 2337 buildCounterCreativeFieldsListResponse++; |
| 2338 if (buildCounterCreativeFieldsListResponse < 3) { | 2338 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2339 o.creativeFields = buildUnnamed1091(); | 2339 o.creativeFields = buildUnnamed811(); |
| 2340 o.kind = "foo"; | 2340 o.kind = "foo"; |
| 2341 o.nextPageToken = "foo"; | 2341 o.nextPageToken = "foo"; |
| 2342 } | 2342 } |
| 2343 buildCounterCreativeFieldsListResponse--; | 2343 buildCounterCreativeFieldsListResponse--; |
| 2344 return o; | 2344 return o; |
| 2345 } | 2345 } |
| 2346 | 2346 |
| 2347 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { | 2347 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { |
| 2348 buildCounterCreativeFieldsListResponse++; | 2348 buildCounterCreativeFieldsListResponse++; |
| 2349 if (buildCounterCreativeFieldsListResponse < 3) { | 2349 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2350 checkUnnamed1091(o.creativeFields); | 2350 checkUnnamed811(o.creativeFields); |
| 2351 unittest.expect(o.kind, unittest.equals('foo')); | 2351 unittest.expect(o.kind, unittest.equals('foo')); |
| 2352 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2352 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2353 } | 2353 } |
| 2354 buildCounterCreativeFieldsListResponse--; | 2354 buildCounterCreativeFieldsListResponse--; |
| 2355 } | 2355 } |
| 2356 | 2356 |
| 2357 core.int buildCounterCreativeGroup = 0; | 2357 core.int buildCounterCreativeGroup = 0; |
| 2358 buildCreativeGroup() { | 2358 buildCreativeGroup() { |
| 2359 var o = new api.CreativeGroup(); | 2359 var o = new api.CreativeGroup(); |
| 2360 buildCounterCreativeGroup++; | 2360 buildCounterCreativeGroup++; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2401 | 2401 |
| 2402 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { | 2402 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { |
| 2403 buildCounterCreativeGroupAssignment++; | 2403 buildCounterCreativeGroupAssignment++; |
| 2404 if (buildCounterCreativeGroupAssignment < 3) { | 2404 if (buildCounterCreativeGroupAssignment < 3) { |
| 2405 unittest.expect(o.creativeGroupId, unittest.equals('foo')); | 2405 unittest.expect(o.creativeGroupId, unittest.equals('foo')); |
| 2406 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); | 2406 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); |
| 2407 } | 2407 } |
| 2408 buildCounterCreativeGroupAssignment--; | 2408 buildCounterCreativeGroupAssignment--; |
| 2409 } | 2409 } |
| 2410 | 2410 |
| 2411 buildUnnamed1092() { | 2411 buildUnnamed812() { |
| 2412 var o = new core.List<api.CreativeGroup>(); | 2412 var o = new core.List<api.CreativeGroup>(); |
| 2413 o.add(buildCreativeGroup()); | 2413 o.add(buildCreativeGroup()); |
| 2414 o.add(buildCreativeGroup()); | 2414 o.add(buildCreativeGroup()); |
| 2415 return o; | 2415 return o; |
| 2416 } | 2416 } |
| 2417 | 2417 |
| 2418 checkUnnamed1092(core.List<api.CreativeGroup> o) { | 2418 checkUnnamed812(core.List<api.CreativeGroup> o) { |
| 2419 unittest.expect(o, unittest.hasLength(2)); | 2419 unittest.expect(o, unittest.hasLength(2)); |
| 2420 checkCreativeGroup(o[0]); | 2420 checkCreativeGroup(o[0]); |
| 2421 checkCreativeGroup(o[1]); | 2421 checkCreativeGroup(o[1]); |
| 2422 } | 2422 } |
| 2423 | 2423 |
| 2424 core.int buildCounterCreativeGroupsListResponse = 0; | 2424 core.int buildCounterCreativeGroupsListResponse = 0; |
| 2425 buildCreativeGroupsListResponse() { | 2425 buildCreativeGroupsListResponse() { |
| 2426 var o = new api.CreativeGroupsListResponse(); | 2426 var o = new api.CreativeGroupsListResponse(); |
| 2427 buildCounterCreativeGroupsListResponse++; | 2427 buildCounterCreativeGroupsListResponse++; |
| 2428 if (buildCounterCreativeGroupsListResponse < 3) { | 2428 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2429 o.creativeGroups = buildUnnamed1092(); | 2429 o.creativeGroups = buildUnnamed812(); |
| 2430 o.kind = "foo"; | 2430 o.kind = "foo"; |
| 2431 o.nextPageToken = "foo"; | 2431 o.nextPageToken = "foo"; |
| 2432 } | 2432 } |
| 2433 buildCounterCreativeGroupsListResponse--; | 2433 buildCounterCreativeGroupsListResponse--; |
| 2434 return o; | 2434 return o; |
| 2435 } | 2435 } |
| 2436 | 2436 |
| 2437 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { | 2437 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { |
| 2438 buildCounterCreativeGroupsListResponse++; | 2438 buildCounterCreativeGroupsListResponse++; |
| 2439 if (buildCounterCreativeGroupsListResponse < 3) { | 2439 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2440 checkUnnamed1092(o.creativeGroups); | 2440 checkUnnamed812(o.creativeGroups); |
| 2441 unittest.expect(o.kind, unittest.equals('foo')); | 2441 unittest.expect(o.kind, unittest.equals('foo')); |
| 2442 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2442 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2443 } | 2443 } |
| 2444 buildCounterCreativeGroupsListResponse--; | 2444 buildCounterCreativeGroupsListResponse--; |
| 2445 } | 2445 } |
| 2446 | 2446 |
| 2447 buildUnnamed1093() { | 2447 buildUnnamed813() { |
| 2448 var o = new core.List<api.OptimizationActivity>(); | 2448 var o = new core.List<api.OptimizationActivity>(); |
| 2449 o.add(buildOptimizationActivity()); | 2449 o.add(buildOptimizationActivity()); |
| 2450 o.add(buildOptimizationActivity()); | 2450 o.add(buildOptimizationActivity()); |
| 2451 return o; | 2451 return o; |
| 2452 } | 2452 } |
| 2453 | 2453 |
| 2454 checkUnnamed1093(core.List<api.OptimizationActivity> o) { | 2454 checkUnnamed813(core.List<api.OptimizationActivity> o) { |
| 2455 unittest.expect(o, unittest.hasLength(2)); | 2455 unittest.expect(o, unittest.hasLength(2)); |
| 2456 checkOptimizationActivity(o[0]); | 2456 checkOptimizationActivity(o[0]); |
| 2457 checkOptimizationActivity(o[1]); | 2457 checkOptimizationActivity(o[1]); |
| 2458 } | 2458 } |
| 2459 | 2459 |
| 2460 core.int buildCounterCreativeOptimizationConfiguration = 0; | 2460 core.int buildCounterCreativeOptimizationConfiguration = 0; |
| 2461 buildCreativeOptimizationConfiguration() { | 2461 buildCreativeOptimizationConfiguration() { |
| 2462 var o = new api.CreativeOptimizationConfiguration(); | 2462 var o = new api.CreativeOptimizationConfiguration(); |
| 2463 buildCounterCreativeOptimizationConfiguration++; | 2463 buildCounterCreativeOptimizationConfiguration++; |
| 2464 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2464 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2465 o.id = "foo"; | 2465 o.id = "foo"; |
| 2466 o.name = "foo"; | 2466 o.name = "foo"; |
| 2467 o.optimizationActivitys = buildUnnamed1093(); | 2467 o.optimizationActivitys = buildUnnamed813(); |
| 2468 o.optimizationModel = "foo"; | 2468 o.optimizationModel = "foo"; |
| 2469 } | 2469 } |
| 2470 buildCounterCreativeOptimizationConfiguration--; | 2470 buildCounterCreativeOptimizationConfiguration--; |
| 2471 return o; | 2471 return o; |
| 2472 } | 2472 } |
| 2473 | 2473 |
| 2474 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ | 2474 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ |
| 2475 buildCounterCreativeOptimizationConfiguration++; | 2475 buildCounterCreativeOptimizationConfiguration++; |
| 2476 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2476 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2477 unittest.expect(o.id, unittest.equals('foo')); | 2477 unittest.expect(o.id, unittest.equals('foo')); |
| 2478 unittest.expect(o.name, unittest.equals('foo')); | 2478 unittest.expect(o.name, unittest.equals('foo')); |
| 2479 checkUnnamed1093(o.optimizationActivitys); | 2479 checkUnnamed813(o.optimizationActivitys); |
| 2480 unittest.expect(o.optimizationModel, unittest.equals('foo')); | 2480 unittest.expect(o.optimizationModel, unittest.equals('foo')); |
| 2481 } | 2481 } |
| 2482 buildCounterCreativeOptimizationConfiguration--; | 2482 buildCounterCreativeOptimizationConfiguration--; |
| 2483 } | 2483 } |
| 2484 | 2484 |
| 2485 buildUnnamed1094() { | 2485 buildUnnamed814() { |
| 2486 var o = new core.List<api.CreativeAssignment>(); | 2486 var o = new core.List<api.CreativeAssignment>(); |
| 2487 o.add(buildCreativeAssignment()); | 2487 o.add(buildCreativeAssignment()); |
| 2488 o.add(buildCreativeAssignment()); | 2488 o.add(buildCreativeAssignment()); |
| 2489 return o; | 2489 return o; |
| 2490 } | 2490 } |
| 2491 | 2491 |
| 2492 checkUnnamed1094(core.List<api.CreativeAssignment> o) { | 2492 checkUnnamed814(core.List<api.CreativeAssignment> o) { |
| 2493 unittest.expect(o, unittest.hasLength(2)); | 2493 unittest.expect(o, unittest.hasLength(2)); |
| 2494 checkCreativeAssignment(o[0]); | 2494 checkCreativeAssignment(o[0]); |
| 2495 checkCreativeAssignment(o[1]); | 2495 checkCreativeAssignment(o[1]); |
| 2496 } | 2496 } |
| 2497 | 2497 |
| 2498 core.int buildCounterCreativeRotation = 0; | 2498 core.int buildCounterCreativeRotation = 0; |
| 2499 buildCreativeRotation() { | 2499 buildCreativeRotation() { |
| 2500 var o = new api.CreativeRotation(); | 2500 var o = new api.CreativeRotation(); |
| 2501 buildCounterCreativeRotation++; | 2501 buildCounterCreativeRotation++; |
| 2502 if (buildCounterCreativeRotation < 3) { | 2502 if (buildCounterCreativeRotation < 3) { |
| 2503 o.creativeAssignments = buildUnnamed1094(); | 2503 o.creativeAssignments = buildUnnamed814(); |
| 2504 o.creativeOptimizationConfigurationId = "foo"; | 2504 o.creativeOptimizationConfigurationId = "foo"; |
| 2505 o.type = "foo"; | 2505 o.type = "foo"; |
| 2506 o.weightCalculationStrategy = "foo"; | 2506 o.weightCalculationStrategy = "foo"; |
| 2507 } | 2507 } |
| 2508 buildCounterCreativeRotation--; | 2508 buildCounterCreativeRotation--; |
| 2509 return o; | 2509 return o; |
| 2510 } | 2510 } |
| 2511 | 2511 |
| 2512 checkCreativeRotation(api.CreativeRotation o) { | 2512 checkCreativeRotation(api.CreativeRotation o) { |
| 2513 buildCounterCreativeRotation++; | 2513 buildCounterCreativeRotation++; |
| 2514 if (buildCounterCreativeRotation < 3) { | 2514 if (buildCounterCreativeRotation < 3) { |
| 2515 checkUnnamed1094(o.creativeAssignments); | 2515 checkUnnamed814(o.creativeAssignments); |
| 2516 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); | 2516 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); |
| 2517 unittest.expect(o.type, unittest.equals('foo')); | 2517 unittest.expect(o.type, unittest.equals('foo')); |
| 2518 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); | 2518 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); |
| 2519 } | 2519 } |
| 2520 buildCounterCreativeRotation--; | 2520 buildCounterCreativeRotation--; |
| 2521 } | 2521 } |
| 2522 | 2522 |
| 2523 core.int buildCounterCreativeSettings = 0; | 2523 core.int buildCounterCreativeSettings = 0; |
| 2524 buildCreativeSettings() { | 2524 buildCreativeSettings() { |
| 2525 var o = new api.CreativeSettings(); | 2525 var o = new api.CreativeSettings(); |
| 2526 buildCounterCreativeSettings++; | 2526 buildCounterCreativeSettings++; |
| 2527 if (buildCounterCreativeSettings < 3) { | 2527 if (buildCounterCreativeSettings < 3) { |
| 2528 o.iFrameFooter = "foo"; | 2528 o.iFrameFooter = "foo"; |
| 2529 o.iFrameHeader = "foo"; | 2529 o.iFrameHeader = "foo"; |
| 2530 } | 2530 } |
| 2531 buildCounterCreativeSettings--; | 2531 buildCounterCreativeSettings--; |
| 2532 return o; | 2532 return o; |
| 2533 } | 2533 } |
| 2534 | 2534 |
| 2535 checkCreativeSettings(api.CreativeSettings o) { | 2535 checkCreativeSettings(api.CreativeSettings o) { |
| 2536 buildCounterCreativeSettings++; | 2536 buildCounterCreativeSettings++; |
| 2537 if (buildCounterCreativeSettings < 3) { | 2537 if (buildCounterCreativeSettings < 3) { |
| 2538 unittest.expect(o.iFrameFooter, unittest.equals('foo')); | 2538 unittest.expect(o.iFrameFooter, unittest.equals('foo')); |
| 2539 unittest.expect(o.iFrameHeader, unittest.equals('foo')); | 2539 unittest.expect(o.iFrameHeader, unittest.equals('foo')); |
| 2540 } | 2540 } |
| 2541 buildCounterCreativeSettings--; | 2541 buildCounterCreativeSettings--; |
| 2542 } | 2542 } |
| 2543 | 2543 |
| 2544 buildUnnamed1095() { | 2544 buildUnnamed815() { |
| 2545 var o = new core.List<api.Creative>(); | 2545 var o = new core.List<api.Creative>(); |
| 2546 o.add(buildCreative()); | 2546 o.add(buildCreative()); |
| 2547 o.add(buildCreative()); | 2547 o.add(buildCreative()); |
| 2548 return o; | 2548 return o; |
| 2549 } | 2549 } |
| 2550 | 2550 |
| 2551 checkUnnamed1095(core.List<api.Creative> o) { | 2551 checkUnnamed815(core.List<api.Creative> o) { |
| 2552 unittest.expect(o, unittest.hasLength(2)); | 2552 unittest.expect(o, unittest.hasLength(2)); |
| 2553 checkCreative(o[0]); | 2553 checkCreative(o[0]); |
| 2554 checkCreative(o[1]); | 2554 checkCreative(o[1]); |
| 2555 } | 2555 } |
| 2556 | 2556 |
| 2557 core.int buildCounterCreativesListResponse = 0; | 2557 core.int buildCounterCreativesListResponse = 0; |
| 2558 buildCreativesListResponse() { | 2558 buildCreativesListResponse() { |
| 2559 var o = new api.CreativesListResponse(); | 2559 var o = new api.CreativesListResponse(); |
| 2560 buildCounterCreativesListResponse++; | 2560 buildCounterCreativesListResponse++; |
| 2561 if (buildCounterCreativesListResponse < 3) { | 2561 if (buildCounterCreativesListResponse < 3) { |
| 2562 o.creatives = buildUnnamed1095(); | 2562 o.creatives = buildUnnamed815(); |
| 2563 o.kind = "foo"; | 2563 o.kind = "foo"; |
| 2564 o.nextPageToken = "foo"; | 2564 o.nextPageToken = "foo"; |
| 2565 } | 2565 } |
| 2566 buildCounterCreativesListResponse--; | 2566 buildCounterCreativesListResponse--; |
| 2567 return o; | 2567 return o; |
| 2568 } | 2568 } |
| 2569 | 2569 |
| 2570 checkCreativesListResponse(api.CreativesListResponse o) { | 2570 checkCreativesListResponse(api.CreativesListResponse o) { |
| 2571 buildCounterCreativesListResponse++; | 2571 buildCounterCreativesListResponse++; |
| 2572 if (buildCounterCreativesListResponse < 3) { | 2572 if (buildCounterCreativesListResponse < 3) { |
| 2573 checkUnnamed1095(o.creatives); | 2573 checkUnnamed815(o.creatives); |
| 2574 unittest.expect(o.kind, unittest.equals('foo')); | 2574 unittest.expect(o.kind, unittest.equals('foo')); |
| 2575 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2575 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2576 } | 2576 } |
| 2577 buildCounterCreativesListResponse--; | 2577 buildCounterCreativesListResponse--; |
| 2578 } | 2578 } |
| 2579 | 2579 |
| 2580 buildUnnamed1096() { | 2580 buildUnnamed816() { |
| 2581 var o = new core.List<api.Dimension>(); | 2581 var o = new core.List<api.Dimension>(); |
| 2582 o.add(buildDimension()); | 2582 o.add(buildDimension()); |
| 2583 o.add(buildDimension()); | 2583 o.add(buildDimension()); |
| 2584 return o; | 2584 return o; |
| 2585 } | 2585 } |
| 2586 | 2586 |
| 2587 checkUnnamed1096(core.List<api.Dimension> o) { | 2587 checkUnnamed816(core.List<api.Dimension> o) { |
| 2588 unittest.expect(o, unittest.hasLength(2)); | 2588 unittest.expect(o, unittest.hasLength(2)); |
| 2589 checkDimension(o[0]); | 2589 checkDimension(o[0]); |
| 2590 checkDimension(o[1]); | 2590 checkDimension(o[1]); |
| 2591 } | 2591 } |
| 2592 | 2592 |
| 2593 buildUnnamed1097() { | 2593 buildUnnamed817() { |
| 2594 var o = new core.List<api.Dimension>(); | 2594 var o = new core.List<api.Dimension>(); |
| 2595 o.add(buildDimension()); | 2595 o.add(buildDimension()); |
| 2596 o.add(buildDimension()); | 2596 o.add(buildDimension()); |
| 2597 return o; | 2597 return o; |
| 2598 } | 2598 } |
| 2599 | 2599 |
| 2600 checkUnnamed1097(core.List<api.Dimension> o) { | 2600 checkUnnamed817(core.List<api.Dimension> o) { |
| 2601 unittest.expect(o, unittest.hasLength(2)); | 2601 unittest.expect(o, unittest.hasLength(2)); |
| 2602 checkDimension(o[0]); | 2602 checkDimension(o[0]); |
| 2603 checkDimension(o[1]); | 2603 checkDimension(o[1]); |
| 2604 } | 2604 } |
| 2605 | 2605 |
| 2606 buildUnnamed1098() { | 2606 buildUnnamed818() { |
| 2607 var o = new core.List<api.Metric>(); | 2607 var o = new core.List<api.Metric>(); |
| 2608 o.add(buildMetric()); | 2608 o.add(buildMetric()); |
| 2609 o.add(buildMetric()); | 2609 o.add(buildMetric()); |
| 2610 return o; | 2610 return o; |
| 2611 } | 2611 } |
| 2612 | 2612 |
| 2613 checkUnnamed1098(core.List<api.Metric> o) { | 2613 checkUnnamed818(core.List<api.Metric> o) { |
| 2614 unittest.expect(o, unittest.hasLength(2)); | 2614 unittest.expect(o, unittest.hasLength(2)); |
| 2615 checkMetric(o[0]); | 2615 checkMetric(o[0]); |
| 2616 checkMetric(o[1]); | 2616 checkMetric(o[1]); |
| 2617 } | 2617 } |
| 2618 | 2618 |
| 2619 buildUnnamed1099() { | 2619 buildUnnamed819() { |
| 2620 var o = new core.List<api.Metric>(); | 2620 var o = new core.List<api.Metric>(); |
| 2621 o.add(buildMetric()); | 2621 o.add(buildMetric()); |
| 2622 o.add(buildMetric()); | 2622 o.add(buildMetric()); |
| 2623 return o; | 2623 return o; |
| 2624 } | 2624 } |
| 2625 | 2625 |
| 2626 checkUnnamed1099(core.List<api.Metric> o) { | 2626 checkUnnamed819(core.List<api.Metric> o) { |
| 2627 unittest.expect(o, unittest.hasLength(2)); | 2627 unittest.expect(o, unittest.hasLength(2)); |
| 2628 checkMetric(o[0]); | 2628 checkMetric(o[0]); |
| 2629 checkMetric(o[1]); | 2629 checkMetric(o[1]); |
| 2630 } | 2630 } |
| 2631 | 2631 |
| 2632 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; | 2632 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; |
| 2633 buildCrossDimensionReachReportCompatibleFields() { | 2633 buildCrossDimensionReachReportCompatibleFields() { |
| 2634 var o = new api.CrossDimensionReachReportCompatibleFields(); | 2634 var o = new api.CrossDimensionReachReportCompatibleFields(); |
| 2635 buildCounterCrossDimensionReachReportCompatibleFields++; | 2635 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2636 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2636 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2637 o.breakdown = buildUnnamed1096(); | 2637 o.breakdown = buildUnnamed816(); |
| 2638 o.dimensionFilters = buildUnnamed1097(); | 2638 o.dimensionFilters = buildUnnamed817(); |
| 2639 o.kind = "foo"; | 2639 o.kind = "foo"; |
| 2640 o.metrics = buildUnnamed1098(); | 2640 o.metrics = buildUnnamed818(); |
| 2641 o.overlapMetrics = buildUnnamed1099(); | 2641 o.overlapMetrics = buildUnnamed819(); |
| 2642 } | 2642 } |
| 2643 buildCounterCrossDimensionReachReportCompatibleFields--; | 2643 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2644 return o; | 2644 return o; |
| 2645 } | 2645 } |
| 2646 | 2646 |
| 2647 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { | 2647 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { |
| 2648 buildCounterCrossDimensionReachReportCompatibleFields++; | 2648 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2649 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2649 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2650 checkUnnamed1096(o.breakdown); | 2650 checkUnnamed816(o.breakdown); |
| 2651 checkUnnamed1097(o.dimensionFilters); | 2651 checkUnnamed817(o.dimensionFilters); |
| 2652 unittest.expect(o.kind, unittest.equals('foo')); | 2652 unittest.expect(o.kind, unittest.equals('foo')); |
| 2653 checkUnnamed1098(o.metrics); | 2653 checkUnnamed818(o.metrics); |
| 2654 checkUnnamed1099(o.overlapMetrics); | 2654 checkUnnamed819(o.overlapMetrics); |
| 2655 } | 2655 } |
| 2656 buildCounterCrossDimensionReachReportCompatibleFields--; | 2656 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2657 } | 2657 } |
| 2658 | 2658 |
| 2659 buildUnnamed1100() { | 2659 buildUnnamed820() { |
| 2660 var o = new core.List<api.DimensionValue>(); | 2660 var o = new core.List<api.DimensionValue>(); |
| 2661 o.add(buildDimensionValue()); | 2661 o.add(buildDimensionValue()); |
| 2662 o.add(buildDimensionValue()); | 2662 o.add(buildDimensionValue()); |
| 2663 return o; | 2663 return o; |
| 2664 } | 2664 } |
| 2665 | 2665 |
| 2666 checkUnnamed1100(core.List<api.DimensionValue> o) { | 2666 checkUnnamed820(core.List<api.DimensionValue> o) { |
| 2667 unittest.expect(o, unittest.hasLength(2)); | 2667 unittest.expect(o, unittest.hasLength(2)); |
| 2668 checkDimensionValue(o[0]); | 2668 checkDimensionValue(o[0]); |
| 2669 checkDimensionValue(o[1]); | 2669 checkDimensionValue(o[1]); |
| 2670 } | 2670 } |
| 2671 | 2671 |
| 2672 core.int buildCounterCustomRichMediaEvents = 0; | 2672 core.int buildCounterCustomRichMediaEvents = 0; |
| 2673 buildCustomRichMediaEvents() { | 2673 buildCustomRichMediaEvents() { |
| 2674 var o = new api.CustomRichMediaEvents(); | 2674 var o = new api.CustomRichMediaEvents(); |
| 2675 buildCounterCustomRichMediaEvents++; | 2675 buildCounterCustomRichMediaEvents++; |
| 2676 if (buildCounterCustomRichMediaEvents < 3) { | 2676 if (buildCounterCustomRichMediaEvents < 3) { |
| 2677 o.filteredEventIds = buildUnnamed1100(); | 2677 o.filteredEventIds = buildUnnamed820(); |
| 2678 o.kind = "foo"; | 2678 o.kind = "foo"; |
| 2679 } | 2679 } |
| 2680 buildCounterCustomRichMediaEvents--; | 2680 buildCounterCustomRichMediaEvents--; |
| 2681 return o; | 2681 return o; |
| 2682 } | 2682 } |
| 2683 | 2683 |
| 2684 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { | 2684 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { |
| 2685 buildCounterCustomRichMediaEvents++; | 2685 buildCounterCustomRichMediaEvents++; |
| 2686 if (buildCounterCustomRichMediaEvents < 3) { | 2686 if (buildCounterCustomRichMediaEvents < 3) { |
| 2687 checkUnnamed1100(o.filteredEventIds); | 2687 checkUnnamed820(o.filteredEventIds); |
| 2688 unittest.expect(o.kind, unittest.equals('foo')); | 2688 unittest.expect(o.kind, unittest.equals('foo')); |
| 2689 } | 2689 } |
| 2690 buildCounterCustomRichMediaEvents--; | 2690 buildCounterCustomRichMediaEvents--; |
| 2691 } | 2691 } |
| 2692 | 2692 |
| 2693 core.int buildCounterDateRange = 0; | 2693 core.int buildCounterDateRange = 0; |
| 2694 buildDateRange() { | 2694 buildDateRange() { |
| 2695 var o = new api.DateRange(); | 2695 var o = new api.DateRange(); |
| 2696 buildCounterDateRange++; | 2696 buildCounterDateRange++; |
| 2697 if (buildCounterDateRange < 3) { | 2697 if (buildCounterDateRange < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 2708 buildCounterDateRange++; | 2708 buildCounterDateRange++; |
| 2709 if (buildCounterDateRange < 3) { | 2709 if (buildCounterDateRange < 3) { |
| 2710 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2710 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2711 unittest.expect(o.kind, unittest.equals('foo')); | 2711 unittest.expect(o.kind, unittest.equals('foo')); |
| 2712 unittest.expect(o.relativeDateRange, unittest.equals('foo')); | 2712 unittest.expect(o.relativeDateRange, unittest.equals('foo')); |
| 2713 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2713 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2714 } | 2714 } |
| 2715 buildCounterDateRange--; | 2715 buildCounterDateRange--; |
| 2716 } | 2716 } |
| 2717 | 2717 |
| 2718 buildUnnamed1101() { | 2718 buildUnnamed821() { |
| 2719 var o = new core.List<core.String>(); | 2719 var o = new core.List<core.String>(); |
| 2720 o.add("foo"); | 2720 o.add("foo"); |
| 2721 o.add("foo"); | 2721 o.add("foo"); |
| 2722 return o; | 2722 return o; |
| 2723 } | 2723 } |
| 2724 | 2724 |
| 2725 checkUnnamed1101(core.List<core.String> o) { | 2725 checkUnnamed821(core.List<core.String> o) { |
| 2726 unittest.expect(o, unittest.hasLength(2)); | 2726 unittest.expect(o, unittest.hasLength(2)); |
| 2727 unittest.expect(o[0], unittest.equals('foo')); | 2727 unittest.expect(o[0], unittest.equals('foo')); |
| 2728 unittest.expect(o[1], unittest.equals('foo')); | 2728 unittest.expect(o[1], unittest.equals('foo')); |
| 2729 } | 2729 } |
| 2730 | 2730 |
| 2731 buildUnnamed1102() { | 2731 buildUnnamed822() { |
| 2732 var o = new core.List<core.int>(); | 2732 var o = new core.List<core.int>(); |
| 2733 o.add(42); | 2733 o.add(42); |
| 2734 o.add(42); | 2734 o.add(42); |
| 2735 return o; | 2735 return o; |
| 2736 } | 2736 } |
| 2737 | 2737 |
| 2738 checkUnnamed1102(core.List<core.int> o) { | 2738 checkUnnamed822(core.List<core.int> o) { |
| 2739 unittest.expect(o, unittest.hasLength(2)); | 2739 unittest.expect(o, unittest.hasLength(2)); |
| 2740 unittest.expect(o[0], unittest.equals(42)); | 2740 unittest.expect(o[0], unittest.equals(42)); |
| 2741 unittest.expect(o[1], unittest.equals(42)); | 2741 unittest.expect(o[1], unittest.equals(42)); |
| 2742 } | 2742 } |
| 2743 | 2743 |
| 2744 core.int buildCounterDayPartTargeting = 0; | 2744 core.int buildCounterDayPartTargeting = 0; |
| 2745 buildDayPartTargeting() { | 2745 buildDayPartTargeting() { |
| 2746 var o = new api.DayPartTargeting(); | 2746 var o = new api.DayPartTargeting(); |
| 2747 buildCounterDayPartTargeting++; | 2747 buildCounterDayPartTargeting++; |
| 2748 if (buildCounterDayPartTargeting < 3) { | 2748 if (buildCounterDayPartTargeting < 3) { |
| 2749 o.daysOfWeek = buildUnnamed1101(); | 2749 o.daysOfWeek = buildUnnamed821(); |
| 2750 o.hoursOfDay = buildUnnamed1102(); | 2750 o.hoursOfDay = buildUnnamed822(); |
| 2751 o.userLocalTime = true; | 2751 o.userLocalTime = true; |
| 2752 } | 2752 } |
| 2753 buildCounterDayPartTargeting--; | 2753 buildCounterDayPartTargeting--; |
| 2754 return o; | 2754 return o; |
| 2755 } | 2755 } |
| 2756 | 2756 |
| 2757 checkDayPartTargeting(api.DayPartTargeting o) { | 2757 checkDayPartTargeting(api.DayPartTargeting o) { |
| 2758 buildCounterDayPartTargeting++; | 2758 buildCounterDayPartTargeting++; |
| 2759 if (buildCounterDayPartTargeting < 3) { | 2759 if (buildCounterDayPartTargeting < 3) { |
| 2760 checkUnnamed1101(o.daysOfWeek); | 2760 checkUnnamed821(o.daysOfWeek); |
| 2761 checkUnnamed1102(o.hoursOfDay); | 2761 checkUnnamed822(o.hoursOfDay); |
| 2762 unittest.expect(o.userLocalTime, unittest.isTrue); | 2762 unittest.expect(o.userLocalTime, unittest.isTrue); |
| 2763 } | 2763 } |
| 2764 buildCounterDayPartTargeting--; | 2764 buildCounterDayPartTargeting--; |
| 2765 } | 2765 } |
| 2766 | 2766 |
| 2767 core.int buildCounterDefaultClickThroughEventTagProperties = 0; | 2767 core.int buildCounterDefaultClickThroughEventTagProperties = 0; |
| 2768 buildDefaultClickThroughEventTagProperties() { | 2768 buildDefaultClickThroughEventTagProperties() { |
| 2769 var o = new api.DefaultClickThroughEventTagProperties(); | 2769 var o = new api.DefaultClickThroughEventTagProperties(); |
| 2770 buildCounterDefaultClickThroughEventTagProperties++; | 2770 buildCounterDefaultClickThroughEventTagProperties++; |
| 2771 if (buildCounterDefaultClickThroughEventTagProperties < 3) { | 2771 if (buildCounterDefaultClickThroughEventTagProperties < 3) { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2903 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2903 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 2904 unittest.expect(o.etag, unittest.equals('foo')); | 2904 unittest.expect(o.etag, unittest.equals('foo')); |
| 2905 unittest.expect(o.id, unittest.equals('foo')); | 2905 unittest.expect(o.id, unittest.equals('foo')); |
| 2906 unittest.expect(o.kind, unittest.equals('foo')); | 2906 unittest.expect(o.kind, unittest.equals('foo')); |
| 2907 unittest.expect(o.matchType, unittest.equals('foo')); | 2907 unittest.expect(o.matchType, unittest.equals('foo')); |
| 2908 unittest.expect(o.value, unittest.equals('foo')); | 2908 unittest.expect(o.value, unittest.equals('foo')); |
| 2909 } | 2909 } |
| 2910 buildCounterDimensionValue--; | 2910 buildCounterDimensionValue--; |
| 2911 } | 2911 } |
| 2912 | 2912 |
| 2913 buildUnnamed1103() { | 2913 buildUnnamed823() { |
| 2914 var o = new core.List<api.DimensionValue>(); | 2914 var o = new core.List<api.DimensionValue>(); |
| 2915 o.add(buildDimensionValue()); | 2915 o.add(buildDimensionValue()); |
| 2916 o.add(buildDimensionValue()); | 2916 o.add(buildDimensionValue()); |
| 2917 return o; | 2917 return o; |
| 2918 } | 2918 } |
| 2919 | 2919 |
| 2920 checkUnnamed1103(core.List<api.DimensionValue> o) { | 2920 checkUnnamed823(core.List<api.DimensionValue> o) { |
| 2921 unittest.expect(o, unittest.hasLength(2)); | 2921 unittest.expect(o, unittest.hasLength(2)); |
| 2922 checkDimensionValue(o[0]); | 2922 checkDimensionValue(o[0]); |
| 2923 checkDimensionValue(o[1]); | 2923 checkDimensionValue(o[1]); |
| 2924 } | 2924 } |
| 2925 | 2925 |
| 2926 core.int buildCounterDimensionValueList = 0; | 2926 core.int buildCounterDimensionValueList = 0; |
| 2927 buildDimensionValueList() { | 2927 buildDimensionValueList() { |
| 2928 var o = new api.DimensionValueList(); | 2928 var o = new api.DimensionValueList(); |
| 2929 buildCounterDimensionValueList++; | 2929 buildCounterDimensionValueList++; |
| 2930 if (buildCounterDimensionValueList < 3) { | 2930 if (buildCounterDimensionValueList < 3) { |
| 2931 o.etag = "foo"; | 2931 o.etag = "foo"; |
| 2932 o.items = buildUnnamed1103(); | 2932 o.items = buildUnnamed823(); |
| 2933 o.kind = "foo"; | 2933 o.kind = "foo"; |
| 2934 o.nextPageToken = "foo"; | 2934 o.nextPageToken = "foo"; |
| 2935 } | 2935 } |
| 2936 buildCounterDimensionValueList--; | 2936 buildCounterDimensionValueList--; |
| 2937 return o; | 2937 return o; |
| 2938 } | 2938 } |
| 2939 | 2939 |
| 2940 checkDimensionValueList(api.DimensionValueList o) { | 2940 checkDimensionValueList(api.DimensionValueList o) { |
| 2941 buildCounterDimensionValueList++; | 2941 buildCounterDimensionValueList++; |
| 2942 if (buildCounterDimensionValueList < 3) { | 2942 if (buildCounterDimensionValueList < 3) { |
| 2943 unittest.expect(o.etag, unittest.equals('foo')); | 2943 unittest.expect(o.etag, unittest.equals('foo')); |
| 2944 checkUnnamed1103(o.items); | 2944 checkUnnamed823(o.items); |
| 2945 unittest.expect(o.kind, unittest.equals('foo')); | 2945 unittest.expect(o.kind, unittest.equals('foo')); |
| 2946 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2946 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2947 } | 2947 } |
| 2948 buildCounterDimensionValueList--; | 2948 buildCounterDimensionValueList--; |
| 2949 } | 2949 } |
| 2950 | 2950 |
| 2951 buildUnnamed1104() { | 2951 buildUnnamed824() { |
| 2952 var o = new core.List<api.DimensionFilter>(); | 2952 var o = new core.List<api.DimensionFilter>(); |
| 2953 o.add(buildDimensionFilter()); | 2953 o.add(buildDimensionFilter()); |
| 2954 o.add(buildDimensionFilter()); | 2954 o.add(buildDimensionFilter()); |
| 2955 return o; | 2955 return o; |
| 2956 } | 2956 } |
| 2957 | 2957 |
| 2958 checkUnnamed1104(core.List<api.DimensionFilter> o) { | 2958 checkUnnamed824(core.List<api.DimensionFilter> o) { |
| 2959 unittest.expect(o, unittest.hasLength(2)); | 2959 unittest.expect(o, unittest.hasLength(2)); |
| 2960 checkDimensionFilter(o[0]); | 2960 checkDimensionFilter(o[0]); |
| 2961 checkDimensionFilter(o[1]); | 2961 checkDimensionFilter(o[1]); |
| 2962 } | 2962 } |
| 2963 | 2963 |
| 2964 core.int buildCounterDimensionValueRequest = 0; | 2964 core.int buildCounterDimensionValueRequest = 0; |
| 2965 buildDimensionValueRequest() { | 2965 buildDimensionValueRequest() { |
| 2966 var o = new api.DimensionValueRequest(); | 2966 var o = new api.DimensionValueRequest(); |
| 2967 buildCounterDimensionValueRequest++; | 2967 buildCounterDimensionValueRequest++; |
| 2968 if (buildCounterDimensionValueRequest < 3) { | 2968 if (buildCounterDimensionValueRequest < 3) { |
| 2969 o.dimensionName = "foo"; | 2969 o.dimensionName = "foo"; |
| 2970 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2970 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 2971 o.filters = buildUnnamed1104(); | 2971 o.filters = buildUnnamed824(); |
| 2972 o.kind = "foo"; | 2972 o.kind = "foo"; |
| 2973 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2973 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 2974 } | 2974 } |
| 2975 buildCounterDimensionValueRequest--; | 2975 buildCounterDimensionValueRequest--; |
| 2976 return o; | 2976 return o; |
| 2977 } | 2977 } |
| 2978 | 2978 |
| 2979 checkDimensionValueRequest(api.DimensionValueRequest o) { | 2979 checkDimensionValueRequest(api.DimensionValueRequest o) { |
| 2980 buildCounterDimensionValueRequest++; | 2980 buildCounterDimensionValueRequest++; |
| 2981 if (buildCounterDimensionValueRequest < 3) { | 2981 if (buildCounterDimensionValueRequest < 3) { |
| 2982 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2982 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 2983 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2983 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2984 checkUnnamed1104(o.filters); | 2984 checkUnnamed824(o.filters); |
| 2985 unittest.expect(o.kind, unittest.equals('foo')); | 2985 unittest.expect(o.kind, unittest.equals('foo')); |
| 2986 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2986 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2987 } | 2987 } |
| 2988 buildCounterDimensionValueRequest--; | 2988 buildCounterDimensionValueRequest--; |
| 2989 } | 2989 } |
| 2990 | 2990 |
| 2991 buildUnnamed1105() { | 2991 buildUnnamed825() { |
| 2992 var o = new core.List<api.DirectorySiteContactAssignment>(); | 2992 var o = new core.List<api.DirectorySiteContactAssignment>(); |
| 2993 o.add(buildDirectorySiteContactAssignment()); | 2993 o.add(buildDirectorySiteContactAssignment()); |
| 2994 o.add(buildDirectorySiteContactAssignment()); | 2994 o.add(buildDirectorySiteContactAssignment()); |
| 2995 return o; | 2995 return o; |
| 2996 } | 2996 } |
| 2997 | 2997 |
| 2998 checkUnnamed1105(core.List<api.DirectorySiteContactAssignment> o) { | 2998 checkUnnamed825(core.List<api.DirectorySiteContactAssignment> o) { |
| 2999 unittest.expect(o, unittest.hasLength(2)); | 2999 unittest.expect(o, unittest.hasLength(2)); |
| 3000 checkDirectorySiteContactAssignment(o[0]); | 3000 checkDirectorySiteContactAssignment(o[0]); |
| 3001 checkDirectorySiteContactAssignment(o[1]); | 3001 checkDirectorySiteContactAssignment(o[1]); |
| 3002 } | 3002 } |
| 3003 | 3003 |
| 3004 buildUnnamed1106() { | 3004 buildUnnamed826() { |
| 3005 var o = new core.List<core.String>(); | 3005 var o = new core.List<core.String>(); |
| 3006 o.add("foo"); | 3006 o.add("foo"); |
| 3007 o.add("foo"); | 3007 o.add("foo"); |
| 3008 return o; | 3008 return o; |
| 3009 } | 3009 } |
| 3010 | 3010 |
| 3011 checkUnnamed1106(core.List<core.String> o) { | 3011 checkUnnamed826(core.List<core.String> o) { |
| 3012 unittest.expect(o, unittest.hasLength(2)); | 3012 unittest.expect(o, unittest.hasLength(2)); |
| 3013 unittest.expect(o[0], unittest.equals('foo')); | 3013 unittest.expect(o[0], unittest.equals('foo')); |
| 3014 unittest.expect(o[1], unittest.equals('foo')); | 3014 unittest.expect(o[1], unittest.equals('foo')); |
| 3015 } | 3015 } |
| 3016 | 3016 |
| 3017 buildUnnamed1107() { | 3017 buildUnnamed827() { |
| 3018 var o = new core.List<core.String>(); | 3018 var o = new core.List<core.String>(); |
| 3019 o.add("foo"); | 3019 o.add("foo"); |
| 3020 o.add("foo"); | 3020 o.add("foo"); |
| 3021 return o; | 3021 return o; |
| 3022 } | 3022 } |
| 3023 | 3023 |
| 3024 checkUnnamed1107(core.List<core.String> o) { | 3024 checkUnnamed827(core.List<core.String> o) { |
| 3025 unittest.expect(o, unittest.hasLength(2)); | 3025 unittest.expect(o, unittest.hasLength(2)); |
| 3026 unittest.expect(o[0], unittest.equals('foo')); | 3026 unittest.expect(o[0], unittest.equals('foo')); |
| 3027 unittest.expect(o[1], unittest.equals('foo')); | 3027 unittest.expect(o[1], unittest.equals('foo')); |
| 3028 } | 3028 } |
| 3029 | 3029 |
| 3030 core.int buildCounterDirectorySite = 0; | 3030 core.int buildCounterDirectorySite = 0; |
| 3031 buildDirectorySite() { | 3031 buildDirectorySite() { |
| 3032 var o = new api.DirectorySite(); | 3032 var o = new api.DirectorySite(); |
| 3033 buildCounterDirectorySite++; | 3033 buildCounterDirectorySite++; |
| 3034 if (buildCounterDirectorySite < 3) { | 3034 if (buildCounterDirectorySite < 3) { |
| 3035 o.active = true; | 3035 o.active = true; |
| 3036 o.contactAssignments = buildUnnamed1105(); | 3036 o.contactAssignments = buildUnnamed825(); |
| 3037 o.countryId = "foo"; | 3037 o.countryId = "foo"; |
| 3038 o.currencyId = "foo"; | 3038 o.currencyId = "foo"; |
| 3039 o.description = "foo"; | 3039 o.description = "foo"; |
| 3040 o.id = "foo"; | 3040 o.id = "foo"; |
| 3041 o.idDimensionValue = buildDimensionValue(); | 3041 o.idDimensionValue = buildDimensionValue(); |
| 3042 o.inpageTagFormats = buildUnnamed1106(); | 3042 o.inpageTagFormats = buildUnnamed826(); |
| 3043 o.interstitialTagFormats = buildUnnamed1107(); | 3043 o.interstitialTagFormats = buildUnnamed827(); |
| 3044 o.kind = "foo"; | 3044 o.kind = "foo"; |
| 3045 o.name = "foo"; | 3045 o.name = "foo"; |
| 3046 o.parentId = "foo"; | 3046 o.parentId = "foo"; |
| 3047 o.settings = buildDirectorySiteSettings(); | 3047 o.settings = buildDirectorySiteSettings(); |
| 3048 o.url = "foo"; | 3048 o.url = "foo"; |
| 3049 } | 3049 } |
| 3050 buildCounterDirectorySite--; | 3050 buildCounterDirectorySite--; |
| 3051 return o; | 3051 return o; |
| 3052 } | 3052 } |
| 3053 | 3053 |
| 3054 checkDirectorySite(api.DirectorySite o) { | 3054 checkDirectorySite(api.DirectorySite o) { |
| 3055 buildCounterDirectorySite++; | 3055 buildCounterDirectorySite++; |
| 3056 if (buildCounterDirectorySite < 3) { | 3056 if (buildCounterDirectorySite < 3) { |
| 3057 unittest.expect(o.active, unittest.isTrue); | 3057 unittest.expect(o.active, unittest.isTrue); |
| 3058 checkUnnamed1105(o.contactAssignments); | 3058 checkUnnamed825(o.contactAssignments); |
| 3059 unittest.expect(o.countryId, unittest.equals('foo')); | 3059 unittest.expect(o.countryId, unittest.equals('foo')); |
| 3060 unittest.expect(o.currencyId, unittest.equals('foo')); | 3060 unittest.expect(o.currencyId, unittest.equals('foo')); |
| 3061 unittest.expect(o.description, unittest.equals('foo')); | 3061 unittest.expect(o.description, unittest.equals('foo')); |
| 3062 unittest.expect(o.id, unittest.equals('foo')); | 3062 unittest.expect(o.id, unittest.equals('foo')); |
| 3063 checkDimensionValue(o.idDimensionValue); | 3063 checkDimensionValue(o.idDimensionValue); |
| 3064 checkUnnamed1106(o.inpageTagFormats); | 3064 checkUnnamed826(o.inpageTagFormats); |
| 3065 checkUnnamed1107(o.interstitialTagFormats); | 3065 checkUnnamed827(o.interstitialTagFormats); |
| 3066 unittest.expect(o.kind, unittest.equals('foo')); | 3066 unittest.expect(o.kind, unittest.equals('foo')); |
| 3067 unittest.expect(o.name, unittest.equals('foo')); | 3067 unittest.expect(o.name, unittest.equals('foo')); |
| 3068 unittest.expect(o.parentId, unittest.equals('foo')); | 3068 unittest.expect(o.parentId, unittest.equals('foo')); |
| 3069 checkDirectorySiteSettings(o.settings); | 3069 checkDirectorySiteSettings(o.settings); |
| 3070 unittest.expect(o.url, unittest.equals('foo')); | 3070 unittest.expect(o.url, unittest.equals('foo')); |
| 3071 } | 3071 } |
| 3072 buildCounterDirectorySite--; | 3072 buildCounterDirectorySite--; |
| 3073 } | 3073 } |
| 3074 | 3074 |
| 3075 core.int buildCounterDirectorySiteContact = 0; | 3075 core.int buildCounterDirectorySiteContact = 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3123 | 3123 |
| 3124 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { | 3124 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { |
| 3125 buildCounterDirectorySiteContactAssignment++; | 3125 buildCounterDirectorySiteContactAssignment++; |
| 3126 if (buildCounterDirectorySiteContactAssignment < 3) { | 3126 if (buildCounterDirectorySiteContactAssignment < 3) { |
| 3127 unittest.expect(o.contactId, unittest.equals('foo')); | 3127 unittest.expect(o.contactId, unittest.equals('foo')); |
| 3128 unittest.expect(o.visibility, unittest.equals('foo')); | 3128 unittest.expect(o.visibility, unittest.equals('foo')); |
| 3129 } | 3129 } |
| 3130 buildCounterDirectorySiteContactAssignment--; | 3130 buildCounterDirectorySiteContactAssignment--; |
| 3131 } | 3131 } |
| 3132 | 3132 |
| 3133 buildUnnamed1108() { | 3133 buildUnnamed828() { |
| 3134 var o = new core.List<api.DirectorySiteContact>(); | 3134 var o = new core.List<api.DirectorySiteContact>(); |
| 3135 o.add(buildDirectorySiteContact()); | 3135 o.add(buildDirectorySiteContact()); |
| 3136 o.add(buildDirectorySiteContact()); | 3136 o.add(buildDirectorySiteContact()); |
| 3137 return o; | 3137 return o; |
| 3138 } | 3138 } |
| 3139 | 3139 |
| 3140 checkUnnamed1108(core.List<api.DirectorySiteContact> o) { | 3140 checkUnnamed828(core.List<api.DirectorySiteContact> o) { |
| 3141 unittest.expect(o, unittest.hasLength(2)); | 3141 unittest.expect(o, unittest.hasLength(2)); |
| 3142 checkDirectorySiteContact(o[0]); | 3142 checkDirectorySiteContact(o[0]); |
| 3143 checkDirectorySiteContact(o[1]); | 3143 checkDirectorySiteContact(o[1]); |
| 3144 } | 3144 } |
| 3145 | 3145 |
| 3146 core.int buildCounterDirectorySiteContactsListResponse = 0; | 3146 core.int buildCounterDirectorySiteContactsListResponse = 0; |
| 3147 buildDirectorySiteContactsListResponse() { | 3147 buildDirectorySiteContactsListResponse() { |
| 3148 var o = new api.DirectorySiteContactsListResponse(); | 3148 var o = new api.DirectorySiteContactsListResponse(); |
| 3149 buildCounterDirectorySiteContactsListResponse++; | 3149 buildCounterDirectorySiteContactsListResponse++; |
| 3150 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3150 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3151 o.directorySiteContacts = buildUnnamed1108(); | 3151 o.directorySiteContacts = buildUnnamed828(); |
| 3152 o.kind = "foo"; | 3152 o.kind = "foo"; |
| 3153 o.nextPageToken = "foo"; | 3153 o.nextPageToken = "foo"; |
| 3154 } | 3154 } |
| 3155 buildCounterDirectorySiteContactsListResponse--; | 3155 buildCounterDirectorySiteContactsListResponse--; |
| 3156 return o; | 3156 return o; |
| 3157 } | 3157 } |
| 3158 | 3158 |
| 3159 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ | 3159 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ |
| 3160 buildCounterDirectorySiteContactsListResponse++; | 3160 buildCounterDirectorySiteContactsListResponse++; |
| 3161 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3161 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3162 checkUnnamed1108(o.directorySiteContacts); | 3162 checkUnnamed828(o.directorySiteContacts); |
| 3163 unittest.expect(o.kind, unittest.equals('foo')); | 3163 unittest.expect(o.kind, unittest.equals('foo')); |
| 3164 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3164 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3165 } | 3165 } |
| 3166 buildCounterDirectorySiteContactsListResponse--; | 3166 buildCounterDirectorySiteContactsListResponse--; |
| 3167 } | 3167 } |
| 3168 | 3168 |
| 3169 core.int buildCounterDirectorySiteSettings = 0; | 3169 core.int buildCounterDirectorySiteSettings = 0; |
| 3170 buildDirectorySiteSettings() { | 3170 buildDirectorySiteSettings() { |
| 3171 var o = new api.DirectorySiteSettings(); | 3171 var o = new api.DirectorySiteSettings(); |
| 3172 buildCounterDirectorySiteSettings++; | 3172 buildCounterDirectorySiteSettings++; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 3190 checkDfpSettings(o.dfpSettings); | 3190 checkDfpSettings(o.dfpSettings); |
| 3191 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); | 3191 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); |
| 3192 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); | 3192 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); |
| 3193 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); | 3193 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); |
| 3194 unittest.expect(o.verificationTagOptOut, unittest.isTrue); | 3194 unittest.expect(o.verificationTagOptOut, unittest.isTrue); |
| 3195 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 3195 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 3196 } | 3196 } |
| 3197 buildCounterDirectorySiteSettings--; | 3197 buildCounterDirectorySiteSettings--; |
| 3198 } | 3198 } |
| 3199 | 3199 |
| 3200 buildUnnamed1109() { | 3200 buildUnnamed829() { |
| 3201 var o = new core.List<api.DirectorySite>(); | 3201 var o = new core.List<api.DirectorySite>(); |
| 3202 o.add(buildDirectorySite()); | 3202 o.add(buildDirectorySite()); |
| 3203 o.add(buildDirectorySite()); | 3203 o.add(buildDirectorySite()); |
| 3204 return o; | 3204 return o; |
| 3205 } | 3205 } |
| 3206 | 3206 |
| 3207 checkUnnamed1109(core.List<api.DirectorySite> o) { | 3207 checkUnnamed829(core.List<api.DirectorySite> o) { |
| 3208 unittest.expect(o, unittest.hasLength(2)); | 3208 unittest.expect(o, unittest.hasLength(2)); |
| 3209 checkDirectorySite(o[0]); | 3209 checkDirectorySite(o[0]); |
| 3210 checkDirectorySite(o[1]); | 3210 checkDirectorySite(o[1]); |
| 3211 } | 3211 } |
| 3212 | 3212 |
| 3213 core.int buildCounterDirectorySitesListResponse = 0; | 3213 core.int buildCounterDirectorySitesListResponse = 0; |
| 3214 buildDirectorySitesListResponse() { | 3214 buildDirectorySitesListResponse() { |
| 3215 var o = new api.DirectorySitesListResponse(); | 3215 var o = new api.DirectorySitesListResponse(); |
| 3216 buildCounterDirectorySitesListResponse++; | 3216 buildCounterDirectorySitesListResponse++; |
| 3217 if (buildCounterDirectorySitesListResponse < 3) { | 3217 if (buildCounterDirectorySitesListResponse < 3) { |
| 3218 o.directorySites = buildUnnamed1109(); | 3218 o.directorySites = buildUnnamed829(); |
| 3219 o.kind = "foo"; | 3219 o.kind = "foo"; |
| 3220 o.nextPageToken = "foo"; | 3220 o.nextPageToken = "foo"; |
| 3221 } | 3221 } |
| 3222 buildCounterDirectorySitesListResponse--; | 3222 buildCounterDirectorySitesListResponse--; |
| 3223 return o; | 3223 return o; |
| 3224 } | 3224 } |
| 3225 | 3225 |
| 3226 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { | 3226 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { |
| 3227 buildCounterDirectorySitesListResponse++; | 3227 buildCounterDirectorySitesListResponse++; |
| 3228 if (buildCounterDirectorySitesListResponse < 3) { | 3228 if (buildCounterDirectorySitesListResponse < 3) { |
| 3229 checkUnnamed1109(o.directorySites); | 3229 checkUnnamed829(o.directorySites); |
| 3230 unittest.expect(o.kind, unittest.equals('foo')); | 3230 unittest.expect(o.kind, unittest.equals('foo')); |
| 3231 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3231 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3232 } | 3232 } |
| 3233 buildCounterDirectorySitesListResponse--; | 3233 buildCounterDirectorySitesListResponse--; |
| 3234 } | 3234 } |
| 3235 | 3235 |
| 3236 buildUnnamed1110() { | 3236 buildUnnamed830() { |
| 3237 var o = new core.List<core.String>(); | 3237 var o = new core.List<core.String>(); |
| 3238 o.add("foo"); | 3238 o.add("foo"); |
| 3239 o.add("foo"); | 3239 o.add("foo"); |
| 3240 return o; | 3240 return o; |
| 3241 } | 3241 } |
| 3242 | 3242 |
| 3243 checkUnnamed1110(core.List<core.String> o) { | 3243 checkUnnamed830(core.List<core.String> o) { |
| 3244 unittest.expect(o, unittest.hasLength(2)); | 3244 unittest.expect(o, unittest.hasLength(2)); |
| 3245 unittest.expect(o[0], unittest.equals('foo')); | 3245 unittest.expect(o[0], unittest.equals('foo')); |
| 3246 unittest.expect(o[1], unittest.equals('foo')); | 3246 unittest.expect(o[1], unittest.equals('foo')); |
| 3247 } | 3247 } |
| 3248 | 3248 |
| 3249 core.int buildCounterEventTag = 0; | 3249 core.int buildCounterEventTag = 0; |
| 3250 buildEventTag() { | 3250 buildEventTag() { |
| 3251 var o = new api.EventTag(); | 3251 var o = new api.EventTag(); |
| 3252 buildCounterEventTag++; | 3252 buildCounterEventTag++; |
| 3253 if (buildCounterEventTag < 3) { | 3253 if (buildCounterEventTag < 3) { |
| 3254 o.accountId = "foo"; | 3254 o.accountId = "foo"; |
| 3255 o.advertiserId = "foo"; | 3255 o.advertiserId = "foo"; |
| 3256 o.advertiserIdDimensionValue = buildDimensionValue(); | 3256 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3257 o.campaignId = "foo"; | 3257 o.campaignId = "foo"; |
| 3258 o.campaignIdDimensionValue = buildDimensionValue(); | 3258 o.campaignIdDimensionValue = buildDimensionValue(); |
| 3259 o.enabledByDefault = true; | 3259 o.enabledByDefault = true; |
| 3260 o.id = "foo"; | 3260 o.id = "foo"; |
| 3261 o.kind = "foo"; | 3261 o.kind = "foo"; |
| 3262 o.name = "foo"; | 3262 o.name = "foo"; |
| 3263 o.siteFilterType = "foo"; | 3263 o.siteFilterType = "foo"; |
| 3264 o.siteIds = buildUnnamed1110(); | 3264 o.siteIds = buildUnnamed830(); |
| 3265 o.sslCompliant = true; | 3265 o.sslCompliant = true; |
| 3266 o.status = "foo"; | 3266 o.status = "foo"; |
| 3267 o.subaccountId = "foo"; | 3267 o.subaccountId = "foo"; |
| 3268 o.type = "foo"; | 3268 o.type = "foo"; |
| 3269 o.url = "foo"; | 3269 o.url = "foo"; |
| 3270 o.urlEscapeLevels = 42; | 3270 o.urlEscapeLevels = 42; |
| 3271 } | 3271 } |
| 3272 buildCounterEventTag--; | 3272 buildCounterEventTag--; |
| 3273 return o; | 3273 return o; |
| 3274 } | 3274 } |
| 3275 | 3275 |
| 3276 checkEventTag(api.EventTag o) { | 3276 checkEventTag(api.EventTag o) { |
| 3277 buildCounterEventTag++; | 3277 buildCounterEventTag++; |
| 3278 if (buildCounterEventTag < 3) { | 3278 if (buildCounterEventTag < 3) { |
| 3279 unittest.expect(o.accountId, unittest.equals('foo')); | 3279 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3280 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3280 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3281 checkDimensionValue(o.advertiserIdDimensionValue); | 3281 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3282 unittest.expect(o.campaignId, unittest.equals('foo')); | 3282 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 3283 checkDimensionValue(o.campaignIdDimensionValue); | 3283 checkDimensionValue(o.campaignIdDimensionValue); |
| 3284 unittest.expect(o.enabledByDefault, unittest.isTrue); | 3284 unittest.expect(o.enabledByDefault, unittest.isTrue); |
| 3285 unittest.expect(o.id, unittest.equals('foo')); | 3285 unittest.expect(o.id, unittest.equals('foo')); |
| 3286 unittest.expect(o.kind, unittest.equals('foo')); | 3286 unittest.expect(o.kind, unittest.equals('foo')); |
| 3287 unittest.expect(o.name, unittest.equals('foo')); | 3287 unittest.expect(o.name, unittest.equals('foo')); |
| 3288 unittest.expect(o.siteFilterType, unittest.equals('foo')); | 3288 unittest.expect(o.siteFilterType, unittest.equals('foo')); |
| 3289 checkUnnamed1110(o.siteIds); | 3289 checkUnnamed830(o.siteIds); |
| 3290 unittest.expect(o.sslCompliant, unittest.isTrue); | 3290 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3291 unittest.expect(o.status, unittest.equals('foo')); | 3291 unittest.expect(o.status, unittest.equals('foo')); |
| 3292 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3292 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3293 unittest.expect(o.type, unittest.equals('foo')); | 3293 unittest.expect(o.type, unittest.equals('foo')); |
| 3294 unittest.expect(o.url, unittest.equals('foo')); | 3294 unittest.expect(o.url, unittest.equals('foo')); |
| 3295 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); | 3295 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); |
| 3296 } | 3296 } |
| 3297 buildCounterEventTag--; | 3297 buildCounterEventTag--; |
| 3298 } | 3298 } |
| 3299 | 3299 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3311 | 3311 |
| 3312 checkEventTagOverride(api.EventTagOverride o) { | 3312 checkEventTagOverride(api.EventTagOverride o) { |
| 3313 buildCounterEventTagOverride++; | 3313 buildCounterEventTagOverride++; |
| 3314 if (buildCounterEventTagOverride < 3) { | 3314 if (buildCounterEventTagOverride < 3) { |
| 3315 unittest.expect(o.enabled, unittest.isTrue); | 3315 unittest.expect(o.enabled, unittest.isTrue); |
| 3316 unittest.expect(o.id, unittest.equals('foo')); | 3316 unittest.expect(o.id, unittest.equals('foo')); |
| 3317 } | 3317 } |
| 3318 buildCounterEventTagOverride--; | 3318 buildCounterEventTagOverride--; |
| 3319 } | 3319 } |
| 3320 | 3320 |
| 3321 buildUnnamed1111() { | 3321 buildUnnamed831() { |
| 3322 var o = new core.List<api.EventTag>(); | 3322 var o = new core.List<api.EventTag>(); |
| 3323 o.add(buildEventTag()); | 3323 o.add(buildEventTag()); |
| 3324 o.add(buildEventTag()); | 3324 o.add(buildEventTag()); |
| 3325 return o; | 3325 return o; |
| 3326 } | 3326 } |
| 3327 | 3327 |
| 3328 checkUnnamed1111(core.List<api.EventTag> o) { | 3328 checkUnnamed831(core.List<api.EventTag> o) { |
| 3329 unittest.expect(o, unittest.hasLength(2)); | 3329 unittest.expect(o, unittest.hasLength(2)); |
| 3330 checkEventTag(o[0]); | 3330 checkEventTag(o[0]); |
| 3331 checkEventTag(o[1]); | 3331 checkEventTag(o[1]); |
| 3332 } | 3332 } |
| 3333 | 3333 |
| 3334 core.int buildCounterEventTagsListResponse = 0; | 3334 core.int buildCounterEventTagsListResponse = 0; |
| 3335 buildEventTagsListResponse() { | 3335 buildEventTagsListResponse() { |
| 3336 var o = new api.EventTagsListResponse(); | 3336 var o = new api.EventTagsListResponse(); |
| 3337 buildCounterEventTagsListResponse++; | 3337 buildCounterEventTagsListResponse++; |
| 3338 if (buildCounterEventTagsListResponse < 3) { | 3338 if (buildCounterEventTagsListResponse < 3) { |
| 3339 o.eventTags = buildUnnamed1111(); | 3339 o.eventTags = buildUnnamed831(); |
| 3340 o.kind = "foo"; | 3340 o.kind = "foo"; |
| 3341 } | 3341 } |
| 3342 buildCounterEventTagsListResponse--; | 3342 buildCounterEventTagsListResponse--; |
| 3343 return o; | 3343 return o; |
| 3344 } | 3344 } |
| 3345 | 3345 |
| 3346 checkEventTagsListResponse(api.EventTagsListResponse o) { | 3346 checkEventTagsListResponse(api.EventTagsListResponse o) { |
| 3347 buildCounterEventTagsListResponse++; | 3347 buildCounterEventTagsListResponse++; |
| 3348 if (buildCounterEventTagsListResponse < 3) { | 3348 if (buildCounterEventTagsListResponse < 3) { |
| 3349 checkUnnamed1111(o.eventTags); | 3349 checkUnnamed831(o.eventTags); |
| 3350 unittest.expect(o.kind, unittest.equals('foo')); | 3350 unittest.expect(o.kind, unittest.equals('foo')); |
| 3351 } | 3351 } |
| 3352 buildCounterEventTagsListResponse--; | 3352 buildCounterEventTagsListResponse--; |
| 3353 } | 3353 } |
| 3354 | 3354 |
| 3355 core.int buildCounterFileUrls = 0; | 3355 core.int buildCounterFileUrls = 0; |
| 3356 buildFileUrls() { | 3356 buildFileUrls() { |
| 3357 var o = new api.FileUrls(); | 3357 var o = new api.FileUrls(); |
| 3358 buildCounterFileUrls++; | 3358 buildCounterFileUrls++; |
| 3359 if (buildCounterFileUrls < 3) { | 3359 if (buildCounterFileUrls < 3) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3403 unittest.expect(o.id, unittest.equals('foo')); | 3403 unittest.expect(o.id, unittest.equals('foo')); |
| 3404 unittest.expect(o.kind, unittest.equals('foo')); | 3404 unittest.expect(o.kind, unittest.equals('foo')); |
| 3405 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); | 3405 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); |
| 3406 unittest.expect(o.reportId, unittest.equals('foo')); | 3406 unittest.expect(o.reportId, unittest.equals('foo')); |
| 3407 unittest.expect(o.status, unittest.equals('foo')); | 3407 unittest.expect(o.status, unittest.equals('foo')); |
| 3408 checkFileUrls(o.urls); | 3408 checkFileUrls(o.urls); |
| 3409 } | 3409 } |
| 3410 buildCounterFile--; | 3410 buildCounterFile--; |
| 3411 } | 3411 } |
| 3412 | 3412 |
| 3413 buildUnnamed1112() { | 3413 buildUnnamed832() { |
| 3414 var o = new core.List<api.File>(); | 3414 var o = new core.List<api.File>(); |
| 3415 o.add(buildFile()); | 3415 o.add(buildFile()); |
| 3416 o.add(buildFile()); | 3416 o.add(buildFile()); |
| 3417 return o; | 3417 return o; |
| 3418 } | 3418 } |
| 3419 | 3419 |
| 3420 checkUnnamed1112(core.List<api.File> o) { | 3420 checkUnnamed832(core.List<api.File> o) { |
| 3421 unittest.expect(o, unittest.hasLength(2)); | 3421 unittest.expect(o, unittest.hasLength(2)); |
| 3422 checkFile(o[0]); | 3422 checkFile(o[0]); |
| 3423 checkFile(o[1]); | 3423 checkFile(o[1]); |
| 3424 } | 3424 } |
| 3425 | 3425 |
| 3426 core.int buildCounterFileList = 0; | 3426 core.int buildCounterFileList = 0; |
| 3427 buildFileList() { | 3427 buildFileList() { |
| 3428 var o = new api.FileList(); | 3428 var o = new api.FileList(); |
| 3429 buildCounterFileList++; | 3429 buildCounterFileList++; |
| 3430 if (buildCounterFileList < 3) { | 3430 if (buildCounterFileList < 3) { |
| 3431 o.etag = "foo"; | 3431 o.etag = "foo"; |
| 3432 o.items = buildUnnamed1112(); | 3432 o.items = buildUnnamed832(); |
| 3433 o.kind = "foo"; | 3433 o.kind = "foo"; |
| 3434 o.nextPageToken = "foo"; | 3434 o.nextPageToken = "foo"; |
| 3435 } | 3435 } |
| 3436 buildCounterFileList--; | 3436 buildCounterFileList--; |
| 3437 return o; | 3437 return o; |
| 3438 } | 3438 } |
| 3439 | 3439 |
| 3440 checkFileList(api.FileList o) { | 3440 checkFileList(api.FileList o) { |
| 3441 buildCounterFileList++; | 3441 buildCounterFileList++; |
| 3442 if (buildCounterFileList < 3) { | 3442 if (buildCounterFileList < 3) { |
| 3443 unittest.expect(o.etag, unittest.equals('foo')); | 3443 unittest.expect(o.etag, unittest.equals('foo')); |
| 3444 checkUnnamed1112(o.items); | 3444 checkUnnamed832(o.items); |
| 3445 unittest.expect(o.kind, unittest.equals('foo')); | 3445 unittest.expect(o.kind, unittest.equals('foo')); |
| 3446 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3446 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3447 } | 3447 } |
| 3448 buildCounterFileList--; | 3448 buildCounterFileList--; |
| 3449 } | 3449 } |
| 3450 | 3450 |
| 3451 core.int buildCounterFlight = 0; | 3451 core.int buildCounterFlight = 0; |
| 3452 buildFlight() { | 3452 buildFlight() { |
| 3453 var o = new api.Flight(); | 3453 var o = new api.Flight(); |
| 3454 buildCounterFlight++; | 3454 buildCounterFlight++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3487 | 3487 |
| 3488 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { | 3488 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { |
| 3489 buildCounterFloodlightActivitiesGenerateTagResponse++; | 3489 buildCounterFloodlightActivitiesGenerateTagResponse++; |
| 3490 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { | 3490 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { |
| 3491 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); | 3491 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); |
| 3492 unittest.expect(o.kind, unittest.equals('foo')); | 3492 unittest.expect(o.kind, unittest.equals('foo')); |
| 3493 } | 3493 } |
| 3494 buildCounterFloodlightActivitiesGenerateTagResponse--; | 3494 buildCounterFloodlightActivitiesGenerateTagResponse--; |
| 3495 } | 3495 } |
| 3496 | 3496 |
| 3497 buildUnnamed1113() { | 3497 buildUnnamed833() { |
| 3498 var o = new core.List<api.FloodlightActivity>(); | 3498 var o = new core.List<api.FloodlightActivity>(); |
| 3499 o.add(buildFloodlightActivity()); | 3499 o.add(buildFloodlightActivity()); |
| 3500 o.add(buildFloodlightActivity()); | 3500 o.add(buildFloodlightActivity()); |
| 3501 return o; | 3501 return o; |
| 3502 } | 3502 } |
| 3503 | 3503 |
| 3504 checkUnnamed1113(core.List<api.FloodlightActivity> o) { | 3504 checkUnnamed833(core.List<api.FloodlightActivity> o) { |
| 3505 unittest.expect(o, unittest.hasLength(2)); | 3505 unittest.expect(o, unittest.hasLength(2)); |
| 3506 checkFloodlightActivity(o[0]); | 3506 checkFloodlightActivity(o[0]); |
| 3507 checkFloodlightActivity(o[1]); | 3507 checkFloodlightActivity(o[1]); |
| 3508 } | 3508 } |
| 3509 | 3509 |
| 3510 core.int buildCounterFloodlightActivitiesListResponse = 0; | 3510 core.int buildCounterFloodlightActivitiesListResponse = 0; |
| 3511 buildFloodlightActivitiesListResponse() { | 3511 buildFloodlightActivitiesListResponse() { |
| 3512 var o = new api.FloodlightActivitiesListResponse(); | 3512 var o = new api.FloodlightActivitiesListResponse(); |
| 3513 buildCounterFloodlightActivitiesListResponse++; | 3513 buildCounterFloodlightActivitiesListResponse++; |
| 3514 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3514 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3515 o.floodlightActivities = buildUnnamed1113(); | 3515 o.floodlightActivities = buildUnnamed833(); |
| 3516 o.kind = "foo"; | 3516 o.kind = "foo"; |
| 3517 o.nextPageToken = "foo"; | 3517 o.nextPageToken = "foo"; |
| 3518 } | 3518 } |
| 3519 buildCounterFloodlightActivitiesListResponse--; | 3519 buildCounterFloodlightActivitiesListResponse--; |
| 3520 return o; | 3520 return o; |
| 3521 } | 3521 } |
| 3522 | 3522 |
| 3523 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { | 3523 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { |
| 3524 buildCounterFloodlightActivitiesListResponse++; | 3524 buildCounterFloodlightActivitiesListResponse++; |
| 3525 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3525 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3526 checkUnnamed1113(o.floodlightActivities); | 3526 checkUnnamed833(o.floodlightActivities); |
| 3527 unittest.expect(o.kind, unittest.equals('foo')); | 3527 unittest.expect(o.kind, unittest.equals('foo')); |
| 3528 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3528 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3529 } | 3529 } |
| 3530 buildCounterFloodlightActivitiesListResponse--; | 3530 buildCounterFloodlightActivitiesListResponse--; |
| 3531 } | 3531 } |
| 3532 | 3532 |
| 3533 buildUnnamed1114() { | 3533 buildUnnamed834() { |
| 3534 var o = new core.List<api.FloodlightActivityDynamicTag>(); | 3534 var o = new core.List<api.FloodlightActivityDynamicTag>(); |
| 3535 o.add(buildFloodlightActivityDynamicTag()); | 3535 o.add(buildFloodlightActivityDynamicTag()); |
| 3536 o.add(buildFloodlightActivityDynamicTag()); | 3536 o.add(buildFloodlightActivityDynamicTag()); |
| 3537 return o; | 3537 return o; |
| 3538 } | 3538 } |
| 3539 | 3539 |
| 3540 checkUnnamed1114(core.List<api.FloodlightActivityDynamicTag> o) { | 3540 checkUnnamed834(core.List<api.FloodlightActivityDynamicTag> o) { |
| 3541 unittest.expect(o, unittest.hasLength(2)); | 3541 unittest.expect(o, unittest.hasLength(2)); |
| 3542 checkFloodlightActivityDynamicTag(o[0]); | 3542 checkFloodlightActivityDynamicTag(o[0]); |
| 3543 checkFloodlightActivityDynamicTag(o[1]); | 3543 checkFloodlightActivityDynamicTag(o[1]); |
| 3544 } | 3544 } |
| 3545 | 3545 |
| 3546 buildUnnamed1115() { | 3546 buildUnnamed835() { |
| 3547 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); | 3547 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); |
| 3548 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3548 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3549 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3549 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3550 return o; | 3550 return o; |
| 3551 } | 3551 } |
| 3552 | 3552 |
| 3553 checkUnnamed1115(core.List<api.FloodlightActivityPublisherDynamicTag> o) { | 3553 checkUnnamed835(core.List<api.FloodlightActivityPublisherDynamicTag> o) { |
| 3554 unittest.expect(o, unittest.hasLength(2)); | 3554 unittest.expect(o, unittest.hasLength(2)); |
| 3555 checkFloodlightActivityPublisherDynamicTag(o[0]); | 3555 checkFloodlightActivityPublisherDynamicTag(o[0]); |
| 3556 checkFloodlightActivityPublisherDynamicTag(o[1]); | 3556 checkFloodlightActivityPublisherDynamicTag(o[1]); |
| 3557 } | 3557 } |
| 3558 | 3558 |
| 3559 buildUnnamed1116() { | 3559 buildUnnamed836() { |
| 3560 var o = new core.List<core.String>(); | 3560 var o = new core.List<core.String>(); |
| 3561 o.add("foo"); | 3561 o.add("foo"); |
| 3562 o.add("foo"); | 3562 o.add("foo"); |
| 3563 return o; | 3563 return o; |
| 3564 } | 3564 } |
| 3565 | 3565 |
| 3566 checkUnnamed1116(core.List<core.String> o) { | 3566 checkUnnamed836(core.List<core.String> o) { |
| 3567 unittest.expect(o, unittest.hasLength(2)); | 3567 unittest.expect(o, unittest.hasLength(2)); |
| 3568 unittest.expect(o[0], unittest.equals('foo')); | 3568 unittest.expect(o[0], unittest.equals('foo')); |
| 3569 unittest.expect(o[1], unittest.equals('foo')); | 3569 unittest.expect(o[1], unittest.equals('foo')); |
| 3570 } | 3570 } |
| 3571 | 3571 |
| 3572 core.int buildCounterFloodlightActivity = 0; | 3572 core.int buildCounterFloodlightActivity = 0; |
| 3573 buildFloodlightActivity() { | 3573 buildFloodlightActivity() { |
| 3574 var o = new api.FloodlightActivity(); | 3574 var o = new api.FloodlightActivity(); |
| 3575 buildCounterFloodlightActivity++; | 3575 buildCounterFloodlightActivity++; |
| 3576 if (buildCounterFloodlightActivity < 3) { | 3576 if (buildCounterFloodlightActivity < 3) { |
| 3577 o.accountId = "foo"; | 3577 o.accountId = "foo"; |
| 3578 o.advertiserId = "foo"; | 3578 o.advertiserId = "foo"; |
| 3579 o.advertiserIdDimensionValue = buildDimensionValue(); | 3579 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3580 o.cacheBustingType = "foo"; | 3580 o.cacheBustingType = "foo"; |
| 3581 o.countingMethod = "foo"; | 3581 o.countingMethod = "foo"; |
| 3582 o.defaultTags = buildUnnamed1114(); | 3582 o.defaultTags = buildUnnamed834(); |
| 3583 o.expectedUrl = "foo"; | 3583 o.expectedUrl = "foo"; |
| 3584 o.floodlightActivityGroupId = "foo"; | 3584 o.floodlightActivityGroupId = "foo"; |
| 3585 o.floodlightActivityGroupName = "foo"; | 3585 o.floodlightActivityGroupName = "foo"; |
| 3586 o.floodlightActivityGroupTagString = "foo"; | 3586 o.floodlightActivityGroupTagString = "foo"; |
| 3587 o.floodlightActivityGroupType = "foo"; | 3587 o.floodlightActivityGroupType = "foo"; |
| 3588 o.floodlightConfigurationId = "foo"; | 3588 o.floodlightConfigurationId = "foo"; |
| 3589 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); | 3589 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); |
| 3590 o.hidden = true; | 3590 o.hidden = true; |
| 3591 o.id = "foo"; | 3591 o.id = "foo"; |
| 3592 o.idDimensionValue = buildDimensionValue(); | 3592 o.idDimensionValue = buildDimensionValue(); |
| 3593 o.imageTagEnabled = true; | 3593 o.imageTagEnabled = true; |
| 3594 o.kind = "foo"; | 3594 o.kind = "foo"; |
| 3595 o.name = "foo"; | 3595 o.name = "foo"; |
| 3596 o.notes = "foo"; | 3596 o.notes = "foo"; |
| 3597 o.publisherTags = buildUnnamed1115(); | 3597 o.publisherTags = buildUnnamed835(); |
| 3598 o.secure = true; | 3598 o.secure = true; |
| 3599 o.sslCompliant = true; | 3599 o.sslCompliant = true; |
| 3600 o.sslRequired = true; | 3600 o.sslRequired = true; |
| 3601 o.subaccountId = "foo"; | 3601 o.subaccountId = "foo"; |
| 3602 o.tagFormat = "foo"; | 3602 o.tagFormat = "foo"; |
| 3603 o.tagString = "foo"; | 3603 o.tagString = "foo"; |
| 3604 o.userDefinedVariableTypes = buildUnnamed1116(); | 3604 o.userDefinedVariableTypes = buildUnnamed836(); |
| 3605 } | 3605 } |
| 3606 buildCounterFloodlightActivity--; | 3606 buildCounterFloodlightActivity--; |
| 3607 return o; | 3607 return o; |
| 3608 } | 3608 } |
| 3609 | 3609 |
| 3610 checkFloodlightActivity(api.FloodlightActivity o) { | 3610 checkFloodlightActivity(api.FloodlightActivity o) { |
| 3611 buildCounterFloodlightActivity++; | 3611 buildCounterFloodlightActivity++; |
| 3612 if (buildCounterFloodlightActivity < 3) { | 3612 if (buildCounterFloodlightActivity < 3) { |
| 3613 unittest.expect(o.accountId, unittest.equals('foo')); | 3613 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3614 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3614 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3615 checkDimensionValue(o.advertiserIdDimensionValue); | 3615 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3616 unittest.expect(o.cacheBustingType, unittest.equals('foo')); | 3616 unittest.expect(o.cacheBustingType, unittest.equals('foo')); |
| 3617 unittest.expect(o.countingMethod, unittest.equals('foo')); | 3617 unittest.expect(o.countingMethod, unittest.equals('foo')); |
| 3618 checkUnnamed1114(o.defaultTags); | 3618 checkUnnamed834(o.defaultTags); |
| 3619 unittest.expect(o.expectedUrl, unittest.equals('foo')); | 3619 unittest.expect(o.expectedUrl, unittest.equals('foo')); |
| 3620 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); | 3620 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); |
| 3621 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); | 3621 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); |
| 3622 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); | 3622 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); |
| 3623 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); | 3623 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); |
| 3624 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 3624 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
| 3625 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); | 3625 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); |
| 3626 unittest.expect(o.hidden, unittest.isTrue); | 3626 unittest.expect(o.hidden, unittest.isTrue); |
| 3627 unittest.expect(o.id, unittest.equals('foo')); | 3627 unittest.expect(o.id, unittest.equals('foo')); |
| 3628 checkDimensionValue(o.idDimensionValue); | 3628 checkDimensionValue(o.idDimensionValue); |
| 3629 unittest.expect(o.imageTagEnabled, unittest.isTrue); | 3629 unittest.expect(o.imageTagEnabled, unittest.isTrue); |
| 3630 unittest.expect(o.kind, unittest.equals('foo')); | 3630 unittest.expect(o.kind, unittest.equals('foo')); |
| 3631 unittest.expect(o.name, unittest.equals('foo')); | 3631 unittest.expect(o.name, unittest.equals('foo')); |
| 3632 unittest.expect(o.notes, unittest.equals('foo')); | 3632 unittest.expect(o.notes, unittest.equals('foo')); |
| 3633 checkUnnamed1115(o.publisherTags); | 3633 checkUnnamed835(o.publisherTags); |
| 3634 unittest.expect(o.secure, unittest.isTrue); | 3634 unittest.expect(o.secure, unittest.isTrue); |
| 3635 unittest.expect(o.sslCompliant, unittest.isTrue); | 3635 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3636 unittest.expect(o.sslRequired, unittest.isTrue); | 3636 unittest.expect(o.sslRequired, unittest.isTrue); |
| 3637 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3637 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3638 unittest.expect(o.tagFormat, unittest.equals('foo')); | 3638 unittest.expect(o.tagFormat, unittest.equals('foo')); |
| 3639 unittest.expect(o.tagString, unittest.equals('foo')); | 3639 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3640 checkUnnamed1116(o.userDefinedVariableTypes); | 3640 checkUnnamed836(o.userDefinedVariableTypes); |
| 3641 } | 3641 } |
| 3642 buildCounterFloodlightActivity--; | 3642 buildCounterFloodlightActivity--; |
| 3643 } | 3643 } |
| 3644 | 3644 |
| 3645 core.int buildCounterFloodlightActivityDynamicTag = 0; | 3645 core.int buildCounterFloodlightActivityDynamicTag = 0; |
| 3646 buildFloodlightActivityDynamicTag() { | 3646 buildFloodlightActivityDynamicTag() { |
| 3647 var o = new api.FloodlightActivityDynamicTag(); | 3647 var o = new api.FloodlightActivityDynamicTag(); |
| 3648 buildCounterFloodlightActivityDynamicTag++; | 3648 buildCounterFloodlightActivityDynamicTag++; |
| 3649 if (buildCounterFloodlightActivityDynamicTag < 3) { | 3649 if (buildCounterFloodlightActivityDynamicTag < 3) { |
| 3650 o.id = "foo"; | 3650 o.id = "foo"; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3699 checkDimensionValue(o.idDimensionValue); | 3699 checkDimensionValue(o.idDimensionValue); |
| 3700 unittest.expect(o.kind, unittest.equals('foo')); | 3700 unittest.expect(o.kind, unittest.equals('foo')); |
| 3701 unittest.expect(o.name, unittest.equals('foo')); | 3701 unittest.expect(o.name, unittest.equals('foo')); |
| 3702 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3702 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3703 unittest.expect(o.tagString, unittest.equals('foo')); | 3703 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3704 unittest.expect(o.type, unittest.equals('foo')); | 3704 unittest.expect(o.type, unittest.equals('foo')); |
| 3705 } | 3705 } |
| 3706 buildCounterFloodlightActivityGroup--; | 3706 buildCounterFloodlightActivityGroup--; |
| 3707 } | 3707 } |
| 3708 | 3708 |
| 3709 buildUnnamed1117() { | 3709 buildUnnamed837() { |
| 3710 var o = new core.List<api.FloodlightActivityGroup>(); | 3710 var o = new core.List<api.FloodlightActivityGroup>(); |
| 3711 o.add(buildFloodlightActivityGroup()); | 3711 o.add(buildFloodlightActivityGroup()); |
| 3712 o.add(buildFloodlightActivityGroup()); | 3712 o.add(buildFloodlightActivityGroup()); |
| 3713 return o; | 3713 return o; |
| 3714 } | 3714 } |
| 3715 | 3715 |
| 3716 checkUnnamed1117(core.List<api.FloodlightActivityGroup> o) { | 3716 checkUnnamed837(core.List<api.FloodlightActivityGroup> o) { |
| 3717 unittest.expect(o, unittest.hasLength(2)); | 3717 unittest.expect(o, unittest.hasLength(2)); |
| 3718 checkFloodlightActivityGroup(o[0]); | 3718 checkFloodlightActivityGroup(o[0]); |
| 3719 checkFloodlightActivityGroup(o[1]); | 3719 checkFloodlightActivityGroup(o[1]); |
| 3720 } | 3720 } |
| 3721 | 3721 |
| 3722 core.int buildCounterFloodlightActivityGroupsListResponse = 0; | 3722 core.int buildCounterFloodlightActivityGroupsListResponse = 0; |
| 3723 buildFloodlightActivityGroupsListResponse() { | 3723 buildFloodlightActivityGroupsListResponse() { |
| 3724 var o = new api.FloodlightActivityGroupsListResponse(); | 3724 var o = new api.FloodlightActivityGroupsListResponse(); |
| 3725 buildCounterFloodlightActivityGroupsListResponse++; | 3725 buildCounterFloodlightActivityGroupsListResponse++; |
| 3726 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3726 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 3727 o.floodlightActivityGroups = buildUnnamed1117(); | 3727 o.floodlightActivityGroups = buildUnnamed837(); |
| 3728 o.kind = "foo"; | 3728 o.kind = "foo"; |
| 3729 o.nextPageToken = "foo"; | 3729 o.nextPageToken = "foo"; |
| 3730 } | 3730 } |
| 3731 buildCounterFloodlightActivityGroupsListResponse--; | 3731 buildCounterFloodlightActivityGroupsListResponse--; |
| 3732 return o; | 3732 return o; |
| 3733 } | 3733 } |
| 3734 | 3734 |
| 3735 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { | 3735 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { |
| 3736 buildCounterFloodlightActivityGroupsListResponse++; | 3736 buildCounterFloodlightActivityGroupsListResponse++; |
| 3737 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3737 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 3738 checkUnnamed1117(o.floodlightActivityGroups); | 3738 checkUnnamed837(o.floodlightActivityGroups); |
| 3739 unittest.expect(o.kind, unittest.equals('foo')); | 3739 unittest.expect(o.kind, unittest.equals('foo')); |
| 3740 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3740 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3741 } | 3741 } |
| 3742 buildCounterFloodlightActivityGroupsListResponse--; | 3742 buildCounterFloodlightActivityGroupsListResponse--; |
| 3743 } | 3743 } |
| 3744 | 3744 |
| 3745 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; | 3745 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; |
| 3746 buildFloodlightActivityPublisherDynamicTag() { | 3746 buildFloodlightActivityPublisherDynamicTag() { |
| 3747 var o = new api.FloodlightActivityPublisherDynamicTag(); | 3747 var o = new api.FloodlightActivityPublisherDynamicTag(); |
| 3748 buildCounterFloodlightActivityPublisherDynamicTag++; | 3748 buildCounterFloodlightActivityPublisherDynamicTag++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 3764 unittest.expect(o.clickThrough, unittest.isTrue); | 3764 unittest.expect(o.clickThrough, unittest.isTrue); |
| 3765 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 3765 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 3766 checkFloodlightActivityDynamicTag(o.dynamicTag); | 3766 checkFloodlightActivityDynamicTag(o.dynamicTag); |
| 3767 unittest.expect(o.siteId, unittest.equals('foo')); | 3767 unittest.expect(o.siteId, unittest.equals('foo')); |
| 3768 checkDimensionValue(o.siteIdDimensionValue); | 3768 checkDimensionValue(o.siteIdDimensionValue); |
| 3769 unittest.expect(o.viewThrough, unittest.isTrue); | 3769 unittest.expect(o.viewThrough, unittest.isTrue); |
| 3770 } | 3770 } |
| 3771 buildCounterFloodlightActivityPublisherDynamicTag--; | 3771 buildCounterFloodlightActivityPublisherDynamicTag--; |
| 3772 } | 3772 } |
| 3773 | 3773 |
| 3774 buildUnnamed1118() { | 3774 buildUnnamed838() { |
| 3775 var o = new core.List<core.String>(); | 3775 var o = new core.List<core.String>(); |
| 3776 o.add("foo"); | 3776 o.add("foo"); |
| 3777 o.add("foo"); | 3777 o.add("foo"); |
| 3778 return o; | 3778 return o; |
| 3779 } | 3779 } |
| 3780 | 3780 |
| 3781 checkUnnamed1118(core.List<core.String> o) { | 3781 checkUnnamed838(core.List<core.String> o) { |
| 3782 unittest.expect(o, unittest.hasLength(2)); | 3782 unittest.expect(o, unittest.hasLength(2)); |
| 3783 unittest.expect(o[0], unittest.equals('foo')); | 3783 unittest.expect(o[0], unittest.equals('foo')); |
| 3784 unittest.expect(o[1], unittest.equals('foo')); | 3784 unittest.expect(o[1], unittest.equals('foo')); |
| 3785 } | 3785 } |
| 3786 | 3786 |
| 3787 buildUnnamed1119() { | 3787 buildUnnamed839() { |
| 3788 var o = new core.List<api.UserDefinedVariableConfiguration>(); | 3788 var o = new core.List<api.UserDefinedVariableConfiguration>(); |
| 3789 o.add(buildUserDefinedVariableConfiguration()); | 3789 o.add(buildUserDefinedVariableConfiguration()); |
| 3790 o.add(buildUserDefinedVariableConfiguration()); | 3790 o.add(buildUserDefinedVariableConfiguration()); |
| 3791 return o; | 3791 return o; |
| 3792 } | 3792 } |
| 3793 | 3793 |
| 3794 checkUnnamed1119(core.List<api.UserDefinedVariableConfiguration> o) { | 3794 checkUnnamed839(core.List<api.UserDefinedVariableConfiguration> o) { |
| 3795 unittest.expect(o, unittest.hasLength(2)); | 3795 unittest.expect(o, unittest.hasLength(2)); |
| 3796 checkUserDefinedVariableConfiguration(o[0]); | 3796 checkUserDefinedVariableConfiguration(o[0]); |
| 3797 checkUserDefinedVariableConfiguration(o[1]); | 3797 checkUserDefinedVariableConfiguration(o[1]); |
| 3798 } | 3798 } |
| 3799 | 3799 |
| 3800 core.int buildCounterFloodlightConfiguration = 0; | 3800 core.int buildCounterFloodlightConfiguration = 0; |
| 3801 buildFloodlightConfiguration() { | 3801 buildFloodlightConfiguration() { |
| 3802 var o = new api.FloodlightConfiguration(); | 3802 var o = new api.FloodlightConfiguration(); |
| 3803 buildCounterFloodlightConfiguration++; | 3803 buildCounterFloodlightConfiguration++; |
| 3804 if (buildCounterFloodlightConfiguration < 3) { | 3804 if (buildCounterFloodlightConfiguration < 3) { |
| 3805 o.accountId = "foo"; | 3805 o.accountId = "foo"; |
| 3806 o.advertiserId = "foo"; | 3806 o.advertiserId = "foo"; |
| 3807 o.advertiserIdDimensionValue = buildDimensionValue(); | 3807 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3808 o.analyticsDataSharingEnabled = true; | 3808 o.analyticsDataSharingEnabled = true; |
| 3809 o.exposureToConversionEnabled = true; | 3809 o.exposureToConversionEnabled = true; |
| 3810 o.firstDayOfWeek = "foo"; | 3810 o.firstDayOfWeek = "foo"; |
| 3811 o.id = "foo"; | 3811 o.id = "foo"; |
| 3812 o.idDimensionValue = buildDimensionValue(); | 3812 o.idDimensionValue = buildDimensionValue(); |
| 3813 o.kind = "foo"; | 3813 o.kind = "foo"; |
| 3814 o.lookbackConfiguration = buildLookbackConfiguration(); | 3814 o.lookbackConfiguration = buildLookbackConfiguration(); |
| 3815 o.naturalSearchConversionAttributionOption = "foo"; | 3815 o.naturalSearchConversionAttributionOption = "foo"; |
| 3816 o.omnitureSettings = buildOmnitureSettings(); | 3816 o.omnitureSettings = buildOmnitureSettings(); |
| 3817 o.sslRequired = true; | 3817 o.sslRequired = true; |
| 3818 o.standardVariableTypes = buildUnnamed1118(); | 3818 o.standardVariableTypes = buildUnnamed838(); |
| 3819 o.subaccountId = "foo"; | 3819 o.subaccountId = "foo"; |
| 3820 o.tagSettings = buildTagSettings(); | 3820 o.tagSettings = buildTagSettings(); |
| 3821 o.userDefinedVariableConfigurations = buildUnnamed1119(); | 3821 o.userDefinedVariableConfigurations = buildUnnamed839(); |
| 3822 } | 3822 } |
| 3823 buildCounterFloodlightConfiguration--; | 3823 buildCounterFloodlightConfiguration--; |
| 3824 return o; | 3824 return o; |
| 3825 } | 3825 } |
| 3826 | 3826 |
| 3827 checkFloodlightConfiguration(api.FloodlightConfiguration o) { | 3827 checkFloodlightConfiguration(api.FloodlightConfiguration o) { |
| 3828 buildCounterFloodlightConfiguration++; | 3828 buildCounterFloodlightConfiguration++; |
| 3829 if (buildCounterFloodlightConfiguration < 3) { | 3829 if (buildCounterFloodlightConfiguration < 3) { |
| 3830 unittest.expect(o.accountId, unittest.equals('foo')); | 3830 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3831 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3831 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3832 checkDimensionValue(o.advertiserIdDimensionValue); | 3832 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3833 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); | 3833 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); |
| 3834 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); | 3834 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); |
| 3835 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); | 3835 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); |
| 3836 unittest.expect(o.id, unittest.equals('foo')); | 3836 unittest.expect(o.id, unittest.equals('foo')); |
| 3837 checkDimensionValue(o.idDimensionValue); | 3837 checkDimensionValue(o.idDimensionValue); |
| 3838 unittest.expect(o.kind, unittest.equals('foo')); | 3838 unittest.expect(o.kind, unittest.equals('foo')); |
| 3839 checkLookbackConfiguration(o.lookbackConfiguration); | 3839 checkLookbackConfiguration(o.lookbackConfiguration); |
| 3840 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); | 3840 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); |
| 3841 checkOmnitureSettings(o.omnitureSettings); | 3841 checkOmnitureSettings(o.omnitureSettings); |
| 3842 unittest.expect(o.sslRequired, unittest.isTrue); | 3842 unittest.expect(o.sslRequired, unittest.isTrue); |
| 3843 checkUnnamed1118(o.standardVariableTypes); | 3843 checkUnnamed838(o.standardVariableTypes); |
| 3844 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3844 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3845 checkTagSettings(o.tagSettings); | 3845 checkTagSettings(o.tagSettings); |
| 3846 checkUnnamed1119(o.userDefinedVariableConfigurations); | 3846 checkUnnamed839(o.userDefinedVariableConfigurations); |
| 3847 } | 3847 } |
| 3848 buildCounterFloodlightConfiguration--; | 3848 buildCounterFloodlightConfiguration--; |
| 3849 } | 3849 } |
| 3850 | 3850 |
| 3851 buildUnnamed1120() { | 3851 buildUnnamed840() { |
| 3852 var o = new core.List<api.FloodlightConfiguration>(); | 3852 var o = new core.List<api.FloodlightConfiguration>(); |
| 3853 o.add(buildFloodlightConfiguration()); | 3853 o.add(buildFloodlightConfiguration()); |
| 3854 o.add(buildFloodlightConfiguration()); | 3854 o.add(buildFloodlightConfiguration()); |
| 3855 return o; | 3855 return o; |
| 3856 } | 3856 } |
| 3857 | 3857 |
| 3858 checkUnnamed1120(core.List<api.FloodlightConfiguration> o) { | 3858 checkUnnamed840(core.List<api.FloodlightConfiguration> o) { |
| 3859 unittest.expect(o, unittest.hasLength(2)); | 3859 unittest.expect(o, unittest.hasLength(2)); |
| 3860 checkFloodlightConfiguration(o[0]); | 3860 checkFloodlightConfiguration(o[0]); |
| 3861 checkFloodlightConfiguration(o[1]); | 3861 checkFloodlightConfiguration(o[1]); |
| 3862 } | 3862 } |
| 3863 | 3863 |
| 3864 core.int buildCounterFloodlightConfigurationsListResponse = 0; | 3864 core.int buildCounterFloodlightConfigurationsListResponse = 0; |
| 3865 buildFloodlightConfigurationsListResponse() { | 3865 buildFloodlightConfigurationsListResponse() { |
| 3866 var o = new api.FloodlightConfigurationsListResponse(); | 3866 var o = new api.FloodlightConfigurationsListResponse(); |
| 3867 buildCounterFloodlightConfigurationsListResponse++; | 3867 buildCounterFloodlightConfigurationsListResponse++; |
| 3868 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3868 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 3869 o.floodlightConfigurations = buildUnnamed1120(); | 3869 o.floodlightConfigurations = buildUnnamed840(); |
| 3870 o.kind = "foo"; | 3870 o.kind = "foo"; |
| 3871 } | 3871 } |
| 3872 buildCounterFloodlightConfigurationsListResponse--; | 3872 buildCounterFloodlightConfigurationsListResponse--; |
| 3873 return o; | 3873 return o; |
| 3874 } | 3874 } |
| 3875 | 3875 |
| 3876 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { | 3876 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { |
| 3877 buildCounterFloodlightConfigurationsListResponse++; | 3877 buildCounterFloodlightConfigurationsListResponse++; |
| 3878 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3878 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 3879 checkUnnamed1120(o.floodlightConfigurations); | 3879 checkUnnamed840(o.floodlightConfigurations); |
| 3880 unittest.expect(o.kind, unittest.equals('foo')); | 3880 unittest.expect(o.kind, unittest.equals('foo')); |
| 3881 } | 3881 } |
| 3882 buildCounterFloodlightConfigurationsListResponse--; | 3882 buildCounterFloodlightConfigurationsListResponse--; |
| 3883 } | 3883 } |
| 3884 | 3884 |
| 3885 buildUnnamed1121() { | 3885 buildUnnamed841() { |
| 3886 var o = new core.List<api.Dimension>(); | 3886 var o = new core.List<api.Dimension>(); |
| 3887 o.add(buildDimension()); | 3887 o.add(buildDimension()); |
| 3888 o.add(buildDimension()); | 3888 o.add(buildDimension()); |
| 3889 return o; | 3889 return o; |
| 3890 } | 3890 } |
| 3891 | 3891 |
| 3892 checkUnnamed1121(core.List<api.Dimension> o) { | 3892 checkUnnamed841(core.List<api.Dimension> o) { |
| 3893 unittest.expect(o, unittest.hasLength(2)); | 3893 unittest.expect(o, unittest.hasLength(2)); |
| 3894 checkDimension(o[0]); | 3894 checkDimension(o[0]); |
| 3895 checkDimension(o[1]); | 3895 checkDimension(o[1]); |
| 3896 } | 3896 } |
| 3897 | 3897 |
| 3898 buildUnnamed1122() { | 3898 buildUnnamed842() { |
| 3899 var o = new core.List<api.Dimension>(); | 3899 var o = new core.List<api.Dimension>(); |
| 3900 o.add(buildDimension()); | 3900 o.add(buildDimension()); |
| 3901 o.add(buildDimension()); | 3901 o.add(buildDimension()); |
| 3902 return o; | 3902 return o; |
| 3903 } | 3903 } |
| 3904 | 3904 |
| 3905 checkUnnamed1122(core.List<api.Dimension> o) { | 3905 checkUnnamed842(core.List<api.Dimension> o) { |
| 3906 unittest.expect(o, unittest.hasLength(2)); | 3906 unittest.expect(o, unittest.hasLength(2)); |
| 3907 checkDimension(o[0]); | 3907 checkDimension(o[0]); |
| 3908 checkDimension(o[1]); | 3908 checkDimension(o[1]); |
| 3909 } | 3909 } |
| 3910 | 3910 |
| 3911 buildUnnamed1123() { | 3911 buildUnnamed843() { |
| 3912 var o = new core.List<api.Metric>(); | 3912 var o = new core.List<api.Metric>(); |
| 3913 o.add(buildMetric()); | 3913 o.add(buildMetric()); |
| 3914 o.add(buildMetric()); | 3914 o.add(buildMetric()); |
| 3915 return o; | 3915 return o; |
| 3916 } | 3916 } |
| 3917 | 3917 |
| 3918 checkUnnamed1123(core.List<api.Metric> o) { | 3918 checkUnnamed843(core.List<api.Metric> o) { |
| 3919 unittest.expect(o, unittest.hasLength(2)); | 3919 unittest.expect(o, unittest.hasLength(2)); |
| 3920 checkMetric(o[0]); | 3920 checkMetric(o[0]); |
| 3921 checkMetric(o[1]); | 3921 checkMetric(o[1]); |
| 3922 } | 3922 } |
| 3923 | 3923 |
| 3924 core.int buildCounterFloodlightReportCompatibleFields = 0; | 3924 core.int buildCounterFloodlightReportCompatibleFields = 0; |
| 3925 buildFloodlightReportCompatibleFields() { | 3925 buildFloodlightReportCompatibleFields() { |
| 3926 var o = new api.FloodlightReportCompatibleFields(); | 3926 var o = new api.FloodlightReportCompatibleFields(); |
| 3927 buildCounterFloodlightReportCompatibleFields++; | 3927 buildCounterFloodlightReportCompatibleFields++; |
| 3928 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3928 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 3929 o.dimensionFilters = buildUnnamed1121(); | 3929 o.dimensionFilters = buildUnnamed841(); |
| 3930 o.dimensions = buildUnnamed1122(); | 3930 o.dimensions = buildUnnamed842(); |
| 3931 o.kind = "foo"; | 3931 o.kind = "foo"; |
| 3932 o.metrics = buildUnnamed1123(); | 3932 o.metrics = buildUnnamed843(); |
| 3933 } | 3933 } |
| 3934 buildCounterFloodlightReportCompatibleFields--; | 3934 buildCounterFloodlightReportCompatibleFields--; |
| 3935 return o; | 3935 return o; |
| 3936 } | 3936 } |
| 3937 | 3937 |
| 3938 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { | 3938 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { |
| 3939 buildCounterFloodlightReportCompatibleFields++; | 3939 buildCounterFloodlightReportCompatibleFields++; |
| 3940 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3940 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 3941 checkUnnamed1121(o.dimensionFilters); | 3941 checkUnnamed841(o.dimensionFilters); |
| 3942 checkUnnamed1122(o.dimensions); | 3942 checkUnnamed842(o.dimensions); |
| 3943 unittest.expect(o.kind, unittest.equals('foo')); | 3943 unittest.expect(o.kind, unittest.equals('foo')); |
| 3944 checkUnnamed1123(o.metrics); | 3944 checkUnnamed843(o.metrics); |
| 3945 } | 3945 } |
| 3946 buildCounterFloodlightReportCompatibleFields--; | 3946 buildCounterFloodlightReportCompatibleFields--; |
| 3947 } | 3947 } |
| 3948 | 3948 |
| 3949 core.int buildCounterFrequencyCap = 0; | 3949 core.int buildCounterFrequencyCap = 0; |
| 3950 buildFrequencyCap() { | 3950 buildFrequencyCap() { |
| 3951 var o = new api.FrequencyCap(); | 3951 var o = new api.FrequencyCap(); |
| 3952 buildCounterFrequencyCap++; | 3952 buildCounterFrequencyCap++; |
| 3953 if (buildCounterFrequencyCap < 3) { | 3953 if (buildCounterFrequencyCap < 3) { |
| 3954 o.duration = "foo"; | 3954 o.duration = "foo"; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3987 if (buildCounterFsCommand < 3) { | 3987 if (buildCounterFsCommand < 3) { |
| 3988 unittest.expect(o.left, unittest.equals(42)); | 3988 unittest.expect(o.left, unittest.equals(42)); |
| 3989 unittest.expect(o.positionOption, unittest.equals('foo')); | 3989 unittest.expect(o.positionOption, unittest.equals('foo')); |
| 3990 unittest.expect(o.top, unittest.equals(42)); | 3990 unittest.expect(o.top, unittest.equals(42)); |
| 3991 unittest.expect(o.windowHeight, unittest.equals(42)); | 3991 unittest.expect(o.windowHeight, unittest.equals(42)); |
| 3992 unittest.expect(o.windowWidth, unittest.equals(42)); | 3992 unittest.expect(o.windowWidth, unittest.equals(42)); |
| 3993 } | 3993 } |
| 3994 buildCounterFsCommand--; | 3994 buildCounterFsCommand--; |
| 3995 } | 3995 } |
| 3996 | 3996 |
| 3997 buildUnnamed1124() { | 3997 buildUnnamed844() { |
| 3998 var o = new core.List<api.City>(); | 3998 var o = new core.List<api.City>(); |
| 3999 o.add(buildCity()); | 3999 o.add(buildCity()); |
| 4000 o.add(buildCity()); | 4000 o.add(buildCity()); |
| 4001 return o; | 4001 return o; |
| 4002 } | 4002 } |
| 4003 | 4003 |
| 4004 checkUnnamed1124(core.List<api.City> o) { | 4004 checkUnnamed844(core.List<api.City> o) { |
| 4005 unittest.expect(o, unittest.hasLength(2)); | 4005 unittest.expect(o, unittest.hasLength(2)); |
| 4006 checkCity(o[0]); | 4006 checkCity(o[0]); |
| 4007 checkCity(o[1]); | 4007 checkCity(o[1]); |
| 4008 } | 4008 } |
| 4009 | 4009 |
| 4010 buildUnnamed1125() { | 4010 buildUnnamed845() { |
| 4011 var o = new core.List<api.Country>(); | 4011 var o = new core.List<api.Country>(); |
| 4012 o.add(buildCountry()); | 4012 o.add(buildCountry()); |
| 4013 o.add(buildCountry()); | 4013 o.add(buildCountry()); |
| 4014 return o; | 4014 return o; |
| 4015 } | 4015 } |
| 4016 | 4016 |
| 4017 checkUnnamed1125(core.List<api.Country> o) { | 4017 checkUnnamed845(core.List<api.Country> o) { |
| 4018 unittest.expect(o, unittest.hasLength(2)); | 4018 unittest.expect(o, unittest.hasLength(2)); |
| 4019 checkCountry(o[0]); | 4019 checkCountry(o[0]); |
| 4020 checkCountry(o[1]); | 4020 checkCountry(o[1]); |
| 4021 } | 4021 } |
| 4022 | 4022 |
| 4023 buildUnnamed1126() { | 4023 buildUnnamed846() { |
| 4024 var o = new core.List<api.Metro>(); | 4024 var o = new core.List<api.Metro>(); |
| 4025 o.add(buildMetro()); | 4025 o.add(buildMetro()); |
| 4026 o.add(buildMetro()); | 4026 o.add(buildMetro()); |
| 4027 return o; | 4027 return o; |
| 4028 } | 4028 } |
| 4029 | 4029 |
| 4030 checkUnnamed1126(core.List<api.Metro> o) { | 4030 checkUnnamed846(core.List<api.Metro> o) { |
| 4031 unittest.expect(o, unittest.hasLength(2)); | 4031 unittest.expect(o, unittest.hasLength(2)); |
| 4032 checkMetro(o[0]); | 4032 checkMetro(o[0]); |
| 4033 checkMetro(o[1]); | 4033 checkMetro(o[1]); |
| 4034 } | 4034 } |
| 4035 | 4035 |
| 4036 buildUnnamed1127() { | 4036 buildUnnamed847() { |
| 4037 var o = new core.List<api.PostalCode>(); | 4037 var o = new core.List<api.PostalCode>(); |
| 4038 o.add(buildPostalCode()); | 4038 o.add(buildPostalCode()); |
| 4039 o.add(buildPostalCode()); | 4039 o.add(buildPostalCode()); |
| 4040 return o; | 4040 return o; |
| 4041 } | 4041 } |
| 4042 | 4042 |
| 4043 checkUnnamed1127(core.List<api.PostalCode> o) { | 4043 checkUnnamed847(core.List<api.PostalCode> o) { |
| 4044 unittest.expect(o, unittest.hasLength(2)); | 4044 unittest.expect(o, unittest.hasLength(2)); |
| 4045 checkPostalCode(o[0]); | 4045 checkPostalCode(o[0]); |
| 4046 checkPostalCode(o[1]); | 4046 checkPostalCode(o[1]); |
| 4047 } | 4047 } |
| 4048 | 4048 |
| 4049 buildUnnamed1128() { | 4049 buildUnnamed848() { |
| 4050 var o = new core.List<api.Region>(); | 4050 var o = new core.List<api.Region>(); |
| 4051 o.add(buildRegion()); | 4051 o.add(buildRegion()); |
| 4052 o.add(buildRegion()); | 4052 o.add(buildRegion()); |
| 4053 return o; | 4053 return o; |
| 4054 } | 4054 } |
| 4055 | 4055 |
| 4056 checkUnnamed1128(core.List<api.Region> o) { | 4056 checkUnnamed848(core.List<api.Region> o) { |
| 4057 unittest.expect(o, unittest.hasLength(2)); | 4057 unittest.expect(o, unittest.hasLength(2)); |
| 4058 checkRegion(o[0]); | 4058 checkRegion(o[0]); |
| 4059 checkRegion(o[1]); | 4059 checkRegion(o[1]); |
| 4060 } | 4060 } |
| 4061 | 4061 |
| 4062 core.int buildCounterGeoTargeting = 0; | 4062 core.int buildCounterGeoTargeting = 0; |
| 4063 buildGeoTargeting() { | 4063 buildGeoTargeting() { |
| 4064 var o = new api.GeoTargeting(); | 4064 var o = new api.GeoTargeting(); |
| 4065 buildCounterGeoTargeting++; | 4065 buildCounterGeoTargeting++; |
| 4066 if (buildCounterGeoTargeting < 3) { | 4066 if (buildCounterGeoTargeting < 3) { |
| 4067 o.cities = buildUnnamed1124(); | 4067 o.cities = buildUnnamed844(); |
| 4068 o.countries = buildUnnamed1125(); | 4068 o.countries = buildUnnamed845(); |
| 4069 o.excludeCountries = true; | 4069 o.excludeCountries = true; |
| 4070 o.metros = buildUnnamed1126(); | 4070 o.metros = buildUnnamed846(); |
| 4071 o.postalCodes = buildUnnamed1127(); | 4071 o.postalCodes = buildUnnamed847(); |
| 4072 o.regions = buildUnnamed1128(); | 4072 o.regions = buildUnnamed848(); |
| 4073 } | 4073 } |
| 4074 buildCounterGeoTargeting--; | 4074 buildCounterGeoTargeting--; |
| 4075 return o; | 4075 return o; |
| 4076 } | 4076 } |
| 4077 | 4077 |
| 4078 checkGeoTargeting(api.GeoTargeting o) { | 4078 checkGeoTargeting(api.GeoTargeting o) { |
| 4079 buildCounterGeoTargeting++; | 4079 buildCounterGeoTargeting++; |
| 4080 if (buildCounterGeoTargeting < 3) { | 4080 if (buildCounterGeoTargeting < 3) { |
| 4081 checkUnnamed1124(o.cities); | 4081 checkUnnamed844(o.cities); |
| 4082 checkUnnamed1125(o.countries); | 4082 checkUnnamed845(o.countries); |
| 4083 unittest.expect(o.excludeCountries, unittest.isTrue); | 4083 unittest.expect(o.excludeCountries, unittest.isTrue); |
| 4084 checkUnnamed1126(o.metros); | 4084 checkUnnamed846(o.metros); |
| 4085 checkUnnamed1127(o.postalCodes); | 4085 checkUnnamed847(o.postalCodes); |
| 4086 checkUnnamed1128(o.regions); | 4086 checkUnnamed848(o.regions); |
| 4087 } | 4087 } |
| 4088 buildCounterGeoTargeting--; | 4088 buildCounterGeoTargeting--; |
| 4089 } | 4089 } |
| 4090 | 4090 |
| 4091 buildUnnamed1129() { | 4091 buildUnnamed849() { |
| 4092 var o = new core.List<api.AdSlot>(); | 4092 var o = new core.List<api.AdSlot>(); |
| 4093 o.add(buildAdSlot()); | 4093 o.add(buildAdSlot()); |
| 4094 o.add(buildAdSlot()); | 4094 o.add(buildAdSlot()); |
| 4095 return o; | 4095 return o; |
| 4096 } | 4096 } |
| 4097 | 4097 |
| 4098 checkUnnamed1129(core.List<api.AdSlot> o) { | 4098 checkUnnamed849(core.List<api.AdSlot> o) { |
| 4099 unittest.expect(o, unittest.hasLength(2)); | 4099 unittest.expect(o, unittest.hasLength(2)); |
| 4100 checkAdSlot(o[0]); | 4100 checkAdSlot(o[0]); |
| 4101 checkAdSlot(o[1]); | 4101 checkAdSlot(o[1]); |
| 4102 } | 4102 } |
| 4103 | 4103 |
| 4104 core.int buildCounterInventoryItem = 0; | 4104 core.int buildCounterInventoryItem = 0; |
| 4105 buildInventoryItem() { | 4105 buildInventoryItem() { |
| 4106 var o = new api.InventoryItem(); | 4106 var o = new api.InventoryItem(); |
| 4107 buildCounterInventoryItem++; | 4107 buildCounterInventoryItem++; |
| 4108 if (buildCounterInventoryItem < 3) { | 4108 if (buildCounterInventoryItem < 3) { |
| 4109 o.accountId = "foo"; | 4109 o.accountId = "foo"; |
| 4110 o.adSlots = buildUnnamed1129(); | 4110 o.adSlots = buildUnnamed849(); |
| 4111 o.advertiserId = "foo"; | 4111 o.advertiserId = "foo"; |
| 4112 o.contentCategoryId = "foo"; | 4112 o.contentCategoryId = "foo"; |
| 4113 o.estimatedClickThroughRate = "foo"; | 4113 o.estimatedClickThroughRate = "foo"; |
| 4114 o.estimatedConversionRate = "foo"; | 4114 o.estimatedConversionRate = "foo"; |
| 4115 o.id = "foo"; | 4115 o.id = "foo"; |
| 4116 o.inPlan = true; | 4116 o.inPlan = true; |
| 4117 o.kind = "foo"; | 4117 o.kind = "foo"; |
| 4118 o.lastModifiedInfo = buildLastModifiedInfo(); | 4118 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4119 o.name = "foo"; | 4119 o.name = "foo"; |
| 4120 o.negotiationChannelId = "foo"; | 4120 o.negotiationChannelId = "foo"; |
| 4121 o.orderId = "foo"; | 4121 o.orderId = "foo"; |
| 4122 o.placementStrategyId = "foo"; | 4122 o.placementStrategyId = "foo"; |
| 4123 o.pricing = buildPricing(); | 4123 o.pricing = buildPricing(); |
| 4124 o.projectId = "foo"; | 4124 o.projectId = "foo"; |
| 4125 o.rfpId = "foo"; | 4125 o.rfpId = "foo"; |
| 4126 o.siteId = "foo"; | 4126 o.siteId = "foo"; |
| 4127 o.subaccountId = "foo"; | 4127 o.subaccountId = "foo"; |
| 4128 } | 4128 } |
| 4129 buildCounterInventoryItem--; | 4129 buildCounterInventoryItem--; |
| 4130 return o; | 4130 return o; |
| 4131 } | 4131 } |
| 4132 | 4132 |
| 4133 checkInventoryItem(api.InventoryItem o) { | 4133 checkInventoryItem(api.InventoryItem o) { |
| 4134 buildCounterInventoryItem++; | 4134 buildCounterInventoryItem++; |
| 4135 if (buildCounterInventoryItem < 3) { | 4135 if (buildCounterInventoryItem < 3) { |
| 4136 unittest.expect(o.accountId, unittest.equals('foo')); | 4136 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4137 checkUnnamed1129(o.adSlots); | 4137 checkUnnamed849(o.adSlots); |
| 4138 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4138 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4139 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 4139 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 4140 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); | 4140 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); |
| 4141 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); | 4141 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); |
| 4142 unittest.expect(o.id, unittest.equals('foo')); | 4142 unittest.expect(o.id, unittest.equals('foo')); |
| 4143 unittest.expect(o.inPlan, unittest.isTrue); | 4143 unittest.expect(o.inPlan, unittest.isTrue); |
| 4144 unittest.expect(o.kind, unittest.equals('foo')); | 4144 unittest.expect(o.kind, unittest.equals('foo')); |
| 4145 checkLastModifiedInfo(o.lastModifiedInfo); | 4145 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4146 unittest.expect(o.name, unittest.equals('foo')); | 4146 unittest.expect(o.name, unittest.equals('foo')); |
| 4147 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); | 4147 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); |
| 4148 unittest.expect(o.orderId, unittest.equals('foo')); | 4148 unittest.expect(o.orderId, unittest.equals('foo')); |
| 4149 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 4149 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 4150 checkPricing(o.pricing); | 4150 checkPricing(o.pricing); |
| 4151 unittest.expect(o.projectId, unittest.equals('foo')); | 4151 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4152 unittest.expect(o.rfpId, unittest.equals('foo')); | 4152 unittest.expect(o.rfpId, unittest.equals('foo')); |
| 4153 unittest.expect(o.siteId, unittest.equals('foo')); | 4153 unittest.expect(o.siteId, unittest.equals('foo')); |
| 4154 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4154 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4155 } | 4155 } |
| 4156 buildCounterInventoryItem--; | 4156 buildCounterInventoryItem--; |
| 4157 } | 4157 } |
| 4158 | 4158 |
| 4159 buildUnnamed1130() { | 4159 buildUnnamed850() { |
| 4160 var o = new core.List<api.InventoryItem>(); | 4160 var o = new core.List<api.InventoryItem>(); |
| 4161 o.add(buildInventoryItem()); | 4161 o.add(buildInventoryItem()); |
| 4162 o.add(buildInventoryItem()); | 4162 o.add(buildInventoryItem()); |
| 4163 return o; | 4163 return o; |
| 4164 } | 4164 } |
| 4165 | 4165 |
| 4166 checkUnnamed1130(core.List<api.InventoryItem> o) { | 4166 checkUnnamed850(core.List<api.InventoryItem> o) { |
| 4167 unittest.expect(o, unittest.hasLength(2)); | 4167 unittest.expect(o, unittest.hasLength(2)); |
| 4168 checkInventoryItem(o[0]); | 4168 checkInventoryItem(o[0]); |
| 4169 checkInventoryItem(o[1]); | 4169 checkInventoryItem(o[1]); |
| 4170 } | 4170 } |
| 4171 | 4171 |
| 4172 core.int buildCounterInventoryItemsListResponse = 0; | 4172 core.int buildCounterInventoryItemsListResponse = 0; |
| 4173 buildInventoryItemsListResponse() { | 4173 buildInventoryItemsListResponse() { |
| 4174 var o = new api.InventoryItemsListResponse(); | 4174 var o = new api.InventoryItemsListResponse(); |
| 4175 buildCounterInventoryItemsListResponse++; | 4175 buildCounterInventoryItemsListResponse++; |
| 4176 if (buildCounterInventoryItemsListResponse < 3) { | 4176 if (buildCounterInventoryItemsListResponse < 3) { |
| 4177 o.inventoryItems = buildUnnamed1130(); | 4177 o.inventoryItems = buildUnnamed850(); |
| 4178 o.kind = "foo"; | 4178 o.kind = "foo"; |
| 4179 o.nextPageToken = "foo"; | 4179 o.nextPageToken = "foo"; |
| 4180 } | 4180 } |
| 4181 buildCounterInventoryItemsListResponse--; | 4181 buildCounterInventoryItemsListResponse--; |
| 4182 return o; | 4182 return o; |
| 4183 } | 4183 } |
| 4184 | 4184 |
| 4185 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { | 4185 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { |
| 4186 buildCounterInventoryItemsListResponse++; | 4186 buildCounterInventoryItemsListResponse++; |
| 4187 if (buildCounterInventoryItemsListResponse < 3) { | 4187 if (buildCounterInventoryItemsListResponse < 3) { |
| 4188 checkUnnamed1130(o.inventoryItems); | 4188 checkUnnamed850(o.inventoryItems); |
| 4189 unittest.expect(o.kind, unittest.equals('foo')); | 4189 unittest.expect(o.kind, unittest.equals('foo')); |
| 4190 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4190 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4191 } | 4191 } |
| 4192 buildCounterInventoryItemsListResponse--; | 4192 buildCounterInventoryItemsListResponse--; |
| 4193 } | 4193 } |
| 4194 | 4194 |
| 4195 core.int buildCounterKeyValueTargetingExpression = 0; | 4195 core.int buildCounterKeyValueTargetingExpression = 0; |
| 4196 buildKeyValueTargetingExpression() { | 4196 buildKeyValueTargetingExpression() { |
| 4197 var o = new api.KeyValueTargetingExpression(); | 4197 var o = new api.KeyValueTargetingExpression(); |
| 4198 buildCounterKeyValueTargetingExpression++; | 4198 buildCounterKeyValueTargetingExpression++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4231 if (buildCounterLandingPage < 3) { | 4231 if (buildCounterLandingPage < 3) { |
| 4232 unittest.expect(o.default_, unittest.isTrue); | 4232 unittest.expect(o.default_, unittest.isTrue); |
| 4233 unittest.expect(o.id, unittest.equals('foo')); | 4233 unittest.expect(o.id, unittest.equals('foo')); |
| 4234 unittest.expect(o.kind, unittest.equals('foo')); | 4234 unittest.expect(o.kind, unittest.equals('foo')); |
| 4235 unittest.expect(o.name, unittest.equals('foo')); | 4235 unittest.expect(o.name, unittest.equals('foo')); |
| 4236 unittest.expect(o.url, unittest.equals('foo')); | 4236 unittest.expect(o.url, unittest.equals('foo')); |
| 4237 } | 4237 } |
| 4238 buildCounterLandingPage--; | 4238 buildCounterLandingPage--; |
| 4239 } | 4239 } |
| 4240 | 4240 |
| 4241 buildUnnamed1131() { | 4241 buildUnnamed851() { |
| 4242 var o = new core.List<api.LandingPage>(); | 4242 var o = new core.List<api.LandingPage>(); |
| 4243 o.add(buildLandingPage()); | 4243 o.add(buildLandingPage()); |
| 4244 o.add(buildLandingPage()); | 4244 o.add(buildLandingPage()); |
| 4245 return o; | 4245 return o; |
| 4246 } | 4246 } |
| 4247 | 4247 |
| 4248 checkUnnamed1131(core.List<api.LandingPage> o) { | 4248 checkUnnamed851(core.List<api.LandingPage> o) { |
| 4249 unittest.expect(o, unittest.hasLength(2)); | 4249 unittest.expect(o, unittest.hasLength(2)); |
| 4250 checkLandingPage(o[0]); | 4250 checkLandingPage(o[0]); |
| 4251 checkLandingPage(o[1]); | 4251 checkLandingPage(o[1]); |
| 4252 } | 4252 } |
| 4253 | 4253 |
| 4254 core.int buildCounterLandingPagesListResponse = 0; | 4254 core.int buildCounterLandingPagesListResponse = 0; |
| 4255 buildLandingPagesListResponse() { | 4255 buildLandingPagesListResponse() { |
| 4256 var o = new api.LandingPagesListResponse(); | 4256 var o = new api.LandingPagesListResponse(); |
| 4257 buildCounterLandingPagesListResponse++; | 4257 buildCounterLandingPagesListResponse++; |
| 4258 if (buildCounterLandingPagesListResponse < 3) { | 4258 if (buildCounterLandingPagesListResponse < 3) { |
| 4259 o.kind = "foo"; | 4259 o.kind = "foo"; |
| 4260 o.landingPages = buildUnnamed1131(); | 4260 o.landingPages = buildUnnamed851(); |
| 4261 } | 4261 } |
| 4262 buildCounterLandingPagesListResponse--; | 4262 buildCounterLandingPagesListResponse--; |
| 4263 return o; | 4263 return o; |
| 4264 } | 4264 } |
| 4265 | 4265 |
| 4266 checkLandingPagesListResponse(api.LandingPagesListResponse o) { | 4266 checkLandingPagesListResponse(api.LandingPagesListResponse o) { |
| 4267 buildCounterLandingPagesListResponse++; | 4267 buildCounterLandingPagesListResponse++; |
| 4268 if (buildCounterLandingPagesListResponse < 3) { | 4268 if (buildCounterLandingPagesListResponse < 3) { |
| 4269 unittest.expect(o.kind, unittest.equals('foo')); | 4269 unittest.expect(o.kind, unittest.equals('foo')); |
| 4270 checkUnnamed1131(o.landingPages); | 4270 checkUnnamed851(o.landingPages); |
| 4271 } | 4271 } |
| 4272 buildCounterLandingPagesListResponse--; | 4272 buildCounterLandingPagesListResponse--; |
| 4273 } | 4273 } |
| 4274 | 4274 |
| 4275 core.int buildCounterLastModifiedInfo = 0; | 4275 core.int buildCounterLastModifiedInfo = 0; |
| 4276 buildLastModifiedInfo() { | 4276 buildLastModifiedInfo() { |
| 4277 var o = new api.LastModifiedInfo(); | 4277 var o = new api.LastModifiedInfo(); |
| 4278 buildCounterLastModifiedInfo++; | 4278 buildCounterLastModifiedInfo++; |
| 4279 if (buildCounterLastModifiedInfo < 3) { | 4279 if (buildCounterLastModifiedInfo < 3) { |
| 4280 o.time = "foo"; | 4280 o.time = "foo"; |
| 4281 } | 4281 } |
| 4282 buildCounterLastModifiedInfo--; | 4282 buildCounterLastModifiedInfo--; |
| 4283 return o; | 4283 return o; |
| 4284 } | 4284 } |
| 4285 | 4285 |
| 4286 checkLastModifiedInfo(api.LastModifiedInfo o) { | 4286 checkLastModifiedInfo(api.LastModifiedInfo o) { |
| 4287 buildCounterLastModifiedInfo++; | 4287 buildCounterLastModifiedInfo++; |
| 4288 if (buildCounterLastModifiedInfo < 3) { | 4288 if (buildCounterLastModifiedInfo < 3) { |
| 4289 unittest.expect(o.time, unittest.equals('foo')); | 4289 unittest.expect(o.time, unittest.equals('foo')); |
| 4290 } | 4290 } |
| 4291 buildCounterLastModifiedInfo--; | 4291 buildCounterLastModifiedInfo--; |
| 4292 } | 4292 } |
| 4293 | 4293 |
| 4294 buildUnnamed1132() { | 4294 buildUnnamed852() { |
| 4295 var o = new core.List<api.ListPopulationTerm>(); | 4295 var o = new core.List<api.ListPopulationTerm>(); |
| 4296 o.add(buildListPopulationTerm()); | 4296 o.add(buildListPopulationTerm()); |
| 4297 o.add(buildListPopulationTerm()); | 4297 o.add(buildListPopulationTerm()); |
| 4298 return o; | 4298 return o; |
| 4299 } | 4299 } |
| 4300 | 4300 |
| 4301 checkUnnamed1132(core.List<api.ListPopulationTerm> o) { | 4301 checkUnnamed852(core.List<api.ListPopulationTerm> o) { |
| 4302 unittest.expect(o, unittest.hasLength(2)); | 4302 unittest.expect(o, unittest.hasLength(2)); |
| 4303 checkListPopulationTerm(o[0]); | 4303 checkListPopulationTerm(o[0]); |
| 4304 checkListPopulationTerm(o[1]); | 4304 checkListPopulationTerm(o[1]); |
| 4305 } | 4305 } |
| 4306 | 4306 |
| 4307 core.int buildCounterListPopulationClause = 0; | 4307 core.int buildCounterListPopulationClause = 0; |
| 4308 buildListPopulationClause() { | 4308 buildListPopulationClause() { |
| 4309 var o = new api.ListPopulationClause(); | 4309 var o = new api.ListPopulationClause(); |
| 4310 buildCounterListPopulationClause++; | 4310 buildCounterListPopulationClause++; |
| 4311 if (buildCounterListPopulationClause < 3) { | 4311 if (buildCounterListPopulationClause < 3) { |
| 4312 o.terms = buildUnnamed1132(); | 4312 o.terms = buildUnnamed852(); |
| 4313 } | 4313 } |
| 4314 buildCounterListPopulationClause--; | 4314 buildCounterListPopulationClause--; |
| 4315 return o; | 4315 return o; |
| 4316 } | 4316 } |
| 4317 | 4317 |
| 4318 checkListPopulationClause(api.ListPopulationClause o) { | 4318 checkListPopulationClause(api.ListPopulationClause o) { |
| 4319 buildCounterListPopulationClause++; | 4319 buildCounterListPopulationClause++; |
| 4320 if (buildCounterListPopulationClause < 3) { | 4320 if (buildCounterListPopulationClause < 3) { |
| 4321 checkUnnamed1132(o.terms); | 4321 checkUnnamed852(o.terms); |
| 4322 } | 4322 } |
| 4323 buildCounterListPopulationClause--; | 4323 buildCounterListPopulationClause--; |
| 4324 } | 4324 } |
| 4325 | 4325 |
| 4326 buildUnnamed1133() { | 4326 buildUnnamed853() { |
| 4327 var o = new core.List<api.ListPopulationClause>(); | 4327 var o = new core.List<api.ListPopulationClause>(); |
| 4328 o.add(buildListPopulationClause()); | 4328 o.add(buildListPopulationClause()); |
| 4329 o.add(buildListPopulationClause()); | 4329 o.add(buildListPopulationClause()); |
| 4330 return o; | 4330 return o; |
| 4331 } | 4331 } |
| 4332 | 4332 |
| 4333 checkUnnamed1133(core.List<api.ListPopulationClause> o) { | 4333 checkUnnamed853(core.List<api.ListPopulationClause> o) { |
| 4334 unittest.expect(o, unittest.hasLength(2)); | 4334 unittest.expect(o, unittest.hasLength(2)); |
| 4335 checkListPopulationClause(o[0]); | 4335 checkListPopulationClause(o[0]); |
| 4336 checkListPopulationClause(o[1]); | 4336 checkListPopulationClause(o[1]); |
| 4337 } | 4337 } |
| 4338 | 4338 |
| 4339 core.int buildCounterListPopulationRule = 0; | 4339 core.int buildCounterListPopulationRule = 0; |
| 4340 buildListPopulationRule() { | 4340 buildListPopulationRule() { |
| 4341 var o = new api.ListPopulationRule(); | 4341 var o = new api.ListPopulationRule(); |
| 4342 buildCounterListPopulationRule++; | 4342 buildCounterListPopulationRule++; |
| 4343 if (buildCounterListPopulationRule < 3) { | 4343 if (buildCounterListPopulationRule < 3) { |
| 4344 o.floodlightActivityId = "foo"; | 4344 o.floodlightActivityId = "foo"; |
| 4345 o.floodlightActivityName = "foo"; | 4345 o.floodlightActivityName = "foo"; |
| 4346 o.listPopulationClauses = buildUnnamed1133(); | 4346 o.listPopulationClauses = buildUnnamed853(); |
| 4347 } | 4347 } |
| 4348 buildCounterListPopulationRule--; | 4348 buildCounterListPopulationRule--; |
| 4349 return o; | 4349 return o; |
| 4350 } | 4350 } |
| 4351 | 4351 |
| 4352 checkListPopulationRule(api.ListPopulationRule o) { | 4352 checkListPopulationRule(api.ListPopulationRule o) { |
| 4353 buildCounterListPopulationRule++; | 4353 buildCounterListPopulationRule++; |
| 4354 if (buildCounterListPopulationRule < 3) { | 4354 if (buildCounterListPopulationRule < 3) { |
| 4355 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4355 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4356 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); | 4356 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); |
| 4357 checkUnnamed1133(o.listPopulationClauses); | 4357 checkUnnamed853(o.listPopulationClauses); |
| 4358 } | 4358 } |
| 4359 buildCounterListPopulationRule--; | 4359 buildCounterListPopulationRule--; |
| 4360 } | 4360 } |
| 4361 | 4361 |
| 4362 core.int buildCounterListPopulationTerm = 0; | 4362 core.int buildCounterListPopulationTerm = 0; |
| 4363 buildListPopulationTerm() { | 4363 buildListPopulationTerm() { |
| 4364 var o = new api.ListPopulationTerm(); | 4364 var o = new api.ListPopulationTerm(); |
| 4365 buildCounterListPopulationTerm++; | 4365 buildCounterListPopulationTerm++; |
| 4366 if (buildCounterListPopulationTerm < 3) { | 4366 if (buildCounterListPopulationTerm < 3) { |
| 4367 o.contains = true; | 4367 o.contains = true; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4477 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4477 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4478 unittest.expect(o.dartId, unittest.equals('foo')); | 4478 unittest.expect(o.dartId, unittest.equals('foo')); |
| 4479 unittest.expect(o.dmaId, unittest.equals('foo')); | 4479 unittest.expect(o.dmaId, unittest.equals('foo')); |
| 4480 unittest.expect(o.kind, unittest.equals('foo')); | 4480 unittest.expect(o.kind, unittest.equals('foo')); |
| 4481 unittest.expect(o.metroCode, unittest.equals('foo')); | 4481 unittest.expect(o.metroCode, unittest.equals('foo')); |
| 4482 unittest.expect(o.name, unittest.equals('foo')); | 4482 unittest.expect(o.name, unittest.equals('foo')); |
| 4483 } | 4483 } |
| 4484 buildCounterMetro--; | 4484 buildCounterMetro--; |
| 4485 } | 4485 } |
| 4486 | 4486 |
| 4487 buildUnnamed1134() { | 4487 buildUnnamed854() { |
| 4488 var o = new core.List<api.Metro>(); | 4488 var o = new core.List<api.Metro>(); |
| 4489 o.add(buildMetro()); | 4489 o.add(buildMetro()); |
| 4490 o.add(buildMetro()); | 4490 o.add(buildMetro()); |
| 4491 return o; | 4491 return o; |
| 4492 } | 4492 } |
| 4493 | 4493 |
| 4494 checkUnnamed1134(core.List<api.Metro> o) { | 4494 checkUnnamed854(core.List<api.Metro> o) { |
| 4495 unittest.expect(o, unittest.hasLength(2)); | 4495 unittest.expect(o, unittest.hasLength(2)); |
| 4496 checkMetro(o[0]); | 4496 checkMetro(o[0]); |
| 4497 checkMetro(o[1]); | 4497 checkMetro(o[1]); |
| 4498 } | 4498 } |
| 4499 | 4499 |
| 4500 core.int buildCounterMetrosListResponse = 0; | 4500 core.int buildCounterMetrosListResponse = 0; |
| 4501 buildMetrosListResponse() { | 4501 buildMetrosListResponse() { |
| 4502 var o = new api.MetrosListResponse(); | 4502 var o = new api.MetrosListResponse(); |
| 4503 buildCounterMetrosListResponse++; | 4503 buildCounterMetrosListResponse++; |
| 4504 if (buildCounterMetrosListResponse < 3) { | 4504 if (buildCounterMetrosListResponse < 3) { |
| 4505 o.kind = "foo"; | 4505 o.kind = "foo"; |
| 4506 o.metros = buildUnnamed1134(); | 4506 o.metros = buildUnnamed854(); |
| 4507 } | 4507 } |
| 4508 buildCounterMetrosListResponse--; | 4508 buildCounterMetrosListResponse--; |
| 4509 return o; | 4509 return o; |
| 4510 } | 4510 } |
| 4511 | 4511 |
| 4512 checkMetrosListResponse(api.MetrosListResponse o) { | 4512 checkMetrosListResponse(api.MetrosListResponse o) { |
| 4513 buildCounterMetrosListResponse++; | 4513 buildCounterMetrosListResponse++; |
| 4514 if (buildCounterMetrosListResponse < 3) { | 4514 if (buildCounterMetrosListResponse < 3) { |
| 4515 unittest.expect(o.kind, unittest.equals('foo')); | 4515 unittest.expect(o.kind, unittest.equals('foo')); |
| 4516 checkUnnamed1134(o.metros); | 4516 checkUnnamed854(o.metros); |
| 4517 } | 4517 } |
| 4518 buildCounterMetrosListResponse--; | 4518 buildCounterMetrosListResponse--; |
| 4519 } | 4519 } |
| 4520 | 4520 |
| 4521 core.int buildCounterMobileCarrier = 0; | 4521 core.int buildCounterMobileCarrier = 0; |
| 4522 buildMobileCarrier() { | 4522 buildMobileCarrier() { |
| 4523 var o = new api.MobileCarrier(); | 4523 var o = new api.MobileCarrier(); |
| 4524 buildCounterMobileCarrier++; | 4524 buildCounterMobileCarrier++; |
| 4525 if (buildCounterMobileCarrier < 3) { | 4525 if (buildCounterMobileCarrier < 3) { |
| 4526 o.countryCode = "foo"; | 4526 o.countryCode = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4538 if (buildCounterMobileCarrier < 3) { | 4538 if (buildCounterMobileCarrier < 3) { |
| 4539 unittest.expect(o.countryCode, unittest.equals('foo')); | 4539 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 4540 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4540 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4541 unittest.expect(o.id, unittest.equals('foo')); | 4541 unittest.expect(o.id, unittest.equals('foo')); |
| 4542 unittest.expect(o.kind, unittest.equals('foo')); | 4542 unittest.expect(o.kind, unittest.equals('foo')); |
| 4543 unittest.expect(o.name, unittest.equals('foo')); | 4543 unittest.expect(o.name, unittest.equals('foo')); |
| 4544 } | 4544 } |
| 4545 buildCounterMobileCarrier--; | 4545 buildCounterMobileCarrier--; |
| 4546 } | 4546 } |
| 4547 | 4547 |
| 4548 buildUnnamed1135() { | 4548 buildUnnamed855() { |
| 4549 var o = new core.List<api.MobileCarrier>(); | 4549 var o = new core.List<api.MobileCarrier>(); |
| 4550 o.add(buildMobileCarrier()); | 4550 o.add(buildMobileCarrier()); |
| 4551 o.add(buildMobileCarrier()); | 4551 o.add(buildMobileCarrier()); |
| 4552 return o; | 4552 return o; |
| 4553 } | 4553 } |
| 4554 | 4554 |
| 4555 checkUnnamed1135(core.List<api.MobileCarrier> o) { | 4555 checkUnnamed855(core.List<api.MobileCarrier> o) { |
| 4556 unittest.expect(o, unittest.hasLength(2)); | 4556 unittest.expect(o, unittest.hasLength(2)); |
| 4557 checkMobileCarrier(o[0]); | 4557 checkMobileCarrier(o[0]); |
| 4558 checkMobileCarrier(o[1]); | 4558 checkMobileCarrier(o[1]); |
| 4559 } | 4559 } |
| 4560 | 4560 |
| 4561 core.int buildCounterMobileCarriersListResponse = 0; | 4561 core.int buildCounterMobileCarriersListResponse = 0; |
| 4562 buildMobileCarriersListResponse() { | 4562 buildMobileCarriersListResponse() { |
| 4563 var o = new api.MobileCarriersListResponse(); | 4563 var o = new api.MobileCarriersListResponse(); |
| 4564 buildCounterMobileCarriersListResponse++; | 4564 buildCounterMobileCarriersListResponse++; |
| 4565 if (buildCounterMobileCarriersListResponse < 3) { | 4565 if (buildCounterMobileCarriersListResponse < 3) { |
| 4566 o.kind = "foo"; | 4566 o.kind = "foo"; |
| 4567 o.mobileCarriers = buildUnnamed1135(); | 4567 o.mobileCarriers = buildUnnamed855(); |
| 4568 } | 4568 } |
| 4569 buildCounterMobileCarriersListResponse--; | 4569 buildCounterMobileCarriersListResponse--; |
| 4570 return o; | 4570 return o; |
| 4571 } | 4571 } |
| 4572 | 4572 |
| 4573 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { | 4573 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { |
| 4574 buildCounterMobileCarriersListResponse++; | 4574 buildCounterMobileCarriersListResponse++; |
| 4575 if (buildCounterMobileCarriersListResponse < 3) { | 4575 if (buildCounterMobileCarriersListResponse < 3) { |
| 4576 unittest.expect(o.kind, unittest.equals('foo')); | 4576 unittest.expect(o.kind, unittest.equals('foo')); |
| 4577 checkUnnamed1135(o.mobileCarriers); | 4577 checkUnnamed855(o.mobileCarriers); |
| 4578 } | 4578 } |
| 4579 buildCounterMobileCarriersListResponse--; | 4579 buildCounterMobileCarriersListResponse--; |
| 4580 } | 4580 } |
| 4581 | 4581 |
| 4582 buildUnnamed1136() { | 4582 buildUnnamed856() { |
| 4583 var o = new core.List<core.String>(); | 4583 var o = new core.List<core.String>(); |
| 4584 o.add("foo"); | 4584 o.add("foo"); |
| 4585 o.add("foo"); | 4585 o.add("foo"); |
| 4586 return o; | 4586 return o; |
| 4587 } | 4587 } |
| 4588 | 4588 |
| 4589 checkUnnamed1136(core.List<core.String> o) { | 4589 checkUnnamed856(core.List<core.String> o) { |
| 4590 unittest.expect(o, unittest.hasLength(2)); | 4590 unittest.expect(o, unittest.hasLength(2)); |
| 4591 unittest.expect(o[0], unittest.equals('foo')); | 4591 unittest.expect(o[0], unittest.equals('foo')); |
| 4592 unittest.expect(o[1], unittest.equals('foo')); | 4592 unittest.expect(o[1], unittest.equals('foo')); |
| 4593 } | 4593 } |
| 4594 | 4594 |
| 4595 core.int buildCounterObjectFilter = 0; | 4595 core.int buildCounterObjectFilter = 0; |
| 4596 buildObjectFilter() { | 4596 buildObjectFilter() { |
| 4597 var o = new api.ObjectFilter(); | 4597 var o = new api.ObjectFilter(); |
| 4598 buildCounterObjectFilter++; | 4598 buildCounterObjectFilter++; |
| 4599 if (buildCounterObjectFilter < 3) { | 4599 if (buildCounterObjectFilter < 3) { |
| 4600 o.kind = "foo"; | 4600 o.kind = "foo"; |
| 4601 o.objectIds = buildUnnamed1136(); | 4601 o.objectIds = buildUnnamed856(); |
| 4602 o.status = "foo"; | 4602 o.status = "foo"; |
| 4603 } | 4603 } |
| 4604 buildCounterObjectFilter--; | 4604 buildCounterObjectFilter--; |
| 4605 return o; | 4605 return o; |
| 4606 } | 4606 } |
| 4607 | 4607 |
| 4608 checkObjectFilter(api.ObjectFilter o) { | 4608 checkObjectFilter(api.ObjectFilter o) { |
| 4609 buildCounterObjectFilter++; | 4609 buildCounterObjectFilter++; |
| 4610 if (buildCounterObjectFilter < 3) { | 4610 if (buildCounterObjectFilter < 3) { |
| 4611 unittest.expect(o.kind, unittest.equals('foo')); | 4611 unittest.expect(o.kind, unittest.equals('foo')); |
| 4612 checkUnnamed1136(o.objectIds); | 4612 checkUnnamed856(o.objectIds); |
| 4613 unittest.expect(o.status, unittest.equals('foo')); | 4613 unittest.expect(o.status, unittest.equals('foo')); |
| 4614 } | 4614 } |
| 4615 buildCounterObjectFilter--; | 4615 buildCounterObjectFilter--; |
| 4616 } | 4616 } |
| 4617 | 4617 |
| 4618 core.int buildCounterOffsetPosition = 0; | 4618 core.int buildCounterOffsetPosition = 0; |
| 4619 buildOffsetPosition() { | 4619 buildOffsetPosition() { |
| 4620 var o = new api.OffsetPosition(); | 4620 var o = new api.OffsetPosition(); |
| 4621 buildCounterOffsetPosition++; | 4621 buildCounterOffsetPosition++; |
| 4622 if (buildCounterOffsetPosition < 3) { | 4622 if (buildCounterOffsetPosition < 3) { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4706 unittest.expect(o.id, unittest.equals('foo')); | 4706 unittest.expect(o.id, unittest.equals('foo')); |
| 4707 unittest.expect(o.kind, unittest.equals('foo')); | 4707 unittest.expect(o.kind, unittest.equals('foo')); |
| 4708 unittest.expect(o.majorVersion, unittest.equals('foo')); | 4708 unittest.expect(o.majorVersion, unittest.equals('foo')); |
| 4709 unittest.expect(o.minorVersion, unittest.equals('foo')); | 4709 unittest.expect(o.minorVersion, unittest.equals('foo')); |
| 4710 unittest.expect(o.name, unittest.equals('foo')); | 4710 unittest.expect(o.name, unittest.equals('foo')); |
| 4711 checkOperatingSystem(o.operatingSystem); | 4711 checkOperatingSystem(o.operatingSystem); |
| 4712 } | 4712 } |
| 4713 buildCounterOperatingSystemVersion--; | 4713 buildCounterOperatingSystemVersion--; |
| 4714 } | 4714 } |
| 4715 | 4715 |
| 4716 buildUnnamed1137() { | 4716 buildUnnamed857() { |
| 4717 var o = new core.List<api.OperatingSystemVersion>(); | 4717 var o = new core.List<api.OperatingSystemVersion>(); |
| 4718 o.add(buildOperatingSystemVersion()); | 4718 o.add(buildOperatingSystemVersion()); |
| 4719 o.add(buildOperatingSystemVersion()); | 4719 o.add(buildOperatingSystemVersion()); |
| 4720 return o; | 4720 return o; |
| 4721 } | 4721 } |
| 4722 | 4722 |
| 4723 checkUnnamed1137(core.List<api.OperatingSystemVersion> o) { | 4723 checkUnnamed857(core.List<api.OperatingSystemVersion> o) { |
| 4724 unittest.expect(o, unittest.hasLength(2)); | 4724 unittest.expect(o, unittest.hasLength(2)); |
| 4725 checkOperatingSystemVersion(o[0]); | 4725 checkOperatingSystemVersion(o[0]); |
| 4726 checkOperatingSystemVersion(o[1]); | 4726 checkOperatingSystemVersion(o[1]); |
| 4727 } | 4727 } |
| 4728 | 4728 |
| 4729 core.int buildCounterOperatingSystemVersionsListResponse = 0; | 4729 core.int buildCounterOperatingSystemVersionsListResponse = 0; |
| 4730 buildOperatingSystemVersionsListResponse() { | 4730 buildOperatingSystemVersionsListResponse() { |
| 4731 var o = new api.OperatingSystemVersionsListResponse(); | 4731 var o = new api.OperatingSystemVersionsListResponse(); |
| 4732 buildCounterOperatingSystemVersionsListResponse++; | 4732 buildCounterOperatingSystemVersionsListResponse++; |
| 4733 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4733 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 4734 o.kind = "foo"; | 4734 o.kind = "foo"; |
| 4735 o.operatingSystemVersions = buildUnnamed1137(); | 4735 o.operatingSystemVersions = buildUnnamed857(); |
| 4736 } | 4736 } |
| 4737 buildCounterOperatingSystemVersionsListResponse--; | 4737 buildCounterOperatingSystemVersionsListResponse--; |
| 4738 return o; | 4738 return o; |
| 4739 } | 4739 } |
| 4740 | 4740 |
| 4741 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { | 4741 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { |
| 4742 buildCounterOperatingSystemVersionsListResponse++; | 4742 buildCounterOperatingSystemVersionsListResponse++; |
| 4743 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4743 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 4744 unittest.expect(o.kind, unittest.equals('foo')); | 4744 unittest.expect(o.kind, unittest.equals('foo')); |
| 4745 checkUnnamed1137(o.operatingSystemVersions); | 4745 checkUnnamed857(o.operatingSystemVersions); |
| 4746 } | 4746 } |
| 4747 buildCounterOperatingSystemVersionsListResponse--; | 4747 buildCounterOperatingSystemVersionsListResponse--; |
| 4748 } | 4748 } |
| 4749 | 4749 |
| 4750 buildUnnamed1138() { | 4750 buildUnnamed858() { |
| 4751 var o = new core.List<api.OperatingSystem>(); | 4751 var o = new core.List<api.OperatingSystem>(); |
| 4752 o.add(buildOperatingSystem()); | 4752 o.add(buildOperatingSystem()); |
| 4753 o.add(buildOperatingSystem()); | 4753 o.add(buildOperatingSystem()); |
| 4754 return o; | 4754 return o; |
| 4755 } | 4755 } |
| 4756 | 4756 |
| 4757 checkUnnamed1138(core.List<api.OperatingSystem> o) { | 4757 checkUnnamed858(core.List<api.OperatingSystem> o) { |
| 4758 unittest.expect(o, unittest.hasLength(2)); | 4758 unittest.expect(o, unittest.hasLength(2)); |
| 4759 checkOperatingSystem(o[0]); | 4759 checkOperatingSystem(o[0]); |
| 4760 checkOperatingSystem(o[1]); | 4760 checkOperatingSystem(o[1]); |
| 4761 } | 4761 } |
| 4762 | 4762 |
| 4763 core.int buildCounterOperatingSystemsListResponse = 0; | 4763 core.int buildCounterOperatingSystemsListResponse = 0; |
| 4764 buildOperatingSystemsListResponse() { | 4764 buildOperatingSystemsListResponse() { |
| 4765 var o = new api.OperatingSystemsListResponse(); | 4765 var o = new api.OperatingSystemsListResponse(); |
| 4766 buildCounterOperatingSystemsListResponse++; | 4766 buildCounterOperatingSystemsListResponse++; |
| 4767 if (buildCounterOperatingSystemsListResponse < 3) { | 4767 if (buildCounterOperatingSystemsListResponse < 3) { |
| 4768 o.kind = "foo"; | 4768 o.kind = "foo"; |
| 4769 o.operatingSystems = buildUnnamed1138(); | 4769 o.operatingSystems = buildUnnamed858(); |
| 4770 } | 4770 } |
| 4771 buildCounterOperatingSystemsListResponse--; | 4771 buildCounterOperatingSystemsListResponse--; |
| 4772 return o; | 4772 return o; |
| 4773 } | 4773 } |
| 4774 | 4774 |
| 4775 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { | 4775 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { |
| 4776 buildCounterOperatingSystemsListResponse++; | 4776 buildCounterOperatingSystemsListResponse++; |
| 4777 if (buildCounterOperatingSystemsListResponse < 3) { | 4777 if (buildCounterOperatingSystemsListResponse < 3) { |
| 4778 unittest.expect(o.kind, unittest.equals('foo')); | 4778 unittest.expect(o.kind, unittest.equals('foo')); |
| 4779 checkUnnamed1138(o.operatingSystems); | 4779 checkUnnamed858(o.operatingSystems); |
| 4780 } | 4780 } |
| 4781 buildCounterOperatingSystemsListResponse--; | 4781 buildCounterOperatingSystemsListResponse--; |
| 4782 } | 4782 } |
| 4783 | 4783 |
| 4784 core.int buildCounterOptimizationActivity = 0; | 4784 core.int buildCounterOptimizationActivity = 0; |
| 4785 buildOptimizationActivity() { | 4785 buildOptimizationActivity() { |
| 4786 var o = new api.OptimizationActivity(); | 4786 var o = new api.OptimizationActivity(); |
| 4787 buildCounterOptimizationActivity++; | 4787 buildCounterOptimizationActivity++; |
| 4788 if (buildCounterOptimizationActivity < 3) { | 4788 if (buildCounterOptimizationActivity < 3) { |
| 4789 o.floodlightActivityId = "foo"; | 4789 o.floodlightActivityId = "foo"; |
| 4790 o.floodlightActivityIdDimensionValue = buildDimensionValue(); | 4790 o.floodlightActivityIdDimensionValue = buildDimensionValue(); |
| 4791 o.weight = 42; | 4791 o.weight = 42; |
| 4792 } | 4792 } |
| 4793 buildCounterOptimizationActivity--; | 4793 buildCounterOptimizationActivity--; |
| 4794 return o; | 4794 return o; |
| 4795 } | 4795 } |
| 4796 | 4796 |
| 4797 checkOptimizationActivity(api.OptimizationActivity o) { | 4797 checkOptimizationActivity(api.OptimizationActivity o) { |
| 4798 buildCounterOptimizationActivity++; | 4798 buildCounterOptimizationActivity++; |
| 4799 if (buildCounterOptimizationActivity < 3) { | 4799 if (buildCounterOptimizationActivity < 3) { |
| 4800 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4800 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4801 checkDimensionValue(o.floodlightActivityIdDimensionValue); | 4801 checkDimensionValue(o.floodlightActivityIdDimensionValue); |
| 4802 unittest.expect(o.weight, unittest.equals(42)); | 4802 unittest.expect(o.weight, unittest.equals(42)); |
| 4803 } | 4803 } |
| 4804 buildCounterOptimizationActivity--; | 4804 buildCounterOptimizationActivity--; |
| 4805 } | 4805 } |
| 4806 | 4806 |
| 4807 buildUnnamed1139() { | 4807 buildUnnamed859() { |
| 4808 var o = new core.List<core.String>(); | 4808 var o = new core.List<core.String>(); |
| 4809 o.add("foo"); | 4809 o.add("foo"); |
| 4810 o.add("foo"); | 4810 o.add("foo"); |
| 4811 return o; | 4811 return o; |
| 4812 } | 4812 } |
| 4813 | 4813 |
| 4814 checkUnnamed1139(core.List<core.String> o) { | 4814 checkUnnamed859(core.List<core.String> o) { |
| 4815 unittest.expect(o, unittest.hasLength(2)); | 4815 unittest.expect(o, unittest.hasLength(2)); |
| 4816 unittest.expect(o[0], unittest.equals('foo')); | 4816 unittest.expect(o[0], unittest.equals('foo')); |
| 4817 unittest.expect(o[1], unittest.equals('foo')); | 4817 unittest.expect(o[1], unittest.equals('foo')); |
| 4818 } | 4818 } |
| 4819 | 4819 |
| 4820 buildUnnamed1140() { | 4820 buildUnnamed860() { |
| 4821 var o = new core.List<api.OrderContact>(); | 4821 var o = new core.List<api.OrderContact>(); |
| 4822 o.add(buildOrderContact()); | 4822 o.add(buildOrderContact()); |
| 4823 o.add(buildOrderContact()); | 4823 o.add(buildOrderContact()); |
| 4824 return o; | 4824 return o; |
| 4825 } | 4825 } |
| 4826 | 4826 |
| 4827 checkUnnamed1140(core.List<api.OrderContact> o) { | 4827 checkUnnamed860(core.List<api.OrderContact> o) { |
| 4828 unittest.expect(o, unittest.hasLength(2)); | 4828 unittest.expect(o, unittest.hasLength(2)); |
| 4829 checkOrderContact(o[0]); | 4829 checkOrderContact(o[0]); |
| 4830 checkOrderContact(o[1]); | 4830 checkOrderContact(o[1]); |
| 4831 } | 4831 } |
| 4832 | 4832 |
| 4833 buildUnnamed1141() { | 4833 buildUnnamed861() { |
| 4834 var o = new core.List<core.String>(); | 4834 var o = new core.List<core.String>(); |
| 4835 o.add("foo"); | 4835 o.add("foo"); |
| 4836 o.add("foo"); | 4836 o.add("foo"); |
| 4837 return o; | 4837 return o; |
| 4838 } | 4838 } |
| 4839 | 4839 |
| 4840 checkUnnamed1141(core.List<core.String> o) { | 4840 checkUnnamed861(core.List<core.String> o) { |
| 4841 unittest.expect(o, unittest.hasLength(2)); | 4841 unittest.expect(o, unittest.hasLength(2)); |
| 4842 unittest.expect(o[0], unittest.equals('foo')); | 4842 unittest.expect(o[0], unittest.equals('foo')); |
| 4843 unittest.expect(o[1], unittest.equals('foo')); | 4843 unittest.expect(o[1], unittest.equals('foo')); |
| 4844 } | 4844 } |
| 4845 | 4845 |
| 4846 buildUnnamed1142() { | 4846 buildUnnamed862() { |
| 4847 var o = new core.List<core.String>(); | 4847 var o = new core.List<core.String>(); |
| 4848 o.add("foo"); | 4848 o.add("foo"); |
| 4849 o.add("foo"); | 4849 o.add("foo"); |
| 4850 return o; | 4850 return o; |
| 4851 } | 4851 } |
| 4852 | 4852 |
| 4853 checkUnnamed1142(core.List<core.String> o) { | 4853 checkUnnamed862(core.List<core.String> o) { |
| 4854 unittest.expect(o, unittest.hasLength(2)); | 4854 unittest.expect(o, unittest.hasLength(2)); |
| 4855 unittest.expect(o[0], unittest.equals('foo')); | 4855 unittest.expect(o[0], unittest.equals('foo')); |
| 4856 unittest.expect(o[1], unittest.equals('foo')); | 4856 unittest.expect(o[1], unittest.equals('foo')); |
| 4857 } | 4857 } |
| 4858 | 4858 |
| 4859 core.int buildCounterOrder = 0; | 4859 core.int buildCounterOrder = 0; |
| 4860 buildOrder() { | 4860 buildOrder() { |
| 4861 var o = new api.Order(); | 4861 var o = new api.Order(); |
| 4862 buildCounterOrder++; | 4862 buildCounterOrder++; |
| 4863 if (buildCounterOrder < 3) { | 4863 if (buildCounterOrder < 3) { |
| 4864 o.accountId = "foo"; | 4864 o.accountId = "foo"; |
| 4865 o.advertiserId = "foo"; | 4865 o.advertiserId = "foo"; |
| 4866 o.approverUserProfileIds = buildUnnamed1139(); | 4866 o.approverUserProfileIds = buildUnnamed859(); |
| 4867 o.buyerInvoiceId = "foo"; | 4867 o.buyerInvoiceId = "foo"; |
| 4868 o.buyerOrganizationName = "foo"; | 4868 o.buyerOrganizationName = "foo"; |
| 4869 o.comments = "foo"; | 4869 o.comments = "foo"; |
| 4870 o.contacts = buildUnnamed1140(); | 4870 o.contacts = buildUnnamed860(); |
| 4871 o.id = "foo"; | 4871 o.id = "foo"; |
| 4872 o.kind = "foo"; | 4872 o.kind = "foo"; |
| 4873 o.lastModifiedInfo = buildLastModifiedInfo(); | 4873 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4874 o.name = "foo"; | 4874 o.name = "foo"; |
| 4875 o.notes = "foo"; | 4875 o.notes = "foo"; |
| 4876 o.planningTermId = "foo"; | 4876 o.planningTermId = "foo"; |
| 4877 o.projectId = "foo"; | 4877 o.projectId = "foo"; |
| 4878 o.sellerOrderId = "foo"; | 4878 o.sellerOrderId = "foo"; |
| 4879 o.sellerOrganizationName = "foo"; | 4879 o.sellerOrganizationName = "foo"; |
| 4880 o.siteId = buildUnnamed1141(); | 4880 o.siteId = buildUnnamed861(); |
| 4881 o.siteNames = buildUnnamed1142(); | 4881 o.siteNames = buildUnnamed862(); |
| 4882 o.subaccountId = "foo"; | 4882 o.subaccountId = "foo"; |
| 4883 o.termsAndConditions = "foo"; | 4883 o.termsAndConditions = "foo"; |
| 4884 } | 4884 } |
| 4885 buildCounterOrder--; | 4885 buildCounterOrder--; |
| 4886 return o; | 4886 return o; |
| 4887 } | 4887 } |
| 4888 | 4888 |
| 4889 checkOrder(api.Order o) { | 4889 checkOrder(api.Order o) { |
| 4890 buildCounterOrder++; | 4890 buildCounterOrder++; |
| 4891 if (buildCounterOrder < 3) { | 4891 if (buildCounterOrder < 3) { |
| 4892 unittest.expect(o.accountId, unittest.equals('foo')); | 4892 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4893 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4893 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4894 checkUnnamed1139(o.approverUserProfileIds); | 4894 checkUnnamed859(o.approverUserProfileIds); |
| 4895 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); | 4895 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); |
| 4896 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); | 4896 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); |
| 4897 unittest.expect(o.comments, unittest.equals('foo')); | 4897 unittest.expect(o.comments, unittest.equals('foo')); |
| 4898 checkUnnamed1140(o.contacts); | 4898 checkUnnamed860(o.contacts); |
| 4899 unittest.expect(o.id, unittest.equals('foo')); | 4899 unittest.expect(o.id, unittest.equals('foo')); |
| 4900 unittest.expect(o.kind, unittest.equals('foo')); | 4900 unittest.expect(o.kind, unittest.equals('foo')); |
| 4901 checkLastModifiedInfo(o.lastModifiedInfo); | 4901 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4902 unittest.expect(o.name, unittest.equals('foo')); | 4902 unittest.expect(o.name, unittest.equals('foo')); |
| 4903 unittest.expect(o.notes, unittest.equals('foo')); | 4903 unittest.expect(o.notes, unittest.equals('foo')); |
| 4904 unittest.expect(o.planningTermId, unittest.equals('foo')); | 4904 unittest.expect(o.planningTermId, unittest.equals('foo')); |
| 4905 unittest.expect(o.projectId, unittest.equals('foo')); | 4905 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4906 unittest.expect(o.sellerOrderId, unittest.equals('foo')); | 4906 unittest.expect(o.sellerOrderId, unittest.equals('foo')); |
| 4907 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); | 4907 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); |
| 4908 checkUnnamed1141(o.siteId); | 4908 checkUnnamed861(o.siteId); |
| 4909 checkUnnamed1142(o.siteNames); | 4909 checkUnnamed862(o.siteNames); |
| 4910 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4910 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4911 unittest.expect(o.termsAndConditions, unittest.equals('foo')); | 4911 unittest.expect(o.termsAndConditions, unittest.equals('foo')); |
| 4912 } | 4912 } |
| 4913 buildCounterOrder--; | 4913 buildCounterOrder--; |
| 4914 } | 4914 } |
| 4915 | 4915 |
| 4916 core.int buildCounterOrderContact = 0; | 4916 core.int buildCounterOrderContact = 0; |
| 4917 buildOrderContact() { | 4917 buildOrderContact() { |
| 4918 var o = new api.OrderContact(); | 4918 var o = new api.OrderContact(); |
| 4919 buildCounterOrderContact++; | 4919 buildCounterOrderContact++; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 4933 if (buildCounterOrderContact < 3) { | 4933 if (buildCounterOrderContact < 3) { |
| 4934 unittest.expect(o.contactInfo, unittest.equals('foo')); | 4934 unittest.expect(o.contactInfo, unittest.equals('foo')); |
| 4935 unittest.expect(o.contactName, unittest.equals('foo')); | 4935 unittest.expect(o.contactName, unittest.equals('foo')); |
| 4936 unittest.expect(o.contactTitle, unittest.equals('foo')); | 4936 unittest.expect(o.contactTitle, unittest.equals('foo')); |
| 4937 unittest.expect(o.contactType, unittest.equals('foo')); | 4937 unittest.expect(o.contactType, unittest.equals('foo')); |
| 4938 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); | 4938 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); |
| 4939 } | 4939 } |
| 4940 buildCounterOrderContact--; | 4940 buildCounterOrderContact--; |
| 4941 } | 4941 } |
| 4942 | 4942 |
| 4943 buildUnnamed1143() { | 4943 buildUnnamed863() { |
| 4944 var o = new core.List<core.String>(); | 4944 var o = new core.List<core.String>(); |
| 4945 o.add("foo"); | 4945 o.add("foo"); |
| 4946 o.add("foo"); | 4946 o.add("foo"); |
| 4947 return o; | 4947 return o; |
| 4948 } | 4948 } |
| 4949 | 4949 |
| 4950 checkUnnamed1143(core.List<core.String> o) { | 4950 checkUnnamed863(core.List<core.String> o) { |
| 4951 unittest.expect(o, unittest.hasLength(2)); | 4951 unittest.expect(o, unittest.hasLength(2)); |
| 4952 unittest.expect(o[0], unittest.equals('foo')); | 4952 unittest.expect(o[0], unittest.equals('foo')); |
| 4953 unittest.expect(o[1], unittest.equals('foo')); | 4953 unittest.expect(o[1], unittest.equals('foo')); |
| 4954 } | 4954 } |
| 4955 | 4955 |
| 4956 core.int buildCounterOrderDocument = 0; | 4956 core.int buildCounterOrderDocument = 0; |
| 4957 buildOrderDocument() { | 4957 buildOrderDocument() { |
| 4958 var o = new api.OrderDocument(); | 4958 var o = new api.OrderDocument(); |
| 4959 buildCounterOrderDocument++; | 4959 buildCounterOrderDocument++; |
| 4960 if (buildCounterOrderDocument < 3) { | 4960 if (buildCounterOrderDocument < 3) { |
| 4961 o.accountId = "foo"; | 4961 o.accountId = "foo"; |
| 4962 o.advertiserId = "foo"; | 4962 o.advertiserId = "foo"; |
| 4963 o.amendedOrderDocumentId = "foo"; | 4963 o.amendedOrderDocumentId = "foo"; |
| 4964 o.approvedByUserProfileIds = buildUnnamed1143(); | 4964 o.approvedByUserProfileIds = buildUnnamed863(); |
| 4965 o.cancelled = true; | 4965 o.cancelled = true; |
| 4966 o.createdInfo = buildLastModifiedInfo(); | 4966 o.createdInfo = buildLastModifiedInfo(); |
| 4967 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 4967 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 4968 o.id = "foo"; | 4968 o.id = "foo"; |
| 4969 o.kind = "foo"; | 4969 o.kind = "foo"; |
| 4970 o.orderId = "foo"; | 4970 o.orderId = "foo"; |
| 4971 o.projectId = "foo"; | 4971 o.projectId = "foo"; |
| 4972 o.signed = true; | 4972 o.signed = true; |
| 4973 o.subaccountId = "foo"; | 4973 o.subaccountId = "foo"; |
| 4974 o.title = "foo"; | 4974 o.title = "foo"; |
| 4975 o.type = "foo"; | 4975 o.type = "foo"; |
| 4976 } | 4976 } |
| 4977 buildCounterOrderDocument--; | 4977 buildCounterOrderDocument--; |
| 4978 return o; | 4978 return o; |
| 4979 } | 4979 } |
| 4980 | 4980 |
| 4981 checkOrderDocument(api.OrderDocument o) { | 4981 checkOrderDocument(api.OrderDocument o) { |
| 4982 buildCounterOrderDocument++; | 4982 buildCounterOrderDocument++; |
| 4983 if (buildCounterOrderDocument < 3) { | 4983 if (buildCounterOrderDocument < 3) { |
| 4984 unittest.expect(o.accountId, unittest.equals('foo')); | 4984 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4985 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4985 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4986 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); | 4986 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); |
| 4987 checkUnnamed1143(o.approvedByUserProfileIds); | 4987 checkUnnamed863(o.approvedByUserProfileIds); |
| 4988 unittest.expect(o.cancelled, unittest.isTrue); | 4988 unittest.expect(o.cancelled, unittest.isTrue); |
| 4989 checkLastModifiedInfo(o.createdInfo); | 4989 checkLastModifiedInfo(o.createdInfo); |
| 4990 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); | 4990 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); |
| 4991 unittest.expect(o.id, unittest.equals('foo')); | 4991 unittest.expect(o.id, unittest.equals('foo')); |
| 4992 unittest.expect(o.kind, unittest.equals('foo')); | 4992 unittest.expect(o.kind, unittest.equals('foo')); |
| 4993 unittest.expect(o.orderId, unittest.equals('foo')); | 4993 unittest.expect(o.orderId, unittest.equals('foo')); |
| 4994 unittest.expect(o.projectId, unittest.equals('foo')); | 4994 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4995 unittest.expect(o.signed, unittest.isTrue); | 4995 unittest.expect(o.signed, unittest.isTrue); |
| 4996 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4996 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4997 unittest.expect(o.title, unittest.equals('foo')); | 4997 unittest.expect(o.title, unittest.equals('foo')); |
| 4998 unittest.expect(o.type, unittest.equals('foo')); | 4998 unittest.expect(o.type, unittest.equals('foo')); |
| 4999 } | 4999 } |
| 5000 buildCounterOrderDocument--; | 5000 buildCounterOrderDocument--; |
| 5001 } | 5001 } |
| 5002 | 5002 |
| 5003 buildUnnamed1144() { | 5003 buildUnnamed864() { |
| 5004 var o = new core.List<api.OrderDocument>(); | 5004 var o = new core.List<api.OrderDocument>(); |
| 5005 o.add(buildOrderDocument()); | 5005 o.add(buildOrderDocument()); |
| 5006 o.add(buildOrderDocument()); | 5006 o.add(buildOrderDocument()); |
| 5007 return o; | 5007 return o; |
| 5008 } | 5008 } |
| 5009 | 5009 |
| 5010 checkUnnamed1144(core.List<api.OrderDocument> o) { | 5010 checkUnnamed864(core.List<api.OrderDocument> o) { |
| 5011 unittest.expect(o, unittest.hasLength(2)); | 5011 unittest.expect(o, unittest.hasLength(2)); |
| 5012 checkOrderDocument(o[0]); | 5012 checkOrderDocument(o[0]); |
| 5013 checkOrderDocument(o[1]); | 5013 checkOrderDocument(o[1]); |
| 5014 } | 5014 } |
| 5015 | 5015 |
| 5016 core.int buildCounterOrderDocumentsListResponse = 0; | 5016 core.int buildCounterOrderDocumentsListResponse = 0; |
| 5017 buildOrderDocumentsListResponse() { | 5017 buildOrderDocumentsListResponse() { |
| 5018 var o = new api.OrderDocumentsListResponse(); | 5018 var o = new api.OrderDocumentsListResponse(); |
| 5019 buildCounterOrderDocumentsListResponse++; | 5019 buildCounterOrderDocumentsListResponse++; |
| 5020 if (buildCounterOrderDocumentsListResponse < 3) { | 5020 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5021 o.kind = "foo"; | 5021 o.kind = "foo"; |
| 5022 o.nextPageToken = "foo"; | 5022 o.nextPageToken = "foo"; |
| 5023 o.orderDocuments = buildUnnamed1144(); | 5023 o.orderDocuments = buildUnnamed864(); |
| 5024 } | 5024 } |
| 5025 buildCounterOrderDocumentsListResponse--; | 5025 buildCounterOrderDocumentsListResponse--; |
| 5026 return o; | 5026 return o; |
| 5027 } | 5027 } |
| 5028 | 5028 |
| 5029 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { | 5029 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { |
| 5030 buildCounterOrderDocumentsListResponse++; | 5030 buildCounterOrderDocumentsListResponse++; |
| 5031 if (buildCounterOrderDocumentsListResponse < 3) { | 5031 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5032 unittest.expect(o.kind, unittest.equals('foo')); | 5032 unittest.expect(o.kind, unittest.equals('foo')); |
| 5033 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5033 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5034 checkUnnamed1144(o.orderDocuments); | 5034 checkUnnamed864(o.orderDocuments); |
| 5035 } | 5035 } |
| 5036 buildCounterOrderDocumentsListResponse--; | 5036 buildCounterOrderDocumentsListResponse--; |
| 5037 } | 5037 } |
| 5038 | 5038 |
| 5039 buildUnnamed1145() { | 5039 buildUnnamed865() { |
| 5040 var o = new core.List<api.Order>(); | 5040 var o = new core.List<api.Order>(); |
| 5041 o.add(buildOrder()); | 5041 o.add(buildOrder()); |
| 5042 o.add(buildOrder()); | 5042 o.add(buildOrder()); |
| 5043 return o; | 5043 return o; |
| 5044 } | 5044 } |
| 5045 | 5045 |
| 5046 checkUnnamed1145(core.List<api.Order> o) { | 5046 checkUnnamed865(core.List<api.Order> o) { |
| 5047 unittest.expect(o, unittest.hasLength(2)); | 5047 unittest.expect(o, unittest.hasLength(2)); |
| 5048 checkOrder(o[0]); | 5048 checkOrder(o[0]); |
| 5049 checkOrder(o[1]); | 5049 checkOrder(o[1]); |
| 5050 } | 5050 } |
| 5051 | 5051 |
| 5052 core.int buildCounterOrdersListResponse = 0; | 5052 core.int buildCounterOrdersListResponse = 0; |
| 5053 buildOrdersListResponse() { | 5053 buildOrdersListResponse() { |
| 5054 var o = new api.OrdersListResponse(); | 5054 var o = new api.OrdersListResponse(); |
| 5055 buildCounterOrdersListResponse++; | 5055 buildCounterOrdersListResponse++; |
| 5056 if (buildCounterOrdersListResponse < 3) { | 5056 if (buildCounterOrdersListResponse < 3) { |
| 5057 o.kind = "foo"; | 5057 o.kind = "foo"; |
| 5058 o.nextPageToken = "foo"; | 5058 o.nextPageToken = "foo"; |
| 5059 o.orders = buildUnnamed1145(); | 5059 o.orders = buildUnnamed865(); |
| 5060 } | 5060 } |
| 5061 buildCounterOrdersListResponse--; | 5061 buildCounterOrdersListResponse--; |
| 5062 return o; | 5062 return o; |
| 5063 } | 5063 } |
| 5064 | 5064 |
| 5065 checkOrdersListResponse(api.OrdersListResponse o) { | 5065 checkOrdersListResponse(api.OrdersListResponse o) { |
| 5066 buildCounterOrdersListResponse++; | 5066 buildCounterOrdersListResponse++; |
| 5067 if (buildCounterOrdersListResponse < 3) { | 5067 if (buildCounterOrdersListResponse < 3) { |
| 5068 unittest.expect(o.kind, unittest.equals('foo')); | 5068 unittest.expect(o.kind, unittest.equals('foo')); |
| 5069 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5069 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5070 checkUnnamed1145(o.orders); | 5070 checkUnnamed865(o.orders); |
| 5071 } | 5071 } |
| 5072 buildCounterOrdersListResponse--; | 5072 buildCounterOrdersListResponse--; |
| 5073 } | 5073 } |
| 5074 | 5074 |
| 5075 buildUnnamed1146() { | 5075 buildUnnamed866() { |
| 5076 var o = new core.List<api.Dimension>(); | 5076 var o = new core.List<api.Dimension>(); |
| 5077 o.add(buildDimension()); | 5077 o.add(buildDimension()); |
| 5078 o.add(buildDimension()); | 5078 o.add(buildDimension()); |
| 5079 return o; | 5079 return o; |
| 5080 } | 5080 } |
| 5081 | 5081 |
| 5082 checkUnnamed1146(core.List<api.Dimension> o) { | 5082 checkUnnamed866(core.List<api.Dimension> o) { |
| 5083 unittest.expect(o, unittest.hasLength(2)); | 5083 unittest.expect(o, unittest.hasLength(2)); |
| 5084 checkDimension(o[0]); | 5084 checkDimension(o[0]); |
| 5085 checkDimension(o[1]); | 5085 checkDimension(o[1]); |
| 5086 } | 5086 } |
| 5087 | 5087 |
| 5088 buildUnnamed1147() { | 5088 buildUnnamed867() { |
| 5089 var o = new core.List<api.Dimension>(); | 5089 var o = new core.List<api.Dimension>(); |
| 5090 o.add(buildDimension()); | 5090 o.add(buildDimension()); |
| 5091 o.add(buildDimension()); | 5091 o.add(buildDimension()); |
| 5092 return o; | 5092 return o; |
| 5093 } | 5093 } |
| 5094 | 5094 |
| 5095 checkUnnamed1147(core.List<api.Dimension> o) { | 5095 checkUnnamed867(core.List<api.Dimension> o) { |
| 5096 unittest.expect(o, unittest.hasLength(2)); | 5096 unittest.expect(o, unittest.hasLength(2)); |
| 5097 checkDimension(o[0]); | 5097 checkDimension(o[0]); |
| 5098 checkDimension(o[1]); | 5098 checkDimension(o[1]); |
| 5099 } | 5099 } |
| 5100 | 5100 |
| 5101 buildUnnamed1148() { | 5101 buildUnnamed868() { |
| 5102 var o = new core.List<api.Metric>(); | 5102 var o = new core.List<api.Metric>(); |
| 5103 o.add(buildMetric()); | 5103 o.add(buildMetric()); |
| 5104 o.add(buildMetric()); | 5104 o.add(buildMetric()); |
| 5105 return o; | 5105 return o; |
| 5106 } | 5106 } |
| 5107 | 5107 |
| 5108 checkUnnamed1148(core.List<api.Metric> o) { | 5108 checkUnnamed868(core.List<api.Metric> o) { |
| 5109 unittest.expect(o, unittest.hasLength(2)); | 5109 unittest.expect(o, unittest.hasLength(2)); |
| 5110 checkMetric(o[0]); | 5110 checkMetric(o[0]); |
| 5111 checkMetric(o[1]); | 5111 checkMetric(o[1]); |
| 5112 } | 5112 } |
| 5113 | 5113 |
| 5114 buildUnnamed1149() { | 5114 buildUnnamed869() { |
| 5115 var o = new core.List<api.Dimension>(); | 5115 var o = new core.List<api.Dimension>(); |
| 5116 o.add(buildDimension()); | 5116 o.add(buildDimension()); |
| 5117 o.add(buildDimension()); | 5117 o.add(buildDimension()); |
| 5118 return o; | 5118 return o; |
| 5119 } | 5119 } |
| 5120 | 5120 |
| 5121 checkUnnamed1149(core.List<api.Dimension> o) { | 5121 checkUnnamed869(core.List<api.Dimension> o) { |
| 5122 unittest.expect(o, unittest.hasLength(2)); | 5122 unittest.expect(o, unittest.hasLength(2)); |
| 5123 checkDimension(o[0]); | 5123 checkDimension(o[0]); |
| 5124 checkDimension(o[1]); | 5124 checkDimension(o[1]); |
| 5125 } | 5125 } |
| 5126 | 5126 |
| 5127 core.int buildCounterPathToConversionReportCompatibleFields = 0; | 5127 core.int buildCounterPathToConversionReportCompatibleFields = 0; |
| 5128 buildPathToConversionReportCompatibleFields() { | 5128 buildPathToConversionReportCompatibleFields() { |
| 5129 var o = new api.PathToConversionReportCompatibleFields(); | 5129 var o = new api.PathToConversionReportCompatibleFields(); |
| 5130 buildCounterPathToConversionReportCompatibleFields++; | 5130 buildCounterPathToConversionReportCompatibleFields++; |
| 5131 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5131 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5132 o.conversionDimensions = buildUnnamed1146(); | 5132 o.conversionDimensions = buildUnnamed866(); |
| 5133 o.customFloodlightVariables = buildUnnamed1147(); | 5133 o.customFloodlightVariables = buildUnnamed867(); |
| 5134 o.kind = "foo"; | 5134 o.kind = "foo"; |
| 5135 o.metrics = buildUnnamed1148(); | 5135 o.metrics = buildUnnamed868(); |
| 5136 o.perInteractionDimensions = buildUnnamed1149(); | 5136 o.perInteractionDimensions = buildUnnamed869(); |
| 5137 } | 5137 } |
| 5138 buildCounterPathToConversionReportCompatibleFields--; | 5138 buildCounterPathToConversionReportCompatibleFields--; |
| 5139 return o; | 5139 return o; |
| 5140 } | 5140 } |
| 5141 | 5141 |
| 5142 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { | 5142 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { |
| 5143 buildCounterPathToConversionReportCompatibleFields++; | 5143 buildCounterPathToConversionReportCompatibleFields++; |
| 5144 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5144 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5145 checkUnnamed1146(o.conversionDimensions); | 5145 checkUnnamed866(o.conversionDimensions); |
| 5146 checkUnnamed1147(o.customFloodlightVariables); | 5146 checkUnnamed867(o.customFloodlightVariables); |
| 5147 unittest.expect(o.kind, unittest.equals('foo')); | 5147 unittest.expect(o.kind, unittest.equals('foo')); |
| 5148 checkUnnamed1148(o.metrics); | 5148 checkUnnamed868(o.metrics); |
| 5149 checkUnnamed1149(o.perInteractionDimensions); | 5149 checkUnnamed869(o.perInteractionDimensions); |
| 5150 } | 5150 } |
| 5151 buildCounterPathToConversionReportCompatibleFields--; | 5151 buildCounterPathToConversionReportCompatibleFields--; |
| 5152 } | 5152 } |
| 5153 | 5153 |
| 5154 buildUnnamed1150() { | 5154 buildUnnamed870() { |
| 5155 var o = new core.List<core.String>(); | 5155 var o = new core.List<core.String>(); |
| 5156 o.add("foo"); | 5156 o.add("foo"); |
| 5157 o.add("foo"); | 5157 o.add("foo"); |
| 5158 return o; | 5158 return o; |
| 5159 } | 5159 } |
| 5160 | 5160 |
| 5161 checkUnnamed1150(core.List<core.String> o) { | 5161 checkUnnamed870(core.List<core.String> o) { |
| 5162 unittest.expect(o, unittest.hasLength(2)); | 5162 unittest.expect(o, unittest.hasLength(2)); |
| 5163 unittest.expect(o[0], unittest.equals('foo')); | 5163 unittest.expect(o[0], unittest.equals('foo')); |
| 5164 unittest.expect(o[1], unittest.equals('foo')); | 5164 unittest.expect(o[1], unittest.equals('foo')); |
| 5165 } | 5165 } |
| 5166 | 5166 |
| 5167 core.int buildCounterPlacement = 0; | 5167 core.int buildCounterPlacement = 0; |
| 5168 buildPlacement() { | 5168 buildPlacement() { |
| 5169 var o = new api.Placement(); | 5169 var o = new api.Placement(); |
| 5170 buildCounterPlacement++; | 5170 buildCounterPlacement++; |
| 5171 if (buildCounterPlacement < 3) { | 5171 if (buildCounterPlacement < 3) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5196 o.placementStrategyId = "foo"; | 5196 o.placementStrategyId = "foo"; |
| 5197 o.pricingSchedule = buildPricingSchedule(); | 5197 o.pricingSchedule = buildPricingSchedule(); |
| 5198 o.primary = true; | 5198 o.primary = true; |
| 5199 o.publisherUpdateInfo = buildLastModifiedInfo(); | 5199 o.publisherUpdateInfo = buildLastModifiedInfo(); |
| 5200 o.siteId = "foo"; | 5200 o.siteId = "foo"; |
| 5201 o.siteIdDimensionValue = buildDimensionValue(); | 5201 o.siteIdDimensionValue = buildDimensionValue(); |
| 5202 o.size = buildSize(); | 5202 o.size = buildSize(); |
| 5203 o.sslRequired = true; | 5203 o.sslRequired = true; |
| 5204 o.status = "foo"; | 5204 o.status = "foo"; |
| 5205 o.subaccountId = "foo"; | 5205 o.subaccountId = "foo"; |
| 5206 o.tagFormats = buildUnnamed1150(); | 5206 o.tagFormats = buildUnnamed870(); |
| 5207 o.tagSetting = buildTagSetting(); | 5207 o.tagSetting = buildTagSetting(); |
| 5208 } | 5208 } |
| 5209 buildCounterPlacement--; | 5209 buildCounterPlacement--; |
| 5210 return o; | 5210 return o; |
| 5211 } | 5211 } |
| 5212 | 5212 |
| 5213 checkPlacement(api.Placement o) { | 5213 checkPlacement(api.Placement o) { |
| 5214 buildCounterPlacement++; | 5214 buildCounterPlacement++; |
| 5215 if (buildCounterPlacement < 3) { | 5215 if (buildCounterPlacement < 3) { |
| 5216 unittest.expect(o.accountId, unittest.equals('foo')); | 5216 unittest.expect(o.accountId, unittest.equals('foo')); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 5240 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5240 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5241 checkPricingSchedule(o.pricingSchedule); | 5241 checkPricingSchedule(o.pricingSchedule); |
| 5242 unittest.expect(o.primary, unittest.isTrue); | 5242 unittest.expect(o.primary, unittest.isTrue); |
| 5243 checkLastModifiedInfo(o.publisherUpdateInfo); | 5243 checkLastModifiedInfo(o.publisherUpdateInfo); |
| 5244 unittest.expect(o.siteId, unittest.equals('foo')); | 5244 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5245 checkDimensionValue(o.siteIdDimensionValue); | 5245 checkDimensionValue(o.siteIdDimensionValue); |
| 5246 checkSize(o.size); | 5246 checkSize(o.size); |
| 5247 unittest.expect(o.sslRequired, unittest.isTrue); | 5247 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5248 unittest.expect(o.status, unittest.equals('foo')); | 5248 unittest.expect(o.status, unittest.equals('foo')); |
| 5249 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5249 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5250 checkUnnamed1150(o.tagFormats); | 5250 checkUnnamed870(o.tagFormats); |
| 5251 checkTagSetting(o.tagSetting); | 5251 checkTagSetting(o.tagSetting); |
| 5252 } | 5252 } |
| 5253 buildCounterPlacement--; | 5253 buildCounterPlacement--; |
| 5254 } | 5254 } |
| 5255 | 5255 |
| 5256 core.int buildCounterPlacementAssignment = 0; | 5256 core.int buildCounterPlacementAssignment = 0; |
| 5257 buildPlacementAssignment() { | 5257 buildPlacementAssignment() { |
| 5258 var o = new api.PlacementAssignment(); | 5258 var o = new api.PlacementAssignment(); |
| 5259 buildCounterPlacementAssignment++; | 5259 buildCounterPlacementAssignment++; |
| 5260 if (buildCounterPlacementAssignment < 3) { | 5260 if (buildCounterPlacementAssignment < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 5271 buildCounterPlacementAssignment++; | 5271 buildCounterPlacementAssignment++; |
| 5272 if (buildCounterPlacementAssignment < 3) { | 5272 if (buildCounterPlacementAssignment < 3) { |
| 5273 unittest.expect(o.active, unittest.isTrue); | 5273 unittest.expect(o.active, unittest.isTrue); |
| 5274 unittest.expect(o.placementId, unittest.equals('foo')); | 5274 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5275 checkDimensionValue(o.placementIdDimensionValue); | 5275 checkDimensionValue(o.placementIdDimensionValue); |
| 5276 unittest.expect(o.sslRequired, unittest.isTrue); | 5276 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5277 } | 5277 } |
| 5278 buildCounterPlacementAssignment--; | 5278 buildCounterPlacementAssignment--; |
| 5279 } | 5279 } |
| 5280 | 5280 |
| 5281 buildUnnamed1151() { | 5281 buildUnnamed871() { |
| 5282 var o = new core.List<core.String>(); | 5282 var o = new core.List<core.String>(); |
| 5283 o.add("foo"); | 5283 o.add("foo"); |
| 5284 o.add("foo"); | 5284 o.add("foo"); |
| 5285 return o; | 5285 return o; |
| 5286 } | 5286 } |
| 5287 | 5287 |
| 5288 checkUnnamed1151(core.List<core.String> o) { | 5288 checkUnnamed871(core.List<core.String> o) { |
| 5289 unittest.expect(o, unittest.hasLength(2)); | 5289 unittest.expect(o, unittest.hasLength(2)); |
| 5290 unittest.expect(o[0], unittest.equals('foo')); | 5290 unittest.expect(o[0], unittest.equals('foo')); |
| 5291 unittest.expect(o[1], unittest.equals('foo')); | 5291 unittest.expect(o[1], unittest.equals('foo')); |
| 5292 } | 5292 } |
| 5293 | 5293 |
| 5294 core.int buildCounterPlacementGroup = 0; | 5294 core.int buildCounterPlacementGroup = 0; |
| 5295 buildPlacementGroup() { | 5295 buildPlacementGroup() { |
| 5296 var o = new api.PlacementGroup(); | 5296 var o = new api.PlacementGroup(); |
| 5297 buildCounterPlacementGroup++; | 5297 buildCounterPlacementGroup++; |
| 5298 if (buildCounterPlacementGroup < 3) { | 5298 if (buildCounterPlacementGroup < 3) { |
| 5299 o.accountId = "foo"; | 5299 o.accountId = "foo"; |
| 5300 o.advertiserId = "foo"; | 5300 o.advertiserId = "foo"; |
| 5301 o.advertiserIdDimensionValue = buildDimensionValue(); | 5301 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 5302 o.archived = true; | 5302 o.archived = true; |
| 5303 o.campaignId = "foo"; | 5303 o.campaignId = "foo"; |
| 5304 o.campaignIdDimensionValue = buildDimensionValue(); | 5304 o.campaignIdDimensionValue = buildDimensionValue(); |
| 5305 o.childPlacementIds = buildUnnamed1151(); | 5305 o.childPlacementIds = buildUnnamed871(); |
| 5306 o.comment = "foo"; | 5306 o.comment = "foo"; |
| 5307 o.contentCategoryId = "foo"; | 5307 o.contentCategoryId = "foo"; |
| 5308 o.createInfo = buildLastModifiedInfo(); | 5308 o.createInfo = buildLastModifiedInfo(); |
| 5309 o.directorySiteId = "foo"; | 5309 o.directorySiteId = "foo"; |
| 5310 o.directorySiteIdDimensionValue = buildDimensionValue(); | 5310 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 5311 o.externalId = "foo"; | 5311 o.externalId = "foo"; |
| 5312 o.id = "foo"; | 5312 o.id = "foo"; |
| 5313 o.idDimensionValue = buildDimensionValue(); | 5313 o.idDimensionValue = buildDimensionValue(); |
| 5314 o.kind = "foo"; | 5314 o.kind = "foo"; |
| 5315 o.lastModifiedInfo = buildLastModifiedInfo(); | 5315 o.lastModifiedInfo = buildLastModifiedInfo(); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 5330 | 5330 |
| 5331 checkPlacementGroup(api.PlacementGroup o) { | 5331 checkPlacementGroup(api.PlacementGroup o) { |
| 5332 buildCounterPlacementGroup++; | 5332 buildCounterPlacementGroup++; |
| 5333 if (buildCounterPlacementGroup < 3) { | 5333 if (buildCounterPlacementGroup < 3) { |
| 5334 unittest.expect(o.accountId, unittest.equals('foo')); | 5334 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5335 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5335 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5336 checkDimensionValue(o.advertiserIdDimensionValue); | 5336 checkDimensionValue(o.advertiserIdDimensionValue); |
| 5337 unittest.expect(o.archived, unittest.isTrue); | 5337 unittest.expect(o.archived, unittest.isTrue); |
| 5338 unittest.expect(o.campaignId, unittest.equals('foo')); | 5338 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 5339 checkDimensionValue(o.campaignIdDimensionValue); | 5339 checkDimensionValue(o.campaignIdDimensionValue); |
| 5340 checkUnnamed1151(o.childPlacementIds); | 5340 checkUnnamed871(o.childPlacementIds); |
| 5341 unittest.expect(o.comment, unittest.equals('foo')); | 5341 unittest.expect(o.comment, unittest.equals('foo')); |
| 5342 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 5342 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 5343 checkLastModifiedInfo(o.createInfo); | 5343 checkLastModifiedInfo(o.createInfo); |
| 5344 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 5344 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 5345 checkDimensionValue(o.directorySiteIdDimensionValue); | 5345 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 5346 unittest.expect(o.externalId, unittest.equals('foo')); | 5346 unittest.expect(o.externalId, unittest.equals('foo')); |
| 5347 unittest.expect(o.id, unittest.equals('foo')); | 5347 unittest.expect(o.id, unittest.equals('foo')); |
| 5348 checkDimensionValue(o.idDimensionValue); | 5348 checkDimensionValue(o.idDimensionValue); |
| 5349 unittest.expect(o.kind, unittest.equals('foo')); | 5349 unittest.expect(o.kind, unittest.equals('foo')); |
| 5350 checkLastModifiedInfo(o.lastModifiedInfo); | 5350 checkLastModifiedInfo(o.lastModifiedInfo); |
| 5351 unittest.expect(o.name, unittest.equals('foo')); | 5351 unittest.expect(o.name, unittest.equals('foo')); |
| 5352 unittest.expect(o.placementGroupType, unittest.equals('foo')); | 5352 unittest.expect(o.placementGroupType, unittest.equals('foo')); |
| 5353 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5353 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5354 checkPricingSchedule(o.pricingSchedule); | 5354 checkPricingSchedule(o.pricingSchedule); |
| 5355 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); | 5355 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); |
| 5356 checkDimensionValue(o.primaryPlacementIdDimensionValue); | 5356 checkDimensionValue(o.primaryPlacementIdDimensionValue); |
| 5357 checkProgrammaticSetting(o.programmaticSetting); | 5357 checkProgrammaticSetting(o.programmaticSetting); |
| 5358 unittest.expect(o.siteId, unittest.equals('foo')); | 5358 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5359 checkDimensionValue(o.siteIdDimensionValue); | 5359 checkDimensionValue(o.siteIdDimensionValue); |
| 5360 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5360 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5361 } | 5361 } |
| 5362 buildCounterPlacementGroup--; | 5362 buildCounterPlacementGroup--; |
| 5363 } | 5363 } |
| 5364 | 5364 |
| 5365 buildUnnamed1152() { | 5365 buildUnnamed872() { |
| 5366 var o = new core.List<api.PlacementGroup>(); | 5366 var o = new core.List<api.PlacementGroup>(); |
| 5367 o.add(buildPlacementGroup()); | 5367 o.add(buildPlacementGroup()); |
| 5368 o.add(buildPlacementGroup()); | 5368 o.add(buildPlacementGroup()); |
| 5369 return o; | 5369 return o; |
| 5370 } | 5370 } |
| 5371 | 5371 |
| 5372 checkUnnamed1152(core.List<api.PlacementGroup> o) { | 5372 checkUnnamed872(core.List<api.PlacementGroup> o) { |
| 5373 unittest.expect(o, unittest.hasLength(2)); | 5373 unittest.expect(o, unittest.hasLength(2)); |
| 5374 checkPlacementGroup(o[0]); | 5374 checkPlacementGroup(o[0]); |
| 5375 checkPlacementGroup(o[1]); | 5375 checkPlacementGroup(o[1]); |
| 5376 } | 5376 } |
| 5377 | 5377 |
| 5378 core.int buildCounterPlacementGroupsListResponse = 0; | 5378 core.int buildCounterPlacementGroupsListResponse = 0; |
| 5379 buildPlacementGroupsListResponse() { | 5379 buildPlacementGroupsListResponse() { |
| 5380 var o = new api.PlacementGroupsListResponse(); | 5380 var o = new api.PlacementGroupsListResponse(); |
| 5381 buildCounterPlacementGroupsListResponse++; | 5381 buildCounterPlacementGroupsListResponse++; |
| 5382 if (buildCounterPlacementGroupsListResponse < 3) { | 5382 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5383 o.kind = "foo"; | 5383 o.kind = "foo"; |
| 5384 o.nextPageToken = "foo"; | 5384 o.nextPageToken = "foo"; |
| 5385 o.placementGroups = buildUnnamed1152(); | 5385 o.placementGroups = buildUnnamed872(); |
| 5386 } | 5386 } |
| 5387 buildCounterPlacementGroupsListResponse--; | 5387 buildCounterPlacementGroupsListResponse--; |
| 5388 return o; | 5388 return o; |
| 5389 } | 5389 } |
| 5390 | 5390 |
| 5391 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { | 5391 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { |
| 5392 buildCounterPlacementGroupsListResponse++; | 5392 buildCounterPlacementGroupsListResponse++; |
| 5393 if (buildCounterPlacementGroupsListResponse < 3) { | 5393 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5394 unittest.expect(o.kind, unittest.equals('foo')); | 5394 unittest.expect(o.kind, unittest.equals('foo')); |
| 5395 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5395 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5396 checkUnnamed1152(o.placementGroups); | 5396 checkUnnamed872(o.placementGroups); |
| 5397 } | 5397 } |
| 5398 buildCounterPlacementGroupsListResponse--; | 5398 buildCounterPlacementGroupsListResponse--; |
| 5399 } | 5399 } |
| 5400 | 5400 |
| 5401 buildUnnamed1153() { | 5401 buildUnnamed873() { |
| 5402 var o = new core.List<api.PlacementStrategy>(); | 5402 var o = new core.List<api.PlacementStrategy>(); |
| 5403 o.add(buildPlacementStrategy()); | 5403 o.add(buildPlacementStrategy()); |
| 5404 o.add(buildPlacementStrategy()); | 5404 o.add(buildPlacementStrategy()); |
| 5405 return o; | 5405 return o; |
| 5406 } | 5406 } |
| 5407 | 5407 |
| 5408 checkUnnamed1153(core.List<api.PlacementStrategy> o) { | 5408 checkUnnamed873(core.List<api.PlacementStrategy> o) { |
| 5409 unittest.expect(o, unittest.hasLength(2)); | 5409 unittest.expect(o, unittest.hasLength(2)); |
| 5410 checkPlacementStrategy(o[0]); | 5410 checkPlacementStrategy(o[0]); |
| 5411 checkPlacementStrategy(o[1]); | 5411 checkPlacementStrategy(o[1]); |
| 5412 } | 5412 } |
| 5413 | 5413 |
| 5414 core.int buildCounterPlacementStrategiesListResponse = 0; | 5414 core.int buildCounterPlacementStrategiesListResponse = 0; |
| 5415 buildPlacementStrategiesListResponse() { | 5415 buildPlacementStrategiesListResponse() { |
| 5416 var o = new api.PlacementStrategiesListResponse(); | 5416 var o = new api.PlacementStrategiesListResponse(); |
| 5417 buildCounterPlacementStrategiesListResponse++; | 5417 buildCounterPlacementStrategiesListResponse++; |
| 5418 if (buildCounterPlacementStrategiesListResponse < 3) { | 5418 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5419 o.kind = "foo"; | 5419 o.kind = "foo"; |
| 5420 o.nextPageToken = "foo"; | 5420 o.nextPageToken = "foo"; |
| 5421 o.placementStrategies = buildUnnamed1153(); | 5421 o.placementStrategies = buildUnnamed873(); |
| 5422 } | 5422 } |
| 5423 buildCounterPlacementStrategiesListResponse--; | 5423 buildCounterPlacementStrategiesListResponse--; |
| 5424 return o; | 5424 return o; |
| 5425 } | 5425 } |
| 5426 | 5426 |
| 5427 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { | 5427 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { |
| 5428 buildCounterPlacementStrategiesListResponse++; | 5428 buildCounterPlacementStrategiesListResponse++; |
| 5429 if (buildCounterPlacementStrategiesListResponse < 3) { | 5429 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5430 unittest.expect(o.kind, unittest.equals('foo')); | 5430 unittest.expect(o.kind, unittest.equals('foo')); |
| 5431 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5431 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5432 checkUnnamed1153(o.placementStrategies); | 5432 checkUnnamed873(o.placementStrategies); |
| 5433 } | 5433 } |
| 5434 buildCounterPlacementStrategiesListResponse--; | 5434 buildCounterPlacementStrategiesListResponse--; |
| 5435 } | 5435 } |
| 5436 | 5436 |
| 5437 core.int buildCounterPlacementStrategy = 0; | 5437 core.int buildCounterPlacementStrategy = 0; |
| 5438 buildPlacementStrategy() { | 5438 buildPlacementStrategy() { |
| 5439 var o = new api.PlacementStrategy(); | 5439 var o = new api.PlacementStrategy(); |
| 5440 buildCounterPlacementStrategy++; | 5440 buildCounterPlacementStrategy++; |
| 5441 if (buildCounterPlacementStrategy < 3) { | 5441 if (buildCounterPlacementStrategy < 3) { |
| 5442 o.accountId = "foo"; | 5442 o.accountId = "foo"; |
| 5443 o.id = "foo"; | 5443 o.id = "foo"; |
| 5444 o.kind = "foo"; | 5444 o.kind = "foo"; |
| 5445 o.name = "foo"; | 5445 o.name = "foo"; |
| 5446 } | 5446 } |
| 5447 buildCounterPlacementStrategy--; | 5447 buildCounterPlacementStrategy--; |
| 5448 return o; | 5448 return o; |
| 5449 } | 5449 } |
| 5450 | 5450 |
| 5451 checkPlacementStrategy(api.PlacementStrategy o) { | 5451 checkPlacementStrategy(api.PlacementStrategy o) { |
| 5452 buildCounterPlacementStrategy++; | 5452 buildCounterPlacementStrategy++; |
| 5453 if (buildCounterPlacementStrategy < 3) { | 5453 if (buildCounterPlacementStrategy < 3) { |
| 5454 unittest.expect(o.accountId, unittest.equals('foo')); | 5454 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5455 unittest.expect(o.id, unittest.equals('foo')); | 5455 unittest.expect(o.id, unittest.equals('foo')); |
| 5456 unittest.expect(o.kind, unittest.equals('foo')); | 5456 unittest.expect(o.kind, unittest.equals('foo')); |
| 5457 unittest.expect(o.name, unittest.equals('foo')); | 5457 unittest.expect(o.name, unittest.equals('foo')); |
| 5458 } | 5458 } |
| 5459 buildCounterPlacementStrategy--; | 5459 buildCounterPlacementStrategy--; |
| 5460 } | 5460 } |
| 5461 | 5461 |
| 5462 buildUnnamed1154() { | 5462 buildUnnamed874() { |
| 5463 var o = new core.List<api.TagData>(); | 5463 var o = new core.List<api.TagData>(); |
| 5464 o.add(buildTagData()); | 5464 o.add(buildTagData()); |
| 5465 o.add(buildTagData()); | 5465 o.add(buildTagData()); |
| 5466 return o; | 5466 return o; |
| 5467 } | 5467 } |
| 5468 | 5468 |
| 5469 checkUnnamed1154(core.List<api.TagData> o) { | 5469 checkUnnamed874(core.List<api.TagData> o) { |
| 5470 unittest.expect(o, unittest.hasLength(2)); | 5470 unittest.expect(o, unittest.hasLength(2)); |
| 5471 checkTagData(o[0]); | 5471 checkTagData(o[0]); |
| 5472 checkTagData(o[1]); | 5472 checkTagData(o[1]); |
| 5473 } | 5473 } |
| 5474 | 5474 |
| 5475 core.int buildCounterPlacementTag = 0; | 5475 core.int buildCounterPlacementTag = 0; |
| 5476 buildPlacementTag() { | 5476 buildPlacementTag() { |
| 5477 var o = new api.PlacementTag(); | 5477 var o = new api.PlacementTag(); |
| 5478 buildCounterPlacementTag++; | 5478 buildCounterPlacementTag++; |
| 5479 if (buildCounterPlacementTag < 3) { | 5479 if (buildCounterPlacementTag < 3) { |
| 5480 o.placementId = "foo"; | 5480 o.placementId = "foo"; |
| 5481 o.tagDatas = buildUnnamed1154(); | 5481 o.tagDatas = buildUnnamed874(); |
| 5482 } | 5482 } |
| 5483 buildCounterPlacementTag--; | 5483 buildCounterPlacementTag--; |
| 5484 return o; | 5484 return o; |
| 5485 } | 5485 } |
| 5486 | 5486 |
| 5487 checkPlacementTag(api.PlacementTag o) { | 5487 checkPlacementTag(api.PlacementTag o) { |
| 5488 buildCounterPlacementTag++; | 5488 buildCounterPlacementTag++; |
| 5489 if (buildCounterPlacementTag < 3) { | 5489 if (buildCounterPlacementTag < 3) { |
| 5490 unittest.expect(o.placementId, unittest.equals('foo')); | 5490 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5491 checkUnnamed1154(o.tagDatas); | 5491 checkUnnamed874(o.tagDatas); |
| 5492 } | 5492 } |
| 5493 buildCounterPlacementTag--; | 5493 buildCounterPlacementTag--; |
| 5494 } | 5494 } |
| 5495 | 5495 |
| 5496 buildUnnamed1155() { | 5496 buildUnnamed875() { |
| 5497 var o = new core.List<api.PlacementTag>(); | 5497 var o = new core.List<api.PlacementTag>(); |
| 5498 o.add(buildPlacementTag()); | 5498 o.add(buildPlacementTag()); |
| 5499 o.add(buildPlacementTag()); | 5499 o.add(buildPlacementTag()); |
| 5500 return o; | 5500 return o; |
| 5501 } | 5501 } |
| 5502 | 5502 |
| 5503 checkUnnamed1155(core.List<api.PlacementTag> o) { | 5503 checkUnnamed875(core.List<api.PlacementTag> o) { |
| 5504 unittest.expect(o, unittest.hasLength(2)); | 5504 unittest.expect(o, unittest.hasLength(2)); |
| 5505 checkPlacementTag(o[0]); | 5505 checkPlacementTag(o[0]); |
| 5506 checkPlacementTag(o[1]); | 5506 checkPlacementTag(o[1]); |
| 5507 } | 5507 } |
| 5508 | 5508 |
| 5509 core.int buildCounterPlacementsGenerateTagsResponse = 0; | 5509 core.int buildCounterPlacementsGenerateTagsResponse = 0; |
| 5510 buildPlacementsGenerateTagsResponse() { | 5510 buildPlacementsGenerateTagsResponse() { |
| 5511 var o = new api.PlacementsGenerateTagsResponse(); | 5511 var o = new api.PlacementsGenerateTagsResponse(); |
| 5512 buildCounterPlacementsGenerateTagsResponse++; | 5512 buildCounterPlacementsGenerateTagsResponse++; |
| 5513 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5513 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5514 o.kind = "foo"; | 5514 o.kind = "foo"; |
| 5515 o.placementTags = buildUnnamed1155(); | 5515 o.placementTags = buildUnnamed875(); |
| 5516 } | 5516 } |
| 5517 buildCounterPlacementsGenerateTagsResponse--; | 5517 buildCounterPlacementsGenerateTagsResponse--; |
| 5518 return o; | 5518 return o; |
| 5519 } | 5519 } |
| 5520 | 5520 |
| 5521 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { | 5521 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { |
| 5522 buildCounterPlacementsGenerateTagsResponse++; | 5522 buildCounterPlacementsGenerateTagsResponse++; |
| 5523 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5523 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5524 unittest.expect(o.kind, unittest.equals('foo')); | 5524 unittest.expect(o.kind, unittest.equals('foo')); |
| 5525 checkUnnamed1155(o.placementTags); | 5525 checkUnnamed875(o.placementTags); |
| 5526 } | 5526 } |
| 5527 buildCounterPlacementsGenerateTagsResponse--; | 5527 buildCounterPlacementsGenerateTagsResponse--; |
| 5528 } | 5528 } |
| 5529 | 5529 |
| 5530 buildUnnamed1156() { | 5530 buildUnnamed876() { |
| 5531 var o = new core.List<api.Placement>(); | 5531 var o = new core.List<api.Placement>(); |
| 5532 o.add(buildPlacement()); | 5532 o.add(buildPlacement()); |
| 5533 o.add(buildPlacement()); | 5533 o.add(buildPlacement()); |
| 5534 return o; | 5534 return o; |
| 5535 } | 5535 } |
| 5536 | 5536 |
| 5537 checkUnnamed1156(core.List<api.Placement> o) { | 5537 checkUnnamed876(core.List<api.Placement> o) { |
| 5538 unittest.expect(o, unittest.hasLength(2)); | 5538 unittest.expect(o, unittest.hasLength(2)); |
| 5539 checkPlacement(o[0]); | 5539 checkPlacement(o[0]); |
| 5540 checkPlacement(o[1]); | 5540 checkPlacement(o[1]); |
| 5541 } | 5541 } |
| 5542 | 5542 |
| 5543 core.int buildCounterPlacementsListResponse = 0; | 5543 core.int buildCounterPlacementsListResponse = 0; |
| 5544 buildPlacementsListResponse() { | 5544 buildPlacementsListResponse() { |
| 5545 var o = new api.PlacementsListResponse(); | 5545 var o = new api.PlacementsListResponse(); |
| 5546 buildCounterPlacementsListResponse++; | 5546 buildCounterPlacementsListResponse++; |
| 5547 if (buildCounterPlacementsListResponse < 3) { | 5547 if (buildCounterPlacementsListResponse < 3) { |
| 5548 o.kind = "foo"; | 5548 o.kind = "foo"; |
| 5549 o.nextPageToken = "foo"; | 5549 o.nextPageToken = "foo"; |
| 5550 o.placements = buildUnnamed1156(); | 5550 o.placements = buildUnnamed876(); |
| 5551 } | 5551 } |
| 5552 buildCounterPlacementsListResponse--; | 5552 buildCounterPlacementsListResponse--; |
| 5553 return o; | 5553 return o; |
| 5554 } | 5554 } |
| 5555 | 5555 |
| 5556 checkPlacementsListResponse(api.PlacementsListResponse o) { | 5556 checkPlacementsListResponse(api.PlacementsListResponse o) { |
| 5557 buildCounterPlacementsListResponse++; | 5557 buildCounterPlacementsListResponse++; |
| 5558 if (buildCounterPlacementsListResponse < 3) { | 5558 if (buildCounterPlacementsListResponse < 3) { |
| 5559 unittest.expect(o.kind, unittest.equals('foo')); | 5559 unittest.expect(o.kind, unittest.equals('foo')); |
| 5560 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5560 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5561 checkUnnamed1156(o.placements); | 5561 checkUnnamed876(o.placements); |
| 5562 } | 5562 } |
| 5563 buildCounterPlacementsListResponse--; | 5563 buildCounterPlacementsListResponse--; |
| 5564 } | 5564 } |
| 5565 | 5565 |
| 5566 core.int buildCounterPlatformType = 0; | 5566 core.int buildCounterPlatformType = 0; |
| 5567 buildPlatformType() { | 5567 buildPlatformType() { |
| 5568 var o = new api.PlatformType(); | 5568 var o = new api.PlatformType(); |
| 5569 buildCounterPlatformType++; | 5569 buildCounterPlatformType++; |
| 5570 if (buildCounterPlatformType < 3) { | 5570 if (buildCounterPlatformType < 3) { |
| 5571 o.id = "foo"; | 5571 o.id = "foo"; |
| 5572 o.kind = "foo"; | 5572 o.kind = "foo"; |
| 5573 o.name = "foo"; | 5573 o.name = "foo"; |
| 5574 } | 5574 } |
| 5575 buildCounterPlatformType--; | 5575 buildCounterPlatformType--; |
| 5576 return o; | 5576 return o; |
| 5577 } | 5577 } |
| 5578 | 5578 |
| 5579 checkPlatformType(api.PlatformType o) { | 5579 checkPlatformType(api.PlatformType o) { |
| 5580 buildCounterPlatformType++; | 5580 buildCounterPlatformType++; |
| 5581 if (buildCounterPlatformType < 3) { | 5581 if (buildCounterPlatformType < 3) { |
| 5582 unittest.expect(o.id, unittest.equals('foo')); | 5582 unittest.expect(o.id, unittest.equals('foo')); |
| 5583 unittest.expect(o.kind, unittest.equals('foo')); | 5583 unittest.expect(o.kind, unittest.equals('foo')); |
| 5584 unittest.expect(o.name, unittest.equals('foo')); | 5584 unittest.expect(o.name, unittest.equals('foo')); |
| 5585 } | 5585 } |
| 5586 buildCounterPlatformType--; | 5586 buildCounterPlatformType--; |
| 5587 } | 5587 } |
| 5588 | 5588 |
| 5589 buildUnnamed1157() { | 5589 buildUnnamed877() { |
| 5590 var o = new core.List<api.PlatformType>(); | 5590 var o = new core.List<api.PlatformType>(); |
| 5591 o.add(buildPlatformType()); | 5591 o.add(buildPlatformType()); |
| 5592 o.add(buildPlatformType()); | 5592 o.add(buildPlatformType()); |
| 5593 return o; | 5593 return o; |
| 5594 } | 5594 } |
| 5595 | 5595 |
| 5596 checkUnnamed1157(core.List<api.PlatformType> o) { | 5596 checkUnnamed877(core.List<api.PlatformType> o) { |
| 5597 unittest.expect(o, unittest.hasLength(2)); | 5597 unittest.expect(o, unittest.hasLength(2)); |
| 5598 checkPlatformType(o[0]); | 5598 checkPlatformType(o[0]); |
| 5599 checkPlatformType(o[1]); | 5599 checkPlatformType(o[1]); |
| 5600 } | 5600 } |
| 5601 | 5601 |
| 5602 core.int buildCounterPlatformTypesListResponse = 0; | 5602 core.int buildCounterPlatformTypesListResponse = 0; |
| 5603 buildPlatformTypesListResponse() { | 5603 buildPlatformTypesListResponse() { |
| 5604 var o = new api.PlatformTypesListResponse(); | 5604 var o = new api.PlatformTypesListResponse(); |
| 5605 buildCounterPlatformTypesListResponse++; | 5605 buildCounterPlatformTypesListResponse++; |
| 5606 if (buildCounterPlatformTypesListResponse < 3) { | 5606 if (buildCounterPlatformTypesListResponse < 3) { |
| 5607 o.kind = "foo"; | 5607 o.kind = "foo"; |
| 5608 o.platformTypes = buildUnnamed1157(); | 5608 o.platformTypes = buildUnnamed877(); |
| 5609 } | 5609 } |
| 5610 buildCounterPlatformTypesListResponse--; | 5610 buildCounterPlatformTypesListResponse--; |
| 5611 return o; | 5611 return o; |
| 5612 } | 5612 } |
| 5613 | 5613 |
| 5614 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { | 5614 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { |
| 5615 buildCounterPlatformTypesListResponse++; | 5615 buildCounterPlatformTypesListResponse++; |
| 5616 if (buildCounterPlatformTypesListResponse < 3) { | 5616 if (buildCounterPlatformTypesListResponse < 3) { |
| 5617 unittest.expect(o.kind, unittest.equals('foo')); | 5617 unittest.expect(o.kind, unittest.equals('foo')); |
| 5618 checkUnnamed1157(o.platformTypes); | 5618 checkUnnamed877(o.platformTypes); |
| 5619 } | 5619 } |
| 5620 buildCounterPlatformTypesListResponse--; | 5620 buildCounterPlatformTypesListResponse--; |
| 5621 } | 5621 } |
| 5622 | 5622 |
| 5623 core.int buildCounterPopupWindowProperties = 0; | 5623 core.int buildCounterPopupWindowProperties = 0; |
| 5624 buildPopupWindowProperties() { | 5624 buildPopupWindowProperties() { |
| 5625 var o = new api.PopupWindowProperties(); | 5625 var o = new api.PopupWindowProperties(); |
| 5626 buildCounterPopupWindowProperties++; | 5626 buildCounterPopupWindowProperties++; |
| 5627 if (buildCounterPopupWindowProperties < 3) { | 5627 if (buildCounterPopupWindowProperties < 3) { |
| 5628 o.dimension = buildSize(); | 5628 o.dimension = buildSize(); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5675 if (buildCounterPostalCode < 3) { | 5675 if (buildCounterPostalCode < 3) { |
| 5676 unittest.expect(o.code, unittest.equals('foo')); | 5676 unittest.expect(o.code, unittest.equals('foo')); |
| 5677 unittest.expect(o.countryCode, unittest.equals('foo')); | 5677 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 5678 unittest.expect(o.countryDartId, unittest.equals('foo')); | 5678 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 5679 unittest.expect(o.id, unittest.equals('foo')); | 5679 unittest.expect(o.id, unittest.equals('foo')); |
| 5680 unittest.expect(o.kind, unittest.equals('foo')); | 5680 unittest.expect(o.kind, unittest.equals('foo')); |
| 5681 } | 5681 } |
| 5682 buildCounterPostalCode--; | 5682 buildCounterPostalCode--; |
| 5683 } | 5683 } |
| 5684 | 5684 |
| 5685 buildUnnamed1158() { | 5685 buildUnnamed878() { |
| 5686 var o = new core.List<api.PostalCode>(); | 5686 var o = new core.List<api.PostalCode>(); |
| 5687 o.add(buildPostalCode()); | 5687 o.add(buildPostalCode()); |
| 5688 o.add(buildPostalCode()); | 5688 o.add(buildPostalCode()); |
| 5689 return o; | 5689 return o; |
| 5690 } | 5690 } |
| 5691 | 5691 |
| 5692 checkUnnamed1158(core.List<api.PostalCode> o) { | 5692 checkUnnamed878(core.List<api.PostalCode> o) { |
| 5693 unittest.expect(o, unittest.hasLength(2)); | 5693 unittest.expect(o, unittest.hasLength(2)); |
| 5694 checkPostalCode(o[0]); | 5694 checkPostalCode(o[0]); |
| 5695 checkPostalCode(o[1]); | 5695 checkPostalCode(o[1]); |
| 5696 } | 5696 } |
| 5697 | 5697 |
| 5698 core.int buildCounterPostalCodesListResponse = 0; | 5698 core.int buildCounterPostalCodesListResponse = 0; |
| 5699 buildPostalCodesListResponse() { | 5699 buildPostalCodesListResponse() { |
| 5700 var o = new api.PostalCodesListResponse(); | 5700 var o = new api.PostalCodesListResponse(); |
| 5701 buildCounterPostalCodesListResponse++; | 5701 buildCounterPostalCodesListResponse++; |
| 5702 if (buildCounterPostalCodesListResponse < 3) { | 5702 if (buildCounterPostalCodesListResponse < 3) { |
| 5703 o.kind = "foo"; | 5703 o.kind = "foo"; |
| 5704 o.postalCodes = buildUnnamed1158(); | 5704 o.postalCodes = buildUnnamed878(); |
| 5705 } | 5705 } |
| 5706 buildCounterPostalCodesListResponse--; | 5706 buildCounterPostalCodesListResponse--; |
| 5707 return o; | 5707 return o; |
| 5708 } | 5708 } |
| 5709 | 5709 |
| 5710 checkPostalCodesListResponse(api.PostalCodesListResponse o) { | 5710 checkPostalCodesListResponse(api.PostalCodesListResponse o) { |
| 5711 buildCounterPostalCodesListResponse++; | 5711 buildCounterPostalCodesListResponse++; |
| 5712 if (buildCounterPostalCodesListResponse < 3) { | 5712 if (buildCounterPostalCodesListResponse < 3) { |
| 5713 unittest.expect(o.kind, unittest.equals('foo')); | 5713 unittest.expect(o.kind, unittest.equals('foo')); |
| 5714 checkUnnamed1158(o.postalCodes); | 5714 checkUnnamed878(o.postalCodes); |
| 5715 } | 5715 } |
| 5716 buildCounterPostalCodesListResponse--; | 5716 buildCounterPostalCodesListResponse--; |
| 5717 } | 5717 } |
| 5718 | 5718 |
| 5719 buildUnnamed1159() { | 5719 buildUnnamed879() { |
| 5720 var o = new core.List<api.Flight>(); | 5720 var o = new core.List<api.Flight>(); |
| 5721 o.add(buildFlight()); | 5721 o.add(buildFlight()); |
| 5722 o.add(buildFlight()); | 5722 o.add(buildFlight()); |
| 5723 return o; | 5723 return o; |
| 5724 } | 5724 } |
| 5725 | 5725 |
| 5726 checkUnnamed1159(core.List<api.Flight> o) { | 5726 checkUnnamed879(core.List<api.Flight> o) { |
| 5727 unittest.expect(o, unittest.hasLength(2)); | 5727 unittest.expect(o, unittest.hasLength(2)); |
| 5728 checkFlight(o[0]); | 5728 checkFlight(o[0]); |
| 5729 checkFlight(o[1]); | 5729 checkFlight(o[1]); |
| 5730 } | 5730 } |
| 5731 | 5731 |
| 5732 core.int buildCounterPricing = 0; | 5732 core.int buildCounterPricing = 0; |
| 5733 buildPricing() { | 5733 buildPricing() { |
| 5734 var o = new api.Pricing(); | 5734 var o = new api.Pricing(); |
| 5735 buildCounterPricing++; | 5735 buildCounterPricing++; |
| 5736 if (buildCounterPricing < 3) { | 5736 if (buildCounterPricing < 3) { |
| 5737 o.capCostType = "foo"; | 5737 o.capCostType = "foo"; |
| 5738 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5738 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5739 o.flights = buildUnnamed1159(); | 5739 o.flights = buildUnnamed879(); |
| 5740 o.groupType = "foo"; | 5740 o.groupType = "foo"; |
| 5741 o.pricingType = "foo"; | 5741 o.pricingType = "foo"; |
| 5742 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5742 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5743 } | 5743 } |
| 5744 buildCounterPricing--; | 5744 buildCounterPricing--; |
| 5745 return o; | 5745 return o; |
| 5746 } | 5746 } |
| 5747 | 5747 |
| 5748 checkPricing(api.Pricing o) { | 5748 checkPricing(api.Pricing o) { |
| 5749 buildCounterPricing++; | 5749 buildCounterPricing++; |
| 5750 if (buildCounterPricing < 3) { | 5750 if (buildCounterPricing < 3) { |
| 5751 unittest.expect(o.capCostType, unittest.equals('foo')); | 5751 unittest.expect(o.capCostType, unittest.equals('foo')); |
| 5752 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5752 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 5753 checkUnnamed1159(o.flights); | 5753 checkUnnamed879(o.flights); |
| 5754 unittest.expect(o.groupType, unittest.equals('foo')); | 5754 unittest.expect(o.groupType, unittest.equals('foo')); |
| 5755 unittest.expect(o.pricingType, unittest.equals('foo')); | 5755 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 5756 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5756 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 5757 } | 5757 } |
| 5758 buildCounterPricing--; | 5758 buildCounterPricing--; |
| 5759 } | 5759 } |
| 5760 | 5760 |
| 5761 buildUnnamed1160() { | 5761 buildUnnamed880() { |
| 5762 var o = new core.List<api.PricingSchedulePricingPeriod>(); | 5762 var o = new core.List<api.PricingSchedulePricingPeriod>(); |
| 5763 o.add(buildPricingSchedulePricingPeriod()); | 5763 o.add(buildPricingSchedulePricingPeriod()); |
| 5764 o.add(buildPricingSchedulePricingPeriod()); | 5764 o.add(buildPricingSchedulePricingPeriod()); |
| 5765 return o; | 5765 return o; |
| 5766 } | 5766 } |
| 5767 | 5767 |
| 5768 checkUnnamed1160(core.List<api.PricingSchedulePricingPeriod> o) { | 5768 checkUnnamed880(core.List<api.PricingSchedulePricingPeriod> o) { |
| 5769 unittest.expect(o, unittest.hasLength(2)); | 5769 unittest.expect(o, unittest.hasLength(2)); |
| 5770 checkPricingSchedulePricingPeriod(o[0]); | 5770 checkPricingSchedulePricingPeriod(o[0]); |
| 5771 checkPricingSchedulePricingPeriod(o[1]); | 5771 checkPricingSchedulePricingPeriod(o[1]); |
| 5772 } | 5772 } |
| 5773 | 5773 |
| 5774 core.int buildCounterPricingSchedule = 0; | 5774 core.int buildCounterPricingSchedule = 0; |
| 5775 buildPricingSchedule() { | 5775 buildPricingSchedule() { |
| 5776 var o = new api.PricingSchedule(); | 5776 var o = new api.PricingSchedule(); |
| 5777 buildCounterPricingSchedule++; | 5777 buildCounterPricingSchedule++; |
| 5778 if (buildCounterPricingSchedule < 3) { | 5778 if (buildCounterPricingSchedule < 3) { |
| 5779 o.capCostOption = "foo"; | 5779 o.capCostOption = "foo"; |
| 5780 o.disregardOverdelivery = true; | 5780 o.disregardOverdelivery = true; |
| 5781 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5781 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5782 o.flighted = true; | 5782 o.flighted = true; |
| 5783 o.floodlightActivityId = "foo"; | 5783 o.floodlightActivityId = "foo"; |
| 5784 o.pricingPeriods = buildUnnamed1160(); | 5784 o.pricingPeriods = buildUnnamed880(); |
| 5785 o.pricingType = "foo"; | 5785 o.pricingType = "foo"; |
| 5786 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5786 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5787 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5787 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5788 } | 5788 } |
| 5789 buildCounterPricingSchedule--; | 5789 buildCounterPricingSchedule--; |
| 5790 return o; | 5790 return o; |
| 5791 } | 5791 } |
| 5792 | 5792 |
| 5793 checkPricingSchedule(api.PricingSchedule o) { | 5793 checkPricingSchedule(api.PricingSchedule o) { |
| 5794 buildCounterPricingSchedule++; | 5794 buildCounterPricingSchedule++; |
| 5795 if (buildCounterPricingSchedule < 3) { | 5795 if (buildCounterPricingSchedule < 3) { |
| 5796 unittest.expect(o.capCostOption, unittest.equals('foo')); | 5796 unittest.expect(o.capCostOption, unittest.equals('foo')); |
| 5797 unittest.expect(o.disregardOverdelivery, unittest.isTrue); | 5797 unittest.expect(o.disregardOverdelivery, unittest.isTrue); |
| 5798 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5798 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 5799 unittest.expect(o.flighted, unittest.isTrue); | 5799 unittest.expect(o.flighted, unittest.isTrue); |
| 5800 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 5800 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 5801 checkUnnamed1160(o.pricingPeriods); | 5801 checkUnnamed880(o.pricingPeriods); |
| 5802 unittest.expect(o.pricingType, unittest.equals('foo')); | 5802 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 5803 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5803 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 5804 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); | 5804 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); |
| 5805 } | 5805 } |
| 5806 buildCounterPricingSchedule--; | 5806 buildCounterPricingSchedule--; |
| 5807 } | 5807 } |
| 5808 | 5808 |
| 5809 core.int buildCounterPricingSchedulePricingPeriod = 0; | 5809 core.int buildCounterPricingSchedulePricingPeriod = 0; |
| 5810 buildPricingSchedulePricingPeriod() { | 5810 buildPricingSchedulePricingPeriod() { |
| 5811 var o = new api.PricingSchedulePricingPeriod(); | 5811 var o = new api.PricingSchedulePricingPeriod(); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 5826 if (buildCounterPricingSchedulePricingPeriod < 3) { | 5826 if (buildCounterPricingSchedulePricingPeriod < 3) { |
| 5827 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5827 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 5828 unittest.expect(o.pricingComment, unittest.equals('foo')); | 5828 unittest.expect(o.pricingComment, unittest.equals('foo')); |
| 5829 unittest.expect(o.rateOrCostNanos, unittest.equals('foo')); | 5829 unittest.expect(o.rateOrCostNanos, unittest.equals('foo')); |
| 5830 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5830 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 5831 unittest.expect(o.units, unittest.equals('foo')); | 5831 unittest.expect(o.units, unittest.equals('foo')); |
| 5832 } | 5832 } |
| 5833 buildCounterPricingSchedulePricingPeriod--; | 5833 buildCounterPricingSchedulePricingPeriod--; |
| 5834 } | 5834 } |
| 5835 | 5835 |
| 5836 buildUnnamed1161() { | 5836 buildUnnamed881() { |
| 5837 var o = new core.List<core.String>(); | 5837 var o = new core.List<core.String>(); |
| 5838 o.add("foo"); | 5838 o.add("foo"); |
| 5839 o.add("foo"); | 5839 o.add("foo"); |
| 5840 return o; | 5840 return o; |
| 5841 } | 5841 } |
| 5842 | 5842 |
| 5843 checkUnnamed1161(core.List<core.String> o) { | 5843 checkUnnamed881(core.List<core.String> o) { |
| 5844 unittest.expect(o, unittest.hasLength(2)); | 5844 unittest.expect(o, unittest.hasLength(2)); |
| 5845 unittest.expect(o[0], unittest.equals('foo')); | 5845 unittest.expect(o[0], unittest.equals('foo')); |
| 5846 unittest.expect(o[1], unittest.equals('foo')); | 5846 unittest.expect(o[1], unittest.equals('foo')); |
| 5847 } | 5847 } |
| 5848 | 5848 |
| 5849 buildUnnamed1162() { | 5849 buildUnnamed882() { |
| 5850 var o = new core.List<core.String>(); | 5850 var o = new core.List<core.String>(); |
| 5851 o.add("foo"); | 5851 o.add("foo"); |
| 5852 o.add("foo"); | 5852 o.add("foo"); |
| 5853 return o; | 5853 return o; |
| 5854 } | 5854 } |
| 5855 | 5855 |
| 5856 checkUnnamed1162(core.List<core.String> o) { | 5856 checkUnnamed882(core.List<core.String> o) { |
| 5857 unittest.expect(o, unittest.hasLength(2)); | 5857 unittest.expect(o, unittest.hasLength(2)); |
| 5858 unittest.expect(o[0], unittest.equals('foo')); | 5858 unittest.expect(o[0], unittest.equals('foo')); |
| 5859 unittest.expect(o[1], unittest.equals('foo')); | 5859 unittest.expect(o[1], unittest.equals('foo')); |
| 5860 } | 5860 } |
| 5861 | 5861 |
| 5862 core.int buildCounterProgrammaticSetting = 0; | 5862 core.int buildCounterProgrammaticSetting = 0; |
| 5863 buildProgrammaticSetting() { | 5863 buildProgrammaticSetting() { |
| 5864 var o = new api.ProgrammaticSetting(); | 5864 var o = new api.ProgrammaticSetting(); |
| 5865 buildCounterProgrammaticSetting++; | 5865 buildCounterProgrammaticSetting++; |
| 5866 if (buildCounterProgrammaticSetting < 3) { | 5866 if (buildCounterProgrammaticSetting < 3) { |
| 5867 o.adxDealIds = buildUnnamed1161(); | 5867 o.adxDealIds = buildUnnamed881(); |
| 5868 o.insertionOrderId = "foo"; | 5868 o.insertionOrderId = "foo"; |
| 5869 o.insertionOrderIdStatus = true; | 5869 o.insertionOrderIdStatus = true; |
| 5870 o.mediaCostNanos = "foo"; | 5870 o.mediaCostNanos = "foo"; |
| 5871 o.programmatic = true; | 5871 o.programmatic = true; |
| 5872 o.traffickerEmails = buildUnnamed1162(); | 5872 o.traffickerEmails = buildUnnamed882(); |
| 5873 } | 5873 } |
| 5874 buildCounterProgrammaticSetting--; | 5874 buildCounterProgrammaticSetting--; |
| 5875 return o; | 5875 return o; |
| 5876 } | 5876 } |
| 5877 | 5877 |
| 5878 checkProgrammaticSetting(api.ProgrammaticSetting o) { | 5878 checkProgrammaticSetting(api.ProgrammaticSetting o) { |
| 5879 buildCounterProgrammaticSetting++; | 5879 buildCounterProgrammaticSetting++; |
| 5880 if (buildCounterProgrammaticSetting < 3) { | 5880 if (buildCounterProgrammaticSetting < 3) { |
| 5881 checkUnnamed1161(o.adxDealIds); | 5881 checkUnnamed881(o.adxDealIds); |
| 5882 unittest.expect(o.insertionOrderId, unittest.equals('foo')); | 5882 unittest.expect(o.insertionOrderId, unittest.equals('foo')); |
| 5883 unittest.expect(o.insertionOrderIdStatus, unittest.isTrue); | 5883 unittest.expect(o.insertionOrderIdStatus, unittest.isTrue); |
| 5884 unittest.expect(o.mediaCostNanos, unittest.equals('foo')); | 5884 unittest.expect(o.mediaCostNanos, unittest.equals('foo')); |
| 5885 unittest.expect(o.programmatic, unittest.isTrue); | 5885 unittest.expect(o.programmatic, unittest.isTrue); |
| 5886 checkUnnamed1162(o.traffickerEmails); | 5886 checkUnnamed882(o.traffickerEmails); |
| 5887 } | 5887 } |
| 5888 buildCounterProgrammaticSetting--; | 5888 buildCounterProgrammaticSetting--; |
| 5889 } | 5889 } |
| 5890 | 5890 |
| 5891 core.int buildCounterProject = 0; | 5891 core.int buildCounterProject = 0; |
| 5892 buildProject() { | 5892 buildProject() { |
| 5893 var o = new api.Project(); | 5893 var o = new api.Project(); |
| 5894 buildCounterProject++; | 5894 buildCounterProject++; |
| 5895 if (buildCounterProject < 3) { | 5895 if (buildCounterProject < 3) { |
| 5896 o.accountId = "foo"; | 5896 o.accountId = "foo"; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5940 unittest.expect(o.targetClicks, unittest.equals('foo')); | 5940 unittest.expect(o.targetClicks, unittest.equals('foo')); |
| 5941 unittest.expect(o.targetConversions, unittest.equals('foo')); | 5941 unittest.expect(o.targetConversions, unittest.equals('foo')); |
| 5942 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); | 5942 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); |
| 5943 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); | 5943 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); |
| 5944 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); | 5944 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); |
| 5945 unittest.expect(o.targetImpressions, unittest.equals('foo')); | 5945 unittest.expect(o.targetImpressions, unittest.equals('foo')); |
| 5946 } | 5946 } |
| 5947 buildCounterProject--; | 5947 buildCounterProject--; |
| 5948 } | 5948 } |
| 5949 | 5949 |
| 5950 buildUnnamed1163() { | 5950 buildUnnamed883() { |
| 5951 var o = new core.List<api.Project>(); | 5951 var o = new core.List<api.Project>(); |
| 5952 o.add(buildProject()); | 5952 o.add(buildProject()); |
| 5953 o.add(buildProject()); | 5953 o.add(buildProject()); |
| 5954 return o; | 5954 return o; |
| 5955 } | 5955 } |
| 5956 | 5956 |
| 5957 checkUnnamed1163(core.List<api.Project> o) { | 5957 checkUnnamed883(core.List<api.Project> o) { |
| 5958 unittest.expect(o, unittest.hasLength(2)); | 5958 unittest.expect(o, unittest.hasLength(2)); |
| 5959 checkProject(o[0]); | 5959 checkProject(o[0]); |
| 5960 checkProject(o[1]); | 5960 checkProject(o[1]); |
| 5961 } | 5961 } |
| 5962 | 5962 |
| 5963 core.int buildCounterProjectsListResponse = 0; | 5963 core.int buildCounterProjectsListResponse = 0; |
| 5964 buildProjectsListResponse() { | 5964 buildProjectsListResponse() { |
| 5965 var o = new api.ProjectsListResponse(); | 5965 var o = new api.ProjectsListResponse(); |
| 5966 buildCounterProjectsListResponse++; | 5966 buildCounterProjectsListResponse++; |
| 5967 if (buildCounterProjectsListResponse < 3) { | 5967 if (buildCounterProjectsListResponse < 3) { |
| 5968 o.kind = "foo"; | 5968 o.kind = "foo"; |
| 5969 o.nextPageToken = "foo"; | 5969 o.nextPageToken = "foo"; |
| 5970 o.projects = buildUnnamed1163(); | 5970 o.projects = buildUnnamed883(); |
| 5971 } | 5971 } |
| 5972 buildCounterProjectsListResponse--; | 5972 buildCounterProjectsListResponse--; |
| 5973 return o; | 5973 return o; |
| 5974 } | 5974 } |
| 5975 | 5975 |
| 5976 checkProjectsListResponse(api.ProjectsListResponse o) { | 5976 checkProjectsListResponse(api.ProjectsListResponse o) { |
| 5977 buildCounterProjectsListResponse++; | 5977 buildCounterProjectsListResponse++; |
| 5978 if (buildCounterProjectsListResponse < 3) { | 5978 if (buildCounterProjectsListResponse < 3) { |
| 5979 unittest.expect(o.kind, unittest.equals('foo')); | 5979 unittest.expect(o.kind, unittest.equals('foo')); |
| 5980 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5980 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5981 checkUnnamed1163(o.projects); | 5981 checkUnnamed883(o.projects); |
| 5982 } | 5982 } |
| 5983 buildCounterProjectsListResponse--; | 5983 buildCounterProjectsListResponse--; |
| 5984 } | 5984 } |
| 5985 | 5985 |
| 5986 buildUnnamed1164() { | 5986 buildUnnamed884() { |
| 5987 var o = new core.List<api.Dimension>(); | 5987 var o = new core.List<api.Dimension>(); |
| 5988 o.add(buildDimension()); | 5988 o.add(buildDimension()); |
| 5989 o.add(buildDimension()); | 5989 o.add(buildDimension()); |
| 5990 return o; | 5990 return o; |
| 5991 } | 5991 } |
| 5992 | 5992 |
| 5993 checkUnnamed1164(core.List<api.Dimension> o) { | 5993 checkUnnamed884(core.List<api.Dimension> o) { |
| 5994 unittest.expect(o, unittest.hasLength(2)); | 5994 unittest.expect(o, unittest.hasLength(2)); |
| 5995 checkDimension(o[0]); | 5995 checkDimension(o[0]); |
| 5996 checkDimension(o[1]); | 5996 checkDimension(o[1]); |
| 5997 } | 5997 } |
| 5998 | 5998 |
| 5999 buildUnnamed1165() { | 5999 buildUnnamed885() { |
| 6000 var o = new core.List<api.Dimension>(); | 6000 var o = new core.List<api.Dimension>(); |
| 6001 o.add(buildDimension()); | 6001 o.add(buildDimension()); |
| 6002 o.add(buildDimension()); | 6002 o.add(buildDimension()); |
| 6003 return o; | 6003 return o; |
| 6004 } | 6004 } |
| 6005 | 6005 |
| 6006 checkUnnamed1165(core.List<api.Dimension> o) { | 6006 checkUnnamed885(core.List<api.Dimension> o) { |
| 6007 unittest.expect(o, unittest.hasLength(2)); | 6007 unittest.expect(o, unittest.hasLength(2)); |
| 6008 checkDimension(o[0]); | 6008 checkDimension(o[0]); |
| 6009 checkDimension(o[1]); | 6009 checkDimension(o[1]); |
| 6010 } | 6010 } |
| 6011 | 6011 |
| 6012 buildUnnamed1166() { | 6012 buildUnnamed886() { |
| 6013 var o = new core.List<api.Metric>(); | 6013 var o = new core.List<api.Metric>(); |
| 6014 o.add(buildMetric()); | 6014 o.add(buildMetric()); |
| 6015 o.add(buildMetric()); | 6015 o.add(buildMetric()); |
| 6016 return o; | 6016 return o; |
| 6017 } | 6017 } |
| 6018 | 6018 |
| 6019 checkUnnamed1166(core.List<api.Metric> o) { | 6019 checkUnnamed886(core.List<api.Metric> o) { |
| 6020 unittest.expect(o, unittest.hasLength(2)); | 6020 unittest.expect(o, unittest.hasLength(2)); |
| 6021 checkMetric(o[0]); | 6021 checkMetric(o[0]); |
| 6022 checkMetric(o[1]); | 6022 checkMetric(o[1]); |
| 6023 } | 6023 } |
| 6024 | 6024 |
| 6025 buildUnnamed1167() { | 6025 buildUnnamed887() { |
| 6026 var o = new core.List<api.Metric>(); | 6026 var o = new core.List<api.Metric>(); |
| 6027 o.add(buildMetric()); | 6027 o.add(buildMetric()); |
| 6028 o.add(buildMetric()); | 6028 o.add(buildMetric()); |
| 6029 return o; | 6029 return o; |
| 6030 } | 6030 } |
| 6031 | 6031 |
| 6032 checkUnnamed1167(core.List<api.Metric> o) { | 6032 checkUnnamed887(core.List<api.Metric> o) { |
| 6033 unittest.expect(o, unittest.hasLength(2)); | 6033 unittest.expect(o, unittest.hasLength(2)); |
| 6034 checkMetric(o[0]); | 6034 checkMetric(o[0]); |
| 6035 checkMetric(o[1]); | 6035 checkMetric(o[1]); |
| 6036 } | 6036 } |
| 6037 | 6037 |
| 6038 buildUnnamed1168() { | 6038 buildUnnamed888() { |
| 6039 var o = new core.List<api.Metric>(); | 6039 var o = new core.List<api.Metric>(); |
| 6040 o.add(buildMetric()); | 6040 o.add(buildMetric()); |
| 6041 o.add(buildMetric()); | 6041 o.add(buildMetric()); |
| 6042 return o; | 6042 return o; |
| 6043 } | 6043 } |
| 6044 | 6044 |
| 6045 checkUnnamed1168(core.List<api.Metric> o) { | 6045 checkUnnamed888(core.List<api.Metric> o) { |
| 6046 unittest.expect(o, unittest.hasLength(2)); | 6046 unittest.expect(o, unittest.hasLength(2)); |
| 6047 checkMetric(o[0]); | 6047 checkMetric(o[0]); |
| 6048 checkMetric(o[1]); | 6048 checkMetric(o[1]); |
| 6049 } | 6049 } |
| 6050 | 6050 |
| 6051 core.int buildCounterReachReportCompatibleFields = 0; | 6051 core.int buildCounterReachReportCompatibleFields = 0; |
| 6052 buildReachReportCompatibleFields() { | 6052 buildReachReportCompatibleFields() { |
| 6053 var o = new api.ReachReportCompatibleFields(); | 6053 var o = new api.ReachReportCompatibleFields(); |
| 6054 buildCounterReachReportCompatibleFields++; | 6054 buildCounterReachReportCompatibleFields++; |
| 6055 if (buildCounterReachReportCompatibleFields < 3) { | 6055 if (buildCounterReachReportCompatibleFields < 3) { |
| 6056 o.dimensionFilters = buildUnnamed1164(); | 6056 o.dimensionFilters = buildUnnamed884(); |
| 6057 o.dimensions = buildUnnamed1165(); | 6057 o.dimensions = buildUnnamed885(); |
| 6058 o.kind = "foo"; | 6058 o.kind = "foo"; |
| 6059 o.metrics = buildUnnamed1166(); | 6059 o.metrics = buildUnnamed886(); |
| 6060 o.pivotedActivityMetrics = buildUnnamed1167(); | 6060 o.pivotedActivityMetrics = buildUnnamed887(); |
| 6061 o.reachByFrequencyMetrics = buildUnnamed1168(); | 6061 o.reachByFrequencyMetrics = buildUnnamed888(); |
| 6062 } | 6062 } |
| 6063 buildCounterReachReportCompatibleFields--; | 6063 buildCounterReachReportCompatibleFields--; |
| 6064 return o; | 6064 return o; |
| 6065 } | 6065 } |
| 6066 | 6066 |
| 6067 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { | 6067 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { |
| 6068 buildCounterReachReportCompatibleFields++; | 6068 buildCounterReachReportCompatibleFields++; |
| 6069 if (buildCounterReachReportCompatibleFields < 3) { | 6069 if (buildCounterReachReportCompatibleFields < 3) { |
| 6070 checkUnnamed1164(o.dimensionFilters); | 6070 checkUnnamed884(o.dimensionFilters); |
| 6071 checkUnnamed1165(o.dimensions); | 6071 checkUnnamed885(o.dimensions); |
| 6072 unittest.expect(o.kind, unittest.equals('foo')); | 6072 unittest.expect(o.kind, unittest.equals('foo')); |
| 6073 checkUnnamed1166(o.metrics); | 6073 checkUnnamed886(o.metrics); |
| 6074 checkUnnamed1167(o.pivotedActivityMetrics); | 6074 checkUnnamed887(o.pivotedActivityMetrics); |
| 6075 checkUnnamed1168(o.reachByFrequencyMetrics); | 6075 checkUnnamed888(o.reachByFrequencyMetrics); |
| 6076 } | 6076 } |
| 6077 buildCounterReachReportCompatibleFields--; | 6077 buildCounterReachReportCompatibleFields--; |
| 6078 } | 6078 } |
| 6079 | 6079 |
| 6080 core.int buildCounterRecipient = 0; | 6080 core.int buildCounterRecipient = 0; |
| 6081 buildRecipient() { | 6081 buildRecipient() { |
| 6082 var o = new api.Recipient(); | 6082 var o = new api.Recipient(); |
| 6083 buildCounterRecipient++; | 6083 buildCounterRecipient++; |
| 6084 if (buildCounterRecipient < 3) { | 6084 if (buildCounterRecipient < 3) { |
| 6085 o.deliveryType = "foo"; | 6085 o.deliveryType = "foo"; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6122 unittest.expect(o.countryCode, unittest.equals('foo')); | 6122 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 6123 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6123 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 6124 unittest.expect(o.dartId, unittest.equals('foo')); | 6124 unittest.expect(o.dartId, unittest.equals('foo')); |
| 6125 unittest.expect(o.kind, unittest.equals('foo')); | 6125 unittest.expect(o.kind, unittest.equals('foo')); |
| 6126 unittest.expect(o.name, unittest.equals('foo')); | 6126 unittest.expect(o.name, unittest.equals('foo')); |
| 6127 unittest.expect(o.regionCode, unittest.equals('foo')); | 6127 unittest.expect(o.regionCode, unittest.equals('foo')); |
| 6128 } | 6128 } |
| 6129 buildCounterRegion--; | 6129 buildCounterRegion--; |
| 6130 } | 6130 } |
| 6131 | 6131 |
| 6132 buildUnnamed1169() { | 6132 buildUnnamed889() { |
| 6133 var o = new core.List<api.Region>(); | 6133 var o = new core.List<api.Region>(); |
| 6134 o.add(buildRegion()); | 6134 o.add(buildRegion()); |
| 6135 o.add(buildRegion()); | 6135 o.add(buildRegion()); |
| 6136 return o; | 6136 return o; |
| 6137 } | 6137 } |
| 6138 | 6138 |
| 6139 checkUnnamed1169(core.List<api.Region> o) { | 6139 checkUnnamed889(core.List<api.Region> o) { |
| 6140 unittest.expect(o, unittest.hasLength(2)); | 6140 unittest.expect(o, unittest.hasLength(2)); |
| 6141 checkRegion(o[0]); | 6141 checkRegion(o[0]); |
| 6142 checkRegion(o[1]); | 6142 checkRegion(o[1]); |
| 6143 } | 6143 } |
| 6144 | 6144 |
| 6145 core.int buildCounterRegionsListResponse = 0; | 6145 core.int buildCounterRegionsListResponse = 0; |
| 6146 buildRegionsListResponse() { | 6146 buildRegionsListResponse() { |
| 6147 var o = new api.RegionsListResponse(); | 6147 var o = new api.RegionsListResponse(); |
| 6148 buildCounterRegionsListResponse++; | 6148 buildCounterRegionsListResponse++; |
| 6149 if (buildCounterRegionsListResponse < 3) { | 6149 if (buildCounterRegionsListResponse < 3) { |
| 6150 o.kind = "foo"; | 6150 o.kind = "foo"; |
| 6151 o.regions = buildUnnamed1169(); | 6151 o.regions = buildUnnamed889(); |
| 6152 } | 6152 } |
| 6153 buildCounterRegionsListResponse--; | 6153 buildCounterRegionsListResponse--; |
| 6154 return o; | 6154 return o; |
| 6155 } | 6155 } |
| 6156 | 6156 |
| 6157 checkRegionsListResponse(api.RegionsListResponse o) { | 6157 checkRegionsListResponse(api.RegionsListResponse o) { |
| 6158 buildCounterRegionsListResponse++; | 6158 buildCounterRegionsListResponse++; |
| 6159 if (buildCounterRegionsListResponse < 3) { | 6159 if (buildCounterRegionsListResponse < 3) { |
| 6160 unittest.expect(o.kind, unittest.equals('foo')); | 6160 unittest.expect(o.kind, unittest.equals('foo')); |
| 6161 checkUnnamed1169(o.regions); | 6161 checkUnnamed889(o.regions); |
| 6162 } | 6162 } |
| 6163 buildCounterRegionsListResponse--; | 6163 buildCounterRegionsListResponse--; |
| 6164 } | 6164 } |
| 6165 | 6165 |
| 6166 core.int buildCounterRemarketingList = 0; | 6166 core.int buildCounterRemarketingList = 0; |
| 6167 buildRemarketingList() { | 6167 buildRemarketingList() { |
| 6168 var o = new api.RemarketingList(); | 6168 var o = new api.RemarketingList(); |
| 6169 buildCounterRemarketingList++; | 6169 buildCounterRemarketingList++; |
| 6170 if (buildCounterRemarketingList < 3) { | 6170 if (buildCounterRemarketingList < 3) { |
| 6171 o.accountId = "foo"; | 6171 o.accountId = "foo"; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 6199 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 6199 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 6200 checkListPopulationRule(o.listPopulationRule); | 6200 checkListPopulationRule(o.listPopulationRule); |
| 6201 unittest.expect(o.listSize, unittest.equals('foo')); | 6201 unittest.expect(o.listSize, unittest.equals('foo')); |
| 6202 unittest.expect(o.listSource, unittest.equals('foo')); | 6202 unittest.expect(o.listSource, unittest.equals('foo')); |
| 6203 unittest.expect(o.name, unittest.equals('foo')); | 6203 unittest.expect(o.name, unittest.equals('foo')); |
| 6204 unittest.expect(o.subaccountId, unittest.equals('foo')); | 6204 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 6205 } | 6205 } |
| 6206 buildCounterRemarketingList--; | 6206 buildCounterRemarketingList--; |
| 6207 } | 6207 } |
| 6208 | 6208 |
| 6209 buildUnnamed1170() { | 6209 buildUnnamed890() { |
| 6210 var o = new core.List<core.String>(); | 6210 var o = new core.List<core.String>(); |
| 6211 o.add("foo"); | 6211 o.add("foo"); |
| 6212 o.add("foo"); | 6212 o.add("foo"); |
| 6213 return o; | 6213 return o; |
| 6214 } | 6214 } |
| 6215 | 6215 |
| 6216 checkUnnamed1170(core.List<core.String> o) { | 6216 checkUnnamed890(core.List<core.String> o) { |
| 6217 unittest.expect(o, unittest.hasLength(2)); | 6217 unittest.expect(o, unittest.hasLength(2)); |
| 6218 unittest.expect(o[0], unittest.equals('foo')); | 6218 unittest.expect(o[0], unittest.equals('foo')); |
| 6219 unittest.expect(o[1], unittest.equals('foo')); | 6219 unittest.expect(o[1], unittest.equals('foo')); |
| 6220 } | 6220 } |
| 6221 | 6221 |
| 6222 buildUnnamed1171() { | 6222 buildUnnamed891() { |
| 6223 var o = new core.List<core.String>(); | 6223 var o = new core.List<core.String>(); |
| 6224 o.add("foo"); | 6224 o.add("foo"); |
| 6225 o.add("foo"); | 6225 o.add("foo"); |
| 6226 return o; | 6226 return o; |
| 6227 } | 6227 } |
| 6228 | 6228 |
| 6229 checkUnnamed1171(core.List<core.String> o) { | 6229 checkUnnamed891(core.List<core.String> o) { |
| 6230 unittest.expect(o, unittest.hasLength(2)); | 6230 unittest.expect(o, unittest.hasLength(2)); |
| 6231 unittest.expect(o[0], unittest.equals('foo')); | 6231 unittest.expect(o[0], unittest.equals('foo')); |
| 6232 unittest.expect(o[1], unittest.equals('foo')); | 6232 unittest.expect(o[1], unittest.equals('foo')); |
| 6233 } | 6233 } |
| 6234 | 6234 |
| 6235 core.int buildCounterRemarketingListShare = 0; | 6235 core.int buildCounterRemarketingListShare = 0; |
| 6236 buildRemarketingListShare() { | 6236 buildRemarketingListShare() { |
| 6237 var o = new api.RemarketingListShare(); | 6237 var o = new api.RemarketingListShare(); |
| 6238 buildCounterRemarketingListShare++; | 6238 buildCounterRemarketingListShare++; |
| 6239 if (buildCounterRemarketingListShare < 3) { | 6239 if (buildCounterRemarketingListShare < 3) { |
| 6240 o.kind = "foo"; | 6240 o.kind = "foo"; |
| 6241 o.remarketingListId = "foo"; | 6241 o.remarketingListId = "foo"; |
| 6242 o.sharedAccountIds = buildUnnamed1170(); | 6242 o.sharedAccountIds = buildUnnamed890(); |
| 6243 o.sharedAdvertiserIds = buildUnnamed1171(); | 6243 o.sharedAdvertiserIds = buildUnnamed891(); |
| 6244 } | 6244 } |
| 6245 buildCounterRemarketingListShare--; | 6245 buildCounterRemarketingListShare--; |
| 6246 return o; | 6246 return o; |
| 6247 } | 6247 } |
| 6248 | 6248 |
| 6249 checkRemarketingListShare(api.RemarketingListShare o) { | 6249 checkRemarketingListShare(api.RemarketingListShare o) { |
| 6250 buildCounterRemarketingListShare++; | 6250 buildCounterRemarketingListShare++; |
| 6251 if (buildCounterRemarketingListShare < 3) { | 6251 if (buildCounterRemarketingListShare < 3) { |
| 6252 unittest.expect(o.kind, unittest.equals('foo')); | 6252 unittest.expect(o.kind, unittest.equals('foo')); |
| 6253 unittest.expect(o.remarketingListId, unittest.equals('foo')); | 6253 unittest.expect(o.remarketingListId, unittest.equals('foo')); |
| 6254 checkUnnamed1170(o.sharedAccountIds); | 6254 checkUnnamed890(o.sharedAccountIds); |
| 6255 checkUnnamed1171(o.sharedAdvertiserIds); | 6255 checkUnnamed891(o.sharedAdvertiserIds); |
| 6256 } | 6256 } |
| 6257 buildCounterRemarketingListShare--; | 6257 buildCounterRemarketingListShare--; |
| 6258 } | 6258 } |
| 6259 | 6259 |
| 6260 buildUnnamed1172() { | 6260 buildUnnamed892() { |
| 6261 var o = new core.List<api.RemarketingList>(); | 6261 var o = new core.List<api.RemarketingList>(); |
| 6262 o.add(buildRemarketingList()); | 6262 o.add(buildRemarketingList()); |
| 6263 o.add(buildRemarketingList()); | 6263 o.add(buildRemarketingList()); |
| 6264 return o; | 6264 return o; |
| 6265 } | 6265 } |
| 6266 | 6266 |
| 6267 checkUnnamed1172(core.List<api.RemarketingList> o) { | 6267 checkUnnamed892(core.List<api.RemarketingList> o) { |
| 6268 unittest.expect(o, unittest.hasLength(2)); | 6268 unittest.expect(o, unittest.hasLength(2)); |
| 6269 checkRemarketingList(o[0]); | 6269 checkRemarketingList(o[0]); |
| 6270 checkRemarketingList(o[1]); | 6270 checkRemarketingList(o[1]); |
| 6271 } | 6271 } |
| 6272 | 6272 |
| 6273 core.int buildCounterRemarketingListsListResponse = 0; | 6273 core.int buildCounterRemarketingListsListResponse = 0; |
| 6274 buildRemarketingListsListResponse() { | 6274 buildRemarketingListsListResponse() { |
| 6275 var o = new api.RemarketingListsListResponse(); | 6275 var o = new api.RemarketingListsListResponse(); |
| 6276 buildCounterRemarketingListsListResponse++; | 6276 buildCounterRemarketingListsListResponse++; |
| 6277 if (buildCounterRemarketingListsListResponse < 3) { | 6277 if (buildCounterRemarketingListsListResponse < 3) { |
| 6278 o.kind = "foo"; | 6278 o.kind = "foo"; |
| 6279 o.nextPageToken = "foo"; | 6279 o.nextPageToken = "foo"; |
| 6280 o.remarketingLists = buildUnnamed1172(); | 6280 o.remarketingLists = buildUnnamed892(); |
| 6281 } | 6281 } |
| 6282 buildCounterRemarketingListsListResponse--; | 6282 buildCounterRemarketingListsListResponse--; |
| 6283 return o; | 6283 return o; |
| 6284 } | 6284 } |
| 6285 | 6285 |
| 6286 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { | 6286 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { |
| 6287 buildCounterRemarketingListsListResponse++; | 6287 buildCounterRemarketingListsListResponse++; |
| 6288 if (buildCounterRemarketingListsListResponse < 3) { | 6288 if (buildCounterRemarketingListsListResponse < 3) { |
| 6289 unittest.expect(o.kind, unittest.equals('foo')); | 6289 unittest.expect(o.kind, unittest.equals('foo')); |
| 6290 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6290 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6291 checkUnnamed1172(o.remarketingLists); | 6291 checkUnnamed892(o.remarketingLists); |
| 6292 } | 6292 } |
| 6293 buildCounterRemarketingListsListResponse--; | 6293 buildCounterRemarketingListsListResponse--; |
| 6294 } | 6294 } |
| 6295 | 6295 |
| 6296 buildUnnamed1173() { | 6296 buildUnnamed893() { |
| 6297 var o = new core.List<api.DimensionValue>(); | 6297 var o = new core.List<api.DimensionValue>(); |
| 6298 o.add(buildDimensionValue()); | 6298 o.add(buildDimensionValue()); |
| 6299 o.add(buildDimensionValue()); | 6299 o.add(buildDimensionValue()); |
| 6300 return o; | 6300 return o; |
| 6301 } | 6301 } |
| 6302 | 6302 |
| 6303 checkUnnamed1173(core.List<api.DimensionValue> o) { | 6303 checkUnnamed893(core.List<api.DimensionValue> o) { |
| 6304 unittest.expect(o, unittest.hasLength(2)); | 6304 unittest.expect(o, unittest.hasLength(2)); |
| 6305 checkDimensionValue(o[0]); | 6305 checkDimensionValue(o[0]); |
| 6306 checkDimensionValue(o[1]); | 6306 checkDimensionValue(o[1]); |
| 6307 } | 6307 } |
| 6308 | 6308 |
| 6309 buildUnnamed1174() { | 6309 buildUnnamed894() { |
| 6310 var o = new core.List<api.SortedDimension>(); | 6310 var o = new core.List<api.SortedDimension>(); |
| 6311 o.add(buildSortedDimension()); | 6311 o.add(buildSortedDimension()); |
| 6312 o.add(buildSortedDimension()); | 6312 o.add(buildSortedDimension()); |
| 6313 return o; | 6313 return o; |
| 6314 } | 6314 } |
| 6315 | 6315 |
| 6316 checkUnnamed1174(core.List<api.SortedDimension> o) { | 6316 checkUnnamed894(core.List<api.SortedDimension> o) { |
| 6317 unittest.expect(o, unittest.hasLength(2)); | 6317 unittest.expect(o, unittest.hasLength(2)); |
| 6318 checkSortedDimension(o[0]); | 6318 checkSortedDimension(o[0]); |
| 6319 checkSortedDimension(o[1]); | 6319 checkSortedDimension(o[1]); |
| 6320 } | 6320 } |
| 6321 | 6321 |
| 6322 buildUnnamed1175() { | 6322 buildUnnamed895() { |
| 6323 var o = new core.List<core.String>(); | 6323 var o = new core.List<core.String>(); |
| 6324 o.add("foo"); | 6324 o.add("foo"); |
| 6325 o.add("foo"); | 6325 o.add("foo"); |
| 6326 return o; | 6326 return o; |
| 6327 } | 6327 } |
| 6328 | 6328 |
| 6329 checkUnnamed1175(core.List<core.String> o) { | 6329 checkUnnamed895(core.List<core.String> o) { |
| 6330 unittest.expect(o, unittest.hasLength(2)); | 6330 unittest.expect(o, unittest.hasLength(2)); |
| 6331 unittest.expect(o[0], unittest.equals('foo')); | 6331 unittest.expect(o[0], unittest.equals('foo')); |
| 6332 unittest.expect(o[1], unittest.equals('foo')); | 6332 unittest.expect(o[1], unittest.equals('foo')); |
| 6333 } | 6333 } |
| 6334 | 6334 |
| 6335 core.int buildCounterReportCriteria = 0; | 6335 core.int buildCounterReportCriteria = 0; |
| 6336 buildReportCriteria() { | 6336 buildReportCriteria() { |
| 6337 var o = new api.ReportCriteria(); | 6337 var o = new api.ReportCriteria(); |
| 6338 buildCounterReportCriteria++; | 6338 buildCounterReportCriteria++; |
| 6339 if (buildCounterReportCriteria < 3) { | 6339 if (buildCounterReportCriteria < 3) { |
| 6340 o.activities = buildActivities(); | 6340 o.activities = buildActivities(); |
| 6341 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6341 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6342 o.dateRange = buildDateRange(); | 6342 o.dateRange = buildDateRange(); |
| 6343 o.dimensionFilters = buildUnnamed1173(); | 6343 o.dimensionFilters = buildUnnamed893(); |
| 6344 o.dimensions = buildUnnamed1174(); | 6344 o.dimensions = buildUnnamed894(); |
| 6345 o.metricNames = buildUnnamed1175(); | 6345 o.metricNames = buildUnnamed895(); |
| 6346 } | 6346 } |
| 6347 buildCounterReportCriteria--; | 6347 buildCounterReportCriteria--; |
| 6348 return o; | 6348 return o; |
| 6349 } | 6349 } |
| 6350 | 6350 |
| 6351 checkReportCriteria(api.ReportCriteria o) { | 6351 checkReportCriteria(api.ReportCriteria o) { |
| 6352 buildCounterReportCriteria++; | 6352 buildCounterReportCriteria++; |
| 6353 if (buildCounterReportCriteria < 3) { | 6353 if (buildCounterReportCriteria < 3) { |
| 6354 checkActivities(o.activities); | 6354 checkActivities(o.activities); |
| 6355 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6355 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6356 checkDateRange(o.dateRange); | 6356 checkDateRange(o.dateRange); |
| 6357 checkUnnamed1173(o.dimensionFilters); | 6357 checkUnnamed893(o.dimensionFilters); |
| 6358 checkUnnamed1174(o.dimensions); | 6358 checkUnnamed894(o.dimensions); |
| 6359 checkUnnamed1175(o.metricNames); | 6359 checkUnnamed895(o.metricNames); |
| 6360 } | 6360 } |
| 6361 buildCounterReportCriteria--; | 6361 buildCounterReportCriteria--; |
| 6362 } | 6362 } |
| 6363 | 6363 |
| 6364 buildUnnamed1176() { | 6364 buildUnnamed896() { |
| 6365 var o = new core.List<api.SortedDimension>(); | 6365 var o = new core.List<api.SortedDimension>(); |
| 6366 o.add(buildSortedDimension()); | 6366 o.add(buildSortedDimension()); |
| 6367 o.add(buildSortedDimension()); | 6367 o.add(buildSortedDimension()); |
| 6368 return o; | 6368 return o; |
| 6369 } | 6369 } |
| 6370 | 6370 |
| 6371 checkUnnamed1176(core.List<api.SortedDimension> o) { | 6371 checkUnnamed896(core.List<api.SortedDimension> o) { |
| 6372 unittest.expect(o, unittest.hasLength(2)); | 6372 unittest.expect(o, unittest.hasLength(2)); |
| 6373 checkSortedDimension(o[0]); | 6373 checkSortedDimension(o[0]); |
| 6374 checkSortedDimension(o[1]); | 6374 checkSortedDimension(o[1]); |
| 6375 } | 6375 } |
| 6376 | 6376 |
| 6377 buildUnnamed1177() { | 6377 buildUnnamed897() { |
| 6378 var o = new core.List<api.DimensionValue>(); | 6378 var o = new core.List<api.DimensionValue>(); |
| 6379 o.add(buildDimensionValue()); | 6379 o.add(buildDimensionValue()); |
| 6380 o.add(buildDimensionValue()); | 6380 o.add(buildDimensionValue()); |
| 6381 return o; | 6381 return o; |
| 6382 } | 6382 } |
| 6383 | 6383 |
| 6384 checkUnnamed1177(core.List<api.DimensionValue> o) { | 6384 checkUnnamed897(core.List<api.DimensionValue> o) { |
| 6385 unittest.expect(o, unittest.hasLength(2)); | 6385 unittest.expect(o, unittest.hasLength(2)); |
| 6386 checkDimensionValue(o[0]); | 6386 checkDimensionValue(o[0]); |
| 6387 checkDimensionValue(o[1]); | 6387 checkDimensionValue(o[1]); |
| 6388 } | 6388 } |
| 6389 | 6389 |
| 6390 buildUnnamed1178() { | 6390 buildUnnamed898() { |
| 6391 var o = new core.List<core.String>(); | 6391 var o = new core.List<core.String>(); |
| 6392 o.add("foo"); | 6392 o.add("foo"); |
| 6393 o.add("foo"); | 6393 o.add("foo"); |
| 6394 return o; | 6394 return o; |
| 6395 } | 6395 } |
| 6396 | 6396 |
| 6397 checkUnnamed1178(core.List<core.String> o) { | 6397 checkUnnamed898(core.List<core.String> o) { |
| 6398 unittest.expect(o, unittest.hasLength(2)); | 6398 unittest.expect(o, unittest.hasLength(2)); |
| 6399 unittest.expect(o[0], unittest.equals('foo')); | 6399 unittest.expect(o[0], unittest.equals('foo')); |
| 6400 unittest.expect(o[1], unittest.equals('foo')); | 6400 unittest.expect(o[1], unittest.equals('foo')); |
| 6401 } | 6401 } |
| 6402 | 6402 |
| 6403 buildUnnamed1179() { | 6403 buildUnnamed899() { |
| 6404 var o = new core.List<core.String>(); | 6404 var o = new core.List<core.String>(); |
| 6405 o.add("foo"); | 6405 o.add("foo"); |
| 6406 o.add("foo"); | 6406 o.add("foo"); |
| 6407 return o; | 6407 return o; |
| 6408 } | 6408 } |
| 6409 | 6409 |
| 6410 checkUnnamed1179(core.List<core.String> o) { | 6410 checkUnnamed899(core.List<core.String> o) { |
| 6411 unittest.expect(o, unittest.hasLength(2)); | 6411 unittest.expect(o, unittest.hasLength(2)); |
| 6412 unittest.expect(o[0], unittest.equals('foo')); | 6412 unittest.expect(o[0], unittest.equals('foo')); |
| 6413 unittest.expect(o[1], unittest.equals('foo')); | 6413 unittest.expect(o[1], unittest.equals('foo')); |
| 6414 } | 6414 } |
| 6415 | 6415 |
| 6416 core.int buildCounterReportCrossDimensionReachCriteria = 0; | 6416 core.int buildCounterReportCrossDimensionReachCriteria = 0; |
| 6417 buildReportCrossDimensionReachCriteria() { | 6417 buildReportCrossDimensionReachCriteria() { |
| 6418 var o = new api.ReportCrossDimensionReachCriteria(); | 6418 var o = new api.ReportCrossDimensionReachCriteria(); |
| 6419 buildCounterReportCrossDimensionReachCriteria++; | 6419 buildCounterReportCrossDimensionReachCriteria++; |
| 6420 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6420 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6421 o.breakdown = buildUnnamed1176(); | 6421 o.breakdown = buildUnnamed896(); |
| 6422 o.dateRange = buildDateRange(); | 6422 o.dateRange = buildDateRange(); |
| 6423 o.dimension = "foo"; | 6423 o.dimension = "foo"; |
| 6424 o.dimensionFilters = buildUnnamed1177(); | 6424 o.dimensionFilters = buildUnnamed897(); |
| 6425 o.metricNames = buildUnnamed1178(); | 6425 o.metricNames = buildUnnamed898(); |
| 6426 o.overlapMetricNames = buildUnnamed1179(); | 6426 o.overlapMetricNames = buildUnnamed899(); |
| 6427 o.pivoted = true; | 6427 o.pivoted = true; |
| 6428 } | 6428 } |
| 6429 buildCounterReportCrossDimensionReachCriteria--; | 6429 buildCounterReportCrossDimensionReachCriteria--; |
| 6430 return o; | 6430 return o; |
| 6431 } | 6431 } |
| 6432 | 6432 |
| 6433 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ | 6433 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ |
| 6434 buildCounterReportCrossDimensionReachCriteria++; | 6434 buildCounterReportCrossDimensionReachCriteria++; |
| 6435 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6435 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6436 checkUnnamed1176(o.breakdown); | 6436 checkUnnamed896(o.breakdown); |
| 6437 checkDateRange(o.dateRange); | 6437 checkDateRange(o.dateRange); |
| 6438 unittest.expect(o.dimension, unittest.equals('foo')); | 6438 unittest.expect(o.dimension, unittest.equals('foo')); |
| 6439 checkUnnamed1177(o.dimensionFilters); | 6439 checkUnnamed897(o.dimensionFilters); |
| 6440 checkUnnamed1178(o.metricNames); | 6440 checkUnnamed898(o.metricNames); |
| 6441 checkUnnamed1179(o.overlapMetricNames); | 6441 checkUnnamed899(o.overlapMetricNames); |
| 6442 unittest.expect(o.pivoted, unittest.isTrue); | 6442 unittest.expect(o.pivoted, unittest.isTrue); |
| 6443 } | 6443 } |
| 6444 buildCounterReportCrossDimensionReachCriteria--; | 6444 buildCounterReportCrossDimensionReachCriteria--; |
| 6445 } | 6445 } |
| 6446 | 6446 |
| 6447 buildUnnamed1180() { | 6447 buildUnnamed900() { |
| 6448 var o = new core.List<api.Recipient>(); | 6448 var o = new core.List<api.Recipient>(); |
| 6449 o.add(buildRecipient()); | 6449 o.add(buildRecipient()); |
| 6450 o.add(buildRecipient()); | 6450 o.add(buildRecipient()); |
| 6451 return o; | 6451 return o; |
| 6452 } | 6452 } |
| 6453 | 6453 |
| 6454 checkUnnamed1180(core.List<api.Recipient> o) { | 6454 checkUnnamed900(core.List<api.Recipient> o) { |
| 6455 unittest.expect(o, unittest.hasLength(2)); | 6455 unittest.expect(o, unittest.hasLength(2)); |
| 6456 checkRecipient(o[0]); | 6456 checkRecipient(o[0]); |
| 6457 checkRecipient(o[1]); | 6457 checkRecipient(o[1]); |
| 6458 } | 6458 } |
| 6459 | 6459 |
| 6460 core.int buildCounterReportDelivery = 0; | 6460 core.int buildCounterReportDelivery = 0; |
| 6461 buildReportDelivery() { | 6461 buildReportDelivery() { |
| 6462 var o = new api.ReportDelivery(); | 6462 var o = new api.ReportDelivery(); |
| 6463 buildCounterReportDelivery++; | 6463 buildCounterReportDelivery++; |
| 6464 if (buildCounterReportDelivery < 3) { | 6464 if (buildCounterReportDelivery < 3) { |
| 6465 o.emailOwner = true; | 6465 o.emailOwner = true; |
| 6466 o.emailOwnerDeliveryType = "foo"; | 6466 o.emailOwnerDeliveryType = "foo"; |
| 6467 o.message = "foo"; | 6467 o.message = "foo"; |
| 6468 o.recipients = buildUnnamed1180(); | 6468 o.recipients = buildUnnamed900(); |
| 6469 } | 6469 } |
| 6470 buildCounterReportDelivery--; | 6470 buildCounterReportDelivery--; |
| 6471 return o; | 6471 return o; |
| 6472 } | 6472 } |
| 6473 | 6473 |
| 6474 checkReportDelivery(api.ReportDelivery o) { | 6474 checkReportDelivery(api.ReportDelivery o) { |
| 6475 buildCounterReportDelivery++; | 6475 buildCounterReportDelivery++; |
| 6476 if (buildCounterReportDelivery < 3) { | 6476 if (buildCounterReportDelivery < 3) { |
| 6477 unittest.expect(o.emailOwner, unittest.isTrue); | 6477 unittest.expect(o.emailOwner, unittest.isTrue); |
| 6478 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); | 6478 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); |
| 6479 unittest.expect(o.message, unittest.equals('foo')); | 6479 unittest.expect(o.message, unittest.equals('foo')); |
| 6480 checkUnnamed1180(o.recipients); | 6480 checkUnnamed900(o.recipients); |
| 6481 } | 6481 } |
| 6482 buildCounterReportDelivery--; | 6482 buildCounterReportDelivery--; |
| 6483 } | 6483 } |
| 6484 | 6484 |
| 6485 buildUnnamed1181() { | 6485 buildUnnamed901() { |
| 6486 var o = new core.List<api.DimensionValue>(); | 6486 var o = new core.List<api.DimensionValue>(); |
| 6487 o.add(buildDimensionValue()); | 6487 o.add(buildDimensionValue()); |
| 6488 o.add(buildDimensionValue()); | 6488 o.add(buildDimensionValue()); |
| 6489 return o; | 6489 return o; |
| 6490 } | 6490 } |
| 6491 | 6491 |
| 6492 checkUnnamed1181(core.List<api.DimensionValue> o) { | 6492 checkUnnamed901(core.List<api.DimensionValue> o) { |
| 6493 unittest.expect(o, unittest.hasLength(2)); | 6493 unittest.expect(o, unittest.hasLength(2)); |
| 6494 checkDimensionValue(o[0]); | 6494 checkDimensionValue(o[0]); |
| 6495 checkDimensionValue(o[1]); | 6495 checkDimensionValue(o[1]); |
| 6496 } | 6496 } |
| 6497 | 6497 |
| 6498 buildUnnamed1182() { | 6498 buildUnnamed902() { |
| 6499 var o = new core.List<api.DimensionValue>(); | 6499 var o = new core.List<api.DimensionValue>(); |
| 6500 o.add(buildDimensionValue()); | 6500 o.add(buildDimensionValue()); |
| 6501 o.add(buildDimensionValue()); | 6501 o.add(buildDimensionValue()); |
| 6502 return o; | 6502 return o; |
| 6503 } | 6503 } |
| 6504 | 6504 |
| 6505 checkUnnamed1182(core.List<api.DimensionValue> o) { | 6505 checkUnnamed902(core.List<api.DimensionValue> o) { |
| 6506 unittest.expect(o, unittest.hasLength(2)); | 6506 unittest.expect(o, unittest.hasLength(2)); |
| 6507 checkDimensionValue(o[0]); | 6507 checkDimensionValue(o[0]); |
| 6508 checkDimensionValue(o[1]); | 6508 checkDimensionValue(o[1]); |
| 6509 } | 6509 } |
| 6510 | 6510 |
| 6511 buildUnnamed1183() { | 6511 buildUnnamed903() { |
| 6512 var o = new core.List<api.SortedDimension>(); | 6512 var o = new core.List<api.SortedDimension>(); |
| 6513 o.add(buildSortedDimension()); | 6513 o.add(buildSortedDimension()); |
| 6514 o.add(buildSortedDimension()); | 6514 o.add(buildSortedDimension()); |
| 6515 return o; | 6515 return o; |
| 6516 } | 6516 } |
| 6517 | 6517 |
| 6518 checkUnnamed1183(core.List<api.SortedDimension> o) { | 6518 checkUnnamed903(core.List<api.SortedDimension> o) { |
| 6519 unittest.expect(o, unittest.hasLength(2)); | 6519 unittest.expect(o, unittest.hasLength(2)); |
| 6520 checkSortedDimension(o[0]); | 6520 checkSortedDimension(o[0]); |
| 6521 checkSortedDimension(o[1]); | 6521 checkSortedDimension(o[1]); |
| 6522 } | 6522 } |
| 6523 | 6523 |
| 6524 buildUnnamed1184() { | 6524 buildUnnamed904() { |
| 6525 var o = new core.List<core.String>(); | 6525 var o = new core.List<core.String>(); |
| 6526 o.add("foo"); | 6526 o.add("foo"); |
| 6527 o.add("foo"); | 6527 o.add("foo"); |
| 6528 return o; | 6528 return o; |
| 6529 } | 6529 } |
| 6530 | 6530 |
| 6531 checkUnnamed1184(core.List<core.String> o) { | 6531 checkUnnamed904(core.List<core.String> o) { |
| 6532 unittest.expect(o, unittest.hasLength(2)); | 6532 unittest.expect(o, unittest.hasLength(2)); |
| 6533 unittest.expect(o[0], unittest.equals('foo')); | 6533 unittest.expect(o[0], unittest.equals('foo')); |
| 6534 unittest.expect(o[1], unittest.equals('foo')); | 6534 unittest.expect(o[1], unittest.equals('foo')); |
| 6535 } | 6535 } |
| 6536 | 6536 |
| 6537 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; | 6537 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; |
| 6538 buildReportFloodlightCriteriaReportProperties() { | 6538 buildReportFloodlightCriteriaReportProperties() { |
| 6539 var o = new api.ReportFloodlightCriteriaReportProperties(); | 6539 var o = new api.ReportFloodlightCriteriaReportProperties(); |
| 6540 buildCounterReportFloodlightCriteriaReportProperties++; | 6540 buildCounterReportFloodlightCriteriaReportProperties++; |
| 6541 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { | 6541 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 6555 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); | 6555 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); |
| 6556 } | 6556 } |
| 6557 buildCounterReportFloodlightCriteriaReportProperties--; | 6557 buildCounterReportFloodlightCriteriaReportProperties--; |
| 6558 } | 6558 } |
| 6559 | 6559 |
| 6560 core.int buildCounterReportFloodlightCriteria = 0; | 6560 core.int buildCounterReportFloodlightCriteria = 0; |
| 6561 buildReportFloodlightCriteria() { | 6561 buildReportFloodlightCriteria() { |
| 6562 var o = new api.ReportFloodlightCriteria(); | 6562 var o = new api.ReportFloodlightCriteria(); |
| 6563 buildCounterReportFloodlightCriteria++; | 6563 buildCounterReportFloodlightCriteria++; |
| 6564 if (buildCounterReportFloodlightCriteria < 3) { | 6564 if (buildCounterReportFloodlightCriteria < 3) { |
| 6565 o.customRichMediaEvents = buildUnnamed1181(); | 6565 o.customRichMediaEvents = buildUnnamed901(); |
| 6566 o.dateRange = buildDateRange(); | 6566 o.dateRange = buildDateRange(); |
| 6567 o.dimensionFilters = buildUnnamed1182(); | 6567 o.dimensionFilters = buildUnnamed902(); |
| 6568 o.dimensions = buildUnnamed1183(); | 6568 o.dimensions = buildUnnamed903(); |
| 6569 o.floodlightConfigId = buildDimensionValue(); | 6569 o.floodlightConfigId = buildDimensionValue(); |
| 6570 o.metricNames = buildUnnamed1184(); | 6570 o.metricNames = buildUnnamed904(); |
| 6571 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); | 6571 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); |
| 6572 } | 6572 } |
| 6573 buildCounterReportFloodlightCriteria--; | 6573 buildCounterReportFloodlightCriteria--; |
| 6574 return o; | 6574 return o; |
| 6575 } | 6575 } |
| 6576 | 6576 |
| 6577 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { | 6577 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { |
| 6578 buildCounterReportFloodlightCriteria++; | 6578 buildCounterReportFloodlightCriteria++; |
| 6579 if (buildCounterReportFloodlightCriteria < 3) { | 6579 if (buildCounterReportFloodlightCriteria < 3) { |
| 6580 checkUnnamed1181(o.customRichMediaEvents); | 6580 checkUnnamed901(o.customRichMediaEvents); |
| 6581 checkDateRange(o.dateRange); | 6581 checkDateRange(o.dateRange); |
| 6582 checkUnnamed1182(o.dimensionFilters); | 6582 checkUnnamed902(o.dimensionFilters); |
| 6583 checkUnnamed1183(o.dimensions); | 6583 checkUnnamed903(o.dimensions); |
| 6584 checkDimensionValue(o.floodlightConfigId); | 6584 checkDimensionValue(o.floodlightConfigId); |
| 6585 checkUnnamed1184(o.metricNames); | 6585 checkUnnamed904(o.metricNames); |
| 6586 checkReportFloodlightCriteriaReportProperties(o.reportProperties); | 6586 checkReportFloodlightCriteriaReportProperties(o.reportProperties); |
| 6587 } | 6587 } |
| 6588 buildCounterReportFloodlightCriteria--; | 6588 buildCounterReportFloodlightCriteria--; |
| 6589 } | 6589 } |
| 6590 | 6590 |
| 6591 buildUnnamed1185() { | 6591 buildUnnamed905() { |
| 6592 var o = new core.List<api.DimensionValue>(); | 6592 var o = new core.List<api.DimensionValue>(); |
| 6593 o.add(buildDimensionValue()); | 6593 o.add(buildDimensionValue()); |
| 6594 o.add(buildDimensionValue()); | 6594 o.add(buildDimensionValue()); |
| 6595 return o; | 6595 return o; |
| 6596 } | 6596 } |
| 6597 | 6597 |
| 6598 checkUnnamed1185(core.List<api.DimensionValue> o) { | 6598 checkUnnamed905(core.List<api.DimensionValue> o) { |
| 6599 unittest.expect(o, unittest.hasLength(2)); | 6599 unittest.expect(o, unittest.hasLength(2)); |
| 6600 checkDimensionValue(o[0]); | 6600 checkDimensionValue(o[0]); |
| 6601 checkDimensionValue(o[1]); | 6601 checkDimensionValue(o[1]); |
| 6602 } | 6602 } |
| 6603 | 6603 |
| 6604 buildUnnamed1186() { | 6604 buildUnnamed906() { |
| 6605 var o = new core.List<api.SortedDimension>(); | 6605 var o = new core.List<api.SortedDimension>(); |
| 6606 o.add(buildSortedDimension()); | 6606 o.add(buildSortedDimension()); |
| 6607 o.add(buildSortedDimension()); | 6607 o.add(buildSortedDimension()); |
| 6608 return o; | 6608 return o; |
| 6609 } | 6609 } |
| 6610 | 6610 |
| 6611 checkUnnamed1186(core.List<api.SortedDimension> o) { | 6611 checkUnnamed906(core.List<api.SortedDimension> o) { |
| 6612 unittest.expect(o, unittest.hasLength(2)); | 6612 unittest.expect(o, unittest.hasLength(2)); |
| 6613 checkSortedDimension(o[0]); | 6613 checkSortedDimension(o[0]); |
| 6614 checkSortedDimension(o[1]); | 6614 checkSortedDimension(o[1]); |
| 6615 } | 6615 } |
| 6616 | 6616 |
| 6617 buildUnnamed1187() { | 6617 buildUnnamed907() { |
| 6618 var o = new core.List<api.SortedDimension>(); | 6618 var o = new core.List<api.SortedDimension>(); |
| 6619 o.add(buildSortedDimension()); | 6619 o.add(buildSortedDimension()); |
| 6620 o.add(buildSortedDimension()); | 6620 o.add(buildSortedDimension()); |
| 6621 return o; | 6621 return o; |
| 6622 } | 6622 } |
| 6623 | 6623 |
| 6624 checkUnnamed1187(core.List<api.SortedDimension> o) { | 6624 checkUnnamed907(core.List<api.SortedDimension> o) { |
| 6625 unittest.expect(o, unittest.hasLength(2)); | 6625 unittest.expect(o, unittest.hasLength(2)); |
| 6626 checkSortedDimension(o[0]); | 6626 checkSortedDimension(o[0]); |
| 6627 checkSortedDimension(o[1]); | 6627 checkSortedDimension(o[1]); |
| 6628 } | 6628 } |
| 6629 | 6629 |
| 6630 buildUnnamed1188() { | 6630 buildUnnamed908() { |
| 6631 var o = new core.List<api.DimensionValue>(); | 6631 var o = new core.List<api.DimensionValue>(); |
| 6632 o.add(buildDimensionValue()); | 6632 o.add(buildDimensionValue()); |
| 6633 o.add(buildDimensionValue()); | 6633 o.add(buildDimensionValue()); |
| 6634 return o; | 6634 return o; |
| 6635 } | 6635 } |
| 6636 | 6636 |
| 6637 checkUnnamed1188(core.List<api.DimensionValue> o) { | 6637 checkUnnamed908(core.List<api.DimensionValue> o) { |
| 6638 unittest.expect(o, unittest.hasLength(2)); | 6638 unittest.expect(o, unittest.hasLength(2)); |
| 6639 checkDimensionValue(o[0]); | 6639 checkDimensionValue(o[0]); |
| 6640 checkDimensionValue(o[1]); | 6640 checkDimensionValue(o[1]); |
| 6641 } | 6641 } |
| 6642 | 6642 |
| 6643 buildUnnamed1189() { | 6643 buildUnnamed909() { |
| 6644 var o = new core.List<core.String>(); | 6644 var o = new core.List<core.String>(); |
| 6645 o.add("foo"); | 6645 o.add("foo"); |
| 6646 o.add("foo"); | 6646 o.add("foo"); |
| 6647 return o; | 6647 return o; |
| 6648 } | 6648 } |
| 6649 | 6649 |
| 6650 checkUnnamed1189(core.List<core.String> o) { | 6650 checkUnnamed909(core.List<core.String> o) { |
| 6651 unittest.expect(o, unittest.hasLength(2)); | 6651 unittest.expect(o, unittest.hasLength(2)); |
| 6652 unittest.expect(o[0], unittest.equals('foo')); | 6652 unittest.expect(o[0], unittest.equals('foo')); |
| 6653 unittest.expect(o[1], unittest.equals('foo')); | 6653 unittest.expect(o[1], unittest.equals('foo')); |
| 6654 } | 6654 } |
| 6655 | 6655 |
| 6656 buildUnnamed1190() { | 6656 buildUnnamed910() { |
| 6657 var o = new core.List<api.SortedDimension>(); | 6657 var o = new core.List<api.SortedDimension>(); |
| 6658 o.add(buildSortedDimension()); | 6658 o.add(buildSortedDimension()); |
| 6659 o.add(buildSortedDimension()); | 6659 o.add(buildSortedDimension()); |
| 6660 return o; | 6660 return o; |
| 6661 } | 6661 } |
| 6662 | 6662 |
| 6663 checkUnnamed1190(core.List<api.SortedDimension> o) { | 6663 checkUnnamed910(core.List<api.SortedDimension> o) { |
| 6664 unittest.expect(o, unittest.hasLength(2)); | 6664 unittest.expect(o, unittest.hasLength(2)); |
| 6665 checkSortedDimension(o[0]); | 6665 checkSortedDimension(o[0]); |
| 6666 checkSortedDimension(o[1]); | 6666 checkSortedDimension(o[1]); |
| 6667 } | 6667 } |
| 6668 | 6668 |
| 6669 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; | 6669 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; |
| 6670 buildReportPathToConversionCriteriaReportProperties() { | 6670 buildReportPathToConversionCriteriaReportProperties() { |
| 6671 var o = new api.ReportPathToConversionCriteriaReportProperties(); | 6671 var o = new api.ReportPathToConversionCriteriaReportProperties(); |
| 6672 buildCounterReportPathToConversionCriteriaReportProperties++; | 6672 buildCounterReportPathToConversionCriteriaReportProperties++; |
| 6673 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { | 6673 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 6699 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); | 6699 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); |
| 6700 } | 6700 } |
| 6701 buildCounterReportPathToConversionCriteriaReportProperties--; | 6701 buildCounterReportPathToConversionCriteriaReportProperties--; |
| 6702 } | 6702 } |
| 6703 | 6703 |
| 6704 core.int buildCounterReportPathToConversionCriteria = 0; | 6704 core.int buildCounterReportPathToConversionCriteria = 0; |
| 6705 buildReportPathToConversionCriteria() { | 6705 buildReportPathToConversionCriteria() { |
| 6706 var o = new api.ReportPathToConversionCriteria(); | 6706 var o = new api.ReportPathToConversionCriteria(); |
| 6707 buildCounterReportPathToConversionCriteria++; | 6707 buildCounterReportPathToConversionCriteria++; |
| 6708 if (buildCounterReportPathToConversionCriteria < 3) { | 6708 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6709 o.activityFilters = buildUnnamed1185(); | 6709 o.activityFilters = buildUnnamed905(); |
| 6710 o.conversionDimensions = buildUnnamed1186(); | 6710 o.conversionDimensions = buildUnnamed906(); |
| 6711 o.customFloodlightVariables = buildUnnamed1187(); | 6711 o.customFloodlightVariables = buildUnnamed907(); |
| 6712 o.customRichMediaEvents = buildUnnamed1188(); | 6712 o.customRichMediaEvents = buildUnnamed908(); |
| 6713 o.dateRange = buildDateRange(); | 6713 o.dateRange = buildDateRange(); |
| 6714 o.floodlightConfigId = buildDimensionValue(); | 6714 o.floodlightConfigId = buildDimensionValue(); |
| 6715 o.metricNames = buildUnnamed1189(); | 6715 o.metricNames = buildUnnamed909(); |
| 6716 o.perInteractionDimensions = buildUnnamed1190(); | 6716 o.perInteractionDimensions = buildUnnamed910(); |
| 6717 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); | 6717 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); |
| 6718 } | 6718 } |
| 6719 buildCounterReportPathToConversionCriteria--; | 6719 buildCounterReportPathToConversionCriteria--; |
| 6720 return o; | 6720 return o; |
| 6721 } | 6721 } |
| 6722 | 6722 |
| 6723 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { | 6723 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { |
| 6724 buildCounterReportPathToConversionCriteria++; | 6724 buildCounterReportPathToConversionCriteria++; |
| 6725 if (buildCounterReportPathToConversionCriteria < 3) { | 6725 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6726 checkUnnamed1185(o.activityFilters); | 6726 checkUnnamed905(o.activityFilters); |
| 6727 checkUnnamed1186(o.conversionDimensions); | 6727 checkUnnamed906(o.conversionDimensions); |
| 6728 checkUnnamed1187(o.customFloodlightVariables); | 6728 checkUnnamed907(o.customFloodlightVariables); |
| 6729 checkUnnamed1188(o.customRichMediaEvents); | 6729 checkUnnamed908(o.customRichMediaEvents); |
| 6730 checkDateRange(o.dateRange); | 6730 checkDateRange(o.dateRange); |
| 6731 checkDimensionValue(o.floodlightConfigId); | 6731 checkDimensionValue(o.floodlightConfigId); |
| 6732 checkUnnamed1189(o.metricNames); | 6732 checkUnnamed909(o.metricNames); |
| 6733 checkUnnamed1190(o.perInteractionDimensions); | 6733 checkUnnamed910(o.perInteractionDimensions); |
| 6734 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); | 6734 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); |
| 6735 } | 6735 } |
| 6736 buildCounterReportPathToConversionCriteria--; | 6736 buildCounterReportPathToConversionCriteria--; |
| 6737 } | 6737 } |
| 6738 | 6738 |
| 6739 buildUnnamed1191() { | 6739 buildUnnamed911() { |
| 6740 var o = new core.List<api.DimensionValue>(); | 6740 var o = new core.List<api.DimensionValue>(); |
| 6741 o.add(buildDimensionValue()); | 6741 o.add(buildDimensionValue()); |
| 6742 o.add(buildDimensionValue()); | 6742 o.add(buildDimensionValue()); |
| 6743 return o; | 6743 return o; |
| 6744 } | 6744 } |
| 6745 | 6745 |
| 6746 checkUnnamed1191(core.List<api.DimensionValue> o) { | 6746 checkUnnamed911(core.List<api.DimensionValue> o) { |
| 6747 unittest.expect(o, unittest.hasLength(2)); | 6747 unittest.expect(o, unittest.hasLength(2)); |
| 6748 checkDimensionValue(o[0]); | 6748 checkDimensionValue(o[0]); |
| 6749 checkDimensionValue(o[1]); | 6749 checkDimensionValue(o[1]); |
| 6750 } | 6750 } |
| 6751 | 6751 |
| 6752 buildUnnamed1192() { | 6752 buildUnnamed912() { |
| 6753 var o = new core.List<api.SortedDimension>(); | 6753 var o = new core.List<api.SortedDimension>(); |
| 6754 o.add(buildSortedDimension()); | 6754 o.add(buildSortedDimension()); |
| 6755 o.add(buildSortedDimension()); | 6755 o.add(buildSortedDimension()); |
| 6756 return o; | 6756 return o; |
| 6757 } | 6757 } |
| 6758 | 6758 |
| 6759 checkUnnamed1192(core.List<api.SortedDimension> o) { | 6759 checkUnnamed912(core.List<api.SortedDimension> o) { |
| 6760 unittest.expect(o, unittest.hasLength(2)); | 6760 unittest.expect(o, unittest.hasLength(2)); |
| 6761 checkSortedDimension(o[0]); | 6761 checkSortedDimension(o[0]); |
| 6762 checkSortedDimension(o[1]); | 6762 checkSortedDimension(o[1]); |
| 6763 } | 6763 } |
| 6764 | 6764 |
| 6765 buildUnnamed1193() { | 6765 buildUnnamed913() { |
| 6766 var o = new core.List<core.String>(); | 6766 var o = new core.List<core.String>(); |
| 6767 o.add("foo"); | 6767 o.add("foo"); |
| 6768 o.add("foo"); | 6768 o.add("foo"); |
| 6769 return o; | 6769 return o; |
| 6770 } | 6770 } |
| 6771 | 6771 |
| 6772 checkUnnamed1193(core.List<core.String> o) { | 6772 checkUnnamed913(core.List<core.String> o) { |
| 6773 unittest.expect(o, unittest.hasLength(2)); | 6773 unittest.expect(o, unittest.hasLength(2)); |
| 6774 unittest.expect(o[0], unittest.equals('foo')); | 6774 unittest.expect(o[0], unittest.equals('foo')); |
| 6775 unittest.expect(o[1], unittest.equals('foo')); | 6775 unittest.expect(o[1], unittest.equals('foo')); |
| 6776 } | 6776 } |
| 6777 | 6777 |
| 6778 buildUnnamed1194() { | 6778 buildUnnamed914() { |
| 6779 var o = new core.List<core.String>(); | 6779 var o = new core.List<core.String>(); |
| 6780 o.add("foo"); | 6780 o.add("foo"); |
| 6781 o.add("foo"); | 6781 o.add("foo"); |
| 6782 return o; | 6782 return o; |
| 6783 } | 6783 } |
| 6784 | 6784 |
| 6785 checkUnnamed1194(core.List<core.String> o) { | 6785 checkUnnamed914(core.List<core.String> o) { |
| 6786 unittest.expect(o, unittest.hasLength(2)); | 6786 unittest.expect(o, unittest.hasLength(2)); |
| 6787 unittest.expect(o[0], unittest.equals('foo')); | 6787 unittest.expect(o[0], unittest.equals('foo')); |
| 6788 unittest.expect(o[1], unittest.equals('foo')); | 6788 unittest.expect(o[1], unittest.equals('foo')); |
| 6789 } | 6789 } |
| 6790 | 6790 |
| 6791 core.int buildCounterReportReachCriteria = 0; | 6791 core.int buildCounterReportReachCriteria = 0; |
| 6792 buildReportReachCriteria() { | 6792 buildReportReachCriteria() { |
| 6793 var o = new api.ReportReachCriteria(); | 6793 var o = new api.ReportReachCriteria(); |
| 6794 buildCounterReportReachCriteria++; | 6794 buildCounterReportReachCriteria++; |
| 6795 if (buildCounterReportReachCriteria < 3) { | 6795 if (buildCounterReportReachCriteria < 3) { |
| 6796 o.activities = buildActivities(); | 6796 o.activities = buildActivities(); |
| 6797 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6797 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6798 o.dateRange = buildDateRange(); | 6798 o.dateRange = buildDateRange(); |
| 6799 o.dimensionFilters = buildUnnamed1191(); | 6799 o.dimensionFilters = buildUnnamed911(); |
| 6800 o.dimensions = buildUnnamed1192(); | 6800 o.dimensions = buildUnnamed912(); |
| 6801 o.enableAllDimensionCombinations = true; | 6801 o.enableAllDimensionCombinations = true; |
| 6802 o.metricNames = buildUnnamed1193(); | 6802 o.metricNames = buildUnnamed913(); |
| 6803 o.reachByFrequencyMetricNames = buildUnnamed1194(); | 6803 o.reachByFrequencyMetricNames = buildUnnamed914(); |
| 6804 } | 6804 } |
| 6805 buildCounterReportReachCriteria--; | 6805 buildCounterReportReachCriteria--; |
| 6806 return o; | 6806 return o; |
| 6807 } | 6807 } |
| 6808 | 6808 |
| 6809 checkReportReachCriteria(api.ReportReachCriteria o) { | 6809 checkReportReachCriteria(api.ReportReachCriteria o) { |
| 6810 buildCounterReportReachCriteria++; | 6810 buildCounterReportReachCriteria++; |
| 6811 if (buildCounterReportReachCriteria < 3) { | 6811 if (buildCounterReportReachCriteria < 3) { |
| 6812 checkActivities(o.activities); | 6812 checkActivities(o.activities); |
| 6813 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6813 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6814 checkDateRange(o.dateRange); | 6814 checkDateRange(o.dateRange); |
| 6815 checkUnnamed1191(o.dimensionFilters); | 6815 checkUnnamed911(o.dimensionFilters); |
| 6816 checkUnnamed1192(o.dimensions); | 6816 checkUnnamed912(o.dimensions); |
| 6817 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); | 6817 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); |
| 6818 checkUnnamed1193(o.metricNames); | 6818 checkUnnamed913(o.metricNames); |
| 6819 checkUnnamed1194(o.reachByFrequencyMetricNames); | 6819 checkUnnamed914(o.reachByFrequencyMetricNames); |
| 6820 } | 6820 } |
| 6821 buildCounterReportReachCriteria--; | 6821 buildCounterReportReachCriteria--; |
| 6822 } | 6822 } |
| 6823 | 6823 |
| 6824 buildUnnamed1195() { | 6824 buildUnnamed915() { |
| 6825 var o = new core.List<core.String>(); | 6825 var o = new core.List<core.String>(); |
| 6826 o.add("foo"); | 6826 o.add("foo"); |
| 6827 o.add("foo"); | 6827 o.add("foo"); |
| 6828 return o; | 6828 return o; |
| 6829 } | 6829 } |
| 6830 | 6830 |
| 6831 checkUnnamed1195(core.List<core.String> o) { | 6831 checkUnnamed915(core.List<core.String> o) { |
| 6832 unittest.expect(o, unittest.hasLength(2)); | 6832 unittest.expect(o, unittest.hasLength(2)); |
| 6833 unittest.expect(o[0], unittest.equals('foo')); | 6833 unittest.expect(o[0], unittest.equals('foo')); |
| 6834 unittest.expect(o[1], unittest.equals('foo')); | 6834 unittest.expect(o[1], unittest.equals('foo')); |
| 6835 } | 6835 } |
| 6836 | 6836 |
| 6837 core.int buildCounterReportSchedule = 0; | 6837 core.int buildCounterReportSchedule = 0; |
| 6838 buildReportSchedule() { | 6838 buildReportSchedule() { |
| 6839 var o = new api.ReportSchedule(); | 6839 var o = new api.ReportSchedule(); |
| 6840 buildCounterReportSchedule++; | 6840 buildCounterReportSchedule++; |
| 6841 if (buildCounterReportSchedule < 3) { | 6841 if (buildCounterReportSchedule < 3) { |
| 6842 o.active = true; | 6842 o.active = true; |
| 6843 o.every = 42; | 6843 o.every = 42; |
| 6844 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6844 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6845 o.repeats = "foo"; | 6845 o.repeats = "foo"; |
| 6846 o.repeatsOnWeekDays = buildUnnamed1195(); | 6846 o.repeatsOnWeekDays = buildUnnamed915(); |
| 6847 o.runsOnDayOfMonth = "foo"; | 6847 o.runsOnDayOfMonth = "foo"; |
| 6848 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6848 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6849 } | 6849 } |
| 6850 buildCounterReportSchedule--; | 6850 buildCounterReportSchedule--; |
| 6851 return o; | 6851 return o; |
| 6852 } | 6852 } |
| 6853 | 6853 |
| 6854 checkReportSchedule(api.ReportSchedule o) { | 6854 checkReportSchedule(api.ReportSchedule o) { |
| 6855 buildCounterReportSchedule++; | 6855 buildCounterReportSchedule++; |
| 6856 if (buildCounterReportSchedule < 3) { | 6856 if (buildCounterReportSchedule < 3) { |
| 6857 unittest.expect(o.active, unittest.isTrue); | 6857 unittest.expect(o.active, unittest.isTrue); |
| 6858 unittest.expect(o.every, unittest.equals(42)); | 6858 unittest.expect(o.every, unittest.equals(42)); |
| 6859 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); | 6859 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); |
| 6860 unittest.expect(o.repeats, unittest.equals('foo')); | 6860 unittest.expect(o.repeats, unittest.equals('foo')); |
| 6861 checkUnnamed1195(o.repeatsOnWeekDays); | 6861 checkUnnamed915(o.repeatsOnWeekDays); |
| 6862 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); | 6862 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); |
| 6863 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6863 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 6864 } | 6864 } |
| 6865 buildCounterReportSchedule--; | 6865 buildCounterReportSchedule--; |
| 6866 } | 6866 } |
| 6867 | 6867 |
| 6868 core.int buildCounterReport = 0; | 6868 core.int buildCounterReport = 0; |
| 6869 buildReport() { | 6869 buildReport() { |
| 6870 var o = new api.Report(); | 6870 var o = new api.Report(); |
| 6871 buildCounterReport++; | 6871 buildCounterReport++; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6911 unittest.expect(o.ownerProfileId, unittest.equals('foo')); | 6911 unittest.expect(o.ownerProfileId, unittest.equals('foo')); |
| 6912 checkReportPathToConversionCriteria(o.pathToConversionCriteria); | 6912 checkReportPathToConversionCriteria(o.pathToConversionCriteria); |
| 6913 checkReportReachCriteria(o.reachCriteria); | 6913 checkReportReachCriteria(o.reachCriteria); |
| 6914 checkReportSchedule(o.schedule); | 6914 checkReportSchedule(o.schedule); |
| 6915 unittest.expect(o.subAccountId, unittest.equals('foo')); | 6915 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 6916 unittest.expect(o.type, unittest.equals('foo')); | 6916 unittest.expect(o.type, unittest.equals('foo')); |
| 6917 } | 6917 } |
| 6918 buildCounterReport--; | 6918 buildCounterReport--; |
| 6919 } | 6919 } |
| 6920 | 6920 |
| 6921 buildUnnamed1196() { | 6921 buildUnnamed916() { |
| 6922 var o = new core.List<api.Dimension>(); | 6922 var o = new core.List<api.Dimension>(); |
| 6923 o.add(buildDimension()); | 6923 o.add(buildDimension()); |
| 6924 o.add(buildDimension()); | 6924 o.add(buildDimension()); |
| 6925 return o; | 6925 return o; |
| 6926 } | 6926 } |
| 6927 | 6927 |
| 6928 checkUnnamed1196(core.List<api.Dimension> o) { | 6928 checkUnnamed916(core.List<api.Dimension> o) { |
| 6929 unittest.expect(o, unittest.hasLength(2)); | 6929 unittest.expect(o, unittest.hasLength(2)); |
| 6930 checkDimension(o[0]); | 6930 checkDimension(o[0]); |
| 6931 checkDimension(o[1]); | 6931 checkDimension(o[1]); |
| 6932 } | 6932 } |
| 6933 | 6933 |
| 6934 buildUnnamed1197() { | 6934 buildUnnamed917() { |
| 6935 var o = new core.List<api.Dimension>(); | 6935 var o = new core.List<api.Dimension>(); |
| 6936 o.add(buildDimension()); | 6936 o.add(buildDimension()); |
| 6937 o.add(buildDimension()); | 6937 o.add(buildDimension()); |
| 6938 return o; | 6938 return o; |
| 6939 } | 6939 } |
| 6940 | 6940 |
| 6941 checkUnnamed1197(core.List<api.Dimension> o) { | 6941 checkUnnamed917(core.List<api.Dimension> o) { |
| 6942 unittest.expect(o, unittest.hasLength(2)); | 6942 unittest.expect(o, unittest.hasLength(2)); |
| 6943 checkDimension(o[0]); | 6943 checkDimension(o[0]); |
| 6944 checkDimension(o[1]); | 6944 checkDimension(o[1]); |
| 6945 } | 6945 } |
| 6946 | 6946 |
| 6947 buildUnnamed1198() { | 6947 buildUnnamed918() { |
| 6948 var o = new core.List<api.Metric>(); | 6948 var o = new core.List<api.Metric>(); |
| 6949 o.add(buildMetric()); | 6949 o.add(buildMetric()); |
| 6950 o.add(buildMetric()); | 6950 o.add(buildMetric()); |
| 6951 return o; | 6951 return o; |
| 6952 } | 6952 } |
| 6953 | 6953 |
| 6954 checkUnnamed1198(core.List<api.Metric> o) { | 6954 checkUnnamed918(core.List<api.Metric> o) { |
| 6955 unittest.expect(o, unittest.hasLength(2)); | 6955 unittest.expect(o, unittest.hasLength(2)); |
| 6956 checkMetric(o[0]); | 6956 checkMetric(o[0]); |
| 6957 checkMetric(o[1]); | 6957 checkMetric(o[1]); |
| 6958 } | 6958 } |
| 6959 | 6959 |
| 6960 buildUnnamed1199() { | 6960 buildUnnamed919() { |
| 6961 var o = new core.List<api.Metric>(); | 6961 var o = new core.List<api.Metric>(); |
| 6962 o.add(buildMetric()); | 6962 o.add(buildMetric()); |
| 6963 o.add(buildMetric()); | 6963 o.add(buildMetric()); |
| 6964 return o; | 6964 return o; |
| 6965 } | 6965 } |
| 6966 | 6966 |
| 6967 checkUnnamed1199(core.List<api.Metric> o) { | 6967 checkUnnamed919(core.List<api.Metric> o) { |
| 6968 unittest.expect(o, unittest.hasLength(2)); | 6968 unittest.expect(o, unittest.hasLength(2)); |
| 6969 checkMetric(o[0]); | 6969 checkMetric(o[0]); |
| 6970 checkMetric(o[1]); | 6970 checkMetric(o[1]); |
| 6971 } | 6971 } |
| 6972 | 6972 |
| 6973 core.int buildCounterReportCompatibleFields = 0; | 6973 core.int buildCounterReportCompatibleFields = 0; |
| 6974 buildReportCompatibleFields() { | 6974 buildReportCompatibleFields() { |
| 6975 var o = new api.ReportCompatibleFields(); | 6975 var o = new api.ReportCompatibleFields(); |
| 6976 buildCounterReportCompatibleFields++; | 6976 buildCounterReportCompatibleFields++; |
| 6977 if (buildCounterReportCompatibleFields < 3) { | 6977 if (buildCounterReportCompatibleFields < 3) { |
| 6978 o.dimensionFilters = buildUnnamed1196(); | 6978 o.dimensionFilters = buildUnnamed916(); |
| 6979 o.dimensions = buildUnnamed1197(); | 6979 o.dimensions = buildUnnamed917(); |
| 6980 o.kind = "foo"; | 6980 o.kind = "foo"; |
| 6981 o.metrics = buildUnnamed1198(); | 6981 o.metrics = buildUnnamed918(); |
| 6982 o.pivotedActivityMetrics = buildUnnamed1199(); | 6982 o.pivotedActivityMetrics = buildUnnamed919(); |
| 6983 } | 6983 } |
| 6984 buildCounterReportCompatibleFields--; | 6984 buildCounterReportCompatibleFields--; |
| 6985 return o; | 6985 return o; |
| 6986 } | 6986 } |
| 6987 | 6987 |
| 6988 checkReportCompatibleFields(api.ReportCompatibleFields o) { | 6988 checkReportCompatibleFields(api.ReportCompatibleFields o) { |
| 6989 buildCounterReportCompatibleFields++; | 6989 buildCounterReportCompatibleFields++; |
| 6990 if (buildCounterReportCompatibleFields < 3) { | 6990 if (buildCounterReportCompatibleFields < 3) { |
| 6991 checkUnnamed1196(o.dimensionFilters); | 6991 checkUnnamed916(o.dimensionFilters); |
| 6992 checkUnnamed1197(o.dimensions); | 6992 checkUnnamed917(o.dimensions); |
| 6993 unittest.expect(o.kind, unittest.equals('foo')); | 6993 unittest.expect(o.kind, unittest.equals('foo')); |
| 6994 checkUnnamed1198(o.metrics); | 6994 checkUnnamed918(o.metrics); |
| 6995 checkUnnamed1199(o.pivotedActivityMetrics); | 6995 checkUnnamed919(o.pivotedActivityMetrics); |
| 6996 } | 6996 } |
| 6997 buildCounterReportCompatibleFields--; | 6997 buildCounterReportCompatibleFields--; |
| 6998 } | 6998 } |
| 6999 | 6999 |
| 7000 buildUnnamed1200() { | 7000 buildUnnamed920() { |
| 7001 var o = new core.List<api.Report>(); | 7001 var o = new core.List<api.Report>(); |
| 7002 o.add(buildReport()); | 7002 o.add(buildReport()); |
| 7003 o.add(buildReport()); | 7003 o.add(buildReport()); |
| 7004 return o; | 7004 return o; |
| 7005 } | 7005 } |
| 7006 | 7006 |
| 7007 checkUnnamed1200(core.List<api.Report> o) { | 7007 checkUnnamed920(core.List<api.Report> o) { |
| 7008 unittest.expect(o, unittest.hasLength(2)); | 7008 unittest.expect(o, unittest.hasLength(2)); |
| 7009 checkReport(o[0]); | 7009 checkReport(o[0]); |
| 7010 checkReport(o[1]); | 7010 checkReport(o[1]); |
| 7011 } | 7011 } |
| 7012 | 7012 |
| 7013 core.int buildCounterReportList = 0; | 7013 core.int buildCounterReportList = 0; |
| 7014 buildReportList() { | 7014 buildReportList() { |
| 7015 var o = new api.ReportList(); | 7015 var o = new api.ReportList(); |
| 7016 buildCounterReportList++; | 7016 buildCounterReportList++; |
| 7017 if (buildCounterReportList < 3) { | 7017 if (buildCounterReportList < 3) { |
| 7018 o.etag = "foo"; | 7018 o.etag = "foo"; |
| 7019 o.items = buildUnnamed1200(); | 7019 o.items = buildUnnamed920(); |
| 7020 o.kind = "foo"; | 7020 o.kind = "foo"; |
| 7021 o.nextPageToken = "foo"; | 7021 o.nextPageToken = "foo"; |
| 7022 } | 7022 } |
| 7023 buildCounterReportList--; | 7023 buildCounterReportList--; |
| 7024 return o; | 7024 return o; |
| 7025 } | 7025 } |
| 7026 | 7026 |
| 7027 checkReportList(api.ReportList o) { | 7027 checkReportList(api.ReportList o) { |
| 7028 buildCounterReportList++; | 7028 buildCounterReportList++; |
| 7029 if (buildCounterReportList < 3) { | 7029 if (buildCounterReportList < 3) { |
| 7030 unittest.expect(o.etag, unittest.equals('foo')); | 7030 unittest.expect(o.etag, unittest.equals('foo')); |
| 7031 checkUnnamed1200(o.items); | 7031 checkUnnamed920(o.items); |
| 7032 unittest.expect(o.kind, unittest.equals('foo')); | 7032 unittest.expect(o.kind, unittest.equals('foo')); |
| 7033 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7033 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7034 } | 7034 } |
| 7035 buildCounterReportList--; | 7035 buildCounterReportList--; |
| 7036 } | 7036 } |
| 7037 | 7037 |
| 7038 core.int buildCounterReportsConfiguration = 0; | 7038 core.int buildCounterReportsConfiguration = 0; |
| 7039 buildReportsConfiguration() { | 7039 buildReportsConfiguration() { |
| 7040 var o = new api.ReportsConfiguration(); | 7040 var o = new api.ReportsConfiguration(); |
| 7041 buildCounterReportsConfiguration++; | 7041 buildCounterReportsConfiguration++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7074 checkRichMediaExitOverride(api.RichMediaExitOverride o) { | 7074 checkRichMediaExitOverride(api.RichMediaExitOverride o) { |
| 7075 buildCounterRichMediaExitOverride++; | 7075 buildCounterRichMediaExitOverride++; |
| 7076 if (buildCounterRichMediaExitOverride < 3) { | 7076 if (buildCounterRichMediaExitOverride < 3) { |
| 7077 unittest.expect(o.customExitUrl, unittest.equals('foo')); | 7077 unittest.expect(o.customExitUrl, unittest.equals('foo')); |
| 7078 unittest.expect(o.exitId, unittest.equals('foo')); | 7078 unittest.expect(o.exitId, unittest.equals('foo')); |
| 7079 unittest.expect(o.useCustomExitUrl, unittest.isTrue); | 7079 unittest.expect(o.useCustomExitUrl, unittest.isTrue); |
| 7080 } | 7080 } |
| 7081 buildCounterRichMediaExitOverride--; | 7081 buildCounterRichMediaExitOverride--; |
| 7082 } | 7082 } |
| 7083 | 7083 |
| 7084 buildUnnamed1201() { | 7084 buildUnnamed921() { |
| 7085 var o = new core.List<api.SiteContact>(); | 7085 var o = new core.List<api.SiteContact>(); |
| 7086 o.add(buildSiteContact()); | 7086 o.add(buildSiteContact()); |
| 7087 o.add(buildSiteContact()); | 7087 o.add(buildSiteContact()); |
| 7088 return o; | 7088 return o; |
| 7089 } | 7089 } |
| 7090 | 7090 |
| 7091 checkUnnamed1201(core.List<api.SiteContact> o) { | 7091 checkUnnamed921(core.List<api.SiteContact> o) { |
| 7092 unittest.expect(o, unittest.hasLength(2)); | 7092 unittest.expect(o, unittest.hasLength(2)); |
| 7093 checkSiteContact(o[0]); | 7093 checkSiteContact(o[0]); |
| 7094 checkSiteContact(o[1]); | 7094 checkSiteContact(o[1]); |
| 7095 } | 7095 } |
| 7096 | 7096 |
| 7097 core.int buildCounterSite = 0; | 7097 core.int buildCounterSite = 0; |
| 7098 buildSite() { | 7098 buildSite() { |
| 7099 var o = new api.Site(); | 7099 var o = new api.Site(); |
| 7100 buildCounterSite++; | 7100 buildCounterSite++; |
| 7101 if (buildCounterSite < 3) { | 7101 if (buildCounterSite < 3) { |
| 7102 o.accountId = "foo"; | 7102 o.accountId = "foo"; |
| 7103 o.approved = true; | 7103 o.approved = true; |
| 7104 o.directorySiteId = "foo"; | 7104 o.directorySiteId = "foo"; |
| 7105 o.directorySiteIdDimensionValue = buildDimensionValue(); | 7105 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 7106 o.id = "foo"; | 7106 o.id = "foo"; |
| 7107 o.idDimensionValue = buildDimensionValue(); | 7107 o.idDimensionValue = buildDimensionValue(); |
| 7108 o.keyName = "foo"; | 7108 o.keyName = "foo"; |
| 7109 o.kind = "foo"; | 7109 o.kind = "foo"; |
| 7110 o.name = "foo"; | 7110 o.name = "foo"; |
| 7111 o.siteContacts = buildUnnamed1201(); | 7111 o.siteContacts = buildUnnamed921(); |
| 7112 o.siteSettings = buildSiteSettings(); | 7112 o.siteSettings = buildSiteSettings(); |
| 7113 o.subaccountId = "foo"; | 7113 o.subaccountId = "foo"; |
| 7114 } | 7114 } |
| 7115 buildCounterSite--; | 7115 buildCounterSite--; |
| 7116 return o; | 7116 return o; |
| 7117 } | 7117 } |
| 7118 | 7118 |
| 7119 checkSite(api.Site o) { | 7119 checkSite(api.Site o) { |
| 7120 buildCounterSite++; | 7120 buildCounterSite++; |
| 7121 if (buildCounterSite < 3) { | 7121 if (buildCounterSite < 3) { |
| 7122 unittest.expect(o.accountId, unittest.equals('foo')); | 7122 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7123 unittest.expect(o.approved, unittest.isTrue); | 7123 unittest.expect(o.approved, unittest.isTrue); |
| 7124 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 7124 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 7125 checkDimensionValue(o.directorySiteIdDimensionValue); | 7125 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 7126 unittest.expect(o.id, unittest.equals('foo')); | 7126 unittest.expect(o.id, unittest.equals('foo')); |
| 7127 checkDimensionValue(o.idDimensionValue); | 7127 checkDimensionValue(o.idDimensionValue); |
| 7128 unittest.expect(o.keyName, unittest.equals('foo')); | 7128 unittest.expect(o.keyName, unittest.equals('foo')); |
| 7129 unittest.expect(o.kind, unittest.equals('foo')); | 7129 unittest.expect(o.kind, unittest.equals('foo')); |
| 7130 unittest.expect(o.name, unittest.equals('foo')); | 7130 unittest.expect(o.name, unittest.equals('foo')); |
| 7131 checkUnnamed1201(o.siteContacts); | 7131 checkUnnamed921(o.siteContacts); |
| 7132 checkSiteSettings(o.siteSettings); | 7132 checkSiteSettings(o.siteSettings); |
| 7133 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7133 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7134 } | 7134 } |
| 7135 buildCounterSite--; | 7135 buildCounterSite--; |
| 7136 } | 7136 } |
| 7137 | 7137 |
| 7138 core.int buildCounterSiteContact = 0; | 7138 core.int buildCounterSiteContact = 0; |
| 7139 buildSiteContact() { | 7139 buildSiteContact() { |
| 7140 var o = new api.SiteContact(); | 7140 var o = new api.SiteContact(); |
| 7141 buildCounterSiteContact++; | 7141 buildCounterSiteContact++; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7190 unittest.expect(o.activeViewOptOut, unittest.isTrue); | 7190 unittest.expect(o.activeViewOptOut, unittest.isTrue); |
| 7191 checkCreativeSettings(o.creativeSettings); | 7191 checkCreativeSettings(o.creativeSettings); |
| 7192 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); | 7192 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); |
| 7193 unittest.expect(o.disableNewCookie, unittest.isTrue); | 7193 unittest.expect(o.disableNewCookie, unittest.isTrue); |
| 7194 checkLookbackConfiguration(o.lookbackConfiguration); | 7194 checkLookbackConfiguration(o.lookbackConfiguration); |
| 7195 checkTagSetting(o.tagSetting); | 7195 checkTagSetting(o.tagSetting); |
| 7196 } | 7196 } |
| 7197 buildCounterSiteSettings--; | 7197 buildCounterSiteSettings--; |
| 7198 } | 7198 } |
| 7199 | 7199 |
| 7200 buildUnnamed1202() { | 7200 buildUnnamed922() { |
| 7201 var o = new core.List<api.Site>(); | 7201 var o = new core.List<api.Site>(); |
| 7202 o.add(buildSite()); | 7202 o.add(buildSite()); |
| 7203 o.add(buildSite()); | 7203 o.add(buildSite()); |
| 7204 return o; | 7204 return o; |
| 7205 } | 7205 } |
| 7206 | 7206 |
| 7207 checkUnnamed1202(core.List<api.Site> o) { | 7207 checkUnnamed922(core.List<api.Site> o) { |
| 7208 unittest.expect(o, unittest.hasLength(2)); | 7208 unittest.expect(o, unittest.hasLength(2)); |
| 7209 checkSite(o[0]); | 7209 checkSite(o[0]); |
| 7210 checkSite(o[1]); | 7210 checkSite(o[1]); |
| 7211 } | 7211 } |
| 7212 | 7212 |
| 7213 core.int buildCounterSitesListResponse = 0; | 7213 core.int buildCounterSitesListResponse = 0; |
| 7214 buildSitesListResponse() { | 7214 buildSitesListResponse() { |
| 7215 var o = new api.SitesListResponse(); | 7215 var o = new api.SitesListResponse(); |
| 7216 buildCounterSitesListResponse++; | 7216 buildCounterSitesListResponse++; |
| 7217 if (buildCounterSitesListResponse < 3) { | 7217 if (buildCounterSitesListResponse < 3) { |
| 7218 o.kind = "foo"; | 7218 o.kind = "foo"; |
| 7219 o.nextPageToken = "foo"; | 7219 o.nextPageToken = "foo"; |
| 7220 o.sites = buildUnnamed1202(); | 7220 o.sites = buildUnnamed922(); |
| 7221 } | 7221 } |
| 7222 buildCounterSitesListResponse--; | 7222 buildCounterSitesListResponse--; |
| 7223 return o; | 7223 return o; |
| 7224 } | 7224 } |
| 7225 | 7225 |
| 7226 checkSitesListResponse(api.SitesListResponse o) { | 7226 checkSitesListResponse(api.SitesListResponse o) { |
| 7227 buildCounterSitesListResponse++; | 7227 buildCounterSitesListResponse++; |
| 7228 if (buildCounterSitesListResponse < 3) { | 7228 if (buildCounterSitesListResponse < 3) { |
| 7229 unittest.expect(o.kind, unittest.equals('foo')); | 7229 unittest.expect(o.kind, unittest.equals('foo')); |
| 7230 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7230 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7231 checkUnnamed1202(o.sites); | 7231 checkUnnamed922(o.sites); |
| 7232 } | 7232 } |
| 7233 buildCounterSitesListResponse--; | 7233 buildCounterSitesListResponse--; |
| 7234 } | 7234 } |
| 7235 | 7235 |
| 7236 core.int buildCounterSize = 0; | 7236 core.int buildCounterSize = 0; |
| 7237 buildSize() { | 7237 buildSize() { |
| 7238 var o = new api.Size(); | 7238 var o = new api.Size(); |
| 7239 buildCounterSize++; | 7239 buildCounterSize++; |
| 7240 if (buildCounterSize < 3) { | 7240 if (buildCounterSize < 3) { |
| 7241 o.height = 42; | 7241 o.height = 42; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 7253 if (buildCounterSize < 3) { | 7253 if (buildCounterSize < 3) { |
| 7254 unittest.expect(o.height, unittest.equals(42)); | 7254 unittest.expect(o.height, unittest.equals(42)); |
| 7255 unittest.expect(o.iab, unittest.isTrue); | 7255 unittest.expect(o.iab, unittest.isTrue); |
| 7256 unittest.expect(o.id, unittest.equals('foo')); | 7256 unittest.expect(o.id, unittest.equals('foo')); |
| 7257 unittest.expect(o.kind, unittest.equals('foo')); | 7257 unittest.expect(o.kind, unittest.equals('foo')); |
| 7258 unittest.expect(o.width, unittest.equals(42)); | 7258 unittest.expect(o.width, unittest.equals(42)); |
| 7259 } | 7259 } |
| 7260 buildCounterSize--; | 7260 buildCounterSize--; |
| 7261 } | 7261 } |
| 7262 | 7262 |
| 7263 buildUnnamed1203() { | 7263 buildUnnamed923() { |
| 7264 var o = new core.List<api.Size>(); | 7264 var o = new core.List<api.Size>(); |
| 7265 o.add(buildSize()); | 7265 o.add(buildSize()); |
| 7266 o.add(buildSize()); | 7266 o.add(buildSize()); |
| 7267 return o; | 7267 return o; |
| 7268 } | 7268 } |
| 7269 | 7269 |
| 7270 checkUnnamed1203(core.List<api.Size> o) { | 7270 checkUnnamed923(core.List<api.Size> o) { |
| 7271 unittest.expect(o, unittest.hasLength(2)); | 7271 unittest.expect(o, unittest.hasLength(2)); |
| 7272 checkSize(o[0]); | 7272 checkSize(o[0]); |
| 7273 checkSize(o[1]); | 7273 checkSize(o[1]); |
| 7274 } | 7274 } |
| 7275 | 7275 |
| 7276 core.int buildCounterSizesListResponse = 0; | 7276 core.int buildCounterSizesListResponse = 0; |
| 7277 buildSizesListResponse() { | 7277 buildSizesListResponse() { |
| 7278 var o = new api.SizesListResponse(); | 7278 var o = new api.SizesListResponse(); |
| 7279 buildCounterSizesListResponse++; | 7279 buildCounterSizesListResponse++; |
| 7280 if (buildCounterSizesListResponse < 3) { | 7280 if (buildCounterSizesListResponse < 3) { |
| 7281 o.kind = "foo"; | 7281 o.kind = "foo"; |
| 7282 o.sizes = buildUnnamed1203(); | 7282 o.sizes = buildUnnamed923(); |
| 7283 } | 7283 } |
| 7284 buildCounterSizesListResponse--; | 7284 buildCounterSizesListResponse--; |
| 7285 return o; | 7285 return o; |
| 7286 } | 7286 } |
| 7287 | 7287 |
| 7288 checkSizesListResponse(api.SizesListResponse o) { | 7288 checkSizesListResponse(api.SizesListResponse o) { |
| 7289 buildCounterSizesListResponse++; | 7289 buildCounterSizesListResponse++; |
| 7290 if (buildCounterSizesListResponse < 3) { | 7290 if (buildCounterSizesListResponse < 3) { |
| 7291 unittest.expect(o.kind, unittest.equals('foo')); | 7291 unittest.expect(o.kind, unittest.equals('foo')); |
| 7292 checkUnnamed1203(o.sizes); | 7292 checkUnnamed923(o.sizes); |
| 7293 } | 7293 } |
| 7294 buildCounterSizesListResponse--; | 7294 buildCounterSizesListResponse--; |
| 7295 } | 7295 } |
| 7296 | 7296 |
| 7297 core.int buildCounterSortedDimension = 0; | 7297 core.int buildCounterSortedDimension = 0; |
| 7298 buildSortedDimension() { | 7298 buildSortedDimension() { |
| 7299 var o = new api.SortedDimension(); | 7299 var o = new api.SortedDimension(); |
| 7300 buildCounterSortedDimension++; | 7300 buildCounterSortedDimension++; |
| 7301 if (buildCounterSortedDimension < 3) { | 7301 if (buildCounterSortedDimension < 3) { |
| 7302 o.kind = "foo"; | 7302 o.kind = "foo"; |
| 7303 o.name = "foo"; | 7303 o.name = "foo"; |
| 7304 o.sortOrder = "foo"; | 7304 o.sortOrder = "foo"; |
| 7305 } | 7305 } |
| 7306 buildCounterSortedDimension--; | 7306 buildCounterSortedDimension--; |
| 7307 return o; | 7307 return o; |
| 7308 } | 7308 } |
| 7309 | 7309 |
| 7310 checkSortedDimension(api.SortedDimension o) { | 7310 checkSortedDimension(api.SortedDimension o) { |
| 7311 buildCounterSortedDimension++; | 7311 buildCounterSortedDimension++; |
| 7312 if (buildCounterSortedDimension < 3) { | 7312 if (buildCounterSortedDimension < 3) { |
| 7313 unittest.expect(o.kind, unittest.equals('foo')); | 7313 unittest.expect(o.kind, unittest.equals('foo')); |
| 7314 unittest.expect(o.name, unittest.equals('foo')); | 7314 unittest.expect(o.name, unittest.equals('foo')); |
| 7315 unittest.expect(o.sortOrder, unittest.equals('foo')); | 7315 unittest.expect(o.sortOrder, unittest.equals('foo')); |
| 7316 } | 7316 } |
| 7317 buildCounterSortedDimension--; | 7317 buildCounterSortedDimension--; |
| 7318 } | 7318 } |
| 7319 | 7319 |
| 7320 buildUnnamed1204() { | 7320 buildUnnamed924() { |
| 7321 var o = new core.List<core.String>(); | 7321 var o = new core.List<core.String>(); |
| 7322 o.add("foo"); | 7322 o.add("foo"); |
| 7323 o.add("foo"); | 7323 o.add("foo"); |
| 7324 return o; | 7324 return o; |
| 7325 } | 7325 } |
| 7326 | 7326 |
| 7327 checkUnnamed1204(core.List<core.String> o) { | 7327 checkUnnamed924(core.List<core.String> o) { |
| 7328 unittest.expect(o, unittest.hasLength(2)); | 7328 unittest.expect(o, unittest.hasLength(2)); |
| 7329 unittest.expect(o[0], unittest.equals('foo')); | 7329 unittest.expect(o[0], unittest.equals('foo')); |
| 7330 unittest.expect(o[1], unittest.equals('foo')); | 7330 unittest.expect(o[1], unittest.equals('foo')); |
| 7331 } | 7331 } |
| 7332 | 7332 |
| 7333 core.int buildCounterSubaccount = 0; | 7333 core.int buildCounterSubaccount = 0; |
| 7334 buildSubaccount() { | 7334 buildSubaccount() { |
| 7335 var o = new api.Subaccount(); | 7335 var o = new api.Subaccount(); |
| 7336 buildCounterSubaccount++; | 7336 buildCounterSubaccount++; |
| 7337 if (buildCounterSubaccount < 3) { | 7337 if (buildCounterSubaccount < 3) { |
| 7338 o.accountId = "foo"; | 7338 o.accountId = "foo"; |
| 7339 o.availablePermissionIds = buildUnnamed1204(); | 7339 o.availablePermissionIds = buildUnnamed924(); |
| 7340 o.id = "foo"; | 7340 o.id = "foo"; |
| 7341 o.kind = "foo"; | 7341 o.kind = "foo"; |
| 7342 o.name = "foo"; | 7342 o.name = "foo"; |
| 7343 } | 7343 } |
| 7344 buildCounterSubaccount--; | 7344 buildCounterSubaccount--; |
| 7345 return o; | 7345 return o; |
| 7346 } | 7346 } |
| 7347 | 7347 |
| 7348 checkSubaccount(api.Subaccount o) { | 7348 checkSubaccount(api.Subaccount o) { |
| 7349 buildCounterSubaccount++; | 7349 buildCounterSubaccount++; |
| 7350 if (buildCounterSubaccount < 3) { | 7350 if (buildCounterSubaccount < 3) { |
| 7351 unittest.expect(o.accountId, unittest.equals('foo')); | 7351 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7352 checkUnnamed1204(o.availablePermissionIds); | 7352 checkUnnamed924(o.availablePermissionIds); |
| 7353 unittest.expect(o.id, unittest.equals('foo')); | 7353 unittest.expect(o.id, unittest.equals('foo')); |
| 7354 unittest.expect(o.kind, unittest.equals('foo')); | 7354 unittest.expect(o.kind, unittest.equals('foo')); |
| 7355 unittest.expect(o.name, unittest.equals('foo')); | 7355 unittest.expect(o.name, unittest.equals('foo')); |
| 7356 } | 7356 } |
| 7357 buildCounterSubaccount--; | 7357 buildCounterSubaccount--; |
| 7358 } | 7358 } |
| 7359 | 7359 |
| 7360 buildUnnamed1205() { | 7360 buildUnnamed925() { |
| 7361 var o = new core.List<api.Subaccount>(); | 7361 var o = new core.List<api.Subaccount>(); |
| 7362 o.add(buildSubaccount()); | 7362 o.add(buildSubaccount()); |
| 7363 o.add(buildSubaccount()); | 7363 o.add(buildSubaccount()); |
| 7364 return o; | 7364 return o; |
| 7365 } | 7365 } |
| 7366 | 7366 |
| 7367 checkUnnamed1205(core.List<api.Subaccount> o) { | 7367 checkUnnamed925(core.List<api.Subaccount> o) { |
| 7368 unittest.expect(o, unittest.hasLength(2)); | 7368 unittest.expect(o, unittest.hasLength(2)); |
| 7369 checkSubaccount(o[0]); | 7369 checkSubaccount(o[0]); |
| 7370 checkSubaccount(o[1]); | 7370 checkSubaccount(o[1]); |
| 7371 } | 7371 } |
| 7372 | 7372 |
| 7373 core.int buildCounterSubaccountsListResponse = 0; | 7373 core.int buildCounterSubaccountsListResponse = 0; |
| 7374 buildSubaccountsListResponse() { | 7374 buildSubaccountsListResponse() { |
| 7375 var o = new api.SubaccountsListResponse(); | 7375 var o = new api.SubaccountsListResponse(); |
| 7376 buildCounterSubaccountsListResponse++; | 7376 buildCounterSubaccountsListResponse++; |
| 7377 if (buildCounterSubaccountsListResponse < 3) { | 7377 if (buildCounterSubaccountsListResponse < 3) { |
| 7378 o.kind = "foo"; | 7378 o.kind = "foo"; |
| 7379 o.nextPageToken = "foo"; | 7379 o.nextPageToken = "foo"; |
| 7380 o.subaccounts = buildUnnamed1205(); | 7380 o.subaccounts = buildUnnamed925(); |
| 7381 } | 7381 } |
| 7382 buildCounterSubaccountsListResponse--; | 7382 buildCounterSubaccountsListResponse--; |
| 7383 return o; | 7383 return o; |
| 7384 } | 7384 } |
| 7385 | 7385 |
| 7386 checkSubaccountsListResponse(api.SubaccountsListResponse o) { | 7386 checkSubaccountsListResponse(api.SubaccountsListResponse o) { |
| 7387 buildCounterSubaccountsListResponse++; | 7387 buildCounterSubaccountsListResponse++; |
| 7388 if (buildCounterSubaccountsListResponse < 3) { | 7388 if (buildCounterSubaccountsListResponse < 3) { |
| 7389 unittest.expect(o.kind, unittest.equals('foo')); | 7389 unittest.expect(o.kind, unittest.equals('foo')); |
| 7390 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7390 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7391 checkUnnamed1205(o.subaccounts); | 7391 checkUnnamed925(o.subaccounts); |
| 7392 } | 7392 } |
| 7393 buildCounterSubaccountsListResponse--; | 7393 buildCounterSubaccountsListResponse--; |
| 7394 } | 7394 } |
| 7395 | 7395 |
| 7396 core.int buildCounterTagData = 0; | 7396 core.int buildCounterTagData = 0; |
| 7397 buildTagData() { | 7397 buildTagData() { |
| 7398 var o = new api.TagData(); | 7398 var o = new api.TagData(); |
| 7399 buildCounterTagData++; | 7399 buildCounterTagData++; |
| 7400 if (buildCounterTagData < 3) { | 7400 if (buildCounterTagData < 3) { |
| 7401 o.adId = "foo"; | 7401 o.adId = "foo"; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7521 unittest.expect(o.kind, unittest.equals('foo')); | 7521 unittest.expect(o.kind, unittest.equals('foo')); |
| 7522 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 7522 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 7523 unittest.expect(o.listSize, unittest.equals('foo')); | 7523 unittest.expect(o.listSize, unittest.equals('foo')); |
| 7524 unittest.expect(o.listSource, unittest.equals('foo')); | 7524 unittest.expect(o.listSource, unittest.equals('foo')); |
| 7525 unittest.expect(o.name, unittest.equals('foo')); | 7525 unittest.expect(o.name, unittest.equals('foo')); |
| 7526 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7526 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7527 } | 7527 } |
| 7528 buildCounterTargetableRemarketingList--; | 7528 buildCounterTargetableRemarketingList--; |
| 7529 } | 7529 } |
| 7530 | 7530 |
| 7531 buildUnnamed1206() { | 7531 buildUnnamed926() { |
| 7532 var o = new core.List<api.TargetableRemarketingList>(); | 7532 var o = new core.List<api.TargetableRemarketingList>(); |
| 7533 o.add(buildTargetableRemarketingList()); | 7533 o.add(buildTargetableRemarketingList()); |
| 7534 o.add(buildTargetableRemarketingList()); | 7534 o.add(buildTargetableRemarketingList()); |
| 7535 return o; | 7535 return o; |
| 7536 } | 7536 } |
| 7537 | 7537 |
| 7538 checkUnnamed1206(core.List<api.TargetableRemarketingList> o) { | 7538 checkUnnamed926(core.List<api.TargetableRemarketingList> o) { |
| 7539 unittest.expect(o, unittest.hasLength(2)); | 7539 unittest.expect(o, unittest.hasLength(2)); |
| 7540 checkTargetableRemarketingList(o[0]); | 7540 checkTargetableRemarketingList(o[0]); |
| 7541 checkTargetableRemarketingList(o[1]); | 7541 checkTargetableRemarketingList(o[1]); |
| 7542 } | 7542 } |
| 7543 | 7543 |
| 7544 core.int buildCounterTargetableRemarketingListsListResponse = 0; | 7544 core.int buildCounterTargetableRemarketingListsListResponse = 0; |
| 7545 buildTargetableRemarketingListsListResponse() { | 7545 buildTargetableRemarketingListsListResponse() { |
| 7546 var o = new api.TargetableRemarketingListsListResponse(); | 7546 var o = new api.TargetableRemarketingListsListResponse(); |
| 7547 buildCounterTargetableRemarketingListsListResponse++; | 7547 buildCounterTargetableRemarketingListsListResponse++; |
| 7548 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7548 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7549 o.kind = "foo"; | 7549 o.kind = "foo"; |
| 7550 o.nextPageToken = "foo"; | 7550 o.nextPageToken = "foo"; |
| 7551 o.targetableRemarketingLists = buildUnnamed1206(); | 7551 o.targetableRemarketingLists = buildUnnamed926(); |
| 7552 } | 7552 } |
| 7553 buildCounterTargetableRemarketingListsListResponse--; | 7553 buildCounterTargetableRemarketingListsListResponse--; |
| 7554 return o; | 7554 return o; |
| 7555 } | 7555 } |
| 7556 | 7556 |
| 7557 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { | 7557 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { |
| 7558 buildCounterTargetableRemarketingListsListResponse++; | 7558 buildCounterTargetableRemarketingListsListResponse++; |
| 7559 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7559 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7560 unittest.expect(o.kind, unittest.equals('foo')); | 7560 unittest.expect(o.kind, unittest.equals('foo')); |
| 7561 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7561 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7562 checkUnnamed1206(o.targetableRemarketingLists); | 7562 checkUnnamed926(o.targetableRemarketingLists); |
| 7563 } | 7563 } |
| 7564 buildCounterTargetableRemarketingListsListResponse--; | 7564 buildCounterTargetableRemarketingListsListResponse--; |
| 7565 } | 7565 } |
| 7566 | 7566 |
| 7567 buildUnnamed1207() { | 7567 buildUnnamed927() { |
| 7568 var o = new core.List<api.Browser>(); | 7568 var o = new core.List<api.Browser>(); |
| 7569 o.add(buildBrowser()); | 7569 o.add(buildBrowser()); |
| 7570 o.add(buildBrowser()); | 7570 o.add(buildBrowser()); |
| 7571 return o; | 7571 return o; |
| 7572 } | 7572 } |
| 7573 | 7573 |
| 7574 checkUnnamed1207(core.List<api.Browser> o) { | 7574 checkUnnamed927(core.List<api.Browser> o) { |
| 7575 unittest.expect(o, unittest.hasLength(2)); | 7575 unittest.expect(o, unittest.hasLength(2)); |
| 7576 checkBrowser(o[0]); | 7576 checkBrowser(o[0]); |
| 7577 checkBrowser(o[1]); | 7577 checkBrowser(o[1]); |
| 7578 } | 7578 } |
| 7579 | 7579 |
| 7580 buildUnnamed1208() { | 7580 buildUnnamed928() { |
| 7581 var o = new core.List<api.ConnectionType>(); | 7581 var o = new core.List<api.ConnectionType>(); |
| 7582 o.add(buildConnectionType()); | 7582 o.add(buildConnectionType()); |
| 7583 o.add(buildConnectionType()); | 7583 o.add(buildConnectionType()); |
| 7584 return o; | 7584 return o; |
| 7585 } | 7585 } |
| 7586 | 7586 |
| 7587 checkUnnamed1208(core.List<api.ConnectionType> o) { | 7587 checkUnnamed928(core.List<api.ConnectionType> o) { |
| 7588 unittest.expect(o, unittest.hasLength(2)); | 7588 unittest.expect(o, unittest.hasLength(2)); |
| 7589 checkConnectionType(o[0]); | 7589 checkConnectionType(o[0]); |
| 7590 checkConnectionType(o[1]); | 7590 checkConnectionType(o[1]); |
| 7591 } | 7591 } |
| 7592 | 7592 |
| 7593 buildUnnamed1209() { | 7593 buildUnnamed929() { |
| 7594 var o = new core.List<api.MobileCarrier>(); | 7594 var o = new core.List<api.MobileCarrier>(); |
| 7595 o.add(buildMobileCarrier()); | 7595 o.add(buildMobileCarrier()); |
| 7596 o.add(buildMobileCarrier()); | 7596 o.add(buildMobileCarrier()); |
| 7597 return o; | 7597 return o; |
| 7598 } | 7598 } |
| 7599 | 7599 |
| 7600 checkUnnamed1209(core.List<api.MobileCarrier> o) { | 7600 checkUnnamed929(core.List<api.MobileCarrier> o) { |
| 7601 unittest.expect(o, unittest.hasLength(2)); | 7601 unittest.expect(o, unittest.hasLength(2)); |
| 7602 checkMobileCarrier(o[0]); | 7602 checkMobileCarrier(o[0]); |
| 7603 checkMobileCarrier(o[1]); | 7603 checkMobileCarrier(o[1]); |
| 7604 } | 7604 } |
| 7605 | 7605 |
| 7606 buildUnnamed1210() { | 7606 buildUnnamed930() { |
| 7607 var o = new core.List<api.OperatingSystemVersion>(); | 7607 var o = new core.List<api.OperatingSystemVersion>(); |
| 7608 o.add(buildOperatingSystemVersion()); | 7608 o.add(buildOperatingSystemVersion()); |
| 7609 o.add(buildOperatingSystemVersion()); | 7609 o.add(buildOperatingSystemVersion()); |
| 7610 return o; | 7610 return o; |
| 7611 } | 7611 } |
| 7612 | 7612 |
| 7613 checkUnnamed1210(core.List<api.OperatingSystemVersion> o) { | 7613 checkUnnamed930(core.List<api.OperatingSystemVersion> o) { |
| 7614 unittest.expect(o, unittest.hasLength(2)); | 7614 unittest.expect(o, unittest.hasLength(2)); |
| 7615 checkOperatingSystemVersion(o[0]); | 7615 checkOperatingSystemVersion(o[0]); |
| 7616 checkOperatingSystemVersion(o[1]); | 7616 checkOperatingSystemVersion(o[1]); |
| 7617 } | 7617 } |
| 7618 | 7618 |
| 7619 buildUnnamed1211() { | 7619 buildUnnamed931() { |
| 7620 var o = new core.List<api.OperatingSystem>(); | 7620 var o = new core.List<api.OperatingSystem>(); |
| 7621 o.add(buildOperatingSystem()); | 7621 o.add(buildOperatingSystem()); |
| 7622 o.add(buildOperatingSystem()); | 7622 o.add(buildOperatingSystem()); |
| 7623 return o; | 7623 return o; |
| 7624 } | 7624 } |
| 7625 | 7625 |
| 7626 checkUnnamed1211(core.List<api.OperatingSystem> o) { | 7626 checkUnnamed931(core.List<api.OperatingSystem> o) { |
| 7627 unittest.expect(o, unittest.hasLength(2)); | 7627 unittest.expect(o, unittest.hasLength(2)); |
| 7628 checkOperatingSystem(o[0]); | 7628 checkOperatingSystem(o[0]); |
| 7629 checkOperatingSystem(o[1]); | 7629 checkOperatingSystem(o[1]); |
| 7630 } | 7630 } |
| 7631 | 7631 |
| 7632 buildUnnamed1212() { | 7632 buildUnnamed932() { |
| 7633 var o = new core.List<api.PlatformType>(); | 7633 var o = new core.List<api.PlatformType>(); |
| 7634 o.add(buildPlatformType()); | 7634 o.add(buildPlatformType()); |
| 7635 o.add(buildPlatformType()); | 7635 o.add(buildPlatformType()); |
| 7636 return o; | 7636 return o; |
| 7637 } | 7637 } |
| 7638 | 7638 |
| 7639 checkUnnamed1212(core.List<api.PlatformType> o) { | 7639 checkUnnamed932(core.List<api.PlatformType> o) { |
| 7640 unittest.expect(o, unittest.hasLength(2)); | 7640 unittest.expect(o, unittest.hasLength(2)); |
| 7641 checkPlatformType(o[0]); | 7641 checkPlatformType(o[0]); |
| 7642 checkPlatformType(o[1]); | 7642 checkPlatformType(o[1]); |
| 7643 } | 7643 } |
| 7644 | 7644 |
| 7645 core.int buildCounterTechnologyTargeting = 0; | 7645 core.int buildCounterTechnologyTargeting = 0; |
| 7646 buildTechnologyTargeting() { | 7646 buildTechnologyTargeting() { |
| 7647 var o = new api.TechnologyTargeting(); | 7647 var o = new api.TechnologyTargeting(); |
| 7648 buildCounterTechnologyTargeting++; | 7648 buildCounterTechnologyTargeting++; |
| 7649 if (buildCounterTechnologyTargeting < 3) { | 7649 if (buildCounterTechnologyTargeting < 3) { |
| 7650 o.browsers = buildUnnamed1207(); | 7650 o.browsers = buildUnnamed927(); |
| 7651 o.connectionTypes = buildUnnamed1208(); | 7651 o.connectionTypes = buildUnnamed928(); |
| 7652 o.mobileCarriers = buildUnnamed1209(); | 7652 o.mobileCarriers = buildUnnamed929(); |
| 7653 o.operatingSystemVersions = buildUnnamed1210(); | 7653 o.operatingSystemVersions = buildUnnamed930(); |
| 7654 o.operatingSystems = buildUnnamed1211(); | 7654 o.operatingSystems = buildUnnamed931(); |
| 7655 o.platformTypes = buildUnnamed1212(); | 7655 o.platformTypes = buildUnnamed932(); |
| 7656 } | 7656 } |
| 7657 buildCounterTechnologyTargeting--; | 7657 buildCounterTechnologyTargeting--; |
| 7658 return o; | 7658 return o; |
| 7659 } | 7659 } |
| 7660 | 7660 |
| 7661 checkTechnologyTargeting(api.TechnologyTargeting o) { | 7661 checkTechnologyTargeting(api.TechnologyTargeting o) { |
| 7662 buildCounterTechnologyTargeting++; | 7662 buildCounterTechnologyTargeting++; |
| 7663 if (buildCounterTechnologyTargeting < 3) { | 7663 if (buildCounterTechnologyTargeting < 3) { |
| 7664 checkUnnamed1207(o.browsers); | 7664 checkUnnamed927(o.browsers); |
| 7665 checkUnnamed1208(o.connectionTypes); | 7665 checkUnnamed928(o.connectionTypes); |
| 7666 checkUnnamed1209(o.mobileCarriers); | 7666 checkUnnamed929(o.mobileCarriers); |
| 7667 checkUnnamed1210(o.operatingSystemVersions); | 7667 checkUnnamed930(o.operatingSystemVersions); |
| 7668 checkUnnamed1211(o.operatingSystems); | 7668 checkUnnamed931(o.operatingSystems); |
| 7669 checkUnnamed1212(o.platformTypes); | 7669 checkUnnamed932(o.platformTypes); |
| 7670 } | 7670 } |
| 7671 buildCounterTechnologyTargeting--; | 7671 buildCounterTechnologyTargeting--; |
| 7672 } | 7672 } |
| 7673 | 7673 |
| 7674 core.int buildCounterThirdPartyTrackingUrl = 0; | 7674 core.int buildCounterThirdPartyTrackingUrl = 0; |
| 7675 buildThirdPartyTrackingUrl() { | 7675 buildThirdPartyTrackingUrl() { |
| 7676 var o = new api.ThirdPartyTrackingUrl(); | 7676 var o = new api.ThirdPartyTrackingUrl(); |
| 7677 buildCounterThirdPartyTrackingUrl++; | 7677 buildCounterThirdPartyTrackingUrl++; |
| 7678 if (buildCounterThirdPartyTrackingUrl < 3) { | 7678 if (buildCounterThirdPartyTrackingUrl < 3) { |
| 7679 o.thirdPartyUrlType = "foo"; | 7679 o.thirdPartyUrlType = "foo"; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7741 unittest.expect(o.etag, unittest.equals('foo')); | 7741 unittest.expect(o.etag, unittest.equals('foo')); |
| 7742 unittest.expect(o.kind, unittest.equals('foo')); | 7742 unittest.expect(o.kind, unittest.equals('foo')); |
| 7743 unittest.expect(o.profileId, unittest.equals('foo')); | 7743 unittest.expect(o.profileId, unittest.equals('foo')); |
| 7744 unittest.expect(o.subAccountId, unittest.equals('foo')); | 7744 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 7745 unittest.expect(o.subAccountName, unittest.equals('foo')); | 7745 unittest.expect(o.subAccountName, unittest.equals('foo')); |
| 7746 unittest.expect(o.userName, unittest.equals('foo')); | 7746 unittest.expect(o.userName, unittest.equals('foo')); |
| 7747 } | 7747 } |
| 7748 buildCounterUserProfile--; | 7748 buildCounterUserProfile--; |
| 7749 } | 7749 } |
| 7750 | 7750 |
| 7751 buildUnnamed1213() { | 7751 buildUnnamed933() { |
| 7752 var o = new core.List<api.UserProfile>(); | 7752 var o = new core.List<api.UserProfile>(); |
| 7753 o.add(buildUserProfile()); | 7753 o.add(buildUserProfile()); |
| 7754 o.add(buildUserProfile()); | 7754 o.add(buildUserProfile()); |
| 7755 return o; | 7755 return o; |
| 7756 } | 7756 } |
| 7757 | 7757 |
| 7758 checkUnnamed1213(core.List<api.UserProfile> o) { | 7758 checkUnnamed933(core.List<api.UserProfile> o) { |
| 7759 unittest.expect(o, unittest.hasLength(2)); | 7759 unittest.expect(o, unittest.hasLength(2)); |
| 7760 checkUserProfile(o[0]); | 7760 checkUserProfile(o[0]); |
| 7761 checkUserProfile(o[1]); | 7761 checkUserProfile(o[1]); |
| 7762 } | 7762 } |
| 7763 | 7763 |
| 7764 core.int buildCounterUserProfileList = 0; | 7764 core.int buildCounterUserProfileList = 0; |
| 7765 buildUserProfileList() { | 7765 buildUserProfileList() { |
| 7766 var o = new api.UserProfileList(); | 7766 var o = new api.UserProfileList(); |
| 7767 buildCounterUserProfileList++; | 7767 buildCounterUserProfileList++; |
| 7768 if (buildCounterUserProfileList < 3) { | 7768 if (buildCounterUserProfileList < 3) { |
| 7769 o.etag = "foo"; | 7769 o.etag = "foo"; |
| 7770 o.items = buildUnnamed1213(); | 7770 o.items = buildUnnamed933(); |
| 7771 o.kind = "foo"; | 7771 o.kind = "foo"; |
| 7772 } | 7772 } |
| 7773 buildCounterUserProfileList--; | 7773 buildCounterUserProfileList--; |
| 7774 return o; | 7774 return o; |
| 7775 } | 7775 } |
| 7776 | 7776 |
| 7777 checkUserProfileList(api.UserProfileList o) { | 7777 checkUserProfileList(api.UserProfileList o) { |
| 7778 buildCounterUserProfileList++; | 7778 buildCounterUserProfileList++; |
| 7779 if (buildCounterUserProfileList < 3) { | 7779 if (buildCounterUserProfileList < 3) { |
| 7780 unittest.expect(o.etag, unittest.equals('foo')); | 7780 unittest.expect(o.etag, unittest.equals('foo')); |
| 7781 checkUnnamed1213(o.items); | 7781 checkUnnamed933(o.items); |
| 7782 unittest.expect(o.kind, unittest.equals('foo')); | 7782 unittest.expect(o.kind, unittest.equals('foo')); |
| 7783 } | 7783 } |
| 7784 buildCounterUserProfileList--; | 7784 buildCounterUserProfileList--; |
| 7785 } | 7785 } |
| 7786 | 7786 |
| 7787 buildUnnamed1214() { | 7787 buildUnnamed934() { |
| 7788 var o = new core.List<api.UserRolePermission>(); | 7788 var o = new core.List<api.UserRolePermission>(); |
| 7789 o.add(buildUserRolePermission()); | 7789 o.add(buildUserRolePermission()); |
| 7790 o.add(buildUserRolePermission()); | 7790 o.add(buildUserRolePermission()); |
| 7791 return o; | 7791 return o; |
| 7792 } | 7792 } |
| 7793 | 7793 |
| 7794 checkUnnamed1214(core.List<api.UserRolePermission> o) { | 7794 checkUnnamed934(core.List<api.UserRolePermission> o) { |
| 7795 unittest.expect(o, unittest.hasLength(2)); | 7795 unittest.expect(o, unittest.hasLength(2)); |
| 7796 checkUserRolePermission(o[0]); | 7796 checkUserRolePermission(o[0]); |
| 7797 checkUserRolePermission(o[1]); | 7797 checkUserRolePermission(o[1]); |
| 7798 } | 7798 } |
| 7799 | 7799 |
| 7800 core.int buildCounterUserRole = 0; | 7800 core.int buildCounterUserRole = 0; |
| 7801 buildUserRole() { | 7801 buildUserRole() { |
| 7802 var o = new api.UserRole(); | 7802 var o = new api.UserRole(); |
| 7803 buildCounterUserRole++; | 7803 buildCounterUserRole++; |
| 7804 if (buildCounterUserRole < 3) { | 7804 if (buildCounterUserRole < 3) { |
| 7805 o.accountId = "foo"; | 7805 o.accountId = "foo"; |
| 7806 o.defaultUserRole = true; | 7806 o.defaultUserRole = true; |
| 7807 o.id = "foo"; | 7807 o.id = "foo"; |
| 7808 o.kind = "foo"; | 7808 o.kind = "foo"; |
| 7809 o.name = "foo"; | 7809 o.name = "foo"; |
| 7810 o.parentUserRoleId = "foo"; | 7810 o.parentUserRoleId = "foo"; |
| 7811 o.permissions = buildUnnamed1214(); | 7811 o.permissions = buildUnnamed934(); |
| 7812 o.subaccountId = "foo"; | 7812 o.subaccountId = "foo"; |
| 7813 } | 7813 } |
| 7814 buildCounterUserRole--; | 7814 buildCounterUserRole--; |
| 7815 return o; | 7815 return o; |
| 7816 } | 7816 } |
| 7817 | 7817 |
| 7818 checkUserRole(api.UserRole o) { | 7818 checkUserRole(api.UserRole o) { |
| 7819 buildCounterUserRole++; | 7819 buildCounterUserRole++; |
| 7820 if (buildCounterUserRole < 3) { | 7820 if (buildCounterUserRole < 3) { |
| 7821 unittest.expect(o.accountId, unittest.equals('foo')); | 7821 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7822 unittest.expect(o.defaultUserRole, unittest.isTrue); | 7822 unittest.expect(o.defaultUserRole, unittest.isTrue); |
| 7823 unittest.expect(o.id, unittest.equals('foo')); | 7823 unittest.expect(o.id, unittest.equals('foo')); |
| 7824 unittest.expect(o.kind, unittest.equals('foo')); | 7824 unittest.expect(o.kind, unittest.equals('foo')); |
| 7825 unittest.expect(o.name, unittest.equals('foo')); | 7825 unittest.expect(o.name, unittest.equals('foo')); |
| 7826 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); | 7826 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); |
| 7827 checkUnnamed1214(o.permissions); | 7827 checkUnnamed934(o.permissions); |
| 7828 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7828 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7829 } | 7829 } |
| 7830 buildCounterUserRole--; | 7830 buildCounterUserRole--; |
| 7831 } | 7831 } |
| 7832 | 7832 |
| 7833 core.int buildCounterUserRolePermission = 0; | 7833 core.int buildCounterUserRolePermission = 0; |
| 7834 buildUserRolePermission() { | 7834 buildUserRolePermission() { |
| 7835 var o = new api.UserRolePermission(); | 7835 var o = new api.UserRolePermission(); |
| 7836 buildCounterUserRolePermission++; | 7836 buildCounterUserRolePermission++; |
| 7837 if (buildCounterUserRolePermission < 3) { | 7837 if (buildCounterUserRolePermission < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7873 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { | 7873 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { |
| 7874 buildCounterUserRolePermissionGroup++; | 7874 buildCounterUserRolePermissionGroup++; |
| 7875 if (buildCounterUserRolePermissionGroup < 3) { | 7875 if (buildCounterUserRolePermissionGroup < 3) { |
| 7876 unittest.expect(o.id, unittest.equals('foo')); | 7876 unittest.expect(o.id, unittest.equals('foo')); |
| 7877 unittest.expect(o.kind, unittest.equals('foo')); | 7877 unittest.expect(o.kind, unittest.equals('foo')); |
| 7878 unittest.expect(o.name, unittest.equals('foo')); | 7878 unittest.expect(o.name, unittest.equals('foo')); |
| 7879 } | 7879 } |
| 7880 buildCounterUserRolePermissionGroup--; | 7880 buildCounterUserRolePermissionGroup--; |
| 7881 } | 7881 } |
| 7882 | 7882 |
| 7883 buildUnnamed1215() { | 7883 buildUnnamed935() { |
| 7884 var o = new core.List<api.UserRolePermissionGroup>(); | 7884 var o = new core.List<api.UserRolePermissionGroup>(); |
| 7885 o.add(buildUserRolePermissionGroup()); | 7885 o.add(buildUserRolePermissionGroup()); |
| 7886 o.add(buildUserRolePermissionGroup()); | 7886 o.add(buildUserRolePermissionGroup()); |
| 7887 return o; | 7887 return o; |
| 7888 } | 7888 } |
| 7889 | 7889 |
| 7890 checkUnnamed1215(core.List<api.UserRolePermissionGroup> o) { | 7890 checkUnnamed935(core.List<api.UserRolePermissionGroup> o) { |
| 7891 unittest.expect(o, unittest.hasLength(2)); | 7891 unittest.expect(o, unittest.hasLength(2)); |
| 7892 checkUserRolePermissionGroup(o[0]); | 7892 checkUserRolePermissionGroup(o[0]); |
| 7893 checkUserRolePermissionGroup(o[1]); | 7893 checkUserRolePermissionGroup(o[1]); |
| 7894 } | 7894 } |
| 7895 | 7895 |
| 7896 core.int buildCounterUserRolePermissionGroupsListResponse = 0; | 7896 core.int buildCounterUserRolePermissionGroupsListResponse = 0; |
| 7897 buildUserRolePermissionGroupsListResponse() { | 7897 buildUserRolePermissionGroupsListResponse() { |
| 7898 var o = new api.UserRolePermissionGroupsListResponse(); | 7898 var o = new api.UserRolePermissionGroupsListResponse(); |
| 7899 buildCounterUserRolePermissionGroupsListResponse++; | 7899 buildCounterUserRolePermissionGroupsListResponse++; |
| 7900 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7900 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 7901 o.kind = "foo"; | 7901 o.kind = "foo"; |
| 7902 o.userRolePermissionGroups = buildUnnamed1215(); | 7902 o.userRolePermissionGroups = buildUnnamed935(); |
| 7903 } | 7903 } |
| 7904 buildCounterUserRolePermissionGroupsListResponse--; | 7904 buildCounterUserRolePermissionGroupsListResponse--; |
| 7905 return o; | 7905 return o; |
| 7906 } | 7906 } |
| 7907 | 7907 |
| 7908 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { | 7908 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { |
| 7909 buildCounterUserRolePermissionGroupsListResponse++; | 7909 buildCounterUserRolePermissionGroupsListResponse++; |
| 7910 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7910 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 7911 unittest.expect(o.kind, unittest.equals('foo')); | 7911 unittest.expect(o.kind, unittest.equals('foo')); |
| 7912 checkUnnamed1215(o.userRolePermissionGroups); | 7912 checkUnnamed935(o.userRolePermissionGroups); |
| 7913 } | 7913 } |
| 7914 buildCounterUserRolePermissionGroupsListResponse--; | 7914 buildCounterUserRolePermissionGroupsListResponse--; |
| 7915 } | 7915 } |
| 7916 | 7916 |
| 7917 buildUnnamed1216() { | 7917 buildUnnamed936() { |
| 7918 var o = new core.List<api.UserRolePermission>(); | 7918 var o = new core.List<api.UserRolePermission>(); |
| 7919 o.add(buildUserRolePermission()); | 7919 o.add(buildUserRolePermission()); |
| 7920 o.add(buildUserRolePermission()); | 7920 o.add(buildUserRolePermission()); |
| 7921 return o; | 7921 return o; |
| 7922 } | 7922 } |
| 7923 | 7923 |
| 7924 checkUnnamed1216(core.List<api.UserRolePermission> o) { | 7924 checkUnnamed936(core.List<api.UserRolePermission> o) { |
| 7925 unittest.expect(o, unittest.hasLength(2)); | 7925 unittest.expect(o, unittest.hasLength(2)); |
| 7926 checkUserRolePermission(o[0]); | 7926 checkUserRolePermission(o[0]); |
| 7927 checkUserRolePermission(o[1]); | 7927 checkUserRolePermission(o[1]); |
| 7928 } | 7928 } |
| 7929 | 7929 |
| 7930 core.int buildCounterUserRolePermissionsListResponse = 0; | 7930 core.int buildCounterUserRolePermissionsListResponse = 0; |
| 7931 buildUserRolePermissionsListResponse() { | 7931 buildUserRolePermissionsListResponse() { |
| 7932 var o = new api.UserRolePermissionsListResponse(); | 7932 var o = new api.UserRolePermissionsListResponse(); |
| 7933 buildCounterUserRolePermissionsListResponse++; | 7933 buildCounterUserRolePermissionsListResponse++; |
| 7934 if (buildCounterUserRolePermissionsListResponse < 3) { | 7934 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 7935 o.kind = "foo"; | 7935 o.kind = "foo"; |
| 7936 o.userRolePermissions = buildUnnamed1216(); | 7936 o.userRolePermissions = buildUnnamed936(); |
| 7937 } | 7937 } |
| 7938 buildCounterUserRolePermissionsListResponse--; | 7938 buildCounterUserRolePermissionsListResponse--; |
| 7939 return o; | 7939 return o; |
| 7940 } | 7940 } |
| 7941 | 7941 |
| 7942 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { | 7942 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { |
| 7943 buildCounterUserRolePermissionsListResponse++; | 7943 buildCounterUserRolePermissionsListResponse++; |
| 7944 if (buildCounterUserRolePermissionsListResponse < 3) { | 7944 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 7945 unittest.expect(o.kind, unittest.equals('foo')); | 7945 unittest.expect(o.kind, unittest.equals('foo')); |
| 7946 checkUnnamed1216(o.userRolePermissions); | 7946 checkUnnamed936(o.userRolePermissions); |
| 7947 } | 7947 } |
| 7948 buildCounterUserRolePermissionsListResponse--; | 7948 buildCounterUserRolePermissionsListResponse--; |
| 7949 } | 7949 } |
| 7950 | 7950 |
| 7951 buildUnnamed1217() { | 7951 buildUnnamed937() { |
| 7952 var o = new core.List<api.UserRole>(); | 7952 var o = new core.List<api.UserRole>(); |
| 7953 o.add(buildUserRole()); | 7953 o.add(buildUserRole()); |
| 7954 o.add(buildUserRole()); | 7954 o.add(buildUserRole()); |
| 7955 return o; | 7955 return o; |
| 7956 } | 7956 } |
| 7957 | 7957 |
| 7958 checkUnnamed1217(core.List<api.UserRole> o) { | 7958 checkUnnamed937(core.List<api.UserRole> o) { |
| 7959 unittest.expect(o, unittest.hasLength(2)); | 7959 unittest.expect(o, unittest.hasLength(2)); |
| 7960 checkUserRole(o[0]); | 7960 checkUserRole(o[0]); |
| 7961 checkUserRole(o[1]); | 7961 checkUserRole(o[1]); |
| 7962 } | 7962 } |
| 7963 | 7963 |
| 7964 core.int buildCounterUserRolesListResponse = 0; | 7964 core.int buildCounterUserRolesListResponse = 0; |
| 7965 buildUserRolesListResponse() { | 7965 buildUserRolesListResponse() { |
| 7966 var o = new api.UserRolesListResponse(); | 7966 var o = new api.UserRolesListResponse(); |
| 7967 buildCounterUserRolesListResponse++; | 7967 buildCounterUserRolesListResponse++; |
| 7968 if (buildCounterUserRolesListResponse < 3) { | 7968 if (buildCounterUserRolesListResponse < 3) { |
| 7969 o.kind = "foo"; | 7969 o.kind = "foo"; |
| 7970 o.nextPageToken = "foo"; | 7970 o.nextPageToken = "foo"; |
| 7971 o.userRoles = buildUnnamed1217(); | 7971 o.userRoles = buildUnnamed937(); |
| 7972 } | 7972 } |
| 7973 buildCounterUserRolesListResponse--; | 7973 buildCounterUserRolesListResponse--; |
| 7974 return o; | 7974 return o; |
| 7975 } | 7975 } |
| 7976 | 7976 |
| 7977 checkUserRolesListResponse(api.UserRolesListResponse o) { | 7977 checkUserRolesListResponse(api.UserRolesListResponse o) { |
| 7978 buildCounterUserRolesListResponse++; | 7978 buildCounterUserRolesListResponse++; |
| 7979 if (buildCounterUserRolesListResponse < 3) { | 7979 if (buildCounterUserRolesListResponse < 3) { |
| 7980 unittest.expect(o.kind, unittest.equals('foo')); | 7980 unittest.expect(o.kind, unittest.equals('foo')); |
| 7981 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7981 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7982 checkUnnamed1217(o.userRoles); | 7982 checkUnnamed937(o.userRoles); |
| 7983 } | 7983 } |
| 7984 buildCounterUserRolesListResponse--; | 7984 buildCounterUserRolesListResponse--; |
| 7985 } | 7985 } |
| 7986 | 7986 |
| 7987 buildUnnamed1218() { | 7987 buildUnnamed938() { |
| 7988 var o = new core.List<core.String>(); | 7988 var o = new core.List<core.String>(); |
| 7989 o.add("foo"); | 7989 o.add("foo"); |
| 7990 o.add("foo"); | 7990 o.add("foo"); |
| 7991 return o; | 7991 return o; |
| 7992 } | 7992 } |
| 7993 | 7993 |
| 7994 checkUnnamed1218(core.List<core.String> o) { | 7994 checkUnnamed938(core.List<core.String> o) { |
| 7995 unittest.expect(o, unittest.hasLength(2)); | 7995 unittest.expect(o, unittest.hasLength(2)); |
| 7996 unittest.expect(o[0], unittest.equals('foo')); | 7996 unittest.expect(o[0], unittest.equals('foo')); |
| 7997 unittest.expect(o[1], unittest.equals('foo')); | 7997 unittest.expect(o[1], unittest.equals('foo')); |
| 7998 } | 7998 } |
| 7999 | 7999 |
| 8000 buildUnnamed1219() { | 8000 buildUnnamed939() { |
| 8001 var o = new core.List<core.String>(); | 8001 var o = new core.List<core.String>(); |
| 8002 o.add("foo"); | 8002 o.add("foo"); |
| 8003 o.add("foo"); | 8003 o.add("foo"); |
| 8004 return o; | 8004 return o; |
| 8005 } | 8005 } |
| 8006 | 8006 |
| 8007 checkUnnamed1219(core.List<core.String> o) { | 8007 checkUnnamed939(core.List<core.String> o) { |
| 8008 unittest.expect(o, unittest.hasLength(2)); | 8008 unittest.expect(o, unittest.hasLength(2)); |
| 8009 unittest.expect(o[0], unittest.equals('foo')); | 8009 unittest.expect(o[0], unittest.equals('foo')); |
| 8010 unittest.expect(o[1], unittest.equals('foo')); | 8010 unittest.expect(o[1], unittest.equals('foo')); |
| 8011 } | 8011 } |
| 8012 | 8012 |
| 8013 buildUnnamed1220() { | 8013 buildUnnamed940() { |
| 8014 var o = new core.List<core.String>(); | 8014 var o = new core.List<core.String>(); |
| 8015 o.add("foo"); | 8015 o.add("foo"); |
| 8016 o.add("foo"); | 8016 o.add("foo"); |
| 8017 return o; | 8017 return o; |
| 8018 } | 8018 } |
| 8019 | 8019 |
| 8020 checkUnnamed1220(core.List<core.String> o) { | 8020 checkUnnamed940(core.List<core.String> o) { |
| 8021 unittest.expect(o, unittest.hasLength(2)); | 8021 unittest.expect(o, unittest.hasLength(2)); |
| 8022 unittest.expect(o[0], unittest.equals('foo')); | 8022 unittest.expect(o[0], unittest.equals('foo')); |
| 8023 unittest.expect(o[1], unittest.equals('foo')); | 8023 unittest.expect(o[1], unittest.equals('foo')); |
| 8024 } | 8024 } |
| 8025 | 8025 |
| 8026 buildUnnamed1221() { | 8026 buildUnnamed941() { |
| 8027 var o = new core.List<core.String>(); | 8027 var o = new core.List<core.String>(); |
| 8028 o.add("foo"); | 8028 o.add("foo"); |
| 8029 o.add("foo"); | 8029 o.add("foo"); |
| 8030 return o; | 8030 return o; |
| 8031 } | 8031 } |
| 8032 | 8032 |
| 8033 checkUnnamed1221(core.List<core.String> o) { | 8033 checkUnnamed941(core.List<core.String> o) { |
| 8034 unittest.expect(o, unittest.hasLength(2)); | 8034 unittest.expect(o, unittest.hasLength(2)); |
| 8035 unittest.expect(o[0], unittest.equals('foo')); | 8035 unittest.expect(o[0], unittest.equals('foo')); |
| 8036 unittest.expect(o[1], unittest.equals('foo')); | 8036 unittest.expect(o[1], unittest.equals('foo')); |
| 8037 } | 8037 } |
| 8038 | 8038 |
| 8039 buildUnnamed1222() { | 8039 buildUnnamed942() { |
| 8040 var o = new core.List<core.String>(); | 8040 var o = new core.List<core.String>(); |
| 8041 o.add("foo"); | 8041 o.add("foo"); |
| 8042 o.add("foo"); | 8042 o.add("foo"); |
| 8043 return o; | 8043 return o; |
| 8044 } | 8044 } |
| 8045 | 8045 |
| 8046 checkUnnamed1222(core.List<core.String> o) { | 8046 checkUnnamed942(core.List<core.String> o) { |
| 8047 unittest.expect(o, unittest.hasLength(2)); | 8047 unittest.expect(o, unittest.hasLength(2)); |
| 8048 unittest.expect(o[0], unittest.equals('foo')); | 8048 unittest.expect(o[0], unittest.equals('foo')); |
| 8049 unittest.expect(o[1], unittest.equals('foo')); | 8049 unittest.expect(o[1], unittest.equals('foo')); |
| 8050 } | 8050 } |
| 8051 | 8051 |
| 8052 buildUnnamed1223() { | 8052 buildUnnamed943() { |
| 8053 var o = new core.List<core.String>(); | 8053 var o = new core.List<core.String>(); |
| 8054 o.add("foo"); | 8054 o.add("foo"); |
| 8055 o.add("foo"); | 8055 o.add("foo"); |
| 8056 return o; | 8056 return o; |
| 8057 } | 8057 } |
| 8058 | 8058 |
| 8059 checkUnnamed1223(core.List<core.String> o) { | 8059 checkUnnamed943(core.List<core.String> o) { |
| 8060 unittest.expect(o, unittest.hasLength(2)); | 8060 unittest.expect(o, unittest.hasLength(2)); |
| 8061 unittest.expect(o[0], unittest.equals('foo')); | 8061 unittest.expect(o[0], unittest.equals('foo')); |
| 8062 unittest.expect(o[1], unittest.equals('foo')); | 8062 unittest.expect(o[1], unittest.equals('foo')); |
| 8063 } | 8063 } |
| 8064 | 8064 |
| 8065 buildUnnamed1224() { | 8065 buildUnnamed944() { |
| 8066 var o = new core.List<core.String>(); | 8066 var o = new core.List<core.String>(); |
| 8067 o.add("foo"); | 8067 o.add("foo"); |
| 8068 o.add("foo"); | 8068 o.add("foo"); |
| 8069 return o; | 8069 return o; |
| 8070 } | 8070 } |
| 8071 | 8071 |
| 8072 checkUnnamed1224(core.List<core.String> o) { | 8072 checkUnnamed944(core.List<core.String> o) { |
| 8073 unittest.expect(o, unittest.hasLength(2)); | 8073 unittest.expect(o, unittest.hasLength(2)); |
| 8074 unittest.expect(o[0], unittest.equals('foo')); | 8074 unittest.expect(o[0], unittest.equals('foo')); |
| 8075 unittest.expect(o[1], unittest.equals('foo')); | 8075 unittest.expect(o[1], unittest.equals('foo')); |
| 8076 } | 8076 } |
| 8077 | 8077 |
| 8078 buildUnnamed1225() { | 8078 buildUnnamed945() { |
| 8079 var o = new core.List<core.String>(); | 8079 var o = new core.List<core.String>(); |
| 8080 o.add("foo"); | 8080 o.add("foo"); |
| 8081 o.add("foo"); | 8081 o.add("foo"); |
| 8082 return o; | 8082 return o; |
| 8083 } | 8083 } |
| 8084 | 8084 |
| 8085 checkUnnamed1225(core.List<core.String> o) { | 8085 checkUnnamed945(core.List<core.String> o) { |
| 8086 unittest.expect(o, unittest.hasLength(2)); | 8086 unittest.expect(o, unittest.hasLength(2)); |
| 8087 unittest.expect(o[0], unittest.equals('foo')); | 8087 unittest.expect(o[0], unittest.equals('foo')); |
| 8088 unittest.expect(o[1], unittest.equals('foo')); | 8088 unittest.expect(o[1], unittest.equals('foo')); |
| 8089 } | 8089 } |
| 8090 | 8090 |
| 8091 buildUnnamed1226() { | 8091 buildUnnamed946() { |
| 8092 var o = new core.List<core.String>(); | 8092 var o = new core.List<core.String>(); |
| 8093 o.add("foo"); | 8093 o.add("foo"); |
| 8094 o.add("foo"); | 8094 o.add("foo"); |
| 8095 return o; | 8095 return o; |
| 8096 } | 8096 } |
| 8097 | 8097 |
| 8098 checkUnnamed1226(core.List<core.String> o) { | 8098 checkUnnamed946(core.List<core.String> o) { |
| 8099 unittest.expect(o, unittest.hasLength(2)); | 8099 unittest.expect(o, unittest.hasLength(2)); |
| 8100 unittest.expect(o[0], unittest.equals('foo')); | 8100 unittest.expect(o[0], unittest.equals('foo')); |
| 8101 unittest.expect(o[1], unittest.equals('foo')); | 8101 unittest.expect(o[1], unittest.equals('foo')); |
| 8102 } | 8102 } |
| 8103 | 8103 |
| 8104 buildUnnamed1227() { | 8104 buildUnnamed947() { |
| 8105 var o = new core.List<core.String>(); | 8105 var o = new core.List<core.String>(); |
| 8106 o.add("foo"); | 8106 o.add("foo"); |
| 8107 o.add("foo"); | 8107 o.add("foo"); |
| 8108 return o; | 8108 return o; |
| 8109 } | 8109 } |
| 8110 | 8110 |
| 8111 checkUnnamed1227(core.List<core.String> o) { | 8111 checkUnnamed947(core.List<core.String> o) { |
| 8112 unittest.expect(o, unittest.hasLength(2)); | 8112 unittest.expect(o, unittest.hasLength(2)); |
| 8113 unittest.expect(o[0], unittest.equals('foo')); | 8113 unittest.expect(o[0], unittest.equals('foo')); |
| 8114 unittest.expect(o[1], unittest.equals('foo')); | 8114 unittest.expect(o[1], unittest.equals('foo')); |
| 8115 } | 8115 } |
| 8116 | 8116 |
| 8117 buildUnnamed1228() { | 8117 buildUnnamed948() { |
| 8118 var o = new core.List<core.String>(); | 8118 var o = new core.List<core.String>(); |
| 8119 o.add("foo"); | 8119 o.add("foo"); |
| 8120 o.add("foo"); | 8120 o.add("foo"); |
| 8121 return o; | 8121 return o; |
| 8122 } | 8122 } |
| 8123 | 8123 |
| 8124 checkUnnamed1228(core.List<core.String> o) { | 8124 checkUnnamed948(core.List<core.String> o) { |
| 8125 unittest.expect(o, unittest.hasLength(2)); | 8125 unittest.expect(o, unittest.hasLength(2)); |
| 8126 unittest.expect(o[0], unittest.equals('foo')); | 8126 unittest.expect(o[0], unittest.equals('foo')); |
| 8127 unittest.expect(o[1], unittest.equals('foo')); | 8127 unittest.expect(o[1], unittest.equals('foo')); |
| 8128 } | 8128 } |
| 8129 | 8129 |
| 8130 buildUnnamed1229() { | 8130 buildUnnamed949() { |
| 8131 var o = new core.List<core.String>(); | 8131 var o = new core.List<core.String>(); |
| 8132 o.add("foo"); | 8132 o.add("foo"); |
| 8133 o.add("foo"); | 8133 o.add("foo"); |
| 8134 return o; | 8134 return o; |
| 8135 } | 8135 } |
| 8136 | 8136 |
| 8137 checkUnnamed1229(core.List<core.String> o) { | 8137 checkUnnamed949(core.List<core.String> o) { |
| 8138 unittest.expect(o, unittest.hasLength(2)); | 8138 unittest.expect(o, unittest.hasLength(2)); |
| 8139 unittest.expect(o[0], unittest.equals('foo')); | 8139 unittest.expect(o[0], unittest.equals('foo')); |
| 8140 unittest.expect(o[1], unittest.equals('foo')); | 8140 unittest.expect(o[1], unittest.equals('foo')); |
| 8141 } | 8141 } |
| 8142 | 8142 |
| 8143 buildUnnamed1230() { | 8143 buildUnnamed950() { |
| 8144 var o = new core.List<core.String>(); | 8144 var o = new core.List<core.String>(); |
| 8145 o.add("foo"); | 8145 o.add("foo"); |
| 8146 o.add("foo"); | 8146 o.add("foo"); |
| 8147 return o; | 8147 return o; |
| 8148 } | 8148 } |
| 8149 | 8149 |
| 8150 checkUnnamed1230(core.List<core.String> o) { | 8150 checkUnnamed950(core.List<core.String> o) { |
| 8151 unittest.expect(o, unittest.hasLength(2)); | 8151 unittest.expect(o, unittest.hasLength(2)); |
| 8152 unittest.expect(o[0], unittest.equals('foo')); | 8152 unittest.expect(o[0], unittest.equals('foo')); |
| 8153 unittest.expect(o[1], unittest.equals('foo')); | 8153 unittest.expect(o[1], unittest.equals('foo')); |
| 8154 } | 8154 } |
| 8155 | 8155 |
| 8156 buildUnnamed1231() { | 8156 buildUnnamed951() { |
| 8157 var o = new core.List<core.String>(); | 8157 var o = new core.List<core.String>(); |
| 8158 o.add("foo"); | 8158 o.add("foo"); |
| 8159 o.add("foo"); | 8159 o.add("foo"); |
| 8160 return o; | 8160 return o; |
| 8161 } | 8161 } |
| 8162 | 8162 |
| 8163 checkUnnamed1231(core.List<core.String> o) { | 8163 checkUnnamed951(core.List<core.String> o) { |
| 8164 unittest.expect(o, unittest.hasLength(2)); | 8164 unittest.expect(o, unittest.hasLength(2)); |
| 8165 unittest.expect(o[0], unittest.equals('foo')); | 8165 unittest.expect(o[0], unittest.equals('foo')); |
| 8166 unittest.expect(o[1], unittest.equals('foo')); | 8166 unittest.expect(o[1], unittest.equals('foo')); |
| 8167 } | 8167 } |
| 8168 | 8168 |
| 8169 buildUnnamed1232() { | 8169 buildUnnamed952() { |
| 8170 var o = new core.List<core.String>(); | 8170 var o = new core.List<core.String>(); |
| 8171 o.add("foo"); | 8171 o.add("foo"); |
| 8172 o.add("foo"); | 8172 o.add("foo"); |
| 8173 return o; | 8173 return o; |
| 8174 } | 8174 } |
| 8175 | 8175 |
| 8176 checkUnnamed1232(core.List<core.String> o) { | 8176 checkUnnamed952(core.List<core.String> o) { |
| 8177 unittest.expect(o, unittest.hasLength(2)); | 8177 unittest.expect(o, unittest.hasLength(2)); |
| 8178 unittest.expect(o[0], unittest.equals('foo')); | 8178 unittest.expect(o[0], unittest.equals('foo')); |
| 8179 unittest.expect(o[1], unittest.equals('foo')); | 8179 unittest.expect(o[1], unittest.equals('foo')); |
| 8180 } | 8180 } |
| 8181 | 8181 |
| 8182 buildUnnamed1233() { | 8182 buildUnnamed953() { |
| 8183 var o = new core.List<core.String>(); | 8183 var o = new core.List<core.String>(); |
| 8184 o.add("foo"); | 8184 o.add("foo"); |
| 8185 o.add("foo"); | 8185 o.add("foo"); |
| 8186 return o; | 8186 return o; |
| 8187 } | 8187 } |
| 8188 | 8188 |
| 8189 checkUnnamed1233(core.List<core.String> o) { | 8189 checkUnnamed953(core.List<core.String> o) { |
| 8190 unittest.expect(o, unittest.hasLength(2)); | 8190 unittest.expect(o, unittest.hasLength(2)); |
| 8191 unittest.expect(o[0], unittest.equals('foo')); | 8191 unittest.expect(o[0], unittest.equals('foo')); |
| 8192 unittest.expect(o[1], unittest.equals('foo')); | 8192 unittest.expect(o[1], unittest.equals('foo')); |
| 8193 } | 8193 } |
| 8194 | 8194 |
| 8195 buildUnnamed1234() { | 8195 buildUnnamed954() { |
| 8196 var o = new core.List<core.String>(); | 8196 var o = new core.List<core.String>(); |
| 8197 o.add("foo"); | 8197 o.add("foo"); |
| 8198 o.add("foo"); | 8198 o.add("foo"); |
| 8199 return o; | 8199 return o; |
| 8200 } | 8200 } |
| 8201 | 8201 |
| 8202 checkUnnamed1234(core.List<core.String> o) { | 8202 checkUnnamed954(core.List<core.String> o) { |
| 8203 unittest.expect(o, unittest.hasLength(2)); | 8203 unittest.expect(o, unittest.hasLength(2)); |
| 8204 unittest.expect(o[0], unittest.equals('foo')); | 8204 unittest.expect(o[0], unittest.equals('foo')); |
| 8205 unittest.expect(o[1], unittest.equals('foo')); | 8205 unittest.expect(o[1], unittest.equals('foo')); |
| 8206 } | 8206 } |
| 8207 | 8207 |
| 8208 buildUnnamed1235() { | 8208 buildUnnamed955() { |
| 8209 var o = new core.List<core.String>(); | 8209 var o = new core.List<core.String>(); |
| 8210 o.add("foo"); | 8210 o.add("foo"); |
| 8211 o.add("foo"); | 8211 o.add("foo"); |
| 8212 return o; | 8212 return o; |
| 8213 } | 8213 } |
| 8214 | 8214 |
| 8215 checkUnnamed1235(core.List<core.String> o) { | 8215 checkUnnamed955(core.List<core.String> o) { |
| 8216 unittest.expect(o, unittest.hasLength(2)); | 8216 unittest.expect(o, unittest.hasLength(2)); |
| 8217 unittest.expect(o[0], unittest.equals('foo')); | 8217 unittest.expect(o[0], unittest.equals('foo')); |
| 8218 unittest.expect(o[1], unittest.equals('foo')); | 8218 unittest.expect(o[1], unittest.equals('foo')); |
| 8219 } | 8219 } |
| 8220 | 8220 |
| 8221 buildUnnamed1236() { | 8221 buildUnnamed956() { |
| 8222 var o = new core.List<core.String>(); | 8222 var o = new core.List<core.String>(); |
| 8223 o.add("foo"); | 8223 o.add("foo"); |
| 8224 o.add("foo"); | 8224 o.add("foo"); |
| 8225 return o; | 8225 return o; |
| 8226 } | 8226 } |
| 8227 | 8227 |
| 8228 checkUnnamed1236(core.List<core.String> o) { | 8228 checkUnnamed956(core.List<core.String> o) { |
| 8229 unittest.expect(o, unittest.hasLength(2)); | 8229 unittest.expect(o, unittest.hasLength(2)); |
| 8230 unittest.expect(o[0], unittest.equals('foo')); | 8230 unittest.expect(o[0], unittest.equals('foo')); |
| 8231 unittest.expect(o[1], unittest.equals('foo')); | 8231 unittest.expect(o[1], unittest.equals('foo')); |
| 8232 } | 8232 } |
| 8233 | 8233 |
| 8234 buildUnnamed1237() { | 8234 buildUnnamed957() { |
| 8235 var o = new core.List<core.String>(); | 8235 var o = new core.List<core.String>(); |
| 8236 o.add("foo"); | 8236 o.add("foo"); |
| 8237 o.add("foo"); | 8237 o.add("foo"); |
| 8238 return o; | 8238 return o; |
| 8239 } | 8239 } |
| 8240 | 8240 |
| 8241 checkUnnamed1237(core.List<core.String> o) { | 8241 checkUnnamed957(core.List<core.String> o) { |
| 8242 unittest.expect(o, unittest.hasLength(2)); | 8242 unittest.expect(o, unittest.hasLength(2)); |
| 8243 unittest.expect(o[0], unittest.equals('foo')); | 8243 unittest.expect(o[0], unittest.equals('foo')); |
| 8244 unittest.expect(o[1], unittest.equals('foo')); | 8244 unittest.expect(o[1], unittest.equals('foo')); |
| 8245 } | 8245 } |
| 8246 | 8246 |
| 8247 buildUnnamed1238() { | 8247 buildUnnamed958() { |
| 8248 var o = new core.List<core.String>(); | 8248 var o = new core.List<core.String>(); |
| 8249 o.add("foo"); | 8249 o.add("foo"); |
| 8250 o.add("foo"); | 8250 o.add("foo"); |
| 8251 return o; | 8251 return o; |
| 8252 } | 8252 } |
| 8253 | 8253 |
| 8254 checkUnnamed1238(core.List<core.String> o) { | 8254 checkUnnamed958(core.List<core.String> o) { |
| 8255 unittest.expect(o, unittest.hasLength(2)); | 8255 unittest.expect(o, unittest.hasLength(2)); |
| 8256 unittest.expect(o[0], unittest.equals('foo')); | 8256 unittest.expect(o[0], unittest.equals('foo')); |
| 8257 unittest.expect(o[1], unittest.equals('foo')); | 8257 unittest.expect(o[1], unittest.equals('foo')); |
| 8258 } | 8258 } |
| 8259 | 8259 |
| 8260 buildUnnamed1239() { | 8260 buildUnnamed959() { |
| 8261 var o = new core.List<core.String>(); | 8261 var o = new core.List<core.String>(); |
| 8262 o.add("foo"); | 8262 o.add("foo"); |
| 8263 o.add("foo"); | 8263 o.add("foo"); |
| 8264 return o; | 8264 return o; |
| 8265 } | 8265 } |
| 8266 | 8266 |
| 8267 checkUnnamed1239(core.List<core.String> o) { | 8267 checkUnnamed959(core.List<core.String> o) { |
| 8268 unittest.expect(o, unittest.hasLength(2)); | 8268 unittest.expect(o, unittest.hasLength(2)); |
| 8269 unittest.expect(o[0], unittest.equals('foo')); | 8269 unittest.expect(o[0], unittest.equals('foo')); |
| 8270 unittest.expect(o[1], unittest.equals('foo')); | 8270 unittest.expect(o[1], unittest.equals('foo')); |
| 8271 } | 8271 } |
| 8272 | 8272 |
| 8273 buildUnnamed1240() { | 8273 buildUnnamed960() { |
| 8274 var o = new core.List<core.String>(); | 8274 var o = new core.List<core.String>(); |
| 8275 o.add("foo"); | 8275 o.add("foo"); |
| 8276 o.add("foo"); | 8276 o.add("foo"); |
| 8277 return o; | 8277 return o; |
| 8278 } | 8278 } |
| 8279 | 8279 |
| 8280 checkUnnamed1240(core.List<core.String> o) { | 8280 checkUnnamed960(core.List<core.String> o) { |
| 8281 unittest.expect(o, unittest.hasLength(2)); | 8281 unittest.expect(o, unittest.hasLength(2)); |
| 8282 unittest.expect(o[0], unittest.equals('foo')); | 8282 unittest.expect(o[0], unittest.equals('foo')); |
| 8283 unittest.expect(o[1], unittest.equals('foo')); | 8283 unittest.expect(o[1], unittest.equals('foo')); |
| 8284 } | 8284 } |
| 8285 | 8285 |
| 8286 buildUnnamed1241() { | 8286 buildUnnamed961() { |
| 8287 var o = new core.List<core.String>(); | 8287 var o = new core.List<core.String>(); |
| 8288 o.add("foo"); | 8288 o.add("foo"); |
| 8289 o.add("foo"); | 8289 o.add("foo"); |
| 8290 return o; | 8290 return o; |
| 8291 } | 8291 } |
| 8292 | 8292 |
| 8293 checkUnnamed1241(core.List<core.String> o) { | 8293 checkUnnamed961(core.List<core.String> o) { |
| 8294 unittest.expect(o, unittest.hasLength(2)); | 8294 unittest.expect(o, unittest.hasLength(2)); |
| 8295 unittest.expect(o[0], unittest.equals('foo')); | 8295 unittest.expect(o[0], unittest.equals('foo')); |
| 8296 unittest.expect(o[1], unittest.equals('foo')); | 8296 unittest.expect(o[1], unittest.equals('foo')); |
| 8297 } | 8297 } |
| 8298 | 8298 |
| 8299 buildUnnamed1242() { | 8299 buildUnnamed962() { |
| 8300 var o = new core.List<core.String>(); | 8300 var o = new core.List<core.String>(); |
| 8301 o.add("foo"); | 8301 o.add("foo"); |
| 8302 o.add("foo"); | 8302 o.add("foo"); |
| 8303 return o; | 8303 return o; |
| 8304 } | 8304 } |
| 8305 | 8305 |
| 8306 checkUnnamed1242(core.List<core.String> o) { | 8306 checkUnnamed962(core.List<core.String> o) { |
| 8307 unittest.expect(o, unittest.hasLength(2)); | 8307 unittest.expect(o, unittest.hasLength(2)); |
| 8308 unittest.expect(o[0], unittest.equals('foo')); | 8308 unittest.expect(o[0], unittest.equals('foo')); |
| 8309 unittest.expect(o[1], unittest.equals('foo')); | 8309 unittest.expect(o[1], unittest.equals('foo')); |
| 8310 } | 8310 } |
| 8311 | 8311 |
| 8312 buildUnnamed1243() { | 8312 buildUnnamed963() { |
| 8313 var o = new core.List<core.String>(); | 8313 var o = new core.List<core.String>(); |
| 8314 o.add("foo"); | 8314 o.add("foo"); |
| 8315 o.add("foo"); | 8315 o.add("foo"); |
| 8316 return o; | 8316 return o; |
| 8317 } | 8317 } |
| 8318 | 8318 |
| 8319 checkUnnamed1243(core.List<core.String> o) { | 8319 checkUnnamed963(core.List<core.String> o) { |
| 8320 unittest.expect(o, unittest.hasLength(2)); | 8320 unittest.expect(o, unittest.hasLength(2)); |
| 8321 unittest.expect(o[0], unittest.equals('foo')); | 8321 unittest.expect(o[0], unittest.equals('foo')); |
| 8322 unittest.expect(o[1], unittest.equals('foo')); | 8322 unittest.expect(o[1], unittest.equals('foo')); |
| 8323 } | 8323 } |
| 8324 | 8324 |
| 8325 buildUnnamed1244() { | 8325 buildUnnamed964() { |
| 8326 var o = new core.List<core.String>(); | 8326 var o = new core.List<core.String>(); |
| 8327 o.add("foo"); | 8327 o.add("foo"); |
| 8328 o.add("foo"); | 8328 o.add("foo"); |
| 8329 return o; | 8329 return o; |
| 8330 } | 8330 } |
| 8331 | 8331 |
| 8332 checkUnnamed1244(core.List<core.String> o) { | 8332 checkUnnamed964(core.List<core.String> o) { |
| 8333 unittest.expect(o, unittest.hasLength(2)); | 8333 unittest.expect(o, unittest.hasLength(2)); |
| 8334 unittest.expect(o[0], unittest.equals('foo')); | 8334 unittest.expect(o[0], unittest.equals('foo')); |
| 8335 unittest.expect(o[1], unittest.equals('foo')); | 8335 unittest.expect(o[1], unittest.equals('foo')); |
| 8336 } | 8336 } |
| 8337 | 8337 |
| 8338 buildUnnamed1245() { | 8338 buildUnnamed965() { |
| 8339 var o = new core.List<core.String>(); | 8339 var o = new core.List<core.String>(); |
| 8340 o.add("foo"); | 8340 o.add("foo"); |
| 8341 o.add("foo"); | 8341 o.add("foo"); |
| 8342 return o; | 8342 return o; |
| 8343 } | 8343 } |
| 8344 | 8344 |
| 8345 checkUnnamed1245(core.List<core.String> o) { | 8345 checkUnnamed965(core.List<core.String> o) { |
| 8346 unittest.expect(o, unittest.hasLength(2)); | 8346 unittest.expect(o, unittest.hasLength(2)); |
| 8347 unittest.expect(o[0], unittest.equals('foo')); | 8347 unittest.expect(o[0], unittest.equals('foo')); |
| 8348 unittest.expect(o[1], unittest.equals('foo')); | 8348 unittest.expect(o[1], unittest.equals('foo')); |
| 8349 } | 8349 } |
| 8350 | 8350 |
| 8351 buildUnnamed1246() { | 8351 buildUnnamed966() { |
| 8352 var o = new core.List<core.String>(); | 8352 var o = new core.List<core.String>(); |
| 8353 o.add("foo"); | 8353 o.add("foo"); |
| 8354 o.add("foo"); | 8354 o.add("foo"); |
| 8355 return o; | 8355 return o; |
| 8356 } | 8356 } |
| 8357 | 8357 |
| 8358 checkUnnamed1246(core.List<core.String> o) { | 8358 checkUnnamed966(core.List<core.String> o) { |
| 8359 unittest.expect(o, unittest.hasLength(2)); | 8359 unittest.expect(o, unittest.hasLength(2)); |
| 8360 unittest.expect(o[0], unittest.equals('foo')); | 8360 unittest.expect(o[0], unittest.equals('foo')); |
| 8361 unittest.expect(o[1], unittest.equals('foo')); | 8361 unittest.expect(o[1], unittest.equals('foo')); |
| 8362 } | 8362 } |
| 8363 | 8363 |
| 8364 buildUnnamed1247() { | 8364 buildUnnamed967() { |
| 8365 var o = new core.List<core.String>(); | 8365 var o = new core.List<core.String>(); |
| 8366 o.add("foo"); | 8366 o.add("foo"); |
| 8367 o.add("foo"); | 8367 o.add("foo"); |
| 8368 return o; | 8368 return o; |
| 8369 } | 8369 } |
| 8370 | 8370 |
| 8371 checkUnnamed1247(core.List<core.String> o) { | 8371 checkUnnamed967(core.List<core.String> o) { |
| 8372 unittest.expect(o, unittest.hasLength(2)); | 8372 unittest.expect(o, unittest.hasLength(2)); |
| 8373 unittest.expect(o[0], unittest.equals('foo')); | 8373 unittest.expect(o[0], unittest.equals('foo')); |
| 8374 unittest.expect(o[1], unittest.equals('foo')); | 8374 unittest.expect(o[1], unittest.equals('foo')); |
| 8375 } | 8375 } |
| 8376 | 8376 |
| 8377 buildUnnamed1248() { | 8377 buildUnnamed968() { |
| 8378 var o = new core.List<core.String>(); | 8378 var o = new core.List<core.String>(); |
| 8379 o.add("foo"); | 8379 o.add("foo"); |
| 8380 o.add("foo"); | 8380 o.add("foo"); |
| 8381 return o; | 8381 return o; |
| 8382 } | 8382 } |
| 8383 | 8383 |
| 8384 checkUnnamed1248(core.List<core.String> o) { | 8384 checkUnnamed968(core.List<core.String> o) { |
| 8385 unittest.expect(o, unittest.hasLength(2)); | 8385 unittest.expect(o, unittest.hasLength(2)); |
| 8386 unittest.expect(o[0], unittest.equals('foo')); | 8386 unittest.expect(o[0], unittest.equals('foo')); |
| 8387 unittest.expect(o[1], unittest.equals('foo')); | 8387 unittest.expect(o[1], unittest.equals('foo')); |
| 8388 } | 8388 } |
| 8389 | 8389 |
| 8390 buildUnnamed1249() { | 8390 buildUnnamed969() { |
| 8391 var o = new core.List<core.String>(); | 8391 var o = new core.List<core.String>(); |
| 8392 o.add("foo"); | 8392 o.add("foo"); |
| 8393 o.add("foo"); | 8393 o.add("foo"); |
| 8394 return o; | 8394 return o; |
| 8395 } | 8395 } |
| 8396 | 8396 |
| 8397 checkUnnamed1249(core.List<core.String> o) { | 8397 checkUnnamed969(core.List<core.String> o) { |
| 8398 unittest.expect(o, unittest.hasLength(2)); | 8398 unittest.expect(o, unittest.hasLength(2)); |
| 8399 unittest.expect(o[0], unittest.equals('foo')); | 8399 unittest.expect(o[0], unittest.equals('foo')); |
| 8400 unittest.expect(o[1], unittest.equals('foo')); | 8400 unittest.expect(o[1], unittest.equals('foo')); |
| 8401 } | 8401 } |
| 8402 | 8402 |
| 8403 buildUnnamed1250() { | 8403 buildUnnamed970() { |
| 8404 var o = new core.List<core.String>(); | 8404 var o = new core.List<core.String>(); |
| 8405 o.add("foo"); | 8405 o.add("foo"); |
| 8406 o.add("foo"); | 8406 o.add("foo"); |
| 8407 return o; | 8407 return o; |
| 8408 } | 8408 } |
| 8409 | 8409 |
| 8410 checkUnnamed1250(core.List<core.String> o) { | 8410 checkUnnamed970(core.List<core.String> o) { |
| 8411 unittest.expect(o, unittest.hasLength(2)); | 8411 unittest.expect(o, unittest.hasLength(2)); |
| 8412 unittest.expect(o[0], unittest.equals('foo')); | 8412 unittest.expect(o[0], unittest.equals('foo')); |
| 8413 unittest.expect(o[1], unittest.equals('foo')); | 8413 unittest.expect(o[1], unittest.equals('foo')); |
| 8414 } | 8414 } |
| 8415 | 8415 |
| 8416 buildUnnamed1251() { | 8416 buildUnnamed971() { |
| 8417 var o = new core.List<core.String>(); | 8417 var o = new core.List<core.String>(); |
| 8418 o.add("foo"); | 8418 o.add("foo"); |
| 8419 o.add("foo"); | 8419 o.add("foo"); |
| 8420 return o; | 8420 return o; |
| 8421 } | 8421 } |
| 8422 | 8422 |
| 8423 checkUnnamed1251(core.List<core.String> o) { | 8423 checkUnnamed971(core.List<core.String> o) { |
| 8424 unittest.expect(o, unittest.hasLength(2)); | 8424 unittest.expect(o, unittest.hasLength(2)); |
| 8425 unittest.expect(o[0], unittest.equals('foo')); | 8425 unittest.expect(o[0], unittest.equals('foo')); |
| 8426 unittest.expect(o[1], unittest.equals('foo')); | 8426 unittest.expect(o[1], unittest.equals('foo')); |
| 8427 } | 8427 } |
| 8428 | 8428 |
| 8429 buildUnnamed1252() { | 8429 buildUnnamed972() { |
| 8430 var o = new core.List<core.String>(); | 8430 var o = new core.List<core.String>(); |
| 8431 o.add("foo"); | 8431 o.add("foo"); |
| 8432 o.add("foo"); | 8432 o.add("foo"); |
| 8433 return o; | 8433 return o; |
| 8434 } | 8434 } |
| 8435 | 8435 |
| 8436 checkUnnamed1252(core.List<core.String> o) { | 8436 checkUnnamed972(core.List<core.String> o) { |
| 8437 unittest.expect(o, unittest.hasLength(2)); | 8437 unittest.expect(o, unittest.hasLength(2)); |
| 8438 unittest.expect(o[0], unittest.equals('foo')); | 8438 unittest.expect(o[0], unittest.equals('foo')); |
| 8439 unittest.expect(o[1], unittest.equals('foo')); | 8439 unittest.expect(o[1], unittest.equals('foo')); |
| 8440 } | 8440 } |
| 8441 | 8441 |
| 8442 buildUnnamed1253() { | 8442 buildUnnamed973() { |
| 8443 var o = new core.List<core.String>(); | 8443 var o = new core.List<core.String>(); |
| 8444 o.add("foo"); | 8444 o.add("foo"); |
| 8445 o.add("foo"); | 8445 o.add("foo"); |
| 8446 return o; | 8446 return o; |
| 8447 } | 8447 } |
| 8448 | 8448 |
| 8449 checkUnnamed1253(core.List<core.String> o) { | 8449 checkUnnamed973(core.List<core.String> o) { |
| 8450 unittest.expect(o, unittest.hasLength(2)); | 8450 unittest.expect(o, unittest.hasLength(2)); |
| 8451 unittest.expect(o[0], unittest.equals('foo')); | 8451 unittest.expect(o[0], unittest.equals('foo')); |
| 8452 unittest.expect(o[1], unittest.equals('foo')); | 8452 unittest.expect(o[1], unittest.equals('foo')); |
| 8453 } | 8453 } |
| 8454 | 8454 |
| 8455 buildUnnamed1254() { | 8455 buildUnnamed974() { |
| 8456 var o = new core.List<core.String>(); | 8456 var o = new core.List<core.String>(); |
| 8457 o.add("foo"); | 8457 o.add("foo"); |
| 8458 o.add("foo"); | 8458 o.add("foo"); |
| 8459 return o; | 8459 return o; |
| 8460 } | 8460 } |
| 8461 | 8461 |
| 8462 checkUnnamed1254(core.List<core.String> o) { | 8462 checkUnnamed974(core.List<core.String> o) { |
| 8463 unittest.expect(o, unittest.hasLength(2)); | 8463 unittest.expect(o, unittest.hasLength(2)); |
| 8464 unittest.expect(o[0], unittest.equals('foo')); | 8464 unittest.expect(o[0], unittest.equals('foo')); |
| 8465 unittest.expect(o[1], unittest.equals('foo')); | 8465 unittest.expect(o[1], unittest.equals('foo')); |
| 8466 } | 8466 } |
| 8467 | 8467 |
| 8468 buildUnnamed1255() { | 8468 buildUnnamed975() { |
| 8469 var o = new core.List<core.String>(); | 8469 var o = new core.List<core.String>(); |
| 8470 o.add("foo"); | 8470 o.add("foo"); |
| 8471 o.add("foo"); | 8471 o.add("foo"); |
| 8472 return o; | 8472 return o; |
| 8473 } | 8473 } |
| 8474 | 8474 |
| 8475 checkUnnamed1255(core.List<core.String> o) { | 8475 checkUnnamed975(core.List<core.String> o) { |
| 8476 unittest.expect(o, unittest.hasLength(2)); | 8476 unittest.expect(o, unittest.hasLength(2)); |
| 8477 unittest.expect(o[0], unittest.equals('foo')); | 8477 unittest.expect(o[0], unittest.equals('foo')); |
| 8478 unittest.expect(o[1], unittest.equals('foo')); | 8478 unittest.expect(o[1], unittest.equals('foo')); |
| 8479 } | 8479 } |
| 8480 | 8480 |
| 8481 buildUnnamed1256() { | 8481 buildUnnamed976() { |
| 8482 var o = new core.List<core.String>(); | 8482 var o = new core.List<core.String>(); |
| 8483 o.add("foo"); | 8483 o.add("foo"); |
| 8484 o.add("foo"); | 8484 o.add("foo"); |
| 8485 return o; | 8485 return o; |
| 8486 } | 8486 } |
| 8487 | 8487 |
| 8488 checkUnnamed1256(core.List<core.String> o) { | 8488 checkUnnamed976(core.List<core.String> o) { |
| 8489 unittest.expect(o, unittest.hasLength(2)); | 8489 unittest.expect(o, unittest.hasLength(2)); |
| 8490 unittest.expect(o[0], unittest.equals('foo')); | 8490 unittest.expect(o[0], unittest.equals('foo')); |
| 8491 unittest.expect(o[1], unittest.equals('foo')); | 8491 unittest.expect(o[1], unittest.equals('foo')); |
| 8492 } | 8492 } |
| 8493 | 8493 |
| 8494 buildUnnamed1257() { | 8494 buildUnnamed977() { |
| 8495 var o = new core.List<core.String>(); | 8495 var o = new core.List<core.String>(); |
| 8496 o.add("foo"); | 8496 o.add("foo"); |
| 8497 o.add("foo"); | 8497 o.add("foo"); |
| 8498 return o; | 8498 return o; |
| 8499 } | 8499 } |
| 8500 | 8500 |
| 8501 checkUnnamed1257(core.List<core.String> o) { | 8501 checkUnnamed977(core.List<core.String> o) { |
| 8502 unittest.expect(o, unittest.hasLength(2)); | 8502 unittest.expect(o, unittest.hasLength(2)); |
| 8503 unittest.expect(o[0], unittest.equals('foo')); | 8503 unittest.expect(o[0], unittest.equals('foo')); |
| 8504 unittest.expect(o[1], unittest.equals('foo')); | 8504 unittest.expect(o[1], unittest.equals('foo')); |
| 8505 } | 8505 } |
| 8506 | 8506 |
| 8507 buildUnnamed1258() { | 8507 buildUnnamed978() { |
| 8508 var o = new core.List<core.String>(); | 8508 var o = new core.List<core.String>(); |
| 8509 o.add("foo"); | 8509 o.add("foo"); |
| 8510 o.add("foo"); | 8510 o.add("foo"); |
| 8511 return o; | 8511 return o; |
| 8512 } | 8512 } |
| 8513 | 8513 |
| 8514 checkUnnamed1258(core.List<core.String> o) { | 8514 checkUnnamed978(core.List<core.String> o) { |
| 8515 unittest.expect(o, unittest.hasLength(2)); | 8515 unittest.expect(o, unittest.hasLength(2)); |
| 8516 unittest.expect(o[0], unittest.equals('foo')); | 8516 unittest.expect(o[0], unittest.equals('foo')); |
| 8517 unittest.expect(o[1], unittest.equals('foo')); | 8517 unittest.expect(o[1], unittest.equals('foo')); |
| 8518 } | 8518 } |
| 8519 | 8519 |
| 8520 buildUnnamed1259() { | 8520 buildUnnamed979() { |
| 8521 var o = new core.List<core.String>(); | 8521 var o = new core.List<core.String>(); |
| 8522 o.add("foo"); | 8522 o.add("foo"); |
| 8523 o.add("foo"); | 8523 o.add("foo"); |
| 8524 return o; | 8524 return o; |
| 8525 } | 8525 } |
| 8526 | 8526 |
| 8527 checkUnnamed1259(core.List<core.String> o) { | 8527 checkUnnamed979(core.List<core.String> o) { |
| 8528 unittest.expect(o, unittest.hasLength(2)); | 8528 unittest.expect(o, unittest.hasLength(2)); |
| 8529 unittest.expect(o[0], unittest.equals('foo')); | 8529 unittest.expect(o[0], unittest.equals('foo')); |
| 8530 unittest.expect(o[1], unittest.equals('foo')); | 8530 unittest.expect(o[1], unittest.equals('foo')); |
| 8531 } | 8531 } |
| 8532 | 8532 |
| 8533 buildUnnamed1260() { | 8533 buildUnnamed980() { |
| 8534 var o = new core.List<core.String>(); | 8534 var o = new core.List<core.String>(); |
| 8535 o.add("foo"); | 8535 o.add("foo"); |
| 8536 o.add("foo"); | 8536 o.add("foo"); |
| 8537 return o; | 8537 return o; |
| 8538 } | 8538 } |
| 8539 | 8539 |
| 8540 checkUnnamed1260(core.List<core.String> o) { | 8540 checkUnnamed980(core.List<core.String> o) { |
| 8541 unittest.expect(o, unittest.hasLength(2)); | 8541 unittest.expect(o, unittest.hasLength(2)); |
| 8542 unittest.expect(o[0], unittest.equals('foo')); | 8542 unittest.expect(o[0], unittest.equals('foo')); |
| 8543 unittest.expect(o[1], unittest.equals('foo')); | 8543 unittest.expect(o[1], unittest.equals('foo')); |
| 8544 } | 8544 } |
| 8545 | 8545 |
| 8546 buildUnnamed1261() { | 8546 buildUnnamed981() { |
| 8547 var o = new core.List<core.String>(); | 8547 var o = new core.List<core.String>(); |
| 8548 o.add("foo"); | 8548 o.add("foo"); |
| 8549 o.add("foo"); | 8549 o.add("foo"); |
| 8550 return o; | 8550 return o; |
| 8551 } | 8551 } |
| 8552 | 8552 |
| 8553 checkUnnamed1261(core.List<core.String> o) { | 8553 checkUnnamed981(core.List<core.String> o) { |
| 8554 unittest.expect(o, unittest.hasLength(2)); | 8554 unittest.expect(o, unittest.hasLength(2)); |
| 8555 unittest.expect(o[0], unittest.equals('foo')); | 8555 unittest.expect(o[0], unittest.equals('foo')); |
| 8556 unittest.expect(o[1], unittest.equals('foo')); | 8556 unittest.expect(o[1], unittest.equals('foo')); |
| 8557 } | 8557 } |
| 8558 | 8558 |
| 8559 buildUnnamed1262() { | 8559 buildUnnamed982() { |
| 8560 var o = new core.List<core.String>(); | 8560 var o = new core.List<core.String>(); |
| 8561 o.add("foo"); | 8561 o.add("foo"); |
| 8562 o.add("foo"); | 8562 o.add("foo"); |
| 8563 return o; | 8563 return o; |
| 8564 } | 8564 } |
| 8565 | 8565 |
| 8566 checkUnnamed1262(core.List<core.String> o) { | 8566 checkUnnamed982(core.List<core.String> o) { |
| 8567 unittest.expect(o, unittest.hasLength(2)); | 8567 unittest.expect(o, unittest.hasLength(2)); |
| 8568 unittest.expect(o[0], unittest.equals('foo')); | 8568 unittest.expect(o[0], unittest.equals('foo')); |
| 8569 unittest.expect(o[1], unittest.equals('foo')); | 8569 unittest.expect(o[1], unittest.equals('foo')); |
| 8570 } | 8570 } |
| 8571 | 8571 |
| 8572 buildUnnamed1263() { | 8572 buildUnnamed983() { |
| 8573 var o = new core.List<core.String>(); | 8573 var o = new core.List<core.String>(); |
| 8574 o.add("foo"); | 8574 o.add("foo"); |
| 8575 o.add("foo"); | 8575 o.add("foo"); |
| 8576 return o; | 8576 return o; |
| 8577 } | 8577 } |
| 8578 | 8578 |
| 8579 checkUnnamed1263(core.List<core.String> o) { | 8579 checkUnnamed983(core.List<core.String> o) { |
| 8580 unittest.expect(o, unittest.hasLength(2)); | 8580 unittest.expect(o, unittest.hasLength(2)); |
| 8581 unittest.expect(o[0], unittest.equals('foo')); | 8581 unittest.expect(o[0], unittest.equals('foo')); |
| 8582 unittest.expect(o[1], unittest.equals('foo')); | 8582 unittest.expect(o[1], unittest.equals('foo')); |
| 8583 } | 8583 } |
| 8584 | 8584 |
| 8585 buildUnnamed1264() { | 8585 buildUnnamed984() { |
| 8586 var o = new core.List<core.String>(); | 8586 var o = new core.List<core.String>(); |
| 8587 o.add("foo"); | 8587 o.add("foo"); |
| 8588 o.add("foo"); | 8588 o.add("foo"); |
| 8589 return o; | 8589 return o; |
| 8590 } | 8590 } |
| 8591 | 8591 |
| 8592 checkUnnamed1264(core.List<core.String> o) { | 8592 checkUnnamed984(core.List<core.String> o) { |
| 8593 unittest.expect(o, unittest.hasLength(2)); | 8593 unittest.expect(o, unittest.hasLength(2)); |
| 8594 unittest.expect(o[0], unittest.equals('foo')); | 8594 unittest.expect(o[0], unittest.equals('foo')); |
| 8595 unittest.expect(o[1], unittest.equals('foo')); | 8595 unittest.expect(o[1], unittest.equals('foo')); |
| 8596 } | 8596 } |
| 8597 | 8597 |
| 8598 buildUnnamed1265() { | 8598 buildUnnamed985() { |
| 8599 var o = new core.List<core.String>(); | 8599 var o = new core.List<core.String>(); |
| 8600 o.add("foo"); | 8600 o.add("foo"); |
| 8601 o.add("foo"); | 8601 o.add("foo"); |
| 8602 return o; | 8602 return o; |
| 8603 } | 8603 } |
| 8604 | 8604 |
| 8605 checkUnnamed1265(core.List<core.String> o) { | 8605 checkUnnamed985(core.List<core.String> o) { |
| 8606 unittest.expect(o, unittest.hasLength(2)); | 8606 unittest.expect(o, unittest.hasLength(2)); |
| 8607 unittest.expect(o[0], unittest.equals('foo')); | 8607 unittest.expect(o[0], unittest.equals('foo')); |
| 8608 unittest.expect(o[1], unittest.equals('foo')); | 8608 unittest.expect(o[1], unittest.equals('foo')); |
| 8609 } | 8609 } |
| 8610 | 8610 |
| 8611 buildUnnamed1266() { | 8611 buildUnnamed986() { |
| 8612 var o = new core.List<core.String>(); | 8612 var o = new core.List<core.String>(); |
| 8613 o.add("foo"); | 8613 o.add("foo"); |
| 8614 o.add("foo"); | 8614 o.add("foo"); |
| 8615 return o; | 8615 return o; |
| 8616 } | 8616 } |
| 8617 | 8617 |
| 8618 checkUnnamed1266(core.List<core.String> o) { | 8618 checkUnnamed986(core.List<core.String> o) { |
| 8619 unittest.expect(o, unittest.hasLength(2)); | 8619 unittest.expect(o, unittest.hasLength(2)); |
| 8620 unittest.expect(o[0], unittest.equals('foo')); | 8620 unittest.expect(o[0], unittest.equals('foo')); |
| 8621 unittest.expect(o[1], unittest.equals('foo')); | 8621 unittest.expect(o[1], unittest.equals('foo')); |
| 8622 } | 8622 } |
| 8623 | 8623 |
| 8624 buildUnnamed1267() { | 8624 buildUnnamed987() { |
| 8625 var o = new core.List<core.String>(); | 8625 var o = new core.List<core.String>(); |
| 8626 o.add("foo"); | 8626 o.add("foo"); |
| 8627 o.add("foo"); | 8627 o.add("foo"); |
| 8628 return o; | 8628 return o; |
| 8629 } | 8629 } |
| 8630 | 8630 |
| 8631 checkUnnamed1267(core.List<core.String> o) { | 8631 checkUnnamed987(core.List<core.String> o) { |
| 8632 unittest.expect(o, unittest.hasLength(2)); | 8632 unittest.expect(o, unittest.hasLength(2)); |
| 8633 unittest.expect(o[0], unittest.equals('foo')); | 8633 unittest.expect(o[0], unittest.equals('foo')); |
| 8634 unittest.expect(o[1], unittest.equals('foo')); | 8634 unittest.expect(o[1], unittest.equals('foo')); |
| 8635 } | 8635 } |
| 8636 | 8636 |
| 8637 buildUnnamed1268() { | 8637 buildUnnamed988() { |
| 8638 var o = new core.List<core.String>(); | 8638 var o = new core.List<core.String>(); |
| 8639 o.add("foo"); | 8639 o.add("foo"); |
| 8640 o.add("foo"); | 8640 o.add("foo"); |
| 8641 return o; | 8641 return o; |
| 8642 } | 8642 } |
| 8643 | 8643 |
| 8644 checkUnnamed1268(core.List<core.String> o) { | 8644 checkUnnamed988(core.List<core.String> o) { |
| 8645 unittest.expect(o, unittest.hasLength(2)); | 8645 unittest.expect(o, unittest.hasLength(2)); |
| 8646 unittest.expect(o[0], unittest.equals('foo')); | 8646 unittest.expect(o[0], unittest.equals('foo')); |
| 8647 unittest.expect(o[1], unittest.equals('foo')); | 8647 unittest.expect(o[1], unittest.equals('foo')); |
| 8648 } | 8648 } |
| 8649 | 8649 |
| 8650 buildUnnamed1269() { | 8650 buildUnnamed989() { |
| 8651 var o = new core.List<core.String>(); | 8651 var o = new core.List<core.String>(); |
| 8652 o.add("foo"); | 8652 o.add("foo"); |
| 8653 o.add("foo"); | 8653 o.add("foo"); |
| 8654 return o; | 8654 return o; |
| 8655 } | 8655 } |
| 8656 | 8656 |
| 8657 checkUnnamed1269(core.List<core.String> o) { | 8657 checkUnnamed989(core.List<core.String> o) { |
| 8658 unittest.expect(o, unittest.hasLength(2)); | 8658 unittest.expect(o, unittest.hasLength(2)); |
| 8659 unittest.expect(o[0], unittest.equals('foo')); | 8659 unittest.expect(o[0], unittest.equals('foo')); |
| 8660 unittest.expect(o[1], unittest.equals('foo')); | 8660 unittest.expect(o[1], unittest.equals('foo')); |
| 8661 } | 8661 } |
| 8662 | 8662 |
| 8663 buildUnnamed1270() { | 8663 buildUnnamed990() { |
| 8664 var o = new core.List<core.String>(); | 8664 var o = new core.List<core.String>(); |
| 8665 o.add("foo"); | 8665 o.add("foo"); |
| 8666 o.add("foo"); | 8666 o.add("foo"); |
| 8667 return o; | 8667 return o; |
| 8668 } | 8668 } |
| 8669 | 8669 |
| 8670 checkUnnamed1270(core.List<core.String> o) { | 8670 checkUnnamed990(core.List<core.String> o) { |
| 8671 unittest.expect(o, unittest.hasLength(2)); | 8671 unittest.expect(o, unittest.hasLength(2)); |
| 8672 unittest.expect(o[0], unittest.equals('foo')); | 8672 unittest.expect(o[0], unittest.equals('foo')); |
| 8673 unittest.expect(o[1], unittest.equals('foo')); | 8673 unittest.expect(o[1], unittest.equals('foo')); |
| 8674 } | 8674 } |
| 8675 | 8675 |
| 8676 buildUnnamed1271() { | 8676 buildUnnamed991() { |
| 8677 var o = new core.List<core.String>(); | 8677 var o = new core.List<core.String>(); |
| 8678 o.add("foo"); | 8678 o.add("foo"); |
| 8679 o.add("foo"); | 8679 o.add("foo"); |
| 8680 return o; | 8680 return o; |
| 8681 } | 8681 } |
| 8682 | 8682 |
| 8683 checkUnnamed1271(core.List<core.String> o) { | 8683 checkUnnamed991(core.List<core.String> o) { |
| 8684 unittest.expect(o, unittest.hasLength(2)); | 8684 unittest.expect(o, unittest.hasLength(2)); |
| 8685 unittest.expect(o[0], unittest.equals('foo')); | 8685 unittest.expect(o[0], unittest.equals('foo')); |
| 8686 unittest.expect(o[1], unittest.equals('foo')); | 8686 unittest.expect(o[1], unittest.equals('foo')); |
| 8687 } | 8687 } |
| 8688 | 8688 |
| 8689 buildUnnamed1272() { | 8689 buildUnnamed992() { |
| 8690 var o = new core.List<core.String>(); | 8690 var o = new core.List<core.String>(); |
| 8691 o.add("foo"); | 8691 o.add("foo"); |
| 8692 o.add("foo"); | 8692 o.add("foo"); |
| 8693 return o; | 8693 return o; |
| 8694 } | 8694 } |
| 8695 | 8695 |
| 8696 checkUnnamed1272(core.List<core.String> o) { | 8696 checkUnnamed992(core.List<core.String> o) { |
| 8697 unittest.expect(o, unittest.hasLength(2)); | 8697 unittest.expect(o, unittest.hasLength(2)); |
| 8698 unittest.expect(o[0], unittest.equals('foo')); | 8698 unittest.expect(o[0], unittest.equals('foo')); |
| 8699 unittest.expect(o[1], unittest.equals('foo')); | 8699 unittest.expect(o[1], unittest.equals('foo')); |
| 8700 } | 8700 } |
| 8701 | 8701 |
| 8702 buildUnnamed1273() { | 8702 buildUnnamed993() { |
| 8703 var o = new core.List<core.String>(); | 8703 var o = new core.List<core.String>(); |
| 8704 o.add("foo"); | 8704 o.add("foo"); |
| 8705 o.add("foo"); | 8705 o.add("foo"); |
| 8706 return o; | 8706 return o; |
| 8707 } | 8707 } |
| 8708 | 8708 |
| 8709 checkUnnamed1273(core.List<core.String> o) { | 8709 checkUnnamed993(core.List<core.String> o) { |
| 8710 unittest.expect(o, unittest.hasLength(2)); | 8710 unittest.expect(o, unittest.hasLength(2)); |
| 8711 unittest.expect(o[0], unittest.equals('foo')); | 8711 unittest.expect(o[0], unittest.equals('foo')); |
| 8712 unittest.expect(o[1], unittest.equals('foo')); | 8712 unittest.expect(o[1], unittest.equals('foo')); |
| 8713 } | 8713 } |
| 8714 | 8714 |
| 8715 buildUnnamed1274() { | 8715 buildUnnamed994() { |
| 8716 var o = new core.List<core.String>(); | 8716 var o = new core.List<core.String>(); |
| 8717 o.add("foo"); | 8717 o.add("foo"); |
| 8718 o.add("foo"); | 8718 o.add("foo"); |
| 8719 return o; | 8719 return o; |
| 8720 } | 8720 } |
| 8721 | 8721 |
| 8722 checkUnnamed1274(core.List<core.String> o) { | 8722 checkUnnamed994(core.List<core.String> o) { |
| 8723 unittest.expect(o, unittest.hasLength(2)); | 8723 unittest.expect(o, unittest.hasLength(2)); |
| 8724 unittest.expect(o[0], unittest.equals('foo')); | 8724 unittest.expect(o[0], unittest.equals('foo')); |
| 8725 unittest.expect(o[1], unittest.equals('foo')); | 8725 unittest.expect(o[1], unittest.equals('foo')); |
| 8726 } | 8726 } |
| 8727 | 8727 |
| 8728 buildUnnamed1275() { | 8728 buildUnnamed995() { |
| 8729 var o = new core.List<core.String>(); | 8729 var o = new core.List<core.String>(); |
| 8730 o.add("foo"); | 8730 o.add("foo"); |
| 8731 o.add("foo"); | 8731 o.add("foo"); |
| 8732 return o; | 8732 return o; |
| 8733 } | 8733 } |
| 8734 | 8734 |
| 8735 checkUnnamed1275(core.List<core.String> o) { | 8735 checkUnnamed995(core.List<core.String> o) { |
| 8736 unittest.expect(o, unittest.hasLength(2)); | 8736 unittest.expect(o, unittest.hasLength(2)); |
| 8737 unittest.expect(o[0], unittest.equals('foo')); | 8737 unittest.expect(o[0], unittest.equals('foo')); |
| 8738 unittest.expect(o[1], unittest.equals('foo')); | 8738 unittest.expect(o[1], unittest.equals('foo')); |
| 8739 } | 8739 } |
| 8740 | 8740 |
| 8741 buildUnnamed1276() { | 8741 buildUnnamed996() { |
| 8742 var o = new core.List<core.String>(); | 8742 var o = new core.List<core.String>(); |
| 8743 o.add("foo"); | 8743 o.add("foo"); |
| 8744 o.add("foo"); | 8744 o.add("foo"); |
| 8745 return o; | 8745 return o; |
| 8746 } | 8746 } |
| 8747 | 8747 |
| 8748 checkUnnamed1276(core.List<core.String> o) { | 8748 checkUnnamed996(core.List<core.String> o) { |
| 8749 unittest.expect(o, unittest.hasLength(2)); | 8749 unittest.expect(o, unittest.hasLength(2)); |
| 8750 unittest.expect(o[0], unittest.equals('foo')); | 8750 unittest.expect(o[0], unittest.equals('foo')); |
| 8751 unittest.expect(o[1], unittest.equals('foo')); | 8751 unittest.expect(o[1], unittest.equals('foo')); |
| 8752 } | 8752 } |
| 8753 | 8753 |
| 8754 buildUnnamed1277() { | 8754 buildUnnamed997() { |
| 8755 var o = new core.List<core.String>(); | 8755 var o = new core.List<core.String>(); |
| 8756 o.add("foo"); | 8756 o.add("foo"); |
| 8757 o.add("foo"); | 8757 o.add("foo"); |
| 8758 return o; | 8758 return o; |
| 8759 } | 8759 } |
| 8760 | 8760 |
| 8761 checkUnnamed1277(core.List<core.String> o) { | 8761 checkUnnamed997(core.List<core.String> o) { |
| 8762 unittest.expect(o, unittest.hasLength(2)); | 8762 unittest.expect(o, unittest.hasLength(2)); |
| 8763 unittest.expect(o[0], unittest.equals('foo')); | 8763 unittest.expect(o[0], unittest.equals('foo')); |
| 8764 unittest.expect(o[1], unittest.equals('foo')); | 8764 unittest.expect(o[1], unittest.equals('foo')); |
| 8765 } | 8765 } |
| 8766 | 8766 |
| 8767 buildUnnamed1278() { | 8767 buildUnnamed998() { |
| 8768 var o = new core.List<core.String>(); | 8768 var o = new core.List<core.String>(); |
| 8769 o.add("foo"); | 8769 o.add("foo"); |
| 8770 o.add("foo"); | 8770 o.add("foo"); |
| 8771 return o; | 8771 return o; |
| 8772 } | 8772 } |
| 8773 | 8773 |
| 8774 checkUnnamed1278(core.List<core.String> o) { | 8774 checkUnnamed998(core.List<core.String> o) { |
| 8775 unittest.expect(o, unittest.hasLength(2)); | 8775 unittest.expect(o, unittest.hasLength(2)); |
| 8776 unittest.expect(o[0], unittest.equals('foo')); | 8776 unittest.expect(o[0], unittest.equals('foo')); |
| 8777 unittest.expect(o[1], unittest.equals('foo')); | 8777 unittest.expect(o[1], unittest.equals('foo')); |
| 8778 } | 8778 } |
| 8779 | 8779 |
| 8780 buildUnnamed1279() { | 8780 buildUnnamed999() { |
| 8781 var o = new core.List<core.String>(); | 8781 var o = new core.List<core.String>(); |
| 8782 o.add("foo"); | 8782 o.add("foo"); |
| 8783 o.add("foo"); | 8783 o.add("foo"); |
| 8784 return o; | 8784 return o; |
| 8785 } | 8785 } |
| 8786 | 8786 |
| 8787 checkUnnamed1279(core.List<core.String> o) { | 8787 checkUnnamed999(core.List<core.String> o) { |
| 8788 unittest.expect(o, unittest.hasLength(2)); | 8788 unittest.expect(o, unittest.hasLength(2)); |
| 8789 unittest.expect(o[0], unittest.equals('foo')); | 8789 unittest.expect(o[0], unittest.equals('foo')); |
| 8790 unittest.expect(o[1], unittest.equals('foo')); | 8790 unittest.expect(o[1], unittest.equals('foo')); |
| 8791 } | 8791 } |
| 8792 | 8792 |
| 8793 buildUnnamed1280() { | 8793 buildUnnamed1000() { |
| 8794 var o = new core.List<core.String>(); | 8794 var o = new core.List<core.String>(); |
| 8795 o.add("foo"); | 8795 o.add("foo"); |
| 8796 o.add("foo"); | 8796 o.add("foo"); |
| 8797 return o; | 8797 return o; |
| 8798 } | 8798 } |
| 8799 | 8799 |
| 8800 checkUnnamed1280(core.List<core.String> o) { | 8800 checkUnnamed1000(core.List<core.String> o) { |
| 8801 unittest.expect(o, unittest.hasLength(2)); | 8801 unittest.expect(o, unittest.hasLength(2)); |
| 8802 unittest.expect(o[0], unittest.equals('foo')); | 8802 unittest.expect(o[0], unittest.equals('foo')); |
| 8803 unittest.expect(o[1], unittest.equals('foo')); | 8803 unittest.expect(o[1], unittest.equals('foo')); |
| 8804 } | 8804 } |
| 8805 | 8805 |
| 8806 buildUnnamed1281() { | 8806 buildUnnamed1001() { |
| 8807 var o = new core.List<core.String>(); | 8807 var o = new core.List<core.String>(); |
| 8808 o.add("foo"); | 8808 o.add("foo"); |
| 8809 o.add("foo"); | 8809 o.add("foo"); |
| 8810 return o; | 8810 return o; |
| 8811 } | 8811 } |
| 8812 | 8812 |
| 8813 checkUnnamed1281(core.List<core.String> o) { | 8813 checkUnnamed1001(core.List<core.String> o) { |
| 8814 unittest.expect(o, unittest.hasLength(2)); | 8814 unittest.expect(o, unittest.hasLength(2)); |
| 8815 unittest.expect(o[0], unittest.equals('foo')); | 8815 unittest.expect(o[0], unittest.equals('foo')); |
| 8816 unittest.expect(o[1], unittest.equals('foo')); | 8816 unittest.expect(o[1], unittest.equals('foo')); |
| 8817 } | 8817 } |
| 8818 | 8818 |
| 8819 buildUnnamed1282() { | 8819 buildUnnamed1002() { |
| 8820 var o = new core.List<core.String>(); | 8820 var o = new core.List<core.String>(); |
| 8821 o.add("foo"); | 8821 o.add("foo"); |
| 8822 o.add("foo"); | 8822 o.add("foo"); |
| 8823 return o; | 8823 return o; |
| 8824 } | 8824 } |
| 8825 | 8825 |
| 8826 checkUnnamed1282(core.List<core.String> o) { | 8826 checkUnnamed1002(core.List<core.String> o) { |
| 8827 unittest.expect(o, unittest.hasLength(2)); | 8827 unittest.expect(o, unittest.hasLength(2)); |
| 8828 unittest.expect(o[0], unittest.equals('foo')); | 8828 unittest.expect(o[0], unittest.equals('foo')); |
| 8829 unittest.expect(o[1], unittest.equals('foo')); | 8829 unittest.expect(o[1], unittest.equals('foo')); |
| 8830 } | 8830 } |
| 8831 | 8831 |
| 8832 buildUnnamed1283() { | 8832 buildUnnamed1003() { |
| 8833 var o = new core.List<core.String>(); | 8833 var o = new core.List<core.String>(); |
| 8834 o.add("foo"); | 8834 o.add("foo"); |
| 8835 o.add("foo"); | 8835 o.add("foo"); |
| 8836 return o; | 8836 return o; |
| 8837 } | 8837 } |
| 8838 | 8838 |
| 8839 checkUnnamed1283(core.List<core.String> o) { | 8839 checkUnnamed1003(core.List<core.String> o) { |
| 8840 unittest.expect(o, unittest.hasLength(2)); | 8840 unittest.expect(o, unittest.hasLength(2)); |
| 8841 unittest.expect(o[0], unittest.equals('foo')); | 8841 unittest.expect(o[0], unittest.equals('foo')); |
| 8842 unittest.expect(o[1], unittest.equals('foo')); | 8842 unittest.expect(o[1], unittest.equals('foo')); |
| 8843 } | 8843 } |
| 8844 | 8844 |
| 8845 buildUnnamed1284() { | 8845 buildUnnamed1004() { |
| 8846 var o = new core.List<core.String>(); | 8846 var o = new core.List<core.String>(); |
| 8847 o.add("foo"); | 8847 o.add("foo"); |
| 8848 o.add("foo"); | 8848 o.add("foo"); |
| 8849 return o; | 8849 return o; |
| 8850 } | 8850 } |
| 8851 | 8851 |
| 8852 checkUnnamed1284(core.List<core.String> o) { | 8852 checkUnnamed1004(core.List<core.String> o) { |
| 8853 unittest.expect(o, unittest.hasLength(2)); | 8853 unittest.expect(o, unittest.hasLength(2)); |
| 8854 unittest.expect(o[0], unittest.equals('foo')); | 8854 unittest.expect(o[0], unittest.equals('foo')); |
| 8855 unittest.expect(o[1], unittest.equals('foo')); | 8855 unittest.expect(o[1], unittest.equals('foo')); |
| 8856 } | 8856 } |
| 8857 | 8857 |
| 8858 buildUnnamed1285() { | 8858 buildUnnamed1005() { |
| 8859 var o = new core.List<core.String>(); | 8859 var o = new core.List<core.String>(); |
| 8860 o.add("foo"); | 8860 o.add("foo"); |
| 8861 o.add("foo"); | 8861 o.add("foo"); |
| 8862 return o; | 8862 return o; |
| 8863 } | 8863 } |
| 8864 | 8864 |
| 8865 checkUnnamed1285(core.List<core.String> o) { | 8865 checkUnnamed1005(core.List<core.String> o) { |
| 8866 unittest.expect(o, unittest.hasLength(2)); | 8866 unittest.expect(o, unittest.hasLength(2)); |
| 8867 unittest.expect(o[0], unittest.equals('foo')); | 8867 unittest.expect(o[0], unittest.equals('foo')); |
| 8868 unittest.expect(o[1], unittest.equals('foo')); | 8868 unittest.expect(o[1], unittest.equals('foo')); |
| 8869 } | 8869 } |
| 8870 | 8870 |
| 8871 buildUnnamed1286() { | 8871 buildUnnamed1006() { |
| 8872 var o = new core.List<core.String>(); | 8872 var o = new core.List<core.String>(); |
| 8873 o.add("foo"); | 8873 o.add("foo"); |
| 8874 o.add("foo"); | 8874 o.add("foo"); |
| 8875 return o; | 8875 return o; |
| 8876 } | 8876 } |
| 8877 | 8877 |
| 8878 checkUnnamed1286(core.List<core.String> o) { | 8878 checkUnnamed1006(core.List<core.String> o) { |
| 8879 unittest.expect(o, unittest.hasLength(2)); | 8879 unittest.expect(o, unittest.hasLength(2)); |
| 8880 unittest.expect(o[0], unittest.equals('foo')); | 8880 unittest.expect(o[0], unittest.equals('foo')); |
| 8881 unittest.expect(o[1], unittest.equals('foo')); | 8881 unittest.expect(o[1], unittest.equals('foo')); |
| 8882 } | 8882 } |
| 8883 | 8883 |
| 8884 buildUnnamed1287() { | 8884 buildUnnamed1007() { |
| 8885 var o = new core.List<core.String>(); | 8885 var o = new core.List<core.String>(); |
| 8886 o.add("foo"); | 8886 o.add("foo"); |
| 8887 o.add("foo"); | 8887 o.add("foo"); |
| 8888 return o; | 8888 return o; |
| 8889 } | 8889 } |
| 8890 | 8890 |
| 8891 checkUnnamed1287(core.List<core.String> o) { | 8891 checkUnnamed1007(core.List<core.String> o) { |
| 8892 unittest.expect(o, unittest.hasLength(2)); | 8892 unittest.expect(o, unittest.hasLength(2)); |
| 8893 unittest.expect(o[0], unittest.equals('foo')); | 8893 unittest.expect(o[0], unittest.equals('foo')); |
| 8894 unittest.expect(o[1], unittest.equals('foo')); | 8894 unittest.expect(o[1], unittest.equals('foo')); |
| 8895 } | 8895 } |
| 8896 | 8896 |
| 8897 buildUnnamed1288() { | 8897 buildUnnamed1008() { |
| 8898 var o = new core.List<core.String>(); | 8898 var o = new core.List<core.String>(); |
| 8899 o.add("foo"); | 8899 o.add("foo"); |
| 8900 o.add("foo"); | 8900 o.add("foo"); |
| 8901 return o; | 8901 return o; |
| 8902 } | 8902 } |
| 8903 | 8903 |
| 8904 checkUnnamed1288(core.List<core.String> o) { | 8904 checkUnnamed1008(core.List<core.String> o) { |
| 8905 unittest.expect(o, unittest.hasLength(2)); | 8905 unittest.expect(o, unittest.hasLength(2)); |
| 8906 unittest.expect(o[0], unittest.equals('foo')); | 8906 unittest.expect(o[0], unittest.equals('foo')); |
| 8907 unittest.expect(o[1], unittest.equals('foo')); | 8907 unittest.expect(o[1], unittest.equals('foo')); |
| 8908 } | 8908 } |
| 8909 | 8909 |
| 8910 buildUnnamed1289() { | 8910 buildUnnamed1009() { |
| 8911 var o = new core.List<core.String>(); | 8911 var o = new core.List<core.String>(); |
| 8912 o.add("foo"); | 8912 o.add("foo"); |
| 8913 o.add("foo"); | 8913 o.add("foo"); |
| 8914 return o; | 8914 return o; |
| 8915 } | 8915 } |
| 8916 | 8916 |
| 8917 checkUnnamed1289(core.List<core.String> o) { | 8917 checkUnnamed1009(core.List<core.String> o) { |
| 8918 unittest.expect(o, unittest.hasLength(2)); | 8918 unittest.expect(o, unittest.hasLength(2)); |
| 8919 unittest.expect(o[0], unittest.equals('foo')); | 8919 unittest.expect(o[0], unittest.equals('foo')); |
| 8920 unittest.expect(o[1], unittest.equals('foo')); | 8920 unittest.expect(o[1], unittest.equals('foo')); |
| 8921 } | 8921 } |
| 8922 | 8922 |
| 8923 buildUnnamed1290() { | 8923 buildUnnamed1010() { |
| 8924 var o = new core.List<core.String>(); | 8924 var o = new core.List<core.String>(); |
| 8925 o.add("foo"); | 8925 o.add("foo"); |
| 8926 o.add("foo"); | 8926 o.add("foo"); |
| 8927 return o; | 8927 return o; |
| 8928 } | 8928 } |
| 8929 | 8929 |
| 8930 checkUnnamed1290(core.List<core.String> o) { | 8930 checkUnnamed1010(core.List<core.String> o) { |
| 8931 unittest.expect(o, unittest.hasLength(2)); | 8931 unittest.expect(o, unittest.hasLength(2)); |
| 8932 unittest.expect(o[0], unittest.equals('foo')); | 8932 unittest.expect(o[0], unittest.equals('foo')); |
| 8933 unittest.expect(o[1], unittest.equals('foo')); | 8933 unittest.expect(o[1], unittest.equals('foo')); |
| 8934 } | 8934 } |
| 8935 | 8935 |
| 8936 buildUnnamed1291() { | 8936 buildUnnamed1011() { |
| 8937 var o = new core.List<core.String>(); | 8937 var o = new core.List<core.String>(); |
| 8938 o.add("foo"); | 8938 o.add("foo"); |
| 8939 o.add("foo"); | 8939 o.add("foo"); |
| 8940 return o; | 8940 return o; |
| 8941 } | 8941 } |
| 8942 | 8942 |
| 8943 checkUnnamed1291(core.List<core.String> o) { | 8943 checkUnnamed1011(core.List<core.String> o) { |
| 8944 unittest.expect(o, unittest.hasLength(2)); | 8944 unittest.expect(o, unittest.hasLength(2)); |
| 8945 unittest.expect(o[0], unittest.equals('foo')); | 8945 unittest.expect(o[0], unittest.equals('foo')); |
| 8946 unittest.expect(o[1], unittest.equals('foo')); | 8946 unittest.expect(o[1], unittest.equals('foo')); |
| 8947 } | 8947 } |
| 8948 | 8948 |
| 8949 buildUnnamed1292() { | 8949 buildUnnamed1012() { |
| 8950 var o = new core.List<core.String>(); | 8950 var o = new core.List<core.String>(); |
| 8951 o.add("foo"); | 8951 o.add("foo"); |
| 8952 o.add("foo"); | 8952 o.add("foo"); |
| 8953 return o; | 8953 return o; |
| 8954 } | 8954 } |
| 8955 | 8955 |
| 8956 checkUnnamed1292(core.List<core.String> o) { | 8956 checkUnnamed1012(core.List<core.String> o) { |
| 8957 unittest.expect(o, unittest.hasLength(2)); | 8957 unittest.expect(o, unittest.hasLength(2)); |
| 8958 unittest.expect(o[0], unittest.equals('foo')); | 8958 unittest.expect(o[0], unittest.equals('foo')); |
| 8959 unittest.expect(o[1], unittest.equals('foo')); | 8959 unittest.expect(o[1], unittest.equals('foo')); |
| 8960 } | 8960 } |
| 8961 | 8961 |
| 8962 buildUnnamed1293() { | 8962 buildUnnamed1013() { |
| 8963 var o = new core.List<core.String>(); | 8963 var o = new core.List<core.String>(); |
| 8964 o.add("foo"); | 8964 o.add("foo"); |
| 8965 o.add("foo"); | 8965 o.add("foo"); |
| 8966 return o; | 8966 return o; |
| 8967 } | 8967 } |
| 8968 | 8968 |
| 8969 checkUnnamed1293(core.List<core.String> o) { | 8969 checkUnnamed1013(core.List<core.String> o) { |
| 8970 unittest.expect(o, unittest.hasLength(2)); | 8970 unittest.expect(o, unittest.hasLength(2)); |
| 8971 unittest.expect(o[0], unittest.equals('foo')); | 8971 unittest.expect(o[0], unittest.equals('foo')); |
| 8972 unittest.expect(o[1], unittest.equals('foo')); | 8972 unittest.expect(o[1], unittest.equals('foo')); |
| 8973 } | 8973 } |
| 8974 | 8974 |
| 8975 buildUnnamed1294() { | 8975 buildUnnamed1014() { |
| 8976 var o = new core.List<core.String>(); | 8976 var o = new core.List<core.String>(); |
| 8977 o.add("foo"); | 8977 o.add("foo"); |
| 8978 o.add("foo"); | 8978 o.add("foo"); |
| 8979 return o; | 8979 return o; |
| 8980 } | 8980 } |
| 8981 | 8981 |
| 8982 checkUnnamed1294(core.List<core.String> o) { | 8982 checkUnnamed1014(core.List<core.String> o) { |
| 8983 unittest.expect(o, unittest.hasLength(2)); | 8983 unittest.expect(o, unittest.hasLength(2)); |
| 8984 unittest.expect(o[0], unittest.equals('foo')); | 8984 unittest.expect(o[0], unittest.equals('foo')); |
| 8985 unittest.expect(o[1], unittest.equals('foo')); | 8985 unittest.expect(o[1], unittest.equals('foo')); |
| 8986 } | 8986 } |
| 8987 | 8987 |
| 8988 buildUnnamed1295() { | 8988 buildUnnamed1015() { |
| 8989 var o = new core.List<core.String>(); | 8989 var o = new core.List<core.String>(); |
| 8990 o.add("foo"); | 8990 o.add("foo"); |
| 8991 o.add("foo"); | 8991 o.add("foo"); |
| 8992 return o; | 8992 return o; |
| 8993 } | 8993 } |
| 8994 | 8994 |
| 8995 checkUnnamed1295(core.List<core.String> o) { | 8995 checkUnnamed1015(core.List<core.String> o) { |
| 8996 unittest.expect(o, unittest.hasLength(2)); | 8996 unittest.expect(o, unittest.hasLength(2)); |
| 8997 unittest.expect(o[0], unittest.equals('foo')); | 8997 unittest.expect(o[0], unittest.equals('foo')); |
| 8998 unittest.expect(o[1], unittest.equals('foo')); | 8998 unittest.expect(o[1], unittest.equals('foo')); |
| 8999 } | 8999 } |
| 9000 | 9000 |
| 9001 buildUnnamed1296() { | 9001 buildUnnamed1016() { |
| 9002 var o = new core.List<core.String>(); | 9002 var o = new core.List<core.String>(); |
| 9003 o.add("foo"); | 9003 o.add("foo"); |
| 9004 o.add("foo"); | 9004 o.add("foo"); |
| 9005 return o; | 9005 return o; |
| 9006 } | 9006 } |
| 9007 | 9007 |
| 9008 checkUnnamed1296(core.List<core.String> o) { | 9008 checkUnnamed1016(core.List<core.String> o) { |
| 9009 unittest.expect(o, unittest.hasLength(2)); | 9009 unittest.expect(o, unittest.hasLength(2)); |
| 9010 unittest.expect(o[0], unittest.equals('foo')); | 9010 unittest.expect(o[0], unittest.equals('foo')); |
| 9011 unittest.expect(o[1], unittest.equals('foo')); | 9011 unittest.expect(o[1], unittest.equals('foo')); |
| 9012 } | 9012 } |
| 9013 | 9013 |
| 9014 buildUnnamed1297() { | 9014 buildUnnamed1017() { |
| 9015 var o = new core.List<core.String>(); | 9015 var o = new core.List<core.String>(); |
| 9016 o.add("foo"); | 9016 o.add("foo"); |
| 9017 o.add("foo"); | 9017 o.add("foo"); |
| 9018 return o; | 9018 return o; |
| 9019 } | 9019 } |
| 9020 | 9020 |
| 9021 checkUnnamed1297(core.List<core.String> o) { | 9021 checkUnnamed1017(core.List<core.String> o) { |
| 9022 unittest.expect(o, unittest.hasLength(2)); | 9022 unittest.expect(o, unittest.hasLength(2)); |
| 9023 unittest.expect(o[0], unittest.equals('foo')); | 9023 unittest.expect(o[0], unittest.equals('foo')); |
| 9024 unittest.expect(o[1], unittest.equals('foo')); | 9024 unittest.expect(o[1], unittest.equals('foo')); |
| 9025 } | 9025 } |
| 9026 | 9026 |
| 9027 buildUnnamed1298() { | 9027 buildUnnamed1018() { |
| 9028 var o = new core.List<core.String>(); | 9028 var o = new core.List<core.String>(); |
| 9029 o.add("foo"); | 9029 o.add("foo"); |
| 9030 o.add("foo"); | 9030 o.add("foo"); |
| 9031 return o; | 9031 return o; |
| 9032 } | 9032 } |
| 9033 | 9033 |
| 9034 checkUnnamed1298(core.List<core.String> o) { | 9034 checkUnnamed1018(core.List<core.String> o) { |
| 9035 unittest.expect(o, unittest.hasLength(2)); | 9035 unittest.expect(o, unittest.hasLength(2)); |
| 9036 unittest.expect(o[0], unittest.equals('foo')); | 9036 unittest.expect(o[0], unittest.equals('foo')); |
| 9037 unittest.expect(o[1], unittest.equals('foo')); | 9037 unittest.expect(o[1], unittest.equals('foo')); |
| 9038 } | 9038 } |
| 9039 | 9039 |
| 9040 buildUnnamed1299() { | 9040 buildUnnamed1019() { |
| 9041 var o = new core.List<core.String>(); | 9041 var o = new core.List<core.String>(); |
| 9042 o.add("foo"); | 9042 o.add("foo"); |
| 9043 o.add("foo"); | 9043 o.add("foo"); |
| 9044 return o; | 9044 return o; |
| 9045 } | 9045 } |
| 9046 | 9046 |
| 9047 checkUnnamed1299(core.List<core.String> o) { | 9047 checkUnnamed1019(core.List<core.String> o) { |
| 9048 unittest.expect(o, unittest.hasLength(2)); | 9048 unittest.expect(o, unittest.hasLength(2)); |
| 9049 unittest.expect(o[0], unittest.equals('foo')); | 9049 unittest.expect(o[0], unittest.equals('foo')); |
| 9050 unittest.expect(o[1], unittest.equals('foo')); | 9050 unittest.expect(o[1], unittest.equals('foo')); |
| 9051 } | 9051 } |
| 9052 | 9052 |
| 9053 buildUnnamed1300() { | 9053 buildUnnamed1020() { |
| 9054 var o = new core.List<core.String>(); | 9054 var o = new core.List<core.String>(); |
| 9055 o.add("foo"); | 9055 o.add("foo"); |
| 9056 o.add("foo"); | 9056 o.add("foo"); |
| 9057 return o; | 9057 return o; |
| 9058 } | 9058 } |
| 9059 | 9059 |
| 9060 checkUnnamed1300(core.List<core.String> o) { | 9060 checkUnnamed1020(core.List<core.String> o) { |
| 9061 unittest.expect(o, unittest.hasLength(2)); | 9061 unittest.expect(o, unittest.hasLength(2)); |
| 9062 unittest.expect(o[0], unittest.equals('foo')); | 9062 unittest.expect(o[0], unittest.equals('foo')); |
| 9063 unittest.expect(o[1], unittest.equals('foo')); | 9063 unittest.expect(o[1], unittest.equals('foo')); |
| 9064 } | 9064 } |
| 9065 | 9065 |
| 9066 buildUnnamed1301() { | 9066 buildUnnamed1021() { |
| 9067 var o = new core.List<core.String>(); | 9067 var o = new core.List<core.String>(); |
| 9068 o.add("foo"); | 9068 o.add("foo"); |
| 9069 o.add("foo"); | 9069 o.add("foo"); |
| 9070 return o; | 9070 return o; |
| 9071 } | 9071 } |
| 9072 | 9072 |
| 9073 checkUnnamed1301(core.List<core.String> o) { | 9073 checkUnnamed1021(core.List<core.String> o) { |
| 9074 unittest.expect(o, unittest.hasLength(2)); | 9074 unittest.expect(o, unittest.hasLength(2)); |
| 9075 unittest.expect(o[0], unittest.equals('foo')); | 9075 unittest.expect(o[0], unittest.equals('foo')); |
| 9076 unittest.expect(o[1], unittest.equals('foo')); | 9076 unittest.expect(o[1], unittest.equals('foo')); |
| 9077 } | 9077 } |
| 9078 | 9078 |
| 9079 buildUnnamed1302() { | 9079 buildUnnamed1022() { |
| 9080 var o = new core.List<core.String>(); | 9080 var o = new core.List<core.String>(); |
| 9081 o.add("foo"); | 9081 o.add("foo"); |
| 9082 o.add("foo"); | 9082 o.add("foo"); |
| 9083 return o; | 9083 return o; |
| 9084 } | 9084 } |
| 9085 | 9085 |
| 9086 checkUnnamed1302(core.List<core.String> o) { | 9086 checkUnnamed1022(core.List<core.String> o) { |
| 9087 unittest.expect(o, unittest.hasLength(2)); | 9087 unittest.expect(o, unittest.hasLength(2)); |
| 9088 unittest.expect(o[0], unittest.equals('foo')); | 9088 unittest.expect(o[0], unittest.equals('foo')); |
| 9089 unittest.expect(o[1], unittest.equals('foo')); | 9089 unittest.expect(o[1], unittest.equals('foo')); |
| 9090 } | 9090 } |
| 9091 | 9091 |
| 9092 buildUnnamed1303() { | 9092 buildUnnamed1023() { |
| 9093 var o = new core.List<core.String>(); | 9093 var o = new core.List<core.String>(); |
| 9094 o.add("foo"); | 9094 o.add("foo"); |
| 9095 o.add("foo"); | 9095 o.add("foo"); |
| 9096 return o; | 9096 return o; |
| 9097 } | 9097 } |
| 9098 | 9098 |
| 9099 checkUnnamed1303(core.List<core.String> o) { | 9099 checkUnnamed1023(core.List<core.String> o) { |
| 9100 unittest.expect(o, unittest.hasLength(2)); | 9100 unittest.expect(o, unittest.hasLength(2)); |
| 9101 unittest.expect(o[0], unittest.equals('foo')); | 9101 unittest.expect(o[0], unittest.equals('foo')); |
| 9102 unittest.expect(o[1], unittest.equals('foo')); | 9102 unittest.expect(o[1], unittest.equals('foo')); |
| 9103 } | 9103 } |
| 9104 | 9104 |
| 9105 | 9105 |
| 9106 main() { | 9106 main() { |
| 9107 unittest.group("obj-schema-Account", () { | 9107 unittest.group("obj-schema-Account", () { |
| 9108 unittest.test("to-json--from-json", () { | 9108 unittest.test("to-json--from-json", () { |
| 9109 var o = buildAccount(); | 9109 var o = buildAccount(); |
| 9110 var od = new api.Account.fromJson(o.toJson()); | 9110 var od = new api.Account.fromJson(o.toJson()); |
| 9111 checkAccount(od); | 9111 checkAccount(od); |
| 9112 }); | 9112 }); |
| (...skipping 2131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11244 checkAccountUserProfile(response); | 11244 checkAccountUserProfile(response); |
| 11245 }))); | 11245 }))); |
| 11246 }); | 11246 }); |
| 11247 | 11247 |
| 11248 unittest.test("method--list", () { | 11248 unittest.test("method--list", () { |
| 11249 | 11249 |
| 11250 var mock = new HttpServerMock(); | 11250 var mock = new HttpServerMock(); |
| 11251 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; | 11251 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; |
| 11252 var arg_profileId = "foo"; | 11252 var arg_profileId = "foo"; |
| 11253 var arg_active = true; | 11253 var arg_active = true; |
| 11254 var arg_ids = buildUnnamed1218(); | 11254 var arg_ids = buildUnnamed938(); |
| 11255 var arg_maxResults = 42; | 11255 var arg_maxResults = 42; |
| 11256 var arg_pageToken = "foo"; | 11256 var arg_pageToken = "foo"; |
| 11257 var arg_searchString = "foo"; | 11257 var arg_searchString = "foo"; |
| 11258 var arg_sortField = "foo"; | 11258 var arg_sortField = "foo"; |
| 11259 var arg_sortOrder = "foo"; | 11259 var arg_sortOrder = "foo"; |
| 11260 var arg_subaccountId = "foo"; | 11260 var arg_subaccountId = "foo"; |
| 11261 var arg_userRoleId = "foo"; | 11261 var arg_userRoleId = "foo"; |
| 11262 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11262 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11263 var path = (req.url).path; | 11263 var path = (req.url).path; |
| 11264 var pathOffset = 0; | 11264 var pathOffset = 0; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11492 checkAccount(response); | 11492 checkAccount(response); |
| 11493 }))); | 11493 }))); |
| 11494 }); | 11494 }); |
| 11495 | 11495 |
| 11496 unittest.test("method--list", () { | 11496 unittest.test("method--list", () { |
| 11497 | 11497 |
| 11498 var mock = new HttpServerMock(); | 11498 var mock = new HttpServerMock(); |
| 11499 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; | 11499 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; |
| 11500 var arg_profileId = "foo"; | 11500 var arg_profileId = "foo"; |
| 11501 var arg_active = true; | 11501 var arg_active = true; |
| 11502 var arg_ids = buildUnnamed1219(); | 11502 var arg_ids = buildUnnamed939(); |
| 11503 var arg_maxResults = 42; | 11503 var arg_maxResults = 42; |
| 11504 var arg_pageToken = "foo"; | 11504 var arg_pageToken = "foo"; |
| 11505 var arg_searchString = "foo"; | 11505 var arg_searchString = "foo"; |
| 11506 var arg_sortField = "foo"; | 11506 var arg_sortField = "foo"; |
| 11507 var arg_sortOrder = "foo"; | 11507 var arg_sortOrder = "foo"; |
| 11508 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11508 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11509 var path = (req.url).path; | 11509 var path = (req.url).path; |
| 11510 var pathOffset = 0; | 11510 var pathOffset = 0; |
| 11511 var index; | 11511 var index; |
| 11512 var subPart; | 11512 var subPart; |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11795 }); | 11795 }); |
| 11796 | 11796 |
| 11797 unittest.test("method--list", () { | 11797 unittest.test("method--list", () { |
| 11798 | 11798 |
| 11799 var mock = new HttpServerMock(); | 11799 var mock = new HttpServerMock(); |
| 11800 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; | 11800 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; |
| 11801 var arg_profileId = "foo"; | 11801 var arg_profileId = "foo"; |
| 11802 var arg_active = true; | 11802 var arg_active = true; |
| 11803 var arg_advertiserId = "foo"; | 11803 var arg_advertiserId = "foo"; |
| 11804 var arg_archived = true; | 11804 var arg_archived = true; |
| 11805 var arg_audienceSegmentIds = buildUnnamed1220(); | 11805 var arg_audienceSegmentIds = buildUnnamed940(); |
| 11806 var arg_campaignIds = buildUnnamed1221(); | 11806 var arg_campaignIds = buildUnnamed941(); |
| 11807 var arg_compatibility = "foo"; | 11807 var arg_compatibility = "foo"; |
| 11808 var arg_creativeIds = buildUnnamed1222(); | 11808 var arg_creativeIds = buildUnnamed942(); |
| 11809 var arg_creativeOptimizationConfigurationIds = buildUnnamed1223(); | 11809 var arg_creativeOptimizationConfigurationIds = buildUnnamed943(); |
| 11810 var arg_creativeType = "foo"; | 11810 var arg_creativeType = "foo"; |
| 11811 var arg_dynamicClickTracker = true; | 11811 var arg_dynamicClickTracker = true; |
| 11812 var arg_ids = buildUnnamed1224(); | 11812 var arg_ids = buildUnnamed944(); |
| 11813 var arg_landingPageIds = buildUnnamed1225(); | 11813 var arg_landingPageIds = buildUnnamed945(); |
| 11814 var arg_maxResults = 42; | 11814 var arg_maxResults = 42; |
| 11815 var arg_overriddenEventTagId = "foo"; | 11815 var arg_overriddenEventTagId = "foo"; |
| 11816 var arg_pageToken = "foo"; | 11816 var arg_pageToken = "foo"; |
| 11817 var arg_placementIds = buildUnnamed1226(); | 11817 var arg_placementIds = buildUnnamed946(); |
| 11818 var arg_remarketingListIds = buildUnnamed1227(); | 11818 var arg_remarketingListIds = buildUnnamed947(); |
| 11819 var arg_searchString = "foo"; | 11819 var arg_searchString = "foo"; |
| 11820 var arg_sizeIds = buildUnnamed1228(); | 11820 var arg_sizeIds = buildUnnamed948(); |
| 11821 var arg_sortField = "foo"; | 11821 var arg_sortField = "foo"; |
| 11822 var arg_sortOrder = "foo"; | 11822 var arg_sortOrder = "foo"; |
| 11823 var arg_sslCompliant = true; | 11823 var arg_sslCompliant = true; |
| 11824 var arg_sslRequired = true; | 11824 var arg_sslRequired = true; |
| 11825 var arg_type = buildUnnamed1229(); | 11825 var arg_type = buildUnnamed949(); |
| 11826 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11826 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11827 var path = (req.url).path; | 11827 var path = (req.url).path; |
| 11828 var pathOffset = 0; | 11828 var pathOffset = 0; |
| 11829 var index; | 11829 var index; |
| 11830 var subPart; | 11830 var subPart; |
| 11831 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 11831 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 11832 pathOffset += 1; | 11832 pathOffset += 1; |
| 11833 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 11833 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| 11834 pathOffset += 18; | 11834 pathOffset += 18; |
| 11835 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 11835 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12182 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { | 12182 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { |
| 12183 checkAdvertiserGroup(response); | 12183 checkAdvertiserGroup(response); |
| 12184 }))); | 12184 }))); |
| 12185 }); | 12185 }); |
| 12186 | 12186 |
| 12187 unittest.test("method--list", () { | 12187 unittest.test("method--list", () { |
| 12188 | 12188 |
| 12189 var mock = new HttpServerMock(); | 12189 var mock = new HttpServerMock(); |
| 12190 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; | 12190 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; |
| 12191 var arg_profileId = "foo"; | 12191 var arg_profileId = "foo"; |
| 12192 var arg_ids = buildUnnamed1230(); | 12192 var arg_ids = buildUnnamed950(); |
| 12193 var arg_maxResults = 42; | 12193 var arg_maxResults = 42; |
| 12194 var arg_pageToken = "foo"; | 12194 var arg_pageToken = "foo"; |
| 12195 var arg_searchString = "foo"; | 12195 var arg_searchString = "foo"; |
| 12196 var arg_sortField = "foo"; | 12196 var arg_sortField = "foo"; |
| 12197 var arg_sortOrder = "foo"; | 12197 var arg_sortOrder = "foo"; |
| 12198 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12198 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 12199 var path = (req.url).path; | 12199 var path = (req.url).path; |
| 12200 var pathOffset = 0; | 12200 var pathOffset = 0; |
| 12201 var index; | 12201 var index; |
| 12202 var subPart; | 12202 var subPart; |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12481 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { | 12481 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { |
| 12482 checkAdvertiser(response); | 12482 checkAdvertiser(response); |
| 12483 }))); | 12483 }))); |
| 12484 }); | 12484 }); |
| 12485 | 12485 |
| 12486 unittest.test("method--list", () { | 12486 unittest.test("method--list", () { |
| 12487 | 12487 |
| 12488 var mock = new HttpServerMock(); | 12488 var mock = new HttpServerMock(); |
| 12489 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; | 12489 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; |
| 12490 var arg_profileId = "foo"; | 12490 var arg_profileId = "foo"; |
| 12491 var arg_advertiserGroupIds = buildUnnamed1231(); | 12491 var arg_advertiserGroupIds = buildUnnamed951(); |
| 12492 var arg_floodlightConfigurationIds = buildUnnamed1232(); | 12492 var arg_floodlightConfigurationIds = buildUnnamed952(); |
| 12493 var arg_ids = buildUnnamed1233(); | 12493 var arg_ids = buildUnnamed953(); |
| 12494 var arg_includeAdvertisersWithoutGroupsOnly = true; | 12494 var arg_includeAdvertisersWithoutGroupsOnly = true; |
| 12495 var arg_maxResults = 42; | 12495 var arg_maxResults = 42; |
| 12496 var arg_onlyParent = true; | 12496 var arg_onlyParent = true; |
| 12497 var arg_pageToken = "foo"; | 12497 var arg_pageToken = "foo"; |
| 12498 var arg_searchString = "foo"; | 12498 var arg_searchString = "foo"; |
| 12499 var arg_sortField = "foo"; | 12499 var arg_sortField = "foo"; |
| 12500 var arg_sortOrder = "foo"; | 12500 var arg_sortOrder = "foo"; |
| 12501 var arg_status = "foo"; | 12501 var arg_status = "foo"; |
| 12502 var arg_subaccountId = "foo"; | 12502 var arg_subaccountId = "foo"; |
| 12503 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12503 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12989 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { | 12989 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { |
| 12990 checkCampaign(response); | 12990 checkCampaign(response); |
| 12991 }))); | 12991 }))); |
| 12992 }); | 12992 }); |
| 12993 | 12993 |
| 12994 unittest.test("method--list", () { | 12994 unittest.test("method--list", () { |
| 12995 | 12995 |
| 12996 var mock = new HttpServerMock(); | 12996 var mock = new HttpServerMock(); |
| 12997 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; | 12997 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; |
| 12998 var arg_profileId = "foo"; | 12998 var arg_profileId = "foo"; |
| 12999 var arg_advertiserGroupIds = buildUnnamed1234(); | 12999 var arg_advertiserGroupIds = buildUnnamed954(); |
| 13000 var arg_advertiserIds = buildUnnamed1235(); | 13000 var arg_advertiserIds = buildUnnamed955(); |
| 13001 var arg_archived = true; | 13001 var arg_archived = true; |
| 13002 var arg_atLeastOneOptimizationActivity = true; | 13002 var arg_atLeastOneOptimizationActivity = true; |
| 13003 var arg_excludedIds = buildUnnamed1236(); | 13003 var arg_excludedIds = buildUnnamed956(); |
| 13004 var arg_ids = buildUnnamed1237(); | 13004 var arg_ids = buildUnnamed957(); |
| 13005 var arg_maxResults = 42; | 13005 var arg_maxResults = 42; |
| 13006 var arg_overriddenEventTagId = "foo"; | 13006 var arg_overriddenEventTagId = "foo"; |
| 13007 var arg_pageToken = "foo"; | 13007 var arg_pageToken = "foo"; |
| 13008 var arg_searchString = "foo"; | 13008 var arg_searchString = "foo"; |
| 13009 var arg_sortField = "foo"; | 13009 var arg_sortField = "foo"; |
| 13010 var arg_sortOrder = "foo"; | 13010 var arg_sortOrder = "foo"; |
| 13011 var arg_subaccountId = "foo"; | 13011 var arg_subaccountId = "foo"; |
| 13012 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13012 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13013 var path = (req.url).path; | 13013 var path = (req.url).path; |
| 13014 var pathOffset = 0; | 13014 var pathOffset = 0; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13246 checkChangeLog(response); | 13246 checkChangeLog(response); |
| 13247 }))); | 13247 }))); |
| 13248 }); | 13248 }); |
| 13249 | 13249 |
| 13250 unittest.test("method--list", () { | 13250 unittest.test("method--list", () { |
| 13251 | 13251 |
| 13252 var mock = new HttpServerMock(); | 13252 var mock = new HttpServerMock(); |
| 13253 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; | 13253 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; |
| 13254 var arg_profileId = "foo"; | 13254 var arg_profileId = "foo"; |
| 13255 var arg_action = "foo"; | 13255 var arg_action = "foo"; |
| 13256 var arg_ids = buildUnnamed1238(); | 13256 var arg_ids = buildUnnamed958(); |
| 13257 var arg_maxChangeTime = "foo"; | 13257 var arg_maxChangeTime = "foo"; |
| 13258 var arg_maxResults = 42; | 13258 var arg_maxResults = 42; |
| 13259 var arg_minChangeTime = "foo"; | 13259 var arg_minChangeTime = "foo"; |
| 13260 var arg_objectIds = buildUnnamed1239(); | 13260 var arg_objectIds = buildUnnamed959(); |
| 13261 var arg_objectType = "foo"; | 13261 var arg_objectType = "foo"; |
| 13262 var arg_pageToken = "foo"; | 13262 var arg_pageToken = "foo"; |
| 13263 var arg_searchString = "foo"; | 13263 var arg_searchString = "foo"; |
| 13264 var arg_userProfileIds = buildUnnamed1240(); | 13264 var arg_userProfileIds = buildUnnamed960(); |
| 13265 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13265 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13266 var path = (req.url).path; | 13266 var path = (req.url).path; |
| 13267 var pathOffset = 0; | 13267 var pathOffset = 0; |
| 13268 var index; | 13268 var index; |
| 13269 var subPart; | 13269 var subPart; |
| 13270 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13270 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13271 pathOffset += 1; | 13271 pathOffset += 1; |
| 13272 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 13272 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| 13273 pathOffset += 18; | 13273 pathOffset += 18; |
| 13274 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13274 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13322 | 13322 |
| 13323 }); | 13323 }); |
| 13324 | 13324 |
| 13325 | 13325 |
| 13326 unittest.group("resource-CitiesResourceApi", () { | 13326 unittest.group("resource-CitiesResourceApi", () { |
| 13327 unittest.test("method--list", () { | 13327 unittest.test("method--list", () { |
| 13328 | 13328 |
| 13329 var mock = new HttpServerMock(); | 13329 var mock = new HttpServerMock(); |
| 13330 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; | 13330 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; |
| 13331 var arg_profileId = "foo"; | 13331 var arg_profileId = "foo"; |
| 13332 var arg_countryDartIds = buildUnnamed1241(); | 13332 var arg_countryDartIds = buildUnnamed961(); |
| 13333 var arg_dartIds = buildUnnamed1242(); | 13333 var arg_dartIds = buildUnnamed962(); |
| 13334 var arg_namePrefix = "foo"; | 13334 var arg_namePrefix = "foo"; |
| 13335 var arg_regionDartIds = buildUnnamed1243(); | 13335 var arg_regionDartIds = buildUnnamed963(); |
| 13336 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13336 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13337 var path = (req.url).path; | 13337 var path = (req.url).path; |
| 13338 var pathOffset = 0; | 13338 var pathOffset = 0; |
| 13339 var index; | 13339 var index; |
| 13340 var subPart; | 13340 var subPart; |
| 13341 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13341 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13342 pathOffset += 1; | 13342 pathOffset += 1; |
| 13343 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 13343 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| 13344 pathOffset += 18; | 13344 pathOffset += 18; |
| 13345 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13345 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13670 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { | 13670 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { |
| 13671 checkContentCategory(response); | 13671 checkContentCategory(response); |
| 13672 }))); | 13672 }))); |
| 13673 }); | 13673 }); |
| 13674 | 13674 |
| 13675 unittest.test("method--list", () { | 13675 unittest.test("method--list", () { |
| 13676 | 13676 |
| 13677 var mock = new HttpServerMock(); | 13677 var mock = new HttpServerMock(); |
| 13678 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; | 13678 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; |
| 13679 var arg_profileId = "foo"; | 13679 var arg_profileId = "foo"; |
| 13680 var arg_ids = buildUnnamed1244(); | 13680 var arg_ids = buildUnnamed964(); |
| 13681 var arg_maxResults = 42; | 13681 var arg_maxResults = 42; |
| 13682 var arg_pageToken = "foo"; | 13682 var arg_pageToken = "foo"; |
| 13683 var arg_searchString = "foo"; | 13683 var arg_searchString = "foo"; |
| 13684 var arg_sortField = "foo"; | 13684 var arg_sortField = "foo"; |
| 13685 var arg_sortOrder = "foo"; | 13685 var arg_sortOrder = "foo"; |
| 13686 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13686 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13687 var path = (req.url).path; | 13687 var path = (req.url).path; |
| 13688 var pathOffset = 0; | 13688 var pathOffset = 0; |
| 13689 var index; | 13689 var index; |
| 13690 var subPart; | 13690 var subPart; |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14234 checkCreativeFieldValue(response); | 14234 checkCreativeFieldValue(response); |
| 14235 }))); | 14235 }))); |
| 14236 }); | 14236 }); |
| 14237 | 14237 |
| 14238 unittest.test("method--list", () { | 14238 unittest.test("method--list", () { |
| 14239 | 14239 |
| 14240 var mock = new HttpServerMock(); | 14240 var mock = new HttpServerMock(); |
| 14241 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; | 14241 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; |
| 14242 var arg_profileId = "foo"; | 14242 var arg_profileId = "foo"; |
| 14243 var arg_creativeFieldId = "foo"; | 14243 var arg_creativeFieldId = "foo"; |
| 14244 var arg_ids = buildUnnamed1245(); | 14244 var arg_ids = buildUnnamed965(); |
| 14245 var arg_maxResults = 42; | 14245 var arg_maxResults = 42; |
| 14246 var arg_pageToken = "foo"; | 14246 var arg_pageToken = "foo"; |
| 14247 var arg_searchString = "foo"; | 14247 var arg_searchString = "foo"; |
| 14248 var arg_sortField = "foo"; | 14248 var arg_sortField = "foo"; |
| 14249 var arg_sortOrder = "foo"; | 14249 var arg_sortOrder = "foo"; |
| 14250 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14250 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14251 var path = (req.url).path; | 14251 var path = (req.url).path; |
| 14252 var pathOffset = 0; | 14252 var pathOffset = 0; |
| 14253 var index; | 14253 var index; |
| 14254 var subPart; | 14254 var subPart; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14611 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { | 14611 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { |
| 14612 checkCreativeField(response); | 14612 checkCreativeField(response); |
| 14613 }))); | 14613 }))); |
| 14614 }); | 14614 }); |
| 14615 | 14615 |
| 14616 unittest.test("method--list", () { | 14616 unittest.test("method--list", () { |
| 14617 | 14617 |
| 14618 var mock = new HttpServerMock(); | 14618 var mock = new HttpServerMock(); |
| 14619 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; | 14619 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; |
| 14620 var arg_profileId = "foo"; | 14620 var arg_profileId = "foo"; |
| 14621 var arg_advertiserIds = buildUnnamed1246(); | 14621 var arg_advertiserIds = buildUnnamed966(); |
| 14622 var arg_ids = buildUnnamed1247(); | 14622 var arg_ids = buildUnnamed967(); |
| 14623 var arg_maxResults = 42; | 14623 var arg_maxResults = 42; |
| 14624 var arg_pageToken = "foo"; | 14624 var arg_pageToken = "foo"; |
| 14625 var arg_searchString = "foo"; | 14625 var arg_searchString = "foo"; |
| 14626 var arg_sortField = "foo"; | 14626 var arg_sortField = "foo"; |
| 14627 var arg_sortOrder = "foo"; | 14627 var arg_sortOrder = "foo"; |
| 14628 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14628 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14629 var path = (req.url).path; | 14629 var path = (req.url).path; |
| 14630 var pathOffset = 0; | 14630 var pathOffset = 0; |
| 14631 var index; | 14631 var index; |
| 14632 var subPart; | 14632 var subPart; |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14912 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { | 14912 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { |
| 14913 checkCreativeGroup(response); | 14913 checkCreativeGroup(response); |
| 14914 }))); | 14914 }))); |
| 14915 }); | 14915 }); |
| 14916 | 14916 |
| 14917 unittest.test("method--list", () { | 14917 unittest.test("method--list", () { |
| 14918 | 14918 |
| 14919 var mock = new HttpServerMock(); | 14919 var mock = new HttpServerMock(); |
| 14920 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; | 14920 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; |
| 14921 var arg_profileId = "foo"; | 14921 var arg_profileId = "foo"; |
| 14922 var arg_advertiserIds = buildUnnamed1248(); | 14922 var arg_advertiserIds = buildUnnamed968(); |
| 14923 var arg_groupNumber = 42; | 14923 var arg_groupNumber = 42; |
| 14924 var arg_ids = buildUnnamed1249(); | 14924 var arg_ids = buildUnnamed969(); |
| 14925 var arg_maxResults = 42; | 14925 var arg_maxResults = 42; |
| 14926 var arg_pageToken = "foo"; | 14926 var arg_pageToken = "foo"; |
| 14927 var arg_searchString = "foo"; | 14927 var arg_searchString = "foo"; |
| 14928 var arg_sortField = "foo"; | 14928 var arg_sortField = "foo"; |
| 14929 var arg_sortOrder = "foo"; | 14929 var arg_sortOrder = "foo"; |
| 14930 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14930 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14931 var path = (req.url).path; | 14931 var path = (req.url).path; |
| 14932 var pathOffset = 0; | 14932 var pathOffset = 0; |
| 14933 var index; | 14933 var index; |
| 14934 var subPart; | 14934 var subPart; |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15219 | 15219 |
| 15220 unittest.test("method--list", () { | 15220 unittest.test("method--list", () { |
| 15221 | 15221 |
| 15222 var mock = new HttpServerMock(); | 15222 var mock = new HttpServerMock(); |
| 15223 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; | 15223 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; |
| 15224 var arg_profileId = "foo"; | 15224 var arg_profileId = "foo"; |
| 15225 var arg_active = true; | 15225 var arg_active = true; |
| 15226 var arg_advertiserId = "foo"; | 15226 var arg_advertiserId = "foo"; |
| 15227 var arg_archived = true; | 15227 var arg_archived = true; |
| 15228 var arg_campaignId = "foo"; | 15228 var arg_campaignId = "foo"; |
| 15229 var arg_companionCreativeIds = buildUnnamed1250(); | 15229 var arg_companionCreativeIds = buildUnnamed970(); |
| 15230 var arg_creativeFieldIds = buildUnnamed1251(); | 15230 var arg_creativeFieldIds = buildUnnamed971(); |
| 15231 var arg_ids = buildUnnamed1252(); | 15231 var arg_ids = buildUnnamed972(); |
| 15232 var arg_maxResults = 42; | 15232 var arg_maxResults = 42; |
| 15233 var arg_pageToken = "foo"; | 15233 var arg_pageToken = "foo"; |
| 15234 var arg_renderingIds = buildUnnamed1253(); | 15234 var arg_renderingIds = buildUnnamed973(); |
| 15235 var arg_searchString = "foo"; | 15235 var arg_searchString = "foo"; |
| 15236 var arg_sizeIds = buildUnnamed1254(); | 15236 var arg_sizeIds = buildUnnamed974(); |
| 15237 var arg_sortField = "foo"; | 15237 var arg_sortField = "foo"; |
| 15238 var arg_sortOrder = "foo"; | 15238 var arg_sortOrder = "foo"; |
| 15239 var arg_studioCreativeId = "foo"; | 15239 var arg_studioCreativeId = "foo"; |
| 15240 var arg_types = buildUnnamed1255(); | 15240 var arg_types = buildUnnamed975(); |
| 15241 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15241 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15242 var path = (req.url).path; | 15242 var path = (req.url).path; |
| 15243 var pathOffset = 0; | 15243 var pathOffset = 0; |
| 15244 var index; | 15244 var index; |
| 15245 var subPart; | 15245 var subPart; |
| 15246 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 15246 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 15247 pathOffset += 1; | 15247 pathOffset += 1; |
| 15248 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 15248 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| 15249 pathOffset += 18; | 15249 pathOffset += 18; |
| 15250 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 15250 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15542 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { | 15542 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { |
| 15543 checkDirectorySiteContact(response); | 15543 checkDirectorySiteContact(response); |
| 15544 }))); | 15544 }))); |
| 15545 }); | 15545 }); |
| 15546 | 15546 |
| 15547 unittest.test("method--list", () { | 15547 unittest.test("method--list", () { |
| 15548 | 15548 |
| 15549 var mock = new HttpServerMock(); | 15549 var mock = new HttpServerMock(); |
| 15550 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; | 15550 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; |
| 15551 var arg_profileId = "foo"; | 15551 var arg_profileId = "foo"; |
| 15552 var arg_directorySiteIds = buildUnnamed1256(); | 15552 var arg_directorySiteIds = buildUnnamed976(); |
| 15553 var arg_ids = buildUnnamed1257(); | 15553 var arg_ids = buildUnnamed977(); |
| 15554 var arg_maxResults = 42; | 15554 var arg_maxResults = 42; |
| 15555 var arg_pageToken = "foo"; | 15555 var arg_pageToken = "foo"; |
| 15556 var arg_searchString = "foo"; | 15556 var arg_searchString = "foo"; |
| 15557 var arg_sortField = "foo"; | 15557 var arg_sortField = "foo"; |
| 15558 var arg_sortOrder = "foo"; | 15558 var arg_sortOrder = "foo"; |
| 15559 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15559 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15560 var path = (req.url).path; | 15560 var path = (req.url).path; |
| 15561 var pathOffset = 0; | 15561 var pathOffset = 0; |
| 15562 var index; | 15562 var index; |
| 15563 var subPart; | 15563 var subPart; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15733 | 15733 |
| 15734 var mock = new HttpServerMock(); | 15734 var mock = new HttpServerMock(); |
| 15735 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; | 15735 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; |
| 15736 var arg_profileId = "foo"; | 15736 var arg_profileId = "foo"; |
| 15737 var arg_acceptsInStreamVideoPlacements = true; | 15737 var arg_acceptsInStreamVideoPlacements = true; |
| 15738 var arg_acceptsInterstitialPlacements = true; | 15738 var arg_acceptsInterstitialPlacements = true; |
| 15739 var arg_acceptsPublisherPaidPlacements = true; | 15739 var arg_acceptsPublisherPaidPlacements = true; |
| 15740 var arg_active = true; | 15740 var arg_active = true; |
| 15741 var arg_countryId = "foo"; | 15741 var arg_countryId = "foo"; |
| 15742 var arg_dfpNetworkCode = "foo"; | 15742 var arg_dfpNetworkCode = "foo"; |
| 15743 var arg_ids = buildUnnamed1258(); | 15743 var arg_ids = buildUnnamed978(); |
| 15744 var arg_maxResults = 42; | 15744 var arg_maxResults = 42; |
| 15745 var arg_pageToken = "foo"; | 15745 var arg_pageToken = "foo"; |
| 15746 var arg_parentId = "foo"; | 15746 var arg_parentId = "foo"; |
| 15747 var arg_searchString = "foo"; | 15747 var arg_searchString = "foo"; |
| 15748 var arg_sortField = "foo"; | 15748 var arg_sortField = "foo"; |
| 15749 var arg_sortOrder = "foo"; | 15749 var arg_sortOrder = "foo"; |
| 15750 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15750 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15751 var path = (req.url).path; | 15751 var path = (req.url).path; |
| 15752 var pathOffset = 0; | 15752 var pathOffset = 0; |
| 15753 var index; | 15753 var index; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15984 unittest.test("method--list", () { | 15984 unittest.test("method--list", () { |
| 15985 | 15985 |
| 15986 var mock = new HttpServerMock(); | 15986 var mock = new HttpServerMock(); |
| 15987 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; | 15987 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; |
| 15988 var arg_profileId = "foo"; | 15988 var arg_profileId = "foo"; |
| 15989 var arg_adId = "foo"; | 15989 var arg_adId = "foo"; |
| 15990 var arg_advertiserId = "foo"; | 15990 var arg_advertiserId = "foo"; |
| 15991 var arg_campaignId = "foo"; | 15991 var arg_campaignId = "foo"; |
| 15992 var arg_definitionsOnly = true; | 15992 var arg_definitionsOnly = true; |
| 15993 var arg_enabled = true; | 15993 var arg_enabled = true; |
| 15994 var arg_eventTagTypes = buildUnnamed1259(); | 15994 var arg_eventTagTypes = buildUnnamed979(); |
| 15995 var arg_ids = buildUnnamed1260(); | 15995 var arg_ids = buildUnnamed980(); |
| 15996 var arg_searchString = "foo"; | 15996 var arg_searchString = "foo"; |
| 15997 var arg_sortField = "foo"; | 15997 var arg_sortField = "foo"; |
| 15998 var arg_sortOrder = "foo"; | 15998 var arg_sortOrder = "foo"; |
| 15999 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15999 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16000 var path = (req.url).path; | 16000 var path = (req.url).path; |
| 16001 var pathOffset = 0; | 16001 var pathOffset = 0; |
| 16002 var index; | 16002 var index; |
| 16003 var subPart; | 16003 var subPart; |
| 16004 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16004 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 16005 pathOffset += 1; | 16005 pathOffset += 1; |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16523 checkFloodlightActivity(response); | 16523 checkFloodlightActivity(response); |
| 16524 }))); | 16524 }))); |
| 16525 }); | 16525 }); |
| 16526 | 16526 |
| 16527 unittest.test("method--list", () { | 16527 unittest.test("method--list", () { |
| 16528 | 16528 |
| 16529 var mock = new HttpServerMock(); | 16529 var mock = new HttpServerMock(); |
| 16530 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; | 16530 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; |
| 16531 var arg_profileId = "foo"; | 16531 var arg_profileId = "foo"; |
| 16532 var arg_advertiserId = "foo"; | 16532 var arg_advertiserId = "foo"; |
| 16533 var arg_floodlightActivityGroupIds = buildUnnamed1261(); | 16533 var arg_floodlightActivityGroupIds = buildUnnamed981(); |
| 16534 var arg_floodlightActivityGroupName = "foo"; | 16534 var arg_floodlightActivityGroupName = "foo"; |
| 16535 var arg_floodlightActivityGroupTagString = "foo"; | 16535 var arg_floodlightActivityGroupTagString = "foo"; |
| 16536 var arg_floodlightActivityGroupType = "foo"; | 16536 var arg_floodlightActivityGroupType = "foo"; |
| 16537 var arg_floodlightConfigurationId = "foo"; | 16537 var arg_floodlightConfigurationId = "foo"; |
| 16538 var arg_ids = buildUnnamed1262(); | 16538 var arg_ids = buildUnnamed982(); |
| 16539 var arg_maxResults = 42; | 16539 var arg_maxResults = 42; |
| 16540 var arg_pageToken = "foo"; | 16540 var arg_pageToken = "foo"; |
| 16541 var arg_searchString = "foo"; | 16541 var arg_searchString = "foo"; |
| 16542 var arg_sortField = "foo"; | 16542 var arg_sortField = "foo"; |
| 16543 var arg_sortOrder = "foo"; | 16543 var arg_sortOrder = "foo"; |
| 16544 var arg_tagString = "foo"; | 16544 var arg_tagString = "foo"; |
| 16545 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16545 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16546 var path = (req.url).path; | 16546 var path = (req.url).path; |
| 16547 var pathOffset = 0; | 16547 var pathOffset = 0; |
| 16548 var index; | 16548 var index; |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16892 }))); | 16892 }))); |
| 16893 }); | 16893 }); |
| 16894 | 16894 |
| 16895 unittest.test("method--list", () { | 16895 unittest.test("method--list", () { |
| 16896 | 16896 |
| 16897 var mock = new HttpServerMock(); | 16897 var mock = new HttpServerMock(); |
| 16898 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; | 16898 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; |
| 16899 var arg_profileId = "foo"; | 16899 var arg_profileId = "foo"; |
| 16900 var arg_advertiserId = "foo"; | 16900 var arg_advertiserId = "foo"; |
| 16901 var arg_floodlightConfigurationId = "foo"; | 16901 var arg_floodlightConfigurationId = "foo"; |
| 16902 var arg_ids = buildUnnamed1263(); | 16902 var arg_ids = buildUnnamed983(); |
| 16903 var arg_maxResults = 42; | 16903 var arg_maxResults = 42; |
| 16904 var arg_pageToken = "foo"; | 16904 var arg_pageToken = "foo"; |
| 16905 var arg_searchString = "foo"; | 16905 var arg_searchString = "foo"; |
| 16906 var arg_sortField = "foo"; | 16906 var arg_sortField = "foo"; |
| 16907 var arg_sortOrder = "foo"; | 16907 var arg_sortOrder = "foo"; |
| 16908 var arg_type = "foo"; | 16908 var arg_type = "foo"; |
| 16909 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16909 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16910 var path = (req.url).path; | 16910 var path = (req.url).path; |
| 16911 var pathOffset = 0; | 16911 var pathOffset = 0; |
| 16912 var index; | 16912 var index; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17138 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { | 17138 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { |
| 17139 checkFloodlightConfiguration(response); | 17139 checkFloodlightConfiguration(response); |
| 17140 }))); | 17140 }))); |
| 17141 }); | 17141 }); |
| 17142 | 17142 |
| 17143 unittest.test("method--list", () { | 17143 unittest.test("method--list", () { |
| 17144 | 17144 |
| 17145 var mock = new HttpServerMock(); | 17145 var mock = new HttpServerMock(); |
| 17146 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; | 17146 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; |
| 17147 var arg_profileId = "foo"; | 17147 var arg_profileId = "foo"; |
| 17148 var arg_ids = buildUnnamed1264(); | 17148 var arg_ids = buildUnnamed984(); |
| 17149 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17149 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17150 var path = (req.url).path; | 17150 var path = (req.url).path; |
| 17151 var pathOffset = 0; | 17151 var pathOffset = 0; |
| 17152 var index; | 17152 var index; |
| 17153 var subPart; | 17153 var subPart; |
| 17154 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17154 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17155 pathOffset += 1; | 17155 pathOffset += 1; |
| 17156 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 17156 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| 17157 pathOffset += 18; | 17157 pathOffset += 18; |
| 17158 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 17158 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17379 checkInventoryItem(response); | 17379 checkInventoryItem(response); |
| 17380 }))); | 17380 }))); |
| 17381 }); | 17381 }); |
| 17382 | 17382 |
| 17383 unittest.test("method--list", () { | 17383 unittest.test("method--list", () { |
| 17384 | 17384 |
| 17385 var mock = new HttpServerMock(); | 17385 var mock = new HttpServerMock(); |
| 17386 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; | 17386 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; |
| 17387 var arg_profileId = "foo"; | 17387 var arg_profileId = "foo"; |
| 17388 var arg_projectId = "foo"; | 17388 var arg_projectId = "foo"; |
| 17389 var arg_ids = buildUnnamed1265(); | 17389 var arg_ids = buildUnnamed985(); |
| 17390 var arg_inPlan = true; | 17390 var arg_inPlan = true; |
| 17391 var arg_maxResults = 42; | 17391 var arg_maxResults = 42; |
| 17392 var arg_orderId = buildUnnamed1266(); | 17392 var arg_orderId = buildUnnamed986(); |
| 17393 var arg_pageToken = "foo"; | 17393 var arg_pageToken = "foo"; |
| 17394 var arg_siteId = buildUnnamed1267(); | 17394 var arg_siteId = buildUnnamed987(); |
| 17395 var arg_sortField = "foo"; | 17395 var arg_sortField = "foo"; |
| 17396 var arg_sortOrder = "foo"; | 17396 var arg_sortOrder = "foo"; |
| 17397 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17397 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17398 var path = (req.url).path; | 17398 var path = (req.url).path; |
| 17399 var pathOffset = 0; | 17399 var pathOffset = 0; |
| 17400 var index; | 17400 var index; |
| 17401 var subPart; | 17401 var subPart; |
| 17402 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17402 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17403 pathOffset += 1; | 17403 pathOffset += 1; |
| 17404 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 17404 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| (...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18315 }))); | 18315 }))); |
| 18316 }); | 18316 }); |
| 18317 | 18317 |
| 18318 unittest.test("method--list", () { | 18318 unittest.test("method--list", () { |
| 18319 | 18319 |
| 18320 var mock = new HttpServerMock(); | 18320 var mock = new HttpServerMock(); |
| 18321 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; | 18321 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; |
| 18322 var arg_profileId = "foo"; | 18322 var arg_profileId = "foo"; |
| 18323 var arg_projectId = "foo"; | 18323 var arg_projectId = "foo"; |
| 18324 var arg_approved = true; | 18324 var arg_approved = true; |
| 18325 var arg_ids = buildUnnamed1268(); | 18325 var arg_ids = buildUnnamed988(); |
| 18326 var arg_maxResults = 42; | 18326 var arg_maxResults = 42; |
| 18327 var arg_orderId = buildUnnamed1269(); | 18327 var arg_orderId = buildUnnamed989(); |
| 18328 var arg_pageToken = "foo"; | 18328 var arg_pageToken = "foo"; |
| 18329 var arg_searchString = "foo"; | 18329 var arg_searchString = "foo"; |
| 18330 var arg_siteId = buildUnnamed1270(); | 18330 var arg_siteId = buildUnnamed990(); |
| 18331 var arg_sortField = "foo"; | 18331 var arg_sortField = "foo"; |
| 18332 var arg_sortOrder = "foo"; | 18332 var arg_sortOrder = "foo"; |
| 18333 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18333 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18334 var path = (req.url).path; | 18334 var path = (req.url).path; |
| 18335 var pathOffset = 0; | 18335 var pathOffset = 0; |
| 18336 var index; | 18336 var index; |
| 18337 var subPart; | 18337 var subPart; |
| 18338 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18338 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18339 pathOffset += 1; | 18339 pathOffset += 1; |
| 18340 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 18340 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18462 checkOrder(response); | 18462 checkOrder(response); |
| 18463 }))); | 18463 }))); |
| 18464 }); | 18464 }); |
| 18465 | 18465 |
| 18466 unittest.test("method--list", () { | 18466 unittest.test("method--list", () { |
| 18467 | 18467 |
| 18468 var mock = new HttpServerMock(); | 18468 var mock = new HttpServerMock(); |
| 18469 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; | 18469 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; |
| 18470 var arg_profileId = "foo"; | 18470 var arg_profileId = "foo"; |
| 18471 var arg_projectId = "foo"; | 18471 var arg_projectId = "foo"; |
| 18472 var arg_ids = buildUnnamed1271(); | 18472 var arg_ids = buildUnnamed991(); |
| 18473 var arg_maxResults = 42; | 18473 var arg_maxResults = 42; |
| 18474 var arg_pageToken = "foo"; | 18474 var arg_pageToken = "foo"; |
| 18475 var arg_searchString = "foo"; | 18475 var arg_searchString = "foo"; |
| 18476 var arg_siteId = buildUnnamed1272(); | 18476 var arg_siteId = buildUnnamed992(); |
| 18477 var arg_sortField = "foo"; | 18477 var arg_sortField = "foo"; |
| 18478 var arg_sortOrder = "foo"; | 18478 var arg_sortOrder = "foo"; |
| 18479 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18479 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18480 var path = (req.url).path; | 18480 var path = (req.url).path; |
| 18481 var pathOffset = 0; | 18481 var pathOffset = 0; |
| 18482 var index; | 18482 var index; |
| 18483 var subPart; | 18483 var subPart; |
| 18484 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18484 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18485 pathOffset += 1; | 18485 pathOffset += 1; |
| 18486 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 18486 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18654 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { | 18654 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { |
| 18655 checkPlacementGroup(response); | 18655 checkPlacementGroup(response); |
| 18656 }))); | 18656 }))); |
| 18657 }); | 18657 }); |
| 18658 | 18658 |
| 18659 unittest.test("method--list", () { | 18659 unittest.test("method--list", () { |
| 18660 | 18660 |
| 18661 var mock = new HttpServerMock(); | 18661 var mock = new HttpServerMock(); |
| 18662 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; | 18662 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; |
| 18663 var arg_profileId = "foo"; | 18663 var arg_profileId = "foo"; |
| 18664 var arg_advertiserIds = buildUnnamed1273(); | 18664 var arg_advertiserIds = buildUnnamed993(); |
| 18665 var arg_archived = true; | 18665 var arg_archived = true; |
| 18666 var arg_campaignIds = buildUnnamed1274(); | 18666 var arg_campaignIds = buildUnnamed994(); |
| 18667 var arg_contentCategoryIds = buildUnnamed1275(); | 18667 var arg_contentCategoryIds = buildUnnamed995(); |
| 18668 var arg_directorySiteIds = buildUnnamed1276(); | 18668 var arg_directorySiteIds = buildUnnamed996(); |
| 18669 var arg_ids = buildUnnamed1277(); | 18669 var arg_ids = buildUnnamed997(); |
| 18670 var arg_maxResults = 42; | 18670 var arg_maxResults = 42; |
| 18671 var arg_pageToken = "foo"; | 18671 var arg_pageToken = "foo"; |
| 18672 var arg_placementGroupType = "foo"; | 18672 var arg_placementGroupType = "foo"; |
| 18673 var arg_placementStrategyIds = buildUnnamed1278(); | 18673 var arg_placementStrategyIds = buildUnnamed998(); |
| 18674 var arg_pricingTypes = buildUnnamed1279(); | 18674 var arg_pricingTypes = buildUnnamed999(); |
| 18675 var arg_searchString = "foo"; | 18675 var arg_searchString = "foo"; |
| 18676 var arg_siteIds = buildUnnamed1280(); | 18676 var arg_siteIds = buildUnnamed1000(); |
| 18677 var arg_sortField = "foo"; | 18677 var arg_sortField = "foo"; |
| 18678 var arg_sortOrder = "foo"; | 18678 var arg_sortOrder = "foo"; |
| 18679 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18679 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18680 var path = (req.url).path; | 18680 var path = (req.url).path; |
| 18681 var pathOffset = 0; | 18681 var pathOffset = 0; |
| 18682 var index; | 18682 var index; |
| 18683 var subPart; | 18683 var subPart; |
| 18684 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18684 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18685 pathOffset += 1; | 18685 pathOffset += 1; |
| 18686 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 18686 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19026 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { | 19026 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { |
| 19027 checkPlacementStrategy(response); | 19027 checkPlacementStrategy(response); |
| 19028 }))); | 19028 }))); |
| 19029 }); | 19029 }); |
| 19030 | 19030 |
| 19031 unittest.test("method--list", () { | 19031 unittest.test("method--list", () { |
| 19032 | 19032 |
| 19033 var mock = new HttpServerMock(); | 19033 var mock = new HttpServerMock(); |
| 19034 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; | 19034 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; |
| 19035 var arg_profileId = "foo"; | 19035 var arg_profileId = "foo"; |
| 19036 var arg_ids = buildUnnamed1281(); | 19036 var arg_ids = buildUnnamed1001(); |
| 19037 var arg_maxResults = 42; | 19037 var arg_maxResults = 42; |
| 19038 var arg_pageToken = "foo"; | 19038 var arg_pageToken = "foo"; |
| 19039 var arg_searchString = "foo"; | 19039 var arg_searchString = "foo"; |
| 19040 var arg_sortField = "foo"; | 19040 var arg_sortField = "foo"; |
| 19041 var arg_sortOrder = "foo"; | 19041 var arg_sortOrder = "foo"; |
| 19042 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19042 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19043 var path = (req.url).path; | 19043 var path = (req.url).path; |
| 19044 var pathOffset = 0; | 19044 var pathOffset = 0; |
| 19045 var index; | 19045 var index; |
| 19046 var subPart; | 19046 var subPart; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19212 }); | 19212 }); |
| 19213 | 19213 |
| 19214 | 19214 |
| 19215 unittest.group("resource-PlacementsResourceApi", () { | 19215 unittest.group("resource-PlacementsResourceApi", () { |
| 19216 unittest.test("method--generatetags", () { | 19216 unittest.test("method--generatetags", () { |
| 19217 | 19217 |
| 19218 var mock = new HttpServerMock(); | 19218 var mock = new HttpServerMock(); |
| 19219 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19219 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19220 var arg_profileId = "foo"; | 19220 var arg_profileId = "foo"; |
| 19221 var arg_campaignId = "foo"; | 19221 var arg_campaignId = "foo"; |
| 19222 var arg_placementIds = buildUnnamed1282(); | 19222 var arg_placementIds = buildUnnamed1002(); |
| 19223 var arg_tagFormats = buildUnnamed1283(); | 19223 var arg_tagFormats = buildUnnamed1003(); |
| 19224 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19224 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19225 var path = (req.url).path; | 19225 var path = (req.url).path; |
| 19226 var pathOffset = 0; | 19226 var pathOffset = 0; |
| 19227 var index; | 19227 var index; |
| 19228 var subPart; | 19228 var subPart; |
| 19229 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19229 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19230 pathOffset += 1; | 19230 pathOffset += 1; |
| 19231 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 19231 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| 19232 pathOffset += 18; | 19232 pathOffset += 18; |
| 19233 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 19233 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19384 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { | 19384 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { |
| 19385 checkPlacement(response); | 19385 checkPlacement(response); |
| 19386 }))); | 19386 }))); |
| 19387 }); | 19387 }); |
| 19388 | 19388 |
| 19389 unittest.test("method--list", () { | 19389 unittest.test("method--list", () { |
| 19390 | 19390 |
| 19391 var mock = new HttpServerMock(); | 19391 var mock = new HttpServerMock(); |
| 19392 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19392 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19393 var arg_profileId = "foo"; | 19393 var arg_profileId = "foo"; |
| 19394 var arg_advertiserIds = buildUnnamed1284(); | 19394 var arg_advertiserIds = buildUnnamed1004(); |
| 19395 var arg_archived = true; | 19395 var arg_archived = true; |
| 19396 var arg_campaignIds = buildUnnamed1285(); | 19396 var arg_campaignIds = buildUnnamed1005(); |
| 19397 var arg_compatibilities = buildUnnamed1286(); | 19397 var arg_compatibilities = buildUnnamed1006(); |
| 19398 var arg_contentCategoryIds = buildUnnamed1287(); | 19398 var arg_contentCategoryIds = buildUnnamed1007(); |
| 19399 var arg_directorySiteIds = buildUnnamed1288(); | 19399 var arg_directorySiteIds = buildUnnamed1008(); |
| 19400 var arg_groupIds = buildUnnamed1289(); | 19400 var arg_groupIds = buildUnnamed1009(); |
| 19401 var arg_ids = buildUnnamed1290(); | 19401 var arg_ids = buildUnnamed1010(); |
| 19402 var arg_maxResults = 42; | 19402 var arg_maxResults = 42; |
| 19403 var arg_pageToken = "foo"; | 19403 var arg_pageToken = "foo"; |
| 19404 var arg_paymentSource = "foo"; | 19404 var arg_paymentSource = "foo"; |
| 19405 var arg_placementStrategyIds = buildUnnamed1291(); | 19405 var arg_placementStrategyIds = buildUnnamed1011(); |
| 19406 var arg_pricingTypes = buildUnnamed1292(); | 19406 var arg_pricingTypes = buildUnnamed1012(); |
| 19407 var arg_searchString = "foo"; | 19407 var arg_searchString = "foo"; |
| 19408 var arg_siteIds = buildUnnamed1293(); | 19408 var arg_siteIds = buildUnnamed1013(); |
| 19409 var arg_sizeIds = buildUnnamed1294(); | 19409 var arg_sizeIds = buildUnnamed1014(); |
| 19410 var arg_sortField = "foo"; | 19410 var arg_sortField = "foo"; |
| 19411 var arg_sortOrder = "foo"; | 19411 var arg_sortOrder = "foo"; |
| 19412 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19412 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19413 var path = (req.url).path; | 19413 var path = (req.url).path; |
| 19414 var pathOffset = 0; | 19414 var pathOffset = 0; |
| 19415 var index; | 19415 var index; |
| 19416 var subPart; | 19416 var subPart; |
| 19417 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19417 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19418 pathOffset += 1; | 19418 pathOffset += 1; |
| 19419 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 19419 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19878 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { | 19878 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { |
| 19879 checkProject(response); | 19879 checkProject(response); |
| 19880 }))); | 19880 }))); |
| 19881 }); | 19881 }); |
| 19882 | 19882 |
| 19883 unittest.test("method--list", () { | 19883 unittest.test("method--list", () { |
| 19884 | 19884 |
| 19885 var mock = new HttpServerMock(); | 19885 var mock = new HttpServerMock(); |
| 19886 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; | 19886 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; |
| 19887 var arg_profileId = "foo"; | 19887 var arg_profileId = "foo"; |
| 19888 var arg_advertiserIds = buildUnnamed1295(); | 19888 var arg_advertiserIds = buildUnnamed1015(); |
| 19889 var arg_ids = buildUnnamed1296(); | 19889 var arg_ids = buildUnnamed1016(); |
| 19890 var arg_maxResults = 42; | 19890 var arg_maxResults = 42; |
| 19891 var arg_pageToken = "foo"; | 19891 var arg_pageToken = "foo"; |
| 19892 var arg_searchString = "foo"; | 19892 var arg_searchString = "foo"; |
| 19893 var arg_sortField = "foo"; | 19893 var arg_sortField = "foo"; |
| 19894 var arg_sortOrder = "foo"; | 19894 var arg_sortOrder = "foo"; |
| 19895 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19895 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19896 var path = (req.url).path; | 19896 var path = (req.url).path; |
| 19897 var pathOffset = 0; | 19897 var pathOffset = 0; |
| 19898 var index; | 19898 var index; |
| 19899 var subPart; | 19899 var subPart; |
| (...skipping 1327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21227 unittest.test("method--list", () { | 21227 unittest.test("method--list", () { |
| 21228 | 21228 |
| 21229 var mock = new HttpServerMock(); | 21229 var mock = new HttpServerMock(); |
| 21230 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; | 21230 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; |
| 21231 var arg_profileId = "foo"; | 21231 var arg_profileId = "foo"; |
| 21232 var arg_acceptsInStreamVideoPlacements = true; | 21232 var arg_acceptsInStreamVideoPlacements = true; |
| 21233 var arg_acceptsInterstitialPlacements = true; | 21233 var arg_acceptsInterstitialPlacements = true; |
| 21234 var arg_acceptsPublisherPaidPlacements = true; | 21234 var arg_acceptsPublisherPaidPlacements = true; |
| 21235 var arg_adWordsSite = true; | 21235 var arg_adWordsSite = true; |
| 21236 var arg_approved = true; | 21236 var arg_approved = true; |
| 21237 var arg_campaignIds = buildUnnamed1297(); | 21237 var arg_campaignIds = buildUnnamed1017(); |
| 21238 var arg_directorySiteIds = buildUnnamed1298(); | 21238 var arg_directorySiteIds = buildUnnamed1018(); |
| 21239 var arg_ids = buildUnnamed1299(); | 21239 var arg_ids = buildUnnamed1019(); |
| 21240 var arg_maxResults = 42; | 21240 var arg_maxResults = 42; |
| 21241 var arg_pageToken = "foo"; | 21241 var arg_pageToken = "foo"; |
| 21242 var arg_searchString = "foo"; | 21242 var arg_searchString = "foo"; |
| 21243 var arg_sortField = "foo"; | 21243 var arg_sortField = "foo"; |
| 21244 var arg_sortOrder = "foo"; | 21244 var arg_sortOrder = "foo"; |
| 21245 var arg_subaccountId = "foo"; | 21245 var arg_subaccountId = "foo"; |
| 21246 var arg_unmappedSite = true; | 21246 var arg_unmappedSite = true; |
| 21247 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21247 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21248 var path = (req.url).path; | 21248 var path = (req.url).path; |
| 21249 var pathOffset = 0; | 21249 var pathOffset = 0; |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21541 }))); | 21541 }))); |
| 21542 }); | 21542 }); |
| 21543 | 21543 |
| 21544 unittest.test("method--list", () { | 21544 unittest.test("method--list", () { |
| 21545 | 21545 |
| 21546 var mock = new HttpServerMock(); | 21546 var mock = new HttpServerMock(); |
| 21547 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; | 21547 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; |
| 21548 var arg_profileId = "foo"; | 21548 var arg_profileId = "foo"; |
| 21549 var arg_height = 42; | 21549 var arg_height = 42; |
| 21550 var arg_iabStandard = true; | 21550 var arg_iabStandard = true; |
| 21551 var arg_ids = buildUnnamed1300(); | 21551 var arg_ids = buildUnnamed1020(); |
| 21552 var arg_width = 42; | 21552 var arg_width = 42; |
| 21553 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21553 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21554 var path = (req.url).path; | 21554 var path = (req.url).path; |
| 21555 var pathOffset = 0; | 21555 var pathOffset = 0; |
| 21556 var index; | 21556 var index; |
| 21557 var subPart; | 21557 var subPart; |
| 21558 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 21558 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 21559 pathOffset += 1; | 21559 pathOffset += 1; |
| 21560 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 21560 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| 21561 pathOffset += 18; | 21561 pathOffset += 18; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21718 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { | 21718 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { |
| 21719 checkSubaccount(response); | 21719 checkSubaccount(response); |
| 21720 }))); | 21720 }))); |
| 21721 }); | 21721 }); |
| 21722 | 21722 |
| 21723 unittest.test("method--list", () { | 21723 unittest.test("method--list", () { |
| 21724 | 21724 |
| 21725 var mock = new HttpServerMock(); | 21725 var mock = new HttpServerMock(); |
| 21726 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; | 21726 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; |
| 21727 var arg_profileId = "foo"; | 21727 var arg_profileId = "foo"; |
| 21728 var arg_ids = buildUnnamed1301(); | 21728 var arg_ids = buildUnnamed1021(); |
| 21729 var arg_maxResults = 42; | 21729 var arg_maxResults = 42; |
| 21730 var arg_pageToken = "foo"; | 21730 var arg_pageToken = "foo"; |
| 21731 var arg_searchString = "foo"; | 21731 var arg_searchString = "foo"; |
| 21732 var arg_sortField = "foo"; | 21732 var arg_sortField = "foo"; |
| 21733 var arg_sortOrder = "foo"; | 21733 var arg_sortOrder = "foo"; |
| 21734 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21734 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21735 var path = (req.url).path; | 21735 var path = (req.url).path; |
| 21736 var pathOffset = 0; | 21736 var pathOffset = 0; |
| 21737 var index; | 21737 var index; |
| 21738 var subPart; | 21738 var subPart; |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22300 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { | 22300 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { |
| 22301 checkUserRolePermission(response); | 22301 checkUserRolePermission(response); |
| 22302 }))); | 22302 }))); |
| 22303 }); | 22303 }); |
| 22304 | 22304 |
| 22305 unittest.test("method--list", () { | 22305 unittest.test("method--list", () { |
| 22306 | 22306 |
| 22307 var mock = new HttpServerMock(); | 22307 var mock = new HttpServerMock(); |
| 22308 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; | 22308 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; |
| 22309 var arg_profileId = "foo"; | 22309 var arg_profileId = "foo"; |
| 22310 var arg_ids = buildUnnamed1302(); | 22310 var arg_ids = buildUnnamed1022(); |
| 22311 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22311 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22312 var path = (req.url).path; | 22312 var path = (req.url).path; |
| 22313 var pathOffset = 0; | 22313 var pathOffset = 0; |
| 22314 var index; | 22314 var index; |
| 22315 var subPart; | 22315 var subPart; |
| 22316 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 22316 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 22317 pathOffset += 1; | 22317 pathOffset += 1; |
| 22318 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); | 22318 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.1/")); |
| 22319 pathOffset += 18; | 22319 pathOffset += 18; |
| 22320 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 22320 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22529 checkUserRole(response); | 22529 checkUserRole(response); |
| 22530 }))); | 22530 }))); |
| 22531 }); | 22531 }); |
| 22532 | 22532 |
| 22533 unittest.test("method--list", () { | 22533 unittest.test("method--list", () { |
| 22534 | 22534 |
| 22535 var mock = new HttpServerMock(); | 22535 var mock = new HttpServerMock(); |
| 22536 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; | 22536 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; |
| 22537 var arg_profileId = "foo"; | 22537 var arg_profileId = "foo"; |
| 22538 var arg_accountUserRoleOnly = true; | 22538 var arg_accountUserRoleOnly = true; |
| 22539 var arg_ids = buildUnnamed1303(); | 22539 var arg_ids = buildUnnamed1023(); |
| 22540 var arg_maxResults = 42; | 22540 var arg_maxResults = 42; |
| 22541 var arg_pageToken = "foo"; | 22541 var arg_pageToken = "foo"; |
| 22542 var arg_searchString = "foo"; | 22542 var arg_searchString = "foo"; |
| 22543 var arg_sortField = "foo"; | 22543 var arg_sortField = "foo"; |
| 22544 var arg_sortOrder = "foo"; | 22544 var arg_sortOrder = "foo"; |
| 22545 var arg_subaccountId = "foo"; | 22545 var arg_subaccountId = "foo"; |
| 22546 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22546 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22547 var path = (req.url).path; | 22547 var path = (req.url).path; |
| 22548 var pathOffset = 0; | 22548 var pathOffset = 0; |
| 22549 var index; | 22549 var index; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22713 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { | 22713 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { |
| 22714 checkUserRole(response); | 22714 checkUserRole(response); |
| 22715 }))); | 22715 }))); |
| 22716 }); | 22716 }); |
| 22717 | 22717 |
| 22718 }); | 22718 }); |
| 22719 | 22719 |
| 22720 | 22720 |
| 22721 } | 22721 } |
| 22722 | 22722 |
| OLD | NEW |