| OLD | NEW |
| 1 library googleapis.dfareporting.v2_5.test; | 1 library googleapis.dfareporting.v2_5.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 buildUnnamed1296() { | 54 buildUnnamed1308() { |
| 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 checkUnnamed1296(core.List<core.String> o) { | 61 checkUnnamed1308(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 buildUnnamed1297() { | 67 buildUnnamed1309() { |
| 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 checkUnnamed1297(core.List<core.String> o) { | 74 checkUnnamed1309(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 = buildUnnamed1296(); | 85 o.accountPermissionIds = buildUnnamed1308(); |
| 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 = buildUnnamed1297(); | 90 o.availablePermissionIds = buildUnnamed1309(); |
| 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 checkUnnamed1296(o.accountPermissionIds); | 112 checkUnnamed1308(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 checkUnnamed1297(o.availablePermissionIds); | 117 checkUnnamed1309(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 buildUnnamed1298() { | 162 buildUnnamed1310() { |
| 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 checkUnnamed1298(core.List<core.String> o) { | 169 checkUnnamed1310(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 = buildUnnamed1298(); | 180 o.accountProfiles = buildUnnamed1310(); |
| 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 checkUnnamed1298(o.accountProfiles); | 194 checkUnnamed1310(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 buildUnnamed1299() { | 227 buildUnnamed1311() { |
| 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 checkUnnamed1299(core.List<api.AccountPermissionGroup> o) { | 234 checkUnnamed1311(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 = buildUnnamed1299(); | 245 o.accountPermissionGroups = buildUnnamed1311(); |
| 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 checkUnnamed1299(o.accountPermissionGroups); | 255 checkUnnamed1311(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 buildUnnamed1300() { | 261 buildUnnamed1312() { |
| 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 checkUnnamed1300(core.List<api.AccountPermission> o) { | 268 checkUnnamed1312(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 = buildUnnamed1300(); | 279 o.accountPermissions = buildUnnamed1312(); |
| 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 checkUnnamed1300(o.accountPermissions); | 289 checkUnnamed1312(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 buildUnnamed1301() { | 344 buildUnnamed1313() { |
| 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 checkUnnamed1301(core.List<api.AccountUserProfile> o) { | 351 checkUnnamed1313(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 = buildUnnamed1301(); | 362 o.accountUserProfiles = buildUnnamed1313(); |
| 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 checkUnnamed1301(o.accountUserProfiles); | 373 checkUnnamed1313(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 buildUnnamed1302() { | 380 buildUnnamed1314() { |
| 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 checkUnnamed1302(core.List<api.Account> o) { | 387 checkUnnamed1314(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 = buildUnnamed1302(); | 398 o.accounts = buildUnnamed1314(); |
| 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 checkUnnamed1302(o.accounts); | 409 checkUnnamed1314(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 buildUnnamed1303() { | 416 buildUnnamed1315() { |
| 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 checkUnnamed1303(core.List<api.DimensionValue> o) { | 423 checkUnnamed1315(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 buildUnnamed1304() { | 429 buildUnnamed1316() { |
| 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 checkUnnamed1304(core.List<core.String> o) { | 436 checkUnnamed1316(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 = buildUnnamed1303(); | 447 o.filters = buildUnnamed1315(); |
| 448 o.kind = "foo"; | 448 o.kind = "foo"; |
| 449 o.metricNames = buildUnnamed1304(); | 449 o.metricNames = buildUnnamed1316(); |
| 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 checkUnnamed1303(o.filters); | 458 checkUnnamed1315(o.filters); |
| 459 unittest.expect(o.kind, unittest.equals('foo')); | 459 unittest.expect(o.kind, unittest.equals('foo')); |
| 460 checkUnnamed1304(o.metricNames); | 460 checkUnnamed1316(o.metricNames); |
| 461 } | 461 } |
| 462 buildCounterActivities--; | 462 buildCounterActivities--; |
| 463 } | 463 } |
| 464 | 464 |
| 465 buildUnnamed1305() { | 465 buildUnnamed1317() { |
| 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 checkUnnamed1305(core.List<api.CreativeGroupAssignment> o) { | 472 checkUnnamed1317(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 buildUnnamed1306() { | 478 buildUnnamed1318() { |
| 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 checkUnnamed1306(core.List<api.EventTagOverride> o) { | 485 checkUnnamed1318(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 buildUnnamed1307() { | 491 buildUnnamed1319() { |
| 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 checkUnnamed1307(core.List<api.PlacementAssignment> o) { | 498 checkUnnamed1319(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 = buildUnnamed1305(); | 522 o.creativeGroupAssignments = buildUnnamed1317(); |
| 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 = buildUnnamed1306(); | 529 o.eventTagOverrides = buildUnnamed1318(); |
| 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 = buildUnnamed1307(); | 537 o.placementAssignments = buildUnnamed1319(); |
| 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 checkUnnamed1305(o.creativeGroupAssignments); | 567 checkUnnamed1317(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 checkUnnamed1306(o.eventTagOverrides); | 574 checkUnnamed1318(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 checkUnnamed1307(o.placementAssignments); | 582 checkUnnamed1319(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 buildUnnamed1308() { | 628 buildUnnamed1320() { |
| 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 checkUnnamed1308(core.List<api.Ad> o) { | 635 checkUnnamed1320(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 = buildUnnamed1308(); | 646 o.ads = buildUnnamed1320(); |
| 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 checkUnnamed1308(o.ads); | 657 checkUnnamed1320(o.ads); |
| 658 unittest.expect(o.kind, unittest.equals('foo')); | 658 unittest.expect(o.kind, unittest.equals('foo')); |
| 659 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 659 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 660 } | 660 } |
| 661 buildCounterAdsListResponse--; | 661 buildCounterAdsListResponse--; |
| 662 } | 662 } |
| 663 | 663 |
| 664 core.int buildCounterAdvertiser = 0; | 664 core.int buildCounterAdvertiser = 0; |
| 665 buildAdvertiser() { | 665 buildAdvertiser() { |
| 666 var o = new api.Advertiser(); | 666 var o = new api.Advertiser(); |
| 667 buildCounterAdvertiser++; | 667 buildCounterAdvertiser++; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 buildCounterAdvertiserGroup++; | 726 buildCounterAdvertiserGroup++; |
| 727 if (buildCounterAdvertiserGroup < 3) { | 727 if (buildCounterAdvertiserGroup < 3) { |
| 728 unittest.expect(o.accountId, unittest.equals('foo')); | 728 unittest.expect(o.accountId, unittest.equals('foo')); |
| 729 unittest.expect(o.id, unittest.equals('foo')); | 729 unittest.expect(o.id, unittest.equals('foo')); |
| 730 unittest.expect(o.kind, unittest.equals('foo')); | 730 unittest.expect(o.kind, unittest.equals('foo')); |
| 731 unittest.expect(o.name, unittest.equals('foo')); | 731 unittest.expect(o.name, unittest.equals('foo')); |
| 732 } | 732 } |
| 733 buildCounterAdvertiserGroup--; | 733 buildCounterAdvertiserGroup--; |
| 734 } | 734 } |
| 735 | 735 |
| 736 buildUnnamed1309() { | 736 buildUnnamed1321() { |
| 737 var o = new core.List<api.AdvertiserGroup>(); | 737 var o = new core.List<api.AdvertiserGroup>(); |
| 738 o.add(buildAdvertiserGroup()); | 738 o.add(buildAdvertiserGroup()); |
| 739 o.add(buildAdvertiserGroup()); | 739 o.add(buildAdvertiserGroup()); |
| 740 return o; | 740 return o; |
| 741 } | 741 } |
| 742 | 742 |
| 743 checkUnnamed1309(core.List<api.AdvertiserGroup> o) { | 743 checkUnnamed1321(core.List<api.AdvertiserGroup> o) { |
| 744 unittest.expect(o, unittest.hasLength(2)); | 744 unittest.expect(o, unittest.hasLength(2)); |
| 745 checkAdvertiserGroup(o[0]); | 745 checkAdvertiserGroup(o[0]); |
| 746 checkAdvertiserGroup(o[1]); | 746 checkAdvertiserGroup(o[1]); |
| 747 } | 747 } |
| 748 | 748 |
| 749 core.int buildCounterAdvertiserGroupsListResponse = 0; | 749 core.int buildCounterAdvertiserGroupsListResponse = 0; |
| 750 buildAdvertiserGroupsListResponse() { | 750 buildAdvertiserGroupsListResponse() { |
| 751 var o = new api.AdvertiserGroupsListResponse(); | 751 var o = new api.AdvertiserGroupsListResponse(); |
| 752 buildCounterAdvertiserGroupsListResponse++; | 752 buildCounterAdvertiserGroupsListResponse++; |
| 753 if (buildCounterAdvertiserGroupsListResponse < 3) { | 753 if (buildCounterAdvertiserGroupsListResponse < 3) { |
| 754 o.advertiserGroups = buildUnnamed1309(); | 754 o.advertiserGroups = buildUnnamed1321(); |
| 755 o.kind = "foo"; | 755 o.kind = "foo"; |
| 756 o.nextPageToken = "foo"; | 756 o.nextPageToken = "foo"; |
| 757 } | 757 } |
| 758 buildCounterAdvertiserGroupsListResponse--; | 758 buildCounterAdvertiserGroupsListResponse--; |
| 759 return o; | 759 return o; |
| 760 } | 760 } |
| 761 | 761 |
| 762 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { | 762 checkAdvertiserGroupsListResponse(api.AdvertiserGroupsListResponse o) { |
| 763 buildCounterAdvertiserGroupsListResponse++; | 763 buildCounterAdvertiserGroupsListResponse++; |
| 764 if (buildCounterAdvertiserGroupsListResponse < 3) { | 764 if (buildCounterAdvertiserGroupsListResponse < 3) { |
| 765 checkUnnamed1309(o.advertiserGroups); | 765 checkUnnamed1321(o.advertiserGroups); |
| 766 unittest.expect(o.kind, unittest.equals('foo')); | 766 unittest.expect(o.kind, unittest.equals('foo')); |
| 767 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 767 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 768 } | 768 } |
| 769 buildCounterAdvertiserGroupsListResponse--; | 769 buildCounterAdvertiserGroupsListResponse--; |
| 770 } | 770 } |
| 771 | 771 |
| 772 buildUnnamed1310() { | 772 buildUnnamed1322() { |
| 773 var o = new core.List<api.Advertiser>(); | 773 var o = new core.List<api.Advertiser>(); |
| 774 o.add(buildAdvertiser()); | 774 o.add(buildAdvertiser()); |
| 775 o.add(buildAdvertiser()); | 775 o.add(buildAdvertiser()); |
| 776 return o; | 776 return o; |
| 777 } | 777 } |
| 778 | 778 |
| 779 checkUnnamed1310(core.List<api.Advertiser> o) { | 779 checkUnnamed1322(core.List<api.Advertiser> o) { |
| 780 unittest.expect(o, unittest.hasLength(2)); | 780 unittest.expect(o, unittest.hasLength(2)); |
| 781 checkAdvertiser(o[0]); | 781 checkAdvertiser(o[0]); |
| 782 checkAdvertiser(o[1]); | 782 checkAdvertiser(o[1]); |
| 783 } | 783 } |
| 784 | 784 |
| 785 core.int buildCounterAdvertisersListResponse = 0; | 785 core.int buildCounterAdvertisersListResponse = 0; |
| 786 buildAdvertisersListResponse() { | 786 buildAdvertisersListResponse() { |
| 787 var o = new api.AdvertisersListResponse(); | 787 var o = new api.AdvertisersListResponse(); |
| 788 buildCounterAdvertisersListResponse++; | 788 buildCounterAdvertisersListResponse++; |
| 789 if (buildCounterAdvertisersListResponse < 3) { | 789 if (buildCounterAdvertisersListResponse < 3) { |
| 790 o.advertisers = buildUnnamed1310(); | 790 o.advertisers = buildUnnamed1322(); |
| 791 o.kind = "foo"; | 791 o.kind = "foo"; |
| 792 o.nextPageToken = "foo"; | 792 o.nextPageToken = "foo"; |
| 793 } | 793 } |
| 794 buildCounterAdvertisersListResponse--; | 794 buildCounterAdvertisersListResponse--; |
| 795 return o; | 795 return o; |
| 796 } | 796 } |
| 797 | 797 |
| 798 checkAdvertisersListResponse(api.AdvertisersListResponse o) { | 798 checkAdvertisersListResponse(api.AdvertisersListResponse o) { |
| 799 buildCounterAdvertisersListResponse++; | 799 buildCounterAdvertisersListResponse++; |
| 800 if (buildCounterAdvertisersListResponse < 3) { | 800 if (buildCounterAdvertisersListResponse < 3) { |
| 801 checkUnnamed1310(o.advertisers); | 801 checkUnnamed1322(o.advertisers); |
| 802 unittest.expect(o.kind, unittest.equals('foo')); | 802 unittest.expect(o.kind, unittest.equals('foo')); |
| 803 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 803 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 804 } | 804 } |
| 805 buildCounterAdvertisersListResponse--; | 805 buildCounterAdvertisersListResponse--; |
| 806 } | 806 } |
| 807 | 807 |
| 808 core.int buildCounterAudienceSegment = 0; | 808 core.int buildCounterAudienceSegment = 0; |
| 809 buildAudienceSegment() { | 809 buildAudienceSegment() { |
| 810 var o = new api.AudienceSegment(); | 810 var o = new api.AudienceSegment(); |
| 811 buildCounterAudienceSegment++; | 811 buildCounterAudienceSegment++; |
| 812 if (buildCounterAudienceSegment < 3) { | 812 if (buildCounterAudienceSegment < 3) { |
| 813 o.allocation = 42; | 813 o.allocation = 42; |
| 814 o.id = "foo"; | 814 o.id = "foo"; |
| 815 o.name = "foo"; | 815 o.name = "foo"; |
| 816 } | 816 } |
| 817 buildCounterAudienceSegment--; | 817 buildCounterAudienceSegment--; |
| 818 return o; | 818 return o; |
| 819 } | 819 } |
| 820 | 820 |
| 821 checkAudienceSegment(api.AudienceSegment o) { | 821 checkAudienceSegment(api.AudienceSegment o) { |
| 822 buildCounterAudienceSegment++; | 822 buildCounterAudienceSegment++; |
| 823 if (buildCounterAudienceSegment < 3) { | 823 if (buildCounterAudienceSegment < 3) { |
| 824 unittest.expect(o.allocation, unittest.equals(42)); | 824 unittest.expect(o.allocation, unittest.equals(42)); |
| 825 unittest.expect(o.id, unittest.equals('foo')); | 825 unittest.expect(o.id, unittest.equals('foo')); |
| 826 unittest.expect(o.name, unittest.equals('foo')); | 826 unittest.expect(o.name, unittest.equals('foo')); |
| 827 } | 827 } |
| 828 buildCounterAudienceSegment--; | 828 buildCounterAudienceSegment--; |
| 829 } | 829 } |
| 830 | 830 |
| 831 buildUnnamed1311() { | 831 buildUnnamed1323() { |
| 832 var o = new core.List<api.AudienceSegment>(); | 832 var o = new core.List<api.AudienceSegment>(); |
| 833 o.add(buildAudienceSegment()); | 833 o.add(buildAudienceSegment()); |
| 834 o.add(buildAudienceSegment()); | 834 o.add(buildAudienceSegment()); |
| 835 return o; | 835 return o; |
| 836 } | 836 } |
| 837 | 837 |
| 838 checkUnnamed1311(core.List<api.AudienceSegment> o) { | 838 checkUnnamed1323(core.List<api.AudienceSegment> o) { |
| 839 unittest.expect(o, unittest.hasLength(2)); | 839 unittest.expect(o, unittest.hasLength(2)); |
| 840 checkAudienceSegment(o[0]); | 840 checkAudienceSegment(o[0]); |
| 841 checkAudienceSegment(o[1]); | 841 checkAudienceSegment(o[1]); |
| 842 } | 842 } |
| 843 | 843 |
| 844 core.int buildCounterAudienceSegmentGroup = 0; | 844 core.int buildCounterAudienceSegmentGroup = 0; |
| 845 buildAudienceSegmentGroup() { | 845 buildAudienceSegmentGroup() { |
| 846 var o = new api.AudienceSegmentGroup(); | 846 var o = new api.AudienceSegmentGroup(); |
| 847 buildCounterAudienceSegmentGroup++; | 847 buildCounterAudienceSegmentGroup++; |
| 848 if (buildCounterAudienceSegmentGroup < 3) { | 848 if (buildCounterAudienceSegmentGroup < 3) { |
| 849 o.audienceSegments = buildUnnamed1311(); | 849 o.audienceSegments = buildUnnamed1323(); |
| 850 o.id = "foo"; | 850 o.id = "foo"; |
| 851 o.name = "foo"; | 851 o.name = "foo"; |
| 852 } | 852 } |
| 853 buildCounterAudienceSegmentGroup--; | 853 buildCounterAudienceSegmentGroup--; |
| 854 return o; | 854 return o; |
| 855 } | 855 } |
| 856 | 856 |
| 857 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { | 857 checkAudienceSegmentGroup(api.AudienceSegmentGroup o) { |
| 858 buildCounterAudienceSegmentGroup++; | 858 buildCounterAudienceSegmentGroup++; |
| 859 if (buildCounterAudienceSegmentGroup < 3) { | 859 if (buildCounterAudienceSegmentGroup < 3) { |
| 860 checkUnnamed1311(o.audienceSegments); | 860 checkUnnamed1323(o.audienceSegments); |
| 861 unittest.expect(o.id, unittest.equals('foo')); | 861 unittest.expect(o.id, unittest.equals('foo')); |
| 862 unittest.expect(o.name, unittest.equals('foo')); | 862 unittest.expect(o.name, unittest.equals('foo')); |
| 863 } | 863 } |
| 864 buildCounterAudienceSegmentGroup--; | 864 buildCounterAudienceSegmentGroup--; |
| 865 } | 865 } |
| 866 | 866 |
| 867 core.int buildCounterBrowser = 0; | 867 core.int buildCounterBrowser = 0; |
| 868 buildBrowser() { | 868 buildBrowser() { |
| 869 var o = new api.Browser(); | 869 var o = new api.Browser(); |
| 870 buildCounterBrowser++; | 870 buildCounterBrowser++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 886 unittest.expect(o.browserVersionId, unittest.equals('foo')); | 886 unittest.expect(o.browserVersionId, unittest.equals('foo')); |
| 887 unittest.expect(o.dartId, unittest.equals('foo')); | 887 unittest.expect(o.dartId, unittest.equals('foo')); |
| 888 unittest.expect(o.kind, unittest.equals('foo')); | 888 unittest.expect(o.kind, unittest.equals('foo')); |
| 889 unittest.expect(o.majorVersion, unittest.equals('foo')); | 889 unittest.expect(o.majorVersion, unittest.equals('foo')); |
| 890 unittest.expect(o.minorVersion, unittest.equals('foo')); | 890 unittest.expect(o.minorVersion, unittest.equals('foo')); |
| 891 unittest.expect(o.name, unittest.equals('foo')); | 891 unittest.expect(o.name, unittest.equals('foo')); |
| 892 } | 892 } |
| 893 buildCounterBrowser--; | 893 buildCounterBrowser--; |
| 894 } | 894 } |
| 895 | 895 |
| 896 buildUnnamed1312() { | 896 buildUnnamed1324() { |
| 897 var o = new core.List<api.Browser>(); | 897 var o = new core.List<api.Browser>(); |
| 898 o.add(buildBrowser()); | 898 o.add(buildBrowser()); |
| 899 o.add(buildBrowser()); | 899 o.add(buildBrowser()); |
| 900 return o; | 900 return o; |
| 901 } | 901 } |
| 902 | 902 |
| 903 checkUnnamed1312(core.List<api.Browser> o) { | 903 checkUnnamed1324(core.List<api.Browser> o) { |
| 904 unittest.expect(o, unittest.hasLength(2)); | 904 unittest.expect(o, unittest.hasLength(2)); |
| 905 checkBrowser(o[0]); | 905 checkBrowser(o[0]); |
| 906 checkBrowser(o[1]); | 906 checkBrowser(o[1]); |
| 907 } | 907 } |
| 908 | 908 |
| 909 core.int buildCounterBrowsersListResponse = 0; | 909 core.int buildCounterBrowsersListResponse = 0; |
| 910 buildBrowsersListResponse() { | 910 buildBrowsersListResponse() { |
| 911 var o = new api.BrowsersListResponse(); | 911 var o = new api.BrowsersListResponse(); |
| 912 buildCounterBrowsersListResponse++; | 912 buildCounterBrowsersListResponse++; |
| 913 if (buildCounterBrowsersListResponse < 3) { | 913 if (buildCounterBrowsersListResponse < 3) { |
| 914 o.browsers = buildUnnamed1312(); | 914 o.browsers = buildUnnamed1324(); |
| 915 o.kind = "foo"; | 915 o.kind = "foo"; |
| 916 } | 916 } |
| 917 buildCounterBrowsersListResponse--; | 917 buildCounterBrowsersListResponse--; |
| 918 return o; | 918 return o; |
| 919 } | 919 } |
| 920 | 920 |
| 921 checkBrowsersListResponse(api.BrowsersListResponse o) { | 921 checkBrowsersListResponse(api.BrowsersListResponse o) { |
| 922 buildCounterBrowsersListResponse++; | 922 buildCounterBrowsersListResponse++; |
| 923 if (buildCounterBrowsersListResponse < 3) { | 923 if (buildCounterBrowsersListResponse < 3) { |
| 924 checkUnnamed1312(o.browsers); | 924 checkUnnamed1324(o.browsers); |
| 925 unittest.expect(o.kind, unittest.equals('foo')); | 925 unittest.expect(o.kind, unittest.equals('foo')); |
| 926 } | 926 } |
| 927 buildCounterBrowsersListResponse--; | 927 buildCounterBrowsersListResponse--; |
| 928 } | 928 } |
| 929 | 929 |
| 930 buildUnnamed1313() { | 930 buildUnnamed1325() { |
| 931 var o = new core.List<api.CreativeOptimizationConfiguration>(); | 931 var o = new core.List<api.CreativeOptimizationConfiguration>(); |
| 932 o.add(buildCreativeOptimizationConfiguration()); | 932 o.add(buildCreativeOptimizationConfiguration()); |
| 933 o.add(buildCreativeOptimizationConfiguration()); | 933 o.add(buildCreativeOptimizationConfiguration()); |
| 934 return o; | 934 return o; |
| 935 } | 935 } |
| 936 | 936 |
| 937 checkUnnamed1313(core.List<api.CreativeOptimizationConfiguration> o) { | 937 checkUnnamed1325(core.List<api.CreativeOptimizationConfiguration> o) { |
| 938 unittest.expect(o, unittest.hasLength(2)); | 938 unittest.expect(o, unittest.hasLength(2)); |
| 939 checkCreativeOptimizationConfiguration(o[0]); | 939 checkCreativeOptimizationConfiguration(o[0]); |
| 940 checkCreativeOptimizationConfiguration(o[1]); | 940 checkCreativeOptimizationConfiguration(o[1]); |
| 941 } | 941 } |
| 942 | 942 |
| 943 buildUnnamed1314() { | 943 buildUnnamed1326() { |
| 944 var o = new core.List<api.AudienceSegmentGroup>(); | 944 var o = new core.List<api.AudienceSegmentGroup>(); |
| 945 o.add(buildAudienceSegmentGroup()); | 945 o.add(buildAudienceSegmentGroup()); |
| 946 o.add(buildAudienceSegmentGroup()); | 946 o.add(buildAudienceSegmentGroup()); |
| 947 return o; | 947 return o; |
| 948 } | 948 } |
| 949 | 949 |
| 950 checkUnnamed1314(core.List<api.AudienceSegmentGroup> o) { | 950 checkUnnamed1326(core.List<api.AudienceSegmentGroup> o) { |
| 951 unittest.expect(o, unittest.hasLength(2)); | 951 unittest.expect(o, unittest.hasLength(2)); |
| 952 checkAudienceSegmentGroup(o[0]); | 952 checkAudienceSegmentGroup(o[0]); |
| 953 checkAudienceSegmentGroup(o[1]); | 953 checkAudienceSegmentGroup(o[1]); |
| 954 } | 954 } |
| 955 | 955 |
| 956 buildUnnamed1315() { | 956 buildUnnamed1327() { |
| 957 var o = new core.List<core.String>(); | 957 var o = new core.List<core.String>(); |
| 958 o.add("foo"); | 958 o.add("foo"); |
| 959 o.add("foo"); | 959 o.add("foo"); |
| 960 return o; | 960 return o; |
| 961 } | 961 } |
| 962 | 962 |
| 963 checkUnnamed1315(core.List<core.String> o) { | 963 checkUnnamed1327(core.List<core.String> o) { |
| 964 unittest.expect(o, unittest.hasLength(2)); | 964 unittest.expect(o, unittest.hasLength(2)); |
| 965 unittest.expect(o[0], unittest.equals('foo')); | 965 unittest.expect(o[0], unittest.equals('foo')); |
| 966 unittest.expect(o[1], unittest.equals('foo')); | 966 unittest.expect(o[1], unittest.equals('foo')); |
| 967 } | 967 } |
| 968 | 968 |
| 969 buildUnnamed1316() { | 969 buildUnnamed1328() { |
| 970 var o = new core.List<api.EventTagOverride>(); | 970 var o = new core.List<api.EventTagOverride>(); |
| 971 o.add(buildEventTagOverride()); | 971 o.add(buildEventTagOverride()); |
| 972 o.add(buildEventTagOverride()); | 972 o.add(buildEventTagOverride()); |
| 973 return o; | 973 return o; |
| 974 } | 974 } |
| 975 | 975 |
| 976 checkUnnamed1316(core.List<api.EventTagOverride> o) { | 976 checkUnnamed1328(core.List<api.EventTagOverride> o) { |
| 977 unittest.expect(o, unittest.hasLength(2)); | 977 unittest.expect(o, unittest.hasLength(2)); |
| 978 checkEventTagOverride(o[0]); | 978 checkEventTagOverride(o[0]); |
| 979 checkEventTagOverride(o[1]); | 979 checkEventTagOverride(o[1]); |
| 980 } | 980 } |
| 981 | 981 |
| 982 buildUnnamed1317() { | 982 buildUnnamed1329() { |
| 983 var o = new core.List<core.String>(); | 983 var o = new core.List<core.String>(); |
| 984 o.add("foo"); | 984 o.add("foo"); |
| 985 o.add("foo"); | 985 o.add("foo"); |
| 986 return o; | 986 return o; |
| 987 } | 987 } |
| 988 | 988 |
| 989 checkUnnamed1317(core.List<core.String> o) { | 989 checkUnnamed1329(core.List<core.String> o) { |
| 990 unittest.expect(o, unittest.hasLength(2)); | 990 unittest.expect(o, unittest.hasLength(2)); |
| 991 unittest.expect(o[0], unittest.equals('foo')); | 991 unittest.expect(o[0], unittest.equals('foo')); |
| 992 unittest.expect(o[1], unittest.equals('foo')); | 992 unittest.expect(o[1], unittest.equals('foo')); |
| 993 } | 993 } |
| 994 | 994 |
| 995 core.int buildCounterCampaign = 0; | 995 core.int buildCounterCampaign = 0; |
| 996 buildCampaign() { | 996 buildCampaign() { |
| 997 var o = new api.Campaign(); | 997 var o = new api.Campaign(); |
| 998 buildCounterCampaign++; | 998 buildCounterCampaign++; |
| 999 if (buildCounterCampaign < 3) { | 999 if (buildCounterCampaign < 3) { |
| 1000 o.accountId = "foo"; | 1000 o.accountId = "foo"; |
| 1001 o.additionalCreativeOptimizationConfigurations = buildUnnamed1313(); | 1001 o.additionalCreativeOptimizationConfigurations = buildUnnamed1325(); |
| 1002 o.advertiserGroupId = "foo"; | 1002 o.advertiserGroupId = "foo"; |
| 1003 o.advertiserId = "foo"; | 1003 o.advertiserId = "foo"; |
| 1004 o.advertiserIdDimensionValue = buildDimensionValue(); | 1004 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 1005 o.archived = true; | 1005 o.archived = true; |
| 1006 o.audienceSegmentGroups = buildUnnamed1314(); | 1006 o.audienceSegmentGroups = buildUnnamed1326(); |
| 1007 o.billingInvoiceCode = "foo"; | 1007 o.billingInvoiceCode = "foo"; |
| 1008 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); | 1008 o.clickThroughUrlSuffixProperties = buildClickThroughUrlSuffixProperties(); |
| 1009 o.comment = "foo"; | 1009 o.comment = "foo"; |
| 1010 o.comscoreVceEnabled = true; | 1010 o.comscoreVceEnabled = true; |
| 1011 o.createInfo = buildLastModifiedInfo(); | 1011 o.createInfo = buildLastModifiedInfo(); |
| 1012 o.creativeGroupIds = buildUnnamed1315(); | 1012 o.creativeGroupIds = buildUnnamed1327(); |
| 1013 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); | 1013 o.creativeOptimizationConfiguration = buildCreativeOptimizationConfiguration
(); |
| 1014 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); | 1014 o.defaultClickThroughEventTagProperties = buildDefaultClickThroughEventTagPr
operties(); |
| 1015 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 1015 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 1016 o.eventTagOverrides = buildUnnamed1316(); | 1016 o.eventTagOverrides = buildUnnamed1328(); |
| 1017 o.externalId = "foo"; | 1017 o.externalId = "foo"; |
| 1018 o.id = "foo"; | 1018 o.id = "foo"; |
| 1019 o.idDimensionValue = buildDimensionValue(); | 1019 o.idDimensionValue = buildDimensionValue(); |
| 1020 o.kind = "foo"; | 1020 o.kind = "foo"; |
| 1021 o.lastModifiedInfo = buildLastModifiedInfo(); | 1021 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 1022 o.lookbackConfiguration = buildLookbackConfiguration(); | 1022 o.lookbackConfiguration = buildLookbackConfiguration(); |
| 1023 o.name = "foo"; | 1023 o.name = "foo"; |
| 1024 o.nielsenOcrEnabled = true; | 1024 o.nielsenOcrEnabled = true; |
| 1025 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 1025 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 1026 o.subaccountId = "foo"; | 1026 o.subaccountId = "foo"; |
| 1027 o.traffickerEmails = buildUnnamed1317(); | 1027 o.traffickerEmails = buildUnnamed1329(); |
| 1028 } | 1028 } |
| 1029 buildCounterCampaign--; | 1029 buildCounterCampaign--; |
| 1030 return o; | 1030 return o; |
| 1031 } | 1031 } |
| 1032 | 1032 |
| 1033 checkCampaign(api.Campaign o) { | 1033 checkCampaign(api.Campaign o) { |
| 1034 buildCounterCampaign++; | 1034 buildCounterCampaign++; |
| 1035 if (buildCounterCampaign < 3) { | 1035 if (buildCounterCampaign < 3) { |
| 1036 unittest.expect(o.accountId, unittest.equals('foo')); | 1036 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1037 checkUnnamed1313(o.additionalCreativeOptimizationConfigurations); | 1037 checkUnnamed1325(o.additionalCreativeOptimizationConfigurations); |
| 1038 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); | 1038 unittest.expect(o.advertiserGroupId, unittest.equals('foo')); |
| 1039 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1039 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 1040 checkDimensionValue(o.advertiserIdDimensionValue); | 1040 checkDimensionValue(o.advertiserIdDimensionValue); |
| 1041 unittest.expect(o.archived, unittest.isTrue); | 1041 unittest.expect(o.archived, unittest.isTrue); |
| 1042 checkUnnamed1314(o.audienceSegmentGroups); | 1042 checkUnnamed1326(o.audienceSegmentGroups); |
| 1043 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); | 1043 unittest.expect(o.billingInvoiceCode, unittest.equals('foo')); |
| 1044 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); | 1044 checkClickThroughUrlSuffixProperties(o.clickThroughUrlSuffixProperties); |
| 1045 unittest.expect(o.comment, unittest.equals('foo')); | 1045 unittest.expect(o.comment, unittest.equals('foo')); |
| 1046 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); | 1046 unittest.expect(o.comscoreVceEnabled, unittest.isTrue); |
| 1047 checkLastModifiedInfo(o.createInfo); | 1047 checkLastModifiedInfo(o.createInfo); |
| 1048 checkUnnamed1315(o.creativeGroupIds); | 1048 checkUnnamed1327(o.creativeGroupIds); |
| 1049 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); | 1049 checkCreativeOptimizationConfiguration(o.creativeOptimizationConfiguration); |
| 1050 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); | 1050 checkDefaultClickThroughEventTagProperties(o.defaultClickThroughEventTagProp
erties); |
| 1051 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 1051 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 1052 checkUnnamed1316(o.eventTagOverrides); | 1052 checkUnnamed1328(o.eventTagOverrides); |
| 1053 unittest.expect(o.externalId, unittest.equals('foo')); | 1053 unittest.expect(o.externalId, unittest.equals('foo')); |
| 1054 unittest.expect(o.id, unittest.equals('foo')); | 1054 unittest.expect(o.id, unittest.equals('foo')); |
| 1055 checkDimensionValue(o.idDimensionValue); | 1055 checkDimensionValue(o.idDimensionValue); |
| 1056 unittest.expect(o.kind, unittest.equals('foo')); | 1056 unittest.expect(o.kind, unittest.equals('foo')); |
| 1057 checkLastModifiedInfo(o.lastModifiedInfo); | 1057 checkLastModifiedInfo(o.lastModifiedInfo); |
| 1058 checkLookbackConfiguration(o.lookbackConfiguration); | 1058 checkLookbackConfiguration(o.lookbackConfiguration); |
| 1059 unittest.expect(o.name, unittest.equals('foo')); | 1059 unittest.expect(o.name, unittest.equals('foo')); |
| 1060 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); | 1060 unittest.expect(o.nielsenOcrEnabled, unittest.isTrue); |
| 1061 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 1061 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 1062 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1062 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1063 checkUnnamed1317(o.traffickerEmails); | 1063 checkUnnamed1329(o.traffickerEmails); |
| 1064 } | 1064 } |
| 1065 buildCounterCampaign--; | 1065 buildCounterCampaign--; |
| 1066 } | 1066 } |
| 1067 | 1067 |
| 1068 core.int buildCounterCampaignCreativeAssociation = 0; | 1068 core.int buildCounterCampaignCreativeAssociation = 0; |
| 1069 buildCampaignCreativeAssociation() { | 1069 buildCampaignCreativeAssociation() { |
| 1070 var o = new api.CampaignCreativeAssociation(); | 1070 var o = new api.CampaignCreativeAssociation(); |
| 1071 buildCounterCampaignCreativeAssociation++; | 1071 buildCounterCampaignCreativeAssociation++; |
| 1072 if (buildCounterCampaignCreativeAssociation < 3) { | 1072 if (buildCounterCampaignCreativeAssociation < 3) { |
| 1073 o.creativeId = "foo"; | 1073 o.creativeId = "foo"; |
| 1074 o.kind = "foo"; | 1074 o.kind = "foo"; |
| 1075 } | 1075 } |
| 1076 buildCounterCampaignCreativeAssociation--; | 1076 buildCounterCampaignCreativeAssociation--; |
| 1077 return o; | 1077 return o; |
| 1078 } | 1078 } |
| 1079 | 1079 |
| 1080 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { | 1080 checkCampaignCreativeAssociation(api.CampaignCreativeAssociation o) { |
| 1081 buildCounterCampaignCreativeAssociation++; | 1081 buildCounterCampaignCreativeAssociation++; |
| 1082 if (buildCounterCampaignCreativeAssociation < 3) { | 1082 if (buildCounterCampaignCreativeAssociation < 3) { |
| 1083 unittest.expect(o.creativeId, unittest.equals('foo')); | 1083 unittest.expect(o.creativeId, unittest.equals('foo')); |
| 1084 unittest.expect(o.kind, unittest.equals('foo')); | 1084 unittest.expect(o.kind, unittest.equals('foo')); |
| 1085 } | 1085 } |
| 1086 buildCounterCampaignCreativeAssociation--; | 1086 buildCounterCampaignCreativeAssociation--; |
| 1087 } | 1087 } |
| 1088 | 1088 |
| 1089 buildUnnamed1318() { | 1089 buildUnnamed1330() { |
| 1090 var o = new core.List<api.CampaignCreativeAssociation>(); | 1090 var o = new core.List<api.CampaignCreativeAssociation>(); |
| 1091 o.add(buildCampaignCreativeAssociation()); | 1091 o.add(buildCampaignCreativeAssociation()); |
| 1092 o.add(buildCampaignCreativeAssociation()); | 1092 o.add(buildCampaignCreativeAssociation()); |
| 1093 return o; | 1093 return o; |
| 1094 } | 1094 } |
| 1095 | 1095 |
| 1096 checkUnnamed1318(core.List<api.CampaignCreativeAssociation> o) { | 1096 checkUnnamed1330(core.List<api.CampaignCreativeAssociation> o) { |
| 1097 unittest.expect(o, unittest.hasLength(2)); | 1097 unittest.expect(o, unittest.hasLength(2)); |
| 1098 checkCampaignCreativeAssociation(o[0]); | 1098 checkCampaignCreativeAssociation(o[0]); |
| 1099 checkCampaignCreativeAssociation(o[1]); | 1099 checkCampaignCreativeAssociation(o[1]); |
| 1100 } | 1100 } |
| 1101 | 1101 |
| 1102 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; | 1102 core.int buildCounterCampaignCreativeAssociationsListResponse = 0; |
| 1103 buildCampaignCreativeAssociationsListResponse() { | 1103 buildCampaignCreativeAssociationsListResponse() { |
| 1104 var o = new api.CampaignCreativeAssociationsListResponse(); | 1104 var o = new api.CampaignCreativeAssociationsListResponse(); |
| 1105 buildCounterCampaignCreativeAssociationsListResponse++; | 1105 buildCounterCampaignCreativeAssociationsListResponse++; |
| 1106 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1106 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
| 1107 o.campaignCreativeAssociations = buildUnnamed1318(); | 1107 o.campaignCreativeAssociations = buildUnnamed1330(); |
| 1108 o.kind = "foo"; | 1108 o.kind = "foo"; |
| 1109 o.nextPageToken = "foo"; | 1109 o.nextPageToken = "foo"; |
| 1110 } | 1110 } |
| 1111 buildCounterCampaignCreativeAssociationsListResponse--; | 1111 buildCounterCampaignCreativeAssociationsListResponse--; |
| 1112 return o; | 1112 return o; |
| 1113 } | 1113 } |
| 1114 | 1114 |
| 1115 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { | 1115 checkCampaignCreativeAssociationsListResponse(api.CampaignCreativeAssociationsLi
stResponse o) { |
| 1116 buildCounterCampaignCreativeAssociationsListResponse++; | 1116 buildCounterCampaignCreativeAssociationsListResponse++; |
| 1117 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { | 1117 if (buildCounterCampaignCreativeAssociationsListResponse < 3) { |
| 1118 checkUnnamed1318(o.campaignCreativeAssociations); | 1118 checkUnnamed1330(o.campaignCreativeAssociations); |
| 1119 unittest.expect(o.kind, unittest.equals('foo')); | 1119 unittest.expect(o.kind, unittest.equals('foo')); |
| 1120 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1120 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1121 } | 1121 } |
| 1122 buildCounterCampaignCreativeAssociationsListResponse--; | 1122 buildCounterCampaignCreativeAssociationsListResponse--; |
| 1123 } | 1123 } |
| 1124 | 1124 |
| 1125 buildUnnamed1319() { | 1125 buildUnnamed1331() { |
| 1126 var o = new core.List<api.Campaign>(); | 1126 var o = new core.List<api.Campaign>(); |
| 1127 o.add(buildCampaign()); | 1127 o.add(buildCampaign()); |
| 1128 o.add(buildCampaign()); | 1128 o.add(buildCampaign()); |
| 1129 return o; | 1129 return o; |
| 1130 } | 1130 } |
| 1131 | 1131 |
| 1132 checkUnnamed1319(core.List<api.Campaign> o) { | 1132 checkUnnamed1331(core.List<api.Campaign> o) { |
| 1133 unittest.expect(o, unittest.hasLength(2)); | 1133 unittest.expect(o, unittest.hasLength(2)); |
| 1134 checkCampaign(o[0]); | 1134 checkCampaign(o[0]); |
| 1135 checkCampaign(o[1]); | 1135 checkCampaign(o[1]); |
| 1136 } | 1136 } |
| 1137 | 1137 |
| 1138 core.int buildCounterCampaignsListResponse = 0; | 1138 core.int buildCounterCampaignsListResponse = 0; |
| 1139 buildCampaignsListResponse() { | 1139 buildCampaignsListResponse() { |
| 1140 var o = new api.CampaignsListResponse(); | 1140 var o = new api.CampaignsListResponse(); |
| 1141 buildCounterCampaignsListResponse++; | 1141 buildCounterCampaignsListResponse++; |
| 1142 if (buildCounterCampaignsListResponse < 3) { | 1142 if (buildCounterCampaignsListResponse < 3) { |
| 1143 o.campaigns = buildUnnamed1319(); | 1143 o.campaigns = buildUnnamed1331(); |
| 1144 o.kind = "foo"; | 1144 o.kind = "foo"; |
| 1145 o.nextPageToken = "foo"; | 1145 o.nextPageToken = "foo"; |
| 1146 } | 1146 } |
| 1147 buildCounterCampaignsListResponse--; | 1147 buildCounterCampaignsListResponse--; |
| 1148 return o; | 1148 return o; |
| 1149 } | 1149 } |
| 1150 | 1150 |
| 1151 checkCampaignsListResponse(api.CampaignsListResponse o) { | 1151 checkCampaignsListResponse(api.CampaignsListResponse o) { |
| 1152 buildCounterCampaignsListResponse++; | 1152 buildCounterCampaignsListResponse++; |
| 1153 if (buildCounterCampaignsListResponse < 3) { | 1153 if (buildCounterCampaignsListResponse < 3) { |
| 1154 checkUnnamed1319(o.campaigns); | 1154 checkUnnamed1331(o.campaigns); |
| 1155 unittest.expect(o.kind, unittest.equals('foo')); | 1155 unittest.expect(o.kind, unittest.equals('foo')); |
| 1156 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1156 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1157 } | 1157 } |
| 1158 buildCounterCampaignsListResponse--; | 1158 buildCounterCampaignsListResponse--; |
| 1159 } | 1159 } |
| 1160 | 1160 |
| 1161 core.int buildCounterChangeLog = 0; | 1161 core.int buildCounterChangeLog = 0; |
| 1162 buildChangeLog() { | 1162 buildChangeLog() { |
| 1163 var o = new api.ChangeLog(); | 1163 var o = new api.ChangeLog(); |
| 1164 buildCounterChangeLog++; | 1164 buildCounterChangeLog++; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1196 unittest.expect(o.objectType, unittest.equals('foo')); | 1196 unittest.expect(o.objectType, unittest.equals('foo')); |
| 1197 unittest.expect(o.oldValue, unittest.equals('foo')); | 1197 unittest.expect(o.oldValue, unittest.equals('foo')); |
| 1198 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1198 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1199 unittest.expect(o.transactionId, unittest.equals('foo')); | 1199 unittest.expect(o.transactionId, unittest.equals('foo')); |
| 1200 unittest.expect(o.userProfileId, unittest.equals('foo')); | 1200 unittest.expect(o.userProfileId, unittest.equals('foo')); |
| 1201 unittest.expect(o.userProfileName, unittest.equals('foo')); | 1201 unittest.expect(o.userProfileName, unittest.equals('foo')); |
| 1202 } | 1202 } |
| 1203 buildCounterChangeLog--; | 1203 buildCounterChangeLog--; |
| 1204 } | 1204 } |
| 1205 | 1205 |
| 1206 buildUnnamed1320() { | 1206 buildUnnamed1332() { |
| 1207 var o = new core.List<api.ChangeLog>(); | 1207 var o = new core.List<api.ChangeLog>(); |
| 1208 o.add(buildChangeLog()); | 1208 o.add(buildChangeLog()); |
| 1209 o.add(buildChangeLog()); | 1209 o.add(buildChangeLog()); |
| 1210 return o; | 1210 return o; |
| 1211 } | 1211 } |
| 1212 | 1212 |
| 1213 checkUnnamed1320(core.List<api.ChangeLog> o) { | 1213 checkUnnamed1332(core.List<api.ChangeLog> o) { |
| 1214 unittest.expect(o, unittest.hasLength(2)); | 1214 unittest.expect(o, unittest.hasLength(2)); |
| 1215 checkChangeLog(o[0]); | 1215 checkChangeLog(o[0]); |
| 1216 checkChangeLog(o[1]); | 1216 checkChangeLog(o[1]); |
| 1217 } | 1217 } |
| 1218 | 1218 |
| 1219 core.int buildCounterChangeLogsListResponse = 0; | 1219 core.int buildCounterChangeLogsListResponse = 0; |
| 1220 buildChangeLogsListResponse() { | 1220 buildChangeLogsListResponse() { |
| 1221 var o = new api.ChangeLogsListResponse(); | 1221 var o = new api.ChangeLogsListResponse(); |
| 1222 buildCounterChangeLogsListResponse++; | 1222 buildCounterChangeLogsListResponse++; |
| 1223 if (buildCounterChangeLogsListResponse < 3) { | 1223 if (buildCounterChangeLogsListResponse < 3) { |
| 1224 o.changeLogs = buildUnnamed1320(); | 1224 o.changeLogs = buildUnnamed1332(); |
| 1225 o.kind = "foo"; | 1225 o.kind = "foo"; |
| 1226 o.nextPageToken = "foo"; | 1226 o.nextPageToken = "foo"; |
| 1227 } | 1227 } |
| 1228 buildCounterChangeLogsListResponse--; | 1228 buildCounterChangeLogsListResponse--; |
| 1229 return o; | 1229 return o; |
| 1230 } | 1230 } |
| 1231 | 1231 |
| 1232 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { | 1232 checkChangeLogsListResponse(api.ChangeLogsListResponse o) { |
| 1233 buildCounterChangeLogsListResponse++; | 1233 buildCounterChangeLogsListResponse++; |
| 1234 if (buildCounterChangeLogsListResponse < 3) { | 1234 if (buildCounterChangeLogsListResponse < 3) { |
| 1235 checkUnnamed1320(o.changeLogs); | 1235 checkUnnamed1332(o.changeLogs); |
| 1236 unittest.expect(o.kind, unittest.equals('foo')); | 1236 unittest.expect(o.kind, unittest.equals('foo')); |
| 1237 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1237 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1238 } | 1238 } |
| 1239 buildCounterChangeLogsListResponse--; | 1239 buildCounterChangeLogsListResponse--; |
| 1240 } | 1240 } |
| 1241 | 1241 |
| 1242 buildUnnamed1321() { | 1242 buildUnnamed1333() { |
| 1243 var o = new core.List<api.City>(); | 1243 var o = new core.List<api.City>(); |
| 1244 o.add(buildCity()); | 1244 o.add(buildCity()); |
| 1245 o.add(buildCity()); | 1245 o.add(buildCity()); |
| 1246 return o; | 1246 return o; |
| 1247 } | 1247 } |
| 1248 | 1248 |
| 1249 checkUnnamed1321(core.List<api.City> o) { | 1249 checkUnnamed1333(core.List<api.City> o) { |
| 1250 unittest.expect(o, unittest.hasLength(2)); | 1250 unittest.expect(o, unittest.hasLength(2)); |
| 1251 checkCity(o[0]); | 1251 checkCity(o[0]); |
| 1252 checkCity(o[1]); | 1252 checkCity(o[1]); |
| 1253 } | 1253 } |
| 1254 | 1254 |
| 1255 core.int buildCounterCitiesListResponse = 0; | 1255 core.int buildCounterCitiesListResponse = 0; |
| 1256 buildCitiesListResponse() { | 1256 buildCitiesListResponse() { |
| 1257 var o = new api.CitiesListResponse(); | 1257 var o = new api.CitiesListResponse(); |
| 1258 buildCounterCitiesListResponse++; | 1258 buildCounterCitiesListResponse++; |
| 1259 if (buildCounterCitiesListResponse < 3) { | 1259 if (buildCounterCitiesListResponse < 3) { |
| 1260 o.cities = buildUnnamed1321(); | 1260 o.cities = buildUnnamed1333(); |
| 1261 o.kind = "foo"; | 1261 o.kind = "foo"; |
| 1262 } | 1262 } |
| 1263 buildCounterCitiesListResponse--; | 1263 buildCounterCitiesListResponse--; |
| 1264 return o; | 1264 return o; |
| 1265 } | 1265 } |
| 1266 | 1266 |
| 1267 checkCitiesListResponse(api.CitiesListResponse o) { | 1267 checkCitiesListResponse(api.CitiesListResponse o) { |
| 1268 buildCounterCitiesListResponse++; | 1268 buildCounterCitiesListResponse++; |
| 1269 if (buildCounterCitiesListResponse < 3) { | 1269 if (buildCounterCitiesListResponse < 3) { |
| 1270 checkUnnamed1321(o.cities); | 1270 checkUnnamed1333(o.cities); |
| 1271 unittest.expect(o.kind, unittest.equals('foo')); | 1271 unittest.expect(o.kind, unittest.equals('foo')); |
| 1272 } | 1272 } |
| 1273 buildCounterCitiesListResponse--; | 1273 buildCounterCitiesListResponse--; |
| 1274 } | 1274 } |
| 1275 | 1275 |
| 1276 core.int buildCounterCity = 0; | 1276 core.int buildCounterCity = 0; |
| 1277 buildCity() { | 1277 buildCity() { |
| 1278 var o = new api.City(); | 1278 var o = new api.City(); |
| 1279 buildCounterCity++; | 1279 buildCounterCity++; |
| 1280 if (buildCounterCity < 3) { | 1280 if (buildCounterCity < 3) { |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1443 checkConnectionType(api.ConnectionType o) { | 1443 checkConnectionType(api.ConnectionType o) { |
| 1444 buildCounterConnectionType++; | 1444 buildCounterConnectionType++; |
| 1445 if (buildCounterConnectionType < 3) { | 1445 if (buildCounterConnectionType < 3) { |
| 1446 unittest.expect(o.id, unittest.equals('foo')); | 1446 unittest.expect(o.id, unittest.equals('foo')); |
| 1447 unittest.expect(o.kind, unittest.equals('foo')); | 1447 unittest.expect(o.kind, unittest.equals('foo')); |
| 1448 unittest.expect(o.name, unittest.equals('foo')); | 1448 unittest.expect(o.name, unittest.equals('foo')); |
| 1449 } | 1449 } |
| 1450 buildCounterConnectionType--; | 1450 buildCounterConnectionType--; |
| 1451 } | 1451 } |
| 1452 | 1452 |
| 1453 buildUnnamed1322() { | 1453 buildUnnamed1334() { |
| 1454 var o = new core.List<api.ConnectionType>(); | 1454 var o = new core.List<api.ConnectionType>(); |
| 1455 o.add(buildConnectionType()); | 1455 o.add(buildConnectionType()); |
| 1456 o.add(buildConnectionType()); | 1456 o.add(buildConnectionType()); |
| 1457 return o; | 1457 return o; |
| 1458 } | 1458 } |
| 1459 | 1459 |
| 1460 checkUnnamed1322(core.List<api.ConnectionType> o) { | 1460 checkUnnamed1334(core.List<api.ConnectionType> o) { |
| 1461 unittest.expect(o, unittest.hasLength(2)); | 1461 unittest.expect(o, unittest.hasLength(2)); |
| 1462 checkConnectionType(o[0]); | 1462 checkConnectionType(o[0]); |
| 1463 checkConnectionType(o[1]); | 1463 checkConnectionType(o[1]); |
| 1464 } | 1464 } |
| 1465 | 1465 |
| 1466 core.int buildCounterConnectionTypesListResponse = 0; | 1466 core.int buildCounterConnectionTypesListResponse = 0; |
| 1467 buildConnectionTypesListResponse() { | 1467 buildConnectionTypesListResponse() { |
| 1468 var o = new api.ConnectionTypesListResponse(); | 1468 var o = new api.ConnectionTypesListResponse(); |
| 1469 buildCounterConnectionTypesListResponse++; | 1469 buildCounterConnectionTypesListResponse++; |
| 1470 if (buildCounterConnectionTypesListResponse < 3) { | 1470 if (buildCounterConnectionTypesListResponse < 3) { |
| 1471 o.connectionTypes = buildUnnamed1322(); | 1471 o.connectionTypes = buildUnnamed1334(); |
| 1472 o.kind = "foo"; | 1472 o.kind = "foo"; |
| 1473 } | 1473 } |
| 1474 buildCounterConnectionTypesListResponse--; | 1474 buildCounterConnectionTypesListResponse--; |
| 1475 return o; | 1475 return o; |
| 1476 } | 1476 } |
| 1477 | 1477 |
| 1478 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { | 1478 checkConnectionTypesListResponse(api.ConnectionTypesListResponse o) { |
| 1479 buildCounterConnectionTypesListResponse++; | 1479 buildCounterConnectionTypesListResponse++; |
| 1480 if (buildCounterConnectionTypesListResponse < 3) { | 1480 if (buildCounterConnectionTypesListResponse < 3) { |
| 1481 checkUnnamed1322(o.connectionTypes); | 1481 checkUnnamed1334(o.connectionTypes); |
| 1482 unittest.expect(o.kind, unittest.equals('foo')); | 1482 unittest.expect(o.kind, unittest.equals('foo')); |
| 1483 } | 1483 } |
| 1484 buildCounterConnectionTypesListResponse--; | 1484 buildCounterConnectionTypesListResponse--; |
| 1485 } | 1485 } |
| 1486 | 1486 |
| 1487 buildUnnamed1323() { | 1487 buildUnnamed1335() { |
| 1488 var o = new core.List<api.ContentCategory>(); | 1488 var o = new core.List<api.ContentCategory>(); |
| 1489 o.add(buildContentCategory()); | 1489 o.add(buildContentCategory()); |
| 1490 o.add(buildContentCategory()); | 1490 o.add(buildContentCategory()); |
| 1491 return o; | 1491 return o; |
| 1492 } | 1492 } |
| 1493 | 1493 |
| 1494 checkUnnamed1323(core.List<api.ContentCategory> o) { | 1494 checkUnnamed1335(core.List<api.ContentCategory> o) { |
| 1495 unittest.expect(o, unittest.hasLength(2)); | 1495 unittest.expect(o, unittest.hasLength(2)); |
| 1496 checkContentCategory(o[0]); | 1496 checkContentCategory(o[0]); |
| 1497 checkContentCategory(o[1]); | 1497 checkContentCategory(o[1]); |
| 1498 } | 1498 } |
| 1499 | 1499 |
| 1500 core.int buildCounterContentCategoriesListResponse = 0; | 1500 core.int buildCounterContentCategoriesListResponse = 0; |
| 1501 buildContentCategoriesListResponse() { | 1501 buildContentCategoriesListResponse() { |
| 1502 var o = new api.ContentCategoriesListResponse(); | 1502 var o = new api.ContentCategoriesListResponse(); |
| 1503 buildCounterContentCategoriesListResponse++; | 1503 buildCounterContentCategoriesListResponse++; |
| 1504 if (buildCounterContentCategoriesListResponse < 3) { | 1504 if (buildCounterContentCategoriesListResponse < 3) { |
| 1505 o.contentCategories = buildUnnamed1323(); | 1505 o.contentCategories = buildUnnamed1335(); |
| 1506 o.kind = "foo"; | 1506 o.kind = "foo"; |
| 1507 o.nextPageToken = "foo"; | 1507 o.nextPageToken = "foo"; |
| 1508 } | 1508 } |
| 1509 buildCounterContentCategoriesListResponse--; | 1509 buildCounterContentCategoriesListResponse--; |
| 1510 return o; | 1510 return o; |
| 1511 } | 1511 } |
| 1512 | 1512 |
| 1513 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { | 1513 checkContentCategoriesListResponse(api.ContentCategoriesListResponse o) { |
| 1514 buildCounterContentCategoriesListResponse++; | 1514 buildCounterContentCategoriesListResponse++; |
| 1515 if (buildCounterContentCategoriesListResponse < 3) { | 1515 if (buildCounterContentCategoriesListResponse < 3) { |
| 1516 checkUnnamed1323(o.contentCategories); | 1516 checkUnnamed1335(o.contentCategories); |
| 1517 unittest.expect(o.kind, unittest.equals('foo')); | 1517 unittest.expect(o.kind, unittest.equals('foo')); |
| 1518 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 1518 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 1519 } | 1519 } |
| 1520 buildCounterContentCategoriesListResponse--; | 1520 buildCounterContentCategoriesListResponse--; |
| 1521 } | 1521 } |
| 1522 | 1522 |
| 1523 core.int buildCounterContentCategory = 0; | 1523 core.int buildCounterContentCategory = 0; |
| 1524 buildContentCategory() { | 1524 buildContentCategory() { |
| 1525 var o = new api.ContentCategory(); | 1525 var o = new api.ContentCategory(); |
| 1526 buildCounterContentCategory++; | 1526 buildCounterContentCategory++; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 1538 buildCounterContentCategory++; | 1538 buildCounterContentCategory++; |
| 1539 if (buildCounterContentCategory < 3) { | 1539 if (buildCounterContentCategory < 3) { |
| 1540 unittest.expect(o.accountId, unittest.equals('foo')); | 1540 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1541 unittest.expect(o.id, unittest.equals('foo')); | 1541 unittest.expect(o.id, unittest.equals('foo')); |
| 1542 unittest.expect(o.kind, unittest.equals('foo')); | 1542 unittest.expect(o.kind, unittest.equals('foo')); |
| 1543 unittest.expect(o.name, unittest.equals('foo')); | 1543 unittest.expect(o.name, unittest.equals('foo')); |
| 1544 } | 1544 } |
| 1545 buildCounterContentCategory--; | 1545 buildCounterContentCategory--; |
| 1546 } | 1546 } |
| 1547 | 1547 |
| 1548 buildUnnamed1324() { | 1548 buildUnnamed1336() { |
| 1549 var o = new core.List<api.CustomFloodlightVariable>(); | 1549 var o = new core.List<api.CustomFloodlightVariable>(); |
| 1550 o.add(buildCustomFloodlightVariable()); | 1550 o.add(buildCustomFloodlightVariable()); |
| 1551 o.add(buildCustomFloodlightVariable()); | 1551 o.add(buildCustomFloodlightVariable()); |
| 1552 return o; | 1552 return o; |
| 1553 } | 1553 } |
| 1554 | 1554 |
| 1555 checkUnnamed1324(core.List<api.CustomFloodlightVariable> o) { | 1555 checkUnnamed1336(core.List<api.CustomFloodlightVariable> o) { |
| 1556 unittest.expect(o, unittest.hasLength(2)); | 1556 unittest.expect(o, unittest.hasLength(2)); |
| 1557 checkCustomFloodlightVariable(o[0]); | 1557 checkCustomFloodlightVariable(o[0]); |
| 1558 checkCustomFloodlightVariable(o[1]); | 1558 checkCustomFloodlightVariable(o[1]); |
| 1559 } | 1559 } |
| 1560 | 1560 |
| 1561 core.int buildCounterConversion = 0; | 1561 core.int buildCounterConversion = 0; |
| 1562 buildConversion() { | 1562 buildConversion() { |
| 1563 var o = new api.Conversion(); | 1563 var o = new api.Conversion(); |
| 1564 buildCounterConversion++; | 1564 buildCounterConversion++; |
| 1565 if (buildCounterConversion < 3) { | 1565 if (buildCounterConversion < 3) { |
| 1566 o.childDirectedTreatment = true; | 1566 o.childDirectedTreatment = true; |
| 1567 o.customVariables = buildUnnamed1324(); | 1567 o.customVariables = buildUnnamed1336(); |
| 1568 o.encryptedUserId = "foo"; | 1568 o.encryptedUserId = "foo"; |
| 1569 o.floodlightActivityId = "foo"; | 1569 o.floodlightActivityId = "foo"; |
| 1570 o.floodlightConfigurationId = "foo"; | 1570 o.floodlightConfigurationId = "foo"; |
| 1571 o.kind = "foo"; | 1571 o.kind = "foo"; |
| 1572 o.limitAdTracking = true; | 1572 o.limitAdTracking = true; |
| 1573 o.mobileDeviceId = "foo"; | 1573 o.mobileDeviceId = "foo"; |
| 1574 o.ordinal = "foo"; | 1574 o.ordinal = "foo"; |
| 1575 o.quantity = "foo"; | 1575 o.quantity = "foo"; |
| 1576 o.timestampMicros = "foo"; | 1576 o.timestampMicros = "foo"; |
| 1577 o.value = 42.0; | 1577 o.value = 42.0; |
| 1578 } | 1578 } |
| 1579 buildCounterConversion--; | 1579 buildCounterConversion--; |
| 1580 return o; | 1580 return o; |
| 1581 } | 1581 } |
| 1582 | 1582 |
| 1583 checkConversion(api.Conversion o) { | 1583 checkConversion(api.Conversion o) { |
| 1584 buildCounterConversion++; | 1584 buildCounterConversion++; |
| 1585 if (buildCounterConversion < 3) { | 1585 if (buildCounterConversion < 3) { |
| 1586 unittest.expect(o.childDirectedTreatment, unittest.isTrue); | 1586 unittest.expect(o.childDirectedTreatment, unittest.isTrue); |
| 1587 checkUnnamed1324(o.customVariables); | 1587 checkUnnamed1336(o.customVariables); |
| 1588 unittest.expect(o.encryptedUserId, unittest.equals('foo')); | 1588 unittest.expect(o.encryptedUserId, unittest.equals('foo')); |
| 1589 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 1589 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 1590 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 1590 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
| 1591 unittest.expect(o.kind, unittest.equals('foo')); | 1591 unittest.expect(o.kind, unittest.equals('foo')); |
| 1592 unittest.expect(o.limitAdTracking, unittest.isTrue); | 1592 unittest.expect(o.limitAdTracking, unittest.isTrue); |
| 1593 unittest.expect(o.mobileDeviceId, unittest.equals('foo')); | 1593 unittest.expect(o.mobileDeviceId, unittest.equals('foo')); |
| 1594 unittest.expect(o.ordinal, unittest.equals('foo')); | 1594 unittest.expect(o.ordinal, unittest.equals('foo')); |
| 1595 unittest.expect(o.quantity, unittest.equals('foo')); | 1595 unittest.expect(o.quantity, unittest.equals('foo')); |
| 1596 unittest.expect(o.timestampMicros, unittest.equals('foo')); | 1596 unittest.expect(o.timestampMicros, unittest.equals('foo')); |
| 1597 unittest.expect(o.value, unittest.equals(42.0)); | 1597 unittest.expect(o.value, unittest.equals(42.0)); |
| (...skipping 17 matching lines...) Expand all Loading... |
| 1615 checkConversionError(api.ConversionError o) { | 1615 checkConversionError(api.ConversionError o) { |
| 1616 buildCounterConversionError++; | 1616 buildCounterConversionError++; |
| 1617 if (buildCounterConversionError < 3) { | 1617 if (buildCounterConversionError < 3) { |
| 1618 unittest.expect(o.code, unittest.equals('foo')); | 1618 unittest.expect(o.code, unittest.equals('foo')); |
| 1619 unittest.expect(o.kind, unittest.equals('foo')); | 1619 unittest.expect(o.kind, unittest.equals('foo')); |
| 1620 unittest.expect(o.message, unittest.equals('foo')); | 1620 unittest.expect(o.message, unittest.equals('foo')); |
| 1621 } | 1621 } |
| 1622 buildCounterConversionError--; | 1622 buildCounterConversionError--; |
| 1623 } | 1623 } |
| 1624 | 1624 |
| 1625 buildUnnamed1325() { | 1625 buildUnnamed1337() { |
| 1626 var o = new core.List<api.ConversionError>(); | 1626 var o = new core.List<api.ConversionError>(); |
| 1627 o.add(buildConversionError()); | 1627 o.add(buildConversionError()); |
| 1628 o.add(buildConversionError()); | 1628 o.add(buildConversionError()); |
| 1629 return o; | 1629 return o; |
| 1630 } | 1630 } |
| 1631 | 1631 |
| 1632 checkUnnamed1325(core.List<api.ConversionError> o) { | 1632 checkUnnamed1337(core.List<api.ConversionError> o) { |
| 1633 unittest.expect(o, unittest.hasLength(2)); | 1633 unittest.expect(o, unittest.hasLength(2)); |
| 1634 checkConversionError(o[0]); | 1634 checkConversionError(o[0]); |
| 1635 checkConversionError(o[1]); | 1635 checkConversionError(o[1]); |
| 1636 } | 1636 } |
| 1637 | 1637 |
| 1638 core.int buildCounterConversionStatus = 0; | 1638 core.int buildCounterConversionStatus = 0; |
| 1639 buildConversionStatus() { | 1639 buildConversionStatus() { |
| 1640 var o = new api.ConversionStatus(); | 1640 var o = new api.ConversionStatus(); |
| 1641 buildCounterConversionStatus++; | 1641 buildCounterConversionStatus++; |
| 1642 if (buildCounterConversionStatus < 3) { | 1642 if (buildCounterConversionStatus < 3) { |
| 1643 o.conversion = buildConversion(); | 1643 o.conversion = buildConversion(); |
| 1644 o.errors = buildUnnamed1325(); | 1644 o.errors = buildUnnamed1337(); |
| 1645 o.kind = "foo"; | 1645 o.kind = "foo"; |
| 1646 } | 1646 } |
| 1647 buildCounterConversionStatus--; | 1647 buildCounterConversionStatus--; |
| 1648 return o; | 1648 return o; |
| 1649 } | 1649 } |
| 1650 | 1650 |
| 1651 checkConversionStatus(api.ConversionStatus o) { | 1651 checkConversionStatus(api.ConversionStatus o) { |
| 1652 buildCounterConversionStatus++; | 1652 buildCounterConversionStatus++; |
| 1653 if (buildCounterConversionStatus < 3) { | 1653 if (buildCounterConversionStatus < 3) { |
| 1654 checkConversion(o.conversion); | 1654 checkConversion(o.conversion); |
| 1655 checkUnnamed1325(o.errors); | 1655 checkUnnamed1337(o.errors); |
| 1656 unittest.expect(o.kind, unittest.equals('foo')); | 1656 unittest.expect(o.kind, unittest.equals('foo')); |
| 1657 } | 1657 } |
| 1658 buildCounterConversionStatus--; | 1658 buildCounterConversionStatus--; |
| 1659 } | 1659 } |
| 1660 | 1660 |
| 1661 buildUnnamed1326() { | 1661 buildUnnamed1338() { |
| 1662 var o = new core.List<api.Conversion>(); | 1662 var o = new core.List<api.Conversion>(); |
| 1663 o.add(buildConversion()); | 1663 o.add(buildConversion()); |
| 1664 o.add(buildConversion()); | 1664 o.add(buildConversion()); |
| 1665 return o; | 1665 return o; |
| 1666 } | 1666 } |
| 1667 | 1667 |
| 1668 checkUnnamed1326(core.List<api.Conversion> o) { | 1668 checkUnnamed1338(core.List<api.Conversion> o) { |
| 1669 unittest.expect(o, unittest.hasLength(2)); | 1669 unittest.expect(o, unittest.hasLength(2)); |
| 1670 checkConversion(o[0]); | 1670 checkConversion(o[0]); |
| 1671 checkConversion(o[1]); | 1671 checkConversion(o[1]); |
| 1672 } | 1672 } |
| 1673 | 1673 |
| 1674 core.int buildCounterConversionsBatchInsertRequest = 0; | 1674 core.int buildCounterConversionsBatchInsertRequest = 0; |
| 1675 buildConversionsBatchInsertRequest() { | 1675 buildConversionsBatchInsertRequest() { |
| 1676 var o = new api.ConversionsBatchInsertRequest(); | 1676 var o = new api.ConversionsBatchInsertRequest(); |
| 1677 buildCounterConversionsBatchInsertRequest++; | 1677 buildCounterConversionsBatchInsertRequest++; |
| 1678 if (buildCounterConversionsBatchInsertRequest < 3) { | 1678 if (buildCounterConversionsBatchInsertRequest < 3) { |
| 1679 o.conversions = buildUnnamed1326(); | 1679 o.conversions = buildUnnamed1338(); |
| 1680 o.encryptionInfo = buildEncryptionInfo(); | 1680 o.encryptionInfo = buildEncryptionInfo(); |
| 1681 o.kind = "foo"; | 1681 o.kind = "foo"; |
| 1682 } | 1682 } |
| 1683 buildCounterConversionsBatchInsertRequest--; | 1683 buildCounterConversionsBatchInsertRequest--; |
| 1684 return o; | 1684 return o; |
| 1685 } | 1685 } |
| 1686 | 1686 |
| 1687 checkConversionsBatchInsertRequest(api.ConversionsBatchInsertRequest o) { | 1687 checkConversionsBatchInsertRequest(api.ConversionsBatchInsertRequest o) { |
| 1688 buildCounterConversionsBatchInsertRequest++; | 1688 buildCounterConversionsBatchInsertRequest++; |
| 1689 if (buildCounterConversionsBatchInsertRequest < 3) { | 1689 if (buildCounterConversionsBatchInsertRequest < 3) { |
| 1690 checkUnnamed1326(o.conversions); | 1690 checkUnnamed1338(o.conversions); |
| 1691 checkEncryptionInfo(o.encryptionInfo); | 1691 checkEncryptionInfo(o.encryptionInfo); |
| 1692 unittest.expect(o.kind, unittest.equals('foo')); | 1692 unittest.expect(o.kind, unittest.equals('foo')); |
| 1693 } | 1693 } |
| 1694 buildCounterConversionsBatchInsertRequest--; | 1694 buildCounterConversionsBatchInsertRequest--; |
| 1695 } | 1695 } |
| 1696 | 1696 |
| 1697 buildUnnamed1327() { | 1697 buildUnnamed1339() { |
| 1698 var o = new core.List<api.ConversionStatus>(); | 1698 var o = new core.List<api.ConversionStatus>(); |
| 1699 o.add(buildConversionStatus()); | 1699 o.add(buildConversionStatus()); |
| 1700 o.add(buildConversionStatus()); | 1700 o.add(buildConversionStatus()); |
| 1701 return o; | 1701 return o; |
| 1702 } | 1702 } |
| 1703 | 1703 |
| 1704 checkUnnamed1327(core.List<api.ConversionStatus> o) { | 1704 checkUnnamed1339(core.List<api.ConversionStatus> o) { |
| 1705 unittest.expect(o, unittest.hasLength(2)); | 1705 unittest.expect(o, unittest.hasLength(2)); |
| 1706 checkConversionStatus(o[0]); | 1706 checkConversionStatus(o[0]); |
| 1707 checkConversionStatus(o[1]); | 1707 checkConversionStatus(o[1]); |
| 1708 } | 1708 } |
| 1709 | 1709 |
| 1710 core.int buildCounterConversionsBatchInsertResponse = 0; | 1710 core.int buildCounterConversionsBatchInsertResponse = 0; |
| 1711 buildConversionsBatchInsertResponse() { | 1711 buildConversionsBatchInsertResponse() { |
| 1712 var o = new api.ConversionsBatchInsertResponse(); | 1712 var o = new api.ConversionsBatchInsertResponse(); |
| 1713 buildCounterConversionsBatchInsertResponse++; | 1713 buildCounterConversionsBatchInsertResponse++; |
| 1714 if (buildCounterConversionsBatchInsertResponse < 3) { | 1714 if (buildCounterConversionsBatchInsertResponse < 3) { |
| 1715 o.hasFailures = true; | 1715 o.hasFailures = true; |
| 1716 o.kind = "foo"; | 1716 o.kind = "foo"; |
| 1717 o.status = buildUnnamed1327(); | 1717 o.status = buildUnnamed1339(); |
| 1718 } | 1718 } |
| 1719 buildCounterConversionsBatchInsertResponse--; | 1719 buildCounterConversionsBatchInsertResponse--; |
| 1720 return o; | 1720 return o; |
| 1721 } | 1721 } |
| 1722 | 1722 |
| 1723 checkConversionsBatchInsertResponse(api.ConversionsBatchInsertResponse o) { | 1723 checkConversionsBatchInsertResponse(api.ConversionsBatchInsertResponse o) { |
| 1724 buildCounterConversionsBatchInsertResponse++; | 1724 buildCounterConversionsBatchInsertResponse++; |
| 1725 if (buildCounterConversionsBatchInsertResponse < 3) { | 1725 if (buildCounterConversionsBatchInsertResponse < 3) { |
| 1726 unittest.expect(o.hasFailures, unittest.isTrue); | 1726 unittest.expect(o.hasFailures, unittest.isTrue); |
| 1727 unittest.expect(o.kind, unittest.equals('foo')); | 1727 unittest.expect(o.kind, unittest.equals('foo')); |
| 1728 checkUnnamed1327(o.status); | 1728 checkUnnamed1339(o.status); |
| 1729 } | 1729 } |
| 1730 buildCounterConversionsBatchInsertResponse--; | 1730 buildCounterConversionsBatchInsertResponse--; |
| 1731 } | 1731 } |
| 1732 | 1732 |
| 1733 buildUnnamed1328() { | 1733 buildUnnamed1340() { |
| 1734 var o = new core.List<api.Country>(); | 1734 var o = new core.List<api.Country>(); |
| 1735 o.add(buildCountry()); | 1735 o.add(buildCountry()); |
| 1736 o.add(buildCountry()); | 1736 o.add(buildCountry()); |
| 1737 return o; | 1737 return o; |
| 1738 } | 1738 } |
| 1739 | 1739 |
| 1740 checkUnnamed1328(core.List<api.Country> o) { | 1740 checkUnnamed1340(core.List<api.Country> o) { |
| 1741 unittest.expect(o, unittest.hasLength(2)); | 1741 unittest.expect(o, unittest.hasLength(2)); |
| 1742 checkCountry(o[0]); | 1742 checkCountry(o[0]); |
| 1743 checkCountry(o[1]); | 1743 checkCountry(o[1]); |
| 1744 } | 1744 } |
| 1745 | 1745 |
| 1746 core.int buildCounterCountriesListResponse = 0; | 1746 core.int buildCounterCountriesListResponse = 0; |
| 1747 buildCountriesListResponse() { | 1747 buildCountriesListResponse() { |
| 1748 var o = new api.CountriesListResponse(); | 1748 var o = new api.CountriesListResponse(); |
| 1749 buildCounterCountriesListResponse++; | 1749 buildCounterCountriesListResponse++; |
| 1750 if (buildCounterCountriesListResponse < 3) { | 1750 if (buildCounterCountriesListResponse < 3) { |
| 1751 o.countries = buildUnnamed1328(); | 1751 o.countries = buildUnnamed1340(); |
| 1752 o.kind = "foo"; | 1752 o.kind = "foo"; |
| 1753 } | 1753 } |
| 1754 buildCounterCountriesListResponse--; | 1754 buildCounterCountriesListResponse--; |
| 1755 return o; | 1755 return o; |
| 1756 } | 1756 } |
| 1757 | 1757 |
| 1758 checkCountriesListResponse(api.CountriesListResponse o) { | 1758 checkCountriesListResponse(api.CountriesListResponse o) { |
| 1759 buildCounterCountriesListResponse++; | 1759 buildCounterCountriesListResponse++; |
| 1760 if (buildCounterCountriesListResponse < 3) { | 1760 if (buildCounterCountriesListResponse < 3) { |
| 1761 checkUnnamed1328(o.countries); | 1761 checkUnnamed1340(o.countries); |
| 1762 unittest.expect(o.kind, unittest.equals('foo')); | 1762 unittest.expect(o.kind, unittest.equals('foo')); |
| 1763 } | 1763 } |
| 1764 buildCounterCountriesListResponse--; | 1764 buildCounterCountriesListResponse--; |
| 1765 } | 1765 } |
| 1766 | 1766 |
| 1767 core.int buildCounterCountry = 0; | 1767 core.int buildCounterCountry = 0; |
| 1768 buildCountry() { | 1768 buildCountry() { |
| 1769 var o = new api.Country(); | 1769 var o = new api.Country(); |
| 1770 buildCounterCountry++; | 1770 buildCounterCountry++; |
| 1771 if (buildCounterCountry < 3) { | 1771 if (buildCounterCountry < 3) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1784 if (buildCounterCountry < 3) { | 1784 if (buildCounterCountry < 3) { |
| 1785 unittest.expect(o.countryCode, unittest.equals('foo')); | 1785 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 1786 unittest.expect(o.dartId, unittest.equals('foo')); | 1786 unittest.expect(o.dartId, unittest.equals('foo')); |
| 1787 unittest.expect(o.kind, unittest.equals('foo')); | 1787 unittest.expect(o.kind, unittest.equals('foo')); |
| 1788 unittest.expect(o.name, unittest.equals('foo')); | 1788 unittest.expect(o.name, unittest.equals('foo')); |
| 1789 unittest.expect(o.sslEnabled, unittest.isTrue); | 1789 unittest.expect(o.sslEnabled, unittest.isTrue); |
| 1790 } | 1790 } |
| 1791 buildCounterCountry--; | 1791 buildCounterCountry--; |
| 1792 } | 1792 } |
| 1793 | 1793 |
| 1794 buildUnnamed1329() { | 1794 buildUnnamed1341() { |
| 1795 var o = new core.List<core.String>(); | 1795 var o = new core.List<core.String>(); |
| 1796 o.add("foo"); | 1796 o.add("foo"); |
| 1797 o.add("foo"); | 1797 o.add("foo"); |
| 1798 return o; | 1798 return o; |
| 1799 } | 1799 } |
| 1800 | 1800 |
| 1801 checkUnnamed1329(core.List<core.String> o) { | 1801 checkUnnamed1341(core.List<core.String> o) { |
| 1802 unittest.expect(o, unittest.hasLength(2)); | 1802 unittest.expect(o, unittest.hasLength(2)); |
| 1803 unittest.expect(o[0], unittest.equals('foo')); | 1803 unittest.expect(o[0], unittest.equals('foo')); |
| 1804 unittest.expect(o[1], unittest.equals('foo')); | 1804 unittest.expect(o[1], unittest.equals('foo')); |
| 1805 } | 1805 } |
| 1806 | 1806 |
| 1807 buildUnnamed1330() { | 1807 buildUnnamed1342() { |
| 1808 var o = new core.List<core.String>(); | 1808 var o = new core.List<core.String>(); |
| 1809 o.add("foo"); | 1809 o.add("foo"); |
| 1810 o.add("foo"); | 1810 o.add("foo"); |
| 1811 return o; | 1811 return o; |
| 1812 } | 1812 } |
| 1813 | 1813 |
| 1814 checkUnnamed1330(core.List<core.String> o) { | 1814 checkUnnamed1342(core.List<core.String> o) { |
| 1815 unittest.expect(o, unittest.hasLength(2)); | 1815 unittest.expect(o, unittest.hasLength(2)); |
| 1816 unittest.expect(o[0], unittest.equals('foo')); | 1816 unittest.expect(o[0], unittest.equals('foo')); |
| 1817 unittest.expect(o[1], unittest.equals('foo')); | 1817 unittest.expect(o[1], unittest.equals('foo')); |
| 1818 } | 1818 } |
| 1819 | 1819 |
| 1820 buildUnnamed1331() { | 1820 buildUnnamed1343() { |
| 1821 var o = new core.List<api.ClickTag>(); | 1821 var o = new core.List<api.ClickTag>(); |
| 1822 o.add(buildClickTag()); | 1822 o.add(buildClickTag()); |
| 1823 o.add(buildClickTag()); | 1823 o.add(buildClickTag()); |
| 1824 return o; | 1824 return o; |
| 1825 } | 1825 } |
| 1826 | 1826 |
| 1827 checkUnnamed1331(core.List<api.ClickTag> o) { | 1827 checkUnnamed1343(core.List<api.ClickTag> o) { |
| 1828 unittest.expect(o, unittest.hasLength(2)); | 1828 unittest.expect(o, unittest.hasLength(2)); |
| 1829 checkClickTag(o[0]); | 1829 checkClickTag(o[0]); |
| 1830 checkClickTag(o[1]); | 1830 checkClickTag(o[1]); |
| 1831 } | 1831 } |
| 1832 | 1832 |
| 1833 buildUnnamed1332() { | 1833 buildUnnamed1344() { |
| 1834 var o = new core.List<core.String>(); | 1834 var o = new core.List<core.String>(); |
| 1835 o.add("foo"); | 1835 o.add("foo"); |
| 1836 o.add("foo"); | 1836 o.add("foo"); |
| 1837 return o; | 1837 return o; |
| 1838 } | 1838 } |
| 1839 | 1839 |
| 1840 checkUnnamed1332(core.List<core.String> o) { | 1840 checkUnnamed1344(core.List<core.String> o) { |
| 1841 unittest.expect(o, unittest.hasLength(2)); | 1841 unittest.expect(o, unittest.hasLength(2)); |
| 1842 unittest.expect(o[0], unittest.equals('foo')); | 1842 unittest.expect(o[0], unittest.equals('foo')); |
| 1843 unittest.expect(o[1], unittest.equals('foo')); | 1843 unittest.expect(o[1], unittest.equals('foo')); |
| 1844 } | 1844 } |
| 1845 | 1845 |
| 1846 buildUnnamed1333() { | 1846 buildUnnamed1345() { |
| 1847 var o = new core.List<core.String>(); | 1847 var o = new core.List<core.String>(); |
| 1848 o.add("foo"); | 1848 o.add("foo"); |
| 1849 o.add("foo"); | 1849 o.add("foo"); |
| 1850 return o; | 1850 return o; |
| 1851 } | 1851 } |
| 1852 | 1852 |
| 1853 checkUnnamed1333(core.List<core.String> o) { | 1853 checkUnnamed1345(core.List<core.String> o) { |
| 1854 unittest.expect(o, unittest.hasLength(2)); | 1854 unittest.expect(o, unittest.hasLength(2)); |
| 1855 unittest.expect(o[0], unittest.equals('foo')); | 1855 unittest.expect(o[0], unittest.equals('foo')); |
| 1856 unittest.expect(o[1], unittest.equals('foo')); | 1856 unittest.expect(o[1], unittest.equals('foo')); |
| 1857 } | 1857 } |
| 1858 | 1858 |
| 1859 buildUnnamed1334() { | 1859 buildUnnamed1346() { |
| 1860 var o = new core.List<api.CreativeCustomEvent>(); | 1860 var o = new core.List<api.CreativeCustomEvent>(); |
| 1861 o.add(buildCreativeCustomEvent()); | 1861 o.add(buildCreativeCustomEvent()); |
| 1862 o.add(buildCreativeCustomEvent()); | 1862 o.add(buildCreativeCustomEvent()); |
| 1863 return o; | 1863 return o; |
| 1864 } | 1864 } |
| 1865 | 1865 |
| 1866 checkUnnamed1334(core.List<api.CreativeCustomEvent> o) { | 1866 checkUnnamed1346(core.List<api.CreativeCustomEvent> o) { |
| 1867 unittest.expect(o, unittest.hasLength(2)); | 1867 unittest.expect(o, unittest.hasLength(2)); |
| 1868 checkCreativeCustomEvent(o[0]); | 1868 checkCreativeCustomEvent(o[0]); |
| 1869 checkCreativeCustomEvent(o[1]); | 1869 checkCreativeCustomEvent(o[1]); |
| 1870 } | 1870 } |
| 1871 | 1871 |
| 1872 buildUnnamed1335() { | 1872 buildUnnamed1347() { |
| 1873 var o = new core.List<api.CreativeAsset>(); | 1873 var o = new core.List<api.CreativeAsset>(); |
| 1874 o.add(buildCreativeAsset()); | 1874 o.add(buildCreativeAsset()); |
| 1875 o.add(buildCreativeAsset()); | 1875 o.add(buildCreativeAsset()); |
| 1876 return o; | 1876 return o; |
| 1877 } | 1877 } |
| 1878 | 1878 |
| 1879 checkUnnamed1335(core.List<api.CreativeAsset> o) { | 1879 checkUnnamed1347(core.List<api.CreativeAsset> o) { |
| 1880 unittest.expect(o, unittest.hasLength(2)); | 1880 unittest.expect(o, unittest.hasLength(2)); |
| 1881 checkCreativeAsset(o[0]); | 1881 checkCreativeAsset(o[0]); |
| 1882 checkCreativeAsset(o[1]); | 1882 checkCreativeAsset(o[1]); |
| 1883 } | 1883 } |
| 1884 | 1884 |
| 1885 buildUnnamed1336() { | 1885 buildUnnamed1348() { |
| 1886 var o = new core.List<api.CreativeFieldAssignment>(); | 1886 var o = new core.List<api.CreativeFieldAssignment>(); |
| 1887 o.add(buildCreativeFieldAssignment()); | 1887 o.add(buildCreativeFieldAssignment()); |
| 1888 o.add(buildCreativeFieldAssignment()); | 1888 o.add(buildCreativeFieldAssignment()); |
| 1889 return o; | 1889 return o; |
| 1890 } | 1890 } |
| 1891 | 1891 |
| 1892 checkUnnamed1336(core.List<api.CreativeFieldAssignment> o) { | 1892 checkUnnamed1348(core.List<api.CreativeFieldAssignment> o) { |
| 1893 unittest.expect(o, unittest.hasLength(2)); | 1893 unittest.expect(o, unittest.hasLength(2)); |
| 1894 checkCreativeFieldAssignment(o[0]); | 1894 checkCreativeFieldAssignment(o[0]); |
| 1895 checkCreativeFieldAssignment(o[1]); | 1895 checkCreativeFieldAssignment(o[1]); |
| 1896 } | 1896 } |
| 1897 | 1897 |
| 1898 buildUnnamed1337() { | 1898 buildUnnamed1349() { |
| 1899 var o = new core.List<core.String>(); | 1899 var o = new core.List<core.String>(); |
| 1900 o.add("foo"); | 1900 o.add("foo"); |
| 1901 o.add("foo"); | 1901 o.add("foo"); |
| 1902 return o; | 1902 return o; |
| 1903 } | 1903 } |
| 1904 | 1904 |
| 1905 checkUnnamed1337(core.List<core.String> o) { | 1905 checkUnnamed1349(core.List<core.String> o) { |
| 1906 unittest.expect(o, unittest.hasLength(2)); | 1906 unittest.expect(o, unittest.hasLength(2)); |
| 1907 unittest.expect(o[0], unittest.equals('foo')); | 1907 unittest.expect(o[0], unittest.equals('foo')); |
| 1908 unittest.expect(o[1], unittest.equals('foo')); | 1908 unittest.expect(o[1], unittest.equals('foo')); |
| 1909 } | 1909 } |
| 1910 | 1910 |
| 1911 buildUnnamed1338() { | 1911 buildUnnamed1350() { |
| 1912 var o = new core.List<api.CreativeCustomEvent>(); | 1912 var o = new core.List<api.CreativeCustomEvent>(); |
| 1913 o.add(buildCreativeCustomEvent()); | 1913 o.add(buildCreativeCustomEvent()); |
| 1914 o.add(buildCreativeCustomEvent()); | 1914 o.add(buildCreativeCustomEvent()); |
| 1915 return o; | 1915 return o; |
| 1916 } | 1916 } |
| 1917 | 1917 |
| 1918 checkUnnamed1338(core.List<api.CreativeCustomEvent> o) { | 1918 checkUnnamed1350(core.List<api.CreativeCustomEvent> o) { |
| 1919 unittest.expect(o, unittest.hasLength(2)); | 1919 unittest.expect(o, unittest.hasLength(2)); |
| 1920 checkCreativeCustomEvent(o[0]); | 1920 checkCreativeCustomEvent(o[0]); |
| 1921 checkCreativeCustomEvent(o[1]); | 1921 checkCreativeCustomEvent(o[1]); |
| 1922 } | 1922 } |
| 1923 | 1923 |
| 1924 buildUnnamed1339() { | 1924 buildUnnamed1351() { |
| 1925 var o = new core.List<api.ThirdPartyTrackingUrl>(); | 1925 var o = new core.List<api.ThirdPartyTrackingUrl>(); |
| 1926 o.add(buildThirdPartyTrackingUrl()); | 1926 o.add(buildThirdPartyTrackingUrl()); |
| 1927 o.add(buildThirdPartyTrackingUrl()); | 1927 o.add(buildThirdPartyTrackingUrl()); |
| 1928 return o; | 1928 return o; |
| 1929 } | 1929 } |
| 1930 | 1930 |
| 1931 checkUnnamed1339(core.List<api.ThirdPartyTrackingUrl> o) { | 1931 checkUnnamed1351(core.List<api.ThirdPartyTrackingUrl> o) { |
| 1932 unittest.expect(o, unittest.hasLength(2)); | 1932 unittest.expect(o, unittest.hasLength(2)); |
| 1933 checkThirdPartyTrackingUrl(o[0]); | 1933 checkThirdPartyTrackingUrl(o[0]); |
| 1934 checkThirdPartyTrackingUrl(o[1]); | 1934 checkThirdPartyTrackingUrl(o[1]); |
| 1935 } | 1935 } |
| 1936 | 1936 |
| 1937 buildUnnamed1340() { | 1937 buildUnnamed1352() { |
| 1938 var o = new core.List<api.CreativeCustomEvent>(); | 1938 var o = new core.List<api.CreativeCustomEvent>(); |
| 1939 o.add(buildCreativeCustomEvent()); | 1939 o.add(buildCreativeCustomEvent()); |
| 1940 o.add(buildCreativeCustomEvent()); | 1940 o.add(buildCreativeCustomEvent()); |
| 1941 return o; | 1941 return o; |
| 1942 } | 1942 } |
| 1943 | 1943 |
| 1944 checkUnnamed1340(core.List<api.CreativeCustomEvent> o) { | 1944 checkUnnamed1352(core.List<api.CreativeCustomEvent> o) { |
| 1945 unittest.expect(o, unittest.hasLength(2)); | 1945 unittest.expect(o, unittest.hasLength(2)); |
| 1946 checkCreativeCustomEvent(o[0]); | 1946 checkCreativeCustomEvent(o[0]); |
| 1947 checkCreativeCustomEvent(o[1]); | 1947 checkCreativeCustomEvent(o[1]); |
| 1948 } | 1948 } |
| 1949 | 1949 |
| 1950 core.int buildCounterCreative = 0; | 1950 core.int buildCounterCreative = 0; |
| 1951 buildCreative() { | 1951 buildCreative() { |
| 1952 var o = new api.Creative(); | 1952 var o = new api.Creative(); |
| 1953 buildCounterCreative++; | 1953 buildCounterCreative++; |
| 1954 if (buildCounterCreative < 3) { | 1954 if (buildCounterCreative < 3) { |
| 1955 o.accountId = "foo"; | 1955 o.accountId = "foo"; |
| 1956 o.active = true; | 1956 o.active = true; |
| 1957 o.adParameters = "foo"; | 1957 o.adParameters = "foo"; |
| 1958 o.adTagKeys = buildUnnamed1329(); | 1958 o.adTagKeys = buildUnnamed1341(); |
| 1959 o.advertiserId = "foo"; | 1959 o.advertiserId = "foo"; |
| 1960 o.allowScriptAccess = true; | 1960 o.allowScriptAccess = true; |
| 1961 o.archived = true; | 1961 o.archived = true; |
| 1962 o.artworkType = "foo"; | 1962 o.artworkType = "foo"; |
| 1963 o.authoringSource = "foo"; | 1963 o.authoringSource = "foo"; |
| 1964 o.authoringTool = "foo"; | 1964 o.authoringTool = "foo"; |
| 1965 o.autoAdvanceImages = true; | 1965 o.autoAdvanceImages = true; |
| 1966 o.backgroundColor = "foo"; | 1966 o.backgroundColor = "foo"; |
| 1967 o.backupImageClickThroughUrl = "foo"; | 1967 o.backupImageClickThroughUrl = "foo"; |
| 1968 o.backupImageFeatures = buildUnnamed1330(); | 1968 o.backupImageFeatures = buildUnnamed1342(); |
| 1969 o.backupImageReportingLabel = "foo"; | 1969 o.backupImageReportingLabel = "foo"; |
| 1970 o.backupImageTargetWindow = buildTargetWindow(); | 1970 o.backupImageTargetWindow = buildTargetWindow(); |
| 1971 o.clickTags = buildUnnamed1331(); | 1971 o.clickTags = buildUnnamed1343(); |
| 1972 o.commercialId = "foo"; | 1972 o.commercialId = "foo"; |
| 1973 o.companionCreatives = buildUnnamed1332(); | 1973 o.companionCreatives = buildUnnamed1344(); |
| 1974 o.compatibility = buildUnnamed1333(); | 1974 o.compatibility = buildUnnamed1345(); |
| 1975 o.convertFlashToHtml5 = true; | 1975 o.convertFlashToHtml5 = true; |
| 1976 o.counterCustomEvents = buildUnnamed1334(); | 1976 o.counterCustomEvents = buildUnnamed1346(); |
| 1977 o.creativeAssets = buildUnnamed1335(); | 1977 o.creativeAssets = buildUnnamed1347(); |
| 1978 o.creativeFieldAssignments = buildUnnamed1336(); | 1978 o.creativeFieldAssignments = buildUnnamed1348(); |
| 1979 o.customKeyValues = buildUnnamed1337(); | 1979 o.customKeyValues = buildUnnamed1349(); |
| 1980 o.exitCustomEvents = buildUnnamed1338(); | 1980 o.exitCustomEvents = buildUnnamed1350(); |
| 1981 o.fsCommand = buildFsCommand(); | 1981 o.fsCommand = buildFsCommand(); |
| 1982 o.htmlCode = "foo"; | 1982 o.htmlCode = "foo"; |
| 1983 o.htmlCodeLocked = true; | 1983 o.htmlCodeLocked = true; |
| 1984 o.id = "foo"; | 1984 o.id = "foo"; |
| 1985 o.idDimensionValue = buildDimensionValue(); | 1985 o.idDimensionValue = buildDimensionValue(); |
| 1986 o.kind = "foo"; | 1986 o.kind = "foo"; |
| 1987 o.lastModifiedInfo = buildLastModifiedInfo(); | 1987 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 1988 o.latestTraffickedCreativeId = "foo"; | 1988 o.latestTraffickedCreativeId = "foo"; |
| 1989 o.name = "foo"; | 1989 o.name = "foo"; |
| 1990 o.overrideCss = "foo"; | 1990 o.overrideCss = "foo"; |
| 1991 o.redirectUrl = "foo"; | 1991 o.redirectUrl = "foo"; |
| 1992 o.renderingId = "foo"; | 1992 o.renderingId = "foo"; |
| 1993 o.renderingIdDimensionValue = buildDimensionValue(); | 1993 o.renderingIdDimensionValue = buildDimensionValue(); |
| 1994 o.requiredFlashPluginVersion = "foo"; | 1994 o.requiredFlashPluginVersion = "foo"; |
| 1995 o.requiredFlashVersion = 42; | 1995 o.requiredFlashVersion = 42; |
| 1996 o.size = buildSize(); | 1996 o.size = buildSize(); |
| 1997 o.skippable = true; | 1997 o.skippable = true; |
| 1998 o.sslCompliant = true; | 1998 o.sslCompliant = true; |
| 1999 o.sslOverride = true; | 1999 o.sslOverride = true; |
| 2000 o.studioAdvertiserId = "foo"; | 2000 o.studioAdvertiserId = "foo"; |
| 2001 o.studioCreativeId = "foo"; | 2001 o.studioCreativeId = "foo"; |
| 2002 o.studioTraffickedCreativeId = "foo"; | 2002 o.studioTraffickedCreativeId = "foo"; |
| 2003 o.subaccountId = "foo"; | 2003 o.subaccountId = "foo"; |
| 2004 o.thirdPartyBackupImageImpressionsUrl = "foo"; | 2004 o.thirdPartyBackupImageImpressionsUrl = "foo"; |
| 2005 o.thirdPartyRichMediaImpressionsUrl = "foo"; | 2005 o.thirdPartyRichMediaImpressionsUrl = "foo"; |
| 2006 o.thirdPartyUrls = buildUnnamed1339(); | 2006 o.thirdPartyUrls = buildUnnamed1351(); |
| 2007 o.timerCustomEvents = buildUnnamed1340(); | 2007 o.timerCustomEvents = buildUnnamed1352(); |
| 2008 o.totalFileSize = "foo"; | 2008 o.totalFileSize = "foo"; |
| 2009 o.type = "foo"; | 2009 o.type = "foo"; |
| 2010 o.version = 42; | 2010 o.version = 42; |
| 2011 o.videoDescription = "foo"; | 2011 o.videoDescription = "foo"; |
| 2012 o.videoDuration = 42.0; | 2012 o.videoDuration = 42.0; |
| 2013 } | 2013 } |
| 2014 buildCounterCreative--; | 2014 buildCounterCreative--; |
| 2015 return o; | 2015 return o; |
| 2016 } | 2016 } |
| 2017 | 2017 |
| 2018 checkCreative(api.Creative o) { | 2018 checkCreative(api.Creative o) { |
| 2019 buildCounterCreative++; | 2019 buildCounterCreative++; |
| 2020 if (buildCounterCreative < 3) { | 2020 if (buildCounterCreative < 3) { |
| 2021 unittest.expect(o.accountId, unittest.equals('foo')); | 2021 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2022 unittest.expect(o.active, unittest.isTrue); | 2022 unittest.expect(o.active, unittest.isTrue); |
| 2023 unittest.expect(o.adParameters, unittest.equals('foo')); | 2023 unittest.expect(o.adParameters, unittest.equals('foo')); |
| 2024 checkUnnamed1329(o.adTagKeys); | 2024 checkUnnamed1341(o.adTagKeys); |
| 2025 unittest.expect(o.advertiserId, unittest.equals('foo')); | 2025 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 2026 unittest.expect(o.allowScriptAccess, unittest.isTrue); | 2026 unittest.expect(o.allowScriptAccess, unittest.isTrue); |
| 2027 unittest.expect(o.archived, unittest.isTrue); | 2027 unittest.expect(o.archived, unittest.isTrue); |
| 2028 unittest.expect(o.artworkType, unittest.equals('foo')); | 2028 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 2029 unittest.expect(o.authoringSource, unittest.equals('foo')); | 2029 unittest.expect(o.authoringSource, unittest.equals('foo')); |
| 2030 unittest.expect(o.authoringTool, unittest.equals('foo')); | 2030 unittest.expect(o.authoringTool, unittest.equals('foo')); |
| 2031 unittest.expect(o.autoAdvanceImages, unittest.isTrue); | 2031 unittest.expect(o.autoAdvanceImages, unittest.isTrue); |
| 2032 unittest.expect(o.backgroundColor, unittest.equals('foo')); | 2032 unittest.expect(o.backgroundColor, unittest.equals('foo')); |
| 2033 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); | 2033 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); |
| 2034 checkUnnamed1330(o.backupImageFeatures); | 2034 checkUnnamed1342(o.backupImageFeatures); |
| 2035 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); | 2035 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); |
| 2036 checkTargetWindow(o.backupImageTargetWindow); | 2036 checkTargetWindow(o.backupImageTargetWindow); |
| 2037 checkUnnamed1331(o.clickTags); | 2037 checkUnnamed1343(o.clickTags); |
| 2038 unittest.expect(o.commercialId, unittest.equals('foo')); | 2038 unittest.expect(o.commercialId, unittest.equals('foo')); |
| 2039 checkUnnamed1332(o.companionCreatives); | 2039 checkUnnamed1344(o.companionCreatives); |
| 2040 checkUnnamed1333(o.compatibility); | 2040 checkUnnamed1345(o.compatibility); |
| 2041 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); | 2041 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); |
| 2042 checkUnnamed1334(o.counterCustomEvents); | 2042 checkUnnamed1346(o.counterCustomEvents); |
| 2043 checkUnnamed1335(o.creativeAssets); | 2043 checkUnnamed1347(o.creativeAssets); |
| 2044 checkUnnamed1336(o.creativeFieldAssignments); | 2044 checkUnnamed1348(o.creativeFieldAssignments); |
| 2045 checkUnnamed1337(o.customKeyValues); | 2045 checkUnnamed1349(o.customKeyValues); |
| 2046 checkUnnamed1338(o.exitCustomEvents); | 2046 checkUnnamed1350(o.exitCustomEvents); |
| 2047 checkFsCommand(o.fsCommand); | 2047 checkFsCommand(o.fsCommand); |
| 2048 unittest.expect(o.htmlCode, unittest.equals('foo')); | 2048 unittest.expect(o.htmlCode, unittest.equals('foo')); |
| 2049 unittest.expect(o.htmlCodeLocked, unittest.isTrue); | 2049 unittest.expect(o.htmlCodeLocked, unittest.isTrue); |
| 2050 unittest.expect(o.id, unittest.equals('foo')); | 2050 unittest.expect(o.id, unittest.equals('foo')); |
| 2051 checkDimensionValue(o.idDimensionValue); | 2051 checkDimensionValue(o.idDimensionValue); |
| 2052 unittest.expect(o.kind, unittest.equals('foo')); | 2052 unittest.expect(o.kind, unittest.equals('foo')); |
| 2053 checkLastModifiedInfo(o.lastModifiedInfo); | 2053 checkLastModifiedInfo(o.lastModifiedInfo); |
| 2054 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); | 2054 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); |
| 2055 unittest.expect(o.name, unittest.equals('foo')); | 2055 unittest.expect(o.name, unittest.equals('foo')); |
| 2056 unittest.expect(o.overrideCss, unittest.equals('foo')); | 2056 unittest.expect(o.overrideCss, unittest.equals('foo')); |
| 2057 unittest.expect(o.redirectUrl, unittest.equals('foo')); | 2057 unittest.expect(o.redirectUrl, unittest.equals('foo')); |
| 2058 unittest.expect(o.renderingId, unittest.equals('foo')); | 2058 unittest.expect(o.renderingId, unittest.equals('foo')); |
| 2059 checkDimensionValue(o.renderingIdDimensionValue); | 2059 checkDimensionValue(o.renderingIdDimensionValue); |
| 2060 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); | 2060 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); |
| 2061 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); | 2061 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); |
| 2062 checkSize(o.size); | 2062 checkSize(o.size); |
| 2063 unittest.expect(o.skippable, unittest.isTrue); | 2063 unittest.expect(o.skippable, unittest.isTrue); |
| 2064 unittest.expect(o.sslCompliant, unittest.isTrue); | 2064 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 2065 unittest.expect(o.sslOverride, unittest.isTrue); | 2065 unittest.expect(o.sslOverride, unittest.isTrue); |
| 2066 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); | 2066 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); |
| 2067 unittest.expect(o.studioCreativeId, unittest.equals('foo')); | 2067 unittest.expect(o.studioCreativeId, unittest.equals('foo')); |
| 2068 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); | 2068 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); |
| 2069 unittest.expect(o.subaccountId, unittest.equals('foo')); | 2069 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 2070 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); | 2070 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); |
| 2071 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; | 2071 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; |
| 2072 checkUnnamed1339(o.thirdPartyUrls); | 2072 checkUnnamed1351(o.thirdPartyUrls); |
| 2073 checkUnnamed1340(o.timerCustomEvents); | 2073 checkUnnamed1352(o.timerCustomEvents); |
| 2074 unittest.expect(o.totalFileSize, unittest.equals('foo')); | 2074 unittest.expect(o.totalFileSize, unittest.equals('foo')); |
| 2075 unittest.expect(o.type, unittest.equals('foo')); | 2075 unittest.expect(o.type, unittest.equals('foo')); |
| 2076 unittest.expect(o.version, unittest.equals(42)); | 2076 unittest.expect(o.version, unittest.equals(42)); |
| 2077 unittest.expect(o.videoDescription, unittest.equals('foo')); | 2077 unittest.expect(o.videoDescription, unittest.equals('foo')); |
| 2078 unittest.expect(o.videoDuration, unittest.equals(42.0)); | 2078 unittest.expect(o.videoDuration, unittest.equals(42.0)); |
| 2079 } | 2079 } |
| 2080 buildCounterCreative--; | 2080 buildCounterCreative--; |
| 2081 } | 2081 } |
| 2082 | 2082 |
| 2083 buildUnnamed1341() { | 2083 buildUnnamed1353() { |
| 2084 var o = new core.List<core.String>(); | 2084 var o = new core.List<core.String>(); |
| 2085 o.add("foo"); | 2085 o.add("foo"); |
| 2086 o.add("foo"); | 2086 o.add("foo"); |
| 2087 return o; | 2087 return o; |
| 2088 } | 2088 } |
| 2089 | 2089 |
| 2090 checkUnnamed1341(core.List<core.String> o) { | 2090 checkUnnamed1353(core.List<core.String> o) { |
| 2091 unittest.expect(o, unittest.hasLength(2)); | 2091 unittest.expect(o, unittest.hasLength(2)); |
| 2092 unittest.expect(o[0], unittest.equals('foo')); | 2092 unittest.expect(o[0], unittest.equals('foo')); |
| 2093 unittest.expect(o[1], unittest.equals('foo')); | 2093 unittest.expect(o[1], unittest.equals('foo')); |
| 2094 } | 2094 } |
| 2095 | 2095 |
| 2096 core.int buildCounterCreativeAsset = 0; | 2096 core.int buildCounterCreativeAsset = 0; |
| 2097 buildCreativeAsset() { | 2097 buildCreativeAsset() { |
| 2098 var o = new api.CreativeAsset(); | 2098 var o = new api.CreativeAsset(); |
| 2099 buildCounterCreativeAsset++; | 2099 buildCounterCreativeAsset++; |
| 2100 if (buildCounterCreativeAsset < 3) { | 2100 if (buildCounterCreativeAsset < 3) { |
| 2101 o.actionScript3 = true; | 2101 o.actionScript3 = true; |
| 2102 o.active = true; | 2102 o.active = true; |
| 2103 o.alignment = "foo"; | 2103 o.alignment = "foo"; |
| 2104 o.artworkType = "foo"; | 2104 o.artworkType = "foo"; |
| 2105 o.assetIdentifier = buildCreativeAssetId(); | 2105 o.assetIdentifier = buildCreativeAssetId(); |
| 2106 o.backupImageExit = buildCreativeCustomEvent(); | 2106 o.backupImageExit = buildCreativeCustomEvent(); |
| 2107 o.bitRate = 42; | 2107 o.bitRate = 42; |
| 2108 o.childAssetType = "foo"; | 2108 o.childAssetType = "foo"; |
| 2109 o.collapsedSize = buildSize(); | 2109 o.collapsedSize = buildSize(); |
| 2110 o.customStartTimeValue = 42; | 2110 o.customStartTimeValue = 42; |
| 2111 o.detectedFeatures = buildUnnamed1341(); | 2111 o.detectedFeatures = buildUnnamed1353(); |
| 2112 o.displayType = "foo"; | 2112 o.displayType = "foo"; |
| 2113 o.duration = 42; | 2113 o.duration = 42; |
| 2114 o.durationType = "foo"; | 2114 o.durationType = "foo"; |
| 2115 o.expandedDimension = buildSize(); | 2115 o.expandedDimension = buildSize(); |
| 2116 o.fileSize = "foo"; | 2116 o.fileSize = "foo"; |
| 2117 o.flashVersion = 42; | 2117 o.flashVersion = 42; |
| 2118 o.hideFlashObjects = true; | 2118 o.hideFlashObjects = true; |
| 2119 o.hideSelectionBoxes = true; | 2119 o.hideSelectionBoxes = true; |
| 2120 o.horizontallyLocked = true; | 2120 o.horizontallyLocked = true; |
| 2121 o.id = "foo"; | 2121 o.id = "foo"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 2151 unittest.expect(o.actionScript3, unittest.isTrue); | 2151 unittest.expect(o.actionScript3, unittest.isTrue); |
| 2152 unittest.expect(o.active, unittest.isTrue); | 2152 unittest.expect(o.active, unittest.isTrue); |
| 2153 unittest.expect(o.alignment, unittest.equals('foo')); | 2153 unittest.expect(o.alignment, unittest.equals('foo')); |
| 2154 unittest.expect(o.artworkType, unittest.equals('foo')); | 2154 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 2155 checkCreativeAssetId(o.assetIdentifier); | 2155 checkCreativeAssetId(o.assetIdentifier); |
| 2156 checkCreativeCustomEvent(o.backupImageExit); | 2156 checkCreativeCustomEvent(o.backupImageExit); |
| 2157 unittest.expect(o.bitRate, unittest.equals(42)); | 2157 unittest.expect(o.bitRate, unittest.equals(42)); |
| 2158 unittest.expect(o.childAssetType, unittest.equals('foo')); | 2158 unittest.expect(o.childAssetType, unittest.equals('foo')); |
| 2159 checkSize(o.collapsedSize); | 2159 checkSize(o.collapsedSize); |
| 2160 unittest.expect(o.customStartTimeValue, unittest.equals(42)); | 2160 unittest.expect(o.customStartTimeValue, unittest.equals(42)); |
| 2161 checkUnnamed1341(o.detectedFeatures); | 2161 checkUnnamed1353(o.detectedFeatures); |
| 2162 unittest.expect(o.displayType, unittest.equals('foo')); | 2162 unittest.expect(o.displayType, unittest.equals('foo')); |
| 2163 unittest.expect(o.duration, unittest.equals(42)); | 2163 unittest.expect(o.duration, unittest.equals(42)); |
| 2164 unittest.expect(o.durationType, unittest.equals('foo')); | 2164 unittest.expect(o.durationType, unittest.equals('foo')); |
| 2165 checkSize(o.expandedDimension); | 2165 checkSize(o.expandedDimension); |
| 2166 unittest.expect(o.fileSize, unittest.equals('foo')); | 2166 unittest.expect(o.fileSize, unittest.equals('foo')); |
| 2167 unittest.expect(o.flashVersion, unittest.equals(42)); | 2167 unittest.expect(o.flashVersion, unittest.equals(42)); |
| 2168 unittest.expect(o.hideFlashObjects, unittest.isTrue); | 2168 unittest.expect(o.hideFlashObjects, unittest.isTrue); |
| 2169 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); | 2169 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); |
| 2170 unittest.expect(o.horizontallyLocked, unittest.isTrue); | 2170 unittest.expect(o.horizontallyLocked, unittest.isTrue); |
| 2171 unittest.expect(o.id, unittest.equals('foo')); | 2171 unittest.expect(o.id, unittest.equals('foo')); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2208 | 2208 |
| 2209 checkCreativeAssetId(api.CreativeAssetId o) { | 2209 checkCreativeAssetId(api.CreativeAssetId o) { |
| 2210 buildCounterCreativeAssetId++; | 2210 buildCounterCreativeAssetId++; |
| 2211 if (buildCounterCreativeAssetId < 3) { | 2211 if (buildCounterCreativeAssetId < 3) { |
| 2212 unittest.expect(o.name, unittest.equals('foo')); | 2212 unittest.expect(o.name, unittest.equals('foo')); |
| 2213 unittest.expect(o.type, unittest.equals('foo')); | 2213 unittest.expect(o.type, unittest.equals('foo')); |
| 2214 } | 2214 } |
| 2215 buildCounterCreativeAssetId--; | 2215 buildCounterCreativeAssetId--; |
| 2216 } | 2216 } |
| 2217 | 2217 |
| 2218 buildUnnamed1342() { | 2218 buildUnnamed1354() { |
| 2219 var o = new core.List<api.ClickTag>(); | 2219 var o = new core.List<api.ClickTag>(); |
| 2220 o.add(buildClickTag()); | 2220 o.add(buildClickTag()); |
| 2221 o.add(buildClickTag()); | 2221 o.add(buildClickTag()); |
| 2222 return o; | 2222 return o; |
| 2223 } | 2223 } |
| 2224 | 2224 |
| 2225 checkUnnamed1342(core.List<api.ClickTag> o) { | 2225 checkUnnamed1354(core.List<api.ClickTag> o) { |
| 2226 unittest.expect(o, unittest.hasLength(2)); | 2226 unittest.expect(o, unittest.hasLength(2)); |
| 2227 checkClickTag(o[0]); | 2227 checkClickTag(o[0]); |
| 2228 checkClickTag(o[1]); | 2228 checkClickTag(o[1]); |
| 2229 } | 2229 } |
| 2230 | 2230 |
| 2231 buildUnnamed1343() { | 2231 buildUnnamed1355() { |
| 2232 var o = new core.List<core.String>(); | 2232 var o = new core.List<core.String>(); |
| 2233 o.add("foo"); | 2233 o.add("foo"); |
| 2234 o.add("foo"); | 2234 o.add("foo"); |
| 2235 return o; | 2235 return o; |
| 2236 } | 2236 } |
| 2237 | 2237 |
| 2238 checkUnnamed1343(core.List<core.String> o) { | 2238 checkUnnamed1355(core.List<core.String> o) { |
| 2239 unittest.expect(o, unittest.hasLength(2)); | 2239 unittest.expect(o, unittest.hasLength(2)); |
| 2240 unittest.expect(o[0], unittest.equals('foo')); | 2240 unittest.expect(o[0], unittest.equals('foo')); |
| 2241 unittest.expect(o[1], unittest.equals('foo')); | 2241 unittest.expect(o[1], unittest.equals('foo')); |
| 2242 } | 2242 } |
| 2243 | 2243 |
| 2244 buildUnnamed1344() { | 2244 buildUnnamed1356() { |
| 2245 var o = new core.List<core.String>(); | 2245 var o = new core.List<core.String>(); |
| 2246 o.add("foo"); | 2246 o.add("foo"); |
| 2247 o.add("foo"); | 2247 o.add("foo"); |
| 2248 return o; | 2248 return o; |
| 2249 } | 2249 } |
| 2250 | 2250 |
| 2251 checkUnnamed1344(core.List<core.String> o) { | 2251 checkUnnamed1356(core.List<core.String> o) { |
| 2252 unittest.expect(o, unittest.hasLength(2)); | 2252 unittest.expect(o, unittest.hasLength(2)); |
| 2253 unittest.expect(o[0], unittest.equals('foo')); | 2253 unittest.expect(o[0], unittest.equals('foo')); |
| 2254 unittest.expect(o[1], unittest.equals('foo')); | 2254 unittest.expect(o[1], unittest.equals('foo')); |
| 2255 } | 2255 } |
| 2256 | 2256 |
| 2257 core.int buildCounterCreativeAssetMetadata = 0; | 2257 core.int buildCounterCreativeAssetMetadata = 0; |
| 2258 buildCreativeAssetMetadata() { | 2258 buildCreativeAssetMetadata() { |
| 2259 var o = new api.CreativeAssetMetadata(); | 2259 var o = new api.CreativeAssetMetadata(); |
| 2260 buildCounterCreativeAssetMetadata++; | 2260 buildCounterCreativeAssetMetadata++; |
| 2261 if (buildCounterCreativeAssetMetadata < 3) { | 2261 if (buildCounterCreativeAssetMetadata < 3) { |
| 2262 o.assetIdentifier = buildCreativeAssetId(); | 2262 o.assetIdentifier = buildCreativeAssetId(); |
| 2263 o.clickTags = buildUnnamed1342(); | 2263 o.clickTags = buildUnnamed1354(); |
| 2264 o.detectedFeatures = buildUnnamed1343(); | 2264 o.detectedFeatures = buildUnnamed1355(); |
| 2265 o.kind = "foo"; | 2265 o.kind = "foo"; |
| 2266 o.warnedValidationRules = buildUnnamed1344(); | 2266 o.warnedValidationRules = buildUnnamed1356(); |
| 2267 } | 2267 } |
| 2268 buildCounterCreativeAssetMetadata--; | 2268 buildCounterCreativeAssetMetadata--; |
| 2269 return o; | 2269 return o; |
| 2270 } | 2270 } |
| 2271 | 2271 |
| 2272 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { | 2272 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { |
| 2273 buildCounterCreativeAssetMetadata++; | 2273 buildCounterCreativeAssetMetadata++; |
| 2274 if (buildCounterCreativeAssetMetadata < 3) { | 2274 if (buildCounterCreativeAssetMetadata < 3) { |
| 2275 checkCreativeAssetId(o.assetIdentifier); | 2275 checkCreativeAssetId(o.assetIdentifier); |
| 2276 checkUnnamed1342(o.clickTags); | 2276 checkUnnamed1354(o.clickTags); |
| 2277 checkUnnamed1343(o.detectedFeatures); | 2277 checkUnnamed1355(o.detectedFeatures); |
| 2278 unittest.expect(o.kind, unittest.equals('foo')); | 2278 unittest.expect(o.kind, unittest.equals('foo')); |
| 2279 checkUnnamed1344(o.warnedValidationRules); | 2279 checkUnnamed1356(o.warnedValidationRules); |
| 2280 } | 2280 } |
| 2281 buildCounterCreativeAssetMetadata--; | 2281 buildCounterCreativeAssetMetadata--; |
| 2282 } | 2282 } |
| 2283 | 2283 |
| 2284 buildUnnamed1345() { | 2284 buildUnnamed1357() { |
| 2285 var o = new core.List<api.CompanionClickThroughOverride>(); | 2285 var o = new core.List<api.CompanionClickThroughOverride>(); |
| 2286 o.add(buildCompanionClickThroughOverride()); | 2286 o.add(buildCompanionClickThroughOverride()); |
| 2287 o.add(buildCompanionClickThroughOverride()); | 2287 o.add(buildCompanionClickThroughOverride()); |
| 2288 return o; | 2288 return o; |
| 2289 } | 2289 } |
| 2290 | 2290 |
| 2291 checkUnnamed1345(core.List<api.CompanionClickThroughOverride> o) { | 2291 checkUnnamed1357(core.List<api.CompanionClickThroughOverride> o) { |
| 2292 unittest.expect(o, unittest.hasLength(2)); | 2292 unittest.expect(o, unittest.hasLength(2)); |
| 2293 checkCompanionClickThroughOverride(o[0]); | 2293 checkCompanionClickThroughOverride(o[0]); |
| 2294 checkCompanionClickThroughOverride(o[1]); | 2294 checkCompanionClickThroughOverride(o[1]); |
| 2295 } | 2295 } |
| 2296 | 2296 |
| 2297 buildUnnamed1346() { | 2297 buildUnnamed1358() { |
| 2298 var o = new core.List<api.CreativeGroupAssignment>(); | 2298 var o = new core.List<api.CreativeGroupAssignment>(); |
| 2299 o.add(buildCreativeGroupAssignment()); | 2299 o.add(buildCreativeGroupAssignment()); |
| 2300 o.add(buildCreativeGroupAssignment()); | 2300 o.add(buildCreativeGroupAssignment()); |
| 2301 return o; | 2301 return o; |
| 2302 } | 2302 } |
| 2303 | 2303 |
| 2304 checkUnnamed1346(core.List<api.CreativeGroupAssignment> o) { | 2304 checkUnnamed1358(core.List<api.CreativeGroupAssignment> o) { |
| 2305 unittest.expect(o, unittest.hasLength(2)); | 2305 unittest.expect(o, unittest.hasLength(2)); |
| 2306 checkCreativeGroupAssignment(o[0]); | 2306 checkCreativeGroupAssignment(o[0]); |
| 2307 checkCreativeGroupAssignment(o[1]); | 2307 checkCreativeGroupAssignment(o[1]); |
| 2308 } | 2308 } |
| 2309 | 2309 |
| 2310 buildUnnamed1347() { | 2310 buildUnnamed1359() { |
| 2311 var o = new core.List<api.RichMediaExitOverride>(); | 2311 var o = new core.List<api.RichMediaExitOverride>(); |
| 2312 o.add(buildRichMediaExitOverride()); | 2312 o.add(buildRichMediaExitOverride()); |
| 2313 o.add(buildRichMediaExitOverride()); | 2313 o.add(buildRichMediaExitOverride()); |
| 2314 return o; | 2314 return o; |
| 2315 } | 2315 } |
| 2316 | 2316 |
| 2317 checkUnnamed1347(core.List<api.RichMediaExitOverride> o) { | 2317 checkUnnamed1359(core.List<api.RichMediaExitOverride> o) { |
| 2318 unittest.expect(o, unittest.hasLength(2)); | 2318 unittest.expect(o, unittest.hasLength(2)); |
| 2319 checkRichMediaExitOverride(o[0]); | 2319 checkRichMediaExitOverride(o[0]); |
| 2320 checkRichMediaExitOverride(o[1]); | 2320 checkRichMediaExitOverride(o[1]); |
| 2321 } | 2321 } |
| 2322 | 2322 |
| 2323 core.int buildCounterCreativeAssignment = 0; | 2323 core.int buildCounterCreativeAssignment = 0; |
| 2324 buildCreativeAssignment() { | 2324 buildCreativeAssignment() { |
| 2325 var o = new api.CreativeAssignment(); | 2325 var o = new api.CreativeAssignment(); |
| 2326 buildCounterCreativeAssignment++; | 2326 buildCounterCreativeAssignment++; |
| 2327 if (buildCounterCreativeAssignment < 3) { | 2327 if (buildCounterCreativeAssignment < 3) { |
| 2328 o.active = true; | 2328 o.active = true; |
| 2329 o.applyEventTags = true; | 2329 o.applyEventTags = true; |
| 2330 o.clickThroughUrl = buildClickThroughUrl(); | 2330 o.clickThroughUrl = buildClickThroughUrl(); |
| 2331 o.companionCreativeOverrides = buildUnnamed1345(); | 2331 o.companionCreativeOverrides = buildUnnamed1357(); |
| 2332 o.creativeGroupAssignments = buildUnnamed1346(); | 2332 o.creativeGroupAssignments = buildUnnamed1358(); |
| 2333 o.creativeId = "foo"; | 2333 o.creativeId = "foo"; |
| 2334 o.creativeIdDimensionValue = buildDimensionValue(); | 2334 o.creativeIdDimensionValue = buildDimensionValue(); |
| 2335 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2335 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2336 o.richMediaExitOverrides = buildUnnamed1347(); | 2336 o.richMediaExitOverrides = buildUnnamed1359(); |
| 2337 o.sequence = 42; | 2337 o.sequence = 42; |
| 2338 o.sslCompliant = true; | 2338 o.sslCompliant = true; |
| 2339 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2339 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2340 o.weight = 42; | 2340 o.weight = 42; |
| 2341 } | 2341 } |
| 2342 buildCounterCreativeAssignment--; | 2342 buildCounterCreativeAssignment--; |
| 2343 return o; | 2343 return o; |
| 2344 } | 2344 } |
| 2345 | 2345 |
| 2346 checkCreativeAssignment(api.CreativeAssignment o) { | 2346 checkCreativeAssignment(api.CreativeAssignment o) { |
| 2347 buildCounterCreativeAssignment++; | 2347 buildCounterCreativeAssignment++; |
| 2348 if (buildCounterCreativeAssignment < 3) { | 2348 if (buildCounterCreativeAssignment < 3) { |
| 2349 unittest.expect(o.active, unittest.isTrue); | 2349 unittest.expect(o.active, unittest.isTrue); |
| 2350 unittest.expect(o.applyEventTags, unittest.isTrue); | 2350 unittest.expect(o.applyEventTags, unittest.isTrue); |
| 2351 checkClickThroughUrl(o.clickThroughUrl); | 2351 checkClickThroughUrl(o.clickThroughUrl); |
| 2352 checkUnnamed1345(o.companionCreativeOverrides); | 2352 checkUnnamed1357(o.companionCreativeOverrides); |
| 2353 checkUnnamed1346(o.creativeGroupAssignments); | 2353 checkUnnamed1358(o.creativeGroupAssignments); |
| 2354 unittest.expect(o.creativeId, unittest.equals('foo')); | 2354 unittest.expect(o.creativeId, unittest.equals('foo')); |
| 2355 checkDimensionValue(o.creativeIdDimensionValue); | 2355 checkDimensionValue(o.creativeIdDimensionValue); |
| 2356 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2356 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2357 checkUnnamed1347(o.richMediaExitOverrides); | 2357 checkUnnamed1359(o.richMediaExitOverrides); |
| 2358 unittest.expect(o.sequence, unittest.equals(42)); | 2358 unittest.expect(o.sequence, unittest.equals(42)); |
| 2359 unittest.expect(o.sslCompliant, unittest.isTrue); | 2359 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 2360 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 2360 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 2361 unittest.expect(o.weight, unittest.equals(42)); | 2361 unittest.expect(o.weight, unittest.equals(42)); |
| 2362 } | 2362 } |
| 2363 buildCounterCreativeAssignment--; | 2363 buildCounterCreativeAssignment--; |
| 2364 } | 2364 } |
| 2365 | 2365 |
| 2366 core.int buildCounterCreativeCustomEvent = 0; | 2366 core.int buildCounterCreativeCustomEvent = 0; |
| 2367 buildCreativeCustomEvent() { | 2367 buildCreativeCustomEvent() { |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2468 checkCreativeFieldValue(api.CreativeFieldValue o) { | 2468 checkCreativeFieldValue(api.CreativeFieldValue o) { |
| 2469 buildCounterCreativeFieldValue++; | 2469 buildCounterCreativeFieldValue++; |
| 2470 if (buildCounterCreativeFieldValue < 3) { | 2470 if (buildCounterCreativeFieldValue < 3) { |
| 2471 unittest.expect(o.id, unittest.equals('foo')); | 2471 unittest.expect(o.id, unittest.equals('foo')); |
| 2472 unittest.expect(o.kind, unittest.equals('foo')); | 2472 unittest.expect(o.kind, unittest.equals('foo')); |
| 2473 unittest.expect(o.value, unittest.equals('foo')); | 2473 unittest.expect(o.value, unittest.equals('foo')); |
| 2474 } | 2474 } |
| 2475 buildCounterCreativeFieldValue--; | 2475 buildCounterCreativeFieldValue--; |
| 2476 } | 2476 } |
| 2477 | 2477 |
| 2478 buildUnnamed1348() { | 2478 buildUnnamed1360() { |
| 2479 var o = new core.List<api.CreativeFieldValue>(); | 2479 var o = new core.List<api.CreativeFieldValue>(); |
| 2480 o.add(buildCreativeFieldValue()); | 2480 o.add(buildCreativeFieldValue()); |
| 2481 o.add(buildCreativeFieldValue()); | 2481 o.add(buildCreativeFieldValue()); |
| 2482 return o; | 2482 return o; |
| 2483 } | 2483 } |
| 2484 | 2484 |
| 2485 checkUnnamed1348(core.List<api.CreativeFieldValue> o) { | 2485 checkUnnamed1360(core.List<api.CreativeFieldValue> o) { |
| 2486 unittest.expect(o, unittest.hasLength(2)); | 2486 unittest.expect(o, unittest.hasLength(2)); |
| 2487 checkCreativeFieldValue(o[0]); | 2487 checkCreativeFieldValue(o[0]); |
| 2488 checkCreativeFieldValue(o[1]); | 2488 checkCreativeFieldValue(o[1]); |
| 2489 } | 2489 } |
| 2490 | 2490 |
| 2491 core.int buildCounterCreativeFieldValuesListResponse = 0; | 2491 core.int buildCounterCreativeFieldValuesListResponse = 0; |
| 2492 buildCreativeFieldValuesListResponse() { | 2492 buildCreativeFieldValuesListResponse() { |
| 2493 var o = new api.CreativeFieldValuesListResponse(); | 2493 var o = new api.CreativeFieldValuesListResponse(); |
| 2494 buildCounterCreativeFieldValuesListResponse++; | 2494 buildCounterCreativeFieldValuesListResponse++; |
| 2495 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2495 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2496 o.creativeFieldValues = buildUnnamed1348(); | 2496 o.creativeFieldValues = buildUnnamed1360(); |
| 2497 o.kind = "foo"; | 2497 o.kind = "foo"; |
| 2498 o.nextPageToken = "foo"; | 2498 o.nextPageToken = "foo"; |
| 2499 } | 2499 } |
| 2500 buildCounterCreativeFieldValuesListResponse--; | 2500 buildCounterCreativeFieldValuesListResponse--; |
| 2501 return o; | 2501 return o; |
| 2502 } | 2502 } |
| 2503 | 2503 |
| 2504 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { | 2504 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { |
| 2505 buildCounterCreativeFieldValuesListResponse++; | 2505 buildCounterCreativeFieldValuesListResponse++; |
| 2506 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2506 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2507 checkUnnamed1348(o.creativeFieldValues); | 2507 checkUnnamed1360(o.creativeFieldValues); |
| 2508 unittest.expect(o.kind, unittest.equals('foo')); | 2508 unittest.expect(o.kind, unittest.equals('foo')); |
| 2509 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2509 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2510 } | 2510 } |
| 2511 buildCounterCreativeFieldValuesListResponse--; | 2511 buildCounterCreativeFieldValuesListResponse--; |
| 2512 } | 2512 } |
| 2513 | 2513 |
| 2514 buildUnnamed1349() { | 2514 buildUnnamed1361() { |
| 2515 var o = new core.List<api.CreativeField>(); | 2515 var o = new core.List<api.CreativeField>(); |
| 2516 o.add(buildCreativeField()); | 2516 o.add(buildCreativeField()); |
| 2517 o.add(buildCreativeField()); | 2517 o.add(buildCreativeField()); |
| 2518 return o; | 2518 return o; |
| 2519 } | 2519 } |
| 2520 | 2520 |
| 2521 checkUnnamed1349(core.List<api.CreativeField> o) { | 2521 checkUnnamed1361(core.List<api.CreativeField> o) { |
| 2522 unittest.expect(o, unittest.hasLength(2)); | 2522 unittest.expect(o, unittest.hasLength(2)); |
| 2523 checkCreativeField(o[0]); | 2523 checkCreativeField(o[0]); |
| 2524 checkCreativeField(o[1]); | 2524 checkCreativeField(o[1]); |
| 2525 } | 2525 } |
| 2526 | 2526 |
| 2527 core.int buildCounterCreativeFieldsListResponse = 0; | 2527 core.int buildCounterCreativeFieldsListResponse = 0; |
| 2528 buildCreativeFieldsListResponse() { | 2528 buildCreativeFieldsListResponse() { |
| 2529 var o = new api.CreativeFieldsListResponse(); | 2529 var o = new api.CreativeFieldsListResponse(); |
| 2530 buildCounterCreativeFieldsListResponse++; | 2530 buildCounterCreativeFieldsListResponse++; |
| 2531 if (buildCounterCreativeFieldsListResponse < 3) { | 2531 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2532 o.creativeFields = buildUnnamed1349(); | 2532 o.creativeFields = buildUnnamed1361(); |
| 2533 o.kind = "foo"; | 2533 o.kind = "foo"; |
| 2534 o.nextPageToken = "foo"; | 2534 o.nextPageToken = "foo"; |
| 2535 } | 2535 } |
| 2536 buildCounterCreativeFieldsListResponse--; | 2536 buildCounterCreativeFieldsListResponse--; |
| 2537 return o; | 2537 return o; |
| 2538 } | 2538 } |
| 2539 | 2539 |
| 2540 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { | 2540 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { |
| 2541 buildCounterCreativeFieldsListResponse++; | 2541 buildCounterCreativeFieldsListResponse++; |
| 2542 if (buildCounterCreativeFieldsListResponse < 3) { | 2542 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2543 checkUnnamed1349(o.creativeFields); | 2543 checkUnnamed1361(o.creativeFields); |
| 2544 unittest.expect(o.kind, unittest.equals('foo')); | 2544 unittest.expect(o.kind, unittest.equals('foo')); |
| 2545 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2545 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2546 } | 2546 } |
| 2547 buildCounterCreativeFieldsListResponse--; | 2547 buildCounterCreativeFieldsListResponse--; |
| 2548 } | 2548 } |
| 2549 | 2549 |
| 2550 core.int buildCounterCreativeGroup = 0; | 2550 core.int buildCounterCreativeGroup = 0; |
| 2551 buildCreativeGroup() { | 2551 buildCreativeGroup() { |
| 2552 var o = new api.CreativeGroup(); | 2552 var o = new api.CreativeGroup(); |
| 2553 buildCounterCreativeGroup++; | 2553 buildCounterCreativeGroup++; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2594 | 2594 |
| 2595 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { | 2595 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { |
| 2596 buildCounterCreativeGroupAssignment++; | 2596 buildCounterCreativeGroupAssignment++; |
| 2597 if (buildCounterCreativeGroupAssignment < 3) { | 2597 if (buildCounterCreativeGroupAssignment < 3) { |
| 2598 unittest.expect(o.creativeGroupId, unittest.equals('foo')); | 2598 unittest.expect(o.creativeGroupId, unittest.equals('foo')); |
| 2599 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); | 2599 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); |
| 2600 } | 2600 } |
| 2601 buildCounterCreativeGroupAssignment--; | 2601 buildCounterCreativeGroupAssignment--; |
| 2602 } | 2602 } |
| 2603 | 2603 |
| 2604 buildUnnamed1350() { | 2604 buildUnnamed1362() { |
| 2605 var o = new core.List<api.CreativeGroup>(); | 2605 var o = new core.List<api.CreativeGroup>(); |
| 2606 o.add(buildCreativeGroup()); | 2606 o.add(buildCreativeGroup()); |
| 2607 o.add(buildCreativeGroup()); | 2607 o.add(buildCreativeGroup()); |
| 2608 return o; | 2608 return o; |
| 2609 } | 2609 } |
| 2610 | 2610 |
| 2611 checkUnnamed1350(core.List<api.CreativeGroup> o) { | 2611 checkUnnamed1362(core.List<api.CreativeGroup> o) { |
| 2612 unittest.expect(o, unittest.hasLength(2)); | 2612 unittest.expect(o, unittest.hasLength(2)); |
| 2613 checkCreativeGroup(o[0]); | 2613 checkCreativeGroup(o[0]); |
| 2614 checkCreativeGroup(o[1]); | 2614 checkCreativeGroup(o[1]); |
| 2615 } | 2615 } |
| 2616 | 2616 |
| 2617 core.int buildCounterCreativeGroupsListResponse = 0; | 2617 core.int buildCounterCreativeGroupsListResponse = 0; |
| 2618 buildCreativeGroupsListResponse() { | 2618 buildCreativeGroupsListResponse() { |
| 2619 var o = new api.CreativeGroupsListResponse(); | 2619 var o = new api.CreativeGroupsListResponse(); |
| 2620 buildCounterCreativeGroupsListResponse++; | 2620 buildCounterCreativeGroupsListResponse++; |
| 2621 if (buildCounterCreativeGroupsListResponse < 3) { | 2621 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2622 o.creativeGroups = buildUnnamed1350(); | 2622 o.creativeGroups = buildUnnamed1362(); |
| 2623 o.kind = "foo"; | 2623 o.kind = "foo"; |
| 2624 o.nextPageToken = "foo"; | 2624 o.nextPageToken = "foo"; |
| 2625 } | 2625 } |
| 2626 buildCounterCreativeGroupsListResponse--; | 2626 buildCounterCreativeGroupsListResponse--; |
| 2627 return o; | 2627 return o; |
| 2628 } | 2628 } |
| 2629 | 2629 |
| 2630 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { | 2630 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { |
| 2631 buildCounterCreativeGroupsListResponse++; | 2631 buildCounterCreativeGroupsListResponse++; |
| 2632 if (buildCounterCreativeGroupsListResponse < 3) { | 2632 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2633 checkUnnamed1350(o.creativeGroups); | 2633 checkUnnamed1362(o.creativeGroups); |
| 2634 unittest.expect(o.kind, unittest.equals('foo')); | 2634 unittest.expect(o.kind, unittest.equals('foo')); |
| 2635 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2635 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2636 } | 2636 } |
| 2637 buildCounterCreativeGroupsListResponse--; | 2637 buildCounterCreativeGroupsListResponse--; |
| 2638 } | 2638 } |
| 2639 | 2639 |
| 2640 buildUnnamed1351() { | 2640 buildUnnamed1363() { |
| 2641 var o = new core.List<api.OptimizationActivity>(); | 2641 var o = new core.List<api.OptimizationActivity>(); |
| 2642 o.add(buildOptimizationActivity()); | 2642 o.add(buildOptimizationActivity()); |
| 2643 o.add(buildOptimizationActivity()); | 2643 o.add(buildOptimizationActivity()); |
| 2644 return o; | 2644 return o; |
| 2645 } | 2645 } |
| 2646 | 2646 |
| 2647 checkUnnamed1351(core.List<api.OptimizationActivity> o) { | 2647 checkUnnamed1363(core.List<api.OptimizationActivity> o) { |
| 2648 unittest.expect(o, unittest.hasLength(2)); | 2648 unittest.expect(o, unittest.hasLength(2)); |
| 2649 checkOptimizationActivity(o[0]); | 2649 checkOptimizationActivity(o[0]); |
| 2650 checkOptimizationActivity(o[1]); | 2650 checkOptimizationActivity(o[1]); |
| 2651 } | 2651 } |
| 2652 | 2652 |
| 2653 core.int buildCounterCreativeOptimizationConfiguration = 0; | 2653 core.int buildCounterCreativeOptimizationConfiguration = 0; |
| 2654 buildCreativeOptimizationConfiguration() { | 2654 buildCreativeOptimizationConfiguration() { |
| 2655 var o = new api.CreativeOptimizationConfiguration(); | 2655 var o = new api.CreativeOptimizationConfiguration(); |
| 2656 buildCounterCreativeOptimizationConfiguration++; | 2656 buildCounterCreativeOptimizationConfiguration++; |
| 2657 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2657 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2658 o.id = "foo"; | 2658 o.id = "foo"; |
| 2659 o.name = "foo"; | 2659 o.name = "foo"; |
| 2660 o.optimizationActivitys = buildUnnamed1351(); | 2660 o.optimizationActivitys = buildUnnamed1363(); |
| 2661 o.optimizationModel = "foo"; | 2661 o.optimizationModel = "foo"; |
| 2662 } | 2662 } |
| 2663 buildCounterCreativeOptimizationConfiguration--; | 2663 buildCounterCreativeOptimizationConfiguration--; |
| 2664 return o; | 2664 return o; |
| 2665 } | 2665 } |
| 2666 | 2666 |
| 2667 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ | 2667 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ |
| 2668 buildCounterCreativeOptimizationConfiguration++; | 2668 buildCounterCreativeOptimizationConfiguration++; |
| 2669 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2669 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2670 unittest.expect(o.id, unittest.equals('foo')); | 2670 unittest.expect(o.id, unittest.equals('foo')); |
| 2671 unittest.expect(o.name, unittest.equals('foo')); | 2671 unittest.expect(o.name, unittest.equals('foo')); |
| 2672 checkUnnamed1351(o.optimizationActivitys); | 2672 checkUnnamed1363(o.optimizationActivitys); |
| 2673 unittest.expect(o.optimizationModel, unittest.equals('foo')); | 2673 unittest.expect(o.optimizationModel, unittest.equals('foo')); |
| 2674 } | 2674 } |
| 2675 buildCounterCreativeOptimizationConfiguration--; | 2675 buildCounterCreativeOptimizationConfiguration--; |
| 2676 } | 2676 } |
| 2677 | 2677 |
| 2678 buildUnnamed1352() { | 2678 buildUnnamed1364() { |
| 2679 var o = new core.List<api.CreativeAssignment>(); | 2679 var o = new core.List<api.CreativeAssignment>(); |
| 2680 o.add(buildCreativeAssignment()); | 2680 o.add(buildCreativeAssignment()); |
| 2681 o.add(buildCreativeAssignment()); | 2681 o.add(buildCreativeAssignment()); |
| 2682 return o; | 2682 return o; |
| 2683 } | 2683 } |
| 2684 | 2684 |
| 2685 checkUnnamed1352(core.List<api.CreativeAssignment> o) { | 2685 checkUnnamed1364(core.List<api.CreativeAssignment> o) { |
| 2686 unittest.expect(o, unittest.hasLength(2)); | 2686 unittest.expect(o, unittest.hasLength(2)); |
| 2687 checkCreativeAssignment(o[0]); | 2687 checkCreativeAssignment(o[0]); |
| 2688 checkCreativeAssignment(o[1]); | 2688 checkCreativeAssignment(o[1]); |
| 2689 } | 2689 } |
| 2690 | 2690 |
| 2691 core.int buildCounterCreativeRotation = 0; | 2691 core.int buildCounterCreativeRotation = 0; |
| 2692 buildCreativeRotation() { | 2692 buildCreativeRotation() { |
| 2693 var o = new api.CreativeRotation(); | 2693 var o = new api.CreativeRotation(); |
| 2694 buildCounterCreativeRotation++; | 2694 buildCounterCreativeRotation++; |
| 2695 if (buildCounterCreativeRotation < 3) { | 2695 if (buildCounterCreativeRotation < 3) { |
| 2696 o.creativeAssignments = buildUnnamed1352(); | 2696 o.creativeAssignments = buildUnnamed1364(); |
| 2697 o.creativeOptimizationConfigurationId = "foo"; | 2697 o.creativeOptimizationConfigurationId = "foo"; |
| 2698 o.type = "foo"; | 2698 o.type = "foo"; |
| 2699 o.weightCalculationStrategy = "foo"; | 2699 o.weightCalculationStrategy = "foo"; |
| 2700 } | 2700 } |
| 2701 buildCounterCreativeRotation--; | 2701 buildCounterCreativeRotation--; |
| 2702 return o; | 2702 return o; |
| 2703 } | 2703 } |
| 2704 | 2704 |
| 2705 checkCreativeRotation(api.CreativeRotation o) { | 2705 checkCreativeRotation(api.CreativeRotation o) { |
| 2706 buildCounterCreativeRotation++; | 2706 buildCounterCreativeRotation++; |
| 2707 if (buildCounterCreativeRotation < 3) { | 2707 if (buildCounterCreativeRotation < 3) { |
| 2708 checkUnnamed1352(o.creativeAssignments); | 2708 checkUnnamed1364(o.creativeAssignments); |
| 2709 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); | 2709 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); |
| 2710 unittest.expect(o.type, unittest.equals('foo')); | 2710 unittest.expect(o.type, unittest.equals('foo')); |
| 2711 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); | 2711 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); |
| 2712 } | 2712 } |
| 2713 buildCounterCreativeRotation--; | 2713 buildCounterCreativeRotation--; |
| 2714 } | 2714 } |
| 2715 | 2715 |
| 2716 core.int buildCounterCreativeSettings = 0; | 2716 core.int buildCounterCreativeSettings = 0; |
| 2717 buildCreativeSettings() { | 2717 buildCreativeSettings() { |
| 2718 var o = new api.CreativeSettings(); | 2718 var o = new api.CreativeSettings(); |
| 2719 buildCounterCreativeSettings++; | 2719 buildCounterCreativeSettings++; |
| 2720 if (buildCounterCreativeSettings < 3) { | 2720 if (buildCounterCreativeSettings < 3) { |
| 2721 o.iFrameFooter = "foo"; | 2721 o.iFrameFooter = "foo"; |
| 2722 o.iFrameHeader = "foo"; | 2722 o.iFrameHeader = "foo"; |
| 2723 } | 2723 } |
| 2724 buildCounterCreativeSettings--; | 2724 buildCounterCreativeSettings--; |
| 2725 return o; | 2725 return o; |
| 2726 } | 2726 } |
| 2727 | 2727 |
| 2728 checkCreativeSettings(api.CreativeSettings o) { | 2728 checkCreativeSettings(api.CreativeSettings o) { |
| 2729 buildCounterCreativeSettings++; | 2729 buildCounterCreativeSettings++; |
| 2730 if (buildCounterCreativeSettings < 3) { | 2730 if (buildCounterCreativeSettings < 3) { |
| 2731 unittest.expect(o.iFrameFooter, unittest.equals('foo')); | 2731 unittest.expect(o.iFrameFooter, unittest.equals('foo')); |
| 2732 unittest.expect(o.iFrameHeader, unittest.equals('foo')); | 2732 unittest.expect(o.iFrameHeader, unittest.equals('foo')); |
| 2733 } | 2733 } |
| 2734 buildCounterCreativeSettings--; | 2734 buildCounterCreativeSettings--; |
| 2735 } | 2735 } |
| 2736 | 2736 |
| 2737 buildUnnamed1353() { | 2737 buildUnnamed1365() { |
| 2738 var o = new core.List<api.Creative>(); | 2738 var o = new core.List<api.Creative>(); |
| 2739 o.add(buildCreative()); | 2739 o.add(buildCreative()); |
| 2740 o.add(buildCreative()); | 2740 o.add(buildCreative()); |
| 2741 return o; | 2741 return o; |
| 2742 } | 2742 } |
| 2743 | 2743 |
| 2744 checkUnnamed1353(core.List<api.Creative> o) { | 2744 checkUnnamed1365(core.List<api.Creative> o) { |
| 2745 unittest.expect(o, unittest.hasLength(2)); | 2745 unittest.expect(o, unittest.hasLength(2)); |
| 2746 checkCreative(o[0]); | 2746 checkCreative(o[0]); |
| 2747 checkCreative(o[1]); | 2747 checkCreative(o[1]); |
| 2748 } | 2748 } |
| 2749 | 2749 |
| 2750 core.int buildCounterCreativesListResponse = 0; | 2750 core.int buildCounterCreativesListResponse = 0; |
| 2751 buildCreativesListResponse() { | 2751 buildCreativesListResponse() { |
| 2752 var o = new api.CreativesListResponse(); | 2752 var o = new api.CreativesListResponse(); |
| 2753 buildCounterCreativesListResponse++; | 2753 buildCounterCreativesListResponse++; |
| 2754 if (buildCounterCreativesListResponse < 3) { | 2754 if (buildCounterCreativesListResponse < 3) { |
| 2755 o.creatives = buildUnnamed1353(); | 2755 o.creatives = buildUnnamed1365(); |
| 2756 o.kind = "foo"; | 2756 o.kind = "foo"; |
| 2757 o.nextPageToken = "foo"; | 2757 o.nextPageToken = "foo"; |
| 2758 } | 2758 } |
| 2759 buildCounterCreativesListResponse--; | 2759 buildCounterCreativesListResponse--; |
| 2760 return o; | 2760 return o; |
| 2761 } | 2761 } |
| 2762 | 2762 |
| 2763 checkCreativesListResponse(api.CreativesListResponse o) { | 2763 checkCreativesListResponse(api.CreativesListResponse o) { |
| 2764 buildCounterCreativesListResponse++; | 2764 buildCounterCreativesListResponse++; |
| 2765 if (buildCounterCreativesListResponse < 3) { | 2765 if (buildCounterCreativesListResponse < 3) { |
| 2766 checkUnnamed1353(o.creatives); | 2766 checkUnnamed1365(o.creatives); |
| 2767 unittest.expect(o.kind, unittest.equals('foo')); | 2767 unittest.expect(o.kind, unittest.equals('foo')); |
| 2768 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2768 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2769 } | 2769 } |
| 2770 buildCounterCreativesListResponse--; | 2770 buildCounterCreativesListResponse--; |
| 2771 } | 2771 } |
| 2772 | 2772 |
| 2773 buildUnnamed1354() { | 2773 buildUnnamed1366() { |
| 2774 var o = new core.List<api.Dimension>(); | 2774 var o = new core.List<api.Dimension>(); |
| 2775 o.add(buildDimension()); | 2775 o.add(buildDimension()); |
| 2776 o.add(buildDimension()); | 2776 o.add(buildDimension()); |
| 2777 return o; | 2777 return o; |
| 2778 } | 2778 } |
| 2779 | 2779 |
| 2780 checkUnnamed1354(core.List<api.Dimension> o) { | 2780 checkUnnamed1366(core.List<api.Dimension> o) { |
| 2781 unittest.expect(o, unittest.hasLength(2)); | 2781 unittest.expect(o, unittest.hasLength(2)); |
| 2782 checkDimension(o[0]); | 2782 checkDimension(o[0]); |
| 2783 checkDimension(o[1]); | 2783 checkDimension(o[1]); |
| 2784 } | 2784 } |
| 2785 | 2785 |
| 2786 buildUnnamed1355() { | 2786 buildUnnamed1367() { |
| 2787 var o = new core.List<api.Dimension>(); | 2787 var o = new core.List<api.Dimension>(); |
| 2788 o.add(buildDimension()); | 2788 o.add(buildDimension()); |
| 2789 o.add(buildDimension()); | 2789 o.add(buildDimension()); |
| 2790 return o; | 2790 return o; |
| 2791 } | 2791 } |
| 2792 | 2792 |
| 2793 checkUnnamed1355(core.List<api.Dimension> o) { | 2793 checkUnnamed1367(core.List<api.Dimension> o) { |
| 2794 unittest.expect(o, unittest.hasLength(2)); | 2794 unittest.expect(o, unittest.hasLength(2)); |
| 2795 checkDimension(o[0]); | 2795 checkDimension(o[0]); |
| 2796 checkDimension(o[1]); | 2796 checkDimension(o[1]); |
| 2797 } | 2797 } |
| 2798 | 2798 |
| 2799 buildUnnamed1356() { | 2799 buildUnnamed1368() { |
| 2800 var o = new core.List<api.Metric>(); | 2800 var o = new core.List<api.Metric>(); |
| 2801 o.add(buildMetric()); | 2801 o.add(buildMetric()); |
| 2802 o.add(buildMetric()); | 2802 o.add(buildMetric()); |
| 2803 return o; | 2803 return o; |
| 2804 } | 2804 } |
| 2805 | 2805 |
| 2806 checkUnnamed1356(core.List<api.Metric> o) { | 2806 checkUnnamed1368(core.List<api.Metric> o) { |
| 2807 unittest.expect(o, unittest.hasLength(2)); | 2807 unittest.expect(o, unittest.hasLength(2)); |
| 2808 checkMetric(o[0]); | 2808 checkMetric(o[0]); |
| 2809 checkMetric(o[1]); | 2809 checkMetric(o[1]); |
| 2810 } | 2810 } |
| 2811 | 2811 |
| 2812 buildUnnamed1357() { | 2812 buildUnnamed1369() { |
| 2813 var o = new core.List<api.Metric>(); | 2813 var o = new core.List<api.Metric>(); |
| 2814 o.add(buildMetric()); | 2814 o.add(buildMetric()); |
| 2815 o.add(buildMetric()); | 2815 o.add(buildMetric()); |
| 2816 return o; | 2816 return o; |
| 2817 } | 2817 } |
| 2818 | 2818 |
| 2819 checkUnnamed1357(core.List<api.Metric> o) { | 2819 checkUnnamed1369(core.List<api.Metric> o) { |
| 2820 unittest.expect(o, unittest.hasLength(2)); | 2820 unittest.expect(o, unittest.hasLength(2)); |
| 2821 checkMetric(o[0]); | 2821 checkMetric(o[0]); |
| 2822 checkMetric(o[1]); | 2822 checkMetric(o[1]); |
| 2823 } | 2823 } |
| 2824 | 2824 |
| 2825 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; | 2825 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; |
| 2826 buildCrossDimensionReachReportCompatibleFields() { | 2826 buildCrossDimensionReachReportCompatibleFields() { |
| 2827 var o = new api.CrossDimensionReachReportCompatibleFields(); | 2827 var o = new api.CrossDimensionReachReportCompatibleFields(); |
| 2828 buildCounterCrossDimensionReachReportCompatibleFields++; | 2828 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2829 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2829 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2830 o.breakdown = buildUnnamed1354(); | 2830 o.breakdown = buildUnnamed1366(); |
| 2831 o.dimensionFilters = buildUnnamed1355(); | 2831 o.dimensionFilters = buildUnnamed1367(); |
| 2832 o.kind = "foo"; | 2832 o.kind = "foo"; |
| 2833 o.metrics = buildUnnamed1356(); | 2833 o.metrics = buildUnnamed1368(); |
| 2834 o.overlapMetrics = buildUnnamed1357(); | 2834 o.overlapMetrics = buildUnnamed1369(); |
| 2835 } | 2835 } |
| 2836 buildCounterCrossDimensionReachReportCompatibleFields--; | 2836 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2837 return o; | 2837 return o; |
| 2838 } | 2838 } |
| 2839 | 2839 |
| 2840 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { | 2840 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { |
| 2841 buildCounterCrossDimensionReachReportCompatibleFields++; | 2841 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2842 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2842 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2843 checkUnnamed1354(o.breakdown); | 2843 checkUnnamed1366(o.breakdown); |
| 2844 checkUnnamed1355(o.dimensionFilters); | 2844 checkUnnamed1367(o.dimensionFilters); |
| 2845 unittest.expect(o.kind, unittest.equals('foo')); | 2845 unittest.expect(o.kind, unittest.equals('foo')); |
| 2846 checkUnnamed1356(o.metrics); | 2846 checkUnnamed1368(o.metrics); |
| 2847 checkUnnamed1357(o.overlapMetrics); | 2847 checkUnnamed1369(o.overlapMetrics); |
| 2848 } | 2848 } |
| 2849 buildCounterCrossDimensionReachReportCompatibleFields--; | 2849 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2850 } | 2850 } |
| 2851 | 2851 |
| 2852 core.int buildCounterCustomFloodlightVariable = 0; | 2852 core.int buildCounterCustomFloodlightVariable = 0; |
| 2853 buildCustomFloodlightVariable() { | 2853 buildCustomFloodlightVariable() { |
| 2854 var o = new api.CustomFloodlightVariable(); | 2854 var o = new api.CustomFloodlightVariable(); |
| 2855 buildCounterCustomFloodlightVariable++; | 2855 buildCounterCustomFloodlightVariable++; |
| 2856 if (buildCounterCustomFloodlightVariable < 3) { | 2856 if (buildCounterCustomFloodlightVariable < 3) { |
| 2857 o.kind = "foo"; | 2857 o.kind = "foo"; |
| 2858 o.type = "foo"; | 2858 o.type = "foo"; |
| 2859 o.value = "foo"; | 2859 o.value = "foo"; |
| 2860 } | 2860 } |
| 2861 buildCounterCustomFloodlightVariable--; | 2861 buildCounterCustomFloodlightVariable--; |
| 2862 return o; | 2862 return o; |
| 2863 } | 2863 } |
| 2864 | 2864 |
| 2865 checkCustomFloodlightVariable(api.CustomFloodlightVariable o) { | 2865 checkCustomFloodlightVariable(api.CustomFloodlightVariable o) { |
| 2866 buildCounterCustomFloodlightVariable++; | 2866 buildCounterCustomFloodlightVariable++; |
| 2867 if (buildCounterCustomFloodlightVariable < 3) { | 2867 if (buildCounterCustomFloodlightVariable < 3) { |
| 2868 unittest.expect(o.kind, unittest.equals('foo')); | 2868 unittest.expect(o.kind, unittest.equals('foo')); |
| 2869 unittest.expect(o.type, unittest.equals('foo')); | 2869 unittest.expect(o.type, unittest.equals('foo')); |
| 2870 unittest.expect(o.value, unittest.equals('foo')); | 2870 unittest.expect(o.value, unittest.equals('foo')); |
| 2871 } | 2871 } |
| 2872 buildCounterCustomFloodlightVariable--; | 2872 buildCounterCustomFloodlightVariable--; |
| 2873 } | 2873 } |
| 2874 | 2874 |
| 2875 buildUnnamed1358() { | 2875 buildUnnamed1370() { |
| 2876 var o = new core.List<api.DimensionValue>(); | 2876 var o = new core.List<api.DimensionValue>(); |
| 2877 o.add(buildDimensionValue()); | 2877 o.add(buildDimensionValue()); |
| 2878 o.add(buildDimensionValue()); | 2878 o.add(buildDimensionValue()); |
| 2879 return o; | 2879 return o; |
| 2880 } | 2880 } |
| 2881 | 2881 |
| 2882 checkUnnamed1358(core.List<api.DimensionValue> o) { | 2882 checkUnnamed1370(core.List<api.DimensionValue> o) { |
| 2883 unittest.expect(o, unittest.hasLength(2)); | 2883 unittest.expect(o, unittest.hasLength(2)); |
| 2884 checkDimensionValue(o[0]); | 2884 checkDimensionValue(o[0]); |
| 2885 checkDimensionValue(o[1]); | 2885 checkDimensionValue(o[1]); |
| 2886 } | 2886 } |
| 2887 | 2887 |
| 2888 core.int buildCounterCustomRichMediaEvents = 0; | 2888 core.int buildCounterCustomRichMediaEvents = 0; |
| 2889 buildCustomRichMediaEvents() { | 2889 buildCustomRichMediaEvents() { |
| 2890 var o = new api.CustomRichMediaEvents(); | 2890 var o = new api.CustomRichMediaEvents(); |
| 2891 buildCounterCustomRichMediaEvents++; | 2891 buildCounterCustomRichMediaEvents++; |
| 2892 if (buildCounterCustomRichMediaEvents < 3) { | 2892 if (buildCounterCustomRichMediaEvents < 3) { |
| 2893 o.filteredEventIds = buildUnnamed1358(); | 2893 o.filteredEventIds = buildUnnamed1370(); |
| 2894 o.kind = "foo"; | 2894 o.kind = "foo"; |
| 2895 } | 2895 } |
| 2896 buildCounterCustomRichMediaEvents--; | 2896 buildCounterCustomRichMediaEvents--; |
| 2897 return o; | 2897 return o; |
| 2898 } | 2898 } |
| 2899 | 2899 |
| 2900 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { | 2900 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { |
| 2901 buildCounterCustomRichMediaEvents++; | 2901 buildCounterCustomRichMediaEvents++; |
| 2902 if (buildCounterCustomRichMediaEvents < 3) { | 2902 if (buildCounterCustomRichMediaEvents < 3) { |
| 2903 checkUnnamed1358(o.filteredEventIds); | 2903 checkUnnamed1370(o.filteredEventIds); |
| 2904 unittest.expect(o.kind, unittest.equals('foo')); | 2904 unittest.expect(o.kind, unittest.equals('foo')); |
| 2905 } | 2905 } |
| 2906 buildCounterCustomRichMediaEvents--; | 2906 buildCounterCustomRichMediaEvents--; |
| 2907 } | 2907 } |
| 2908 | 2908 |
| 2909 core.int buildCounterDateRange = 0; | 2909 core.int buildCounterDateRange = 0; |
| 2910 buildDateRange() { | 2910 buildDateRange() { |
| 2911 var o = new api.DateRange(); | 2911 var o = new api.DateRange(); |
| 2912 buildCounterDateRange++; | 2912 buildCounterDateRange++; |
| 2913 if (buildCounterDateRange < 3) { | 2913 if (buildCounterDateRange < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 2924 buildCounterDateRange++; | 2924 buildCounterDateRange++; |
| 2925 if (buildCounterDateRange < 3) { | 2925 if (buildCounterDateRange < 3) { |
| 2926 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2926 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2927 unittest.expect(o.kind, unittest.equals('foo')); | 2927 unittest.expect(o.kind, unittest.equals('foo')); |
| 2928 unittest.expect(o.relativeDateRange, unittest.equals('foo')); | 2928 unittest.expect(o.relativeDateRange, unittest.equals('foo')); |
| 2929 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2929 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2930 } | 2930 } |
| 2931 buildCounterDateRange--; | 2931 buildCounterDateRange--; |
| 2932 } | 2932 } |
| 2933 | 2933 |
| 2934 buildUnnamed1359() { | 2934 buildUnnamed1371() { |
| 2935 var o = new core.List<core.String>(); | 2935 var o = new core.List<core.String>(); |
| 2936 o.add("foo"); | 2936 o.add("foo"); |
| 2937 o.add("foo"); | 2937 o.add("foo"); |
| 2938 return o; | 2938 return o; |
| 2939 } | 2939 } |
| 2940 | 2940 |
| 2941 checkUnnamed1359(core.List<core.String> o) { | 2941 checkUnnamed1371(core.List<core.String> o) { |
| 2942 unittest.expect(o, unittest.hasLength(2)); | 2942 unittest.expect(o, unittest.hasLength(2)); |
| 2943 unittest.expect(o[0], unittest.equals('foo')); | 2943 unittest.expect(o[0], unittest.equals('foo')); |
| 2944 unittest.expect(o[1], unittest.equals('foo')); | 2944 unittest.expect(o[1], unittest.equals('foo')); |
| 2945 } | 2945 } |
| 2946 | 2946 |
| 2947 buildUnnamed1360() { | 2947 buildUnnamed1372() { |
| 2948 var o = new core.List<core.int>(); | 2948 var o = new core.List<core.int>(); |
| 2949 o.add(42); | 2949 o.add(42); |
| 2950 o.add(42); | 2950 o.add(42); |
| 2951 return o; | 2951 return o; |
| 2952 } | 2952 } |
| 2953 | 2953 |
| 2954 checkUnnamed1360(core.List<core.int> o) { | 2954 checkUnnamed1372(core.List<core.int> o) { |
| 2955 unittest.expect(o, unittest.hasLength(2)); | 2955 unittest.expect(o, unittest.hasLength(2)); |
| 2956 unittest.expect(o[0], unittest.equals(42)); | 2956 unittest.expect(o[0], unittest.equals(42)); |
| 2957 unittest.expect(o[1], unittest.equals(42)); | 2957 unittest.expect(o[1], unittest.equals(42)); |
| 2958 } | 2958 } |
| 2959 | 2959 |
| 2960 core.int buildCounterDayPartTargeting = 0; | 2960 core.int buildCounterDayPartTargeting = 0; |
| 2961 buildDayPartTargeting() { | 2961 buildDayPartTargeting() { |
| 2962 var o = new api.DayPartTargeting(); | 2962 var o = new api.DayPartTargeting(); |
| 2963 buildCounterDayPartTargeting++; | 2963 buildCounterDayPartTargeting++; |
| 2964 if (buildCounterDayPartTargeting < 3) { | 2964 if (buildCounterDayPartTargeting < 3) { |
| 2965 o.daysOfWeek = buildUnnamed1359(); | 2965 o.daysOfWeek = buildUnnamed1371(); |
| 2966 o.hoursOfDay = buildUnnamed1360(); | 2966 o.hoursOfDay = buildUnnamed1372(); |
| 2967 o.userLocalTime = true; | 2967 o.userLocalTime = true; |
| 2968 } | 2968 } |
| 2969 buildCounterDayPartTargeting--; | 2969 buildCounterDayPartTargeting--; |
| 2970 return o; | 2970 return o; |
| 2971 } | 2971 } |
| 2972 | 2972 |
| 2973 checkDayPartTargeting(api.DayPartTargeting o) { | 2973 checkDayPartTargeting(api.DayPartTargeting o) { |
| 2974 buildCounterDayPartTargeting++; | 2974 buildCounterDayPartTargeting++; |
| 2975 if (buildCounterDayPartTargeting < 3) { | 2975 if (buildCounterDayPartTargeting < 3) { |
| 2976 checkUnnamed1359(o.daysOfWeek); | 2976 checkUnnamed1371(o.daysOfWeek); |
| 2977 checkUnnamed1360(o.hoursOfDay); | 2977 checkUnnamed1372(o.hoursOfDay); |
| 2978 unittest.expect(o.userLocalTime, unittest.isTrue); | 2978 unittest.expect(o.userLocalTime, unittest.isTrue); |
| 2979 } | 2979 } |
| 2980 buildCounterDayPartTargeting--; | 2980 buildCounterDayPartTargeting--; |
| 2981 } | 2981 } |
| 2982 | 2982 |
| 2983 core.int buildCounterDefaultClickThroughEventTagProperties = 0; | 2983 core.int buildCounterDefaultClickThroughEventTagProperties = 0; |
| 2984 buildDefaultClickThroughEventTagProperties() { | 2984 buildDefaultClickThroughEventTagProperties() { |
| 2985 var o = new api.DefaultClickThroughEventTagProperties(); | 2985 var o = new api.DefaultClickThroughEventTagProperties(); |
| 2986 buildCounterDefaultClickThroughEventTagProperties++; | 2986 buildCounterDefaultClickThroughEventTagProperties++; |
| 2987 if (buildCounterDefaultClickThroughEventTagProperties < 3) { | 2987 if (buildCounterDefaultClickThroughEventTagProperties < 3) { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3119 unittest.expect(o.dimensionName, unittest.equals('foo')); | 3119 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 3120 unittest.expect(o.etag, unittest.equals('foo')); | 3120 unittest.expect(o.etag, unittest.equals('foo')); |
| 3121 unittest.expect(o.id, unittest.equals('foo')); | 3121 unittest.expect(o.id, unittest.equals('foo')); |
| 3122 unittest.expect(o.kind, unittest.equals('foo')); | 3122 unittest.expect(o.kind, unittest.equals('foo')); |
| 3123 unittest.expect(o.matchType, unittest.equals('foo')); | 3123 unittest.expect(o.matchType, unittest.equals('foo')); |
| 3124 unittest.expect(o.value, unittest.equals('foo')); | 3124 unittest.expect(o.value, unittest.equals('foo')); |
| 3125 } | 3125 } |
| 3126 buildCounterDimensionValue--; | 3126 buildCounterDimensionValue--; |
| 3127 } | 3127 } |
| 3128 | 3128 |
| 3129 buildUnnamed1361() { | 3129 buildUnnamed1373() { |
| 3130 var o = new core.List<api.DimensionValue>(); | 3130 var o = new core.List<api.DimensionValue>(); |
| 3131 o.add(buildDimensionValue()); | 3131 o.add(buildDimensionValue()); |
| 3132 o.add(buildDimensionValue()); | 3132 o.add(buildDimensionValue()); |
| 3133 return o; | 3133 return o; |
| 3134 } | 3134 } |
| 3135 | 3135 |
| 3136 checkUnnamed1361(core.List<api.DimensionValue> o) { | 3136 checkUnnamed1373(core.List<api.DimensionValue> o) { |
| 3137 unittest.expect(o, unittest.hasLength(2)); | 3137 unittest.expect(o, unittest.hasLength(2)); |
| 3138 checkDimensionValue(o[0]); | 3138 checkDimensionValue(o[0]); |
| 3139 checkDimensionValue(o[1]); | 3139 checkDimensionValue(o[1]); |
| 3140 } | 3140 } |
| 3141 | 3141 |
| 3142 core.int buildCounterDimensionValueList = 0; | 3142 core.int buildCounterDimensionValueList = 0; |
| 3143 buildDimensionValueList() { | 3143 buildDimensionValueList() { |
| 3144 var o = new api.DimensionValueList(); | 3144 var o = new api.DimensionValueList(); |
| 3145 buildCounterDimensionValueList++; | 3145 buildCounterDimensionValueList++; |
| 3146 if (buildCounterDimensionValueList < 3) { | 3146 if (buildCounterDimensionValueList < 3) { |
| 3147 o.etag = "foo"; | 3147 o.etag = "foo"; |
| 3148 o.items = buildUnnamed1361(); | 3148 o.items = buildUnnamed1373(); |
| 3149 o.kind = "foo"; | 3149 o.kind = "foo"; |
| 3150 o.nextPageToken = "foo"; | 3150 o.nextPageToken = "foo"; |
| 3151 } | 3151 } |
| 3152 buildCounterDimensionValueList--; | 3152 buildCounterDimensionValueList--; |
| 3153 return o; | 3153 return o; |
| 3154 } | 3154 } |
| 3155 | 3155 |
| 3156 checkDimensionValueList(api.DimensionValueList o) { | 3156 checkDimensionValueList(api.DimensionValueList o) { |
| 3157 buildCounterDimensionValueList++; | 3157 buildCounterDimensionValueList++; |
| 3158 if (buildCounterDimensionValueList < 3) { | 3158 if (buildCounterDimensionValueList < 3) { |
| 3159 unittest.expect(o.etag, unittest.equals('foo')); | 3159 unittest.expect(o.etag, unittest.equals('foo')); |
| 3160 checkUnnamed1361(o.items); | 3160 checkUnnamed1373(o.items); |
| 3161 unittest.expect(o.kind, unittest.equals('foo')); | 3161 unittest.expect(o.kind, unittest.equals('foo')); |
| 3162 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3162 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3163 } | 3163 } |
| 3164 buildCounterDimensionValueList--; | 3164 buildCounterDimensionValueList--; |
| 3165 } | 3165 } |
| 3166 | 3166 |
| 3167 buildUnnamed1362() { | 3167 buildUnnamed1374() { |
| 3168 var o = new core.List<api.DimensionFilter>(); | 3168 var o = new core.List<api.DimensionFilter>(); |
| 3169 o.add(buildDimensionFilter()); | 3169 o.add(buildDimensionFilter()); |
| 3170 o.add(buildDimensionFilter()); | 3170 o.add(buildDimensionFilter()); |
| 3171 return o; | 3171 return o; |
| 3172 } | 3172 } |
| 3173 | 3173 |
| 3174 checkUnnamed1362(core.List<api.DimensionFilter> o) { | 3174 checkUnnamed1374(core.List<api.DimensionFilter> o) { |
| 3175 unittest.expect(o, unittest.hasLength(2)); | 3175 unittest.expect(o, unittest.hasLength(2)); |
| 3176 checkDimensionFilter(o[0]); | 3176 checkDimensionFilter(o[0]); |
| 3177 checkDimensionFilter(o[1]); | 3177 checkDimensionFilter(o[1]); |
| 3178 } | 3178 } |
| 3179 | 3179 |
| 3180 core.int buildCounterDimensionValueRequest = 0; | 3180 core.int buildCounterDimensionValueRequest = 0; |
| 3181 buildDimensionValueRequest() { | 3181 buildDimensionValueRequest() { |
| 3182 var o = new api.DimensionValueRequest(); | 3182 var o = new api.DimensionValueRequest(); |
| 3183 buildCounterDimensionValueRequest++; | 3183 buildCounterDimensionValueRequest++; |
| 3184 if (buildCounterDimensionValueRequest < 3) { | 3184 if (buildCounterDimensionValueRequest < 3) { |
| 3185 o.dimensionName = "foo"; | 3185 o.dimensionName = "foo"; |
| 3186 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 3186 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 3187 o.filters = buildUnnamed1362(); | 3187 o.filters = buildUnnamed1374(); |
| 3188 o.kind = "foo"; | 3188 o.kind = "foo"; |
| 3189 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 3189 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 3190 } | 3190 } |
| 3191 buildCounterDimensionValueRequest--; | 3191 buildCounterDimensionValueRequest--; |
| 3192 return o; | 3192 return o; |
| 3193 } | 3193 } |
| 3194 | 3194 |
| 3195 checkDimensionValueRequest(api.DimensionValueRequest o) { | 3195 checkDimensionValueRequest(api.DimensionValueRequest o) { |
| 3196 buildCounterDimensionValueRequest++; | 3196 buildCounterDimensionValueRequest++; |
| 3197 if (buildCounterDimensionValueRequest < 3) { | 3197 if (buildCounterDimensionValueRequest < 3) { |
| 3198 unittest.expect(o.dimensionName, unittest.equals('foo')); | 3198 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 3199 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 3199 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 3200 checkUnnamed1362(o.filters); | 3200 checkUnnamed1374(o.filters); |
| 3201 unittest.expect(o.kind, unittest.equals('foo')); | 3201 unittest.expect(o.kind, unittest.equals('foo')); |
| 3202 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 3202 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 3203 } | 3203 } |
| 3204 buildCounterDimensionValueRequest--; | 3204 buildCounterDimensionValueRequest--; |
| 3205 } | 3205 } |
| 3206 | 3206 |
| 3207 buildUnnamed1363() { | 3207 buildUnnamed1375() { |
| 3208 var o = new core.List<api.DirectorySiteContactAssignment>(); | 3208 var o = new core.List<api.DirectorySiteContactAssignment>(); |
| 3209 o.add(buildDirectorySiteContactAssignment()); | 3209 o.add(buildDirectorySiteContactAssignment()); |
| 3210 o.add(buildDirectorySiteContactAssignment()); | 3210 o.add(buildDirectorySiteContactAssignment()); |
| 3211 return o; | 3211 return o; |
| 3212 } | 3212 } |
| 3213 | 3213 |
| 3214 checkUnnamed1363(core.List<api.DirectorySiteContactAssignment> o) { | 3214 checkUnnamed1375(core.List<api.DirectorySiteContactAssignment> o) { |
| 3215 unittest.expect(o, unittest.hasLength(2)); | 3215 unittest.expect(o, unittest.hasLength(2)); |
| 3216 checkDirectorySiteContactAssignment(o[0]); | 3216 checkDirectorySiteContactAssignment(o[0]); |
| 3217 checkDirectorySiteContactAssignment(o[1]); | 3217 checkDirectorySiteContactAssignment(o[1]); |
| 3218 } | 3218 } |
| 3219 | 3219 |
| 3220 buildUnnamed1364() { | 3220 buildUnnamed1376() { |
| 3221 var o = new core.List<core.String>(); | 3221 var o = new core.List<core.String>(); |
| 3222 o.add("foo"); | 3222 o.add("foo"); |
| 3223 o.add("foo"); | 3223 o.add("foo"); |
| 3224 return o; | 3224 return o; |
| 3225 } | 3225 } |
| 3226 | 3226 |
| 3227 checkUnnamed1364(core.List<core.String> o) { | 3227 checkUnnamed1376(core.List<core.String> o) { |
| 3228 unittest.expect(o, unittest.hasLength(2)); | 3228 unittest.expect(o, unittest.hasLength(2)); |
| 3229 unittest.expect(o[0], unittest.equals('foo')); | 3229 unittest.expect(o[0], unittest.equals('foo')); |
| 3230 unittest.expect(o[1], unittest.equals('foo')); | 3230 unittest.expect(o[1], unittest.equals('foo')); |
| 3231 } | 3231 } |
| 3232 | 3232 |
| 3233 buildUnnamed1365() { | 3233 buildUnnamed1377() { |
| 3234 var o = new core.List<core.String>(); | 3234 var o = new core.List<core.String>(); |
| 3235 o.add("foo"); | 3235 o.add("foo"); |
| 3236 o.add("foo"); | 3236 o.add("foo"); |
| 3237 return o; | 3237 return o; |
| 3238 } | 3238 } |
| 3239 | 3239 |
| 3240 checkUnnamed1365(core.List<core.String> o) { | 3240 checkUnnamed1377(core.List<core.String> o) { |
| 3241 unittest.expect(o, unittest.hasLength(2)); | 3241 unittest.expect(o, unittest.hasLength(2)); |
| 3242 unittest.expect(o[0], unittest.equals('foo')); | 3242 unittest.expect(o[0], unittest.equals('foo')); |
| 3243 unittest.expect(o[1], unittest.equals('foo')); | 3243 unittest.expect(o[1], unittest.equals('foo')); |
| 3244 } | 3244 } |
| 3245 | 3245 |
| 3246 core.int buildCounterDirectorySite = 0; | 3246 core.int buildCounterDirectorySite = 0; |
| 3247 buildDirectorySite() { | 3247 buildDirectorySite() { |
| 3248 var o = new api.DirectorySite(); | 3248 var o = new api.DirectorySite(); |
| 3249 buildCounterDirectorySite++; | 3249 buildCounterDirectorySite++; |
| 3250 if (buildCounterDirectorySite < 3) { | 3250 if (buildCounterDirectorySite < 3) { |
| 3251 o.active = true; | 3251 o.active = true; |
| 3252 o.contactAssignments = buildUnnamed1363(); | 3252 o.contactAssignments = buildUnnamed1375(); |
| 3253 o.countryId = "foo"; | 3253 o.countryId = "foo"; |
| 3254 o.currencyId = "foo"; | 3254 o.currencyId = "foo"; |
| 3255 o.description = "foo"; | 3255 o.description = "foo"; |
| 3256 o.id = "foo"; | 3256 o.id = "foo"; |
| 3257 o.idDimensionValue = buildDimensionValue(); | 3257 o.idDimensionValue = buildDimensionValue(); |
| 3258 o.inpageTagFormats = buildUnnamed1364(); | 3258 o.inpageTagFormats = buildUnnamed1376(); |
| 3259 o.interstitialTagFormats = buildUnnamed1365(); | 3259 o.interstitialTagFormats = buildUnnamed1377(); |
| 3260 o.kind = "foo"; | 3260 o.kind = "foo"; |
| 3261 o.name = "foo"; | 3261 o.name = "foo"; |
| 3262 o.parentId = "foo"; | 3262 o.parentId = "foo"; |
| 3263 o.settings = buildDirectorySiteSettings(); | 3263 o.settings = buildDirectorySiteSettings(); |
| 3264 o.url = "foo"; | 3264 o.url = "foo"; |
| 3265 } | 3265 } |
| 3266 buildCounterDirectorySite--; | 3266 buildCounterDirectorySite--; |
| 3267 return o; | 3267 return o; |
| 3268 } | 3268 } |
| 3269 | 3269 |
| 3270 checkDirectorySite(api.DirectorySite o) { | 3270 checkDirectorySite(api.DirectorySite o) { |
| 3271 buildCounterDirectorySite++; | 3271 buildCounterDirectorySite++; |
| 3272 if (buildCounterDirectorySite < 3) { | 3272 if (buildCounterDirectorySite < 3) { |
| 3273 unittest.expect(o.active, unittest.isTrue); | 3273 unittest.expect(o.active, unittest.isTrue); |
| 3274 checkUnnamed1363(o.contactAssignments); | 3274 checkUnnamed1375(o.contactAssignments); |
| 3275 unittest.expect(o.countryId, unittest.equals('foo')); | 3275 unittest.expect(o.countryId, unittest.equals('foo')); |
| 3276 unittest.expect(o.currencyId, unittest.equals('foo')); | 3276 unittest.expect(o.currencyId, unittest.equals('foo')); |
| 3277 unittest.expect(o.description, unittest.equals('foo')); | 3277 unittest.expect(o.description, unittest.equals('foo')); |
| 3278 unittest.expect(o.id, unittest.equals('foo')); | 3278 unittest.expect(o.id, unittest.equals('foo')); |
| 3279 checkDimensionValue(o.idDimensionValue); | 3279 checkDimensionValue(o.idDimensionValue); |
| 3280 checkUnnamed1364(o.inpageTagFormats); | 3280 checkUnnamed1376(o.inpageTagFormats); |
| 3281 checkUnnamed1365(o.interstitialTagFormats); | 3281 checkUnnamed1377(o.interstitialTagFormats); |
| 3282 unittest.expect(o.kind, unittest.equals('foo')); | 3282 unittest.expect(o.kind, unittest.equals('foo')); |
| 3283 unittest.expect(o.name, unittest.equals('foo')); | 3283 unittest.expect(o.name, unittest.equals('foo')); |
| 3284 unittest.expect(o.parentId, unittest.equals('foo')); | 3284 unittest.expect(o.parentId, unittest.equals('foo')); |
| 3285 checkDirectorySiteSettings(o.settings); | 3285 checkDirectorySiteSettings(o.settings); |
| 3286 unittest.expect(o.url, unittest.equals('foo')); | 3286 unittest.expect(o.url, unittest.equals('foo')); |
| 3287 } | 3287 } |
| 3288 buildCounterDirectorySite--; | 3288 buildCounterDirectorySite--; |
| 3289 } | 3289 } |
| 3290 | 3290 |
| 3291 core.int buildCounterDirectorySiteContact = 0; | 3291 core.int buildCounterDirectorySiteContact = 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3339 | 3339 |
| 3340 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { | 3340 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { |
| 3341 buildCounterDirectorySiteContactAssignment++; | 3341 buildCounterDirectorySiteContactAssignment++; |
| 3342 if (buildCounterDirectorySiteContactAssignment < 3) { | 3342 if (buildCounterDirectorySiteContactAssignment < 3) { |
| 3343 unittest.expect(o.contactId, unittest.equals('foo')); | 3343 unittest.expect(o.contactId, unittest.equals('foo')); |
| 3344 unittest.expect(o.visibility, unittest.equals('foo')); | 3344 unittest.expect(o.visibility, unittest.equals('foo')); |
| 3345 } | 3345 } |
| 3346 buildCounterDirectorySiteContactAssignment--; | 3346 buildCounterDirectorySiteContactAssignment--; |
| 3347 } | 3347 } |
| 3348 | 3348 |
| 3349 buildUnnamed1366() { | 3349 buildUnnamed1378() { |
| 3350 var o = new core.List<api.DirectorySiteContact>(); | 3350 var o = new core.List<api.DirectorySiteContact>(); |
| 3351 o.add(buildDirectorySiteContact()); | 3351 o.add(buildDirectorySiteContact()); |
| 3352 o.add(buildDirectorySiteContact()); | 3352 o.add(buildDirectorySiteContact()); |
| 3353 return o; | 3353 return o; |
| 3354 } | 3354 } |
| 3355 | 3355 |
| 3356 checkUnnamed1366(core.List<api.DirectorySiteContact> o) { | 3356 checkUnnamed1378(core.List<api.DirectorySiteContact> o) { |
| 3357 unittest.expect(o, unittest.hasLength(2)); | 3357 unittest.expect(o, unittest.hasLength(2)); |
| 3358 checkDirectorySiteContact(o[0]); | 3358 checkDirectorySiteContact(o[0]); |
| 3359 checkDirectorySiteContact(o[1]); | 3359 checkDirectorySiteContact(o[1]); |
| 3360 } | 3360 } |
| 3361 | 3361 |
| 3362 core.int buildCounterDirectorySiteContactsListResponse = 0; | 3362 core.int buildCounterDirectorySiteContactsListResponse = 0; |
| 3363 buildDirectorySiteContactsListResponse() { | 3363 buildDirectorySiteContactsListResponse() { |
| 3364 var o = new api.DirectorySiteContactsListResponse(); | 3364 var o = new api.DirectorySiteContactsListResponse(); |
| 3365 buildCounterDirectorySiteContactsListResponse++; | 3365 buildCounterDirectorySiteContactsListResponse++; |
| 3366 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3366 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3367 o.directorySiteContacts = buildUnnamed1366(); | 3367 o.directorySiteContacts = buildUnnamed1378(); |
| 3368 o.kind = "foo"; | 3368 o.kind = "foo"; |
| 3369 o.nextPageToken = "foo"; | 3369 o.nextPageToken = "foo"; |
| 3370 } | 3370 } |
| 3371 buildCounterDirectorySiteContactsListResponse--; | 3371 buildCounterDirectorySiteContactsListResponse--; |
| 3372 return o; | 3372 return o; |
| 3373 } | 3373 } |
| 3374 | 3374 |
| 3375 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ | 3375 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ |
| 3376 buildCounterDirectorySiteContactsListResponse++; | 3376 buildCounterDirectorySiteContactsListResponse++; |
| 3377 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3377 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3378 checkUnnamed1366(o.directorySiteContacts); | 3378 checkUnnamed1378(o.directorySiteContacts); |
| 3379 unittest.expect(o.kind, unittest.equals('foo')); | 3379 unittest.expect(o.kind, unittest.equals('foo')); |
| 3380 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3380 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3381 } | 3381 } |
| 3382 buildCounterDirectorySiteContactsListResponse--; | 3382 buildCounterDirectorySiteContactsListResponse--; |
| 3383 } | 3383 } |
| 3384 | 3384 |
| 3385 core.int buildCounterDirectorySiteSettings = 0; | 3385 core.int buildCounterDirectorySiteSettings = 0; |
| 3386 buildDirectorySiteSettings() { | 3386 buildDirectorySiteSettings() { |
| 3387 var o = new api.DirectorySiteSettings(); | 3387 var o = new api.DirectorySiteSettings(); |
| 3388 buildCounterDirectorySiteSettings++; | 3388 buildCounterDirectorySiteSettings++; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 3406 checkDfpSettings(o.dfpSettings); | 3406 checkDfpSettings(o.dfpSettings); |
| 3407 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); | 3407 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); |
| 3408 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); | 3408 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); |
| 3409 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); | 3409 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); |
| 3410 unittest.expect(o.verificationTagOptOut, unittest.isTrue); | 3410 unittest.expect(o.verificationTagOptOut, unittest.isTrue); |
| 3411 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 3411 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 3412 } | 3412 } |
| 3413 buildCounterDirectorySiteSettings--; | 3413 buildCounterDirectorySiteSettings--; |
| 3414 } | 3414 } |
| 3415 | 3415 |
| 3416 buildUnnamed1367() { | 3416 buildUnnamed1379() { |
| 3417 var o = new core.List<api.DirectorySite>(); | 3417 var o = new core.List<api.DirectorySite>(); |
| 3418 o.add(buildDirectorySite()); | 3418 o.add(buildDirectorySite()); |
| 3419 o.add(buildDirectorySite()); | 3419 o.add(buildDirectorySite()); |
| 3420 return o; | 3420 return o; |
| 3421 } | 3421 } |
| 3422 | 3422 |
| 3423 checkUnnamed1367(core.List<api.DirectorySite> o) { | 3423 checkUnnamed1379(core.List<api.DirectorySite> o) { |
| 3424 unittest.expect(o, unittest.hasLength(2)); | 3424 unittest.expect(o, unittest.hasLength(2)); |
| 3425 checkDirectorySite(o[0]); | 3425 checkDirectorySite(o[0]); |
| 3426 checkDirectorySite(o[1]); | 3426 checkDirectorySite(o[1]); |
| 3427 } | 3427 } |
| 3428 | 3428 |
| 3429 core.int buildCounterDirectorySitesListResponse = 0; | 3429 core.int buildCounterDirectorySitesListResponse = 0; |
| 3430 buildDirectorySitesListResponse() { | 3430 buildDirectorySitesListResponse() { |
| 3431 var o = new api.DirectorySitesListResponse(); | 3431 var o = new api.DirectorySitesListResponse(); |
| 3432 buildCounterDirectorySitesListResponse++; | 3432 buildCounterDirectorySitesListResponse++; |
| 3433 if (buildCounterDirectorySitesListResponse < 3) { | 3433 if (buildCounterDirectorySitesListResponse < 3) { |
| 3434 o.directorySites = buildUnnamed1367(); | 3434 o.directorySites = buildUnnamed1379(); |
| 3435 o.kind = "foo"; | 3435 o.kind = "foo"; |
| 3436 o.nextPageToken = "foo"; | 3436 o.nextPageToken = "foo"; |
| 3437 } | 3437 } |
| 3438 buildCounterDirectorySitesListResponse--; | 3438 buildCounterDirectorySitesListResponse--; |
| 3439 return o; | 3439 return o; |
| 3440 } | 3440 } |
| 3441 | 3441 |
| 3442 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { | 3442 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { |
| 3443 buildCounterDirectorySitesListResponse++; | 3443 buildCounterDirectorySitesListResponse++; |
| 3444 if (buildCounterDirectorySitesListResponse < 3) { | 3444 if (buildCounterDirectorySitesListResponse < 3) { |
| 3445 checkUnnamed1367(o.directorySites); | 3445 checkUnnamed1379(o.directorySites); |
| 3446 unittest.expect(o.kind, unittest.equals('foo')); | 3446 unittest.expect(o.kind, unittest.equals('foo')); |
| 3447 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3447 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3448 } | 3448 } |
| 3449 buildCounterDirectorySitesListResponse--; | 3449 buildCounterDirectorySitesListResponse--; |
| 3450 } | 3450 } |
| 3451 | 3451 |
| 3452 core.int buildCounterDynamicTargetingKey = 0; | 3452 core.int buildCounterDynamicTargetingKey = 0; |
| 3453 buildDynamicTargetingKey() { | 3453 buildDynamicTargetingKey() { |
| 3454 var o = new api.DynamicTargetingKey(); | 3454 var o = new api.DynamicTargetingKey(); |
| 3455 buildCounterDynamicTargetingKey++; | 3455 buildCounterDynamicTargetingKey++; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3467 buildCounterDynamicTargetingKey++; | 3467 buildCounterDynamicTargetingKey++; |
| 3468 if (buildCounterDynamicTargetingKey < 3) { | 3468 if (buildCounterDynamicTargetingKey < 3) { |
| 3469 unittest.expect(o.kind, unittest.equals('foo')); | 3469 unittest.expect(o.kind, unittest.equals('foo')); |
| 3470 unittest.expect(o.name, unittest.equals('foo')); | 3470 unittest.expect(o.name, unittest.equals('foo')); |
| 3471 unittest.expect(o.objectId, unittest.equals('foo')); | 3471 unittest.expect(o.objectId, unittest.equals('foo')); |
| 3472 unittest.expect(o.objectType, unittest.equals('foo')); | 3472 unittest.expect(o.objectType, unittest.equals('foo')); |
| 3473 } | 3473 } |
| 3474 buildCounterDynamicTargetingKey--; | 3474 buildCounterDynamicTargetingKey--; |
| 3475 } | 3475 } |
| 3476 | 3476 |
| 3477 buildUnnamed1368() { | 3477 buildUnnamed1380() { |
| 3478 var o = new core.List<api.DynamicTargetingKey>(); | 3478 var o = new core.List<api.DynamicTargetingKey>(); |
| 3479 o.add(buildDynamicTargetingKey()); | 3479 o.add(buildDynamicTargetingKey()); |
| 3480 o.add(buildDynamicTargetingKey()); | 3480 o.add(buildDynamicTargetingKey()); |
| 3481 return o; | 3481 return o; |
| 3482 } | 3482 } |
| 3483 | 3483 |
| 3484 checkUnnamed1368(core.List<api.DynamicTargetingKey> o) { | 3484 checkUnnamed1380(core.List<api.DynamicTargetingKey> o) { |
| 3485 unittest.expect(o, unittest.hasLength(2)); | 3485 unittest.expect(o, unittest.hasLength(2)); |
| 3486 checkDynamicTargetingKey(o[0]); | 3486 checkDynamicTargetingKey(o[0]); |
| 3487 checkDynamicTargetingKey(o[1]); | 3487 checkDynamicTargetingKey(o[1]); |
| 3488 } | 3488 } |
| 3489 | 3489 |
| 3490 core.int buildCounterDynamicTargetingKeysListResponse = 0; | 3490 core.int buildCounterDynamicTargetingKeysListResponse = 0; |
| 3491 buildDynamicTargetingKeysListResponse() { | 3491 buildDynamicTargetingKeysListResponse() { |
| 3492 var o = new api.DynamicTargetingKeysListResponse(); | 3492 var o = new api.DynamicTargetingKeysListResponse(); |
| 3493 buildCounterDynamicTargetingKeysListResponse++; | 3493 buildCounterDynamicTargetingKeysListResponse++; |
| 3494 if (buildCounterDynamicTargetingKeysListResponse < 3) { | 3494 if (buildCounterDynamicTargetingKeysListResponse < 3) { |
| 3495 o.dynamicTargetingKeys = buildUnnamed1368(); | 3495 o.dynamicTargetingKeys = buildUnnamed1380(); |
| 3496 o.kind = "foo"; | 3496 o.kind = "foo"; |
| 3497 } | 3497 } |
| 3498 buildCounterDynamicTargetingKeysListResponse--; | 3498 buildCounterDynamicTargetingKeysListResponse--; |
| 3499 return o; | 3499 return o; |
| 3500 } | 3500 } |
| 3501 | 3501 |
| 3502 checkDynamicTargetingKeysListResponse(api.DynamicTargetingKeysListResponse o) { | 3502 checkDynamicTargetingKeysListResponse(api.DynamicTargetingKeysListResponse o) { |
| 3503 buildCounterDynamicTargetingKeysListResponse++; | 3503 buildCounterDynamicTargetingKeysListResponse++; |
| 3504 if (buildCounterDynamicTargetingKeysListResponse < 3) { | 3504 if (buildCounterDynamicTargetingKeysListResponse < 3) { |
| 3505 checkUnnamed1368(o.dynamicTargetingKeys); | 3505 checkUnnamed1380(o.dynamicTargetingKeys); |
| 3506 unittest.expect(o.kind, unittest.equals('foo')); | 3506 unittest.expect(o.kind, unittest.equals('foo')); |
| 3507 } | 3507 } |
| 3508 buildCounterDynamicTargetingKeysListResponse--; | 3508 buildCounterDynamicTargetingKeysListResponse--; |
| 3509 } | 3509 } |
| 3510 | 3510 |
| 3511 core.int buildCounterEncryptionInfo = 0; | 3511 core.int buildCounterEncryptionInfo = 0; |
| 3512 buildEncryptionInfo() { | 3512 buildEncryptionInfo() { |
| 3513 var o = new api.EncryptionInfo(); | 3513 var o = new api.EncryptionInfo(); |
| 3514 buildCounterEncryptionInfo++; | 3514 buildCounterEncryptionInfo++; |
| 3515 if (buildCounterEncryptionInfo < 3) { | 3515 if (buildCounterEncryptionInfo < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 3526 buildCounterEncryptionInfo++; | 3526 buildCounterEncryptionInfo++; |
| 3527 if (buildCounterEncryptionInfo < 3) { | 3527 if (buildCounterEncryptionInfo < 3) { |
| 3528 unittest.expect(o.encryptionEntityId, unittest.equals('foo')); | 3528 unittest.expect(o.encryptionEntityId, unittest.equals('foo')); |
| 3529 unittest.expect(o.encryptionEntityType, unittest.equals('foo')); | 3529 unittest.expect(o.encryptionEntityType, unittest.equals('foo')); |
| 3530 unittest.expect(o.encryptionSource, unittest.equals('foo')); | 3530 unittest.expect(o.encryptionSource, unittest.equals('foo')); |
| 3531 unittest.expect(o.kind, unittest.equals('foo')); | 3531 unittest.expect(o.kind, unittest.equals('foo')); |
| 3532 } | 3532 } |
| 3533 buildCounterEncryptionInfo--; | 3533 buildCounterEncryptionInfo--; |
| 3534 } | 3534 } |
| 3535 | 3535 |
| 3536 buildUnnamed1369() { | 3536 buildUnnamed1381() { |
| 3537 var o = new core.List<core.String>(); | 3537 var o = new core.List<core.String>(); |
| 3538 o.add("foo"); | 3538 o.add("foo"); |
| 3539 o.add("foo"); | 3539 o.add("foo"); |
| 3540 return o; | 3540 return o; |
| 3541 } | 3541 } |
| 3542 | 3542 |
| 3543 checkUnnamed1369(core.List<core.String> o) { | 3543 checkUnnamed1381(core.List<core.String> o) { |
| 3544 unittest.expect(o, unittest.hasLength(2)); | 3544 unittest.expect(o, unittest.hasLength(2)); |
| 3545 unittest.expect(o[0], unittest.equals('foo')); | 3545 unittest.expect(o[0], unittest.equals('foo')); |
| 3546 unittest.expect(o[1], unittest.equals('foo')); | 3546 unittest.expect(o[1], unittest.equals('foo')); |
| 3547 } | 3547 } |
| 3548 | 3548 |
| 3549 core.int buildCounterEventTag = 0; | 3549 core.int buildCounterEventTag = 0; |
| 3550 buildEventTag() { | 3550 buildEventTag() { |
| 3551 var o = new api.EventTag(); | 3551 var o = new api.EventTag(); |
| 3552 buildCounterEventTag++; | 3552 buildCounterEventTag++; |
| 3553 if (buildCounterEventTag < 3) { | 3553 if (buildCounterEventTag < 3) { |
| 3554 o.accountId = "foo"; | 3554 o.accountId = "foo"; |
| 3555 o.advertiserId = "foo"; | 3555 o.advertiserId = "foo"; |
| 3556 o.advertiserIdDimensionValue = buildDimensionValue(); | 3556 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3557 o.campaignId = "foo"; | 3557 o.campaignId = "foo"; |
| 3558 o.campaignIdDimensionValue = buildDimensionValue(); | 3558 o.campaignIdDimensionValue = buildDimensionValue(); |
| 3559 o.enabledByDefault = true; | 3559 o.enabledByDefault = true; |
| 3560 o.excludeFromAdxRequests = true; | 3560 o.excludeFromAdxRequests = true; |
| 3561 o.id = "foo"; | 3561 o.id = "foo"; |
| 3562 o.kind = "foo"; | 3562 o.kind = "foo"; |
| 3563 o.name = "foo"; | 3563 o.name = "foo"; |
| 3564 o.siteFilterType = "foo"; | 3564 o.siteFilterType = "foo"; |
| 3565 o.siteIds = buildUnnamed1369(); | 3565 o.siteIds = buildUnnamed1381(); |
| 3566 o.sslCompliant = true; | 3566 o.sslCompliant = true; |
| 3567 o.status = "foo"; | 3567 o.status = "foo"; |
| 3568 o.subaccountId = "foo"; | 3568 o.subaccountId = "foo"; |
| 3569 o.type = "foo"; | 3569 o.type = "foo"; |
| 3570 o.url = "foo"; | 3570 o.url = "foo"; |
| 3571 o.urlEscapeLevels = 42; | 3571 o.urlEscapeLevels = 42; |
| 3572 } | 3572 } |
| 3573 buildCounterEventTag--; | 3573 buildCounterEventTag--; |
| 3574 return o; | 3574 return o; |
| 3575 } | 3575 } |
| 3576 | 3576 |
| 3577 checkEventTag(api.EventTag o) { | 3577 checkEventTag(api.EventTag o) { |
| 3578 buildCounterEventTag++; | 3578 buildCounterEventTag++; |
| 3579 if (buildCounterEventTag < 3) { | 3579 if (buildCounterEventTag < 3) { |
| 3580 unittest.expect(o.accountId, unittest.equals('foo')); | 3580 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3581 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3581 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3582 checkDimensionValue(o.advertiserIdDimensionValue); | 3582 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3583 unittest.expect(o.campaignId, unittest.equals('foo')); | 3583 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 3584 checkDimensionValue(o.campaignIdDimensionValue); | 3584 checkDimensionValue(o.campaignIdDimensionValue); |
| 3585 unittest.expect(o.enabledByDefault, unittest.isTrue); | 3585 unittest.expect(o.enabledByDefault, unittest.isTrue); |
| 3586 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); | 3586 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); |
| 3587 unittest.expect(o.id, unittest.equals('foo')); | 3587 unittest.expect(o.id, unittest.equals('foo')); |
| 3588 unittest.expect(o.kind, unittest.equals('foo')); | 3588 unittest.expect(o.kind, unittest.equals('foo')); |
| 3589 unittest.expect(o.name, unittest.equals('foo')); | 3589 unittest.expect(o.name, unittest.equals('foo')); |
| 3590 unittest.expect(o.siteFilterType, unittest.equals('foo')); | 3590 unittest.expect(o.siteFilterType, unittest.equals('foo')); |
| 3591 checkUnnamed1369(o.siteIds); | 3591 checkUnnamed1381(o.siteIds); |
| 3592 unittest.expect(o.sslCompliant, unittest.isTrue); | 3592 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3593 unittest.expect(o.status, unittest.equals('foo')); | 3593 unittest.expect(o.status, unittest.equals('foo')); |
| 3594 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3594 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3595 unittest.expect(o.type, unittest.equals('foo')); | 3595 unittest.expect(o.type, unittest.equals('foo')); |
| 3596 unittest.expect(o.url, unittest.equals('foo')); | 3596 unittest.expect(o.url, unittest.equals('foo')); |
| 3597 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); | 3597 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); |
| 3598 } | 3598 } |
| 3599 buildCounterEventTag--; | 3599 buildCounterEventTag--; |
| 3600 } | 3600 } |
| 3601 | 3601 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3613 | 3613 |
| 3614 checkEventTagOverride(api.EventTagOverride o) { | 3614 checkEventTagOverride(api.EventTagOverride o) { |
| 3615 buildCounterEventTagOverride++; | 3615 buildCounterEventTagOverride++; |
| 3616 if (buildCounterEventTagOverride < 3) { | 3616 if (buildCounterEventTagOverride < 3) { |
| 3617 unittest.expect(o.enabled, unittest.isTrue); | 3617 unittest.expect(o.enabled, unittest.isTrue); |
| 3618 unittest.expect(o.id, unittest.equals('foo')); | 3618 unittest.expect(o.id, unittest.equals('foo')); |
| 3619 } | 3619 } |
| 3620 buildCounterEventTagOverride--; | 3620 buildCounterEventTagOverride--; |
| 3621 } | 3621 } |
| 3622 | 3622 |
| 3623 buildUnnamed1370() { | 3623 buildUnnamed1382() { |
| 3624 var o = new core.List<api.EventTag>(); | 3624 var o = new core.List<api.EventTag>(); |
| 3625 o.add(buildEventTag()); | 3625 o.add(buildEventTag()); |
| 3626 o.add(buildEventTag()); | 3626 o.add(buildEventTag()); |
| 3627 return o; | 3627 return o; |
| 3628 } | 3628 } |
| 3629 | 3629 |
| 3630 checkUnnamed1370(core.List<api.EventTag> o) { | 3630 checkUnnamed1382(core.List<api.EventTag> o) { |
| 3631 unittest.expect(o, unittest.hasLength(2)); | 3631 unittest.expect(o, unittest.hasLength(2)); |
| 3632 checkEventTag(o[0]); | 3632 checkEventTag(o[0]); |
| 3633 checkEventTag(o[1]); | 3633 checkEventTag(o[1]); |
| 3634 } | 3634 } |
| 3635 | 3635 |
| 3636 core.int buildCounterEventTagsListResponse = 0; | 3636 core.int buildCounterEventTagsListResponse = 0; |
| 3637 buildEventTagsListResponse() { | 3637 buildEventTagsListResponse() { |
| 3638 var o = new api.EventTagsListResponse(); | 3638 var o = new api.EventTagsListResponse(); |
| 3639 buildCounterEventTagsListResponse++; | 3639 buildCounterEventTagsListResponse++; |
| 3640 if (buildCounterEventTagsListResponse < 3) { | 3640 if (buildCounterEventTagsListResponse < 3) { |
| 3641 o.eventTags = buildUnnamed1370(); | 3641 o.eventTags = buildUnnamed1382(); |
| 3642 o.kind = "foo"; | 3642 o.kind = "foo"; |
| 3643 } | 3643 } |
| 3644 buildCounterEventTagsListResponse--; | 3644 buildCounterEventTagsListResponse--; |
| 3645 return o; | 3645 return o; |
| 3646 } | 3646 } |
| 3647 | 3647 |
| 3648 checkEventTagsListResponse(api.EventTagsListResponse o) { | 3648 checkEventTagsListResponse(api.EventTagsListResponse o) { |
| 3649 buildCounterEventTagsListResponse++; | 3649 buildCounterEventTagsListResponse++; |
| 3650 if (buildCounterEventTagsListResponse < 3) { | 3650 if (buildCounterEventTagsListResponse < 3) { |
| 3651 checkUnnamed1370(o.eventTags); | 3651 checkUnnamed1382(o.eventTags); |
| 3652 unittest.expect(o.kind, unittest.equals('foo')); | 3652 unittest.expect(o.kind, unittest.equals('foo')); |
| 3653 } | 3653 } |
| 3654 buildCounterEventTagsListResponse--; | 3654 buildCounterEventTagsListResponse--; |
| 3655 } | 3655 } |
| 3656 | 3656 |
| 3657 core.int buildCounterFileUrls = 0; | 3657 core.int buildCounterFileUrls = 0; |
| 3658 buildFileUrls() { | 3658 buildFileUrls() { |
| 3659 var o = new api.FileUrls(); | 3659 var o = new api.FileUrls(); |
| 3660 buildCounterFileUrls++; | 3660 buildCounterFileUrls++; |
| 3661 if (buildCounterFileUrls < 3) { | 3661 if (buildCounterFileUrls < 3) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3705 unittest.expect(o.id, unittest.equals('foo')); | 3705 unittest.expect(o.id, unittest.equals('foo')); |
| 3706 unittest.expect(o.kind, unittest.equals('foo')); | 3706 unittest.expect(o.kind, unittest.equals('foo')); |
| 3707 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); | 3707 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); |
| 3708 unittest.expect(o.reportId, unittest.equals('foo')); | 3708 unittest.expect(o.reportId, unittest.equals('foo')); |
| 3709 unittest.expect(o.status, unittest.equals('foo')); | 3709 unittest.expect(o.status, unittest.equals('foo')); |
| 3710 checkFileUrls(o.urls); | 3710 checkFileUrls(o.urls); |
| 3711 } | 3711 } |
| 3712 buildCounterFile--; | 3712 buildCounterFile--; |
| 3713 } | 3713 } |
| 3714 | 3714 |
| 3715 buildUnnamed1371() { | 3715 buildUnnamed1383() { |
| 3716 var o = new core.List<api.File>(); | 3716 var o = new core.List<api.File>(); |
| 3717 o.add(buildFile()); | 3717 o.add(buildFile()); |
| 3718 o.add(buildFile()); | 3718 o.add(buildFile()); |
| 3719 return o; | 3719 return o; |
| 3720 } | 3720 } |
| 3721 | 3721 |
| 3722 checkUnnamed1371(core.List<api.File> o) { | 3722 checkUnnamed1383(core.List<api.File> o) { |
| 3723 unittest.expect(o, unittest.hasLength(2)); | 3723 unittest.expect(o, unittest.hasLength(2)); |
| 3724 checkFile(o[0]); | 3724 checkFile(o[0]); |
| 3725 checkFile(o[1]); | 3725 checkFile(o[1]); |
| 3726 } | 3726 } |
| 3727 | 3727 |
| 3728 core.int buildCounterFileList = 0; | 3728 core.int buildCounterFileList = 0; |
| 3729 buildFileList() { | 3729 buildFileList() { |
| 3730 var o = new api.FileList(); | 3730 var o = new api.FileList(); |
| 3731 buildCounterFileList++; | 3731 buildCounterFileList++; |
| 3732 if (buildCounterFileList < 3) { | 3732 if (buildCounterFileList < 3) { |
| 3733 o.etag = "foo"; | 3733 o.etag = "foo"; |
| 3734 o.items = buildUnnamed1371(); | 3734 o.items = buildUnnamed1383(); |
| 3735 o.kind = "foo"; | 3735 o.kind = "foo"; |
| 3736 o.nextPageToken = "foo"; | 3736 o.nextPageToken = "foo"; |
| 3737 } | 3737 } |
| 3738 buildCounterFileList--; | 3738 buildCounterFileList--; |
| 3739 return o; | 3739 return o; |
| 3740 } | 3740 } |
| 3741 | 3741 |
| 3742 checkFileList(api.FileList o) { | 3742 checkFileList(api.FileList o) { |
| 3743 buildCounterFileList++; | 3743 buildCounterFileList++; |
| 3744 if (buildCounterFileList < 3) { | 3744 if (buildCounterFileList < 3) { |
| 3745 unittest.expect(o.etag, unittest.equals('foo')); | 3745 unittest.expect(o.etag, unittest.equals('foo')); |
| 3746 checkUnnamed1371(o.items); | 3746 checkUnnamed1383(o.items); |
| 3747 unittest.expect(o.kind, unittest.equals('foo')); | 3747 unittest.expect(o.kind, unittest.equals('foo')); |
| 3748 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3748 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3749 } | 3749 } |
| 3750 buildCounterFileList--; | 3750 buildCounterFileList--; |
| 3751 } | 3751 } |
| 3752 | 3752 |
| 3753 core.int buildCounterFlight = 0; | 3753 core.int buildCounterFlight = 0; |
| 3754 buildFlight() { | 3754 buildFlight() { |
| 3755 var o = new api.Flight(); | 3755 var o = new api.Flight(); |
| 3756 buildCounterFlight++; | 3756 buildCounterFlight++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3789 | 3789 |
| 3790 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { | 3790 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { |
| 3791 buildCounterFloodlightActivitiesGenerateTagResponse++; | 3791 buildCounterFloodlightActivitiesGenerateTagResponse++; |
| 3792 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { | 3792 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { |
| 3793 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); | 3793 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); |
| 3794 unittest.expect(o.kind, unittest.equals('foo')); | 3794 unittest.expect(o.kind, unittest.equals('foo')); |
| 3795 } | 3795 } |
| 3796 buildCounterFloodlightActivitiesGenerateTagResponse--; | 3796 buildCounterFloodlightActivitiesGenerateTagResponse--; |
| 3797 } | 3797 } |
| 3798 | 3798 |
| 3799 buildUnnamed1372() { | 3799 buildUnnamed1384() { |
| 3800 var o = new core.List<api.FloodlightActivity>(); | 3800 var o = new core.List<api.FloodlightActivity>(); |
| 3801 o.add(buildFloodlightActivity()); | 3801 o.add(buildFloodlightActivity()); |
| 3802 o.add(buildFloodlightActivity()); | 3802 o.add(buildFloodlightActivity()); |
| 3803 return o; | 3803 return o; |
| 3804 } | 3804 } |
| 3805 | 3805 |
| 3806 checkUnnamed1372(core.List<api.FloodlightActivity> o) { | 3806 checkUnnamed1384(core.List<api.FloodlightActivity> o) { |
| 3807 unittest.expect(o, unittest.hasLength(2)); | 3807 unittest.expect(o, unittest.hasLength(2)); |
| 3808 checkFloodlightActivity(o[0]); | 3808 checkFloodlightActivity(o[0]); |
| 3809 checkFloodlightActivity(o[1]); | 3809 checkFloodlightActivity(o[1]); |
| 3810 } | 3810 } |
| 3811 | 3811 |
| 3812 core.int buildCounterFloodlightActivitiesListResponse = 0; | 3812 core.int buildCounterFloodlightActivitiesListResponse = 0; |
| 3813 buildFloodlightActivitiesListResponse() { | 3813 buildFloodlightActivitiesListResponse() { |
| 3814 var o = new api.FloodlightActivitiesListResponse(); | 3814 var o = new api.FloodlightActivitiesListResponse(); |
| 3815 buildCounterFloodlightActivitiesListResponse++; | 3815 buildCounterFloodlightActivitiesListResponse++; |
| 3816 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3816 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3817 o.floodlightActivities = buildUnnamed1372(); | 3817 o.floodlightActivities = buildUnnamed1384(); |
| 3818 o.kind = "foo"; | 3818 o.kind = "foo"; |
| 3819 o.nextPageToken = "foo"; | 3819 o.nextPageToken = "foo"; |
| 3820 } | 3820 } |
| 3821 buildCounterFloodlightActivitiesListResponse--; | 3821 buildCounterFloodlightActivitiesListResponse--; |
| 3822 return o; | 3822 return o; |
| 3823 } | 3823 } |
| 3824 | 3824 |
| 3825 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { | 3825 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { |
| 3826 buildCounterFloodlightActivitiesListResponse++; | 3826 buildCounterFloodlightActivitiesListResponse++; |
| 3827 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3827 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3828 checkUnnamed1372(o.floodlightActivities); | 3828 checkUnnamed1384(o.floodlightActivities); |
| 3829 unittest.expect(o.kind, unittest.equals('foo')); | 3829 unittest.expect(o.kind, unittest.equals('foo')); |
| 3830 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3830 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3831 } | 3831 } |
| 3832 buildCounterFloodlightActivitiesListResponse--; | 3832 buildCounterFloodlightActivitiesListResponse--; |
| 3833 } | 3833 } |
| 3834 | 3834 |
| 3835 buildUnnamed1373() { | 3835 buildUnnamed1385() { |
| 3836 var o = new core.List<api.FloodlightActivityDynamicTag>(); | 3836 var o = new core.List<api.FloodlightActivityDynamicTag>(); |
| 3837 o.add(buildFloodlightActivityDynamicTag()); | 3837 o.add(buildFloodlightActivityDynamicTag()); |
| 3838 o.add(buildFloodlightActivityDynamicTag()); | 3838 o.add(buildFloodlightActivityDynamicTag()); |
| 3839 return o; | 3839 return o; |
| 3840 } | 3840 } |
| 3841 | 3841 |
| 3842 checkUnnamed1373(core.List<api.FloodlightActivityDynamicTag> o) { | 3842 checkUnnamed1385(core.List<api.FloodlightActivityDynamicTag> o) { |
| 3843 unittest.expect(o, unittest.hasLength(2)); | 3843 unittest.expect(o, unittest.hasLength(2)); |
| 3844 checkFloodlightActivityDynamicTag(o[0]); | 3844 checkFloodlightActivityDynamicTag(o[0]); |
| 3845 checkFloodlightActivityDynamicTag(o[1]); | 3845 checkFloodlightActivityDynamicTag(o[1]); |
| 3846 } | 3846 } |
| 3847 | 3847 |
| 3848 buildUnnamed1374() { | 3848 buildUnnamed1386() { |
| 3849 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); | 3849 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); |
| 3850 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3850 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3851 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3851 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3852 return o; | 3852 return o; |
| 3853 } | 3853 } |
| 3854 | 3854 |
| 3855 checkUnnamed1374(core.List<api.FloodlightActivityPublisherDynamicTag> o) { | 3855 checkUnnamed1386(core.List<api.FloodlightActivityPublisherDynamicTag> o) { |
| 3856 unittest.expect(o, unittest.hasLength(2)); | 3856 unittest.expect(o, unittest.hasLength(2)); |
| 3857 checkFloodlightActivityPublisherDynamicTag(o[0]); | 3857 checkFloodlightActivityPublisherDynamicTag(o[0]); |
| 3858 checkFloodlightActivityPublisherDynamicTag(o[1]); | 3858 checkFloodlightActivityPublisherDynamicTag(o[1]); |
| 3859 } | 3859 } |
| 3860 | 3860 |
| 3861 buildUnnamed1375() { | 3861 buildUnnamed1387() { |
| 3862 var o = new core.List<core.String>(); | 3862 var o = new core.List<core.String>(); |
| 3863 o.add("foo"); | 3863 o.add("foo"); |
| 3864 o.add("foo"); | 3864 o.add("foo"); |
| 3865 return o; | 3865 return o; |
| 3866 } | 3866 } |
| 3867 | 3867 |
| 3868 checkUnnamed1375(core.List<core.String> o) { | 3868 checkUnnamed1387(core.List<core.String> o) { |
| 3869 unittest.expect(o, unittest.hasLength(2)); | 3869 unittest.expect(o, unittest.hasLength(2)); |
| 3870 unittest.expect(o[0], unittest.equals('foo')); | 3870 unittest.expect(o[0], unittest.equals('foo')); |
| 3871 unittest.expect(o[1], unittest.equals('foo')); | 3871 unittest.expect(o[1], unittest.equals('foo')); |
| 3872 } | 3872 } |
| 3873 | 3873 |
| 3874 core.int buildCounterFloodlightActivity = 0; | 3874 core.int buildCounterFloodlightActivity = 0; |
| 3875 buildFloodlightActivity() { | 3875 buildFloodlightActivity() { |
| 3876 var o = new api.FloodlightActivity(); | 3876 var o = new api.FloodlightActivity(); |
| 3877 buildCounterFloodlightActivity++; | 3877 buildCounterFloodlightActivity++; |
| 3878 if (buildCounterFloodlightActivity < 3) { | 3878 if (buildCounterFloodlightActivity < 3) { |
| 3879 o.accountId = "foo"; | 3879 o.accountId = "foo"; |
| 3880 o.advertiserId = "foo"; | 3880 o.advertiserId = "foo"; |
| 3881 o.advertiserIdDimensionValue = buildDimensionValue(); | 3881 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3882 o.cacheBustingType = "foo"; | 3882 o.cacheBustingType = "foo"; |
| 3883 o.countingMethod = "foo"; | 3883 o.countingMethod = "foo"; |
| 3884 o.defaultTags = buildUnnamed1373(); | 3884 o.defaultTags = buildUnnamed1385(); |
| 3885 o.expectedUrl = "foo"; | 3885 o.expectedUrl = "foo"; |
| 3886 o.floodlightActivityGroupId = "foo"; | 3886 o.floodlightActivityGroupId = "foo"; |
| 3887 o.floodlightActivityGroupName = "foo"; | 3887 o.floodlightActivityGroupName = "foo"; |
| 3888 o.floodlightActivityGroupTagString = "foo"; | 3888 o.floodlightActivityGroupTagString = "foo"; |
| 3889 o.floodlightActivityGroupType = "foo"; | 3889 o.floodlightActivityGroupType = "foo"; |
| 3890 o.floodlightConfigurationId = "foo"; | 3890 o.floodlightConfigurationId = "foo"; |
| 3891 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); | 3891 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); |
| 3892 o.hidden = true; | 3892 o.hidden = true; |
| 3893 o.id = "foo"; | 3893 o.id = "foo"; |
| 3894 o.idDimensionValue = buildDimensionValue(); | 3894 o.idDimensionValue = buildDimensionValue(); |
| 3895 o.imageTagEnabled = true; | 3895 o.imageTagEnabled = true; |
| 3896 o.kind = "foo"; | 3896 o.kind = "foo"; |
| 3897 o.name = "foo"; | 3897 o.name = "foo"; |
| 3898 o.notes = "foo"; | 3898 o.notes = "foo"; |
| 3899 o.publisherTags = buildUnnamed1374(); | 3899 o.publisherTags = buildUnnamed1386(); |
| 3900 o.secure = true; | 3900 o.secure = true; |
| 3901 o.sslCompliant = true; | 3901 o.sslCompliant = true; |
| 3902 o.sslRequired = true; | 3902 o.sslRequired = true; |
| 3903 o.subaccountId = "foo"; | 3903 o.subaccountId = "foo"; |
| 3904 o.tagFormat = "foo"; | 3904 o.tagFormat = "foo"; |
| 3905 o.tagString = "foo"; | 3905 o.tagString = "foo"; |
| 3906 o.userDefinedVariableTypes = buildUnnamed1375(); | 3906 o.userDefinedVariableTypes = buildUnnamed1387(); |
| 3907 } | 3907 } |
| 3908 buildCounterFloodlightActivity--; | 3908 buildCounterFloodlightActivity--; |
| 3909 return o; | 3909 return o; |
| 3910 } | 3910 } |
| 3911 | 3911 |
| 3912 checkFloodlightActivity(api.FloodlightActivity o) { | 3912 checkFloodlightActivity(api.FloodlightActivity o) { |
| 3913 buildCounterFloodlightActivity++; | 3913 buildCounterFloodlightActivity++; |
| 3914 if (buildCounterFloodlightActivity < 3) { | 3914 if (buildCounterFloodlightActivity < 3) { |
| 3915 unittest.expect(o.accountId, unittest.equals('foo')); | 3915 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3916 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3916 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3917 checkDimensionValue(o.advertiserIdDimensionValue); | 3917 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3918 unittest.expect(o.cacheBustingType, unittest.equals('foo')); | 3918 unittest.expect(o.cacheBustingType, unittest.equals('foo')); |
| 3919 unittest.expect(o.countingMethod, unittest.equals('foo')); | 3919 unittest.expect(o.countingMethod, unittest.equals('foo')); |
| 3920 checkUnnamed1373(o.defaultTags); | 3920 checkUnnamed1385(o.defaultTags); |
| 3921 unittest.expect(o.expectedUrl, unittest.equals('foo')); | 3921 unittest.expect(o.expectedUrl, unittest.equals('foo')); |
| 3922 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); | 3922 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); |
| 3923 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); | 3923 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); |
| 3924 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); | 3924 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); |
| 3925 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); | 3925 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); |
| 3926 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 3926 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
| 3927 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); | 3927 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); |
| 3928 unittest.expect(o.hidden, unittest.isTrue); | 3928 unittest.expect(o.hidden, unittest.isTrue); |
| 3929 unittest.expect(o.id, unittest.equals('foo')); | 3929 unittest.expect(o.id, unittest.equals('foo')); |
| 3930 checkDimensionValue(o.idDimensionValue); | 3930 checkDimensionValue(o.idDimensionValue); |
| 3931 unittest.expect(o.imageTagEnabled, unittest.isTrue); | 3931 unittest.expect(o.imageTagEnabled, unittest.isTrue); |
| 3932 unittest.expect(o.kind, unittest.equals('foo')); | 3932 unittest.expect(o.kind, unittest.equals('foo')); |
| 3933 unittest.expect(o.name, unittest.equals('foo')); | 3933 unittest.expect(o.name, unittest.equals('foo')); |
| 3934 unittest.expect(o.notes, unittest.equals('foo')); | 3934 unittest.expect(o.notes, unittest.equals('foo')); |
| 3935 checkUnnamed1374(o.publisherTags); | 3935 checkUnnamed1386(o.publisherTags); |
| 3936 unittest.expect(o.secure, unittest.isTrue); | 3936 unittest.expect(o.secure, unittest.isTrue); |
| 3937 unittest.expect(o.sslCompliant, unittest.isTrue); | 3937 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3938 unittest.expect(o.sslRequired, unittest.isTrue); | 3938 unittest.expect(o.sslRequired, unittest.isTrue); |
| 3939 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3939 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3940 unittest.expect(o.tagFormat, unittest.equals('foo')); | 3940 unittest.expect(o.tagFormat, unittest.equals('foo')); |
| 3941 unittest.expect(o.tagString, unittest.equals('foo')); | 3941 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3942 checkUnnamed1375(o.userDefinedVariableTypes); | 3942 checkUnnamed1387(o.userDefinedVariableTypes); |
| 3943 } | 3943 } |
| 3944 buildCounterFloodlightActivity--; | 3944 buildCounterFloodlightActivity--; |
| 3945 } | 3945 } |
| 3946 | 3946 |
| 3947 core.int buildCounterFloodlightActivityDynamicTag = 0; | 3947 core.int buildCounterFloodlightActivityDynamicTag = 0; |
| 3948 buildFloodlightActivityDynamicTag() { | 3948 buildFloodlightActivityDynamicTag() { |
| 3949 var o = new api.FloodlightActivityDynamicTag(); | 3949 var o = new api.FloodlightActivityDynamicTag(); |
| 3950 buildCounterFloodlightActivityDynamicTag++; | 3950 buildCounterFloodlightActivityDynamicTag++; |
| 3951 if (buildCounterFloodlightActivityDynamicTag < 3) { | 3951 if (buildCounterFloodlightActivityDynamicTag < 3) { |
| 3952 o.id = "foo"; | 3952 o.id = "foo"; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4001 checkDimensionValue(o.idDimensionValue); | 4001 checkDimensionValue(o.idDimensionValue); |
| 4002 unittest.expect(o.kind, unittest.equals('foo')); | 4002 unittest.expect(o.kind, unittest.equals('foo')); |
| 4003 unittest.expect(o.name, unittest.equals('foo')); | 4003 unittest.expect(o.name, unittest.equals('foo')); |
| 4004 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4004 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4005 unittest.expect(o.tagString, unittest.equals('foo')); | 4005 unittest.expect(o.tagString, unittest.equals('foo')); |
| 4006 unittest.expect(o.type, unittest.equals('foo')); | 4006 unittest.expect(o.type, unittest.equals('foo')); |
| 4007 } | 4007 } |
| 4008 buildCounterFloodlightActivityGroup--; | 4008 buildCounterFloodlightActivityGroup--; |
| 4009 } | 4009 } |
| 4010 | 4010 |
| 4011 buildUnnamed1376() { | 4011 buildUnnamed1388() { |
| 4012 var o = new core.List<api.FloodlightActivityGroup>(); | 4012 var o = new core.List<api.FloodlightActivityGroup>(); |
| 4013 o.add(buildFloodlightActivityGroup()); | 4013 o.add(buildFloodlightActivityGroup()); |
| 4014 o.add(buildFloodlightActivityGroup()); | 4014 o.add(buildFloodlightActivityGroup()); |
| 4015 return o; | 4015 return o; |
| 4016 } | 4016 } |
| 4017 | 4017 |
| 4018 checkUnnamed1376(core.List<api.FloodlightActivityGroup> o) { | 4018 checkUnnamed1388(core.List<api.FloodlightActivityGroup> o) { |
| 4019 unittest.expect(o, unittest.hasLength(2)); | 4019 unittest.expect(o, unittest.hasLength(2)); |
| 4020 checkFloodlightActivityGroup(o[0]); | 4020 checkFloodlightActivityGroup(o[0]); |
| 4021 checkFloodlightActivityGroup(o[1]); | 4021 checkFloodlightActivityGroup(o[1]); |
| 4022 } | 4022 } |
| 4023 | 4023 |
| 4024 core.int buildCounterFloodlightActivityGroupsListResponse = 0; | 4024 core.int buildCounterFloodlightActivityGroupsListResponse = 0; |
| 4025 buildFloodlightActivityGroupsListResponse() { | 4025 buildFloodlightActivityGroupsListResponse() { |
| 4026 var o = new api.FloodlightActivityGroupsListResponse(); | 4026 var o = new api.FloodlightActivityGroupsListResponse(); |
| 4027 buildCounterFloodlightActivityGroupsListResponse++; | 4027 buildCounterFloodlightActivityGroupsListResponse++; |
| 4028 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 4028 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 4029 o.floodlightActivityGroups = buildUnnamed1376(); | 4029 o.floodlightActivityGroups = buildUnnamed1388(); |
| 4030 o.kind = "foo"; | 4030 o.kind = "foo"; |
| 4031 o.nextPageToken = "foo"; | 4031 o.nextPageToken = "foo"; |
| 4032 } | 4032 } |
| 4033 buildCounterFloodlightActivityGroupsListResponse--; | 4033 buildCounterFloodlightActivityGroupsListResponse--; |
| 4034 return o; | 4034 return o; |
| 4035 } | 4035 } |
| 4036 | 4036 |
| 4037 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { | 4037 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { |
| 4038 buildCounterFloodlightActivityGroupsListResponse++; | 4038 buildCounterFloodlightActivityGroupsListResponse++; |
| 4039 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 4039 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 4040 checkUnnamed1376(o.floodlightActivityGroups); | 4040 checkUnnamed1388(o.floodlightActivityGroups); |
| 4041 unittest.expect(o.kind, unittest.equals('foo')); | 4041 unittest.expect(o.kind, unittest.equals('foo')); |
| 4042 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4042 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4043 } | 4043 } |
| 4044 buildCounterFloodlightActivityGroupsListResponse--; | 4044 buildCounterFloodlightActivityGroupsListResponse--; |
| 4045 } | 4045 } |
| 4046 | 4046 |
| 4047 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; | 4047 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; |
| 4048 buildFloodlightActivityPublisherDynamicTag() { | 4048 buildFloodlightActivityPublisherDynamicTag() { |
| 4049 var o = new api.FloodlightActivityPublisherDynamicTag(); | 4049 var o = new api.FloodlightActivityPublisherDynamicTag(); |
| 4050 buildCounterFloodlightActivityPublisherDynamicTag++; | 4050 buildCounterFloodlightActivityPublisherDynamicTag++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 4066 unittest.expect(o.clickThrough, unittest.isTrue); | 4066 unittest.expect(o.clickThrough, unittest.isTrue); |
| 4067 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 4067 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 4068 checkFloodlightActivityDynamicTag(o.dynamicTag); | 4068 checkFloodlightActivityDynamicTag(o.dynamicTag); |
| 4069 unittest.expect(o.siteId, unittest.equals('foo')); | 4069 unittest.expect(o.siteId, unittest.equals('foo')); |
| 4070 checkDimensionValue(o.siteIdDimensionValue); | 4070 checkDimensionValue(o.siteIdDimensionValue); |
| 4071 unittest.expect(o.viewThrough, unittest.isTrue); | 4071 unittest.expect(o.viewThrough, unittest.isTrue); |
| 4072 } | 4072 } |
| 4073 buildCounterFloodlightActivityPublisherDynamicTag--; | 4073 buildCounterFloodlightActivityPublisherDynamicTag--; |
| 4074 } | 4074 } |
| 4075 | 4075 |
| 4076 buildUnnamed1377() { | 4076 buildUnnamed1389() { |
| 4077 var o = new core.List<core.String>(); | 4077 var o = new core.List<core.String>(); |
| 4078 o.add("foo"); | 4078 o.add("foo"); |
| 4079 o.add("foo"); | 4079 o.add("foo"); |
| 4080 return o; | 4080 return o; |
| 4081 } | 4081 } |
| 4082 | 4082 |
| 4083 checkUnnamed1377(core.List<core.String> o) { | 4083 checkUnnamed1389(core.List<core.String> o) { |
| 4084 unittest.expect(o, unittest.hasLength(2)); | 4084 unittest.expect(o, unittest.hasLength(2)); |
| 4085 unittest.expect(o[0], unittest.equals('foo')); | 4085 unittest.expect(o[0], unittest.equals('foo')); |
| 4086 unittest.expect(o[1], unittest.equals('foo')); | 4086 unittest.expect(o[1], unittest.equals('foo')); |
| 4087 } | 4087 } |
| 4088 | 4088 |
| 4089 buildUnnamed1378() { | 4089 buildUnnamed1390() { |
| 4090 var o = new core.List<api.ThirdPartyAuthenticationToken>(); | 4090 var o = new core.List<api.ThirdPartyAuthenticationToken>(); |
| 4091 o.add(buildThirdPartyAuthenticationToken()); | 4091 o.add(buildThirdPartyAuthenticationToken()); |
| 4092 o.add(buildThirdPartyAuthenticationToken()); | 4092 o.add(buildThirdPartyAuthenticationToken()); |
| 4093 return o; | 4093 return o; |
| 4094 } | 4094 } |
| 4095 | 4095 |
| 4096 checkUnnamed1378(core.List<api.ThirdPartyAuthenticationToken> o) { | 4096 checkUnnamed1390(core.List<api.ThirdPartyAuthenticationToken> o) { |
| 4097 unittest.expect(o, unittest.hasLength(2)); | 4097 unittest.expect(o, unittest.hasLength(2)); |
| 4098 checkThirdPartyAuthenticationToken(o[0]); | 4098 checkThirdPartyAuthenticationToken(o[0]); |
| 4099 checkThirdPartyAuthenticationToken(o[1]); | 4099 checkThirdPartyAuthenticationToken(o[1]); |
| 4100 } | 4100 } |
| 4101 | 4101 |
| 4102 buildUnnamed1379() { | 4102 buildUnnamed1391() { |
| 4103 var o = new core.List<api.UserDefinedVariableConfiguration>(); | 4103 var o = new core.List<api.UserDefinedVariableConfiguration>(); |
| 4104 o.add(buildUserDefinedVariableConfiguration()); | 4104 o.add(buildUserDefinedVariableConfiguration()); |
| 4105 o.add(buildUserDefinedVariableConfiguration()); | 4105 o.add(buildUserDefinedVariableConfiguration()); |
| 4106 return o; | 4106 return o; |
| 4107 } | 4107 } |
| 4108 | 4108 |
| 4109 checkUnnamed1379(core.List<api.UserDefinedVariableConfiguration> o) { | 4109 checkUnnamed1391(core.List<api.UserDefinedVariableConfiguration> o) { |
| 4110 unittest.expect(o, unittest.hasLength(2)); | 4110 unittest.expect(o, unittest.hasLength(2)); |
| 4111 checkUserDefinedVariableConfiguration(o[0]); | 4111 checkUserDefinedVariableConfiguration(o[0]); |
| 4112 checkUserDefinedVariableConfiguration(o[1]); | 4112 checkUserDefinedVariableConfiguration(o[1]); |
| 4113 } | 4113 } |
| 4114 | 4114 |
| 4115 core.int buildCounterFloodlightConfiguration = 0; | 4115 core.int buildCounterFloodlightConfiguration = 0; |
| 4116 buildFloodlightConfiguration() { | 4116 buildFloodlightConfiguration() { |
| 4117 var o = new api.FloodlightConfiguration(); | 4117 var o = new api.FloodlightConfiguration(); |
| 4118 buildCounterFloodlightConfiguration++; | 4118 buildCounterFloodlightConfiguration++; |
| 4119 if (buildCounterFloodlightConfiguration < 3) { | 4119 if (buildCounterFloodlightConfiguration < 3) { |
| 4120 o.accountId = "foo"; | 4120 o.accountId = "foo"; |
| 4121 o.advertiserId = "foo"; | 4121 o.advertiserId = "foo"; |
| 4122 o.advertiserIdDimensionValue = buildDimensionValue(); | 4122 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 4123 o.analyticsDataSharingEnabled = true; | 4123 o.analyticsDataSharingEnabled = true; |
| 4124 o.exposureToConversionEnabled = true; | 4124 o.exposureToConversionEnabled = true; |
| 4125 o.firstDayOfWeek = "foo"; | 4125 o.firstDayOfWeek = "foo"; |
| 4126 o.id = "foo"; | 4126 o.id = "foo"; |
| 4127 o.idDimensionValue = buildDimensionValue(); | 4127 o.idDimensionValue = buildDimensionValue(); |
| 4128 o.inAppAttributionTrackingEnabled = true; | 4128 o.inAppAttributionTrackingEnabled = true; |
| 4129 o.kind = "foo"; | 4129 o.kind = "foo"; |
| 4130 o.lookbackConfiguration = buildLookbackConfiguration(); | 4130 o.lookbackConfiguration = buildLookbackConfiguration(); |
| 4131 o.naturalSearchConversionAttributionOption = "foo"; | 4131 o.naturalSearchConversionAttributionOption = "foo"; |
| 4132 o.omnitureSettings = buildOmnitureSettings(); | 4132 o.omnitureSettings = buildOmnitureSettings(); |
| 4133 o.standardVariableTypes = buildUnnamed1377(); | 4133 o.standardVariableTypes = buildUnnamed1389(); |
| 4134 o.subaccountId = "foo"; | 4134 o.subaccountId = "foo"; |
| 4135 o.tagSettings = buildTagSettings(); | 4135 o.tagSettings = buildTagSettings(); |
| 4136 o.thirdPartyAuthenticationTokens = buildUnnamed1378(); | 4136 o.thirdPartyAuthenticationTokens = buildUnnamed1390(); |
| 4137 o.userDefinedVariableConfigurations = buildUnnamed1379(); | 4137 o.userDefinedVariableConfigurations = buildUnnamed1391(); |
| 4138 } | 4138 } |
| 4139 buildCounterFloodlightConfiguration--; | 4139 buildCounterFloodlightConfiguration--; |
| 4140 return o; | 4140 return o; |
| 4141 } | 4141 } |
| 4142 | 4142 |
| 4143 checkFloodlightConfiguration(api.FloodlightConfiguration o) { | 4143 checkFloodlightConfiguration(api.FloodlightConfiguration o) { |
| 4144 buildCounterFloodlightConfiguration++; | 4144 buildCounterFloodlightConfiguration++; |
| 4145 if (buildCounterFloodlightConfiguration < 3) { | 4145 if (buildCounterFloodlightConfiguration < 3) { |
| 4146 unittest.expect(o.accountId, unittest.equals('foo')); | 4146 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4147 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4147 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4148 checkDimensionValue(o.advertiserIdDimensionValue); | 4148 checkDimensionValue(o.advertiserIdDimensionValue); |
| 4149 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); | 4149 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); |
| 4150 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); | 4150 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); |
| 4151 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); | 4151 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); |
| 4152 unittest.expect(o.id, unittest.equals('foo')); | 4152 unittest.expect(o.id, unittest.equals('foo')); |
| 4153 checkDimensionValue(o.idDimensionValue); | 4153 checkDimensionValue(o.idDimensionValue); |
| 4154 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); | 4154 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); |
| 4155 unittest.expect(o.kind, unittest.equals('foo')); | 4155 unittest.expect(o.kind, unittest.equals('foo')); |
| 4156 checkLookbackConfiguration(o.lookbackConfiguration); | 4156 checkLookbackConfiguration(o.lookbackConfiguration); |
| 4157 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); | 4157 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); |
| 4158 checkOmnitureSettings(o.omnitureSettings); | 4158 checkOmnitureSettings(o.omnitureSettings); |
| 4159 checkUnnamed1377(o.standardVariableTypes); | 4159 checkUnnamed1389(o.standardVariableTypes); |
| 4160 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4160 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4161 checkTagSettings(o.tagSettings); | 4161 checkTagSettings(o.tagSettings); |
| 4162 checkUnnamed1378(o.thirdPartyAuthenticationTokens); | 4162 checkUnnamed1390(o.thirdPartyAuthenticationTokens); |
| 4163 checkUnnamed1379(o.userDefinedVariableConfigurations); | 4163 checkUnnamed1391(o.userDefinedVariableConfigurations); |
| 4164 } | 4164 } |
| 4165 buildCounterFloodlightConfiguration--; | 4165 buildCounterFloodlightConfiguration--; |
| 4166 } | 4166 } |
| 4167 | 4167 |
| 4168 buildUnnamed1380() { | 4168 buildUnnamed1392() { |
| 4169 var o = new core.List<api.FloodlightConfiguration>(); | 4169 var o = new core.List<api.FloodlightConfiguration>(); |
| 4170 o.add(buildFloodlightConfiguration()); | 4170 o.add(buildFloodlightConfiguration()); |
| 4171 o.add(buildFloodlightConfiguration()); | 4171 o.add(buildFloodlightConfiguration()); |
| 4172 return o; | 4172 return o; |
| 4173 } | 4173 } |
| 4174 | 4174 |
| 4175 checkUnnamed1380(core.List<api.FloodlightConfiguration> o) { | 4175 checkUnnamed1392(core.List<api.FloodlightConfiguration> o) { |
| 4176 unittest.expect(o, unittest.hasLength(2)); | 4176 unittest.expect(o, unittest.hasLength(2)); |
| 4177 checkFloodlightConfiguration(o[0]); | 4177 checkFloodlightConfiguration(o[0]); |
| 4178 checkFloodlightConfiguration(o[1]); | 4178 checkFloodlightConfiguration(o[1]); |
| 4179 } | 4179 } |
| 4180 | 4180 |
| 4181 core.int buildCounterFloodlightConfigurationsListResponse = 0; | 4181 core.int buildCounterFloodlightConfigurationsListResponse = 0; |
| 4182 buildFloodlightConfigurationsListResponse() { | 4182 buildFloodlightConfigurationsListResponse() { |
| 4183 var o = new api.FloodlightConfigurationsListResponse(); | 4183 var o = new api.FloodlightConfigurationsListResponse(); |
| 4184 buildCounterFloodlightConfigurationsListResponse++; | 4184 buildCounterFloodlightConfigurationsListResponse++; |
| 4185 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 4185 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 4186 o.floodlightConfigurations = buildUnnamed1380(); | 4186 o.floodlightConfigurations = buildUnnamed1392(); |
| 4187 o.kind = "foo"; | 4187 o.kind = "foo"; |
| 4188 } | 4188 } |
| 4189 buildCounterFloodlightConfigurationsListResponse--; | 4189 buildCounterFloodlightConfigurationsListResponse--; |
| 4190 return o; | 4190 return o; |
| 4191 } | 4191 } |
| 4192 | 4192 |
| 4193 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { | 4193 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { |
| 4194 buildCounterFloodlightConfigurationsListResponse++; | 4194 buildCounterFloodlightConfigurationsListResponse++; |
| 4195 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 4195 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 4196 checkUnnamed1380(o.floodlightConfigurations); | 4196 checkUnnamed1392(o.floodlightConfigurations); |
| 4197 unittest.expect(o.kind, unittest.equals('foo')); | 4197 unittest.expect(o.kind, unittest.equals('foo')); |
| 4198 } | 4198 } |
| 4199 buildCounterFloodlightConfigurationsListResponse--; | 4199 buildCounterFloodlightConfigurationsListResponse--; |
| 4200 } | 4200 } |
| 4201 | 4201 |
| 4202 buildUnnamed1381() { | 4202 buildUnnamed1393() { |
| 4203 var o = new core.List<api.Dimension>(); | 4203 var o = new core.List<api.Dimension>(); |
| 4204 o.add(buildDimension()); | 4204 o.add(buildDimension()); |
| 4205 o.add(buildDimension()); | 4205 o.add(buildDimension()); |
| 4206 return o; | 4206 return o; |
| 4207 } | 4207 } |
| 4208 | 4208 |
| 4209 checkUnnamed1381(core.List<api.Dimension> o) { | 4209 checkUnnamed1393(core.List<api.Dimension> o) { |
| 4210 unittest.expect(o, unittest.hasLength(2)); | 4210 unittest.expect(o, unittest.hasLength(2)); |
| 4211 checkDimension(o[0]); | 4211 checkDimension(o[0]); |
| 4212 checkDimension(o[1]); | 4212 checkDimension(o[1]); |
| 4213 } | 4213 } |
| 4214 | 4214 |
| 4215 buildUnnamed1382() { | 4215 buildUnnamed1394() { |
| 4216 var o = new core.List<api.Dimension>(); | 4216 var o = new core.List<api.Dimension>(); |
| 4217 o.add(buildDimension()); | 4217 o.add(buildDimension()); |
| 4218 o.add(buildDimension()); | 4218 o.add(buildDimension()); |
| 4219 return o; | 4219 return o; |
| 4220 } | 4220 } |
| 4221 | 4221 |
| 4222 checkUnnamed1382(core.List<api.Dimension> o) { | 4222 checkUnnamed1394(core.List<api.Dimension> o) { |
| 4223 unittest.expect(o, unittest.hasLength(2)); | 4223 unittest.expect(o, unittest.hasLength(2)); |
| 4224 checkDimension(o[0]); | 4224 checkDimension(o[0]); |
| 4225 checkDimension(o[1]); | 4225 checkDimension(o[1]); |
| 4226 } | 4226 } |
| 4227 | 4227 |
| 4228 buildUnnamed1383() { | 4228 buildUnnamed1395() { |
| 4229 var o = new core.List<api.Metric>(); | 4229 var o = new core.List<api.Metric>(); |
| 4230 o.add(buildMetric()); | 4230 o.add(buildMetric()); |
| 4231 o.add(buildMetric()); | 4231 o.add(buildMetric()); |
| 4232 return o; | 4232 return o; |
| 4233 } | 4233 } |
| 4234 | 4234 |
| 4235 checkUnnamed1383(core.List<api.Metric> o) { | 4235 checkUnnamed1395(core.List<api.Metric> o) { |
| 4236 unittest.expect(o, unittest.hasLength(2)); | 4236 unittest.expect(o, unittest.hasLength(2)); |
| 4237 checkMetric(o[0]); | 4237 checkMetric(o[0]); |
| 4238 checkMetric(o[1]); | 4238 checkMetric(o[1]); |
| 4239 } | 4239 } |
| 4240 | 4240 |
| 4241 core.int buildCounterFloodlightReportCompatibleFields = 0; | 4241 core.int buildCounterFloodlightReportCompatibleFields = 0; |
| 4242 buildFloodlightReportCompatibleFields() { | 4242 buildFloodlightReportCompatibleFields() { |
| 4243 var o = new api.FloodlightReportCompatibleFields(); | 4243 var o = new api.FloodlightReportCompatibleFields(); |
| 4244 buildCounterFloodlightReportCompatibleFields++; | 4244 buildCounterFloodlightReportCompatibleFields++; |
| 4245 if (buildCounterFloodlightReportCompatibleFields < 3) { | 4245 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 4246 o.dimensionFilters = buildUnnamed1381(); | 4246 o.dimensionFilters = buildUnnamed1393(); |
| 4247 o.dimensions = buildUnnamed1382(); | 4247 o.dimensions = buildUnnamed1394(); |
| 4248 o.kind = "foo"; | 4248 o.kind = "foo"; |
| 4249 o.metrics = buildUnnamed1383(); | 4249 o.metrics = buildUnnamed1395(); |
| 4250 } | 4250 } |
| 4251 buildCounterFloodlightReportCompatibleFields--; | 4251 buildCounterFloodlightReportCompatibleFields--; |
| 4252 return o; | 4252 return o; |
| 4253 } | 4253 } |
| 4254 | 4254 |
| 4255 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { | 4255 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { |
| 4256 buildCounterFloodlightReportCompatibleFields++; | 4256 buildCounterFloodlightReportCompatibleFields++; |
| 4257 if (buildCounterFloodlightReportCompatibleFields < 3) { | 4257 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 4258 checkUnnamed1381(o.dimensionFilters); | 4258 checkUnnamed1393(o.dimensionFilters); |
| 4259 checkUnnamed1382(o.dimensions); | 4259 checkUnnamed1394(o.dimensions); |
| 4260 unittest.expect(o.kind, unittest.equals('foo')); | 4260 unittest.expect(o.kind, unittest.equals('foo')); |
| 4261 checkUnnamed1383(o.metrics); | 4261 checkUnnamed1395(o.metrics); |
| 4262 } | 4262 } |
| 4263 buildCounterFloodlightReportCompatibleFields--; | 4263 buildCounterFloodlightReportCompatibleFields--; |
| 4264 } | 4264 } |
| 4265 | 4265 |
| 4266 core.int buildCounterFrequencyCap = 0; | 4266 core.int buildCounterFrequencyCap = 0; |
| 4267 buildFrequencyCap() { | 4267 buildFrequencyCap() { |
| 4268 var o = new api.FrequencyCap(); | 4268 var o = new api.FrequencyCap(); |
| 4269 buildCounterFrequencyCap++; | 4269 buildCounterFrequencyCap++; |
| 4270 if (buildCounterFrequencyCap < 3) { | 4270 if (buildCounterFrequencyCap < 3) { |
| 4271 o.duration = "foo"; | 4271 o.duration = "foo"; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4304 if (buildCounterFsCommand < 3) { | 4304 if (buildCounterFsCommand < 3) { |
| 4305 unittest.expect(o.left, unittest.equals(42)); | 4305 unittest.expect(o.left, unittest.equals(42)); |
| 4306 unittest.expect(o.positionOption, unittest.equals('foo')); | 4306 unittest.expect(o.positionOption, unittest.equals('foo')); |
| 4307 unittest.expect(o.top, unittest.equals(42)); | 4307 unittest.expect(o.top, unittest.equals(42)); |
| 4308 unittest.expect(o.windowHeight, unittest.equals(42)); | 4308 unittest.expect(o.windowHeight, unittest.equals(42)); |
| 4309 unittest.expect(o.windowWidth, unittest.equals(42)); | 4309 unittest.expect(o.windowWidth, unittest.equals(42)); |
| 4310 } | 4310 } |
| 4311 buildCounterFsCommand--; | 4311 buildCounterFsCommand--; |
| 4312 } | 4312 } |
| 4313 | 4313 |
| 4314 buildUnnamed1384() { | 4314 buildUnnamed1396() { |
| 4315 var o = new core.List<api.City>(); | 4315 var o = new core.List<api.City>(); |
| 4316 o.add(buildCity()); | 4316 o.add(buildCity()); |
| 4317 o.add(buildCity()); | 4317 o.add(buildCity()); |
| 4318 return o; | 4318 return o; |
| 4319 } | 4319 } |
| 4320 | 4320 |
| 4321 checkUnnamed1384(core.List<api.City> o) { | 4321 checkUnnamed1396(core.List<api.City> o) { |
| 4322 unittest.expect(o, unittest.hasLength(2)); | 4322 unittest.expect(o, unittest.hasLength(2)); |
| 4323 checkCity(o[0]); | 4323 checkCity(o[0]); |
| 4324 checkCity(o[1]); | 4324 checkCity(o[1]); |
| 4325 } | 4325 } |
| 4326 | 4326 |
| 4327 buildUnnamed1385() { | 4327 buildUnnamed1397() { |
| 4328 var o = new core.List<api.Country>(); | 4328 var o = new core.List<api.Country>(); |
| 4329 o.add(buildCountry()); | 4329 o.add(buildCountry()); |
| 4330 o.add(buildCountry()); | 4330 o.add(buildCountry()); |
| 4331 return o; | 4331 return o; |
| 4332 } | 4332 } |
| 4333 | 4333 |
| 4334 checkUnnamed1385(core.List<api.Country> o) { | 4334 checkUnnamed1397(core.List<api.Country> o) { |
| 4335 unittest.expect(o, unittest.hasLength(2)); | 4335 unittest.expect(o, unittest.hasLength(2)); |
| 4336 checkCountry(o[0]); | 4336 checkCountry(o[0]); |
| 4337 checkCountry(o[1]); | 4337 checkCountry(o[1]); |
| 4338 } | 4338 } |
| 4339 | 4339 |
| 4340 buildUnnamed1386() { | 4340 buildUnnamed1398() { |
| 4341 var o = new core.List<api.Metro>(); | 4341 var o = new core.List<api.Metro>(); |
| 4342 o.add(buildMetro()); | 4342 o.add(buildMetro()); |
| 4343 o.add(buildMetro()); | 4343 o.add(buildMetro()); |
| 4344 return o; | 4344 return o; |
| 4345 } | 4345 } |
| 4346 | 4346 |
| 4347 checkUnnamed1386(core.List<api.Metro> o) { | 4347 checkUnnamed1398(core.List<api.Metro> o) { |
| 4348 unittest.expect(o, unittest.hasLength(2)); | 4348 unittest.expect(o, unittest.hasLength(2)); |
| 4349 checkMetro(o[0]); | 4349 checkMetro(o[0]); |
| 4350 checkMetro(o[1]); | 4350 checkMetro(o[1]); |
| 4351 } | 4351 } |
| 4352 | 4352 |
| 4353 buildUnnamed1387() { | 4353 buildUnnamed1399() { |
| 4354 var o = new core.List<api.PostalCode>(); | 4354 var o = new core.List<api.PostalCode>(); |
| 4355 o.add(buildPostalCode()); | 4355 o.add(buildPostalCode()); |
| 4356 o.add(buildPostalCode()); | 4356 o.add(buildPostalCode()); |
| 4357 return o; | 4357 return o; |
| 4358 } | 4358 } |
| 4359 | 4359 |
| 4360 checkUnnamed1387(core.List<api.PostalCode> o) { | 4360 checkUnnamed1399(core.List<api.PostalCode> o) { |
| 4361 unittest.expect(o, unittest.hasLength(2)); | 4361 unittest.expect(o, unittest.hasLength(2)); |
| 4362 checkPostalCode(o[0]); | 4362 checkPostalCode(o[0]); |
| 4363 checkPostalCode(o[1]); | 4363 checkPostalCode(o[1]); |
| 4364 } | 4364 } |
| 4365 | 4365 |
| 4366 buildUnnamed1388() { | 4366 buildUnnamed1400() { |
| 4367 var o = new core.List<api.Region>(); | 4367 var o = new core.List<api.Region>(); |
| 4368 o.add(buildRegion()); | 4368 o.add(buildRegion()); |
| 4369 o.add(buildRegion()); | 4369 o.add(buildRegion()); |
| 4370 return o; | 4370 return o; |
| 4371 } | 4371 } |
| 4372 | 4372 |
| 4373 checkUnnamed1388(core.List<api.Region> o) { | 4373 checkUnnamed1400(core.List<api.Region> o) { |
| 4374 unittest.expect(o, unittest.hasLength(2)); | 4374 unittest.expect(o, unittest.hasLength(2)); |
| 4375 checkRegion(o[0]); | 4375 checkRegion(o[0]); |
| 4376 checkRegion(o[1]); | 4376 checkRegion(o[1]); |
| 4377 } | 4377 } |
| 4378 | 4378 |
| 4379 core.int buildCounterGeoTargeting = 0; | 4379 core.int buildCounterGeoTargeting = 0; |
| 4380 buildGeoTargeting() { | 4380 buildGeoTargeting() { |
| 4381 var o = new api.GeoTargeting(); | 4381 var o = new api.GeoTargeting(); |
| 4382 buildCounterGeoTargeting++; | 4382 buildCounterGeoTargeting++; |
| 4383 if (buildCounterGeoTargeting < 3) { | 4383 if (buildCounterGeoTargeting < 3) { |
| 4384 o.cities = buildUnnamed1384(); | 4384 o.cities = buildUnnamed1396(); |
| 4385 o.countries = buildUnnamed1385(); | 4385 o.countries = buildUnnamed1397(); |
| 4386 o.excludeCountries = true; | 4386 o.excludeCountries = true; |
| 4387 o.metros = buildUnnamed1386(); | 4387 o.metros = buildUnnamed1398(); |
| 4388 o.postalCodes = buildUnnamed1387(); | 4388 o.postalCodes = buildUnnamed1399(); |
| 4389 o.regions = buildUnnamed1388(); | 4389 o.regions = buildUnnamed1400(); |
| 4390 } | 4390 } |
| 4391 buildCounterGeoTargeting--; | 4391 buildCounterGeoTargeting--; |
| 4392 return o; | 4392 return o; |
| 4393 } | 4393 } |
| 4394 | 4394 |
| 4395 checkGeoTargeting(api.GeoTargeting o) { | 4395 checkGeoTargeting(api.GeoTargeting o) { |
| 4396 buildCounterGeoTargeting++; | 4396 buildCounterGeoTargeting++; |
| 4397 if (buildCounterGeoTargeting < 3) { | 4397 if (buildCounterGeoTargeting < 3) { |
| 4398 checkUnnamed1384(o.cities); | 4398 checkUnnamed1396(o.cities); |
| 4399 checkUnnamed1385(o.countries); | 4399 checkUnnamed1397(o.countries); |
| 4400 unittest.expect(o.excludeCountries, unittest.isTrue); | 4400 unittest.expect(o.excludeCountries, unittest.isTrue); |
| 4401 checkUnnamed1386(o.metros); | 4401 checkUnnamed1398(o.metros); |
| 4402 checkUnnamed1387(o.postalCodes); | 4402 checkUnnamed1399(o.postalCodes); |
| 4403 checkUnnamed1388(o.regions); | 4403 checkUnnamed1400(o.regions); |
| 4404 } | 4404 } |
| 4405 buildCounterGeoTargeting--; | 4405 buildCounterGeoTargeting--; |
| 4406 } | 4406 } |
| 4407 | 4407 |
| 4408 buildUnnamed1389() { | 4408 buildUnnamed1401() { |
| 4409 var o = new core.List<api.AdSlot>(); | 4409 var o = new core.List<api.AdSlot>(); |
| 4410 o.add(buildAdSlot()); | 4410 o.add(buildAdSlot()); |
| 4411 o.add(buildAdSlot()); | 4411 o.add(buildAdSlot()); |
| 4412 return o; | 4412 return o; |
| 4413 } | 4413 } |
| 4414 | 4414 |
| 4415 checkUnnamed1389(core.List<api.AdSlot> o) { | 4415 checkUnnamed1401(core.List<api.AdSlot> o) { |
| 4416 unittest.expect(o, unittest.hasLength(2)); | 4416 unittest.expect(o, unittest.hasLength(2)); |
| 4417 checkAdSlot(o[0]); | 4417 checkAdSlot(o[0]); |
| 4418 checkAdSlot(o[1]); | 4418 checkAdSlot(o[1]); |
| 4419 } | 4419 } |
| 4420 | 4420 |
| 4421 core.int buildCounterInventoryItem = 0; | 4421 core.int buildCounterInventoryItem = 0; |
| 4422 buildInventoryItem() { | 4422 buildInventoryItem() { |
| 4423 var o = new api.InventoryItem(); | 4423 var o = new api.InventoryItem(); |
| 4424 buildCounterInventoryItem++; | 4424 buildCounterInventoryItem++; |
| 4425 if (buildCounterInventoryItem < 3) { | 4425 if (buildCounterInventoryItem < 3) { |
| 4426 o.accountId = "foo"; | 4426 o.accountId = "foo"; |
| 4427 o.adSlots = buildUnnamed1389(); | 4427 o.adSlots = buildUnnamed1401(); |
| 4428 o.advertiserId = "foo"; | 4428 o.advertiserId = "foo"; |
| 4429 o.contentCategoryId = "foo"; | 4429 o.contentCategoryId = "foo"; |
| 4430 o.estimatedClickThroughRate = "foo"; | 4430 o.estimatedClickThroughRate = "foo"; |
| 4431 o.estimatedConversionRate = "foo"; | 4431 o.estimatedConversionRate = "foo"; |
| 4432 o.id = "foo"; | 4432 o.id = "foo"; |
| 4433 o.inPlan = true; | 4433 o.inPlan = true; |
| 4434 o.kind = "foo"; | 4434 o.kind = "foo"; |
| 4435 o.lastModifiedInfo = buildLastModifiedInfo(); | 4435 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4436 o.name = "foo"; | 4436 o.name = "foo"; |
| 4437 o.negotiationChannelId = "foo"; | 4437 o.negotiationChannelId = "foo"; |
| 4438 o.orderId = "foo"; | 4438 o.orderId = "foo"; |
| 4439 o.placementStrategyId = "foo"; | 4439 o.placementStrategyId = "foo"; |
| 4440 o.pricing = buildPricing(); | 4440 o.pricing = buildPricing(); |
| 4441 o.projectId = "foo"; | 4441 o.projectId = "foo"; |
| 4442 o.rfpId = "foo"; | 4442 o.rfpId = "foo"; |
| 4443 o.siteId = "foo"; | 4443 o.siteId = "foo"; |
| 4444 o.subaccountId = "foo"; | 4444 o.subaccountId = "foo"; |
| 4445 o.type = "foo"; | 4445 o.type = "foo"; |
| 4446 } | 4446 } |
| 4447 buildCounterInventoryItem--; | 4447 buildCounterInventoryItem--; |
| 4448 return o; | 4448 return o; |
| 4449 } | 4449 } |
| 4450 | 4450 |
| 4451 checkInventoryItem(api.InventoryItem o) { | 4451 checkInventoryItem(api.InventoryItem o) { |
| 4452 buildCounterInventoryItem++; | 4452 buildCounterInventoryItem++; |
| 4453 if (buildCounterInventoryItem < 3) { | 4453 if (buildCounterInventoryItem < 3) { |
| 4454 unittest.expect(o.accountId, unittest.equals('foo')); | 4454 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4455 checkUnnamed1389(o.adSlots); | 4455 checkUnnamed1401(o.adSlots); |
| 4456 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4456 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4457 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 4457 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 4458 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); | 4458 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); |
| 4459 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); | 4459 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); |
| 4460 unittest.expect(o.id, unittest.equals('foo')); | 4460 unittest.expect(o.id, unittest.equals('foo')); |
| 4461 unittest.expect(o.inPlan, unittest.isTrue); | 4461 unittest.expect(o.inPlan, unittest.isTrue); |
| 4462 unittest.expect(o.kind, unittest.equals('foo')); | 4462 unittest.expect(o.kind, unittest.equals('foo')); |
| 4463 checkLastModifiedInfo(o.lastModifiedInfo); | 4463 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4464 unittest.expect(o.name, unittest.equals('foo')); | 4464 unittest.expect(o.name, unittest.equals('foo')); |
| 4465 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); | 4465 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); |
| 4466 unittest.expect(o.orderId, unittest.equals('foo')); | 4466 unittest.expect(o.orderId, unittest.equals('foo')); |
| 4467 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 4467 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 4468 checkPricing(o.pricing); | 4468 checkPricing(o.pricing); |
| 4469 unittest.expect(o.projectId, unittest.equals('foo')); | 4469 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4470 unittest.expect(o.rfpId, unittest.equals('foo')); | 4470 unittest.expect(o.rfpId, unittest.equals('foo')); |
| 4471 unittest.expect(o.siteId, unittest.equals('foo')); | 4471 unittest.expect(o.siteId, unittest.equals('foo')); |
| 4472 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4472 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4473 unittest.expect(o.type, unittest.equals('foo')); | 4473 unittest.expect(o.type, unittest.equals('foo')); |
| 4474 } | 4474 } |
| 4475 buildCounterInventoryItem--; | 4475 buildCounterInventoryItem--; |
| 4476 } | 4476 } |
| 4477 | 4477 |
| 4478 buildUnnamed1390() { | 4478 buildUnnamed1402() { |
| 4479 var o = new core.List<api.InventoryItem>(); | 4479 var o = new core.List<api.InventoryItem>(); |
| 4480 o.add(buildInventoryItem()); | 4480 o.add(buildInventoryItem()); |
| 4481 o.add(buildInventoryItem()); | 4481 o.add(buildInventoryItem()); |
| 4482 return o; | 4482 return o; |
| 4483 } | 4483 } |
| 4484 | 4484 |
| 4485 checkUnnamed1390(core.List<api.InventoryItem> o) { | 4485 checkUnnamed1402(core.List<api.InventoryItem> o) { |
| 4486 unittest.expect(o, unittest.hasLength(2)); | 4486 unittest.expect(o, unittest.hasLength(2)); |
| 4487 checkInventoryItem(o[0]); | 4487 checkInventoryItem(o[0]); |
| 4488 checkInventoryItem(o[1]); | 4488 checkInventoryItem(o[1]); |
| 4489 } | 4489 } |
| 4490 | 4490 |
| 4491 core.int buildCounterInventoryItemsListResponse = 0; | 4491 core.int buildCounterInventoryItemsListResponse = 0; |
| 4492 buildInventoryItemsListResponse() { | 4492 buildInventoryItemsListResponse() { |
| 4493 var o = new api.InventoryItemsListResponse(); | 4493 var o = new api.InventoryItemsListResponse(); |
| 4494 buildCounterInventoryItemsListResponse++; | 4494 buildCounterInventoryItemsListResponse++; |
| 4495 if (buildCounterInventoryItemsListResponse < 3) { | 4495 if (buildCounterInventoryItemsListResponse < 3) { |
| 4496 o.inventoryItems = buildUnnamed1390(); | 4496 o.inventoryItems = buildUnnamed1402(); |
| 4497 o.kind = "foo"; | 4497 o.kind = "foo"; |
| 4498 o.nextPageToken = "foo"; | 4498 o.nextPageToken = "foo"; |
| 4499 } | 4499 } |
| 4500 buildCounterInventoryItemsListResponse--; | 4500 buildCounterInventoryItemsListResponse--; |
| 4501 return o; | 4501 return o; |
| 4502 } | 4502 } |
| 4503 | 4503 |
| 4504 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { | 4504 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { |
| 4505 buildCounterInventoryItemsListResponse++; | 4505 buildCounterInventoryItemsListResponse++; |
| 4506 if (buildCounterInventoryItemsListResponse < 3) { | 4506 if (buildCounterInventoryItemsListResponse < 3) { |
| 4507 checkUnnamed1390(o.inventoryItems); | 4507 checkUnnamed1402(o.inventoryItems); |
| 4508 unittest.expect(o.kind, unittest.equals('foo')); | 4508 unittest.expect(o.kind, unittest.equals('foo')); |
| 4509 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4509 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4510 } | 4510 } |
| 4511 buildCounterInventoryItemsListResponse--; | 4511 buildCounterInventoryItemsListResponse--; |
| 4512 } | 4512 } |
| 4513 | 4513 |
| 4514 core.int buildCounterKeyValueTargetingExpression = 0; | 4514 core.int buildCounterKeyValueTargetingExpression = 0; |
| 4515 buildKeyValueTargetingExpression() { | 4515 buildKeyValueTargetingExpression() { |
| 4516 var o = new api.KeyValueTargetingExpression(); | 4516 var o = new api.KeyValueTargetingExpression(); |
| 4517 buildCounterKeyValueTargetingExpression++; | 4517 buildCounterKeyValueTargetingExpression++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4550 if (buildCounterLandingPage < 3) { | 4550 if (buildCounterLandingPage < 3) { |
| 4551 unittest.expect(o.default_, unittest.isTrue); | 4551 unittest.expect(o.default_, unittest.isTrue); |
| 4552 unittest.expect(o.id, unittest.equals('foo')); | 4552 unittest.expect(o.id, unittest.equals('foo')); |
| 4553 unittest.expect(o.kind, unittest.equals('foo')); | 4553 unittest.expect(o.kind, unittest.equals('foo')); |
| 4554 unittest.expect(o.name, unittest.equals('foo')); | 4554 unittest.expect(o.name, unittest.equals('foo')); |
| 4555 unittest.expect(o.url, unittest.equals('foo')); | 4555 unittest.expect(o.url, unittest.equals('foo')); |
| 4556 } | 4556 } |
| 4557 buildCounterLandingPage--; | 4557 buildCounterLandingPage--; |
| 4558 } | 4558 } |
| 4559 | 4559 |
| 4560 buildUnnamed1391() { | 4560 buildUnnamed1403() { |
| 4561 var o = new core.List<api.LandingPage>(); | 4561 var o = new core.List<api.LandingPage>(); |
| 4562 o.add(buildLandingPage()); | 4562 o.add(buildLandingPage()); |
| 4563 o.add(buildLandingPage()); | 4563 o.add(buildLandingPage()); |
| 4564 return o; | 4564 return o; |
| 4565 } | 4565 } |
| 4566 | 4566 |
| 4567 checkUnnamed1391(core.List<api.LandingPage> o) { | 4567 checkUnnamed1403(core.List<api.LandingPage> o) { |
| 4568 unittest.expect(o, unittest.hasLength(2)); | 4568 unittest.expect(o, unittest.hasLength(2)); |
| 4569 checkLandingPage(o[0]); | 4569 checkLandingPage(o[0]); |
| 4570 checkLandingPage(o[1]); | 4570 checkLandingPage(o[1]); |
| 4571 } | 4571 } |
| 4572 | 4572 |
| 4573 core.int buildCounterLandingPagesListResponse = 0; | 4573 core.int buildCounterLandingPagesListResponse = 0; |
| 4574 buildLandingPagesListResponse() { | 4574 buildLandingPagesListResponse() { |
| 4575 var o = new api.LandingPagesListResponse(); | 4575 var o = new api.LandingPagesListResponse(); |
| 4576 buildCounterLandingPagesListResponse++; | 4576 buildCounterLandingPagesListResponse++; |
| 4577 if (buildCounterLandingPagesListResponse < 3) { | 4577 if (buildCounterLandingPagesListResponse < 3) { |
| 4578 o.kind = "foo"; | 4578 o.kind = "foo"; |
| 4579 o.landingPages = buildUnnamed1391(); | 4579 o.landingPages = buildUnnamed1403(); |
| 4580 } | 4580 } |
| 4581 buildCounterLandingPagesListResponse--; | 4581 buildCounterLandingPagesListResponse--; |
| 4582 return o; | 4582 return o; |
| 4583 } | 4583 } |
| 4584 | 4584 |
| 4585 checkLandingPagesListResponse(api.LandingPagesListResponse o) { | 4585 checkLandingPagesListResponse(api.LandingPagesListResponse o) { |
| 4586 buildCounterLandingPagesListResponse++; | 4586 buildCounterLandingPagesListResponse++; |
| 4587 if (buildCounterLandingPagesListResponse < 3) { | 4587 if (buildCounterLandingPagesListResponse < 3) { |
| 4588 unittest.expect(o.kind, unittest.equals('foo')); | 4588 unittest.expect(o.kind, unittest.equals('foo')); |
| 4589 checkUnnamed1391(o.landingPages); | 4589 checkUnnamed1403(o.landingPages); |
| 4590 } | 4590 } |
| 4591 buildCounterLandingPagesListResponse--; | 4591 buildCounterLandingPagesListResponse--; |
| 4592 } | 4592 } |
| 4593 | 4593 |
| 4594 core.int buildCounterLastModifiedInfo = 0; | 4594 core.int buildCounterLastModifiedInfo = 0; |
| 4595 buildLastModifiedInfo() { | 4595 buildLastModifiedInfo() { |
| 4596 var o = new api.LastModifiedInfo(); | 4596 var o = new api.LastModifiedInfo(); |
| 4597 buildCounterLastModifiedInfo++; | 4597 buildCounterLastModifiedInfo++; |
| 4598 if (buildCounterLastModifiedInfo < 3) { | 4598 if (buildCounterLastModifiedInfo < 3) { |
| 4599 o.time = "foo"; | 4599 o.time = "foo"; |
| 4600 } | 4600 } |
| 4601 buildCounterLastModifiedInfo--; | 4601 buildCounterLastModifiedInfo--; |
| 4602 return o; | 4602 return o; |
| 4603 } | 4603 } |
| 4604 | 4604 |
| 4605 checkLastModifiedInfo(api.LastModifiedInfo o) { | 4605 checkLastModifiedInfo(api.LastModifiedInfo o) { |
| 4606 buildCounterLastModifiedInfo++; | 4606 buildCounterLastModifiedInfo++; |
| 4607 if (buildCounterLastModifiedInfo < 3) { | 4607 if (buildCounterLastModifiedInfo < 3) { |
| 4608 unittest.expect(o.time, unittest.equals('foo')); | 4608 unittest.expect(o.time, unittest.equals('foo')); |
| 4609 } | 4609 } |
| 4610 buildCounterLastModifiedInfo--; | 4610 buildCounterLastModifiedInfo--; |
| 4611 } | 4611 } |
| 4612 | 4612 |
| 4613 buildUnnamed1392() { | 4613 buildUnnamed1404() { |
| 4614 var o = new core.List<api.ListPopulationTerm>(); | 4614 var o = new core.List<api.ListPopulationTerm>(); |
| 4615 o.add(buildListPopulationTerm()); | 4615 o.add(buildListPopulationTerm()); |
| 4616 o.add(buildListPopulationTerm()); | 4616 o.add(buildListPopulationTerm()); |
| 4617 return o; | 4617 return o; |
| 4618 } | 4618 } |
| 4619 | 4619 |
| 4620 checkUnnamed1392(core.List<api.ListPopulationTerm> o) { | 4620 checkUnnamed1404(core.List<api.ListPopulationTerm> o) { |
| 4621 unittest.expect(o, unittest.hasLength(2)); | 4621 unittest.expect(o, unittest.hasLength(2)); |
| 4622 checkListPopulationTerm(o[0]); | 4622 checkListPopulationTerm(o[0]); |
| 4623 checkListPopulationTerm(o[1]); | 4623 checkListPopulationTerm(o[1]); |
| 4624 } | 4624 } |
| 4625 | 4625 |
| 4626 core.int buildCounterListPopulationClause = 0; | 4626 core.int buildCounterListPopulationClause = 0; |
| 4627 buildListPopulationClause() { | 4627 buildListPopulationClause() { |
| 4628 var o = new api.ListPopulationClause(); | 4628 var o = new api.ListPopulationClause(); |
| 4629 buildCounterListPopulationClause++; | 4629 buildCounterListPopulationClause++; |
| 4630 if (buildCounterListPopulationClause < 3) { | 4630 if (buildCounterListPopulationClause < 3) { |
| 4631 o.terms = buildUnnamed1392(); | 4631 o.terms = buildUnnamed1404(); |
| 4632 } | 4632 } |
| 4633 buildCounterListPopulationClause--; | 4633 buildCounterListPopulationClause--; |
| 4634 return o; | 4634 return o; |
| 4635 } | 4635 } |
| 4636 | 4636 |
| 4637 checkListPopulationClause(api.ListPopulationClause o) { | 4637 checkListPopulationClause(api.ListPopulationClause o) { |
| 4638 buildCounterListPopulationClause++; | 4638 buildCounterListPopulationClause++; |
| 4639 if (buildCounterListPopulationClause < 3) { | 4639 if (buildCounterListPopulationClause < 3) { |
| 4640 checkUnnamed1392(o.terms); | 4640 checkUnnamed1404(o.terms); |
| 4641 } | 4641 } |
| 4642 buildCounterListPopulationClause--; | 4642 buildCounterListPopulationClause--; |
| 4643 } | 4643 } |
| 4644 | 4644 |
| 4645 buildUnnamed1393() { | 4645 buildUnnamed1405() { |
| 4646 var o = new core.List<api.ListPopulationClause>(); | 4646 var o = new core.List<api.ListPopulationClause>(); |
| 4647 o.add(buildListPopulationClause()); | 4647 o.add(buildListPopulationClause()); |
| 4648 o.add(buildListPopulationClause()); | 4648 o.add(buildListPopulationClause()); |
| 4649 return o; | 4649 return o; |
| 4650 } | 4650 } |
| 4651 | 4651 |
| 4652 checkUnnamed1393(core.List<api.ListPopulationClause> o) { | 4652 checkUnnamed1405(core.List<api.ListPopulationClause> o) { |
| 4653 unittest.expect(o, unittest.hasLength(2)); | 4653 unittest.expect(o, unittest.hasLength(2)); |
| 4654 checkListPopulationClause(o[0]); | 4654 checkListPopulationClause(o[0]); |
| 4655 checkListPopulationClause(o[1]); | 4655 checkListPopulationClause(o[1]); |
| 4656 } | 4656 } |
| 4657 | 4657 |
| 4658 core.int buildCounterListPopulationRule = 0; | 4658 core.int buildCounterListPopulationRule = 0; |
| 4659 buildListPopulationRule() { | 4659 buildListPopulationRule() { |
| 4660 var o = new api.ListPopulationRule(); | 4660 var o = new api.ListPopulationRule(); |
| 4661 buildCounterListPopulationRule++; | 4661 buildCounterListPopulationRule++; |
| 4662 if (buildCounterListPopulationRule < 3) { | 4662 if (buildCounterListPopulationRule < 3) { |
| 4663 o.floodlightActivityId = "foo"; | 4663 o.floodlightActivityId = "foo"; |
| 4664 o.floodlightActivityName = "foo"; | 4664 o.floodlightActivityName = "foo"; |
| 4665 o.listPopulationClauses = buildUnnamed1393(); | 4665 o.listPopulationClauses = buildUnnamed1405(); |
| 4666 } | 4666 } |
| 4667 buildCounterListPopulationRule--; | 4667 buildCounterListPopulationRule--; |
| 4668 return o; | 4668 return o; |
| 4669 } | 4669 } |
| 4670 | 4670 |
| 4671 checkListPopulationRule(api.ListPopulationRule o) { | 4671 checkListPopulationRule(api.ListPopulationRule o) { |
| 4672 buildCounterListPopulationRule++; | 4672 buildCounterListPopulationRule++; |
| 4673 if (buildCounterListPopulationRule < 3) { | 4673 if (buildCounterListPopulationRule < 3) { |
| 4674 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4674 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4675 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); | 4675 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); |
| 4676 checkUnnamed1393(o.listPopulationClauses); | 4676 checkUnnamed1405(o.listPopulationClauses); |
| 4677 } | 4677 } |
| 4678 buildCounterListPopulationRule--; | 4678 buildCounterListPopulationRule--; |
| 4679 } | 4679 } |
| 4680 | 4680 |
| 4681 core.int buildCounterListPopulationTerm = 0; | 4681 core.int buildCounterListPopulationTerm = 0; |
| 4682 buildListPopulationTerm() { | 4682 buildListPopulationTerm() { |
| 4683 var o = new api.ListPopulationTerm(); | 4683 var o = new api.ListPopulationTerm(); |
| 4684 buildCounterListPopulationTerm++; | 4684 buildCounterListPopulationTerm++; |
| 4685 if (buildCounterListPopulationTerm < 3) { | 4685 if (buildCounterListPopulationTerm < 3) { |
| 4686 o.contains = true; | 4686 o.contains = true; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4796 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4796 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4797 unittest.expect(o.dartId, unittest.equals('foo')); | 4797 unittest.expect(o.dartId, unittest.equals('foo')); |
| 4798 unittest.expect(o.dmaId, unittest.equals('foo')); | 4798 unittest.expect(o.dmaId, unittest.equals('foo')); |
| 4799 unittest.expect(o.kind, unittest.equals('foo')); | 4799 unittest.expect(o.kind, unittest.equals('foo')); |
| 4800 unittest.expect(o.metroCode, unittest.equals('foo')); | 4800 unittest.expect(o.metroCode, unittest.equals('foo')); |
| 4801 unittest.expect(o.name, unittest.equals('foo')); | 4801 unittest.expect(o.name, unittest.equals('foo')); |
| 4802 } | 4802 } |
| 4803 buildCounterMetro--; | 4803 buildCounterMetro--; |
| 4804 } | 4804 } |
| 4805 | 4805 |
| 4806 buildUnnamed1394() { | 4806 buildUnnamed1406() { |
| 4807 var o = new core.List<api.Metro>(); | 4807 var o = new core.List<api.Metro>(); |
| 4808 o.add(buildMetro()); | 4808 o.add(buildMetro()); |
| 4809 o.add(buildMetro()); | 4809 o.add(buildMetro()); |
| 4810 return o; | 4810 return o; |
| 4811 } | 4811 } |
| 4812 | 4812 |
| 4813 checkUnnamed1394(core.List<api.Metro> o) { | 4813 checkUnnamed1406(core.List<api.Metro> o) { |
| 4814 unittest.expect(o, unittest.hasLength(2)); | 4814 unittest.expect(o, unittest.hasLength(2)); |
| 4815 checkMetro(o[0]); | 4815 checkMetro(o[0]); |
| 4816 checkMetro(o[1]); | 4816 checkMetro(o[1]); |
| 4817 } | 4817 } |
| 4818 | 4818 |
| 4819 core.int buildCounterMetrosListResponse = 0; | 4819 core.int buildCounterMetrosListResponse = 0; |
| 4820 buildMetrosListResponse() { | 4820 buildMetrosListResponse() { |
| 4821 var o = new api.MetrosListResponse(); | 4821 var o = new api.MetrosListResponse(); |
| 4822 buildCounterMetrosListResponse++; | 4822 buildCounterMetrosListResponse++; |
| 4823 if (buildCounterMetrosListResponse < 3) { | 4823 if (buildCounterMetrosListResponse < 3) { |
| 4824 o.kind = "foo"; | 4824 o.kind = "foo"; |
| 4825 o.metros = buildUnnamed1394(); | 4825 o.metros = buildUnnamed1406(); |
| 4826 } | 4826 } |
| 4827 buildCounterMetrosListResponse--; | 4827 buildCounterMetrosListResponse--; |
| 4828 return o; | 4828 return o; |
| 4829 } | 4829 } |
| 4830 | 4830 |
| 4831 checkMetrosListResponse(api.MetrosListResponse o) { | 4831 checkMetrosListResponse(api.MetrosListResponse o) { |
| 4832 buildCounterMetrosListResponse++; | 4832 buildCounterMetrosListResponse++; |
| 4833 if (buildCounterMetrosListResponse < 3) { | 4833 if (buildCounterMetrosListResponse < 3) { |
| 4834 unittest.expect(o.kind, unittest.equals('foo')); | 4834 unittest.expect(o.kind, unittest.equals('foo')); |
| 4835 checkUnnamed1394(o.metros); | 4835 checkUnnamed1406(o.metros); |
| 4836 } | 4836 } |
| 4837 buildCounterMetrosListResponse--; | 4837 buildCounterMetrosListResponse--; |
| 4838 } | 4838 } |
| 4839 | 4839 |
| 4840 core.int buildCounterMobileCarrier = 0; | 4840 core.int buildCounterMobileCarrier = 0; |
| 4841 buildMobileCarrier() { | 4841 buildMobileCarrier() { |
| 4842 var o = new api.MobileCarrier(); | 4842 var o = new api.MobileCarrier(); |
| 4843 buildCounterMobileCarrier++; | 4843 buildCounterMobileCarrier++; |
| 4844 if (buildCounterMobileCarrier < 3) { | 4844 if (buildCounterMobileCarrier < 3) { |
| 4845 o.countryCode = "foo"; | 4845 o.countryCode = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4857 if (buildCounterMobileCarrier < 3) { | 4857 if (buildCounterMobileCarrier < 3) { |
| 4858 unittest.expect(o.countryCode, unittest.equals('foo')); | 4858 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 4859 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4859 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4860 unittest.expect(o.id, unittest.equals('foo')); | 4860 unittest.expect(o.id, unittest.equals('foo')); |
| 4861 unittest.expect(o.kind, unittest.equals('foo')); | 4861 unittest.expect(o.kind, unittest.equals('foo')); |
| 4862 unittest.expect(o.name, unittest.equals('foo')); | 4862 unittest.expect(o.name, unittest.equals('foo')); |
| 4863 } | 4863 } |
| 4864 buildCounterMobileCarrier--; | 4864 buildCounterMobileCarrier--; |
| 4865 } | 4865 } |
| 4866 | 4866 |
| 4867 buildUnnamed1395() { | 4867 buildUnnamed1407() { |
| 4868 var o = new core.List<api.MobileCarrier>(); | 4868 var o = new core.List<api.MobileCarrier>(); |
| 4869 o.add(buildMobileCarrier()); | 4869 o.add(buildMobileCarrier()); |
| 4870 o.add(buildMobileCarrier()); | 4870 o.add(buildMobileCarrier()); |
| 4871 return o; | 4871 return o; |
| 4872 } | 4872 } |
| 4873 | 4873 |
| 4874 checkUnnamed1395(core.List<api.MobileCarrier> o) { | 4874 checkUnnamed1407(core.List<api.MobileCarrier> o) { |
| 4875 unittest.expect(o, unittest.hasLength(2)); | 4875 unittest.expect(o, unittest.hasLength(2)); |
| 4876 checkMobileCarrier(o[0]); | 4876 checkMobileCarrier(o[0]); |
| 4877 checkMobileCarrier(o[1]); | 4877 checkMobileCarrier(o[1]); |
| 4878 } | 4878 } |
| 4879 | 4879 |
| 4880 core.int buildCounterMobileCarriersListResponse = 0; | 4880 core.int buildCounterMobileCarriersListResponse = 0; |
| 4881 buildMobileCarriersListResponse() { | 4881 buildMobileCarriersListResponse() { |
| 4882 var o = new api.MobileCarriersListResponse(); | 4882 var o = new api.MobileCarriersListResponse(); |
| 4883 buildCounterMobileCarriersListResponse++; | 4883 buildCounterMobileCarriersListResponse++; |
| 4884 if (buildCounterMobileCarriersListResponse < 3) { | 4884 if (buildCounterMobileCarriersListResponse < 3) { |
| 4885 o.kind = "foo"; | 4885 o.kind = "foo"; |
| 4886 o.mobileCarriers = buildUnnamed1395(); | 4886 o.mobileCarriers = buildUnnamed1407(); |
| 4887 } | 4887 } |
| 4888 buildCounterMobileCarriersListResponse--; | 4888 buildCounterMobileCarriersListResponse--; |
| 4889 return o; | 4889 return o; |
| 4890 } | 4890 } |
| 4891 | 4891 |
| 4892 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { | 4892 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { |
| 4893 buildCounterMobileCarriersListResponse++; | 4893 buildCounterMobileCarriersListResponse++; |
| 4894 if (buildCounterMobileCarriersListResponse < 3) { | 4894 if (buildCounterMobileCarriersListResponse < 3) { |
| 4895 unittest.expect(o.kind, unittest.equals('foo')); | 4895 unittest.expect(o.kind, unittest.equals('foo')); |
| 4896 checkUnnamed1395(o.mobileCarriers); | 4896 checkUnnamed1407(o.mobileCarriers); |
| 4897 } | 4897 } |
| 4898 buildCounterMobileCarriersListResponse--; | 4898 buildCounterMobileCarriersListResponse--; |
| 4899 } | 4899 } |
| 4900 | 4900 |
| 4901 buildUnnamed1396() { | 4901 buildUnnamed1408() { |
| 4902 var o = new core.List<core.String>(); | 4902 var o = new core.List<core.String>(); |
| 4903 o.add("foo"); | 4903 o.add("foo"); |
| 4904 o.add("foo"); | 4904 o.add("foo"); |
| 4905 return o; | 4905 return o; |
| 4906 } | 4906 } |
| 4907 | 4907 |
| 4908 checkUnnamed1396(core.List<core.String> o) { | 4908 checkUnnamed1408(core.List<core.String> o) { |
| 4909 unittest.expect(o, unittest.hasLength(2)); | 4909 unittest.expect(o, unittest.hasLength(2)); |
| 4910 unittest.expect(o[0], unittest.equals('foo')); | 4910 unittest.expect(o[0], unittest.equals('foo')); |
| 4911 unittest.expect(o[1], unittest.equals('foo')); | 4911 unittest.expect(o[1], unittest.equals('foo')); |
| 4912 } | 4912 } |
| 4913 | 4913 |
| 4914 core.int buildCounterObjectFilter = 0; | 4914 core.int buildCounterObjectFilter = 0; |
| 4915 buildObjectFilter() { | 4915 buildObjectFilter() { |
| 4916 var o = new api.ObjectFilter(); | 4916 var o = new api.ObjectFilter(); |
| 4917 buildCounterObjectFilter++; | 4917 buildCounterObjectFilter++; |
| 4918 if (buildCounterObjectFilter < 3) { | 4918 if (buildCounterObjectFilter < 3) { |
| 4919 o.kind = "foo"; | 4919 o.kind = "foo"; |
| 4920 o.objectIds = buildUnnamed1396(); | 4920 o.objectIds = buildUnnamed1408(); |
| 4921 o.status = "foo"; | 4921 o.status = "foo"; |
| 4922 } | 4922 } |
| 4923 buildCounterObjectFilter--; | 4923 buildCounterObjectFilter--; |
| 4924 return o; | 4924 return o; |
| 4925 } | 4925 } |
| 4926 | 4926 |
| 4927 checkObjectFilter(api.ObjectFilter o) { | 4927 checkObjectFilter(api.ObjectFilter o) { |
| 4928 buildCounterObjectFilter++; | 4928 buildCounterObjectFilter++; |
| 4929 if (buildCounterObjectFilter < 3) { | 4929 if (buildCounterObjectFilter < 3) { |
| 4930 unittest.expect(o.kind, unittest.equals('foo')); | 4930 unittest.expect(o.kind, unittest.equals('foo')); |
| 4931 checkUnnamed1396(o.objectIds); | 4931 checkUnnamed1408(o.objectIds); |
| 4932 unittest.expect(o.status, unittest.equals('foo')); | 4932 unittest.expect(o.status, unittest.equals('foo')); |
| 4933 } | 4933 } |
| 4934 buildCounterObjectFilter--; | 4934 buildCounterObjectFilter--; |
| 4935 } | 4935 } |
| 4936 | 4936 |
| 4937 core.int buildCounterOffsetPosition = 0; | 4937 core.int buildCounterOffsetPosition = 0; |
| 4938 buildOffsetPosition() { | 4938 buildOffsetPosition() { |
| 4939 var o = new api.OffsetPosition(); | 4939 var o = new api.OffsetPosition(); |
| 4940 buildCounterOffsetPosition++; | 4940 buildCounterOffsetPosition++; |
| 4941 if (buildCounterOffsetPosition < 3) { | 4941 if (buildCounterOffsetPosition < 3) { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5025 unittest.expect(o.id, unittest.equals('foo')); | 5025 unittest.expect(o.id, unittest.equals('foo')); |
| 5026 unittest.expect(o.kind, unittest.equals('foo')); | 5026 unittest.expect(o.kind, unittest.equals('foo')); |
| 5027 unittest.expect(o.majorVersion, unittest.equals('foo')); | 5027 unittest.expect(o.majorVersion, unittest.equals('foo')); |
| 5028 unittest.expect(o.minorVersion, unittest.equals('foo')); | 5028 unittest.expect(o.minorVersion, unittest.equals('foo')); |
| 5029 unittest.expect(o.name, unittest.equals('foo')); | 5029 unittest.expect(o.name, unittest.equals('foo')); |
| 5030 checkOperatingSystem(o.operatingSystem); | 5030 checkOperatingSystem(o.operatingSystem); |
| 5031 } | 5031 } |
| 5032 buildCounterOperatingSystemVersion--; | 5032 buildCounterOperatingSystemVersion--; |
| 5033 } | 5033 } |
| 5034 | 5034 |
| 5035 buildUnnamed1397() { | 5035 buildUnnamed1409() { |
| 5036 var o = new core.List<api.OperatingSystemVersion>(); | 5036 var o = new core.List<api.OperatingSystemVersion>(); |
| 5037 o.add(buildOperatingSystemVersion()); | 5037 o.add(buildOperatingSystemVersion()); |
| 5038 o.add(buildOperatingSystemVersion()); | 5038 o.add(buildOperatingSystemVersion()); |
| 5039 return o; | 5039 return o; |
| 5040 } | 5040 } |
| 5041 | 5041 |
| 5042 checkUnnamed1397(core.List<api.OperatingSystemVersion> o) { | 5042 checkUnnamed1409(core.List<api.OperatingSystemVersion> o) { |
| 5043 unittest.expect(o, unittest.hasLength(2)); | 5043 unittest.expect(o, unittest.hasLength(2)); |
| 5044 checkOperatingSystemVersion(o[0]); | 5044 checkOperatingSystemVersion(o[0]); |
| 5045 checkOperatingSystemVersion(o[1]); | 5045 checkOperatingSystemVersion(o[1]); |
| 5046 } | 5046 } |
| 5047 | 5047 |
| 5048 core.int buildCounterOperatingSystemVersionsListResponse = 0; | 5048 core.int buildCounterOperatingSystemVersionsListResponse = 0; |
| 5049 buildOperatingSystemVersionsListResponse() { | 5049 buildOperatingSystemVersionsListResponse() { |
| 5050 var o = new api.OperatingSystemVersionsListResponse(); | 5050 var o = new api.OperatingSystemVersionsListResponse(); |
| 5051 buildCounterOperatingSystemVersionsListResponse++; | 5051 buildCounterOperatingSystemVersionsListResponse++; |
| 5052 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 5052 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 5053 o.kind = "foo"; | 5053 o.kind = "foo"; |
| 5054 o.operatingSystemVersions = buildUnnamed1397(); | 5054 o.operatingSystemVersions = buildUnnamed1409(); |
| 5055 } | 5055 } |
| 5056 buildCounterOperatingSystemVersionsListResponse--; | 5056 buildCounterOperatingSystemVersionsListResponse--; |
| 5057 return o; | 5057 return o; |
| 5058 } | 5058 } |
| 5059 | 5059 |
| 5060 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { | 5060 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { |
| 5061 buildCounterOperatingSystemVersionsListResponse++; | 5061 buildCounterOperatingSystemVersionsListResponse++; |
| 5062 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 5062 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 5063 unittest.expect(o.kind, unittest.equals('foo')); | 5063 unittest.expect(o.kind, unittest.equals('foo')); |
| 5064 checkUnnamed1397(o.operatingSystemVersions); | 5064 checkUnnamed1409(o.operatingSystemVersions); |
| 5065 } | 5065 } |
| 5066 buildCounterOperatingSystemVersionsListResponse--; | 5066 buildCounterOperatingSystemVersionsListResponse--; |
| 5067 } | 5067 } |
| 5068 | 5068 |
| 5069 buildUnnamed1398() { | 5069 buildUnnamed1410() { |
| 5070 var o = new core.List<api.OperatingSystem>(); | 5070 var o = new core.List<api.OperatingSystem>(); |
| 5071 o.add(buildOperatingSystem()); | 5071 o.add(buildOperatingSystem()); |
| 5072 o.add(buildOperatingSystem()); | 5072 o.add(buildOperatingSystem()); |
| 5073 return o; | 5073 return o; |
| 5074 } | 5074 } |
| 5075 | 5075 |
| 5076 checkUnnamed1398(core.List<api.OperatingSystem> o) { | 5076 checkUnnamed1410(core.List<api.OperatingSystem> o) { |
| 5077 unittest.expect(o, unittest.hasLength(2)); | 5077 unittest.expect(o, unittest.hasLength(2)); |
| 5078 checkOperatingSystem(o[0]); | 5078 checkOperatingSystem(o[0]); |
| 5079 checkOperatingSystem(o[1]); | 5079 checkOperatingSystem(o[1]); |
| 5080 } | 5080 } |
| 5081 | 5081 |
| 5082 core.int buildCounterOperatingSystemsListResponse = 0; | 5082 core.int buildCounterOperatingSystemsListResponse = 0; |
| 5083 buildOperatingSystemsListResponse() { | 5083 buildOperatingSystemsListResponse() { |
| 5084 var o = new api.OperatingSystemsListResponse(); | 5084 var o = new api.OperatingSystemsListResponse(); |
| 5085 buildCounterOperatingSystemsListResponse++; | 5085 buildCounterOperatingSystemsListResponse++; |
| 5086 if (buildCounterOperatingSystemsListResponse < 3) { | 5086 if (buildCounterOperatingSystemsListResponse < 3) { |
| 5087 o.kind = "foo"; | 5087 o.kind = "foo"; |
| 5088 o.operatingSystems = buildUnnamed1398(); | 5088 o.operatingSystems = buildUnnamed1410(); |
| 5089 } | 5089 } |
| 5090 buildCounterOperatingSystemsListResponse--; | 5090 buildCounterOperatingSystemsListResponse--; |
| 5091 return o; | 5091 return o; |
| 5092 } | 5092 } |
| 5093 | 5093 |
| 5094 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { | 5094 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { |
| 5095 buildCounterOperatingSystemsListResponse++; | 5095 buildCounterOperatingSystemsListResponse++; |
| 5096 if (buildCounterOperatingSystemsListResponse < 3) { | 5096 if (buildCounterOperatingSystemsListResponse < 3) { |
| 5097 unittest.expect(o.kind, unittest.equals('foo')); | 5097 unittest.expect(o.kind, unittest.equals('foo')); |
| 5098 checkUnnamed1398(o.operatingSystems); | 5098 checkUnnamed1410(o.operatingSystems); |
| 5099 } | 5099 } |
| 5100 buildCounterOperatingSystemsListResponse--; | 5100 buildCounterOperatingSystemsListResponse--; |
| 5101 } | 5101 } |
| 5102 | 5102 |
| 5103 core.int buildCounterOptimizationActivity = 0; | 5103 core.int buildCounterOptimizationActivity = 0; |
| 5104 buildOptimizationActivity() { | 5104 buildOptimizationActivity() { |
| 5105 var o = new api.OptimizationActivity(); | 5105 var o = new api.OptimizationActivity(); |
| 5106 buildCounterOptimizationActivity++; | 5106 buildCounterOptimizationActivity++; |
| 5107 if (buildCounterOptimizationActivity < 3) { | 5107 if (buildCounterOptimizationActivity < 3) { |
| 5108 o.floodlightActivityId = "foo"; | 5108 o.floodlightActivityId = "foo"; |
| 5109 o.floodlightActivityIdDimensionValue = buildDimensionValue(); | 5109 o.floodlightActivityIdDimensionValue = buildDimensionValue(); |
| 5110 o.weight = 42; | 5110 o.weight = 42; |
| 5111 } | 5111 } |
| 5112 buildCounterOptimizationActivity--; | 5112 buildCounterOptimizationActivity--; |
| 5113 return o; | 5113 return o; |
| 5114 } | 5114 } |
| 5115 | 5115 |
| 5116 checkOptimizationActivity(api.OptimizationActivity o) { | 5116 checkOptimizationActivity(api.OptimizationActivity o) { |
| 5117 buildCounterOptimizationActivity++; | 5117 buildCounterOptimizationActivity++; |
| 5118 if (buildCounterOptimizationActivity < 3) { | 5118 if (buildCounterOptimizationActivity < 3) { |
| 5119 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 5119 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 5120 checkDimensionValue(o.floodlightActivityIdDimensionValue); | 5120 checkDimensionValue(o.floodlightActivityIdDimensionValue); |
| 5121 unittest.expect(o.weight, unittest.equals(42)); | 5121 unittest.expect(o.weight, unittest.equals(42)); |
| 5122 } | 5122 } |
| 5123 buildCounterOptimizationActivity--; | 5123 buildCounterOptimizationActivity--; |
| 5124 } | 5124 } |
| 5125 | 5125 |
| 5126 buildUnnamed1399() { | 5126 buildUnnamed1411() { |
| 5127 var o = new core.List<core.String>(); | 5127 var o = new core.List<core.String>(); |
| 5128 o.add("foo"); | 5128 o.add("foo"); |
| 5129 o.add("foo"); | 5129 o.add("foo"); |
| 5130 return o; | 5130 return o; |
| 5131 } | 5131 } |
| 5132 | 5132 |
| 5133 checkUnnamed1399(core.List<core.String> o) { | 5133 checkUnnamed1411(core.List<core.String> o) { |
| 5134 unittest.expect(o, unittest.hasLength(2)); | 5134 unittest.expect(o, unittest.hasLength(2)); |
| 5135 unittest.expect(o[0], unittest.equals('foo')); | 5135 unittest.expect(o[0], unittest.equals('foo')); |
| 5136 unittest.expect(o[1], unittest.equals('foo')); | 5136 unittest.expect(o[1], unittest.equals('foo')); |
| 5137 } | 5137 } |
| 5138 | 5138 |
| 5139 buildUnnamed1400() { | 5139 buildUnnamed1412() { |
| 5140 var o = new core.List<api.OrderContact>(); | 5140 var o = new core.List<api.OrderContact>(); |
| 5141 o.add(buildOrderContact()); | 5141 o.add(buildOrderContact()); |
| 5142 o.add(buildOrderContact()); | 5142 o.add(buildOrderContact()); |
| 5143 return o; | 5143 return o; |
| 5144 } | 5144 } |
| 5145 | 5145 |
| 5146 checkUnnamed1400(core.List<api.OrderContact> o) { | 5146 checkUnnamed1412(core.List<api.OrderContact> o) { |
| 5147 unittest.expect(o, unittest.hasLength(2)); | 5147 unittest.expect(o, unittest.hasLength(2)); |
| 5148 checkOrderContact(o[0]); | 5148 checkOrderContact(o[0]); |
| 5149 checkOrderContact(o[1]); | 5149 checkOrderContact(o[1]); |
| 5150 } | 5150 } |
| 5151 | 5151 |
| 5152 buildUnnamed1401() { | 5152 buildUnnamed1413() { |
| 5153 var o = new core.List<core.String>(); | 5153 var o = new core.List<core.String>(); |
| 5154 o.add("foo"); | 5154 o.add("foo"); |
| 5155 o.add("foo"); | 5155 o.add("foo"); |
| 5156 return o; | 5156 return o; |
| 5157 } | 5157 } |
| 5158 | 5158 |
| 5159 checkUnnamed1401(core.List<core.String> o) { | 5159 checkUnnamed1413(core.List<core.String> o) { |
| 5160 unittest.expect(o, unittest.hasLength(2)); | 5160 unittest.expect(o, unittest.hasLength(2)); |
| 5161 unittest.expect(o[0], unittest.equals('foo')); | 5161 unittest.expect(o[0], unittest.equals('foo')); |
| 5162 unittest.expect(o[1], unittest.equals('foo')); | 5162 unittest.expect(o[1], unittest.equals('foo')); |
| 5163 } | 5163 } |
| 5164 | 5164 |
| 5165 buildUnnamed1402() { | 5165 buildUnnamed1414() { |
| 5166 var o = new core.List<core.String>(); | 5166 var o = new core.List<core.String>(); |
| 5167 o.add("foo"); | 5167 o.add("foo"); |
| 5168 o.add("foo"); | 5168 o.add("foo"); |
| 5169 return o; | 5169 return o; |
| 5170 } | 5170 } |
| 5171 | 5171 |
| 5172 checkUnnamed1402(core.List<core.String> o) { | 5172 checkUnnamed1414(core.List<core.String> o) { |
| 5173 unittest.expect(o, unittest.hasLength(2)); | 5173 unittest.expect(o, unittest.hasLength(2)); |
| 5174 unittest.expect(o[0], unittest.equals('foo')); | 5174 unittest.expect(o[0], unittest.equals('foo')); |
| 5175 unittest.expect(o[1], unittest.equals('foo')); | 5175 unittest.expect(o[1], unittest.equals('foo')); |
| 5176 } | 5176 } |
| 5177 | 5177 |
| 5178 core.int buildCounterOrder = 0; | 5178 core.int buildCounterOrder = 0; |
| 5179 buildOrder() { | 5179 buildOrder() { |
| 5180 var o = new api.Order(); | 5180 var o = new api.Order(); |
| 5181 buildCounterOrder++; | 5181 buildCounterOrder++; |
| 5182 if (buildCounterOrder < 3) { | 5182 if (buildCounterOrder < 3) { |
| 5183 o.accountId = "foo"; | 5183 o.accountId = "foo"; |
| 5184 o.advertiserId = "foo"; | 5184 o.advertiserId = "foo"; |
| 5185 o.approverUserProfileIds = buildUnnamed1399(); | 5185 o.approverUserProfileIds = buildUnnamed1411(); |
| 5186 o.buyerInvoiceId = "foo"; | 5186 o.buyerInvoiceId = "foo"; |
| 5187 o.buyerOrganizationName = "foo"; | 5187 o.buyerOrganizationName = "foo"; |
| 5188 o.comments = "foo"; | 5188 o.comments = "foo"; |
| 5189 o.contacts = buildUnnamed1400(); | 5189 o.contacts = buildUnnamed1412(); |
| 5190 o.id = "foo"; | 5190 o.id = "foo"; |
| 5191 o.kind = "foo"; | 5191 o.kind = "foo"; |
| 5192 o.lastModifiedInfo = buildLastModifiedInfo(); | 5192 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 5193 o.name = "foo"; | 5193 o.name = "foo"; |
| 5194 o.notes = "foo"; | 5194 o.notes = "foo"; |
| 5195 o.planningTermId = "foo"; | 5195 o.planningTermId = "foo"; |
| 5196 o.projectId = "foo"; | 5196 o.projectId = "foo"; |
| 5197 o.sellerOrderId = "foo"; | 5197 o.sellerOrderId = "foo"; |
| 5198 o.sellerOrganizationName = "foo"; | 5198 o.sellerOrganizationName = "foo"; |
| 5199 o.siteId = buildUnnamed1401(); | 5199 o.siteId = buildUnnamed1413(); |
| 5200 o.siteNames = buildUnnamed1402(); | 5200 o.siteNames = buildUnnamed1414(); |
| 5201 o.subaccountId = "foo"; | 5201 o.subaccountId = "foo"; |
| 5202 o.termsAndConditions = "foo"; | 5202 o.termsAndConditions = "foo"; |
| 5203 } | 5203 } |
| 5204 buildCounterOrder--; | 5204 buildCounterOrder--; |
| 5205 return o; | 5205 return o; |
| 5206 } | 5206 } |
| 5207 | 5207 |
| 5208 checkOrder(api.Order o) { | 5208 checkOrder(api.Order o) { |
| 5209 buildCounterOrder++; | 5209 buildCounterOrder++; |
| 5210 if (buildCounterOrder < 3) { | 5210 if (buildCounterOrder < 3) { |
| 5211 unittest.expect(o.accountId, unittest.equals('foo')); | 5211 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5212 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5212 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5213 checkUnnamed1399(o.approverUserProfileIds); | 5213 checkUnnamed1411(o.approverUserProfileIds); |
| 5214 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); | 5214 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); |
| 5215 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); | 5215 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); |
| 5216 unittest.expect(o.comments, unittest.equals('foo')); | 5216 unittest.expect(o.comments, unittest.equals('foo')); |
| 5217 checkUnnamed1400(o.contacts); | 5217 checkUnnamed1412(o.contacts); |
| 5218 unittest.expect(o.id, unittest.equals('foo')); | 5218 unittest.expect(o.id, unittest.equals('foo')); |
| 5219 unittest.expect(o.kind, unittest.equals('foo')); | 5219 unittest.expect(o.kind, unittest.equals('foo')); |
| 5220 checkLastModifiedInfo(o.lastModifiedInfo); | 5220 checkLastModifiedInfo(o.lastModifiedInfo); |
| 5221 unittest.expect(o.name, unittest.equals('foo')); | 5221 unittest.expect(o.name, unittest.equals('foo')); |
| 5222 unittest.expect(o.notes, unittest.equals('foo')); | 5222 unittest.expect(o.notes, unittest.equals('foo')); |
| 5223 unittest.expect(o.planningTermId, unittest.equals('foo')); | 5223 unittest.expect(o.planningTermId, unittest.equals('foo')); |
| 5224 unittest.expect(o.projectId, unittest.equals('foo')); | 5224 unittest.expect(o.projectId, unittest.equals('foo')); |
| 5225 unittest.expect(o.sellerOrderId, unittest.equals('foo')); | 5225 unittest.expect(o.sellerOrderId, unittest.equals('foo')); |
| 5226 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); | 5226 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); |
| 5227 checkUnnamed1401(o.siteId); | 5227 checkUnnamed1413(o.siteId); |
| 5228 checkUnnamed1402(o.siteNames); | 5228 checkUnnamed1414(o.siteNames); |
| 5229 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5229 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5230 unittest.expect(o.termsAndConditions, unittest.equals('foo')); | 5230 unittest.expect(o.termsAndConditions, unittest.equals('foo')); |
| 5231 } | 5231 } |
| 5232 buildCounterOrder--; | 5232 buildCounterOrder--; |
| 5233 } | 5233 } |
| 5234 | 5234 |
| 5235 core.int buildCounterOrderContact = 0; | 5235 core.int buildCounterOrderContact = 0; |
| 5236 buildOrderContact() { | 5236 buildOrderContact() { |
| 5237 var o = new api.OrderContact(); | 5237 var o = new api.OrderContact(); |
| 5238 buildCounterOrderContact++; | 5238 buildCounterOrderContact++; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 5252 if (buildCounterOrderContact < 3) { | 5252 if (buildCounterOrderContact < 3) { |
| 5253 unittest.expect(o.contactInfo, unittest.equals('foo')); | 5253 unittest.expect(o.contactInfo, unittest.equals('foo')); |
| 5254 unittest.expect(o.contactName, unittest.equals('foo')); | 5254 unittest.expect(o.contactName, unittest.equals('foo')); |
| 5255 unittest.expect(o.contactTitle, unittest.equals('foo')); | 5255 unittest.expect(o.contactTitle, unittest.equals('foo')); |
| 5256 unittest.expect(o.contactType, unittest.equals('foo')); | 5256 unittest.expect(o.contactType, unittest.equals('foo')); |
| 5257 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); | 5257 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); |
| 5258 } | 5258 } |
| 5259 buildCounterOrderContact--; | 5259 buildCounterOrderContact--; |
| 5260 } | 5260 } |
| 5261 | 5261 |
| 5262 buildUnnamed1403() { | 5262 buildUnnamed1415() { |
| 5263 var o = new core.List<core.String>(); | 5263 var o = new core.List<core.String>(); |
| 5264 o.add("foo"); | 5264 o.add("foo"); |
| 5265 o.add("foo"); | 5265 o.add("foo"); |
| 5266 return o; | 5266 return o; |
| 5267 } | 5267 } |
| 5268 | 5268 |
| 5269 checkUnnamed1403(core.List<core.String> o) { | 5269 checkUnnamed1415(core.List<core.String> o) { |
| 5270 unittest.expect(o, unittest.hasLength(2)); | 5270 unittest.expect(o, unittest.hasLength(2)); |
| 5271 unittest.expect(o[0], unittest.equals('foo')); | 5271 unittest.expect(o[0], unittest.equals('foo')); |
| 5272 unittest.expect(o[1], unittest.equals('foo')); | 5272 unittest.expect(o[1], unittest.equals('foo')); |
| 5273 } | 5273 } |
| 5274 | 5274 |
| 5275 buildUnnamed1404() { | 5275 buildUnnamed1416() { |
| 5276 var o = new core.List<core.String>(); | 5276 var o = new core.List<core.String>(); |
| 5277 o.add("foo"); | 5277 o.add("foo"); |
| 5278 o.add("foo"); | 5278 o.add("foo"); |
| 5279 return o; | 5279 return o; |
| 5280 } | 5280 } |
| 5281 | 5281 |
| 5282 checkUnnamed1404(core.List<core.String> o) { | 5282 checkUnnamed1416(core.List<core.String> o) { |
| 5283 unittest.expect(o, unittest.hasLength(2)); | 5283 unittest.expect(o, unittest.hasLength(2)); |
| 5284 unittest.expect(o[0], unittest.equals('foo')); | 5284 unittest.expect(o[0], unittest.equals('foo')); |
| 5285 unittest.expect(o[1], unittest.equals('foo')); | 5285 unittest.expect(o[1], unittest.equals('foo')); |
| 5286 } | 5286 } |
| 5287 | 5287 |
| 5288 core.int buildCounterOrderDocument = 0; | 5288 core.int buildCounterOrderDocument = 0; |
| 5289 buildOrderDocument() { | 5289 buildOrderDocument() { |
| 5290 var o = new api.OrderDocument(); | 5290 var o = new api.OrderDocument(); |
| 5291 buildCounterOrderDocument++; | 5291 buildCounterOrderDocument++; |
| 5292 if (buildCounterOrderDocument < 3) { | 5292 if (buildCounterOrderDocument < 3) { |
| 5293 o.accountId = "foo"; | 5293 o.accountId = "foo"; |
| 5294 o.advertiserId = "foo"; | 5294 o.advertiserId = "foo"; |
| 5295 o.amendedOrderDocumentId = "foo"; | 5295 o.amendedOrderDocumentId = "foo"; |
| 5296 o.approvedByUserProfileIds = buildUnnamed1403(); | 5296 o.approvedByUserProfileIds = buildUnnamed1415(); |
| 5297 o.cancelled = true; | 5297 o.cancelled = true; |
| 5298 o.createdInfo = buildLastModifiedInfo(); | 5298 o.createdInfo = buildLastModifiedInfo(); |
| 5299 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5299 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5300 o.id = "foo"; | 5300 o.id = "foo"; |
| 5301 o.kind = "foo"; | 5301 o.kind = "foo"; |
| 5302 o.lastSentRecipients = buildUnnamed1404(); | 5302 o.lastSentRecipients = buildUnnamed1416(); |
| 5303 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); | 5303 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 5304 o.orderId = "foo"; | 5304 o.orderId = "foo"; |
| 5305 o.projectId = "foo"; | 5305 o.projectId = "foo"; |
| 5306 o.signed = true; | 5306 o.signed = true; |
| 5307 o.subaccountId = "foo"; | 5307 o.subaccountId = "foo"; |
| 5308 o.title = "foo"; | 5308 o.title = "foo"; |
| 5309 o.type = "foo"; | 5309 o.type = "foo"; |
| 5310 } | 5310 } |
| 5311 buildCounterOrderDocument--; | 5311 buildCounterOrderDocument--; |
| 5312 return o; | 5312 return o; |
| 5313 } | 5313 } |
| 5314 | 5314 |
| 5315 checkOrderDocument(api.OrderDocument o) { | 5315 checkOrderDocument(api.OrderDocument o) { |
| 5316 buildCounterOrderDocument++; | 5316 buildCounterOrderDocument++; |
| 5317 if (buildCounterOrderDocument < 3) { | 5317 if (buildCounterOrderDocument < 3) { |
| 5318 unittest.expect(o.accountId, unittest.equals('foo')); | 5318 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5319 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5319 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5320 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); | 5320 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); |
| 5321 checkUnnamed1403(o.approvedByUserProfileIds); | 5321 checkUnnamed1415(o.approvedByUserProfileIds); |
| 5322 unittest.expect(o.cancelled, unittest.isTrue); | 5322 unittest.expect(o.cancelled, unittest.isTrue); |
| 5323 checkLastModifiedInfo(o.createdInfo); | 5323 checkLastModifiedInfo(o.createdInfo); |
| 5324 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); | 5324 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); |
| 5325 unittest.expect(o.id, unittest.equals('foo')); | 5325 unittest.expect(o.id, unittest.equals('foo')); |
| 5326 unittest.expect(o.kind, unittest.equals('foo')); | 5326 unittest.expect(o.kind, unittest.equals('foo')); |
| 5327 checkUnnamed1404(o.lastSentRecipients); | 5327 checkUnnamed1416(o.lastSentRecipients); |
| 5328 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); | 5328 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); |
| 5329 unittest.expect(o.orderId, unittest.equals('foo')); | 5329 unittest.expect(o.orderId, unittest.equals('foo')); |
| 5330 unittest.expect(o.projectId, unittest.equals('foo')); | 5330 unittest.expect(o.projectId, unittest.equals('foo')); |
| 5331 unittest.expect(o.signed, unittest.isTrue); | 5331 unittest.expect(o.signed, unittest.isTrue); |
| 5332 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5332 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5333 unittest.expect(o.title, unittest.equals('foo')); | 5333 unittest.expect(o.title, unittest.equals('foo')); |
| 5334 unittest.expect(o.type, unittest.equals('foo')); | 5334 unittest.expect(o.type, unittest.equals('foo')); |
| 5335 } | 5335 } |
| 5336 buildCounterOrderDocument--; | 5336 buildCounterOrderDocument--; |
| 5337 } | 5337 } |
| 5338 | 5338 |
| 5339 buildUnnamed1405() { | 5339 buildUnnamed1417() { |
| 5340 var o = new core.List<api.OrderDocument>(); | 5340 var o = new core.List<api.OrderDocument>(); |
| 5341 o.add(buildOrderDocument()); | 5341 o.add(buildOrderDocument()); |
| 5342 o.add(buildOrderDocument()); | 5342 o.add(buildOrderDocument()); |
| 5343 return o; | 5343 return o; |
| 5344 } | 5344 } |
| 5345 | 5345 |
| 5346 checkUnnamed1405(core.List<api.OrderDocument> o) { | 5346 checkUnnamed1417(core.List<api.OrderDocument> o) { |
| 5347 unittest.expect(o, unittest.hasLength(2)); | 5347 unittest.expect(o, unittest.hasLength(2)); |
| 5348 checkOrderDocument(o[0]); | 5348 checkOrderDocument(o[0]); |
| 5349 checkOrderDocument(o[1]); | 5349 checkOrderDocument(o[1]); |
| 5350 } | 5350 } |
| 5351 | 5351 |
| 5352 core.int buildCounterOrderDocumentsListResponse = 0; | 5352 core.int buildCounterOrderDocumentsListResponse = 0; |
| 5353 buildOrderDocumentsListResponse() { | 5353 buildOrderDocumentsListResponse() { |
| 5354 var o = new api.OrderDocumentsListResponse(); | 5354 var o = new api.OrderDocumentsListResponse(); |
| 5355 buildCounterOrderDocumentsListResponse++; | 5355 buildCounterOrderDocumentsListResponse++; |
| 5356 if (buildCounterOrderDocumentsListResponse < 3) { | 5356 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5357 o.kind = "foo"; | 5357 o.kind = "foo"; |
| 5358 o.nextPageToken = "foo"; | 5358 o.nextPageToken = "foo"; |
| 5359 o.orderDocuments = buildUnnamed1405(); | 5359 o.orderDocuments = buildUnnamed1417(); |
| 5360 } | 5360 } |
| 5361 buildCounterOrderDocumentsListResponse--; | 5361 buildCounterOrderDocumentsListResponse--; |
| 5362 return o; | 5362 return o; |
| 5363 } | 5363 } |
| 5364 | 5364 |
| 5365 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { | 5365 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { |
| 5366 buildCounterOrderDocumentsListResponse++; | 5366 buildCounterOrderDocumentsListResponse++; |
| 5367 if (buildCounterOrderDocumentsListResponse < 3) { | 5367 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5368 unittest.expect(o.kind, unittest.equals('foo')); | 5368 unittest.expect(o.kind, unittest.equals('foo')); |
| 5369 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5369 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5370 checkUnnamed1405(o.orderDocuments); | 5370 checkUnnamed1417(o.orderDocuments); |
| 5371 } | 5371 } |
| 5372 buildCounterOrderDocumentsListResponse--; | 5372 buildCounterOrderDocumentsListResponse--; |
| 5373 } | 5373 } |
| 5374 | 5374 |
| 5375 buildUnnamed1406() { | 5375 buildUnnamed1418() { |
| 5376 var o = new core.List<api.Order>(); | 5376 var o = new core.List<api.Order>(); |
| 5377 o.add(buildOrder()); | 5377 o.add(buildOrder()); |
| 5378 o.add(buildOrder()); | 5378 o.add(buildOrder()); |
| 5379 return o; | 5379 return o; |
| 5380 } | 5380 } |
| 5381 | 5381 |
| 5382 checkUnnamed1406(core.List<api.Order> o) { | 5382 checkUnnamed1418(core.List<api.Order> o) { |
| 5383 unittest.expect(o, unittest.hasLength(2)); | 5383 unittest.expect(o, unittest.hasLength(2)); |
| 5384 checkOrder(o[0]); | 5384 checkOrder(o[0]); |
| 5385 checkOrder(o[1]); | 5385 checkOrder(o[1]); |
| 5386 } | 5386 } |
| 5387 | 5387 |
| 5388 core.int buildCounterOrdersListResponse = 0; | 5388 core.int buildCounterOrdersListResponse = 0; |
| 5389 buildOrdersListResponse() { | 5389 buildOrdersListResponse() { |
| 5390 var o = new api.OrdersListResponse(); | 5390 var o = new api.OrdersListResponse(); |
| 5391 buildCounterOrdersListResponse++; | 5391 buildCounterOrdersListResponse++; |
| 5392 if (buildCounterOrdersListResponse < 3) { | 5392 if (buildCounterOrdersListResponse < 3) { |
| 5393 o.kind = "foo"; | 5393 o.kind = "foo"; |
| 5394 o.nextPageToken = "foo"; | 5394 o.nextPageToken = "foo"; |
| 5395 o.orders = buildUnnamed1406(); | 5395 o.orders = buildUnnamed1418(); |
| 5396 } | 5396 } |
| 5397 buildCounterOrdersListResponse--; | 5397 buildCounterOrdersListResponse--; |
| 5398 return o; | 5398 return o; |
| 5399 } | 5399 } |
| 5400 | 5400 |
| 5401 checkOrdersListResponse(api.OrdersListResponse o) { | 5401 checkOrdersListResponse(api.OrdersListResponse o) { |
| 5402 buildCounterOrdersListResponse++; | 5402 buildCounterOrdersListResponse++; |
| 5403 if (buildCounterOrdersListResponse < 3) { | 5403 if (buildCounterOrdersListResponse < 3) { |
| 5404 unittest.expect(o.kind, unittest.equals('foo')); | 5404 unittest.expect(o.kind, unittest.equals('foo')); |
| 5405 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5405 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5406 checkUnnamed1406(o.orders); | 5406 checkUnnamed1418(o.orders); |
| 5407 } | 5407 } |
| 5408 buildCounterOrdersListResponse--; | 5408 buildCounterOrdersListResponse--; |
| 5409 } | 5409 } |
| 5410 | 5410 |
| 5411 buildUnnamed1407() { | 5411 buildUnnamed1419() { |
| 5412 var o = new core.List<api.Dimension>(); | 5412 var o = new core.List<api.Dimension>(); |
| 5413 o.add(buildDimension()); | 5413 o.add(buildDimension()); |
| 5414 o.add(buildDimension()); | 5414 o.add(buildDimension()); |
| 5415 return o; | 5415 return o; |
| 5416 } | 5416 } |
| 5417 | 5417 |
| 5418 checkUnnamed1407(core.List<api.Dimension> o) { | 5418 checkUnnamed1419(core.List<api.Dimension> o) { |
| 5419 unittest.expect(o, unittest.hasLength(2)); | 5419 unittest.expect(o, unittest.hasLength(2)); |
| 5420 checkDimension(o[0]); | 5420 checkDimension(o[0]); |
| 5421 checkDimension(o[1]); | 5421 checkDimension(o[1]); |
| 5422 } | 5422 } |
| 5423 | 5423 |
| 5424 buildUnnamed1408() { | 5424 buildUnnamed1420() { |
| 5425 var o = new core.List<api.Dimension>(); | 5425 var o = new core.List<api.Dimension>(); |
| 5426 o.add(buildDimension()); | 5426 o.add(buildDimension()); |
| 5427 o.add(buildDimension()); | 5427 o.add(buildDimension()); |
| 5428 return o; | 5428 return o; |
| 5429 } | 5429 } |
| 5430 | 5430 |
| 5431 checkUnnamed1408(core.List<api.Dimension> o) { | 5431 checkUnnamed1420(core.List<api.Dimension> o) { |
| 5432 unittest.expect(o, unittest.hasLength(2)); | 5432 unittest.expect(o, unittest.hasLength(2)); |
| 5433 checkDimension(o[0]); | 5433 checkDimension(o[0]); |
| 5434 checkDimension(o[1]); | 5434 checkDimension(o[1]); |
| 5435 } | 5435 } |
| 5436 | 5436 |
| 5437 buildUnnamed1409() { | 5437 buildUnnamed1421() { |
| 5438 var o = new core.List<api.Metric>(); | 5438 var o = new core.List<api.Metric>(); |
| 5439 o.add(buildMetric()); | 5439 o.add(buildMetric()); |
| 5440 o.add(buildMetric()); | 5440 o.add(buildMetric()); |
| 5441 return o; | 5441 return o; |
| 5442 } | 5442 } |
| 5443 | 5443 |
| 5444 checkUnnamed1409(core.List<api.Metric> o) { | 5444 checkUnnamed1421(core.List<api.Metric> o) { |
| 5445 unittest.expect(o, unittest.hasLength(2)); | 5445 unittest.expect(o, unittest.hasLength(2)); |
| 5446 checkMetric(o[0]); | 5446 checkMetric(o[0]); |
| 5447 checkMetric(o[1]); | 5447 checkMetric(o[1]); |
| 5448 } | 5448 } |
| 5449 | 5449 |
| 5450 buildUnnamed1410() { | 5450 buildUnnamed1422() { |
| 5451 var o = new core.List<api.Dimension>(); | 5451 var o = new core.List<api.Dimension>(); |
| 5452 o.add(buildDimension()); | 5452 o.add(buildDimension()); |
| 5453 o.add(buildDimension()); | 5453 o.add(buildDimension()); |
| 5454 return o; | 5454 return o; |
| 5455 } | 5455 } |
| 5456 | 5456 |
| 5457 checkUnnamed1410(core.List<api.Dimension> o) { | 5457 checkUnnamed1422(core.List<api.Dimension> o) { |
| 5458 unittest.expect(o, unittest.hasLength(2)); | 5458 unittest.expect(o, unittest.hasLength(2)); |
| 5459 checkDimension(o[0]); | 5459 checkDimension(o[0]); |
| 5460 checkDimension(o[1]); | 5460 checkDimension(o[1]); |
| 5461 } | 5461 } |
| 5462 | 5462 |
| 5463 core.int buildCounterPathToConversionReportCompatibleFields = 0; | 5463 core.int buildCounterPathToConversionReportCompatibleFields = 0; |
| 5464 buildPathToConversionReportCompatibleFields() { | 5464 buildPathToConversionReportCompatibleFields() { |
| 5465 var o = new api.PathToConversionReportCompatibleFields(); | 5465 var o = new api.PathToConversionReportCompatibleFields(); |
| 5466 buildCounterPathToConversionReportCompatibleFields++; | 5466 buildCounterPathToConversionReportCompatibleFields++; |
| 5467 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5467 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5468 o.conversionDimensions = buildUnnamed1407(); | 5468 o.conversionDimensions = buildUnnamed1419(); |
| 5469 o.customFloodlightVariables = buildUnnamed1408(); | 5469 o.customFloodlightVariables = buildUnnamed1420(); |
| 5470 o.kind = "foo"; | 5470 o.kind = "foo"; |
| 5471 o.metrics = buildUnnamed1409(); | 5471 o.metrics = buildUnnamed1421(); |
| 5472 o.perInteractionDimensions = buildUnnamed1410(); | 5472 o.perInteractionDimensions = buildUnnamed1422(); |
| 5473 } | 5473 } |
| 5474 buildCounterPathToConversionReportCompatibleFields--; | 5474 buildCounterPathToConversionReportCompatibleFields--; |
| 5475 return o; | 5475 return o; |
| 5476 } | 5476 } |
| 5477 | 5477 |
| 5478 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { | 5478 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { |
| 5479 buildCounterPathToConversionReportCompatibleFields++; | 5479 buildCounterPathToConversionReportCompatibleFields++; |
| 5480 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5480 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5481 checkUnnamed1407(o.conversionDimensions); | 5481 checkUnnamed1419(o.conversionDimensions); |
| 5482 checkUnnamed1408(o.customFloodlightVariables); | 5482 checkUnnamed1420(o.customFloodlightVariables); |
| 5483 unittest.expect(o.kind, unittest.equals('foo')); | 5483 unittest.expect(o.kind, unittest.equals('foo')); |
| 5484 checkUnnamed1409(o.metrics); | 5484 checkUnnamed1421(o.metrics); |
| 5485 checkUnnamed1410(o.perInteractionDimensions); | 5485 checkUnnamed1422(o.perInteractionDimensions); |
| 5486 } | 5486 } |
| 5487 buildCounterPathToConversionReportCompatibleFields--; | 5487 buildCounterPathToConversionReportCompatibleFields--; |
| 5488 } | 5488 } |
| 5489 | 5489 |
| 5490 buildUnnamed1411() { | 5490 buildUnnamed1423() { |
| 5491 var o = new core.List<core.String>(); | 5491 var o = new core.List<core.String>(); |
| 5492 o.add("foo"); | 5492 o.add("foo"); |
| 5493 o.add("foo"); | 5493 o.add("foo"); |
| 5494 return o; | 5494 return o; |
| 5495 } | 5495 } |
| 5496 | 5496 |
| 5497 checkUnnamed1411(core.List<core.String> o) { | 5497 checkUnnamed1423(core.List<core.String> o) { |
| 5498 unittest.expect(o, unittest.hasLength(2)); | 5498 unittest.expect(o, unittest.hasLength(2)); |
| 5499 unittest.expect(o[0], unittest.equals('foo')); | 5499 unittest.expect(o[0], unittest.equals('foo')); |
| 5500 unittest.expect(o[1], unittest.equals('foo')); | 5500 unittest.expect(o[1], unittest.equals('foo')); |
| 5501 } | 5501 } |
| 5502 | 5502 |
| 5503 core.int buildCounterPlacement = 0; | 5503 core.int buildCounterPlacement = 0; |
| 5504 buildPlacement() { | 5504 buildPlacement() { |
| 5505 var o = new api.Placement(); | 5505 var o = new api.Placement(); |
| 5506 buildCounterPlacement++; | 5506 buildCounterPlacement++; |
| 5507 if (buildCounterPlacement < 3) { | 5507 if (buildCounterPlacement < 3) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5532 o.placementStrategyId = "foo"; | 5532 o.placementStrategyId = "foo"; |
| 5533 o.pricingSchedule = buildPricingSchedule(); | 5533 o.pricingSchedule = buildPricingSchedule(); |
| 5534 o.primary = true; | 5534 o.primary = true; |
| 5535 o.publisherUpdateInfo = buildLastModifiedInfo(); | 5535 o.publisherUpdateInfo = buildLastModifiedInfo(); |
| 5536 o.siteId = "foo"; | 5536 o.siteId = "foo"; |
| 5537 o.siteIdDimensionValue = buildDimensionValue(); | 5537 o.siteIdDimensionValue = buildDimensionValue(); |
| 5538 o.size = buildSize(); | 5538 o.size = buildSize(); |
| 5539 o.sslRequired = true; | 5539 o.sslRequired = true; |
| 5540 o.status = "foo"; | 5540 o.status = "foo"; |
| 5541 o.subaccountId = "foo"; | 5541 o.subaccountId = "foo"; |
| 5542 o.tagFormats = buildUnnamed1411(); | 5542 o.tagFormats = buildUnnamed1423(); |
| 5543 o.tagSetting = buildTagSetting(); | 5543 o.tagSetting = buildTagSetting(); |
| 5544 } | 5544 } |
| 5545 buildCounterPlacement--; | 5545 buildCounterPlacement--; |
| 5546 return o; | 5546 return o; |
| 5547 } | 5547 } |
| 5548 | 5548 |
| 5549 checkPlacement(api.Placement o) { | 5549 checkPlacement(api.Placement o) { |
| 5550 buildCounterPlacement++; | 5550 buildCounterPlacement++; |
| 5551 if (buildCounterPlacement < 3) { | 5551 if (buildCounterPlacement < 3) { |
| 5552 unittest.expect(o.accountId, unittest.equals('foo')); | 5552 unittest.expect(o.accountId, unittest.equals('foo')); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 5576 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5576 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5577 checkPricingSchedule(o.pricingSchedule); | 5577 checkPricingSchedule(o.pricingSchedule); |
| 5578 unittest.expect(o.primary, unittest.isTrue); | 5578 unittest.expect(o.primary, unittest.isTrue); |
| 5579 checkLastModifiedInfo(o.publisherUpdateInfo); | 5579 checkLastModifiedInfo(o.publisherUpdateInfo); |
| 5580 unittest.expect(o.siteId, unittest.equals('foo')); | 5580 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5581 checkDimensionValue(o.siteIdDimensionValue); | 5581 checkDimensionValue(o.siteIdDimensionValue); |
| 5582 checkSize(o.size); | 5582 checkSize(o.size); |
| 5583 unittest.expect(o.sslRequired, unittest.isTrue); | 5583 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5584 unittest.expect(o.status, unittest.equals('foo')); | 5584 unittest.expect(o.status, unittest.equals('foo')); |
| 5585 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5585 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5586 checkUnnamed1411(o.tagFormats); | 5586 checkUnnamed1423(o.tagFormats); |
| 5587 checkTagSetting(o.tagSetting); | 5587 checkTagSetting(o.tagSetting); |
| 5588 } | 5588 } |
| 5589 buildCounterPlacement--; | 5589 buildCounterPlacement--; |
| 5590 } | 5590 } |
| 5591 | 5591 |
| 5592 core.int buildCounterPlacementAssignment = 0; | 5592 core.int buildCounterPlacementAssignment = 0; |
| 5593 buildPlacementAssignment() { | 5593 buildPlacementAssignment() { |
| 5594 var o = new api.PlacementAssignment(); | 5594 var o = new api.PlacementAssignment(); |
| 5595 buildCounterPlacementAssignment++; | 5595 buildCounterPlacementAssignment++; |
| 5596 if (buildCounterPlacementAssignment < 3) { | 5596 if (buildCounterPlacementAssignment < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 5607 buildCounterPlacementAssignment++; | 5607 buildCounterPlacementAssignment++; |
| 5608 if (buildCounterPlacementAssignment < 3) { | 5608 if (buildCounterPlacementAssignment < 3) { |
| 5609 unittest.expect(o.active, unittest.isTrue); | 5609 unittest.expect(o.active, unittest.isTrue); |
| 5610 unittest.expect(o.placementId, unittest.equals('foo')); | 5610 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5611 checkDimensionValue(o.placementIdDimensionValue); | 5611 checkDimensionValue(o.placementIdDimensionValue); |
| 5612 unittest.expect(o.sslRequired, unittest.isTrue); | 5612 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5613 } | 5613 } |
| 5614 buildCounterPlacementAssignment--; | 5614 buildCounterPlacementAssignment--; |
| 5615 } | 5615 } |
| 5616 | 5616 |
| 5617 buildUnnamed1412() { | 5617 buildUnnamed1424() { |
| 5618 var o = new core.List<core.String>(); | 5618 var o = new core.List<core.String>(); |
| 5619 o.add("foo"); | 5619 o.add("foo"); |
| 5620 o.add("foo"); | 5620 o.add("foo"); |
| 5621 return o; | 5621 return o; |
| 5622 } | 5622 } |
| 5623 | 5623 |
| 5624 checkUnnamed1412(core.List<core.String> o) { | 5624 checkUnnamed1424(core.List<core.String> o) { |
| 5625 unittest.expect(o, unittest.hasLength(2)); | 5625 unittest.expect(o, unittest.hasLength(2)); |
| 5626 unittest.expect(o[0], unittest.equals('foo')); | 5626 unittest.expect(o[0], unittest.equals('foo')); |
| 5627 unittest.expect(o[1], unittest.equals('foo')); | 5627 unittest.expect(o[1], unittest.equals('foo')); |
| 5628 } | 5628 } |
| 5629 | 5629 |
| 5630 core.int buildCounterPlacementGroup = 0; | 5630 core.int buildCounterPlacementGroup = 0; |
| 5631 buildPlacementGroup() { | 5631 buildPlacementGroup() { |
| 5632 var o = new api.PlacementGroup(); | 5632 var o = new api.PlacementGroup(); |
| 5633 buildCounterPlacementGroup++; | 5633 buildCounterPlacementGroup++; |
| 5634 if (buildCounterPlacementGroup < 3) { | 5634 if (buildCounterPlacementGroup < 3) { |
| 5635 o.accountId = "foo"; | 5635 o.accountId = "foo"; |
| 5636 o.advertiserId = "foo"; | 5636 o.advertiserId = "foo"; |
| 5637 o.advertiserIdDimensionValue = buildDimensionValue(); | 5637 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 5638 o.archived = true; | 5638 o.archived = true; |
| 5639 o.campaignId = "foo"; | 5639 o.campaignId = "foo"; |
| 5640 o.campaignIdDimensionValue = buildDimensionValue(); | 5640 o.campaignIdDimensionValue = buildDimensionValue(); |
| 5641 o.childPlacementIds = buildUnnamed1412(); | 5641 o.childPlacementIds = buildUnnamed1424(); |
| 5642 o.comment = "foo"; | 5642 o.comment = "foo"; |
| 5643 o.contentCategoryId = "foo"; | 5643 o.contentCategoryId = "foo"; |
| 5644 o.createInfo = buildLastModifiedInfo(); | 5644 o.createInfo = buildLastModifiedInfo(); |
| 5645 o.directorySiteId = "foo"; | 5645 o.directorySiteId = "foo"; |
| 5646 o.directorySiteIdDimensionValue = buildDimensionValue(); | 5646 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 5647 o.externalId = "foo"; | 5647 o.externalId = "foo"; |
| 5648 o.id = "foo"; | 5648 o.id = "foo"; |
| 5649 o.idDimensionValue = buildDimensionValue(); | 5649 o.idDimensionValue = buildDimensionValue(); |
| 5650 o.kind = "foo"; | 5650 o.kind = "foo"; |
| 5651 o.lastModifiedInfo = buildLastModifiedInfo(); | 5651 o.lastModifiedInfo = buildLastModifiedInfo(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 5665 | 5665 |
| 5666 checkPlacementGroup(api.PlacementGroup o) { | 5666 checkPlacementGroup(api.PlacementGroup o) { |
| 5667 buildCounterPlacementGroup++; | 5667 buildCounterPlacementGroup++; |
| 5668 if (buildCounterPlacementGroup < 3) { | 5668 if (buildCounterPlacementGroup < 3) { |
| 5669 unittest.expect(o.accountId, unittest.equals('foo')); | 5669 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5670 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5670 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5671 checkDimensionValue(o.advertiserIdDimensionValue); | 5671 checkDimensionValue(o.advertiserIdDimensionValue); |
| 5672 unittest.expect(o.archived, unittest.isTrue); | 5672 unittest.expect(o.archived, unittest.isTrue); |
| 5673 unittest.expect(o.campaignId, unittest.equals('foo')); | 5673 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 5674 checkDimensionValue(o.campaignIdDimensionValue); | 5674 checkDimensionValue(o.campaignIdDimensionValue); |
| 5675 checkUnnamed1412(o.childPlacementIds); | 5675 checkUnnamed1424(o.childPlacementIds); |
| 5676 unittest.expect(o.comment, unittest.equals('foo')); | 5676 unittest.expect(o.comment, unittest.equals('foo')); |
| 5677 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 5677 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 5678 checkLastModifiedInfo(o.createInfo); | 5678 checkLastModifiedInfo(o.createInfo); |
| 5679 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 5679 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 5680 checkDimensionValue(o.directorySiteIdDimensionValue); | 5680 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 5681 unittest.expect(o.externalId, unittest.equals('foo')); | 5681 unittest.expect(o.externalId, unittest.equals('foo')); |
| 5682 unittest.expect(o.id, unittest.equals('foo')); | 5682 unittest.expect(o.id, unittest.equals('foo')); |
| 5683 checkDimensionValue(o.idDimensionValue); | 5683 checkDimensionValue(o.idDimensionValue); |
| 5684 unittest.expect(o.kind, unittest.equals('foo')); | 5684 unittest.expect(o.kind, unittest.equals('foo')); |
| 5685 checkLastModifiedInfo(o.lastModifiedInfo); | 5685 checkLastModifiedInfo(o.lastModifiedInfo); |
| 5686 unittest.expect(o.name, unittest.equals('foo')); | 5686 unittest.expect(o.name, unittest.equals('foo')); |
| 5687 unittest.expect(o.placementGroupType, unittest.equals('foo')); | 5687 unittest.expect(o.placementGroupType, unittest.equals('foo')); |
| 5688 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5688 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5689 checkPricingSchedule(o.pricingSchedule); | 5689 checkPricingSchedule(o.pricingSchedule); |
| 5690 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); | 5690 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); |
| 5691 checkDimensionValue(o.primaryPlacementIdDimensionValue); | 5691 checkDimensionValue(o.primaryPlacementIdDimensionValue); |
| 5692 unittest.expect(o.siteId, unittest.equals('foo')); | 5692 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5693 checkDimensionValue(o.siteIdDimensionValue); | 5693 checkDimensionValue(o.siteIdDimensionValue); |
| 5694 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5694 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5695 } | 5695 } |
| 5696 buildCounterPlacementGroup--; | 5696 buildCounterPlacementGroup--; |
| 5697 } | 5697 } |
| 5698 | 5698 |
| 5699 buildUnnamed1413() { | 5699 buildUnnamed1425() { |
| 5700 var o = new core.List<api.PlacementGroup>(); | 5700 var o = new core.List<api.PlacementGroup>(); |
| 5701 o.add(buildPlacementGroup()); | 5701 o.add(buildPlacementGroup()); |
| 5702 o.add(buildPlacementGroup()); | 5702 o.add(buildPlacementGroup()); |
| 5703 return o; | 5703 return o; |
| 5704 } | 5704 } |
| 5705 | 5705 |
| 5706 checkUnnamed1413(core.List<api.PlacementGroup> o) { | 5706 checkUnnamed1425(core.List<api.PlacementGroup> o) { |
| 5707 unittest.expect(o, unittest.hasLength(2)); | 5707 unittest.expect(o, unittest.hasLength(2)); |
| 5708 checkPlacementGroup(o[0]); | 5708 checkPlacementGroup(o[0]); |
| 5709 checkPlacementGroup(o[1]); | 5709 checkPlacementGroup(o[1]); |
| 5710 } | 5710 } |
| 5711 | 5711 |
| 5712 core.int buildCounterPlacementGroupsListResponse = 0; | 5712 core.int buildCounterPlacementGroupsListResponse = 0; |
| 5713 buildPlacementGroupsListResponse() { | 5713 buildPlacementGroupsListResponse() { |
| 5714 var o = new api.PlacementGroupsListResponse(); | 5714 var o = new api.PlacementGroupsListResponse(); |
| 5715 buildCounterPlacementGroupsListResponse++; | 5715 buildCounterPlacementGroupsListResponse++; |
| 5716 if (buildCounterPlacementGroupsListResponse < 3) { | 5716 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5717 o.kind = "foo"; | 5717 o.kind = "foo"; |
| 5718 o.nextPageToken = "foo"; | 5718 o.nextPageToken = "foo"; |
| 5719 o.placementGroups = buildUnnamed1413(); | 5719 o.placementGroups = buildUnnamed1425(); |
| 5720 } | 5720 } |
| 5721 buildCounterPlacementGroupsListResponse--; | 5721 buildCounterPlacementGroupsListResponse--; |
| 5722 return o; | 5722 return o; |
| 5723 } | 5723 } |
| 5724 | 5724 |
| 5725 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { | 5725 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { |
| 5726 buildCounterPlacementGroupsListResponse++; | 5726 buildCounterPlacementGroupsListResponse++; |
| 5727 if (buildCounterPlacementGroupsListResponse < 3) { | 5727 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5728 unittest.expect(o.kind, unittest.equals('foo')); | 5728 unittest.expect(o.kind, unittest.equals('foo')); |
| 5729 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5729 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5730 checkUnnamed1413(o.placementGroups); | 5730 checkUnnamed1425(o.placementGroups); |
| 5731 } | 5731 } |
| 5732 buildCounterPlacementGroupsListResponse--; | 5732 buildCounterPlacementGroupsListResponse--; |
| 5733 } | 5733 } |
| 5734 | 5734 |
| 5735 buildUnnamed1414() { | 5735 buildUnnamed1426() { |
| 5736 var o = new core.List<api.PlacementStrategy>(); | 5736 var o = new core.List<api.PlacementStrategy>(); |
| 5737 o.add(buildPlacementStrategy()); | 5737 o.add(buildPlacementStrategy()); |
| 5738 o.add(buildPlacementStrategy()); | 5738 o.add(buildPlacementStrategy()); |
| 5739 return o; | 5739 return o; |
| 5740 } | 5740 } |
| 5741 | 5741 |
| 5742 checkUnnamed1414(core.List<api.PlacementStrategy> o) { | 5742 checkUnnamed1426(core.List<api.PlacementStrategy> o) { |
| 5743 unittest.expect(o, unittest.hasLength(2)); | 5743 unittest.expect(o, unittest.hasLength(2)); |
| 5744 checkPlacementStrategy(o[0]); | 5744 checkPlacementStrategy(o[0]); |
| 5745 checkPlacementStrategy(o[1]); | 5745 checkPlacementStrategy(o[1]); |
| 5746 } | 5746 } |
| 5747 | 5747 |
| 5748 core.int buildCounterPlacementStrategiesListResponse = 0; | 5748 core.int buildCounterPlacementStrategiesListResponse = 0; |
| 5749 buildPlacementStrategiesListResponse() { | 5749 buildPlacementStrategiesListResponse() { |
| 5750 var o = new api.PlacementStrategiesListResponse(); | 5750 var o = new api.PlacementStrategiesListResponse(); |
| 5751 buildCounterPlacementStrategiesListResponse++; | 5751 buildCounterPlacementStrategiesListResponse++; |
| 5752 if (buildCounterPlacementStrategiesListResponse < 3) { | 5752 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5753 o.kind = "foo"; | 5753 o.kind = "foo"; |
| 5754 o.nextPageToken = "foo"; | 5754 o.nextPageToken = "foo"; |
| 5755 o.placementStrategies = buildUnnamed1414(); | 5755 o.placementStrategies = buildUnnamed1426(); |
| 5756 } | 5756 } |
| 5757 buildCounterPlacementStrategiesListResponse--; | 5757 buildCounterPlacementStrategiesListResponse--; |
| 5758 return o; | 5758 return o; |
| 5759 } | 5759 } |
| 5760 | 5760 |
| 5761 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { | 5761 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { |
| 5762 buildCounterPlacementStrategiesListResponse++; | 5762 buildCounterPlacementStrategiesListResponse++; |
| 5763 if (buildCounterPlacementStrategiesListResponse < 3) { | 5763 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5764 unittest.expect(o.kind, unittest.equals('foo')); | 5764 unittest.expect(o.kind, unittest.equals('foo')); |
| 5765 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5765 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5766 checkUnnamed1414(o.placementStrategies); | 5766 checkUnnamed1426(o.placementStrategies); |
| 5767 } | 5767 } |
| 5768 buildCounterPlacementStrategiesListResponse--; | 5768 buildCounterPlacementStrategiesListResponse--; |
| 5769 } | 5769 } |
| 5770 | 5770 |
| 5771 core.int buildCounterPlacementStrategy = 0; | 5771 core.int buildCounterPlacementStrategy = 0; |
| 5772 buildPlacementStrategy() { | 5772 buildPlacementStrategy() { |
| 5773 var o = new api.PlacementStrategy(); | 5773 var o = new api.PlacementStrategy(); |
| 5774 buildCounterPlacementStrategy++; | 5774 buildCounterPlacementStrategy++; |
| 5775 if (buildCounterPlacementStrategy < 3) { | 5775 if (buildCounterPlacementStrategy < 3) { |
| 5776 o.accountId = "foo"; | 5776 o.accountId = "foo"; |
| 5777 o.id = "foo"; | 5777 o.id = "foo"; |
| 5778 o.kind = "foo"; | 5778 o.kind = "foo"; |
| 5779 o.name = "foo"; | 5779 o.name = "foo"; |
| 5780 } | 5780 } |
| 5781 buildCounterPlacementStrategy--; | 5781 buildCounterPlacementStrategy--; |
| 5782 return o; | 5782 return o; |
| 5783 } | 5783 } |
| 5784 | 5784 |
| 5785 checkPlacementStrategy(api.PlacementStrategy o) { | 5785 checkPlacementStrategy(api.PlacementStrategy o) { |
| 5786 buildCounterPlacementStrategy++; | 5786 buildCounterPlacementStrategy++; |
| 5787 if (buildCounterPlacementStrategy < 3) { | 5787 if (buildCounterPlacementStrategy < 3) { |
| 5788 unittest.expect(o.accountId, unittest.equals('foo')); | 5788 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5789 unittest.expect(o.id, unittest.equals('foo')); | 5789 unittest.expect(o.id, unittest.equals('foo')); |
| 5790 unittest.expect(o.kind, unittest.equals('foo')); | 5790 unittest.expect(o.kind, unittest.equals('foo')); |
| 5791 unittest.expect(o.name, unittest.equals('foo')); | 5791 unittest.expect(o.name, unittest.equals('foo')); |
| 5792 } | 5792 } |
| 5793 buildCounterPlacementStrategy--; | 5793 buildCounterPlacementStrategy--; |
| 5794 } | 5794 } |
| 5795 | 5795 |
| 5796 buildUnnamed1415() { | 5796 buildUnnamed1427() { |
| 5797 var o = new core.List<api.TagData>(); | 5797 var o = new core.List<api.TagData>(); |
| 5798 o.add(buildTagData()); | 5798 o.add(buildTagData()); |
| 5799 o.add(buildTagData()); | 5799 o.add(buildTagData()); |
| 5800 return o; | 5800 return o; |
| 5801 } | 5801 } |
| 5802 | 5802 |
| 5803 checkUnnamed1415(core.List<api.TagData> o) { | 5803 checkUnnamed1427(core.List<api.TagData> o) { |
| 5804 unittest.expect(o, unittest.hasLength(2)); | 5804 unittest.expect(o, unittest.hasLength(2)); |
| 5805 checkTagData(o[0]); | 5805 checkTagData(o[0]); |
| 5806 checkTagData(o[1]); | 5806 checkTagData(o[1]); |
| 5807 } | 5807 } |
| 5808 | 5808 |
| 5809 core.int buildCounterPlacementTag = 0; | 5809 core.int buildCounterPlacementTag = 0; |
| 5810 buildPlacementTag() { | 5810 buildPlacementTag() { |
| 5811 var o = new api.PlacementTag(); | 5811 var o = new api.PlacementTag(); |
| 5812 buildCounterPlacementTag++; | 5812 buildCounterPlacementTag++; |
| 5813 if (buildCounterPlacementTag < 3) { | 5813 if (buildCounterPlacementTag < 3) { |
| 5814 o.placementId = "foo"; | 5814 o.placementId = "foo"; |
| 5815 o.tagDatas = buildUnnamed1415(); | 5815 o.tagDatas = buildUnnamed1427(); |
| 5816 } | 5816 } |
| 5817 buildCounterPlacementTag--; | 5817 buildCounterPlacementTag--; |
| 5818 return o; | 5818 return o; |
| 5819 } | 5819 } |
| 5820 | 5820 |
| 5821 checkPlacementTag(api.PlacementTag o) { | 5821 checkPlacementTag(api.PlacementTag o) { |
| 5822 buildCounterPlacementTag++; | 5822 buildCounterPlacementTag++; |
| 5823 if (buildCounterPlacementTag < 3) { | 5823 if (buildCounterPlacementTag < 3) { |
| 5824 unittest.expect(o.placementId, unittest.equals('foo')); | 5824 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5825 checkUnnamed1415(o.tagDatas); | 5825 checkUnnamed1427(o.tagDatas); |
| 5826 } | 5826 } |
| 5827 buildCounterPlacementTag--; | 5827 buildCounterPlacementTag--; |
| 5828 } | 5828 } |
| 5829 | 5829 |
| 5830 buildUnnamed1416() { | 5830 buildUnnamed1428() { |
| 5831 var o = new core.List<api.PlacementTag>(); | 5831 var o = new core.List<api.PlacementTag>(); |
| 5832 o.add(buildPlacementTag()); | 5832 o.add(buildPlacementTag()); |
| 5833 o.add(buildPlacementTag()); | 5833 o.add(buildPlacementTag()); |
| 5834 return o; | 5834 return o; |
| 5835 } | 5835 } |
| 5836 | 5836 |
| 5837 checkUnnamed1416(core.List<api.PlacementTag> o) { | 5837 checkUnnamed1428(core.List<api.PlacementTag> o) { |
| 5838 unittest.expect(o, unittest.hasLength(2)); | 5838 unittest.expect(o, unittest.hasLength(2)); |
| 5839 checkPlacementTag(o[0]); | 5839 checkPlacementTag(o[0]); |
| 5840 checkPlacementTag(o[1]); | 5840 checkPlacementTag(o[1]); |
| 5841 } | 5841 } |
| 5842 | 5842 |
| 5843 core.int buildCounterPlacementsGenerateTagsResponse = 0; | 5843 core.int buildCounterPlacementsGenerateTagsResponse = 0; |
| 5844 buildPlacementsGenerateTagsResponse() { | 5844 buildPlacementsGenerateTagsResponse() { |
| 5845 var o = new api.PlacementsGenerateTagsResponse(); | 5845 var o = new api.PlacementsGenerateTagsResponse(); |
| 5846 buildCounterPlacementsGenerateTagsResponse++; | 5846 buildCounterPlacementsGenerateTagsResponse++; |
| 5847 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5847 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5848 o.kind = "foo"; | 5848 o.kind = "foo"; |
| 5849 o.placementTags = buildUnnamed1416(); | 5849 o.placementTags = buildUnnamed1428(); |
| 5850 } | 5850 } |
| 5851 buildCounterPlacementsGenerateTagsResponse--; | 5851 buildCounterPlacementsGenerateTagsResponse--; |
| 5852 return o; | 5852 return o; |
| 5853 } | 5853 } |
| 5854 | 5854 |
| 5855 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { | 5855 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { |
| 5856 buildCounterPlacementsGenerateTagsResponse++; | 5856 buildCounterPlacementsGenerateTagsResponse++; |
| 5857 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5857 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5858 unittest.expect(o.kind, unittest.equals('foo')); | 5858 unittest.expect(o.kind, unittest.equals('foo')); |
| 5859 checkUnnamed1416(o.placementTags); | 5859 checkUnnamed1428(o.placementTags); |
| 5860 } | 5860 } |
| 5861 buildCounterPlacementsGenerateTagsResponse--; | 5861 buildCounterPlacementsGenerateTagsResponse--; |
| 5862 } | 5862 } |
| 5863 | 5863 |
| 5864 buildUnnamed1417() { | 5864 buildUnnamed1429() { |
| 5865 var o = new core.List<api.Placement>(); | 5865 var o = new core.List<api.Placement>(); |
| 5866 o.add(buildPlacement()); | 5866 o.add(buildPlacement()); |
| 5867 o.add(buildPlacement()); | 5867 o.add(buildPlacement()); |
| 5868 return o; | 5868 return o; |
| 5869 } | 5869 } |
| 5870 | 5870 |
| 5871 checkUnnamed1417(core.List<api.Placement> o) { | 5871 checkUnnamed1429(core.List<api.Placement> o) { |
| 5872 unittest.expect(o, unittest.hasLength(2)); | 5872 unittest.expect(o, unittest.hasLength(2)); |
| 5873 checkPlacement(o[0]); | 5873 checkPlacement(o[0]); |
| 5874 checkPlacement(o[1]); | 5874 checkPlacement(o[1]); |
| 5875 } | 5875 } |
| 5876 | 5876 |
| 5877 core.int buildCounterPlacementsListResponse = 0; | 5877 core.int buildCounterPlacementsListResponse = 0; |
| 5878 buildPlacementsListResponse() { | 5878 buildPlacementsListResponse() { |
| 5879 var o = new api.PlacementsListResponse(); | 5879 var o = new api.PlacementsListResponse(); |
| 5880 buildCounterPlacementsListResponse++; | 5880 buildCounterPlacementsListResponse++; |
| 5881 if (buildCounterPlacementsListResponse < 3) { | 5881 if (buildCounterPlacementsListResponse < 3) { |
| 5882 o.kind = "foo"; | 5882 o.kind = "foo"; |
| 5883 o.nextPageToken = "foo"; | 5883 o.nextPageToken = "foo"; |
| 5884 o.placements = buildUnnamed1417(); | 5884 o.placements = buildUnnamed1429(); |
| 5885 } | 5885 } |
| 5886 buildCounterPlacementsListResponse--; | 5886 buildCounterPlacementsListResponse--; |
| 5887 return o; | 5887 return o; |
| 5888 } | 5888 } |
| 5889 | 5889 |
| 5890 checkPlacementsListResponse(api.PlacementsListResponse o) { | 5890 checkPlacementsListResponse(api.PlacementsListResponse o) { |
| 5891 buildCounterPlacementsListResponse++; | 5891 buildCounterPlacementsListResponse++; |
| 5892 if (buildCounterPlacementsListResponse < 3) { | 5892 if (buildCounterPlacementsListResponse < 3) { |
| 5893 unittest.expect(o.kind, unittest.equals('foo')); | 5893 unittest.expect(o.kind, unittest.equals('foo')); |
| 5894 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5894 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5895 checkUnnamed1417(o.placements); | 5895 checkUnnamed1429(o.placements); |
| 5896 } | 5896 } |
| 5897 buildCounterPlacementsListResponse--; | 5897 buildCounterPlacementsListResponse--; |
| 5898 } | 5898 } |
| 5899 | 5899 |
| 5900 core.int buildCounterPlatformType = 0; | 5900 core.int buildCounterPlatformType = 0; |
| 5901 buildPlatformType() { | 5901 buildPlatformType() { |
| 5902 var o = new api.PlatformType(); | 5902 var o = new api.PlatformType(); |
| 5903 buildCounterPlatformType++; | 5903 buildCounterPlatformType++; |
| 5904 if (buildCounterPlatformType < 3) { | 5904 if (buildCounterPlatformType < 3) { |
| 5905 o.id = "foo"; | 5905 o.id = "foo"; |
| 5906 o.kind = "foo"; | 5906 o.kind = "foo"; |
| 5907 o.name = "foo"; | 5907 o.name = "foo"; |
| 5908 } | 5908 } |
| 5909 buildCounterPlatformType--; | 5909 buildCounterPlatformType--; |
| 5910 return o; | 5910 return o; |
| 5911 } | 5911 } |
| 5912 | 5912 |
| 5913 checkPlatformType(api.PlatformType o) { | 5913 checkPlatformType(api.PlatformType o) { |
| 5914 buildCounterPlatformType++; | 5914 buildCounterPlatformType++; |
| 5915 if (buildCounterPlatformType < 3) { | 5915 if (buildCounterPlatformType < 3) { |
| 5916 unittest.expect(o.id, unittest.equals('foo')); | 5916 unittest.expect(o.id, unittest.equals('foo')); |
| 5917 unittest.expect(o.kind, unittest.equals('foo')); | 5917 unittest.expect(o.kind, unittest.equals('foo')); |
| 5918 unittest.expect(o.name, unittest.equals('foo')); | 5918 unittest.expect(o.name, unittest.equals('foo')); |
| 5919 } | 5919 } |
| 5920 buildCounterPlatformType--; | 5920 buildCounterPlatformType--; |
| 5921 } | 5921 } |
| 5922 | 5922 |
| 5923 buildUnnamed1418() { | 5923 buildUnnamed1430() { |
| 5924 var o = new core.List<api.PlatformType>(); | 5924 var o = new core.List<api.PlatformType>(); |
| 5925 o.add(buildPlatformType()); | 5925 o.add(buildPlatformType()); |
| 5926 o.add(buildPlatformType()); | 5926 o.add(buildPlatformType()); |
| 5927 return o; | 5927 return o; |
| 5928 } | 5928 } |
| 5929 | 5929 |
| 5930 checkUnnamed1418(core.List<api.PlatformType> o) { | 5930 checkUnnamed1430(core.List<api.PlatformType> o) { |
| 5931 unittest.expect(o, unittest.hasLength(2)); | 5931 unittest.expect(o, unittest.hasLength(2)); |
| 5932 checkPlatformType(o[0]); | 5932 checkPlatformType(o[0]); |
| 5933 checkPlatformType(o[1]); | 5933 checkPlatformType(o[1]); |
| 5934 } | 5934 } |
| 5935 | 5935 |
| 5936 core.int buildCounterPlatformTypesListResponse = 0; | 5936 core.int buildCounterPlatformTypesListResponse = 0; |
| 5937 buildPlatformTypesListResponse() { | 5937 buildPlatformTypesListResponse() { |
| 5938 var o = new api.PlatformTypesListResponse(); | 5938 var o = new api.PlatformTypesListResponse(); |
| 5939 buildCounterPlatformTypesListResponse++; | 5939 buildCounterPlatformTypesListResponse++; |
| 5940 if (buildCounterPlatformTypesListResponse < 3) { | 5940 if (buildCounterPlatformTypesListResponse < 3) { |
| 5941 o.kind = "foo"; | 5941 o.kind = "foo"; |
| 5942 o.platformTypes = buildUnnamed1418(); | 5942 o.platformTypes = buildUnnamed1430(); |
| 5943 } | 5943 } |
| 5944 buildCounterPlatformTypesListResponse--; | 5944 buildCounterPlatformTypesListResponse--; |
| 5945 return o; | 5945 return o; |
| 5946 } | 5946 } |
| 5947 | 5947 |
| 5948 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { | 5948 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { |
| 5949 buildCounterPlatformTypesListResponse++; | 5949 buildCounterPlatformTypesListResponse++; |
| 5950 if (buildCounterPlatformTypesListResponse < 3) { | 5950 if (buildCounterPlatformTypesListResponse < 3) { |
| 5951 unittest.expect(o.kind, unittest.equals('foo')); | 5951 unittest.expect(o.kind, unittest.equals('foo')); |
| 5952 checkUnnamed1418(o.platformTypes); | 5952 checkUnnamed1430(o.platformTypes); |
| 5953 } | 5953 } |
| 5954 buildCounterPlatformTypesListResponse--; | 5954 buildCounterPlatformTypesListResponse--; |
| 5955 } | 5955 } |
| 5956 | 5956 |
| 5957 core.int buildCounterPopupWindowProperties = 0; | 5957 core.int buildCounterPopupWindowProperties = 0; |
| 5958 buildPopupWindowProperties() { | 5958 buildPopupWindowProperties() { |
| 5959 var o = new api.PopupWindowProperties(); | 5959 var o = new api.PopupWindowProperties(); |
| 5960 buildCounterPopupWindowProperties++; | 5960 buildCounterPopupWindowProperties++; |
| 5961 if (buildCounterPopupWindowProperties < 3) { | 5961 if (buildCounterPopupWindowProperties < 3) { |
| 5962 o.dimension = buildSize(); | 5962 o.dimension = buildSize(); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6009 if (buildCounterPostalCode < 3) { | 6009 if (buildCounterPostalCode < 3) { |
| 6010 unittest.expect(o.code, unittest.equals('foo')); | 6010 unittest.expect(o.code, unittest.equals('foo')); |
| 6011 unittest.expect(o.countryCode, unittest.equals('foo')); | 6011 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 6012 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6012 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 6013 unittest.expect(o.id, unittest.equals('foo')); | 6013 unittest.expect(o.id, unittest.equals('foo')); |
| 6014 unittest.expect(o.kind, unittest.equals('foo')); | 6014 unittest.expect(o.kind, unittest.equals('foo')); |
| 6015 } | 6015 } |
| 6016 buildCounterPostalCode--; | 6016 buildCounterPostalCode--; |
| 6017 } | 6017 } |
| 6018 | 6018 |
| 6019 buildUnnamed1419() { | 6019 buildUnnamed1431() { |
| 6020 var o = new core.List<api.PostalCode>(); | 6020 var o = new core.List<api.PostalCode>(); |
| 6021 o.add(buildPostalCode()); | 6021 o.add(buildPostalCode()); |
| 6022 o.add(buildPostalCode()); | 6022 o.add(buildPostalCode()); |
| 6023 return o; | 6023 return o; |
| 6024 } | 6024 } |
| 6025 | 6025 |
| 6026 checkUnnamed1419(core.List<api.PostalCode> o) { | 6026 checkUnnamed1431(core.List<api.PostalCode> o) { |
| 6027 unittest.expect(o, unittest.hasLength(2)); | 6027 unittest.expect(o, unittest.hasLength(2)); |
| 6028 checkPostalCode(o[0]); | 6028 checkPostalCode(o[0]); |
| 6029 checkPostalCode(o[1]); | 6029 checkPostalCode(o[1]); |
| 6030 } | 6030 } |
| 6031 | 6031 |
| 6032 core.int buildCounterPostalCodesListResponse = 0; | 6032 core.int buildCounterPostalCodesListResponse = 0; |
| 6033 buildPostalCodesListResponse() { | 6033 buildPostalCodesListResponse() { |
| 6034 var o = new api.PostalCodesListResponse(); | 6034 var o = new api.PostalCodesListResponse(); |
| 6035 buildCounterPostalCodesListResponse++; | 6035 buildCounterPostalCodesListResponse++; |
| 6036 if (buildCounterPostalCodesListResponse < 3) { | 6036 if (buildCounterPostalCodesListResponse < 3) { |
| 6037 o.kind = "foo"; | 6037 o.kind = "foo"; |
| 6038 o.postalCodes = buildUnnamed1419(); | 6038 o.postalCodes = buildUnnamed1431(); |
| 6039 } | 6039 } |
| 6040 buildCounterPostalCodesListResponse--; | 6040 buildCounterPostalCodesListResponse--; |
| 6041 return o; | 6041 return o; |
| 6042 } | 6042 } |
| 6043 | 6043 |
| 6044 checkPostalCodesListResponse(api.PostalCodesListResponse o) { | 6044 checkPostalCodesListResponse(api.PostalCodesListResponse o) { |
| 6045 buildCounterPostalCodesListResponse++; | 6045 buildCounterPostalCodesListResponse++; |
| 6046 if (buildCounterPostalCodesListResponse < 3) { | 6046 if (buildCounterPostalCodesListResponse < 3) { |
| 6047 unittest.expect(o.kind, unittest.equals('foo')); | 6047 unittest.expect(o.kind, unittest.equals('foo')); |
| 6048 checkUnnamed1419(o.postalCodes); | 6048 checkUnnamed1431(o.postalCodes); |
| 6049 } | 6049 } |
| 6050 buildCounterPostalCodesListResponse--; | 6050 buildCounterPostalCodesListResponse--; |
| 6051 } | 6051 } |
| 6052 | 6052 |
| 6053 buildUnnamed1420() { | 6053 buildUnnamed1432() { |
| 6054 var o = new core.List<api.Flight>(); | 6054 var o = new core.List<api.Flight>(); |
| 6055 o.add(buildFlight()); | 6055 o.add(buildFlight()); |
| 6056 o.add(buildFlight()); | 6056 o.add(buildFlight()); |
| 6057 return o; | 6057 return o; |
| 6058 } | 6058 } |
| 6059 | 6059 |
| 6060 checkUnnamed1420(core.List<api.Flight> o) { | 6060 checkUnnamed1432(core.List<api.Flight> o) { |
| 6061 unittest.expect(o, unittest.hasLength(2)); | 6061 unittest.expect(o, unittest.hasLength(2)); |
| 6062 checkFlight(o[0]); | 6062 checkFlight(o[0]); |
| 6063 checkFlight(o[1]); | 6063 checkFlight(o[1]); |
| 6064 } | 6064 } |
| 6065 | 6065 |
| 6066 core.int buildCounterPricing = 0; | 6066 core.int buildCounterPricing = 0; |
| 6067 buildPricing() { | 6067 buildPricing() { |
| 6068 var o = new api.Pricing(); | 6068 var o = new api.Pricing(); |
| 6069 buildCounterPricing++; | 6069 buildCounterPricing++; |
| 6070 if (buildCounterPricing < 3) { | 6070 if (buildCounterPricing < 3) { |
| 6071 o.capCostType = "foo"; | 6071 o.capCostType = "foo"; |
| 6072 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6072 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6073 o.flights = buildUnnamed1420(); | 6073 o.flights = buildUnnamed1432(); |
| 6074 o.groupType = "foo"; | 6074 o.groupType = "foo"; |
| 6075 o.pricingType = "foo"; | 6075 o.pricingType = "foo"; |
| 6076 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6076 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6077 } | 6077 } |
| 6078 buildCounterPricing--; | 6078 buildCounterPricing--; |
| 6079 return o; | 6079 return o; |
| 6080 } | 6080 } |
| 6081 | 6081 |
| 6082 checkPricing(api.Pricing o) { | 6082 checkPricing(api.Pricing o) { |
| 6083 buildCounterPricing++; | 6083 buildCounterPricing++; |
| 6084 if (buildCounterPricing < 3) { | 6084 if (buildCounterPricing < 3) { |
| 6085 unittest.expect(o.capCostType, unittest.equals('foo')); | 6085 unittest.expect(o.capCostType, unittest.equals('foo')); |
| 6086 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 6086 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 6087 checkUnnamed1420(o.flights); | 6087 checkUnnamed1432(o.flights); |
| 6088 unittest.expect(o.groupType, unittest.equals('foo')); | 6088 unittest.expect(o.groupType, unittest.equals('foo')); |
| 6089 unittest.expect(o.pricingType, unittest.equals('foo')); | 6089 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 6090 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6090 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 6091 } | 6091 } |
| 6092 buildCounterPricing--; | 6092 buildCounterPricing--; |
| 6093 } | 6093 } |
| 6094 | 6094 |
| 6095 buildUnnamed1421() { | 6095 buildUnnamed1433() { |
| 6096 var o = new core.List<api.PricingSchedulePricingPeriod>(); | 6096 var o = new core.List<api.PricingSchedulePricingPeriod>(); |
| 6097 o.add(buildPricingSchedulePricingPeriod()); | 6097 o.add(buildPricingSchedulePricingPeriod()); |
| 6098 o.add(buildPricingSchedulePricingPeriod()); | 6098 o.add(buildPricingSchedulePricingPeriod()); |
| 6099 return o; | 6099 return o; |
| 6100 } | 6100 } |
| 6101 | 6101 |
| 6102 checkUnnamed1421(core.List<api.PricingSchedulePricingPeriod> o) { | 6102 checkUnnamed1433(core.List<api.PricingSchedulePricingPeriod> o) { |
| 6103 unittest.expect(o, unittest.hasLength(2)); | 6103 unittest.expect(o, unittest.hasLength(2)); |
| 6104 checkPricingSchedulePricingPeriod(o[0]); | 6104 checkPricingSchedulePricingPeriod(o[0]); |
| 6105 checkPricingSchedulePricingPeriod(o[1]); | 6105 checkPricingSchedulePricingPeriod(o[1]); |
| 6106 } | 6106 } |
| 6107 | 6107 |
| 6108 core.int buildCounterPricingSchedule = 0; | 6108 core.int buildCounterPricingSchedule = 0; |
| 6109 buildPricingSchedule() { | 6109 buildPricingSchedule() { |
| 6110 var o = new api.PricingSchedule(); | 6110 var o = new api.PricingSchedule(); |
| 6111 buildCounterPricingSchedule++; | 6111 buildCounterPricingSchedule++; |
| 6112 if (buildCounterPricingSchedule < 3) { | 6112 if (buildCounterPricingSchedule < 3) { |
| 6113 o.capCostOption = "foo"; | 6113 o.capCostOption = "foo"; |
| 6114 o.disregardOverdelivery = true; | 6114 o.disregardOverdelivery = true; |
| 6115 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6115 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6116 o.flighted = true; | 6116 o.flighted = true; |
| 6117 o.floodlightActivityId = "foo"; | 6117 o.floodlightActivityId = "foo"; |
| 6118 o.pricingPeriods = buildUnnamed1421(); | 6118 o.pricingPeriods = buildUnnamed1433(); |
| 6119 o.pricingType = "foo"; | 6119 o.pricingType = "foo"; |
| 6120 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6120 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6121 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6121 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6122 } | 6122 } |
| 6123 buildCounterPricingSchedule--; | 6123 buildCounterPricingSchedule--; |
| 6124 return o; | 6124 return o; |
| 6125 } | 6125 } |
| 6126 | 6126 |
| 6127 checkPricingSchedule(api.PricingSchedule o) { | 6127 checkPricingSchedule(api.PricingSchedule o) { |
| 6128 buildCounterPricingSchedule++; | 6128 buildCounterPricingSchedule++; |
| 6129 if (buildCounterPricingSchedule < 3) { | 6129 if (buildCounterPricingSchedule < 3) { |
| 6130 unittest.expect(o.capCostOption, unittest.equals('foo')); | 6130 unittest.expect(o.capCostOption, unittest.equals('foo')); |
| 6131 unittest.expect(o.disregardOverdelivery, unittest.isTrue); | 6131 unittest.expect(o.disregardOverdelivery, unittest.isTrue); |
| 6132 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 6132 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 6133 unittest.expect(o.flighted, unittest.isTrue); | 6133 unittest.expect(o.flighted, unittest.isTrue); |
| 6134 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 6134 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 6135 checkUnnamed1421(o.pricingPeriods); | 6135 checkUnnamed1433(o.pricingPeriods); |
| 6136 unittest.expect(o.pricingType, unittest.equals('foo')); | 6136 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 6137 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6137 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 6138 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); | 6138 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); |
| 6139 } | 6139 } |
| 6140 buildCounterPricingSchedule--; | 6140 buildCounterPricingSchedule--; |
| 6141 } | 6141 } |
| 6142 | 6142 |
| 6143 core.int buildCounterPricingSchedulePricingPeriod = 0; | 6143 core.int buildCounterPricingSchedulePricingPeriod = 0; |
| 6144 buildPricingSchedulePricingPeriod() { | 6144 buildPricingSchedulePricingPeriod() { |
| 6145 var o = new api.PricingSchedulePricingPeriod(); | 6145 var o = new api.PricingSchedulePricingPeriod(); |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6219 unittest.expect(o.targetClicks, unittest.equals('foo')); | 6219 unittest.expect(o.targetClicks, unittest.equals('foo')); |
| 6220 unittest.expect(o.targetConversions, unittest.equals('foo')); | 6220 unittest.expect(o.targetConversions, unittest.equals('foo')); |
| 6221 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); | 6221 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); |
| 6222 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); | 6222 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); |
| 6223 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); | 6223 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); |
| 6224 unittest.expect(o.targetImpressions, unittest.equals('foo')); | 6224 unittest.expect(o.targetImpressions, unittest.equals('foo')); |
| 6225 } | 6225 } |
| 6226 buildCounterProject--; | 6226 buildCounterProject--; |
| 6227 } | 6227 } |
| 6228 | 6228 |
| 6229 buildUnnamed1422() { | 6229 buildUnnamed1434() { |
| 6230 var o = new core.List<api.Project>(); | 6230 var o = new core.List<api.Project>(); |
| 6231 o.add(buildProject()); | 6231 o.add(buildProject()); |
| 6232 o.add(buildProject()); | 6232 o.add(buildProject()); |
| 6233 return o; | 6233 return o; |
| 6234 } | 6234 } |
| 6235 | 6235 |
| 6236 checkUnnamed1422(core.List<api.Project> o) { | 6236 checkUnnamed1434(core.List<api.Project> o) { |
| 6237 unittest.expect(o, unittest.hasLength(2)); | 6237 unittest.expect(o, unittest.hasLength(2)); |
| 6238 checkProject(o[0]); | 6238 checkProject(o[0]); |
| 6239 checkProject(o[1]); | 6239 checkProject(o[1]); |
| 6240 } | 6240 } |
| 6241 | 6241 |
| 6242 core.int buildCounterProjectsListResponse = 0; | 6242 core.int buildCounterProjectsListResponse = 0; |
| 6243 buildProjectsListResponse() { | 6243 buildProjectsListResponse() { |
| 6244 var o = new api.ProjectsListResponse(); | 6244 var o = new api.ProjectsListResponse(); |
| 6245 buildCounterProjectsListResponse++; | 6245 buildCounterProjectsListResponse++; |
| 6246 if (buildCounterProjectsListResponse < 3) { | 6246 if (buildCounterProjectsListResponse < 3) { |
| 6247 o.kind = "foo"; | 6247 o.kind = "foo"; |
| 6248 o.nextPageToken = "foo"; | 6248 o.nextPageToken = "foo"; |
| 6249 o.projects = buildUnnamed1422(); | 6249 o.projects = buildUnnamed1434(); |
| 6250 } | 6250 } |
| 6251 buildCounterProjectsListResponse--; | 6251 buildCounterProjectsListResponse--; |
| 6252 return o; | 6252 return o; |
| 6253 } | 6253 } |
| 6254 | 6254 |
| 6255 checkProjectsListResponse(api.ProjectsListResponse o) { | 6255 checkProjectsListResponse(api.ProjectsListResponse o) { |
| 6256 buildCounterProjectsListResponse++; | 6256 buildCounterProjectsListResponse++; |
| 6257 if (buildCounterProjectsListResponse < 3) { | 6257 if (buildCounterProjectsListResponse < 3) { |
| 6258 unittest.expect(o.kind, unittest.equals('foo')); | 6258 unittest.expect(o.kind, unittest.equals('foo')); |
| 6259 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6259 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6260 checkUnnamed1422(o.projects); | 6260 checkUnnamed1434(o.projects); |
| 6261 } | 6261 } |
| 6262 buildCounterProjectsListResponse--; | 6262 buildCounterProjectsListResponse--; |
| 6263 } | 6263 } |
| 6264 | 6264 |
| 6265 buildUnnamed1423() { | 6265 buildUnnamed1435() { |
| 6266 var o = new core.List<api.Dimension>(); | 6266 var o = new core.List<api.Dimension>(); |
| 6267 o.add(buildDimension()); | 6267 o.add(buildDimension()); |
| 6268 o.add(buildDimension()); | 6268 o.add(buildDimension()); |
| 6269 return o; | 6269 return o; |
| 6270 } | 6270 } |
| 6271 | 6271 |
| 6272 checkUnnamed1423(core.List<api.Dimension> o) { | 6272 checkUnnamed1435(core.List<api.Dimension> o) { |
| 6273 unittest.expect(o, unittest.hasLength(2)); | 6273 unittest.expect(o, unittest.hasLength(2)); |
| 6274 checkDimension(o[0]); | 6274 checkDimension(o[0]); |
| 6275 checkDimension(o[1]); | 6275 checkDimension(o[1]); |
| 6276 } | 6276 } |
| 6277 | 6277 |
| 6278 buildUnnamed1424() { | 6278 buildUnnamed1436() { |
| 6279 var o = new core.List<api.Dimension>(); | 6279 var o = new core.List<api.Dimension>(); |
| 6280 o.add(buildDimension()); | 6280 o.add(buildDimension()); |
| 6281 o.add(buildDimension()); | 6281 o.add(buildDimension()); |
| 6282 return o; | 6282 return o; |
| 6283 } | 6283 } |
| 6284 | 6284 |
| 6285 checkUnnamed1424(core.List<api.Dimension> o) { | 6285 checkUnnamed1436(core.List<api.Dimension> o) { |
| 6286 unittest.expect(o, unittest.hasLength(2)); | 6286 unittest.expect(o, unittest.hasLength(2)); |
| 6287 checkDimension(o[0]); | 6287 checkDimension(o[0]); |
| 6288 checkDimension(o[1]); | 6288 checkDimension(o[1]); |
| 6289 } | 6289 } |
| 6290 | 6290 |
| 6291 buildUnnamed1425() { | 6291 buildUnnamed1437() { |
| 6292 var o = new core.List<api.Metric>(); | 6292 var o = new core.List<api.Metric>(); |
| 6293 o.add(buildMetric()); | 6293 o.add(buildMetric()); |
| 6294 o.add(buildMetric()); | 6294 o.add(buildMetric()); |
| 6295 return o; | 6295 return o; |
| 6296 } | 6296 } |
| 6297 | 6297 |
| 6298 checkUnnamed1425(core.List<api.Metric> o) { | 6298 checkUnnamed1437(core.List<api.Metric> o) { |
| 6299 unittest.expect(o, unittest.hasLength(2)); | 6299 unittest.expect(o, unittest.hasLength(2)); |
| 6300 checkMetric(o[0]); | 6300 checkMetric(o[0]); |
| 6301 checkMetric(o[1]); | 6301 checkMetric(o[1]); |
| 6302 } | 6302 } |
| 6303 | 6303 |
| 6304 buildUnnamed1426() { | 6304 buildUnnamed1438() { |
| 6305 var o = new core.List<api.Metric>(); | 6305 var o = new core.List<api.Metric>(); |
| 6306 o.add(buildMetric()); | 6306 o.add(buildMetric()); |
| 6307 o.add(buildMetric()); | 6307 o.add(buildMetric()); |
| 6308 return o; | 6308 return o; |
| 6309 } | 6309 } |
| 6310 | 6310 |
| 6311 checkUnnamed1426(core.List<api.Metric> o) { | 6311 checkUnnamed1438(core.List<api.Metric> o) { |
| 6312 unittest.expect(o, unittest.hasLength(2)); | 6312 unittest.expect(o, unittest.hasLength(2)); |
| 6313 checkMetric(o[0]); | 6313 checkMetric(o[0]); |
| 6314 checkMetric(o[1]); | 6314 checkMetric(o[1]); |
| 6315 } | 6315 } |
| 6316 | 6316 |
| 6317 buildUnnamed1427() { | 6317 buildUnnamed1439() { |
| 6318 var o = new core.List<api.Metric>(); | 6318 var o = new core.List<api.Metric>(); |
| 6319 o.add(buildMetric()); | 6319 o.add(buildMetric()); |
| 6320 o.add(buildMetric()); | 6320 o.add(buildMetric()); |
| 6321 return o; | 6321 return o; |
| 6322 } | 6322 } |
| 6323 | 6323 |
| 6324 checkUnnamed1427(core.List<api.Metric> o) { | 6324 checkUnnamed1439(core.List<api.Metric> o) { |
| 6325 unittest.expect(o, unittest.hasLength(2)); | 6325 unittest.expect(o, unittest.hasLength(2)); |
| 6326 checkMetric(o[0]); | 6326 checkMetric(o[0]); |
| 6327 checkMetric(o[1]); | 6327 checkMetric(o[1]); |
| 6328 } | 6328 } |
| 6329 | 6329 |
| 6330 core.int buildCounterReachReportCompatibleFields = 0; | 6330 core.int buildCounterReachReportCompatibleFields = 0; |
| 6331 buildReachReportCompatibleFields() { | 6331 buildReachReportCompatibleFields() { |
| 6332 var o = new api.ReachReportCompatibleFields(); | 6332 var o = new api.ReachReportCompatibleFields(); |
| 6333 buildCounterReachReportCompatibleFields++; | 6333 buildCounterReachReportCompatibleFields++; |
| 6334 if (buildCounterReachReportCompatibleFields < 3) { | 6334 if (buildCounterReachReportCompatibleFields < 3) { |
| 6335 o.dimensionFilters = buildUnnamed1423(); | 6335 o.dimensionFilters = buildUnnamed1435(); |
| 6336 o.dimensions = buildUnnamed1424(); | 6336 o.dimensions = buildUnnamed1436(); |
| 6337 o.kind = "foo"; | 6337 o.kind = "foo"; |
| 6338 o.metrics = buildUnnamed1425(); | 6338 o.metrics = buildUnnamed1437(); |
| 6339 o.pivotedActivityMetrics = buildUnnamed1426(); | 6339 o.pivotedActivityMetrics = buildUnnamed1438(); |
| 6340 o.reachByFrequencyMetrics = buildUnnamed1427(); | 6340 o.reachByFrequencyMetrics = buildUnnamed1439(); |
| 6341 } | 6341 } |
| 6342 buildCounterReachReportCompatibleFields--; | 6342 buildCounterReachReportCompatibleFields--; |
| 6343 return o; | 6343 return o; |
| 6344 } | 6344 } |
| 6345 | 6345 |
| 6346 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { | 6346 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { |
| 6347 buildCounterReachReportCompatibleFields++; | 6347 buildCounterReachReportCompatibleFields++; |
| 6348 if (buildCounterReachReportCompatibleFields < 3) { | 6348 if (buildCounterReachReportCompatibleFields < 3) { |
| 6349 checkUnnamed1423(o.dimensionFilters); | 6349 checkUnnamed1435(o.dimensionFilters); |
| 6350 checkUnnamed1424(o.dimensions); | 6350 checkUnnamed1436(o.dimensions); |
| 6351 unittest.expect(o.kind, unittest.equals('foo')); | 6351 unittest.expect(o.kind, unittest.equals('foo')); |
| 6352 checkUnnamed1425(o.metrics); | 6352 checkUnnamed1437(o.metrics); |
| 6353 checkUnnamed1426(o.pivotedActivityMetrics); | 6353 checkUnnamed1438(o.pivotedActivityMetrics); |
| 6354 checkUnnamed1427(o.reachByFrequencyMetrics); | 6354 checkUnnamed1439(o.reachByFrequencyMetrics); |
| 6355 } | 6355 } |
| 6356 buildCounterReachReportCompatibleFields--; | 6356 buildCounterReachReportCompatibleFields--; |
| 6357 } | 6357 } |
| 6358 | 6358 |
| 6359 core.int buildCounterRecipient = 0; | 6359 core.int buildCounterRecipient = 0; |
| 6360 buildRecipient() { | 6360 buildRecipient() { |
| 6361 var o = new api.Recipient(); | 6361 var o = new api.Recipient(); |
| 6362 buildCounterRecipient++; | 6362 buildCounterRecipient++; |
| 6363 if (buildCounterRecipient < 3) { | 6363 if (buildCounterRecipient < 3) { |
| 6364 o.deliveryType = "foo"; | 6364 o.deliveryType = "foo"; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6401 unittest.expect(o.countryCode, unittest.equals('foo')); | 6401 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 6402 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6402 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 6403 unittest.expect(o.dartId, unittest.equals('foo')); | 6403 unittest.expect(o.dartId, unittest.equals('foo')); |
| 6404 unittest.expect(o.kind, unittest.equals('foo')); | 6404 unittest.expect(o.kind, unittest.equals('foo')); |
| 6405 unittest.expect(o.name, unittest.equals('foo')); | 6405 unittest.expect(o.name, unittest.equals('foo')); |
| 6406 unittest.expect(o.regionCode, unittest.equals('foo')); | 6406 unittest.expect(o.regionCode, unittest.equals('foo')); |
| 6407 } | 6407 } |
| 6408 buildCounterRegion--; | 6408 buildCounterRegion--; |
| 6409 } | 6409 } |
| 6410 | 6410 |
| 6411 buildUnnamed1428() { | 6411 buildUnnamed1440() { |
| 6412 var o = new core.List<api.Region>(); | 6412 var o = new core.List<api.Region>(); |
| 6413 o.add(buildRegion()); | 6413 o.add(buildRegion()); |
| 6414 o.add(buildRegion()); | 6414 o.add(buildRegion()); |
| 6415 return o; | 6415 return o; |
| 6416 } | 6416 } |
| 6417 | 6417 |
| 6418 checkUnnamed1428(core.List<api.Region> o) { | 6418 checkUnnamed1440(core.List<api.Region> o) { |
| 6419 unittest.expect(o, unittest.hasLength(2)); | 6419 unittest.expect(o, unittest.hasLength(2)); |
| 6420 checkRegion(o[0]); | 6420 checkRegion(o[0]); |
| 6421 checkRegion(o[1]); | 6421 checkRegion(o[1]); |
| 6422 } | 6422 } |
| 6423 | 6423 |
| 6424 core.int buildCounterRegionsListResponse = 0; | 6424 core.int buildCounterRegionsListResponse = 0; |
| 6425 buildRegionsListResponse() { | 6425 buildRegionsListResponse() { |
| 6426 var o = new api.RegionsListResponse(); | 6426 var o = new api.RegionsListResponse(); |
| 6427 buildCounterRegionsListResponse++; | 6427 buildCounterRegionsListResponse++; |
| 6428 if (buildCounterRegionsListResponse < 3) { | 6428 if (buildCounterRegionsListResponse < 3) { |
| 6429 o.kind = "foo"; | 6429 o.kind = "foo"; |
| 6430 o.regions = buildUnnamed1428(); | 6430 o.regions = buildUnnamed1440(); |
| 6431 } | 6431 } |
| 6432 buildCounterRegionsListResponse--; | 6432 buildCounterRegionsListResponse--; |
| 6433 return o; | 6433 return o; |
| 6434 } | 6434 } |
| 6435 | 6435 |
| 6436 checkRegionsListResponse(api.RegionsListResponse o) { | 6436 checkRegionsListResponse(api.RegionsListResponse o) { |
| 6437 buildCounterRegionsListResponse++; | 6437 buildCounterRegionsListResponse++; |
| 6438 if (buildCounterRegionsListResponse < 3) { | 6438 if (buildCounterRegionsListResponse < 3) { |
| 6439 unittest.expect(o.kind, unittest.equals('foo')); | 6439 unittest.expect(o.kind, unittest.equals('foo')); |
| 6440 checkUnnamed1428(o.regions); | 6440 checkUnnamed1440(o.regions); |
| 6441 } | 6441 } |
| 6442 buildCounterRegionsListResponse--; | 6442 buildCounterRegionsListResponse--; |
| 6443 } | 6443 } |
| 6444 | 6444 |
| 6445 core.int buildCounterRemarketingList = 0; | 6445 core.int buildCounterRemarketingList = 0; |
| 6446 buildRemarketingList() { | 6446 buildRemarketingList() { |
| 6447 var o = new api.RemarketingList(); | 6447 var o = new api.RemarketingList(); |
| 6448 buildCounterRemarketingList++; | 6448 buildCounterRemarketingList++; |
| 6449 if (buildCounterRemarketingList < 3) { | 6449 if (buildCounterRemarketingList < 3) { |
| 6450 o.accountId = "foo"; | 6450 o.accountId = "foo"; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 6478 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 6478 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 6479 checkListPopulationRule(o.listPopulationRule); | 6479 checkListPopulationRule(o.listPopulationRule); |
| 6480 unittest.expect(o.listSize, unittest.equals('foo')); | 6480 unittest.expect(o.listSize, unittest.equals('foo')); |
| 6481 unittest.expect(o.listSource, unittest.equals('foo')); | 6481 unittest.expect(o.listSource, unittest.equals('foo')); |
| 6482 unittest.expect(o.name, unittest.equals('foo')); | 6482 unittest.expect(o.name, unittest.equals('foo')); |
| 6483 unittest.expect(o.subaccountId, unittest.equals('foo')); | 6483 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 6484 } | 6484 } |
| 6485 buildCounterRemarketingList--; | 6485 buildCounterRemarketingList--; |
| 6486 } | 6486 } |
| 6487 | 6487 |
| 6488 buildUnnamed1429() { | 6488 buildUnnamed1441() { |
| 6489 var o = new core.List<core.String>(); | 6489 var o = new core.List<core.String>(); |
| 6490 o.add("foo"); | 6490 o.add("foo"); |
| 6491 o.add("foo"); | 6491 o.add("foo"); |
| 6492 return o; | 6492 return o; |
| 6493 } | 6493 } |
| 6494 | 6494 |
| 6495 checkUnnamed1429(core.List<core.String> o) { | 6495 checkUnnamed1441(core.List<core.String> o) { |
| 6496 unittest.expect(o, unittest.hasLength(2)); | 6496 unittest.expect(o, unittest.hasLength(2)); |
| 6497 unittest.expect(o[0], unittest.equals('foo')); | 6497 unittest.expect(o[0], unittest.equals('foo')); |
| 6498 unittest.expect(o[1], unittest.equals('foo')); | 6498 unittest.expect(o[1], unittest.equals('foo')); |
| 6499 } | 6499 } |
| 6500 | 6500 |
| 6501 buildUnnamed1430() { | 6501 buildUnnamed1442() { |
| 6502 var o = new core.List<core.String>(); | 6502 var o = new core.List<core.String>(); |
| 6503 o.add("foo"); | 6503 o.add("foo"); |
| 6504 o.add("foo"); | 6504 o.add("foo"); |
| 6505 return o; | 6505 return o; |
| 6506 } | 6506 } |
| 6507 | 6507 |
| 6508 checkUnnamed1430(core.List<core.String> o) { | 6508 checkUnnamed1442(core.List<core.String> o) { |
| 6509 unittest.expect(o, unittest.hasLength(2)); | 6509 unittest.expect(o, unittest.hasLength(2)); |
| 6510 unittest.expect(o[0], unittest.equals('foo')); | 6510 unittest.expect(o[0], unittest.equals('foo')); |
| 6511 unittest.expect(o[1], unittest.equals('foo')); | 6511 unittest.expect(o[1], unittest.equals('foo')); |
| 6512 } | 6512 } |
| 6513 | 6513 |
| 6514 core.int buildCounterRemarketingListShare = 0; | 6514 core.int buildCounterRemarketingListShare = 0; |
| 6515 buildRemarketingListShare() { | 6515 buildRemarketingListShare() { |
| 6516 var o = new api.RemarketingListShare(); | 6516 var o = new api.RemarketingListShare(); |
| 6517 buildCounterRemarketingListShare++; | 6517 buildCounterRemarketingListShare++; |
| 6518 if (buildCounterRemarketingListShare < 3) { | 6518 if (buildCounterRemarketingListShare < 3) { |
| 6519 o.kind = "foo"; | 6519 o.kind = "foo"; |
| 6520 o.remarketingListId = "foo"; | 6520 o.remarketingListId = "foo"; |
| 6521 o.sharedAccountIds = buildUnnamed1429(); | 6521 o.sharedAccountIds = buildUnnamed1441(); |
| 6522 o.sharedAdvertiserIds = buildUnnamed1430(); | 6522 o.sharedAdvertiserIds = buildUnnamed1442(); |
| 6523 } | 6523 } |
| 6524 buildCounterRemarketingListShare--; | 6524 buildCounterRemarketingListShare--; |
| 6525 return o; | 6525 return o; |
| 6526 } | 6526 } |
| 6527 | 6527 |
| 6528 checkRemarketingListShare(api.RemarketingListShare o) { | 6528 checkRemarketingListShare(api.RemarketingListShare o) { |
| 6529 buildCounterRemarketingListShare++; | 6529 buildCounterRemarketingListShare++; |
| 6530 if (buildCounterRemarketingListShare < 3) { | 6530 if (buildCounterRemarketingListShare < 3) { |
| 6531 unittest.expect(o.kind, unittest.equals('foo')); | 6531 unittest.expect(o.kind, unittest.equals('foo')); |
| 6532 unittest.expect(o.remarketingListId, unittest.equals('foo')); | 6532 unittest.expect(o.remarketingListId, unittest.equals('foo')); |
| 6533 checkUnnamed1429(o.sharedAccountIds); | 6533 checkUnnamed1441(o.sharedAccountIds); |
| 6534 checkUnnamed1430(o.sharedAdvertiserIds); | 6534 checkUnnamed1442(o.sharedAdvertiserIds); |
| 6535 } | 6535 } |
| 6536 buildCounterRemarketingListShare--; | 6536 buildCounterRemarketingListShare--; |
| 6537 } | 6537 } |
| 6538 | 6538 |
| 6539 buildUnnamed1431() { | 6539 buildUnnamed1443() { |
| 6540 var o = new core.List<api.RemarketingList>(); | 6540 var o = new core.List<api.RemarketingList>(); |
| 6541 o.add(buildRemarketingList()); | 6541 o.add(buildRemarketingList()); |
| 6542 o.add(buildRemarketingList()); | 6542 o.add(buildRemarketingList()); |
| 6543 return o; | 6543 return o; |
| 6544 } | 6544 } |
| 6545 | 6545 |
| 6546 checkUnnamed1431(core.List<api.RemarketingList> o) { | 6546 checkUnnamed1443(core.List<api.RemarketingList> o) { |
| 6547 unittest.expect(o, unittest.hasLength(2)); | 6547 unittest.expect(o, unittest.hasLength(2)); |
| 6548 checkRemarketingList(o[0]); | 6548 checkRemarketingList(o[0]); |
| 6549 checkRemarketingList(o[1]); | 6549 checkRemarketingList(o[1]); |
| 6550 } | 6550 } |
| 6551 | 6551 |
| 6552 core.int buildCounterRemarketingListsListResponse = 0; | 6552 core.int buildCounterRemarketingListsListResponse = 0; |
| 6553 buildRemarketingListsListResponse() { | 6553 buildRemarketingListsListResponse() { |
| 6554 var o = new api.RemarketingListsListResponse(); | 6554 var o = new api.RemarketingListsListResponse(); |
| 6555 buildCounterRemarketingListsListResponse++; | 6555 buildCounterRemarketingListsListResponse++; |
| 6556 if (buildCounterRemarketingListsListResponse < 3) { | 6556 if (buildCounterRemarketingListsListResponse < 3) { |
| 6557 o.kind = "foo"; | 6557 o.kind = "foo"; |
| 6558 o.nextPageToken = "foo"; | 6558 o.nextPageToken = "foo"; |
| 6559 o.remarketingLists = buildUnnamed1431(); | 6559 o.remarketingLists = buildUnnamed1443(); |
| 6560 } | 6560 } |
| 6561 buildCounterRemarketingListsListResponse--; | 6561 buildCounterRemarketingListsListResponse--; |
| 6562 return o; | 6562 return o; |
| 6563 } | 6563 } |
| 6564 | 6564 |
| 6565 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { | 6565 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { |
| 6566 buildCounterRemarketingListsListResponse++; | 6566 buildCounterRemarketingListsListResponse++; |
| 6567 if (buildCounterRemarketingListsListResponse < 3) { | 6567 if (buildCounterRemarketingListsListResponse < 3) { |
| 6568 unittest.expect(o.kind, unittest.equals('foo')); | 6568 unittest.expect(o.kind, unittest.equals('foo')); |
| 6569 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6569 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6570 checkUnnamed1431(o.remarketingLists); | 6570 checkUnnamed1443(o.remarketingLists); |
| 6571 } | 6571 } |
| 6572 buildCounterRemarketingListsListResponse--; | 6572 buildCounterRemarketingListsListResponse--; |
| 6573 } | 6573 } |
| 6574 | 6574 |
| 6575 buildUnnamed1432() { | 6575 buildUnnamed1444() { |
| 6576 var o = new core.List<api.DimensionValue>(); | 6576 var o = new core.List<api.DimensionValue>(); |
| 6577 o.add(buildDimensionValue()); | 6577 o.add(buildDimensionValue()); |
| 6578 o.add(buildDimensionValue()); | 6578 o.add(buildDimensionValue()); |
| 6579 return o; | 6579 return o; |
| 6580 } | 6580 } |
| 6581 | 6581 |
| 6582 checkUnnamed1432(core.List<api.DimensionValue> o) { | 6582 checkUnnamed1444(core.List<api.DimensionValue> o) { |
| 6583 unittest.expect(o, unittest.hasLength(2)); | 6583 unittest.expect(o, unittest.hasLength(2)); |
| 6584 checkDimensionValue(o[0]); | 6584 checkDimensionValue(o[0]); |
| 6585 checkDimensionValue(o[1]); | 6585 checkDimensionValue(o[1]); |
| 6586 } | 6586 } |
| 6587 | 6587 |
| 6588 buildUnnamed1433() { | 6588 buildUnnamed1445() { |
| 6589 var o = new core.List<api.SortedDimension>(); | 6589 var o = new core.List<api.SortedDimension>(); |
| 6590 o.add(buildSortedDimension()); | 6590 o.add(buildSortedDimension()); |
| 6591 o.add(buildSortedDimension()); | 6591 o.add(buildSortedDimension()); |
| 6592 return o; | 6592 return o; |
| 6593 } | 6593 } |
| 6594 | 6594 |
| 6595 checkUnnamed1433(core.List<api.SortedDimension> o) { | 6595 checkUnnamed1445(core.List<api.SortedDimension> o) { |
| 6596 unittest.expect(o, unittest.hasLength(2)); | 6596 unittest.expect(o, unittest.hasLength(2)); |
| 6597 checkSortedDimension(o[0]); | 6597 checkSortedDimension(o[0]); |
| 6598 checkSortedDimension(o[1]); | 6598 checkSortedDimension(o[1]); |
| 6599 } | 6599 } |
| 6600 | 6600 |
| 6601 buildUnnamed1434() { | 6601 buildUnnamed1446() { |
| 6602 var o = new core.List<core.String>(); | 6602 var o = new core.List<core.String>(); |
| 6603 o.add("foo"); | 6603 o.add("foo"); |
| 6604 o.add("foo"); | 6604 o.add("foo"); |
| 6605 return o; | 6605 return o; |
| 6606 } | 6606 } |
| 6607 | 6607 |
| 6608 checkUnnamed1434(core.List<core.String> o) { | 6608 checkUnnamed1446(core.List<core.String> o) { |
| 6609 unittest.expect(o, unittest.hasLength(2)); | 6609 unittest.expect(o, unittest.hasLength(2)); |
| 6610 unittest.expect(o[0], unittest.equals('foo')); | 6610 unittest.expect(o[0], unittest.equals('foo')); |
| 6611 unittest.expect(o[1], unittest.equals('foo')); | 6611 unittest.expect(o[1], unittest.equals('foo')); |
| 6612 } | 6612 } |
| 6613 | 6613 |
| 6614 core.int buildCounterReportCriteria = 0; | 6614 core.int buildCounterReportCriteria = 0; |
| 6615 buildReportCriteria() { | 6615 buildReportCriteria() { |
| 6616 var o = new api.ReportCriteria(); | 6616 var o = new api.ReportCriteria(); |
| 6617 buildCounterReportCriteria++; | 6617 buildCounterReportCriteria++; |
| 6618 if (buildCounterReportCriteria < 3) { | 6618 if (buildCounterReportCriteria < 3) { |
| 6619 o.activities = buildActivities(); | 6619 o.activities = buildActivities(); |
| 6620 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6620 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6621 o.dateRange = buildDateRange(); | 6621 o.dateRange = buildDateRange(); |
| 6622 o.dimensionFilters = buildUnnamed1432(); | 6622 o.dimensionFilters = buildUnnamed1444(); |
| 6623 o.dimensions = buildUnnamed1433(); | 6623 o.dimensions = buildUnnamed1445(); |
| 6624 o.metricNames = buildUnnamed1434(); | 6624 o.metricNames = buildUnnamed1446(); |
| 6625 } | 6625 } |
| 6626 buildCounterReportCriteria--; | 6626 buildCounterReportCriteria--; |
| 6627 return o; | 6627 return o; |
| 6628 } | 6628 } |
| 6629 | 6629 |
| 6630 checkReportCriteria(api.ReportCriteria o) { | 6630 checkReportCriteria(api.ReportCriteria o) { |
| 6631 buildCounterReportCriteria++; | 6631 buildCounterReportCriteria++; |
| 6632 if (buildCounterReportCriteria < 3) { | 6632 if (buildCounterReportCriteria < 3) { |
| 6633 checkActivities(o.activities); | 6633 checkActivities(o.activities); |
| 6634 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6634 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6635 checkDateRange(o.dateRange); | 6635 checkDateRange(o.dateRange); |
| 6636 checkUnnamed1432(o.dimensionFilters); | 6636 checkUnnamed1444(o.dimensionFilters); |
| 6637 checkUnnamed1433(o.dimensions); | 6637 checkUnnamed1445(o.dimensions); |
| 6638 checkUnnamed1434(o.metricNames); | 6638 checkUnnamed1446(o.metricNames); |
| 6639 } | 6639 } |
| 6640 buildCounterReportCriteria--; | 6640 buildCounterReportCriteria--; |
| 6641 } | 6641 } |
| 6642 | 6642 |
| 6643 buildUnnamed1435() { | 6643 buildUnnamed1447() { |
| 6644 var o = new core.List<api.SortedDimension>(); | 6644 var o = new core.List<api.SortedDimension>(); |
| 6645 o.add(buildSortedDimension()); | 6645 o.add(buildSortedDimension()); |
| 6646 o.add(buildSortedDimension()); | 6646 o.add(buildSortedDimension()); |
| 6647 return o; | 6647 return o; |
| 6648 } | 6648 } |
| 6649 | 6649 |
| 6650 checkUnnamed1435(core.List<api.SortedDimension> o) { | 6650 checkUnnamed1447(core.List<api.SortedDimension> o) { |
| 6651 unittest.expect(o, unittest.hasLength(2)); | 6651 unittest.expect(o, unittest.hasLength(2)); |
| 6652 checkSortedDimension(o[0]); | 6652 checkSortedDimension(o[0]); |
| 6653 checkSortedDimension(o[1]); | 6653 checkSortedDimension(o[1]); |
| 6654 } | 6654 } |
| 6655 | 6655 |
| 6656 buildUnnamed1436() { | 6656 buildUnnamed1448() { |
| 6657 var o = new core.List<api.DimensionValue>(); | 6657 var o = new core.List<api.DimensionValue>(); |
| 6658 o.add(buildDimensionValue()); | 6658 o.add(buildDimensionValue()); |
| 6659 o.add(buildDimensionValue()); | 6659 o.add(buildDimensionValue()); |
| 6660 return o; | 6660 return o; |
| 6661 } | 6661 } |
| 6662 | 6662 |
| 6663 checkUnnamed1436(core.List<api.DimensionValue> o) { | 6663 checkUnnamed1448(core.List<api.DimensionValue> o) { |
| 6664 unittest.expect(o, unittest.hasLength(2)); | 6664 unittest.expect(o, unittest.hasLength(2)); |
| 6665 checkDimensionValue(o[0]); | 6665 checkDimensionValue(o[0]); |
| 6666 checkDimensionValue(o[1]); | 6666 checkDimensionValue(o[1]); |
| 6667 } | 6667 } |
| 6668 | 6668 |
| 6669 buildUnnamed1437() { | 6669 buildUnnamed1449() { |
| 6670 var o = new core.List<core.String>(); | 6670 var o = new core.List<core.String>(); |
| 6671 o.add("foo"); | 6671 o.add("foo"); |
| 6672 o.add("foo"); | 6672 o.add("foo"); |
| 6673 return o; | 6673 return o; |
| 6674 } | 6674 } |
| 6675 | 6675 |
| 6676 checkUnnamed1437(core.List<core.String> o) { | 6676 checkUnnamed1449(core.List<core.String> o) { |
| 6677 unittest.expect(o, unittest.hasLength(2)); | 6677 unittest.expect(o, unittest.hasLength(2)); |
| 6678 unittest.expect(o[0], unittest.equals('foo')); | 6678 unittest.expect(o[0], unittest.equals('foo')); |
| 6679 unittest.expect(o[1], unittest.equals('foo')); | 6679 unittest.expect(o[1], unittest.equals('foo')); |
| 6680 } | 6680 } |
| 6681 | 6681 |
| 6682 buildUnnamed1438() { | 6682 buildUnnamed1450() { |
| 6683 var o = new core.List<core.String>(); | 6683 var o = new core.List<core.String>(); |
| 6684 o.add("foo"); | 6684 o.add("foo"); |
| 6685 o.add("foo"); | 6685 o.add("foo"); |
| 6686 return o; | 6686 return o; |
| 6687 } | 6687 } |
| 6688 | 6688 |
| 6689 checkUnnamed1438(core.List<core.String> o) { | 6689 checkUnnamed1450(core.List<core.String> o) { |
| 6690 unittest.expect(o, unittest.hasLength(2)); | 6690 unittest.expect(o, unittest.hasLength(2)); |
| 6691 unittest.expect(o[0], unittest.equals('foo')); | 6691 unittest.expect(o[0], unittest.equals('foo')); |
| 6692 unittest.expect(o[1], unittest.equals('foo')); | 6692 unittest.expect(o[1], unittest.equals('foo')); |
| 6693 } | 6693 } |
| 6694 | 6694 |
| 6695 core.int buildCounterReportCrossDimensionReachCriteria = 0; | 6695 core.int buildCounterReportCrossDimensionReachCriteria = 0; |
| 6696 buildReportCrossDimensionReachCriteria() { | 6696 buildReportCrossDimensionReachCriteria() { |
| 6697 var o = new api.ReportCrossDimensionReachCriteria(); | 6697 var o = new api.ReportCrossDimensionReachCriteria(); |
| 6698 buildCounterReportCrossDimensionReachCriteria++; | 6698 buildCounterReportCrossDimensionReachCriteria++; |
| 6699 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6699 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6700 o.breakdown = buildUnnamed1435(); | 6700 o.breakdown = buildUnnamed1447(); |
| 6701 o.dateRange = buildDateRange(); | 6701 o.dateRange = buildDateRange(); |
| 6702 o.dimension = "foo"; | 6702 o.dimension = "foo"; |
| 6703 o.dimensionFilters = buildUnnamed1436(); | 6703 o.dimensionFilters = buildUnnamed1448(); |
| 6704 o.metricNames = buildUnnamed1437(); | 6704 o.metricNames = buildUnnamed1449(); |
| 6705 o.overlapMetricNames = buildUnnamed1438(); | 6705 o.overlapMetricNames = buildUnnamed1450(); |
| 6706 o.pivoted = true; | 6706 o.pivoted = true; |
| 6707 } | 6707 } |
| 6708 buildCounterReportCrossDimensionReachCriteria--; | 6708 buildCounterReportCrossDimensionReachCriteria--; |
| 6709 return o; | 6709 return o; |
| 6710 } | 6710 } |
| 6711 | 6711 |
| 6712 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ | 6712 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ |
| 6713 buildCounterReportCrossDimensionReachCriteria++; | 6713 buildCounterReportCrossDimensionReachCriteria++; |
| 6714 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6714 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6715 checkUnnamed1435(o.breakdown); | 6715 checkUnnamed1447(o.breakdown); |
| 6716 checkDateRange(o.dateRange); | 6716 checkDateRange(o.dateRange); |
| 6717 unittest.expect(o.dimension, unittest.equals('foo')); | 6717 unittest.expect(o.dimension, unittest.equals('foo')); |
| 6718 checkUnnamed1436(o.dimensionFilters); | 6718 checkUnnamed1448(o.dimensionFilters); |
| 6719 checkUnnamed1437(o.metricNames); | 6719 checkUnnamed1449(o.metricNames); |
| 6720 checkUnnamed1438(o.overlapMetricNames); | 6720 checkUnnamed1450(o.overlapMetricNames); |
| 6721 unittest.expect(o.pivoted, unittest.isTrue); | 6721 unittest.expect(o.pivoted, unittest.isTrue); |
| 6722 } | 6722 } |
| 6723 buildCounterReportCrossDimensionReachCriteria--; | 6723 buildCounterReportCrossDimensionReachCriteria--; |
| 6724 } | 6724 } |
| 6725 | 6725 |
| 6726 buildUnnamed1439() { | 6726 buildUnnamed1451() { |
| 6727 var o = new core.List<api.Recipient>(); | 6727 var o = new core.List<api.Recipient>(); |
| 6728 o.add(buildRecipient()); | 6728 o.add(buildRecipient()); |
| 6729 o.add(buildRecipient()); | 6729 o.add(buildRecipient()); |
| 6730 return o; | 6730 return o; |
| 6731 } | 6731 } |
| 6732 | 6732 |
| 6733 checkUnnamed1439(core.List<api.Recipient> o) { | 6733 checkUnnamed1451(core.List<api.Recipient> o) { |
| 6734 unittest.expect(o, unittest.hasLength(2)); | 6734 unittest.expect(o, unittest.hasLength(2)); |
| 6735 checkRecipient(o[0]); | 6735 checkRecipient(o[0]); |
| 6736 checkRecipient(o[1]); | 6736 checkRecipient(o[1]); |
| 6737 } | 6737 } |
| 6738 | 6738 |
| 6739 core.int buildCounterReportDelivery = 0; | 6739 core.int buildCounterReportDelivery = 0; |
| 6740 buildReportDelivery() { | 6740 buildReportDelivery() { |
| 6741 var o = new api.ReportDelivery(); | 6741 var o = new api.ReportDelivery(); |
| 6742 buildCounterReportDelivery++; | 6742 buildCounterReportDelivery++; |
| 6743 if (buildCounterReportDelivery < 3) { | 6743 if (buildCounterReportDelivery < 3) { |
| 6744 o.emailOwner = true; | 6744 o.emailOwner = true; |
| 6745 o.emailOwnerDeliveryType = "foo"; | 6745 o.emailOwnerDeliveryType = "foo"; |
| 6746 o.message = "foo"; | 6746 o.message = "foo"; |
| 6747 o.recipients = buildUnnamed1439(); | 6747 o.recipients = buildUnnamed1451(); |
| 6748 } | 6748 } |
| 6749 buildCounterReportDelivery--; | 6749 buildCounterReportDelivery--; |
| 6750 return o; | 6750 return o; |
| 6751 } | 6751 } |
| 6752 | 6752 |
| 6753 checkReportDelivery(api.ReportDelivery o) { | 6753 checkReportDelivery(api.ReportDelivery o) { |
| 6754 buildCounterReportDelivery++; | 6754 buildCounterReportDelivery++; |
| 6755 if (buildCounterReportDelivery < 3) { | 6755 if (buildCounterReportDelivery < 3) { |
| 6756 unittest.expect(o.emailOwner, unittest.isTrue); | 6756 unittest.expect(o.emailOwner, unittest.isTrue); |
| 6757 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); | 6757 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); |
| 6758 unittest.expect(o.message, unittest.equals('foo')); | 6758 unittest.expect(o.message, unittest.equals('foo')); |
| 6759 checkUnnamed1439(o.recipients); | 6759 checkUnnamed1451(o.recipients); |
| 6760 } | 6760 } |
| 6761 buildCounterReportDelivery--; | 6761 buildCounterReportDelivery--; |
| 6762 } | 6762 } |
| 6763 | 6763 |
| 6764 buildUnnamed1440() { | 6764 buildUnnamed1452() { |
| 6765 var o = new core.List<api.DimensionValue>(); | 6765 var o = new core.List<api.DimensionValue>(); |
| 6766 o.add(buildDimensionValue()); | 6766 o.add(buildDimensionValue()); |
| 6767 o.add(buildDimensionValue()); | 6767 o.add(buildDimensionValue()); |
| 6768 return o; | 6768 return o; |
| 6769 } | 6769 } |
| 6770 | 6770 |
| 6771 checkUnnamed1440(core.List<api.DimensionValue> o) { | 6771 checkUnnamed1452(core.List<api.DimensionValue> o) { |
| 6772 unittest.expect(o, unittest.hasLength(2)); | 6772 unittest.expect(o, unittest.hasLength(2)); |
| 6773 checkDimensionValue(o[0]); | 6773 checkDimensionValue(o[0]); |
| 6774 checkDimensionValue(o[1]); | 6774 checkDimensionValue(o[1]); |
| 6775 } | 6775 } |
| 6776 | 6776 |
| 6777 buildUnnamed1441() { | 6777 buildUnnamed1453() { |
| 6778 var o = new core.List<api.DimensionValue>(); | 6778 var o = new core.List<api.DimensionValue>(); |
| 6779 o.add(buildDimensionValue()); | 6779 o.add(buildDimensionValue()); |
| 6780 o.add(buildDimensionValue()); | 6780 o.add(buildDimensionValue()); |
| 6781 return o; | 6781 return o; |
| 6782 } | 6782 } |
| 6783 | 6783 |
| 6784 checkUnnamed1441(core.List<api.DimensionValue> o) { | 6784 checkUnnamed1453(core.List<api.DimensionValue> o) { |
| 6785 unittest.expect(o, unittest.hasLength(2)); | 6785 unittest.expect(o, unittest.hasLength(2)); |
| 6786 checkDimensionValue(o[0]); | 6786 checkDimensionValue(o[0]); |
| 6787 checkDimensionValue(o[1]); | 6787 checkDimensionValue(o[1]); |
| 6788 } | 6788 } |
| 6789 | 6789 |
| 6790 buildUnnamed1442() { | 6790 buildUnnamed1454() { |
| 6791 var o = new core.List<api.SortedDimension>(); | 6791 var o = new core.List<api.SortedDimension>(); |
| 6792 o.add(buildSortedDimension()); | 6792 o.add(buildSortedDimension()); |
| 6793 o.add(buildSortedDimension()); | 6793 o.add(buildSortedDimension()); |
| 6794 return o; | 6794 return o; |
| 6795 } | 6795 } |
| 6796 | 6796 |
| 6797 checkUnnamed1442(core.List<api.SortedDimension> o) { | 6797 checkUnnamed1454(core.List<api.SortedDimension> o) { |
| 6798 unittest.expect(o, unittest.hasLength(2)); | 6798 unittest.expect(o, unittest.hasLength(2)); |
| 6799 checkSortedDimension(o[0]); | 6799 checkSortedDimension(o[0]); |
| 6800 checkSortedDimension(o[1]); | 6800 checkSortedDimension(o[1]); |
| 6801 } | 6801 } |
| 6802 | 6802 |
| 6803 buildUnnamed1443() { | 6803 buildUnnamed1455() { |
| 6804 var o = new core.List<core.String>(); | 6804 var o = new core.List<core.String>(); |
| 6805 o.add("foo"); | 6805 o.add("foo"); |
| 6806 o.add("foo"); | 6806 o.add("foo"); |
| 6807 return o; | 6807 return o; |
| 6808 } | 6808 } |
| 6809 | 6809 |
| 6810 checkUnnamed1443(core.List<core.String> o) { | 6810 checkUnnamed1455(core.List<core.String> o) { |
| 6811 unittest.expect(o, unittest.hasLength(2)); | 6811 unittest.expect(o, unittest.hasLength(2)); |
| 6812 unittest.expect(o[0], unittest.equals('foo')); | 6812 unittest.expect(o[0], unittest.equals('foo')); |
| 6813 unittest.expect(o[1], unittest.equals('foo')); | 6813 unittest.expect(o[1], unittest.equals('foo')); |
| 6814 } | 6814 } |
| 6815 | 6815 |
| 6816 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; | 6816 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; |
| 6817 buildReportFloodlightCriteriaReportProperties() { | 6817 buildReportFloodlightCriteriaReportProperties() { |
| 6818 var o = new api.ReportFloodlightCriteriaReportProperties(); | 6818 var o = new api.ReportFloodlightCriteriaReportProperties(); |
| 6819 buildCounterReportFloodlightCriteriaReportProperties++; | 6819 buildCounterReportFloodlightCriteriaReportProperties++; |
| 6820 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { | 6820 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 6834 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); | 6834 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); |
| 6835 } | 6835 } |
| 6836 buildCounterReportFloodlightCriteriaReportProperties--; | 6836 buildCounterReportFloodlightCriteriaReportProperties--; |
| 6837 } | 6837 } |
| 6838 | 6838 |
| 6839 core.int buildCounterReportFloodlightCriteria = 0; | 6839 core.int buildCounterReportFloodlightCriteria = 0; |
| 6840 buildReportFloodlightCriteria() { | 6840 buildReportFloodlightCriteria() { |
| 6841 var o = new api.ReportFloodlightCriteria(); | 6841 var o = new api.ReportFloodlightCriteria(); |
| 6842 buildCounterReportFloodlightCriteria++; | 6842 buildCounterReportFloodlightCriteria++; |
| 6843 if (buildCounterReportFloodlightCriteria < 3) { | 6843 if (buildCounterReportFloodlightCriteria < 3) { |
| 6844 o.customRichMediaEvents = buildUnnamed1440(); | 6844 o.customRichMediaEvents = buildUnnamed1452(); |
| 6845 o.dateRange = buildDateRange(); | 6845 o.dateRange = buildDateRange(); |
| 6846 o.dimensionFilters = buildUnnamed1441(); | 6846 o.dimensionFilters = buildUnnamed1453(); |
| 6847 o.dimensions = buildUnnamed1442(); | 6847 o.dimensions = buildUnnamed1454(); |
| 6848 o.floodlightConfigId = buildDimensionValue(); | 6848 o.floodlightConfigId = buildDimensionValue(); |
| 6849 o.metricNames = buildUnnamed1443(); | 6849 o.metricNames = buildUnnamed1455(); |
| 6850 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); | 6850 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); |
| 6851 } | 6851 } |
| 6852 buildCounterReportFloodlightCriteria--; | 6852 buildCounterReportFloodlightCriteria--; |
| 6853 return o; | 6853 return o; |
| 6854 } | 6854 } |
| 6855 | 6855 |
| 6856 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { | 6856 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { |
| 6857 buildCounterReportFloodlightCriteria++; | 6857 buildCounterReportFloodlightCriteria++; |
| 6858 if (buildCounterReportFloodlightCriteria < 3) { | 6858 if (buildCounterReportFloodlightCriteria < 3) { |
| 6859 checkUnnamed1440(o.customRichMediaEvents); | 6859 checkUnnamed1452(o.customRichMediaEvents); |
| 6860 checkDateRange(o.dateRange); | 6860 checkDateRange(o.dateRange); |
| 6861 checkUnnamed1441(o.dimensionFilters); | 6861 checkUnnamed1453(o.dimensionFilters); |
| 6862 checkUnnamed1442(o.dimensions); | 6862 checkUnnamed1454(o.dimensions); |
| 6863 checkDimensionValue(o.floodlightConfigId); | 6863 checkDimensionValue(o.floodlightConfigId); |
| 6864 checkUnnamed1443(o.metricNames); | 6864 checkUnnamed1455(o.metricNames); |
| 6865 checkReportFloodlightCriteriaReportProperties(o.reportProperties); | 6865 checkReportFloodlightCriteriaReportProperties(o.reportProperties); |
| 6866 } | 6866 } |
| 6867 buildCounterReportFloodlightCriteria--; | 6867 buildCounterReportFloodlightCriteria--; |
| 6868 } | 6868 } |
| 6869 | 6869 |
| 6870 buildUnnamed1444() { | 6870 buildUnnamed1456() { |
| 6871 var o = new core.List<api.DimensionValue>(); | 6871 var o = new core.List<api.DimensionValue>(); |
| 6872 o.add(buildDimensionValue()); | 6872 o.add(buildDimensionValue()); |
| 6873 o.add(buildDimensionValue()); | 6873 o.add(buildDimensionValue()); |
| 6874 return o; | 6874 return o; |
| 6875 } | 6875 } |
| 6876 | 6876 |
| 6877 checkUnnamed1444(core.List<api.DimensionValue> o) { | 6877 checkUnnamed1456(core.List<api.DimensionValue> o) { |
| 6878 unittest.expect(o, unittest.hasLength(2)); | 6878 unittest.expect(o, unittest.hasLength(2)); |
| 6879 checkDimensionValue(o[0]); | 6879 checkDimensionValue(o[0]); |
| 6880 checkDimensionValue(o[1]); | 6880 checkDimensionValue(o[1]); |
| 6881 } | 6881 } |
| 6882 | 6882 |
| 6883 buildUnnamed1445() { | 6883 buildUnnamed1457() { |
| 6884 var o = new core.List<api.SortedDimension>(); | 6884 var o = new core.List<api.SortedDimension>(); |
| 6885 o.add(buildSortedDimension()); | 6885 o.add(buildSortedDimension()); |
| 6886 o.add(buildSortedDimension()); | 6886 o.add(buildSortedDimension()); |
| 6887 return o; | 6887 return o; |
| 6888 } | 6888 } |
| 6889 | 6889 |
| 6890 checkUnnamed1445(core.List<api.SortedDimension> o) { | 6890 checkUnnamed1457(core.List<api.SortedDimension> o) { |
| 6891 unittest.expect(o, unittest.hasLength(2)); | 6891 unittest.expect(o, unittest.hasLength(2)); |
| 6892 checkSortedDimension(o[0]); | 6892 checkSortedDimension(o[0]); |
| 6893 checkSortedDimension(o[1]); | 6893 checkSortedDimension(o[1]); |
| 6894 } | 6894 } |
| 6895 | 6895 |
| 6896 buildUnnamed1446() { | 6896 buildUnnamed1458() { |
| 6897 var o = new core.List<api.SortedDimension>(); | 6897 var o = new core.List<api.SortedDimension>(); |
| 6898 o.add(buildSortedDimension()); | 6898 o.add(buildSortedDimension()); |
| 6899 o.add(buildSortedDimension()); | 6899 o.add(buildSortedDimension()); |
| 6900 return o; | 6900 return o; |
| 6901 } | 6901 } |
| 6902 | 6902 |
| 6903 checkUnnamed1446(core.List<api.SortedDimension> o) { | 6903 checkUnnamed1458(core.List<api.SortedDimension> o) { |
| 6904 unittest.expect(o, unittest.hasLength(2)); | 6904 unittest.expect(o, unittest.hasLength(2)); |
| 6905 checkSortedDimension(o[0]); | 6905 checkSortedDimension(o[0]); |
| 6906 checkSortedDimension(o[1]); | 6906 checkSortedDimension(o[1]); |
| 6907 } | 6907 } |
| 6908 | 6908 |
| 6909 buildUnnamed1447() { | 6909 buildUnnamed1459() { |
| 6910 var o = new core.List<api.DimensionValue>(); | 6910 var o = new core.List<api.DimensionValue>(); |
| 6911 o.add(buildDimensionValue()); | 6911 o.add(buildDimensionValue()); |
| 6912 o.add(buildDimensionValue()); | 6912 o.add(buildDimensionValue()); |
| 6913 return o; | 6913 return o; |
| 6914 } | 6914 } |
| 6915 | 6915 |
| 6916 checkUnnamed1447(core.List<api.DimensionValue> o) { | 6916 checkUnnamed1459(core.List<api.DimensionValue> o) { |
| 6917 unittest.expect(o, unittest.hasLength(2)); | 6917 unittest.expect(o, unittest.hasLength(2)); |
| 6918 checkDimensionValue(o[0]); | 6918 checkDimensionValue(o[0]); |
| 6919 checkDimensionValue(o[1]); | 6919 checkDimensionValue(o[1]); |
| 6920 } | 6920 } |
| 6921 | 6921 |
| 6922 buildUnnamed1448() { | 6922 buildUnnamed1460() { |
| 6923 var o = new core.List<core.String>(); | 6923 var o = new core.List<core.String>(); |
| 6924 o.add("foo"); | 6924 o.add("foo"); |
| 6925 o.add("foo"); | 6925 o.add("foo"); |
| 6926 return o; | 6926 return o; |
| 6927 } | 6927 } |
| 6928 | 6928 |
| 6929 checkUnnamed1448(core.List<core.String> o) { | 6929 checkUnnamed1460(core.List<core.String> o) { |
| 6930 unittest.expect(o, unittest.hasLength(2)); | 6930 unittest.expect(o, unittest.hasLength(2)); |
| 6931 unittest.expect(o[0], unittest.equals('foo')); | 6931 unittest.expect(o[0], unittest.equals('foo')); |
| 6932 unittest.expect(o[1], unittest.equals('foo')); | 6932 unittest.expect(o[1], unittest.equals('foo')); |
| 6933 } | 6933 } |
| 6934 | 6934 |
| 6935 buildUnnamed1449() { | 6935 buildUnnamed1461() { |
| 6936 var o = new core.List<api.SortedDimension>(); | 6936 var o = new core.List<api.SortedDimension>(); |
| 6937 o.add(buildSortedDimension()); | 6937 o.add(buildSortedDimension()); |
| 6938 o.add(buildSortedDimension()); | 6938 o.add(buildSortedDimension()); |
| 6939 return o; | 6939 return o; |
| 6940 } | 6940 } |
| 6941 | 6941 |
| 6942 checkUnnamed1449(core.List<api.SortedDimension> o) { | 6942 checkUnnamed1461(core.List<api.SortedDimension> o) { |
| 6943 unittest.expect(o, unittest.hasLength(2)); | 6943 unittest.expect(o, unittest.hasLength(2)); |
| 6944 checkSortedDimension(o[0]); | 6944 checkSortedDimension(o[0]); |
| 6945 checkSortedDimension(o[1]); | 6945 checkSortedDimension(o[1]); |
| 6946 } | 6946 } |
| 6947 | 6947 |
| 6948 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; | 6948 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; |
| 6949 buildReportPathToConversionCriteriaReportProperties() { | 6949 buildReportPathToConversionCriteriaReportProperties() { |
| 6950 var o = new api.ReportPathToConversionCriteriaReportProperties(); | 6950 var o = new api.ReportPathToConversionCriteriaReportProperties(); |
| 6951 buildCounterReportPathToConversionCriteriaReportProperties++; | 6951 buildCounterReportPathToConversionCriteriaReportProperties++; |
| 6952 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { | 6952 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 6978 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); | 6978 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); |
| 6979 } | 6979 } |
| 6980 buildCounterReportPathToConversionCriteriaReportProperties--; | 6980 buildCounterReportPathToConversionCriteriaReportProperties--; |
| 6981 } | 6981 } |
| 6982 | 6982 |
| 6983 core.int buildCounterReportPathToConversionCriteria = 0; | 6983 core.int buildCounterReportPathToConversionCriteria = 0; |
| 6984 buildReportPathToConversionCriteria() { | 6984 buildReportPathToConversionCriteria() { |
| 6985 var o = new api.ReportPathToConversionCriteria(); | 6985 var o = new api.ReportPathToConversionCriteria(); |
| 6986 buildCounterReportPathToConversionCriteria++; | 6986 buildCounterReportPathToConversionCriteria++; |
| 6987 if (buildCounterReportPathToConversionCriteria < 3) { | 6987 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6988 o.activityFilters = buildUnnamed1444(); | 6988 o.activityFilters = buildUnnamed1456(); |
| 6989 o.conversionDimensions = buildUnnamed1445(); | 6989 o.conversionDimensions = buildUnnamed1457(); |
| 6990 o.customFloodlightVariables = buildUnnamed1446(); | 6990 o.customFloodlightVariables = buildUnnamed1458(); |
| 6991 o.customRichMediaEvents = buildUnnamed1447(); | 6991 o.customRichMediaEvents = buildUnnamed1459(); |
| 6992 o.dateRange = buildDateRange(); | 6992 o.dateRange = buildDateRange(); |
| 6993 o.floodlightConfigId = buildDimensionValue(); | 6993 o.floodlightConfigId = buildDimensionValue(); |
| 6994 o.metricNames = buildUnnamed1448(); | 6994 o.metricNames = buildUnnamed1460(); |
| 6995 o.perInteractionDimensions = buildUnnamed1449(); | 6995 o.perInteractionDimensions = buildUnnamed1461(); |
| 6996 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); | 6996 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); |
| 6997 } | 6997 } |
| 6998 buildCounterReportPathToConversionCriteria--; | 6998 buildCounterReportPathToConversionCriteria--; |
| 6999 return o; | 6999 return o; |
| 7000 } | 7000 } |
| 7001 | 7001 |
| 7002 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { | 7002 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { |
| 7003 buildCounterReportPathToConversionCriteria++; | 7003 buildCounterReportPathToConversionCriteria++; |
| 7004 if (buildCounterReportPathToConversionCriteria < 3) { | 7004 if (buildCounterReportPathToConversionCriteria < 3) { |
| 7005 checkUnnamed1444(o.activityFilters); | 7005 checkUnnamed1456(o.activityFilters); |
| 7006 checkUnnamed1445(o.conversionDimensions); | 7006 checkUnnamed1457(o.conversionDimensions); |
| 7007 checkUnnamed1446(o.customFloodlightVariables); | 7007 checkUnnamed1458(o.customFloodlightVariables); |
| 7008 checkUnnamed1447(o.customRichMediaEvents); | 7008 checkUnnamed1459(o.customRichMediaEvents); |
| 7009 checkDateRange(o.dateRange); | 7009 checkDateRange(o.dateRange); |
| 7010 checkDimensionValue(o.floodlightConfigId); | 7010 checkDimensionValue(o.floodlightConfigId); |
| 7011 checkUnnamed1448(o.metricNames); | 7011 checkUnnamed1460(o.metricNames); |
| 7012 checkUnnamed1449(o.perInteractionDimensions); | 7012 checkUnnamed1461(o.perInteractionDimensions); |
| 7013 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); | 7013 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); |
| 7014 } | 7014 } |
| 7015 buildCounterReportPathToConversionCriteria--; | 7015 buildCounterReportPathToConversionCriteria--; |
| 7016 } | 7016 } |
| 7017 | 7017 |
| 7018 buildUnnamed1450() { | 7018 buildUnnamed1462() { |
| 7019 var o = new core.List<api.DimensionValue>(); | 7019 var o = new core.List<api.DimensionValue>(); |
| 7020 o.add(buildDimensionValue()); | 7020 o.add(buildDimensionValue()); |
| 7021 o.add(buildDimensionValue()); | 7021 o.add(buildDimensionValue()); |
| 7022 return o; | 7022 return o; |
| 7023 } | 7023 } |
| 7024 | 7024 |
| 7025 checkUnnamed1450(core.List<api.DimensionValue> o) { | 7025 checkUnnamed1462(core.List<api.DimensionValue> o) { |
| 7026 unittest.expect(o, unittest.hasLength(2)); | 7026 unittest.expect(o, unittest.hasLength(2)); |
| 7027 checkDimensionValue(o[0]); | 7027 checkDimensionValue(o[0]); |
| 7028 checkDimensionValue(o[1]); | 7028 checkDimensionValue(o[1]); |
| 7029 } | 7029 } |
| 7030 | 7030 |
| 7031 buildUnnamed1451() { | 7031 buildUnnamed1463() { |
| 7032 var o = new core.List<api.SortedDimension>(); | 7032 var o = new core.List<api.SortedDimension>(); |
| 7033 o.add(buildSortedDimension()); | 7033 o.add(buildSortedDimension()); |
| 7034 o.add(buildSortedDimension()); | 7034 o.add(buildSortedDimension()); |
| 7035 return o; | 7035 return o; |
| 7036 } | 7036 } |
| 7037 | 7037 |
| 7038 checkUnnamed1451(core.List<api.SortedDimension> o) { | 7038 checkUnnamed1463(core.List<api.SortedDimension> o) { |
| 7039 unittest.expect(o, unittest.hasLength(2)); | 7039 unittest.expect(o, unittest.hasLength(2)); |
| 7040 checkSortedDimension(o[0]); | 7040 checkSortedDimension(o[0]); |
| 7041 checkSortedDimension(o[1]); | 7041 checkSortedDimension(o[1]); |
| 7042 } | 7042 } |
| 7043 | 7043 |
| 7044 buildUnnamed1452() { | 7044 buildUnnamed1464() { |
| 7045 var o = new core.List<core.String>(); | 7045 var o = new core.List<core.String>(); |
| 7046 o.add("foo"); | 7046 o.add("foo"); |
| 7047 o.add("foo"); | 7047 o.add("foo"); |
| 7048 return o; | 7048 return o; |
| 7049 } | 7049 } |
| 7050 | 7050 |
| 7051 checkUnnamed1452(core.List<core.String> o) { | 7051 checkUnnamed1464(core.List<core.String> o) { |
| 7052 unittest.expect(o, unittest.hasLength(2)); | 7052 unittest.expect(o, unittest.hasLength(2)); |
| 7053 unittest.expect(o[0], unittest.equals('foo')); | 7053 unittest.expect(o[0], unittest.equals('foo')); |
| 7054 unittest.expect(o[1], unittest.equals('foo')); | 7054 unittest.expect(o[1], unittest.equals('foo')); |
| 7055 } | 7055 } |
| 7056 | 7056 |
| 7057 buildUnnamed1453() { | 7057 buildUnnamed1465() { |
| 7058 var o = new core.List<core.String>(); | 7058 var o = new core.List<core.String>(); |
| 7059 o.add("foo"); | 7059 o.add("foo"); |
| 7060 o.add("foo"); | 7060 o.add("foo"); |
| 7061 return o; | 7061 return o; |
| 7062 } | 7062 } |
| 7063 | 7063 |
| 7064 checkUnnamed1453(core.List<core.String> o) { | 7064 checkUnnamed1465(core.List<core.String> o) { |
| 7065 unittest.expect(o, unittest.hasLength(2)); | 7065 unittest.expect(o, unittest.hasLength(2)); |
| 7066 unittest.expect(o[0], unittest.equals('foo')); | 7066 unittest.expect(o[0], unittest.equals('foo')); |
| 7067 unittest.expect(o[1], unittest.equals('foo')); | 7067 unittest.expect(o[1], unittest.equals('foo')); |
| 7068 } | 7068 } |
| 7069 | 7069 |
| 7070 core.int buildCounterReportReachCriteria = 0; | 7070 core.int buildCounterReportReachCriteria = 0; |
| 7071 buildReportReachCriteria() { | 7071 buildReportReachCriteria() { |
| 7072 var o = new api.ReportReachCriteria(); | 7072 var o = new api.ReportReachCriteria(); |
| 7073 buildCounterReportReachCriteria++; | 7073 buildCounterReportReachCriteria++; |
| 7074 if (buildCounterReportReachCriteria < 3) { | 7074 if (buildCounterReportReachCriteria < 3) { |
| 7075 o.activities = buildActivities(); | 7075 o.activities = buildActivities(); |
| 7076 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 7076 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 7077 o.dateRange = buildDateRange(); | 7077 o.dateRange = buildDateRange(); |
| 7078 o.dimensionFilters = buildUnnamed1450(); | 7078 o.dimensionFilters = buildUnnamed1462(); |
| 7079 o.dimensions = buildUnnamed1451(); | 7079 o.dimensions = buildUnnamed1463(); |
| 7080 o.enableAllDimensionCombinations = true; | 7080 o.enableAllDimensionCombinations = true; |
| 7081 o.metricNames = buildUnnamed1452(); | 7081 o.metricNames = buildUnnamed1464(); |
| 7082 o.reachByFrequencyMetricNames = buildUnnamed1453(); | 7082 o.reachByFrequencyMetricNames = buildUnnamed1465(); |
| 7083 } | 7083 } |
| 7084 buildCounterReportReachCriteria--; | 7084 buildCounterReportReachCriteria--; |
| 7085 return o; | 7085 return o; |
| 7086 } | 7086 } |
| 7087 | 7087 |
| 7088 checkReportReachCriteria(api.ReportReachCriteria o) { | 7088 checkReportReachCriteria(api.ReportReachCriteria o) { |
| 7089 buildCounterReportReachCriteria++; | 7089 buildCounterReportReachCriteria++; |
| 7090 if (buildCounterReportReachCriteria < 3) { | 7090 if (buildCounterReportReachCriteria < 3) { |
| 7091 checkActivities(o.activities); | 7091 checkActivities(o.activities); |
| 7092 checkCustomRichMediaEvents(o.customRichMediaEvents); | 7092 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 7093 checkDateRange(o.dateRange); | 7093 checkDateRange(o.dateRange); |
| 7094 checkUnnamed1450(o.dimensionFilters); | 7094 checkUnnamed1462(o.dimensionFilters); |
| 7095 checkUnnamed1451(o.dimensions); | 7095 checkUnnamed1463(o.dimensions); |
| 7096 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); | 7096 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); |
| 7097 checkUnnamed1452(o.metricNames); | 7097 checkUnnamed1464(o.metricNames); |
| 7098 checkUnnamed1453(o.reachByFrequencyMetricNames); | 7098 checkUnnamed1465(o.reachByFrequencyMetricNames); |
| 7099 } | 7099 } |
| 7100 buildCounterReportReachCriteria--; | 7100 buildCounterReportReachCriteria--; |
| 7101 } | 7101 } |
| 7102 | 7102 |
| 7103 buildUnnamed1454() { | 7103 buildUnnamed1466() { |
| 7104 var o = new core.List<core.String>(); | 7104 var o = new core.List<core.String>(); |
| 7105 o.add("foo"); | 7105 o.add("foo"); |
| 7106 o.add("foo"); | 7106 o.add("foo"); |
| 7107 return o; | 7107 return o; |
| 7108 } | 7108 } |
| 7109 | 7109 |
| 7110 checkUnnamed1454(core.List<core.String> o) { | 7110 checkUnnamed1466(core.List<core.String> o) { |
| 7111 unittest.expect(o, unittest.hasLength(2)); | 7111 unittest.expect(o, unittest.hasLength(2)); |
| 7112 unittest.expect(o[0], unittest.equals('foo')); | 7112 unittest.expect(o[0], unittest.equals('foo')); |
| 7113 unittest.expect(o[1], unittest.equals('foo')); | 7113 unittest.expect(o[1], unittest.equals('foo')); |
| 7114 } | 7114 } |
| 7115 | 7115 |
| 7116 core.int buildCounterReportSchedule = 0; | 7116 core.int buildCounterReportSchedule = 0; |
| 7117 buildReportSchedule() { | 7117 buildReportSchedule() { |
| 7118 var o = new api.ReportSchedule(); | 7118 var o = new api.ReportSchedule(); |
| 7119 buildCounterReportSchedule++; | 7119 buildCounterReportSchedule++; |
| 7120 if (buildCounterReportSchedule < 3) { | 7120 if (buildCounterReportSchedule < 3) { |
| 7121 o.active = true; | 7121 o.active = true; |
| 7122 o.every = 42; | 7122 o.every = 42; |
| 7123 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 7123 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 7124 o.repeats = "foo"; | 7124 o.repeats = "foo"; |
| 7125 o.repeatsOnWeekDays = buildUnnamed1454(); | 7125 o.repeatsOnWeekDays = buildUnnamed1466(); |
| 7126 o.runsOnDayOfMonth = "foo"; | 7126 o.runsOnDayOfMonth = "foo"; |
| 7127 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 7127 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 7128 } | 7128 } |
| 7129 buildCounterReportSchedule--; | 7129 buildCounterReportSchedule--; |
| 7130 return o; | 7130 return o; |
| 7131 } | 7131 } |
| 7132 | 7132 |
| 7133 checkReportSchedule(api.ReportSchedule o) { | 7133 checkReportSchedule(api.ReportSchedule o) { |
| 7134 buildCounterReportSchedule++; | 7134 buildCounterReportSchedule++; |
| 7135 if (buildCounterReportSchedule < 3) { | 7135 if (buildCounterReportSchedule < 3) { |
| 7136 unittest.expect(o.active, unittest.isTrue); | 7136 unittest.expect(o.active, unittest.isTrue); |
| 7137 unittest.expect(o.every, unittest.equals(42)); | 7137 unittest.expect(o.every, unittest.equals(42)); |
| 7138 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); | 7138 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); |
| 7139 unittest.expect(o.repeats, unittest.equals('foo')); | 7139 unittest.expect(o.repeats, unittest.equals('foo')); |
| 7140 checkUnnamed1454(o.repeatsOnWeekDays); | 7140 checkUnnamed1466(o.repeatsOnWeekDays); |
| 7141 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); | 7141 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); |
| 7142 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 7142 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 7143 } | 7143 } |
| 7144 buildCounterReportSchedule--; | 7144 buildCounterReportSchedule--; |
| 7145 } | 7145 } |
| 7146 | 7146 |
| 7147 core.int buildCounterReport = 0; | 7147 core.int buildCounterReport = 0; |
| 7148 buildReport() { | 7148 buildReport() { |
| 7149 var o = new api.Report(); | 7149 var o = new api.Report(); |
| 7150 buildCounterReport++; | 7150 buildCounterReport++; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7190 unittest.expect(o.ownerProfileId, unittest.equals('foo')); | 7190 unittest.expect(o.ownerProfileId, unittest.equals('foo')); |
| 7191 checkReportPathToConversionCriteria(o.pathToConversionCriteria); | 7191 checkReportPathToConversionCriteria(o.pathToConversionCriteria); |
| 7192 checkReportReachCriteria(o.reachCriteria); | 7192 checkReportReachCriteria(o.reachCriteria); |
| 7193 checkReportSchedule(o.schedule); | 7193 checkReportSchedule(o.schedule); |
| 7194 unittest.expect(o.subAccountId, unittest.equals('foo')); | 7194 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 7195 unittest.expect(o.type, unittest.equals('foo')); | 7195 unittest.expect(o.type, unittest.equals('foo')); |
| 7196 } | 7196 } |
| 7197 buildCounterReport--; | 7197 buildCounterReport--; |
| 7198 } | 7198 } |
| 7199 | 7199 |
| 7200 buildUnnamed1455() { | 7200 buildUnnamed1467() { |
| 7201 var o = new core.List<api.Dimension>(); | 7201 var o = new core.List<api.Dimension>(); |
| 7202 o.add(buildDimension()); | 7202 o.add(buildDimension()); |
| 7203 o.add(buildDimension()); | 7203 o.add(buildDimension()); |
| 7204 return o; | 7204 return o; |
| 7205 } | 7205 } |
| 7206 | 7206 |
| 7207 checkUnnamed1455(core.List<api.Dimension> o) { | 7207 checkUnnamed1467(core.List<api.Dimension> o) { |
| 7208 unittest.expect(o, unittest.hasLength(2)); | 7208 unittest.expect(o, unittest.hasLength(2)); |
| 7209 checkDimension(o[0]); | 7209 checkDimension(o[0]); |
| 7210 checkDimension(o[1]); | 7210 checkDimension(o[1]); |
| 7211 } | 7211 } |
| 7212 | 7212 |
| 7213 buildUnnamed1456() { | 7213 buildUnnamed1468() { |
| 7214 var o = new core.List<api.Dimension>(); | 7214 var o = new core.List<api.Dimension>(); |
| 7215 o.add(buildDimension()); | 7215 o.add(buildDimension()); |
| 7216 o.add(buildDimension()); | 7216 o.add(buildDimension()); |
| 7217 return o; | 7217 return o; |
| 7218 } | 7218 } |
| 7219 | 7219 |
| 7220 checkUnnamed1456(core.List<api.Dimension> o) { | 7220 checkUnnamed1468(core.List<api.Dimension> o) { |
| 7221 unittest.expect(o, unittest.hasLength(2)); | 7221 unittest.expect(o, unittest.hasLength(2)); |
| 7222 checkDimension(o[0]); | 7222 checkDimension(o[0]); |
| 7223 checkDimension(o[1]); | 7223 checkDimension(o[1]); |
| 7224 } | 7224 } |
| 7225 | 7225 |
| 7226 buildUnnamed1457() { | 7226 buildUnnamed1469() { |
| 7227 var o = new core.List<api.Metric>(); | 7227 var o = new core.List<api.Metric>(); |
| 7228 o.add(buildMetric()); | 7228 o.add(buildMetric()); |
| 7229 o.add(buildMetric()); | 7229 o.add(buildMetric()); |
| 7230 return o; | 7230 return o; |
| 7231 } | 7231 } |
| 7232 | 7232 |
| 7233 checkUnnamed1457(core.List<api.Metric> o) { | 7233 checkUnnamed1469(core.List<api.Metric> o) { |
| 7234 unittest.expect(o, unittest.hasLength(2)); | 7234 unittest.expect(o, unittest.hasLength(2)); |
| 7235 checkMetric(o[0]); | 7235 checkMetric(o[0]); |
| 7236 checkMetric(o[1]); | 7236 checkMetric(o[1]); |
| 7237 } | 7237 } |
| 7238 | 7238 |
| 7239 buildUnnamed1458() { | 7239 buildUnnamed1470() { |
| 7240 var o = new core.List<api.Metric>(); | 7240 var o = new core.List<api.Metric>(); |
| 7241 o.add(buildMetric()); | 7241 o.add(buildMetric()); |
| 7242 o.add(buildMetric()); | 7242 o.add(buildMetric()); |
| 7243 return o; | 7243 return o; |
| 7244 } | 7244 } |
| 7245 | 7245 |
| 7246 checkUnnamed1458(core.List<api.Metric> o) { | 7246 checkUnnamed1470(core.List<api.Metric> o) { |
| 7247 unittest.expect(o, unittest.hasLength(2)); | 7247 unittest.expect(o, unittest.hasLength(2)); |
| 7248 checkMetric(o[0]); | 7248 checkMetric(o[0]); |
| 7249 checkMetric(o[1]); | 7249 checkMetric(o[1]); |
| 7250 } | 7250 } |
| 7251 | 7251 |
| 7252 core.int buildCounterReportCompatibleFields = 0; | 7252 core.int buildCounterReportCompatibleFields = 0; |
| 7253 buildReportCompatibleFields() { | 7253 buildReportCompatibleFields() { |
| 7254 var o = new api.ReportCompatibleFields(); | 7254 var o = new api.ReportCompatibleFields(); |
| 7255 buildCounterReportCompatibleFields++; | 7255 buildCounterReportCompatibleFields++; |
| 7256 if (buildCounterReportCompatibleFields < 3) { | 7256 if (buildCounterReportCompatibleFields < 3) { |
| 7257 o.dimensionFilters = buildUnnamed1455(); | 7257 o.dimensionFilters = buildUnnamed1467(); |
| 7258 o.dimensions = buildUnnamed1456(); | 7258 o.dimensions = buildUnnamed1468(); |
| 7259 o.kind = "foo"; | 7259 o.kind = "foo"; |
| 7260 o.metrics = buildUnnamed1457(); | 7260 o.metrics = buildUnnamed1469(); |
| 7261 o.pivotedActivityMetrics = buildUnnamed1458(); | 7261 o.pivotedActivityMetrics = buildUnnamed1470(); |
| 7262 } | 7262 } |
| 7263 buildCounterReportCompatibleFields--; | 7263 buildCounterReportCompatibleFields--; |
| 7264 return o; | 7264 return o; |
| 7265 } | 7265 } |
| 7266 | 7266 |
| 7267 checkReportCompatibleFields(api.ReportCompatibleFields o) { | 7267 checkReportCompatibleFields(api.ReportCompatibleFields o) { |
| 7268 buildCounterReportCompatibleFields++; | 7268 buildCounterReportCompatibleFields++; |
| 7269 if (buildCounterReportCompatibleFields < 3) { | 7269 if (buildCounterReportCompatibleFields < 3) { |
| 7270 checkUnnamed1455(o.dimensionFilters); | 7270 checkUnnamed1467(o.dimensionFilters); |
| 7271 checkUnnamed1456(o.dimensions); | 7271 checkUnnamed1468(o.dimensions); |
| 7272 unittest.expect(o.kind, unittest.equals('foo')); | 7272 unittest.expect(o.kind, unittest.equals('foo')); |
| 7273 checkUnnamed1457(o.metrics); | 7273 checkUnnamed1469(o.metrics); |
| 7274 checkUnnamed1458(o.pivotedActivityMetrics); | 7274 checkUnnamed1470(o.pivotedActivityMetrics); |
| 7275 } | 7275 } |
| 7276 buildCounterReportCompatibleFields--; | 7276 buildCounterReportCompatibleFields--; |
| 7277 } | 7277 } |
| 7278 | 7278 |
| 7279 buildUnnamed1459() { | 7279 buildUnnamed1471() { |
| 7280 var o = new core.List<api.Report>(); | 7280 var o = new core.List<api.Report>(); |
| 7281 o.add(buildReport()); | 7281 o.add(buildReport()); |
| 7282 o.add(buildReport()); | 7282 o.add(buildReport()); |
| 7283 return o; | 7283 return o; |
| 7284 } | 7284 } |
| 7285 | 7285 |
| 7286 checkUnnamed1459(core.List<api.Report> o) { | 7286 checkUnnamed1471(core.List<api.Report> o) { |
| 7287 unittest.expect(o, unittest.hasLength(2)); | 7287 unittest.expect(o, unittest.hasLength(2)); |
| 7288 checkReport(o[0]); | 7288 checkReport(o[0]); |
| 7289 checkReport(o[1]); | 7289 checkReport(o[1]); |
| 7290 } | 7290 } |
| 7291 | 7291 |
| 7292 core.int buildCounterReportList = 0; | 7292 core.int buildCounterReportList = 0; |
| 7293 buildReportList() { | 7293 buildReportList() { |
| 7294 var o = new api.ReportList(); | 7294 var o = new api.ReportList(); |
| 7295 buildCounterReportList++; | 7295 buildCounterReportList++; |
| 7296 if (buildCounterReportList < 3) { | 7296 if (buildCounterReportList < 3) { |
| 7297 o.etag = "foo"; | 7297 o.etag = "foo"; |
| 7298 o.items = buildUnnamed1459(); | 7298 o.items = buildUnnamed1471(); |
| 7299 o.kind = "foo"; | 7299 o.kind = "foo"; |
| 7300 o.nextPageToken = "foo"; | 7300 o.nextPageToken = "foo"; |
| 7301 } | 7301 } |
| 7302 buildCounterReportList--; | 7302 buildCounterReportList--; |
| 7303 return o; | 7303 return o; |
| 7304 } | 7304 } |
| 7305 | 7305 |
| 7306 checkReportList(api.ReportList o) { | 7306 checkReportList(api.ReportList o) { |
| 7307 buildCounterReportList++; | 7307 buildCounterReportList++; |
| 7308 if (buildCounterReportList < 3) { | 7308 if (buildCounterReportList < 3) { |
| 7309 unittest.expect(o.etag, unittest.equals('foo')); | 7309 unittest.expect(o.etag, unittest.equals('foo')); |
| 7310 checkUnnamed1459(o.items); | 7310 checkUnnamed1471(o.items); |
| 7311 unittest.expect(o.kind, unittest.equals('foo')); | 7311 unittest.expect(o.kind, unittest.equals('foo')); |
| 7312 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7312 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7313 } | 7313 } |
| 7314 buildCounterReportList--; | 7314 buildCounterReportList--; |
| 7315 } | 7315 } |
| 7316 | 7316 |
| 7317 core.int buildCounterReportsConfiguration = 0; | 7317 core.int buildCounterReportsConfiguration = 0; |
| 7318 buildReportsConfiguration() { | 7318 buildReportsConfiguration() { |
| 7319 var o = new api.ReportsConfiguration(); | 7319 var o = new api.ReportsConfiguration(); |
| 7320 buildCounterReportsConfiguration++; | 7320 buildCounterReportsConfiguration++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7353 checkRichMediaExitOverride(api.RichMediaExitOverride o) { | 7353 checkRichMediaExitOverride(api.RichMediaExitOverride o) { |
| 7354 buildCounterRichMediaExitOverride++; | 7354 buildCounterRichMediaExitOverride++; |
| 7355 if (buildCounterRichMediaExitOverride < 3) { | 7355 if (buildCounterRichMediaExitOverride < 3) { |
| 7356 unittest.expect(o.customExitUrl, unittest.equals('foo')); | 7356 unittest.expect(o.customExitUrl, unittest.equals('foo')); |
| 7357 unittest.expect(o.exitId, unittest.equals('foo')); | 7357 unittest.expect(o.exitId, unittest.equals('foo')); |
| 7358 unittest.expect(o.useCustomExitUrl, unittest.isTrue); | 7358 unittest.expect(o.useCustomExitUrl, unittest.isTrue); |
| 7359 } | 7359 } |
| 7360 buildCounterRichMediaExitOverride--; | 7360 buildCounterRichMediaExitOverride--; |
| 7361 } | 7361 } |
| 7362 | 7362 |
| 7363 buildUnnamed1460() { | 7363 buildUnnamed1472() { |
| 7364 var o = new core.List<api.SiteContact>(); | 7364 var o = new core.List<api.SiteContact>(); |
| 7365 o.add(buildSiteContact()); | 7365 o.add(buildSiteContact()); |
| 7366 o.add(buildSiteContact()); | 7366 o.add(buildSiteContact()); |
| 7367 return o; | 7367 return o; |
| 7368 } | 7368 } |
| 7369 | 7369 |
| 7370 checkUnnamed1460(core.List<api.SiteContact> o) { | 7370 checkUnnamed1472(core.List<api.SiteContact> o) { |
| 7371 unittest.expect(o, unittest.hasLength(2)); | 7371 unittest.expect(o, unittest.hasLength(2)); |
| 7372 checkSiteContact(o[0]); | 7372 checkSiteContact(o[0]); |
| 7373 checkSiteContact(o[1]); | 7373 checkSiteContact(o[1]); |
| 7374 } | 7374 } |
| 7375 | 7375 |
| 7376 core.int buildCounterSite = 0; | 7376 core.int buildCounterSite = 0; |
| 7377 buildSite() { | 7377 buildSite() { |
| 7378 var o = new api.Site(); | 7378 var o = new api.Site(); |
| 7379 buildCounterSite++; | 7379 buildCounterSite++; |
| 7380 if (buildCounterSite < 3) { | 7380 if (buildCounterSite < 3) { |
| 7381 o.accountId = "foo"; | 7381 o.accountId = "foo"; |
| 7382 o.approved = true; | 7382 o.approved = true; |
| 7383 o.directorySiteId = "foo"; | 7383 o.directorySiteId = "foo"; |
| 7384 o.directorySiteIdDimensionValue = buildDimensionValue(); | 7384 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 7385 o.id = "foo"; | 7385 o.id = "foo"; |
| 7386 o.idDimensionValue = buildDimensionValue(); | 7386 o.idDimensionValue = buildDimensionValue(); |
| 7387 o.keyName = "foo"; | 7387 o.keyName = "foo"; |
| 7388 o.kind = "foo"; | 7388 o.kind = "foo"; |
| 7389 o.name = "foo"; | 7389 o.name = "foo"; |
| 7390 o.siteContacts = buildUnnamed1460(); | 7390 o.siteContacts = buildUnnamed1472(); |
| 7391 o.siteSettings = buildSiteSettings(); | 7391 o.siteSettings = buildSiteSettings(); |
| 7392 o.subaccountId = "foo"; | 7392 o.subaccountId = "foo"; |
| 7393 } | 7393 } |
| 7394 buildCounterSite--; | 7394 buildCounterSite--; |
| 7395 return o; | 7395 return o; |
| 7396 } | 7396 } |
| 7397 | 7397 |
| 7398 checkSite(api.Site o) { | 7398 checkSite(api.Site o) { |
| 7399 buildCounterSite++; | 7399 buildCounterSite++; |
| 7400 if (buildCounterSite < 3) { | 7400 if (buildCounterSite < 3) { |
| 7401 unittest.expect(o.accountId, unittest.equals('foo')); | 7401 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7402 unittest.expect(o.approved, unittest.isTrue); | 7402 unittest.expect(o.approved, unittest.isTrue); |
| 7403 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 7403 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 7404 checkDimensionValue(o.directorySiteIdDimensionValue); | 7404 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 7405 unittest.expect(o.id, unittest.equals('foo')); | 7405 unittest.expect(o.id, unittest.equals('foo')); |
| 7406 checkDimensionValue(o.idDimensionValue); | 7406 checkDimensionValue(o.idDimensionValue); |
| 7407 unittest.expect(o.keyName, unittest.equals('foo')); | 7407 unittest.expect(o.keyName, unittest.equals('foo')); |
| 7408 unittest.expect(o.kind, unittest.equals('foo')); | 7408 unittest.expect(o.kind, unittest.equals('foo')); |
| 7409 unittest.expect(o.name, unittest.equals('foo')); | 7409 unittest.expect(o.name, unittest.equals('foo')); |
| 7410 checkUnnamed1460(o.siteContacts); | 7410 checkUnnamed1472(o.siteContacts); |
| 7411 checkSiteSettings(o.siteSettings); | 7411 checkSiteSettings(o.siteSettings); |
| 7412 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7412 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7413 } | 7413 } |
| 7414 buildCounterSite--; | 7414 buildCounterSite--; |
| 7415 } | 7415 } |
| 7416 | 7416 |
| 7417 core.int buildCounterSiteContact = 0; | 7417 core.int buildCounterSiteContact = 0; |
| 7418 buildSiteContact() { | 7418 buildSiteContact() { |
| 7419 var o = new api.SiteContact(); | 7419 var o = new api.SiteContact(); |
| 7420 buildCounterSiteContact++; | 7420 buildCounterSiteContact++; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7471 checkCreativeSettings(o.creativeSettings); | 7471 checkCreativeSettings(o.creativeSettings); |
| 7472 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); | 7472 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); |
| 7473 unittest.expect(o.disableNewCookie, unittest.isTrue); | 7473 unittest.expect(o.disableNewCookie, unittest.isTrue); |
| 7474 checkLookbackConfiguration(o.lookbackConfiguration); | 7474 checkLookbackConfiguration(o.lookbackConfiguration); |
| 7475 checkTagSetting(o.tagSetting); | 7475 checkTagSetting(o.tagSetting); |
| 7476 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 7476 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 7477 } | 7477 } |
| 7478 buildCounterSiteSettings--; | 7478 buildCounterSiteSettings--; |
| 7479 } | 7479 } |
| 7480 | 7480 |
| 7481 buildUnnamed1461() { | 7481 buildUnnamed1473() { |
| 7482 var o = new core.List<api.Site>(); | 7482 var o = new core.List<api.Site>(); |
| 7483 o.add(buildSite()); | 7483 o.add(buildSite()); |
| 7484 o.add(buildSite()); | 7484 o.add(buildSite()); |
| 7485 return o; | 7485 return o; |
| 7486 } | 7486 } |
| 7487 | 7487 |
| 7488 checkUnnamed1461(core.List<api.Site> o) { | 7488 checkUnnamed1473(core.List<api.Site> o) { |
| 7489 unittest.expect(o, unittest.hasLength(2)); | 7489 unittest.expect(o, unittest.hasLength(2)); |
| 7490 checkSite(o[0]); | 7490 checkSite(o[0]); |
| 7491 checkSite(o[1]); | 7491 checkSite(o[1]); |
| 7492 } | 7492 } |
| 7493 | 7493 |
| 7494 core.int buildCounterSitesListResponse = 0; | 7494 core.int buildCounterSitesListResponse = 0; |
| 7495 buildSitesListResponse() { | 7495 buildSitesListResponse() { |
| 7496 var o = new api.SitesListResponse(); | 7496 var o = new api.SitesListResponse(); |
| 7497 buildCounterSitesListResponse++; | 7497 buildCounterSitesListResponse++; |
| 7498 if (buildCounterSitesListResponse < 3) { | 7498 if (buildCounterSitesListResponse < 3) { |
| 7499 o.kind = "foo"; | 7499 o.kind = "foo"; |
| 7500 o.nextPageToken = "foo"; | 7500 o.nextPageToken = "foo"; |
| 7501 o.sites = buildUnnamed1461(); | 7501 o.sites = buildUnnamed1473(); |
| 7502 } | 7502 } |
| 7503 buildCounterSitesListResponse--; | 7503 buildCounterSitesListResponse--; |
| 7504 return o; | 7504 return o; |
| 7505 } | 7505 } |
| 7506 | 7506 |
| 7507 checkSitesListResponse(api.SitesListResponse o) { | 7507 checkSitesListResponse(api.SitesListResponse o) { |
| 7508 buildCounterSitesListResponse++; | 7508 buildCounterSitesListResponse++; |
| 7509 if (buildCounterSitesListResponse < 3) { | 7509 if (buildCounterSitesListResponse < 3) { |
| 7510 unittest.expect(o.kind, unittest.equals('foo')); | 7510 unittest.expect(o.kind, unittest.equals('foo')); |
| 7511 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7511 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7512 checkUnnamed1461(o.sites); | 7512 checkUnnamed1473(o.sites); |
| 7513 } | 7513 } |
| 7514 buildCounterSitesListResponse--; | 7514 buildCounterSitesListResponse--; |
| 7515 } | 7515 } |
| 7516 | 7516 |
| 7517 core.int buildCounterSize = 0; | 7517 core.int buildCounterSize = 0; |
| 7518 buildSize() { | 7518 buildSize() { |
| 7519 var o = new api.Size(); | 7519 var o = new api.Size(); |
| 7520 buildCounterSize++; | 7520 buildCounterSize++; |
| 7521 if (buildCounterSize < 3) { | 7521 if (buildCounterSize < 3) { |
| 7522 o.height = 42; | 7522 o.height = 42; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 7534 if (buildCounterSize < 3) { | 7534 if (buildCounterSize < 3) { |
| 7535 unittest.expect(o.height, unittest.equals(42)); | 7535 unittest.expect(o.height, unittest.equals(42)); |
| 7536 unittest.expect(o.iab, unittest.isTrue); | 7536 unittest.expect(o.iab, unittest.isTrue); |
| 7537 unittest.expect(o.id, unittest.equals('foo')); | 7537 unittest.expect(o.id, unittest.equals('foo')); |
| 7538 unittest.expect(o.kind, unittest.equals('foo')); | 7538 unittest.expect(o.kind, unittest.equals('foo')); |
| 7539 unittest.expect(o.width, unittest.equals(42)); | 7539 unittest.expect(o.width, unittest.equals(42)); |
| 7540 } | 7540 } |
| 7541 buildCounterSize--; | 7541 buildCounterSize--; |
| 7542 } | 7542 } |
| 7543 | 7543 |
| 7544 buildUnnamed1462() { | 7544 buildUnnamed1474() { |
| 7545 var o = new core.List<api.Size>(); | 7545 var o = new core.List<api.Size>(); |
| 7546 o.add(buildSize()); | 7546 o.add(buildSize()); |
| 7547 o.add(buildSize()); | 7547 o.add(buildSize()); |
| 7548 return o; | 7548 return o; |
| 7549 } | 7549 } |
| 7550 | 7550 |
| 7551 checkUnnamed1462(core.List<api.Size> o) { | 7551 checkUnnamed1474(core.List<api.Size> o) { |
| 7552 unittest.expect(o, unittest.hasLength(2)); | 7552 unittest.expect(o, unittest.hasLength(2)); |
| 7553 checkSize(o[0]); | 7553 checkSize(o[0]); |
| 7554 checkSize(o[1]); | 7554 checkSize(o[1]); |
| 7555 } | 7555 } |
| 7556 | 7556 |
| 7557 core.int buildCounterSizesListResponse = 0; | 7557 core.int buildCounterSizesListResponse = 0; |
| 7558 buildSizesListResponse() { | 7558 buildSizesListResponse() { |
| 7559 var o = new api.SizesListResponse(); | 7559 var o = new api.SizesListResponse(); |
| 7560 buildCounterSizesListResponse++; | 7560 buildCounterSizesListResponse++; |
| 7561 if (buildCounterSizesListResponse < 3) { | 7561 if (buildCounterSizesListResponse < 3) { |
| 7562 o.kind = "foo"; | 7562 o.kind = "foo"; |
| 7563 o.sizes = buildUnnamed1462(); | 7563 o.sizes = buildUnnamed1474(); |
| 7564 } | 7564 } |
| 7565 buildCounterSizesListResponse--; | 7565 buildCounterSizesListResponse--; |
| 7566 return o; | 7566 return o; |
| 7567 } | 7567 } |
| 7568 | 7568 |
| 7569 checkSizesListResponse(api.SizesListResponse o) { | 7569 checkSizesListResponse(api.SizesListResponse o) { |
| 7570 buildCounterSizesListResponse++; | 7570 buildCounterSizesListResponse++; |
| 7571 if (buildCounterSizesListResponse < 3) { | 7571 if (buildCounterSizesListResponse < 3) { |
| 7572 unittest.expect(o.kind, unittest.equals('foo')); | 7572 unittest.expect(o.kind, unittest.equals('foo')); |
| 7573 checkUnnamed1462(o.sizes); | 7573 checkUnnamed1474(o.sizes); |
| 7574 } | 7574 } |
| 7575 buildCounterSizesListResponse--; | 7575 buildCounterSizesListResponse--; |
| 7576 } | 7576 } |
| 7577 | 7577 |
| 7578 core.int buildCounterSortedDimension = 0; | 7578 core.int buildCounterSortedDimension = 0; |
| 7579 buildSortedDimension() { | 7579 buildSortedDimension() { |
| 7580 var o = new api.SortedDimension(); | 7580 var o = new api.SortedDimension(); |
| 7581 buildCounterSortedDimension++; | 7581 buildCounterSortedDimension++; |
| 7582 if (buildCounterSortedDimension < 3) { | 7582 if (buildCounterSortedDimension < 3) { |
| 7583 o.kind = "foo"; | 7583 o.kind = "foo"; |
| 7584 o.name = "foo"; | 7584 o.name = "foo"; |
| 7585 o.sortOrder = "foo"; | 7585 o.sortOrder = "foo"; |
| 7586 } | 7586 } |
| 7587 buildCounterSortedDimension--; | 7587 buildCounterSortedDimension--; |
| 7588 return o; | 7588 return o; |
| 7589 } | 7589 } |
| 7590 | 7590 |
| 7591 checkSortedDimension(api.SortedDimension o) { | 7591 checkSortedDimension(api.SortedDimension o) { |
| 7592 buildCounterSortedDimension++; | 7592 buildCounterSortedDimension++; |
| 7593 if (buildCounterSortedDimension < 3) { | 7593 if (buildCounterSortedDimension < 3) { |
| 7594 unittest.expect(o.kind, unittest.equals('foo')); | 7594 unittest.expect(o.kind, unittest.equals('foo')); |
| 7595 unittest.expect(o.name, unittest.equals('foo')); | 7595 unittest.expect(o.name, unittest.equals('foo')); |
| 7596 unittest.expect(o.sortOrder, unittest.equals('foo')); | 7596 unittest.expect(o.sortOrder, unittest.equals('foo')); |
| 7597 } | 7597 } |
| 7598 buildCounterSortedDimension--; | 7598 buildCounterSortedDimension--; |
| 7599 } | 7599 } |
| 7600 | 7600 |
| 7601 buildUnnamed1463() { | 7601 buildUnnamed1475() { |
| 7602 var o = new core.List<core.String>(); | 7602 var o = new core.List<core.String>(); |
| 7603 o.add("foo"); | 7603 o.add("foo"); |
| 7604 o.add("foo"); | 7604 o.add("foo"); |
| 7605 return o; | 7605 return o; |
| 7606 } | 7606 } |
| 7607 | 7607 |
| 7608 checkUnnamed1463(core.List<core.String> o) { | 7608 checkUnnamed1475(core.List<core.String> o) { |
| 7609 unittest.expect(o, unittest.hasLength(2)); | 7609 unittest.expect(o, unittest.hasLength(2)); |
| 7610 unittest.expect(o[0], unittest.equals('foo')); | 7610 unittest.expect(o[0], unittest.equals('foo')); |
| 7611 unittest.expect(o[1], unittest.equals('foo')); | 7611 unittest.expect(o[1], unittest.equals('foo')); |
| 7612 } | 7612 } |
| 7613 | 7613 |
| 7614 core.int buildCounterSubaccount = 0; | 7614 core.int buildCounterSubaccount = 0; |
| 7615 buildSubaccount() { | 7615 buildSubaccount() { |
| 7616 var o = new api.Subaccount(); | 7616 var o = new api.Subaccount(); |
| 7617 buildCounterSubaccount++; | 7617 buildCounterSubaccount++; |
| 7618 if (buildCounterSubaccount < 3) { | 7618 if (buildCounterSubaccount < 3) { |
| 7619 o.accountId = "foo"; | 7619 o.accountId = "foo"; |
| 7620 o.availablePermissionIds = buildUnnamed1463(); | 7620 o.availablePermissionIds = buildUnnamed1475(); |
| 7621 o.id = "foo"; | 7621 o.id = "foo"; |
| 7622 o.kind = "foo"; | 7622 o.kind = "foo"; |
| 7623 o.name = "foo"; | 7623 o.name = "foo"; |
| 7624 } | 7624 } |
| 7625 buildCounterSubaccount--; | 7625 buildCounterSubaccount--; |
| 7626 return o; | 7626 return o; |
| 7627 } | 7627 } |
| 7628 | 7628 |
| 7629 checkSubaccount(api.Subaccount o) { | 7629 checkSubaccount(api.Subaccount o) { |
| 7630 buildCounterSubaccount++; | 7630 buildCounterSubaccount++; |
| 7631 if (buildCounterSubaccount < 3) { | 7631 if (buildCounterSubaccount < 3) { |
| 7632 unittest.expect(o.accountId, unittest.equals('foo')); | 7632 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7633 checkUnnamed1463(o.availablePermissionIds); | 7633 checkUnnamed1475(o.availablePermissionIds); |
| 7634 unittest.expect(o.id, unittest.equals('foo')); | 7634 unittest.expect(o.id, unittest.equals('foo')); |
| 7635 unittest.expect(o.kind, unittest.equals('foo')); | 7635 unittest.expect(o.kind, unittest.equals('foo')); |
| 7636 unittest.expect(o.name, unittest.equals('foo')); | 7636 unittest.expect(o.name, unittest.equals('foo')); |
| 7637 } | 7637 } |
| 7638 buildCounterSubaccount--; | 7638 buildCounterSubaccount--; |
| 7639 } | 7639 } |
| 7640 | 7640 |
| 7641 buildUnnamed1464() { | 7641 buildUnnamed1476() { |
| 7642 var o = new core.List<api.Subaccount>(); | 7642 var o = new core.List<api.Subaccount>(); |
| 7643 o.add(buildSubaccount()); | 7643 o.add(buildSubaccount()); |
| 7644 o.add(buildSubaccount()); | 7644 o.add(buildSubaccount()); |
| 7645 return o; | 7645 return o; |
| 7646 } | 7646 } |
| 7647 | 7647 |
| 7648 checkUnnamed1464(core.List<api.Subaccount> o) { | 7648 checkUnnamed1476(core.List<api.Subaccount> o) { |
| 7649 unittest.expect(o, unittest.hasLength(2)); | 7649 unittest.expect(o, unittest.hasLength(2)); |
| 7650 checkSubaccount(o[0]); | 7650 checkSubaccount(o[0]); |
| 7651 checkSubaccount(o[1]); | 7651 checkSubaccount(o[1]); |
| 7652 } | 7652 } |
| 7653 | 7653 |
| 7654 core.int buildCounterSubaccountsListResponse = 0; | 7654 core.int buildCounterSubaccountsListResponse = 0; |
| 7655 buildSubaccountsListResponse() { | 7655 buildSubaccountsListResponse() { |
| 7656 var o = new api.SubaccountsListResponse(); | 7656 var o = new api.SubaccountsListResponse(); |
| 7657 buildCounterSubaccountsListResponse++; | 7657 buildCounterSubaccountsListResponse++; |
| 7658 if (buildCounterSubaccountsListResponse < 3) { | 7658 if (buildCounterSubaccountsListResponse < 3) { |
| 7659 o.kind = "foo"; | 7659 o.kind = "foo"; |
| 7660 o.nextPageToken = "foo"; | 7660 o.nextPageToken = "foo"; |
| 7661 o.subaccounts = buildUnnamed1464(); | 7661 o.subaccounts = buildUnnamed1476(); |
| 7662 } | 7662 } |
| 7663 buildCounterSubaccountsListResponse--; | 7663 buildCounterSubaccountsListResponse--; |
| 7664 return o; | 7664 return o; |
| 7665 } | 7665 } |
| 7666 | 7666 |
| 7667 checkSubaccountsListResponse(api.SubaccountsListResponse o) { | 7667 checkSubaccountsListResponse(api.SubaccountsListResponse o) { |
| 7668 buildCounterSubaccountsListResponse++; | 7668 buildCounterSubaccountsListResponse++; |
| 7669 if (buildCounterSubaccountsListResponse < 3) { | 7669 if (buildCounterSubaccountsListResponse < 3) { |
| 7670 unittest.expect(o.kind, unittest.equals('foo')); | 7670 unittest.expect(o.kind, unittest.equals('foo')); |
| 7671 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7671 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7672 checkUnnamed1464(o.subaccounts); | 7672 checkUnnamed1476(o.subaccounts); |
| 7673 } | 7673 } |
| 7674 buildCounterSubaccountsListResponse--; | 7674 buildCounterSubaccountsListResponse--; |
| 7675 } | 7675 } |
| 7676 | 7676 |
| 7677 core.int buildCounterTagData = 0; | 7677 core.int buildCounterTagData = 0; |
| 7678 buildTagData() { | 7678 buildTagData() { |
| 7679 var o = new api.TagData(); | 7679 var o = new api.TagData(); |
| 7680 buildCounterTagData++; | 7680 buildCounterTagData++; |
| 7681 if (buildCounterTagData < 3) { | 7681 if (buildCounterTagData < 3) { |
| 7682 o.adId = "foo"; | 7682 o.adId = "foo"; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7802 unittest.expect(o.kind, unittest.equals('foo')); | 7802 unittest.expect(o.kind, unittest.equals('foo')); |
| 7803 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 7803 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 7804 unittest.expect(o.listSize, unittest.equals('foo')); | 7804 unittest.expect(o.listSize, unittest.equals('foo')); |
| 7805 unittest.expect(o.listSource, unittest.equals('foo')); | 7805 unittest.expect(o.listSource, unittest.equals('foo')); |
| 7806 unittest.expect(o.name, unittest.equals('foo')); | 7806 unittest.expect(o.name, unittest.equals('foo')); |
| 7807 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7807 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7808 } | 7808 } |
| 7809 buildCounterTargetableRemarketingList--; | 7809 buildCounterTargetableRemarketingList--; |
| 7810 } | 7810 } |
| 7811 | 7811 |
| 7812 buildUnnamed1465() { | 7812 buildUnnamed1477() { |
| 7813 var o = new core.List<api.TargetableRemarketingList>(); | 7813 var o = new core.List<api.TargetableRemarketingList>(); |
| 7814 o.add(buildTargetableRemarketingList()); | 7814 o.add(buildTargetableRemarketingList()); |
| 7815 o.add(buildTargetableRemarketingList()); | 7815 o.add(buildTargetableRemarketingList()); |
| 7816 return o; | 7816 return o; |
| 7817 } | 7817 } |
| 7818 | 7818 |
| 7819 checkUnnamed1465(core.List<api.TargetableRemarketingList> o) { | 7819 checkUnnamed1477(core.List<api.TargetableRemarketingList> o) { |
| 7820 unittest.expect(o, unittest.hasLength(2)); | 7820 unittest.expect(o, unittest.hasLength(2)); |
| 7821 checkTargetableRemarketingList(o[0]); | 7821 checkTargetableRemarketingList(o[0]); |
| 7822 checkTargetableRemarketingList(o[1]); | 7822 checkTargetableRemarketingList(o[1]); |
| 7823 } | 7823 } |
| 7824 | 7824 |
| 7825 core.int buildCounterTargetableRemarketingListsListResponse = 0; | 7825 core.int buildCounterTargetableRemarketingListsListResponse = 0; |
| 7826 buildTargetableRemarketingListsListResponse() { | 7826 buildTargetableRemarketingListsListResponse() { |
| 7827 var o = new api.TargetableRemarketingListsListResponse(); | 7827 var o = new api.TargetableRemarketingListsListResponse(); |
| 7828 buildCounterTargetableRemarketingListsListResponse++; | 7828 buildCounterTargetableRemarketingListsListResponse++; |
| 7829 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7829 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7830 o.kind = "foo"; | 7830 o.kind = "foo"; |
| 7831 o.nextPageToken = "foo"; | 7831 o.nextPageToken = "foo"; |
| 7832 o.targetableRemarketingLists = buildUnnamed1465(); | 7832 o.targetableRemarketingLists = buildUnnamed1477(); |
| 7833 } | 7833 } |
| 7834 buildCounterTargetableRemarketingListsListResponse--; | 7834 buildCounterTargetableRemarketingListsListResponse--; |
| 7835 return o; | 7835 return o; |
| 7836 } | 7836 } |
| 7837 | 7837 |
| 7838 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { | 7838 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { |
| 7839 buildCounterTargetableRemarketingListsListResponse++; | 7839 buildCounterTargetableRemarketingListsListResponse++; |
| 7840 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7840 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7841 unittest.expect(o.kind, unittest.equals('foo')); | 7841 unittest.expect(o.kind, unittest.equals('foo')); |
| 7842 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7842 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7843 checkUnnamed1465(o.targetableRemarketingLists); | 7843 checkUnnamed1477(o.targetableRemarketingLists); |
| 7844 } | 7844 } |
| 7845 buildCounterTargetableRemarketingListsListResponse--; | 7845 buildCounterTargetableRemarketingListsListResponse--; |
| 7846 } | 7846 } |
| 7847 | 7847 |
| 7848 buildUnnamed1466() { | 7848 buildUnnamed1478() { |
| 7849 var o = new core.List<api.Browser>(); | 7849 var o = new core.List<api.Browser>(); |
| 7850 o.add(buildBrowser()); | 7850 o.add(buildBrowser()); |
| 7851 o.add(buildBrowser()); | 7851 o.add(buildBrowser()); |
| 7852 return o; | 7852 return o; |
| 7853 } | 7853 } |
| 7854 | 7854 |
| 7855 checkUnnamed1466(core.List<api.Browser> o) { | 7855 checkUnnamed1478(core.List<api.Browser> o) { |
| 7856 unittest.expect(o, unittest.hasLength(2)); | 7856 unittest.expect(o, unittest.hasLength(2)); |
| 7857 checkBrowser(o[0]); | 7857 checkBrowser(o[0]); |
| 7858 checkBrowser(o[1]); | 7858 checkBrowser(o[1]); |
| 7859 } | 7859 } |
| 7860 | 7860 |
| 7861 buildUnnamed1467() { | 7861 buildUnnamed1479() { |
| 7862 var o = new core.List<api.ConnectionType>(); | 7862 var o = new core.List<api.ConnectionType>(); |
| 7863 o.add(buildConnectionType()); | 7863 o.add(buildConnectionType()); |
| 7864 o.add(buildConnectionType()); | 7864 o.add(buildConnectionType()); |
| 7865 return o; | 7865 return o; |
| 7866 } | 7866 } |
| 7867 | 7867 |
| 7868 checkUnnamed1467(core.List<api.ConnectionType> o) { | 7868 checkUnnamed1479(core.List<api.ConnectionType> o) { |
| 7869 unittest.expect(o, unittest.hasLength(2)); | 7869 unittest.expect(o, unittest.hasLength(2)); |
| 7870 checkConnectionType(o[0]); | 7870 checkConnectionType(o[0]); |
| 7871 checkConnectionType(o[1]); | 7871 checkConnectionType(o[1]); |
| 7872 } | 7872 } |
| 7873 | 7873 |
| 7874 buildUnnamed1468() { | 7874 buildUnnamed1480() { |
| 7875 var o = new core.List<api.MobileCarrier>(); | 7875 var o = new core.List<api.MobileCarrier>(); |
| 7876 o.add(buildMobileCarrier()); | 7876 o.add(buildMobileCarrier()); |
| 7877 o.add(buildMobileCarrier()); | 7877 o.add(buildMobileCarrier()); |
| 7878 return o; | 7878 return o; |
| 7879 } | 7879 } |
| 7880 | 7880 |
| 7881 checkUnnamed1468(core.List<api.MobileCarrier> o) { | 7881 checkUnnamed1480(core.List<api.MobileCarrier> o) { |
| 7882 unittest.expect(o, unittest.hasLength(2)); | 7882 unittest.expect(o, unittest.hasLength(2)); |
| 7883 checkMobileCarrier(o[0]); | 7883 checkMobileCarrier(o[0]); |
| 7884 checkMobileCarrier(o[1]); | 7884 checkMobileCarrier(o[1]); |
| 7885 } | 7885 } |
| 7886 | 7886 |
| 7887 buildUnnamed1469() { | 7887 buildUnnamed1481() { |
| 7888 var o = new core.List<api.OperatingSystemVersion>(); | 7888 var o = new core.List<api.OperatingSystemVersion>(); |
| 7889 o.add(buildOperatingSystemVersion()); | 7889 o.add(buildOperatingSystemVersion()); |
| 7890 o.add(buildOperatingSystemVersion()); | 7890 o.add(buildOperatingSystemVersion()); |
| 7891 return o; | 7891 return o; |
| 7892 } | 7892 } |
| 7893 | 7893 |
| 7894 checkUnnamed1469(core.List<api.OperatingSystemVersion> o) { | 7894 checkUnnamed1481(core.List<api.OperatingSystemVersion> o) { |
| 7895 unittest.expect(o, unittest.hasLength(2)); | 7895 unittest.expect(o, unittest.hasLength(2)); |
| 7896 checkOperatingSystemVersion(o[0]); | 7896 checkOperatingSystemVersion(o[0]); |
| 7897 checkOperatingSystemVersion(o[1]); | 7897 checkOperatingSystemVersion(o[1]); |
| 7898 } | 7898 } |
| 7899 | 7899 |
| 7900 buildUnnamed1470() { | 7900 buildUnnamed1482() { |
| 7901 var o = new core.List<api.OperatingSystem>(); | 7901 var o = new core.List<api.OperatingSystem>(); |
| 7902 o.add(buildOperatingSystem()); | 7902 o.add(buildOperatingSystem()); |
| 7903 o.add(buildOperatingSystem()); | 7903 o.add(buildOperatingSystem()); |
| 7904 return o; | 7904 return o; |
| 7905 } | 7905 } |
| 7906 | 7906 |
| 7907 checkUnnamed1470(core.List<api.OperatingSystem> o) { | 7907 checkUnnamed1482(core.List<api.OperatingSystem> o) { |
| 7908 unittest.expect(o, unittest.hasLength(2)); | 7908 unittest.expect(o, unittest.hasLength(2)); |
| 7909 checkOperatingSystem(o[0]); | 7909 checkOperatingSystem(o[0]); |
| 7910 checkOperatingSystem(o[1]); | 7910 checkOperatingSystem(o[1]); |
| 7911 } | 7911 } |
| 7912 | 7912 |
| 7913 buildUnnamed1471() { | 7913 buildUnnamed1483() { |
| 7914 var o = new core.List<api.PlatformType>(); | 7914 var o = new core.List<api.PlatformType>(); |
| 7915 o.add(buildPlatformType()); | 7915 o.add(buildPlatformType()); |
| 7916 o.add(buildPlatformType()); | 7916 o.add(buildPlatformType()); |
| 7917 return o; | 7917 return o; |
| 7918 } | 7918 } |
| 7919 | 7919 |
| 7920 checkUnnamed1471(core.List<api.PlatformType> o) { | 7920 checkUnnamed1483(core.List<api.PlatformType> o) { |
| 7921 unittest.expect(o, unittest.hasLength(2)); | 7921 unittest.expect(o, unittest.hasLength(2)); |
| 7922 checkPlatformType(o[0]); | 7922 checkPlatformType(o[0]); |
| 7923 checkPlatformType(o[1]); | 7923 checkPlatformType(o[1]); |
| 7924 } | 7924 } |
| 7925 | 7925 |
| 7926 core.int buildCounterTechnologyTargeting = 0; | 7926 core.int buildCounterTechnologyTargeting = 0; |
| 7927 buildTechnologyTargeting() { | 7927 buildTechnologyTargeting() { |
| 7928 var o = new api.TechnologyTargeting(); | 7928 var o = new api.TechnologyTargeting(); |
| 7929 buildCounterTechnologyTargeting++; | 7929 buildCounterTechnologyTargeting++; |
| 7930 if (buildCounterTechnologyTargeting < 3) { | 7930 if (buildCounterTechnologyTargeting < 3) { |
| 7931 o.browsers = buildUnnamed1466(); | 7931 o.browsers = buildUnnamed1478(); |
| 7932 o.connectionTypes = buildUnnamed1467(); | 7932 o.connectionTypes = buildUnnamed1479(); |
| 7933 o.mobileCarriers = buildUnnamed1468(); | 7933 o.mobileCarriers = buildUnnamed1480(); |
| 7934 o.operatingSystemVersions = buildUnnamed1469(); | 7934 o.operatingSystemVersions = buildUnnamed1481(); |
| 7935 o.operatingSystems = buildUnnamed1470(); | 7935 o.operatingSystems = buildUnnamed1482(); |
| 7936 o.platformTypes = buildUnnamed1471(); | 7936 o.platformTypes = buildUnnamed1483(); |
| 7937 } | 7937 } |
| 7938 buildCounterTechnologyTargeting--; | 7938 buildCounterTechnologyTargeting--; |
| 7939 return o; | 7939 return o; |
| 7940 } | 7940 } |
| 7941 | 7941 |
| 7942 checkTechnologyTargeting(api.TechnologyTargeting o) { | 7942 checkTechnologyTargeting(api.TechnologyTargeting o) { |
| 7943 buildCounterTechnologyTargeting++; | 7943 buildCounterTechnologyTargeting++; |
| 7944 if (buildCounterTechnologyTargeting < 3) { | 7944 if (buildCounterTechnologyTargeting < 3) { |
| 7945 checkUnnamed1466(o.browsers); | 7945 checkUnnamed1478(o.browsers); |
| 7946 checkUnnamed1467(o.connectionTypes); | 7946 checkUnnamed1479(o.connectionTypes); |
| 7947 checkUnnamed1468(o.mobileCarriers); | 7947 checkUnnamed1480(o.mobileCarriers); |
| 7948 checkUnnamed1469(o.operatingSystemVersions); | 7948 checkUnnamed1481(o.operatingSystemVersions); |
| 7949 checkUnnamed1470(o.operatingSystems); | 7949 checkUnnamed1482(o.operatingSystems); |
| 7950 checkUnnamed1471(o.platformTypes); | 7950 checkUnnamed1483(o.platformTypes); |
| 7951 } | 7951 } |
| 7952 buildCounterTechnologyTargeting--; | 7952 buildCounterTechnologyTargeting--; |
| 7953 } | 7953 } |
| 7954 | 7954 |
| 7955 core.int buildCounterThirdPartyAuthenticationToken = 0; | 7955 core.int buildCounterThirdPartyAuthenticationToken = 0; |
| 7956 buildThirdPartyAuthenticationToken() { | 7956 buildThirdPartyAuthenticationToken() { |
| 7957 var o = new api.ThirdPartyAuthenticationToken(); | 7957 var o = new api.ThirdPartyAuthenticationToken(); |
| 7958 buildCounterThirdPartyAuthenticationToken++; | 7958 buildCounterThirdPartyAuthenticationToken++; |
| 7959 if (buildCounterThirdPartyAuthenticationToken < 3) { | 7959 if (buildCounterThirdPartyAuthenticationToken < 3) { |
| 7960 o.name = "foo"; | 7960 o.name = "foo"; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8043 unittest.expect(o.etag, unittest.equals('foo')); | 8043 unittest.expect(o.etag, unittest.equals('foo')); |
| 8044 unittest.expect(o.kind, unittest.equals('foo')); | 8044 unittest.expect(o.kind, unittest.equals('foo')); |
| 8045 unittest.expect(o.profileId, unittest.equals('foo')); | 8045 unittest.expect(o.profileId, unittest.equals('foo')); |
| 8046 unittest.expect(o.subAccountId, unittest.equals('foo')); | 8046 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 8047 unittest.expect(o.subAccountName, unittest.equals('foo')); | 8047 unittest.expect(o.subAccountName, unittest.equals('foo')); |
| 8048 unittest.expect(o.userName, unittest.equals('foo')); | 8048 unittest.expect(o.userName, unittest.equals('foo')); |
| 8049 } | 8049 } |
| 8050 buildCounterUserProfile--; | 8050 buildCounterUserProfile--; |
| 8051 } | 8051 } |
| 8052 | 8052 |
| 8053 buildUnnamed1472() { | 8053 buildUnnamed1484() { |
| 8054 var o = new core.List<api.UserProfile>(); | 8054 var o = new core.List<api.UserProfile>(); |
| 8055 o.add(buildUserProfile()); | 8055 o.add(buildUserProfile()); |
| 8056 o.add(buildUserProfile()); | 8056 o.add(buildUserProfile()); |
| 8057 return o; | 8057 return o; |
| 8058 } | 8058 } |
| 8059 | 8059 |
| 8060 checkUnnamed1472(core.List<api.UserProfile> o) { | 8060 checkUnnamed1484(core.List<api.UserProfile> o) { |
| 8061 unittest.expect(o, unittest.hasLength(2)); | 8061 unittest.expect(o, unittest.hasLength(2)); |
| 8062 checkUserProfile(o[0]); | 8062 checkUserProfile(o[0]); |
| 8063 checkUserProfile(o[1]); | 8063 checkUserProfile(o[1]); |
| 8064 } | 8064 } |
| 8065 | 8065 |
| 8066 core.int buildCounterUserProfileList = 0; | 8066 core.int buildCounterUserProfileList = 0; |
| 8067 buildUserProfileList() { | 8067 buildUserProfileList() { |
| 8068 var o = new api.UserProfileList(); | 8068 var o = new api.UserProfileList(); |
| 8069 buildCounterUserProfileList++; | 8069 buildCounterUserProfileList++; |
| 8070 if (buildCounterUserProfileList < 3) { | 8070 if (buildCounterUserProfileList < 3) { |
| 8071 o.etag = "foo"; | 8071 o.etag = "foo"; |
| 8072 o.items = buildUnnamed1472(); | 8072 o.items = buildUnnamed1484(); |
| 8073 o.kind = "foo"; | 8073 o.kind = "foo"; |
| 8074 } | 8074 } |
| 8075 buildCounterUserProfileList--; | 8075 buildCounterUserProfileList--; |
| 8076 return o; | 8076 return o; |
| 8077 } | 8077 } |
| 8078 | 8078 |
| 8079 checkUserProfileList(api.UserProfileList o) { | 8079 checkUserProfileList(api.UserProfileList o) { |
| 8080 buildCounterUserProfileList++; | 8080 buildCounterUserProfileList++; |
| 8081 if (buildCounterUserProfileList < 3) { | 8081 if (buildCounterUserProfileList < 3) { |
| 8082 unittest.expect(o.etag, unittest.equals('foo')); | 8082 unittest.expect(o.etag, unittest.equals('foo')); |
| 8083 checkUnnamed1472(o.items); | 8083 checkUnnamed1484(o.items); |
| 8084 unittest.expect(o.kind, unittest.equals('foo')); | 8084 unittest.expect(o.kind, unittest.equals('foo')); |
| 8085 } | 8085 } |
| 8086 buildCounterUserProfileList--; | 8086 buildCounterUserProfileList--; |
| 8087 } | 8087 } |
| 8088 | 8088 |
| 8089 buildUnnamed1473() { | 8089 buildUnnamed1485() { |
| 8090 var o = new core.List<api.UserRolePermission>(); | 8090 var o = new core.List<api.UserRolePermission>(); |
| 8091 o.add(buildUserRolePermission()); | 8091 o.add(buildUserRolePermission()); |
| 8092 o.add(buildUserRolePermission()); | 8092 o.add(buildUserRolePermission()); |
| 8093 return o; | 8093 return o; |
| 8094 } | 8094 } |
| 8095 | 8095 |
| 8096 checkUnnamed1473(core.List<api.UserRolePermission> o) { | 8096 checkUnnamed1485(core.List<api.UserRolePermission> o) { |
| 8097 unittest.expect(o, unittest.hasLength(2)); | 8097 unittest.expect(o, unittest.hasLength(2)); |
| 8098 checkUserRolePermission(o[0]); | 8098 checkUserRolePermission(o[0]); |
| 8099 checkUserRolePermission(o[1]); | 8099 checkUserRolePermission(o[1]); |
| 8100 } | 8100 } |
| 8101 | 8101 |
| 8102 core.int buildCounterUserRole = 0; | 8102 core.int buildCounterUserRole = 0; |
| 8103 buildUserRole() { | 8103 buildUserRole() { |
| 8104 var o = new api.UserRole(); | 8104 var o = new api.UserRole(); |
| 8105 buildCounterUserRole++; | 8105 buildCounterUserRole++; |
| 8106 if (buildCounterUserRole < 3) { | 8106 if (buildCounterUserRole < 3) { |
| 8107 o.accountId = "foo"; | 8107 o.accountId = "foo"; |
| 8108 o.defaultUserRole = true; | 8108 o.defaultUserRole = true; |
| 8109 o.id = "foo"; | 8109 o.id = "foo"; |
| 8110 o.kind = "foo"; | 8110 o.kind = "foo"; |
| 8111 o.name = "foo"; | 8111 o.name = "foo"; |
| 8112 o.parentUserRoleId = "foo"; | 8112 o.parentUserRoleId = "foo"; |
| 8113 o.permissions = buildUnnamed1473(); | 8113 o.permissions = buildUnnamed1485(); |
| 8114 o.subaccountId = "foo"; | 8114 o.subaccountId = "foo"; |
| 8115 } | 8115 } |
| 8116 buildCounterUserRole--; | 8116 buildCounterUserRole--; |
| 8117 return o; | 8117 return o; |
| 8118 } | 8118 } |
| 8119 | 8119 |
| 8120 checkUserRole(api.UserRole o) { | 8120 checkUserRole(api.UserRole o) { |
| 8121 buildCounterUserRole++; | 8121 buildCounterUserRole++; |
| 8122 if (buildCounterUserRole < 3) { | 8122 if (buildCounterUserRole < 3) { |
| 8123 unittest.expect(o.accountId, unittest.equals('foo')); | 8123 unittest.expect(o.accountId, unittest.equals('foo')); |
| 8124 unittest.expect(o.defaultUserRole, unittest.isTrue); | 8124 unittest.expect(o.defaultUserRole, unittest.isTrue); |
| 8125 unittest.expect(o.id, unittest.equals('foo')); | 8125 unittest.expect(o.id, unittest.equals('foo')); |
| 8126 unittest.expect(o.kind, unittest.equals('foo')); | 8126 unittest.expect(o.kind, unittest.equals('foo')); |
| 8127 unittest.expect(o.name, unittest.equals('foo')); | 8127 unittest.expect(o.name, unittest.equals('foo')); |
| 8128 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); | 8128 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); |
| 8129 checkUnnamed1473(o.permissions); | 8129 checkUnnamed1485(o.permissions); |
| 8130 unittest.expect(o.subaccountId, unittest.equals('foo')); | 8130 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 8131 } | 8131 } |
| 8132 buildCounterUserRole--; | 8132 buildCounterUserRole--; |
| 8133 } | 8133 } |
| 8134 | 8134 |
| 8135 core.int buildCounterUserRolePermission = 0; | 8135 core.int buildCounterUserRolePermission = 0; |
| 8136 buildUserRolePermission() { | 8136 buildUserRolePermission() { |
| 8137 var o = new api.UserRolePermission(); | 8137 var o = new api.UserRolePermission(); |
| 8138 buildCounterUserRolePermission++; | 8138 buildCounterUserRolePermission++; |
| 8139 if (buildCounterUserRolePermission < 3) { | 8139 if (buildCounterUserRolePermission < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8175 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { | 8175 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { |
| 8176 buildCounterUserRolePermissionGroup++; | 8176 buildCounterUserRolePermissionGroup++; |
| 8177 if (buildCounterUserRolePermissionGroup < 3) { | 8177 if (buildCounterUserRolePermissionGroup < 3) { |
| 8178 unittest.expect(o.id, unittest.equals('foo')); | 8178 unittest.expect(o.id, unittest.equals('foo')); |
| 8179 unittest.expect(o.kind, unittest.equals('foo')); | 8179 unittest.expect(o.kind, unittest.equals('foo')); |
| 8180 unittest.expect(o.name, unittest.equals('foo')); | 8180 unittest.expect(o.name, unittest.equals('foo')); |
| 8181 } | 8181 } |
| 8182 buildCounterUserRolePermissionGroup--; | 8182 buildCounterUserRolePermissionGroup--; |
| 8183 } | 8183 } |
| 8184 | 8184 |
| 8185 buildUnnamed1474() { | 8185 buildUnnamed1486() { |
| 8186 var o = new core.List<api.UserRolePermissionGroup>(); | 8186 var o = new core.List<api.UserRolePermissionGroup>(); |
| 8187 o.add(buildUserRolePermissionGroup()); | 8187 o.add(buildUserRolePermissionGroup()); |
| 8188 o.add(buildUserRolePermissionGroup()); | 8188 o.add(buildUserRolePermissionGroup()); |
| 8189 return o; | 8189 return o; |
| 8190 } | 8190 } |
| 8191 | 8191 |
| 8192 checkUnnamed1474(core.List<api.UserRolePermissionGroup> o) { | 8192 checkUnnamed1486(core.List<api.UserRolePermissionGroup> o) { |
| 8193 unittest.expect(o, unittest.hasLength(2)); | 8193 unittest.expect(o, unittest.hasLength(2)); |
| 8194 checkUserRolePermissionGroup(o[0]); | 8194 checkUserRolePermissionGroup(o[0]); |
| 8195 checkUserRolePermissionGroup(o[1]); | 8195 checkUserRolePermissionGroup(o[1]); |
| 8196 } | 8196 } |
| 8197 | 8197 |
| 8198 core.int buildCounterUserRolePermissionGroupsListResponse = 0; | 8198 core.int buildCounterUserRolePermissionGroupsListResponse = 0; |
| 8199 buildUserRolePermissionGroupsListResponse() { | 8199 buildUserRolePermissionGroupsListResponse() { |
| 8200 var o = new api.UserRolePermissionGroupsListResponse(); | 8200 var o = new api.UserRolePermissionGroupsListResponse(); |
| 8201 buildCounterUserRolePermissionGroupsListResponse++; | 8201 buildCounterUserRolePermissionGroupsListResponse++; |
| 8202 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 8202 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 8203 o.kind = "foo"; | 8203 o.kind = "foo"; |
| 8204 o.userRolePermissionGroups = buildUnnamed1474(); | 8204 o.userRolePermissionGroups = buildUnnamed1486(); |
| 8205 } | 8205 } |
| 8206 buildCounterUserRolePermissionGroupsListResponse--; | 8206 buildCounterUserRolePermissionGroupsListResponse--; |
| 8207 return o; | 8207 return o; |
| 8208 } | 8208 } |
| 8209 | 8209 |
| 8210 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { | 8210 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { |
| 8211 buildCounterUserRolePermissionGroupsListResponse++; | 8211 buildCounterUserRolePermissionGroupsListResponse++; |
| 8212 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 8212 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 8213 unittest.expect(o.kind, unittest.equals('foo')); | 8213 unittest.expect(o.kind, unittest.equals('foo')); |
| 8214 checkUnnamed1474(o.userRolePermissionGroups); | 8214 checkUnnamed1486(o.userRolePermissionGroups); |
| 8215 } | 8215 } |
| 8216 buildCounterUserRolePermissionGroupsListResponse--; | 8216 buildCounterUserRolePermissionGroupsListResponse--; |
| 8217 } | 8217 } |
| 8218 | 8218 |
| 8219 buildUnnamed1475() { | 8219 buildUnnamed1487() { |
| 8220 var o = new core.List<api.UserRolePermission>(); | 8220 var o = new core.List<api.UserRolePermission>(); |
| 8221 o.add(buildUserRolePermission()); | 8221 o.add(buildUserRolePermission()); |
| 8222 o.add(buildUserRolePermission()); | 8222 o.add(buildUserRolePermission()); |
| 8223 return o; | 8223 return o; |
| 8224 } | 8224 } |
| 8225 | 8225 |
| 8226 checkUnnamed1475(core.List<api.UserRolePermission> o) { | 8226 checkUnnamed1487(core.List<api.UserRolePermission> o) { |
| 8227 unittest.expect(o, unittest.hasLength(2)); | 8227 unittest.expect(o, unittest.hasLength(2)); |
| 8228 checkUserRolePermission(o[0]); | 8228 checkUserRolePermission(o[0]); |
| 8229 checkUserRolePermission(o[1]); | 8229 checkUserRolePermission(o[1]); |
| 8230 } | 8230 } |
| 8231 | 8231 |
| 8232 core.int buildCounterUserRolePermissionsListResponse = 0; | 8232 core.int buildCounterUserRolePermissionsListResponse = 0; |
| 8233 buildUserRolePermissionsListResponse() { | 8233 buildUserRolePermissionsListResponse() { |
| 8234 var o = new api.UserRolePermissionsListResponse(); | 8234 var o = new api.UserRolePermissionsListResponse(); |
| 8235 buildCounterUserRolePermissionsListResponse++; | 8235 buildCounterUserRolePermissionsListResponse++; |
| 8236 if (buildCounterUserRolePermissionsListResponse < 3) { | 8236 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 8237 o.kind = "foo"; | 8237 o.kind = "foo"; |
| 8238 o.userRolePermissions = buildUnnamed1475(); | 8238 o.userRolePermissions = buildUnnamed1487(); |
| 8239 } | 8239 } |
| 8240 buildCounterUserRolePermissionsListResponse--; | 8240 buildCounterUserRolePermissionsListResponse--; |
| 8241 return o; | 8241 return o; |
| 8242 } | 8242 } |
| 8243 | 8243 |
| 8244 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { | 8244 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { |
| 8245 buildCounterUserRolePermissionsListResponse++; | 8245 buildCounterUserRolePermissionsListResponse++; |
| 8246 if (buildCounterUserRolePermissionsListResponse < 3) { | 8246 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 8247 unittest.expect(o.kind, unittest.equals('foo')); | 8247 unittest.expect(o.kind, unittest.equals('foo')); |
| 8248 checkUnnamed1475(o.userRolePermissions); | 8248 checkUnnamed1487(o.userRolePermissions); |
| 8249 } | 8249 } |
| 8250 buildCounterUserRolePermissionsListResponse--; | 8250 buildCounterUserRolePermissionsListResponse--; |
| 8251 } | 8251 } |
| 8252 | 8252 |
| 8253 buildUnnamed1476() { | 8253 buildUnnamed1488() { |
| 8254 var o = new core.List<api.UserRole>(); | 8254 var o = new core.List<api.UserRole>(); |
| 8255 o.add(buildUserRole()); | 8255 o.add(buildUserRole()); |
| 8256 o.add(buildUserRole()); | 8256 o.add(buildUserRole()); |
| 8257 return o; | 8257 return o; |
| 8258 } | 8258 } |
| 8259 | 8259 |
| 8260 checkUnnamed1476(core.List<api.UserRole> o) { | 8260 checkUnnamed1488(core.List<api.UserRole> o) { |
| 8261 unittest.expect(o, unittest.hasLength(2)); | 8261 unittest.expect(o, unittest.hasLength(2)); |
| 8262 checkUserRole(o[0]); | 8262 checkUserRole(o[0]); |
| 8263 checkUserRole(o[1]); | 8263 checkUserRole(o[1]); |
| 8264 } | 8264 } |
| 8265 | 8265 |
| 8266 core.int buildCounterUserRolesListResponse = 0; | 8266 core.int buildCounterUserRolesListResponse = 0; |
| 8267 buildUserRolesListResponse() { | 8267 buildUserRolesListResponse() { |
| 8268 var o = new api.UserRolesListResponse(); | 8268 var o = new api.UserRolesListResponse(); |
| 8269 buildCounterUserRolesListResponse++; | 8269 buildCounterUserRolesListResponse++; |
| 8270 if (buildCounterUserRolesListResponse < 3) { | 8270 if (buildCounterUserRolesListResponse < 3) { |
| 8271 o.kind = "foo"; | 8271 o.kind = "foo"; |
| 8272 o.nextPageToken = "foo"; | 8272 o.nextPageToken = "foo"; |
| 8273 o.userRoles = buildUnnamed1476(); | 8273 o.userRoles = buildUnnamed1488(); |
| 8274 } | 8274 } |
| 8275 buildCounterUserRolesListResponse--; | 8275 buildCounterUserRolesListResponse--; |
| 8276 return o; | 8276 return o; |
| 8277 } | 8277 } |
| 8278 | 8278 |
| 8279 checkUserRolesListResponse(api.UserRolesListResponse o) { | 8279 checkUserRolesListResponse(api.UserRolesListResponse o) { |
| 8280 buildCounterUserRolesListResponse++; | 8280 buildCounterUserRolesListResponse++; |
| 8281 if (buildCounterUserRolesListResponse < 3) { | 8281 if (buildCounterUserRolesListResponse < 3) { |
| 8282 unittest.expect(o.kind, unittest.equals('foo')); | 8282 unittest.expect(o.kind, unittest.equals('foo')); |
| 8283 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 8283 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 8284 checkUnnamed1476(o.userRoles); | 8284 checkUnnamed1488(o.userRoles); |
| 8285 } | 8285 } |
| 8286 buildCounterUserRolesListResponse--; | 8286 buildCounterUserRolesListResponse--; |
| 8287 } | 8287 } |
| 8288 | 8288 |
| 8289 buildUnnamed1477() { | |
| 8290 var o = new core.List<core.String>(); | |
| 8291 o.add("foo"); | |
| 8292 o.add("foo"); | |
| 8293 return o; | |
| 8294 } | |
| 8295 | |
| 8296 checkUnnamed1477(core.List<core.String> o) { | |
| 8297 unittest.expect(o, unittest.hasLength(2)); | |
| 8298 unittest.expect(o[0], unittest.equals('foo')); | |
| 8299 unittest.expect(o[1], unittest.equals('foo')); | |
| 8300 } | |
| 8301 | |
| 8302 buildUnnamed1478() { | |
| 8303 var o = new core.List<core.String>(); | |
| 8304 o.add("foo"); | |
| 8305 o.add("foo"); | |
| 8306 return o; | |
| 8307 } | |
| 8308 | |
| 8309 checkUnnamed1478(core.List<core.String> o) { | |
| 8310 unittest.expect(o, unittest.hasLength(2)); | |
| 8311 unittest.expect(o[0], unittest.equals('foo')); | |
| 8312 unittest.expect(o[1], unittest.equals('foo')); | |
| 8313 } | |
| 8314 | |
| 8315 buildUnnamed1479() { | |
| 8316 var o = new core.List<core.String>(); | |
| 8317 o.add("foo"); | |
| 8318 o.add("foo"); | |
| 8319 return o; | |
| 8320 } | |
| 8321 | |
| 8322 checkUnnamed1479(core.List<core.String> o) { | |
| 8323 unittest.expect(o, unittest.hasLength(2)); | |
| 8324 unittest.expect(o[0], unittest.equals('foo')); | |
| 8325 unittest.expect(o[1], unittest.equals('foo')); | |
| 8326 } | |
| 8327 | |
| 8328 buildUnnamed1480() { | |
| 8329 var o = new core.List<core.String>(); | |
| 8330 o.add("foo"); | |
| 8331 o.add("foo"); | |
| 8332 return o; | |
| 8333 } | |
| 8334 | |
| 8335 checkUnnamed1480(core.List<core.String> o) { | |
| 8336 unittest.expect(o, unittest.hasLength(2)); | |
| 8337 unittest.expect(o[0], unittest.equals('foo')); | |
| 8338 unittest.expect(o[1], unittest.equals('foo')); | |
| 8339 } | |
| 8340 | |
| 8341 buildUnnamed1481() { | |
| 8342 var o = new core.List<core.String>(); | |
| 8343 o.add("foo"); | |
| 8344 o.add("foo"); | |
| 8345 return o; | |
| 8346 } | |
| 8347 | |
| 8348 checkUnnamed1481(core.List<core.String> o) { | |
| 8349 unittest.expect(o, unittest.hasLength(2)); | |
| 8350 unittest.expect(o[0], unittest.equals('foo')); | |
| 8351 unittest.expect(o[1], unittest.equals('foo')); | |
| 8352 } | |
| 8353 | |
| 8354 buildUnnamed1482() { | |
| 8355 var o = new core.List<core.String>(); | |
| 8356 o.add("foo"); | |
| 8357 o.add("foo"); | |
| 8358 return o; | |
| 8359 } | |
| 8360 | |
| 8361 checkUnnamed1482(core.List<core.String> o) { | |
| 8362 unittest.expect(o, unittest.hasLength(2)); | |
| 8363 unittest.expect(o[0], unittest.equals('foo')); | |
| 8364 unittest.expect(o[1], unittest.equals('foo')); | |
| 8365 } | |
| 8366 | |
| 8367 buildUnnamed1483() { | |
| 8368 var o = new core.List<core.String>(); | |
| 8369 o.add("foo"); | |
| 8370 o.add("foo"); | |
| 8371 return o; | |
| 8372 } | |
| 8373 | |
| 8374 checkUnnamed1483(core.List<core.String> o) { | |
| 8375 unittest.expect(o, unittest.hasLength(2)); | |
| 8376 unittest.expect(o[0], unittest.equals('foo')); | |
| 8377 unittest.expect(o[1], unittest.equals('foo')); | |
| 8378 } | |
| 8379 | |
| 8380 buildUnnamed1484() { | |
| 8381 var o = new core.List<core.String>(); | |
| 8382 o.add("foo"); | |
| 8383 o.add("foo"); | |
| 8384 return o; | |
| 8385 } | |
| 8386 | |
| 8387 checkUnnamed1484(core.List<core.String> o) { | |
| 8388 unittest.expect(o, unittest.hasLength(2)); | |
| 8389 unittest.expect(o[0], unittest.equals('foo')); | |
| 8390 unittest.expect(o[1], unittest.equals('foo')); | |
| 8391 } | |
| 8392 | |
| 8393 buildUnnamed1485() { | |
| 8394 var o = new core.List<core.String>(); | |
| 8395 o.add("foo"); | |
| 8396 o.add("foo"); | |
| 8397 return o; | |
| 8398 } | |
| 8399 | |
| 8400 checkUnnamed1485(core.List<core.String> o) { | |
| 8401 unittest.expect(o, unittest.hasLength(2)); | |
| 8402 unittest.expect(o[0], unittest.equals('foo')); | |
| 8403 unittest.expect(o[1], unittest.equals('foo')); | |
| 8404 } | |
| 8405 | |
| 8406 buildUnnamed1486() { | |
| 8407 var o = new core.List<core.String>(); | |
| 8408 o.add("foo"); | |
| 8409 o.add("foo"); | |
| 8410 return o; | |
| 8411 } | |
| 8412 | |
| 8413 checkUnnamed1486(core.List<core.String> o) { | |
| 8414 unittest.expect(o, unittest.hasLength(2)); | |
| 8415 unittest.expect(o[0], unittest.equals('foo')); | |
| 8416 unittest.expect(o[1], unittest.equals('foo')); | |
| 8417 } | |
| 8418 | |
| 8419 buildUnnamed1487() { | |
| 8420 var o = new core.List<core.String>(); | |
| 8421 o.add("foo"); | |
| 8422 o.add("foo"); | |
| 8423 return o; | |
| 8424 } | |
| 8425 | |
| 8426 checkUnnamed1487(core.List<core.String> o) { | |
| 8427 unittest.expect(o, unittest.hasLength(2)); | |
| 8428 unittest.expect(o[0], unittest.equals('foo')); | |
| 8429 unittest.expect(o[1], unittest.equals('foo')); | |
| 8430 } | |
| 8431 | |
| 8432 buildUnnamed1488() { | |
| 8433 var o = new core.List<core.String>(); | |
| 8434 o.add("foo"); | |
| 8435 o.add("foo"); | |
| 8436 return o; | |
| 8437 } | |
| 8438 | |
| 8439 checkUnnamed1488(core.List<core.String> o) { | |
| 8440 unittest.expect(o, unittest.hasLength(2)); | |
| 8441 unittest.expect(o[0], unittest.equals('foo')); | |
| 8442 unittest.expect(o[1], unittest.equals('foo')); | |
| 8443 } | |
| 8444 | |
| 8445 buildUnnamed1489() { | 8289 buildUnnamed1489() { |
| 8446 var o = new core.List<core.String>(); | 8290 var o = new core.List<core.String>(); |
| 8447 o.add("foo"); | 8291 o.add("foo"); |
| 8448 o.add("foo"); | 8292 o.add("foo"); |
| 8449 return o; | 8293 return o; |
| 8450 } | 8294 } |
| 8451 | 8295 |
| 8452 checkUnnamed1489(core.List<core.String> o) { | 8296 checkUnnamed1489(core.List<core.String> o) { |
| 8453 unittest.expect(o, unittest.hasLength(2)); | 8297 unittest.expect(o, unittest.hasLength(2)); |
| 8454 unittest.expect(o[0], unittest.equals('foo')); | 8298 unittest.expect(o[0], unittest.equals('foo')); |
| (...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9410 o.add("foo"); | 9254 o.add("foo"); |
| 9411 return o; | 9255 return o; |
| 9412 } | 9256 } |
| 9413 | 9257 |
| 9414 checkUnnamed1563(core.List<core.String> o) { | 9258 checkUnnamed1563(core.List<core.String> o) { |
| 9415 unittest.expect(o, unittest.hasLength(2)); | 9259 unittest.expect(o, unittest.hasLength(2)); |
| 9416 unittest.expect(o[0], unittest.equals('foo')); | 9260 unittest.expect(o[0], unittest.equals('foo')); |
| 9417 unittest.expect(o[1], unittest.equals('foo')); | 9261 unittest.expect(o[1], unittest.equals('foo')); |
| 9418 } | 9262 } |
| 9419 | 9263 |
| 9264 buildUnnamed1564() { |
| 9265 var o = new core.List<core.String>(); |
| 9266 o.add("foo"); |
| 9267 o.add("foo"); |
| 9268 return o; |
| 9269 } |
| 9270 |
| 9271 checkUnnamed1564(core.List<core.String> o) { |
| 9272 unittest.expect(o, unittest.hasLength(2)); |
| 9273 unittest.expect(o[0], unittest.equals('foo')); |
| 9274 unittest.expect(o[1], unittest.equals('foo')); |
| 9275 } |
| 9276 |
| 9277 buildUnnamed1565() { |
| 9278 var o = new core.List<core.String>(); |
| 9279 o.add("foo"); |
| 9280 o.add("foo"); |
| 9281 return o; |
| 9282 } |
| 9283 |
| 9284 checkUnnamed1565(core.List<core.String> o) { |
| 9285 unittest.expect(o, unittest.hasLength(2)); |
| 9286 unittest.expect(o[0], unittest.equals('foo')); |
| 9287 unittest.expect(o[1], unittest.equals('foo')); |
| 9288 } |
| 9289 |
| 9290 buildUnnamed1566() { |
| 9291 var o = new core.List<core.String>(); |
| 9292 o.add("foo"); |
| 9293 o.add("foo"); |
| 9294 return o; |
| 9295 } |
| 9296 |
| 9297 checkUnnamed1566(core.List<core.String> o) { |
| 9298 unittest.expect(o, unittest.hasLength(2)); |
| 9299 unittest.expect(o[0], unittest.equals('foo')); |
| 9300 unittest.expect(o[1], unittest.equals('foo')); |
| 9301 } |
| 9302 |
| 9303 buildUnnamed1567() { |
| 9304 var o = new core.List<core.String>(); |
| 9305 o.add("foo"); |
| 9306 o.add("foo"); |
| 9307 return o; |
| 9308 } |
| 9309 |
| 9310 checkUnnamed1567(core.List<core.String> o) { |
| 9311 unittest.expect(o, unittest.hasLength(2)); |
| 9312 unittest.expect(o[0], unittest.equals('foo')); |
| 9313 unittest.expect(o[1], unittest.equals('foo')); |
| 9314 } |
| 9315 |
| 9316 buildUnnamed1568() { |
| 9317 var o = new core.List<core.String>(); |
| 9318 o.add("foo"); |
| 9319 o.add("foo"); |
| 9320 return o; |
| 9321 } |
| 9322 |
| 9323 checkUnnamed1568(core.List<core.String> o) { |
| 9324 unittest.expect(o, unittest.hasLength(2)); |
| 9325 unittest.expect(o[0], unittest.equals('foo')); |
| 9326 unittest.expect(o[1], unittest.equals('foo')); |
| 9327 } |
| 9328 |
| 9329 buildUnnamed1569() { |
| 9330 var o = new core.List<core.String>(); |
| 9331 o.add("foo"); |
| 9332 o.add("foo"); |
| 9333 return o; |
| 9334 } |
| 9335 |
| 9336 checkUnnamed1569(core.List<core.String> o) { |
| 9337 unittest.expect(o, unittest.hasLength(2)); |
| 9338 unittest.expect(o[0], unittest.equals('foo')); |
| 9339 unittest.expect(o[1], unittest.equals('foo')); |
| 9340 } |
| 9341 |
| 9342 buildUnnamed1570() { |
| 9343 var o = new core.List<core.String>(); |
| 9344 o.add("foo"); |
| 9345 o.add("foo"); |
| 9346 return o; |
| 9347 } |
| 9348 |
| 9349 checkUnnamed1570(core.List<core.String> o) { |
| 9350 unittest.expect(o, unittest.hasLength(2)); |
| 9351 unittest.expect(o[0], unittest.equals('foo')); |
| 9352 unittest.expect(o[1], unittest.equals('foo')); |
| 9353 } |
| 9354 |
| 9355 buildUnnamed1571() { |
| 9356 var o = new core.List<core.String>(); |
| 9357 o.add("foo"); |
| 9358 o.add("foo"); |
| 9359 return o; |
| 9360 } |
| 9361 |
| 9362 checkUnnamed1571(core.List<core.String> o) { |
| 9363 unittest.expect(o, unittest.hasLength(2)); |
| 9364 unittest.expect(o[0], unittest.equals('foo')); |
| 9365 unittest.expect(o[1], unittest.equals('foo')); |
| 9366 } |
| 9367 |
| 9368 buildUnnamed1572() { |
| 9369 var o = new core.List<core.String>(); |
| 9370 o.add("foo"); |
| 9371 o.add("foo"); |
| 9372 return o; |
| 9373 } |
| 9374 |
| 9375 checkUnnamed1572(core.List<core.String> o) { |
| 9376 unittest.expect(o, unittest.hasLength(2)); |
| 9377 unittest.expect(o[0], unittest.equals('foo')); |
| 9378 unittest.expect(o[1], unittest.equals('foo')); |
| 9379 } |
| 9380 |
| 9381 buildUnnamed1573() { |
| 9382 var o = new core.List<core.String>(); |
| 9383 o.add("foo"); |
| 9384 o.add("foo"); |
| 9385 return o; |
| 9386 } |
| 9387 |
| 9388 checkUnnamed1573(core.List<core.String> o) { |
| 9389 unittest.expect(o, unittest.hasLength(2)); |
| 9390 unittest.expect(o[0], unittest.equals('foo')); |
| 9391 unittest.expect(o[1], unittest.equals('foo')); |
| 9392 } |
| 9393 |
| 9394 buildUnnamed1574() { |
| 9395 var o = new core.List<core.String>(); |
| 9396 o.add("foo"); |
| 9397 o.add("foo"); |
| 9398 return o; |
| 9399 } |
| 9400 |
| 9401 checkUnnamed1574(core.List<core.String> o) { |
| 9402 unittest.expect(o, unittest.hasLength(2)); |
| 9403 unittest.expect(o[0], unittest.equals('foo')); |
| 9404 unittest.expect(o[1], unittest.equals('foo')); |
| 9405 } |
| 9406 |
| 9407 buildUnnamed1575() { |
| 9408 var o = new core.List<core.String>(); |
| 9409 o.add("foo"); |
| 9410 o.add("foo"); |
| 9411 return o; |
| 9412 } |
| 9413 |
| 9414 checkUnnamed1575(core.List<core.String> o) { |
| 9415 unittest.expect(o, unittest.hasLength(2)); |
| 9416 unittest.expect(o[0], unittest.equals('foo')); |
| 9417 unittest.expect(o[1], unittest.equals('foo')); |
| 9418 } |
| 9419 |
| 9420 | 9420 |
| 9421 main() { | 9421 main() { |
| 9422 unittest.group("obj-schema-Account", () { | 9422 unittest.group("obj-schema-Account", () { |
| 9423 unittest.test("to-json--from-json", () { | 9423 unittest.test("to-json--from-json", () { |
| 9424 var o = buildAccount(); | 9424 var o = buildAccount(); |
| 9425 var od = new api.Account.fromJson(o.toJson()); | 9425 var od = new api.Account.fromJson(o.toJson()); |
| 9426 checkAccount(od); | 9426 checkAccount(od); |
| 9427 }); | 9427 }); |
| 9428 }); | 9428 }); |
| 9429 | 9429 |
| (...skipping 2210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11640 checkAccountUserProfile(response); | 11640 checkAccountUserProfile(response); |
| 11641 }))); | 11641 }))); |
| 11642 }); | 11642 }); |
| 11643 | 11643 |
| 11644 unittest.test("method--list", () { | 11644 unittest.test("method--list", () { |
| 11645 | 11645 |
| 11646 var mock = new HttpServerMock(); | 11646 var mock = new HttpServerMock(); |
| 11647 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; | 11647 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; |
| 11648 var arg_profileId = "foo"; | 11648 var arg_profileId = "foo"; |
| 11649 var arg_active = true; | 11649 var arg_active = true; |
| 11650 var arg_ids = buildUnnamed1477(); | 11650 var arg_ids = buildUnnamed1489(); |
| 11651 var arg_maxResults = 42; | 11651 var arg_maxResults = 42; |
| 11652 var arg_pageToken = "foo"; | 11652 var arg_pageToken = "foo"; |
| 11653 var arg_searchString = "foo"; | 11653 var arg_searchString = "foo"; |
| 11654 var arg_sortField = "foo"; | 11654 var arg_sortField = "foo"; |
| 11655 var arg_sortOrder = "foo"; | 11655 var arg_sortOrder = "foo"; |
| 11656 var arg_subaccountId = "foo"; | 11656 var arg_subaccountId = "foo"; |
| 11657 var arg_userRoleId = "foo"; | 11657 var arg_userRoleId = "foo"; |
| 11658 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11658 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11659 var path = (req.url).path; | 11659 var path = (req.url).path; |
| 11660 var pathOffset = 0; | 11660 var pathOffset = 0; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11888 checkAccount(response); | 11888 checkAccount(response); |
| 11889 }))); | 11889 }))); |
| 11890 }); | 11890 }); |
| 11891 | 11891 |
| 11892 unittest.test("method--list", () { | 11892 unittest.test("method--list", () { |
| 11893 | 11893 |
| 11894 var mock = new HttpServerMock(); | 11894 var mock = new HttpServerMock(); |
| 11895 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; | 11895 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; |
| 11896 var arg_profileId = "foo"; | 11896 var arg_profileId = "foo"; |
| 11897 var arg_active = true; | 11897 var arg_active = true; |
| 11898 var arg_ids = buildUnnamed1478(); | 11898 var arg_ids = buildUnnamed1490(); |
| 11899 var arg_maxResults = 42; | 11899 var arg_maxResults = 42; |
| 11900 var arg_pageToken = "foo"; | 11900 var arg_pageToken = "foo"; |
| 11901 var arg_searchString = "foo"; | 11901 var arg_searchString = "foo"; |
| 11902 var arg_sortField = "foo"; | 11902 var arg_sortField = "foo"; |
| 11903 var arg_sortOrder = "foo"; | 11903 var arg_sortOrder = "foo"; |
| 11904 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11904 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11905 var path = (req.url).path; | 11905 var path = (req.url).path; |
| 11906 var pathOffset = 0; | 11906 var pathOffset = 0; |
| 11907 var index; | 11907 var index; |
| 11908 var subPart; | 11908 var subPart; |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12191 }); | 12191 }); |
| 12192 | 12192 |
| 12193 unittest.test("method--list", () { | 12193 unittest.test("method--list", () { |
| 12194 | 12194 |
| 12195 var mock = new HttpServerMock(); | 12195 var mock = new HttpServerMock(); |
| 12196 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; | 12196 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; |
| 12197 var arg_profileId = "foo"; | 12197 var arg_profileId = "foo"; |
| 12198 var arg_active = true; | 12198 var arg_active = true; |
| 12199 var arg_advertiserId = "foo"; | 12199 var arg_advertiserId = "foo"; |
| 12200 var arg_archived = true; | 12200 var arg_archived = true; |
| 12201 var arg_audienceSegmentIds = buildUnnamed1479(); | 12201 var arg_audienceSegmentIds = buildUnnamed1491(); |
| 12202 var arg_campaignIds = buildUnnamed1480(); | 12202 var arg_campaignIds = buildUnnamed1492(); |
| 12203 var arg_compatibility = "foo"; | 12203 var arg_compatibility = "foo"; |
| 12204 var arg_creativeIds = buildUnnamed1481(); | 12204 var arg_creativeIds = buildUnnamed1493(); |
| 12205 var arg_creativeOptimizationConfigurationIds = buildUnnamed1482(); | 12205 var arg_creativeOptimizationConfigurationIds = buildUnnamed1494(); |
| 12206 var arg_creativeType = "foo"; | 12206 var arg_creativeType = "foo"; |
| 12207 var arg_dynamicClickTracker = true; | 12207 var arg_dynamicClickTracker = true; |
| 12208 var arg_ids = buildUnnamed1483(); | 12208 var arg_ids = buildUnnamed1495(); |
| 12209 var arg_landingPageIds = buildUnnamed1484(); | 12209 var arg_landingPageIds = buildUnnamed1496(); |
| 12210 var arg_maxResults = 42; | 12210 var arg_maxResults = 42; |
| 12211 var arg_overriddenEventTagId = "foo"; | 12211 var arg_overriddenEventTagId = "foo"; |
| 12212 var arg_pageToken = "foo"; | 12212 var arg_pageToken = "foo"; |
| 12213 var arg_placementIds = buildUnnamed1485(); | 12213 var arg_placementIds = buildUnnamed1497(); |
| 12214 var arg_remarketingListIds = buildUnnamed1486(); | 12214 var arg_remarketingListIds = buildUnnamed1498(); |
| 12215 var arg_searchString = "foo"; | 12215 var arg_searchString = "foo"; |
| 12216 var arg_sizeIds = buildUnnamed1487(); | 12216 var arg_sizeIds = buildUnnamed1499(); |
| 12217 var arg_sortField = "foo"; | 12217 var arg_sortField = "foo"; |
| 12218 var arg_sortOrder = "foo"; | 12218 var arg_sortOrder = "foo"; |
| 12219 var arg_sslCompliant = true; | 12219 var arg_sslCompliant = true; |
| 12220 var arg_sslRequired = true; | 12220 var arg_sslRequired = true; |
| 12221 var arg_type = buildUnnamed1488(); | 12221 var arg_type = buildUnnamed1500(); |
| 12222 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12222 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 12223 var path = (req.url).path; | 12223 var path = (req.url).path; |
| 12224 var pathOffset = 0; | 12224 var pathOffset = 0; |
| 12225 var index; | 12225 var index; |
| 12226 var subPart; | 12226 var subPart; |
| 12227 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 12227 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 12228 pathOffset += 1; | 12228 pathOffset += 1; |
| 12229 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 12229 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| 12230 pathOffset += 18; | 12230 pathOffset += 18; |
| 12231 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 12231 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12578 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { | 12578 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { |
| 12579 checkAdvertiserGroup(response); | 12579 checkAdvertiserGroup(response); |
| 12580 }))); | 12580 }))); |
| 12581 }); | 12581 }); |
| 12582 | 12582 |
| 12583 unittest.test("method--list", () { | 12583 unittest.test("method--list", () { |
| 12584 | 12584 |
| 12585 var mock = new HttpServerMock(); | 12585 var mock = new HttpServerMock(); |
| 12586 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; | 12586 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; |
| 12587 var arg_profileId = "foo"; | 12587 var arg_profileId = "foo"; |
| 12588 var arg_ids = buildUnnamed1489(); | 12588 var arg_ids = buildUnnamed1501(); |
| 12589 var arg_maxResults = 42; | 12589 var arg_maxResults = 42; |
| 12590 var arg_pageToken = "foo"; | 12590 var arg_pageToken = "foo"; |
| 12591 var arg_searchString = "foo"; | 12591 var arg_searchString = "foo"; |
| 12592 var arg_sortField = "foo"; | 12592 var arg_sortField = "foo"; |
| 12593 var arg_sortOrder = "foo"; | 12593 var arg_sortOrder = "foo"; |
| 12594 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12594 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 12595 var path = (req.url).path; | 12595 var path = (req.url).path; |
| 12596 var pathOffset = 0; | 12596 var pathOffset = 0; |
| 12597 var index; | 12597 var index; |
| 12598 var subPart; | 12598 var subPart; |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12877 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { | 12877 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { |
| 12878 checkAdvertiser(response); | 12878 checkAdvertiser(response); |
| 12879 }))); | 12879 }))); |
| 12880 }); | 12880 }); |
| 12881 | 12881 |
| 12882 unittest.test("method--list", () { | 12882 unittest.test("method--list", () { |
| 12883 | 12883 |
| 12884 var mock = new HttpServerMock(); | 12884 var mock = new HttpServerMock(); |
| 12885 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; | 12885 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; |
| 12886 var arg_profileId = "foo"; | 12886 var arg_profileId = "foo"; |
| 12887 var arg_advertiserGroupIds = buildUnnamed1490(); | 12887 var arg_advertiserGroupIds = buildUnnamed1502(); |
| 12888 var arg_floodlightConfigurationIds = buildUnnamed1491(); | 12888 var arg_floodlightConfigurationIds = buildUnnamed1503(); |
| 12889 var arg_ids = buildUnnamed1492(); | 12889 var arg_ids = buildUnnamed1504(); |
| 12890 var arg_includeAdvertisersWithoutGroupsOnly = true; | 12890 var arg_includeAdvertisersWithoutGroupsOnly = true; |
| 12891 var arg_maxResults = 42; | 12891 var arg_maxResults = 42; |
| 12892 var arg_onlyParent = true; | 12892 var arg_onlyParent = true; |
| 12893 var arg_pageToken = "foo"; | 12893 var arg_pageToken = "foo"; |
| 12894 var arg_searchString = "foo"; | 12894 var arg_searchString = "foo"; |
| 12895 var arg_sortField = "foo"; | 12895 var arg_sortField = "foo"; |
| 12896 var arg_sortOrder = "foo"; | 12896 var arg_sortOrder = "foo"; |
| 12897 var arg_status = "foo"; | 12897 var arg_status = "foo"; |
| 12898 var arg_subaccountId = "foo"; | 12898 var arg_subaccountId = "foo"; |
| 12899 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12899 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13385 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { | 13385 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { |
| 13386 checkCampaign(response); | 13386 checkCampaign(response); |
| 13387 }))); | 13387 }))); |
| 13388 }); | 13388 }); |
| 13389 | 13389 |
| 13390 unittest.test("method--list", () { | 13390 unittest.test("method--list", () { |
| 13391 | 13391 |
| 13392 var mock = new HttpServerMock(); | 13392 var mock = new HttpServerMock(); |
| 13393 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; | 13393 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; |
| 13394 var arg_profileId = "foo"; | 13394 var arg_profileId = "foo"; |
| 13395 var arg_advertiserGroupIds = buildUnnamed1493(); | 13395 var arg_advertiserGroupIds = buildUnnamed1505(); |
| 13396 var arg_advertiserIds = buildUnnamed1494(); | 13396 var arg_advertiserIds = buildUnnamed1506(); |
| 13397 var arg_archived = true; | 13397 var arg_archived = true; |
| 13398 var arg_atLeastOneOptimizationActivity = true; | 13398 var arg_atLeastOneOptimizationActivity = true; |
| 13399 var arg_excludedIds = buildUnnamed1495(); | 13399 var arg_excludedIds = buildUnnamed1507(); |
| 13400 var arg_ids = buildUnnamed1496(); | 13400 var arg_ids = buildUnnamed1508(); |
| 13401 var arg_maxResults = 42; | 13401 var arg_maxResults = 42; |
| 13402 var arg_overriddenEventTagId = "foo"; | 13402 var arg_overriddenEventTagId = "foo"; |
| 13403 var arg_pageToken = "foo"; | 13403 var arg_pageToken = "foo"; |
| 13404 var arg_searchString = "foo"; | 13404 var arg_searchString = "foo"; |
| 13405 var arg_sortField = "foo"; | 13405 var arg_sortField = "foo"; |
| 13406 var arg_sortOrder = "foo"; | 13406 var arg_sortOrder = "foo"; |
| 13407 var arg_subaccountId = "foo"; | 13407 var arg_subaccountId = "foo"; |
| 13408 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13408 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13409 var path = (req.url).path; | 13409 var path = (req.url).path; |
| 13410 var pathOffset = 0; | 13410 var pathOffset = 0; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13642 checkChangeLog(response); | 13642 checkChangeLog(response); |
| 13643 }))); | 13643 }))); |
| 13644 }); | 13644 }); |
| 13645 | 13645 |
| 13646 unittest.test("method--list", () { | 13646 unittest.test("method--list", () { |
| 13647 | 13647 |
| 13648 var mock = new HttpServerMock(); | 13648 var mock = new HttpServerMock(); |
| 13649 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; | 13649 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; |
| 13650 var arg_profileId = "foo"; | 13650 var arg_profileId = "foo"; |
| 13651 var arg_action = "foo"; | 13651 var arg_action = "foo"; |
| 13652 var arg_ids = buildUnnamed1497(); | 13652 var arg_ids = buildUnnamed1509(); |
| 13653 var arg_maxChangeTime = "foo"; | 13653 var arg_maxChangeTime = "foo"; |
| 13654 var arg_maxResults = 42; | 13654 var arg_maxResults = 42; |
| 13655 var arg_minChangeTime = "foo"; | 13655 var arg_minChangeTime = "foo"; |
| 13656 var arg_objectIds = buildUnnamed1498(); | 13656 var arg_objectIds = buildUnnamed1510(); |
| 13657 var arg_objectType = "foo"; | 13657 var arg_objectType = "foo"; |
| 13658 var arg_pageToken = "foo"; | 13658 var arg_pageToken = "foo"; |
| 13659 var arg_searchString = "foo"; | 13659 var arg_searchString = "foo"; |
| 13660 var arg_userProfileIds = buildUnnamed1499(); | 13660 var arg_userProfileIds = buildUnnamed1511(); |
| 13661 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13661 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13662 var path = (req.url).path; | 13662 var path = (req.url).path; |
| 13663 var pathOffset = 0; | 13663 var pathOffset = 0; |
| 13664 var index; | 13664 var index; |
| 13665 var subPart; | 13665 var subPart; |
| 13666 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13666 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13667 pathOffset += 1; | 13667 pathOffset += 1; |
| 13668 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 13668 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| 13669 pathOffset += 18; | 13669 pathOffset += 18; |
| 13670 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13670 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13718 | 13718 |
| 13719 }); | 13719 }); |
| 13720 | 13720 |
| 13721 | 13721 |
| 13722 unittest.group("resource-CitiesResourceApi", () { | 13722 unittest.group("resource-CitiesResourceApi", () { |
| 13723 unittest.test("method--list", () { | 13723 unittest.test("method--list", () { |
| 13724 | 13724 |
| 13725 var mock = new HttpServerMock(); | 13725 var mock = new HttpServerMock(); |
| 13726 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; | 13726 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; |
| 13727 var arg_profileId = "foo"; | 13727 var arg_profileId = "foo"; |
| 13728 var arg_countryDartIds = buildUnnamed1500(); | 13728 var arg_countryDartIds = buildUnnamed1512(); |
| 13729 var arg_dartIds = buildUnnamed1501(); | 13729 var arg_dartIds = buildUnnamed1513(); |
| 13730 var arg_namePrefix = "foo"; | 13730 var arg_namePrefix = "foo"; |
| 13731 var arg_regionDartIds = buildUnnamed1502(); | 13731 var arg_regionDartIds = buildUnnamed1514(); |
| 13732 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13732 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13733 var path = (req.url).path; | 13733 var path = (req.url).path; |
| 13734 var pathOffset = 0; | 13734 var pathOffset = 0; |
| 13735 var index; | 13735 var index; |
| 13736 var subPart; | 13736 var subPart; |
| 13737 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13737 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13738 pathOffset += 1; | 13738 pathOffset += 1; |
| 13739 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 13739 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| 13740 pathOffset += 18; | 13740 pathOffset += 18; |
| 13741 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13741 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14066 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { | 14066 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { |
| 14067 checkContentCategory(response); | 14067 checkContentCategory(response); |
| 14068 }))); | 14068 }))); |
| 14069 }); | 14069 }); |
| 14070 | 14070 |
| 14071 unittest.test("method--list", () { | 14071 unittest.test("method--list", () { |
| 14072 | 14072 |
| 14073 var mock = new HttpServerMock(); | 14073 var mock = new HttpServerMock(); |
| 14074 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; | 14074 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; |
| 14075 var arg_profileId = "foo"; | 14075 var arg_profileId = "foo"; |
| 14076 var arg_ids = buildUnnamed1503(); | 14076 var arg_ids = buildUnnamed1515(); |
| 14077 var arg_maxResults = 42; | 14077 var arg_maxResults = 42; |
| 14078 var arg_pageToken = "foo"; | 14078 var arg_pageToken = "foo"; |
| 14079 var arg_searchString = "foo"; | 14079 var arg_searchString = "foo"; |
| 14080 var arg_sortField = "foo"; | 14080 var arg_sortField = "foo"; |
| 14081 var arg_sortOrder = "foo"; | 14081 var arg_sortOrder = "foo"; |
| 14082 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14082 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14083 var path = (req.url).path; | 14083 var path = (req.url).path; |
| 14084 var pathOffset = 0; | 14084 var pathOffset = 0; |
| 14085 var index; | 14085 var index; |
| 14086 var subPart; | 14086 var subPart; |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14691 checkCreativeFieldValue(response); | 14691 checkCreativeFieldValue(response); |
| 14692 }))); | 14692 }))); |
| 14693 }); | 14693 }); |
| 14694 | 14694 |
| 14695 unittest.test("method--list", () { | 14695 unittest.test("method--list", () { |
| 14696 | 14696 |
| 14697 var mock = new HttpServerMock(); | 14697 var mock = new HttpServerMock(); |
| 14698 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; | 14698 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; |
| 14699 var arg_profileId = "foo"; | 14699 var arg_profileId = "foo"; |
| 14700 var arg_creativeFieldId = "foo"; | 14700 var arg_creativeFieldId = "foo"; |
| 14701 var arg_ids = buildUnnamed1504(); | 14701 var arg_ids = buildUnnamed1516(); |
| 14702 var arg_maxResults = 42; | 14702 var arg_maxResults = 42; |
| 14703 var arg_pageToken = "foo"; | 14703 var arg_pageToken = "foo"; |
| 14704 var arg_searchString = "foo"; | 14704 var arg_searchString = "foo"; |
| 14705 var arg_sortField = "foo"; | 14705 var arg_sortField = "foo"; |
| 14706 var arg_sortOrder = "foo"; | 14706 var arg_sortOrder = "foo"; |
| 14707 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14707 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14708 var path = (req.url).path; | 14708 var path = (req.url).path; |
| 14709 var pathOffset = 0; | 14709 var pathOffset = 0; |
| 14710 var index; | 14710 var index; |
| 14711 var subPart; | 14711 var subPart; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15068 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { | 15068 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { |
| 15069 checkCreativeField(response); | 15069 checkCreativeField(response); |
| 15070 }))); | 15070 }))); |
| 15071 }); | 15071 }); |
| 15072 | 15072 |
| 15073 unittest.test("method--list", () { | 15073 unittest.test("method--list", () { |
| 15074 | 15074 |
| 15075 var mock = new HttpServerMock(); | 15075 var mock = new HttpServerMock(); |
| 15076 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; | 15076 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; |
| 15077 var arg_profileId = "foo"; | 15077 var arg_profileId = "foo"; |
| 15078 var arg_advertiserIds = buildUnnamed1505(); | 15078 var arg_advertiserIds = buildUnnamed1517(); |
| 15079 var arg_ids = buildUnnamed1506(); | 15079 var arg_ids = buildUnnamed1518(); |
| 15080 var arg_maxResults = 42; | 15080 var arg_maxResults = 42; |
| 15081 var arg_pageToken = "foo"; | 15081 var arg_pageToken = "foo"; |
| 15082 var arg_searchString = "foo"; | 15082 var arg_searchString = "foo"; |
| 15083 var arg_sortField = "foo"; | 15083 var arg_sortField = "foo"; |
| 15084 var arg_sortOrder = "foo"; | 15084 var arg_sortOrder = "foo"; |
| 15085 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15085 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15086 var path = (req.url).path; | 15086 var path = (req.url).path; |
| 15087 var pathOffset = 0; | 15087 var pathOffset = 0; |
| 15088 var index; | 15088 var index; |
| 15089 var subPart; | 15089 var subPart; |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15369 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { | 15369 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { |
| 15370 checkCreativeGroup(response); | 15370 checkCreativeGroup(response); |
| 15371 }))); | 15371 }))); |
| 15372 }); | 15372 }); |
| 15373 | 15373 |
| 15374 unittest.test("method--list", () { | 15374 unittest.test("method--list", () { |
| 15375 | 15375 |
| 15376 var mock = new HttpServerMock(); | 15376 var mock = new HttpServerMock(); |
| 15377 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; | 15377 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; |
| 15378 var arg_profileId = "foo"; | 15378 var arg_profileId = "foo"; |
| 15379 var arg_advertiserIds = buildUnnamed1507(); | 15379 var arg_advertiserIds = buildUnnamed1519(); |
| 15380 var arg_groupNumber = 42; | 15380 var arg_groupNumber = 42; |
| 15381 var arg_ids = buildUnnamed1508(); | 15381 var arg_ids = buildUnnamed1520(); |
| 15382 var arg_maxResults = 42; | 15382 var arg_maxResults = 42; |
| 15383 var arg_pageToken = "foo"; | 15383 var arg_pageToken = "foo"; |
| 15384 var arg_searchString = "foo"; | 15384 var arg_searchString = "foo"; |
| 15385 var arg_sortField = "foo"; | 15385 var arg_sortField = "foo"; |
| 15386 var arg_sortOrder = "foo"; | 15386 var arg_sortOrder = "foo"; |
| 15387 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15387 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15388 var path = (req.url).path; | 15388 var path = (req.url).path; |
| 15389 var pathOffset = 0; | 15389 var pathOffset = 0; |
| 15390 var index; | 15390 var index; |
| 15391 var subPart; | 15391 var subPart; |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15676 | 15676 |
| 15677 unittest.test("method--list", () { | 15677 unittest.test("method--list", () { |
| 15678 | 15678 |
| 15679 var mock = new HttpServerMock(); | 15679 var mock = new HttpServerMock(); |
| 15680 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; | 15680 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; |
| 15681 var arg_profileId = "foo"; | 15681 var arg_profileId = "foo"; |
| 15682 var arg_active = true; | 15682 var arg_active = true; |
| 15683 var arg_advertiserId = "foo"; | 15683 var arg_advertiserId = "foo"; |
| 15684 var arg_archived = true; | 15684 var arg_archived = true; |
| 15685 var arg_campaignId = "foo"; | 15685 var arg_campaignId = "foo"; |
| 15686 var arg_companionCreativeIds = buildUnnamed1509(); | 15686 var arg_companionCreativeIds = buildUnnamed1521(); |
| 15687 var arg_creativeFieldIds = buildUnnamed1510(); | 15687 var arg_creativeFieldIds = buildUnnamed1522(); |
| 15688 var arg_ids = buildUnnamed1511(); | 15688 var arg_ids = buildUnnamed1523(); |
| 15689 var arg_maxResults = 42; | 15689 var arg_maxResults = 42; |
| 15690 var arg_pageToken = "foo"; | 15690 var arg_pageToken = "foo"; |
| 15691 var arg_renderingIds = buildUnnamed1512(); | 15691 var arg_renderingIds = buildUnnamed1524(); |
| 15692 var arg_searchString = "foo"; | 15692 var arg_searchString = "foo"; |
| 15693 var arg_sizeIds = buildUnnamed1513(); | 15693 var arg_sizeIds = buildUnnamed1525(); |
| 15694 var arg_sortField = "foo"; | 15694 var arg_sortField = "foo"; |
| 15695 var arg_sortOrder = "foo"; | 15695 var arg_sortOrder = "foo"; |
| 15696 var arg_studioCreativeId = "foo"; | 15696 var arg_studioCreativeId = "foo"; |
| 15697 var arg_types = buildUnnamed1514(); | 15697 var arg_types = buildUnnamed1526(); |
| 15698 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15698 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15699 var path = (req.url).path; | 15699 var path = (req.url).path; |
| 15700 var pathOffset = 0; | 15700 var pathOffset = 0; |
| 15701 var index; | 15701 var index; |
| 15702 var subPart; | 15702 var subPart; |
| 15703 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 15703 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 15704 pathOffset += 1; | 15704 pathOffset += 1; |
| 15705 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 15705 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| 15706 pathOffset += 18; | 15706 pathOffset += 18; |
| 15707 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 15707 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15999 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { | 15999 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { |
| 16000 checkDirectorySiteContact(response); | 16000 checkDirectorySiteContact(response); |
| 16001 }))); | 16001 }))); |
| 16002 }); | 16002 }); |
| 16003 | 16003 |
| 16004 unittest.test("method--list", () { | 16004 unittest.test("method--list", () { |
| 16005 | 16005 |
| 16006 var mock = new HttpServerMock(); | 16006 var mock = new HttpServerMock(); |
| 16007 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; | 16007 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; |
| 16008 var arg_profileId = "foo"; | 16008 var arg_profileId = "foo"; |
| 16009 var arg_directorySiteIds = buildUnnamed1515(); | 16009 var arg_directorySiteIds = buildUnnamed1527(); |
| 16010 var arg_ids = buildUnnamed1516(); | 16010 var arg_ids = buildUnnamed1528(); |
| 16011 var arg_maxResults = 42; | 16011 var arg_maxResults = 42; |
| 16012 var arg_pageToken = "foo"; | 16012 var arg_pageToken = "foo"; |
| 16013 var arg_searchString = "foo"; | 16013 var arg_searchString = "foo"; |
| 16014 var arg_sortField = "foo"; | 16014 var arg_sortField = "foo"; |
| 16015 var arg_sortOrder = "foo"; | 16015 var arg_sortOrder = "foo"; |
| 16016 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16016 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16017 var path = (req.url).path; | 16017 var path = (req.url).path; |
| 16018 var pathOffset = 0; | 16018 var pathOffset = 0; |
| 16019 var index; | 16019 var index; |
| 16020 var subPart; | 16020 var subPart; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16190 | 16190 |
| 16191 var mock = new HttpServerMock(); | 16191 var mock = new HttpServerMock(); |
| 16192 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; | 16192 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; |
| 16193 var arg_profileId = "foo"; | 16193 var arg_profileId = "foo"; |
| 16194 var arg_acceptsInStreamVideoPlacements = true; | 16194 var arg_acceptsInStreamVideoPlacements = true; |
| 16195 var arg_acceptsInterstitialPlacements = true; | 16195 var arg_acceptsInterstitialPlacements = true; |
| 16196 var arg_acceptsPublisherPaidPlacements = true; | 16196 var arg_acceptsPublisherPaidPlacements = true; |
| 16197 var arg_active = true; | 16197 var arg_active = true; |
| 16198 var arg_countryId = "foo"; | 16198 var arg_countryId = "foo"; |
| 16199 var arg_dfpNetworkCode = "foo"; | 16199 var arg_dfpNetworkCode = "foo"; |
| 16200 var arg_ids = buildUnnamed1517(); | 16200 var arg_ids = buildUnnamed1529(); |
| 16201 var arg_maxResults = 42; | 16201 var arg_maxResults = 42; |
| 16202 var arg_pageToken = "foo"; | 16202 var arg_pageToken = "foo"; |
| 16203 var arg_parentId = "foo"; | 16203 var arg_parentId = "foo"; |
| 16204 var arg_searchString = "foo"; | 16204 var arg_searchString = "foo"; |
| 16205 var arg_sortField = "foo"; | 16205 var arg_sortField = "foo"; |
| 16206 var arg_sortOrder = "foo"; | 16206 var arg_sortOrder = "foo"; |
| 16207 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16207 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16208 var path = (req.url).path; | 16208 var path = (req.url).path; |
| 16209 var pathOffset = 0; | 16209 var pathOffset = 0; |
| 16210 var index; | 16210 var index; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16384 checkDynamicTargetingKey(response); | 16384 checkDynamicTargetingKey(response); |
| 16385 }))); | 16385 }))); |
| 16386 }); | 16386 }); |
| 16387 | 16387 |
| 16388 unittest.test("method--list", () { | 16388 unittest.test("method--list", () { |
| 16389 | 16389 |
| 16390 var mock = new HttpServerMock(); | 16390 var mock = new HttpServerMock(); |
| 16391 api.DynamicTargetingKeysResourceApi res = new api.DfareportingApi(mock).dy
namicTargetingKeys; | 16391 api.DynamicTargetingKeysResourceApi res = new api.DfareportingApi(mock).dy
namicTargetingKeys; |
| 16392 var arg_profileId = "foo"; | 16392 var arg_profileId = "foo"; |
| 16393 var arg_advertiserId = "foo"; | 16393 var arg_advertiserId = "foo"; |
| 16394 var arg_names = buildUnnamed1518(); | 16394 var arg_names = buildUnnamed1530(); |
| 16395 var arg_objectId = "foo"; | 16395 var arg_objectId = "foo"; |
| 16396 var arg_objectType = "foo"; | 16396 var arg_objectType = "foo"; |
| 16397 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16397 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16398 var path = (req.url).path; | 16398 var path = (req.url).path; |
| 16399 var pathOffset = 0; | 16399 var pathOffset = 0; |
| 16400 var index; | 16400 var index; |
| 16401 var subPart; | 16401 var subPart; |
| 16402 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16402 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 16403 pathOffset += 1; | 16403 pathOffset += 1; |
| 16404 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 16404 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16622 unittest.test("method--list", () { | 16622 unittest.test("method--list", () { |
| 16623 | 16623 |
| 16624 var mock = new HttpServerMock(); | 16624 var mock = new HttpServerMock(); |
| 16625 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; | 16625 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; |
| 16626 var arg_profileId = "foo"; | 16626 var arg_profileId = "foo"; |
| 16627 var arg_adId = "foo"; | 16627 var arg_adId = "foo"; |
| 16628 var arg_advertiserId = "foo"; | 16628 var arg_advertiserId = "foo"; |
| 16629 var arg_campaignId = "foo"; | 16629 var arg_campaignId = "foo"; |
| 16630 var arg_definitionsOnly = true; | 16630 var arg_definitionsOnly = true; |
| 16631 var arg_enabled = true; | 16631 var arg_enabled = true; |
| 16632 var arg_eventTagTypes = buildUnnamed1519(); | 16632 var arg_eventTagTypes = buildUnnamed1531(); |
| 16633 var arg_ids = buildUnnamed1520(); | 16633 var arg_ids = buildUnnamed1532(); |
| 16634 var arg_searchString = "foo"; | 16634 var arg_searchString = "foo"; |
| 16635 var arg_sortField = "foo"; | 16635 var arg_sortField = "foo"; |
| 16636 var arg_sortOrder = "foo"; | 16636 var arg_sortOrder = "foo"; |
| 16637 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16637 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16638 var path = (req.url).path; | 16638 var path = (req.url).path; |
| 16639 var pathOffset = 0; | 16639 var pathOffset = 0; |
| 16640 var index; | 16640 var index; |
| 16641 var subPart; | 16641 var subPart; |
| 16642 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16642 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 16643 pathOffset += 1; | 16643 pathOffset += 1; |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17161 checkFloodlightActivity(response); | 17161 checkFloodlightActivity(response); |
| 17162 }))); | 17162 }))); |
| 17163 }); | 17163 }); |
| 17164 | 17164 |
| 17165 unittest.test("method--list", () { | 17165 unittest.test("method--list", () { |
| 17166 | 17166 |
| 17167 var mock = new HttpServerMock(); | 17167 var mock = new HttpServerMock(); |
| 17168 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; | 17168 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; |
| 17169 var arg_profileId = "foo"; | 17169 var arg_profileId = "foo"; |
| 17170 var arg_advertiserId = "foo"; | 17170 var arg_advertiserId = "foo"; |
| 17171 var arg_floodlightActivityGroupIds = buildUnnamed1521(); | 17171 var arg_floodlightActivityGroupIds = buildUnnamed1533(); |
| 17172 var arg_floodlightActivityGroupName = "foo"; | 17172 var arg_floodlightActivityGroupName = "foo"; |
| 17173 var arg_floodlightActivityGroupTagString = "foo"; | 17173 var arg_floodlightActivityGroupTagString = "foo"; |
| 17174 var arg_floodlightActivityGroupType = "foo"; | 17174 var arg_floodlightActivityGroupType = "foo"; |
| 17175 var arg_floodlightConfigurationId = "foo"; | 17175 var arg_floodlightConfigurationId = "foo"; |
| 17176 var arg_ids = buildUnnamed1522(); | 17176 var arg_ids = buildUnnamed1534(); |
| 17177 var arg_maxResults = 42; | 17177 var arg_maxResults = 42; |
| 17178 var arg_pageToken = "foo"; | 17178 var arg_pageToken = "foo"; |
| 17179 var arg_searchString = "foo"; | 17179 var arg_searchString = "foo"; |
| 17180 var arg_sortField = "foo"; | 17180 var arg_sortField = "foo"; |
| 17181 var arg_sortOrder = "foo"; | 17181 var arg_sortOrder = "foo"; |
| 17182 var arg_tagString = "foo"; | 17182 var arg_tagString = "foo"; |
| 17183 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17183 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17184 var path = (req.url).path; | 17184 var path = (req.url).path; |
| 17185 var pathOffset = 0; | 17185 var pathOffset = 0; |
| 17186 var index; | 17186 var index; |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17475 }))); | 17475 }))); |
| 17476 }); | 17476 }); |
| 17477 | 17477 |
| 17478 unittest.test("method--list", () { | 17478 unittest.test("method--list", () { |
| 17479 | 17479 |
| 17480 var mock = new HttpServerMock(); | 17480 var mock = new HttpServerMock(); |
| 17481 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; | 17481 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; |
| 17482 var arg_profileId = "foo"; | 17482 var arg_profileId = "foo"; |
| 17483 var arg_advertiserId = "foo"; | 17483 var arg_advertiserId = "foo"; |
| 17484 var arg_floodlightConfigurationId = "foo"; | 17484 var arg_floodlightConfigurationId = "foo"; |
| 17485 var arg_ids = buildUnnamed1523(); | 17485 var arg_ids = buildUnnamed1535(); |
| 17486 var arg_maxResults = 42; | 17486 var arg_maxResults = 42; |
| 17487 var arg_pageToken = "foo"; | 17487 var arg_pageToken = "foo"; |
| 17488 var arg_searchString = "foo"; | 17488 var arg_searchString = "foo"; |
| 17489 var arg_sortField = "foo"; | 17489 var arg_sortField = "foo"; |
| 17490 var arg_sortOrder = "foo"; | 17490 var arg_sortOrder = "foo"; |
| 17491 var arg_type = "foo"; | 17491 var arg_type = "foo"; |
| 17492 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17492 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17493 var path = (req.url).path; | 17493 var path = (req.url).path; |
| 17494 var pathOffset = 0; | 17494 var pathOffset = 0; |
| 17495 var index; | 17495 var index; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17721 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { | 17721 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { |
| 17722 checkFloodlightConfiguration(response); | 17722 checkFloodlightConfiguration(response); |
| 17723 }))); | 17723 }))); |
| 17724 }); | 17724 }); |
| 17725 | 17725 |
| 17726 unittest.test("method--list", () { | 17726 unittest.test("method--list", () { |
| 17727 | 17727 |
| 17728 var mock = new HttpServerMock(); | 17728 var mock = new HttpServerMock(); |
| 17729 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; | 17729 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; |
| 17730 var arg_profileId = "foo"; | 17730 var arg_profileId = "foo"; |
| 17731 var arg_ids = buildUnnamed1524(); | 17731 var arg_ids = buildUnnamed1536(); |
| 17732 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17732 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17733 var path = (req.url).path; | 17733 var path = (req.url).path; |
| 17734 var pathOffset = 0; | 17734 var pathOffset = 0; |
| 17735 var index; | 17735 var index; |
| 17736 var subPart; | 17736 var subPart; |
| 17737 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17737 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17738 pathOffset += 1; | 17738 pathOffset += 1; |
| 17739 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 17739 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| 17740 pathOffset += 18; | 17740 pathOffset += 18; |
| 17741 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 17741 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17962 checkInventoryItem(response); | 17962 checkInventoryItem(response); |
| 17963 }))); | 17963 }))); |
| 17964 }); | 17964 }); |
| 17965 | 17965 |
| 17966 unittest.test("method--list", () { | 17966 unittest.test("method--list", () { |
| 17967 | 17967 |
| 17968 var mock = new HttpServerMock(); | 17968 var mock = new HttpServerMock(); |
| 17969 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; | 17969 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; |
| 17970 var arg_profileId = "foo"; | 17970 var arg_profileId = "foo"; |
| 17971 var arg_projectId = "foo"; | 17971 var arg_projectId = "foo"; |
| 17972 var arg_ids = buildUnnamed1525(); | 17972 var arg_ids = buildUnnamed1537(); |
| 17973 var arg_inPlan = true; | 17973 var arg_inPlan = true; |
| 17974 var arg_maxResults = 42; | 17974 var arg_maxResults = 42; |
| 17975 var arg_orderId = buildUnnamed1526(); | 17975 var arg_orderId = buildUnnamed1538(); |
| 17976 var arg_pageToken = "foo"; | 17976 var arg_pageToken = "foo"; |
| 17977 var arg_siteId = buildUnnamed1527(); | 17977 var arg_siteId = buildUnnamed1539(); |
| 17978 var arg_sortField = "foo"; | 17978 var arg_sortField = "foo"; |
| 17979 var arg_sortOrder = "foo"; | 17979 var arg_sortOrder = "foo"; |
| 17980 var arg_type = "foo"; | 17980 var arg_type = "foo"; |
| 17981 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17981 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17982 var path = (req.url).path; | 17982 var path = (req.url).path; |
| 17983 var pathOffset = 0; | 17983 var pathOffset = 0; |
| 17984 var index; | 17984 var index; |
| 17985 var subPart; | 17985 var subPart; |
| 17986 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17986 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17987 pathOffset += 1; | 17987 pathOffset += 1; |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18900 }))); | 18900 }))); |
| 18901 }); | 18901 }); |
| 18902 | 18902 |
| 18903 unittest.test("method--list", () { | 18903 unittest.test("method--list", () { |
| 18904 | 18904 |
| 18905 var mock = new HttpServerMock(); | 18905 var mock = new HttpServerMock(); |
| 18906 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; | 18906 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; |
| 18907 var arg_profileId = "foo"; | 18907 var arg_profileId = "foo"; |
| 18908 var arg_projectId = "foo"; | 18908 var arg_projectId = "foo"; |
| 18909 var arg_approved = true; | 18909 var arg_approved = true; |
| 18910 var arg_ids = buildUnnamed1528(); | 18910 var arg_ids = buildUnnamed1540(); |
| 18911 var arg_maxResults = 42; | 18911 var arg_maxResults = 42; |
| 18912 var arg_orderId = buildUnnamed1529(); | 18912 var arg_orderId = buildUnnamed1541(); |
| 18913 var arg_pageToken = "foo"; | 18913 var arg_pageToken = "foo"; |
| 18914 var arg_searchString = "foo"; | 18914 var arg_searchString = "foo"; |
| 18915 var arg_siteId = buildUnnamed1530(); | 18915 var arg_siteId = buildUnnamed1542(); |
| 18916 var arg_sortField = "foo"; | 18916 var arg_sortField = "foo"; |
| 18917 var arg_sortOrder = "foo"; | 18917 var arg_sortOrder = "foo"; |
| 18918 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18918 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18919 var path = (req.url).path; | 18919 var path = (req.url).path; |
| 18920 var pathOffset = 0; | 18920 var pathOffset = 0; |
| 18921 var index; | 18921 var index; |
| 18922 var subPart; | 18922 var subPart; |
| 18923 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18923 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18924 pathOffset += 1; | 18924 pathOffset += 1; |
| 18925 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 18925 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19047 checkOrder(response); | 19047 checkOrder(response); |
| 19048 }))); | 19048 }))); |
| 19049 }); | 19049 }); |
| 19050 | 19050 |
| 19051 unittest.test("method--list", () { | 19051 unittest.test("method--list", () { |
| 19052 | 19052 |
| 19053 var mock = new HttpServerMock(); | 19053 var mock = new HttpServerMock(); |
| 19054 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; | 19054 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; |
| 19055 var arg_profileId = "foo"; | 19055 var arg_profileId = "foo"; |
| 19056 var arg_projectId = "foo"; | 19056 var arg_projectId = "foo"; |
| 19057 var arg_ids = buildUnnamed1531(); | 19057 var arg_ids = buildUnnamed1543(); |
| 19058 var arg_maxResults = 42; | 19058 var arg_maxResults = 42; |
| 19059 var arg_pageToken = "foo"; | 19059 var arg_pageToken = "foo"; |
| 19060 var arg_searchString = "foo"; | 19060 var arg_searchString = "foo"; |
| 19061 var arg_siteId = buildUnnamed1532(); | 19061 var arg_siteId = buildUnnamed1544(); |
| 19062 var arg_sortField = "foo"; | 19062 var arg_sortField = "foo"; |
| 19063 var arg_sortOrder = "foo"; | 19063 var arg_sortOrder = "foo"; |
| 19064 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19064 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19065 var path = (req.url).path; | 19065 var path = (req.url).path; |
| 19066 var pathOffset = 0; | 19066 var pathOffset = 0; |
| 19067 var index; | 19067 var index; |
| 19068 var subPart; | 19068 var subPart; |
| 19069 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19069 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19070 pathOffset += 1; | 19070 pathOffset += 1; |
| 19071 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 19071 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19239 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { | 19239 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { |
| 19240 checkPlacementGroup(response); | 19240 checkPlacementGroup(response); |
| 19241 }))); | 19241 }))); |
| 19242 }); | 19242 }); |
| 19243 | 19243 |
| 19244 unittest.test("method--list", () { | 19244 unittest.test("method--list", () { |
| 19245 | 19245 |
| 19246 var mock = new HttpServerMock(); | 19246 var mock = new HttpServerMock(); |
| 19247 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; | 19247 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; |
| 19248 var arg_profileId = "foo"; | 19248 var arg_profileId = "foo"; |
| 19249 var arg_advertiserIds = buildUnnamed1533(); | 19249 var arg_advertiserIds = buildUnnamed1545(); |
| 19250 var arg_archived = true; | 19250 var arg_archived = true; |
| 19251 var arg_campaignIds = buildUnnamed1534(); | 19251 var arg_campaignIds = buildUnnamed1546(); |
| 19252 var arg_contentCategoryIds = buildUnnamed1535(); | 19252 var arg_contentCategoryIds = buildUnnamed1547(); |
| 19253 var arg_directorySiteIds = buildUnnamed1536(); | 19253 var arg_directorySiteIds = buildUnnamed1548(); |
| 19254 var arg_ids = buildUnnamed1537(); | 19254 var arg_ids = buildUnnamed1549(); |
| 19255 var arg_maxEndDate = "foo"; | 19255 var arg_maxEndDate = "foo"; |
| 19256 var arg_maxResults = 42; | 19256 var arg_maxResults = 42; |
| 19257 var arg_maxStartDate = "foo"; | 19257 var arg_maxStartDate = "foo"; |
| 19258 var arg_minEndDate = "foo"; | 19258 var arg_minEndDate = "foo"; |
| 19259 var arg_minStartDate = "foo"; | 19259 var arg_minStartDate = "foo"; |
| 19260 var arg_pageToken = "foo"; | 19260 var arg_pageToken = "foo"; |
| 19261 var arg_placementGroupType = "foo"; | 19261 var arg_placementGroupType = "foo"; |
| 19262 var arg_placementStrategyIds = buildUnnamed1538(); | 19262 var arg_placementStrategyIds = buildUnnamed1550(); |
| 19263 var arg_pricingTypes = buildUnnamed1539(); | 19263 var arg_pricingTypes = buildUnnamed1551(); |
| 19264 var arg_searchString = "foo"; | 19264 var arg_searchString = "foo"; |
| 19265 var arg_siteIds = buildUnnamed1540(); | 19265 var arg_siteIds = buildUnnamed1552(); |
| 19266 var arg_sortField = "foo"; | 19266 var arg_sortField = "foo"; |
| 19267 var arg_sortOrder = "foo"; | 19267 var arg_sortOrder = "foo"; |
| 19268 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19268 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19269 var path = (req.url).path; | 19269 var path = (req.url).path; |
| 19270 var pathOffset = 0; | 19270 var pathOffset = 0; |
| 19271 var index; | 19271 var index; |
| 19272 var subPart; | 19272 var subPart; |
| 19273 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19273 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19274 pathOffset += 1; | 19274 pathOffset += 1; |
| 19275 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 19275 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19619 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { | 19619 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { |
| 19620 checkPlacementStrategy(response); | 19620 checkPlacementStrategy(response); |
| 19621 }))); | 19621 }))); |
| 19622 }); | 19622 }); |
| 19623 | 19623 |
| 19624 unittest.test("method--list", () { | 19624 unittest.test("method--list", () { |
| 19625 | 19625 |
| 19626 var mock = new HttpServerMock(); | 19626 var mock = new HttpServerMock(); |
| 19627 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; | 19627 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; |
| 19628 var arg_profileId = "foo"; | 19628 var arg_profileId = "foo"; |
| 19629 var arg_ids = buildUnnamed1541(); | 19629 var arg_ids = buildUnnamed1553(); |
| 19630 var arg_maxResults = 42; | 19630 var arg_maxResults = 42; |
| 19631 var arg_pageToken = "foo"; | 19631 var arg_pageToken = "foo"; |
| 19632 var arg_searchString = "foo"; | 19632 var arg_searchString = "foo"; |
| 19633 var arg_sortField = "foo"; | 19633 var arg_sortField = "foo"; |
| 19634 var arg_sortOrder = "foo"; | 19634 var arg_sortOrder = "foo"; |
| 19635 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19635 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19636 var path = (req.url).path; | 19636 var path = (req.url).path; |
| 19637 var pathOffset = 0; | 19637 var pathOffset = 0; |
| 19638 var index; | 19638 var index; |
| 19639 var subPart; | 19639 var subPart; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19805 }); | 19805 }); |
| 19806 | 19806 |
| 19807 | 19807 |
| 19808 unittest.group("resource-PlacementsResourceApi", () { | 19808 unittest.group("resource-PlacementsResourceApi", () { |
| 19809 unittest.test("method--generatetags", () { | 19809 unittest.test("method--generatetags", () { |
| 19810 | 19810 |
| 19811 var mock = new HttpServerMock(); | 19811 var mock = new HttpServerMock(); |
| 19812 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19812 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19813 var arg_profileId = "foo"; | 19813 var arg_profileId = "foo"; |
| 19814 var arg_campaignId = "foo"; | 19814 var arg_campaignId = "foo"; |
| 19815 var arg_placementIds = buildUnnamed1542(); | 19815 var arg_placementIds = buildUnnamed1554(); |
| 19816 var arg_tagFormats = buildUnnamed1543(); | 19816 var arg_tagFormats = buildUnnamed1555(); |
| 19817 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19817 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19818 var path = (req.url).path; | 19818 var path = (req.url).path; |
| 19819 var pathOffset = 0; | 19819 var pathOffset = 0; |
| 19820 var index; | 19820 var index; |
| 19821 var subPart; | 19821 var subPart; |
| 19822 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19822 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19823 pathOffset += 1; | 19823 pathOffset += 1; |
| 19824 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 19824 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| 19825 pathOffset += 18; | 19825 pathOffset += 18; |
| 19826 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 19826 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19977 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { | 19977 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { |
| 19978 checkPlacement(response); | 19978 checkPlacement(response); |
| 19979 }))); | 19979 }))); |
| 19980 }); | 19980 }); |
| 19981 | 19981 |
| 19982 unittest.test("method--list", () { | 19982 unittest.test("method--list", () { |
| 19983 | 19983 |
| 19984 var mock = new HttpServerMock(); | 19984 var mock = new HttpServerMock(); |
| 19985 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19985 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19986 var arg_profileId = "foo"; | 19986 var arg_profileId = "foo"; |
| 19987 var arg_advertiserIds = buildUnnamed1544(); | 19987 var arg_advertiserIds = buildUnnamed1556(); |
| 19988 var arg_archived = true; | 19988 var arg_archived = true; |
| 19989 var arg_campaignIds = buildUnnamed1545(); | 19989 var arg_campaignIds = buildUnnamed1557(); |
| 19990 var arg_compatibilities = buildUnnamed1546(); | 19990 var arg_compatibilities = buildUnnamed1558(); |
| 19991 var arg_contentCategoryIds = buildUnnamed1547(); | 19991 var arg_contentCategoryIds = buildUnnamed1559(); |
| 19992 var arg_directorySiteIds = buildUnnamed1548(); | 19992 var arg_directorySiteIds = buildUnnamed1560(); |
| 19993 var arg_groupIds = buildUnnamed1549(); | 19993 var arg_groupIds = buildUnnamed1561(); |
| 19994 var arg_ids = buildUnnamed1550(); | 19994 var arg_ids = buildUnnamed1562(); |
| 19995 var arg_maxEndDate = "foo"; | 19995 var arg_maxEndDate = "foo"; |
| 19996 var arg_maxResults = 42; | 19996 var arg_maxResults = 42; |
| 19997 var arg_maxStartDate = "foo"; | 19997 var arg_maxStartDate = "foo"; |
| 19998 var arg_minEndDate = "foo"; | 19998 var arg_minEndDate = "foo"; |
| 19999 var arg_minStartDate = "foo"; | 19999 var arg_minStartDate = "foo"; |
| 20000 var arg_pageToken = "foo"; | 20000 var arg_pageToken = "foo"; |
| 20001 var arg_paymentSource = "foo"; | 20001 var arg_paymentSource = "foo"; |
| 20002 var arg_placementStrategyIds = buildUnnamed1551(); | 20002 var arg_placementStrategyIds = buildUnnamed1563(); |
| 20003 var arg_pricingTypes = buildUnnamed1552(); | 20003 var arg_pricingTypes = buildUnnamed1564(); |
| 20004 var arg_searchString = "foo"; | 20004 var arg_searchString = "foo"; |
| 20005 var arg_siteIds = buildUnnamed1553(); | 20005 var arg_siteIds = buildUnnamed1565(); |
| 20006 var arg_sizeIds = buildUnnamed1554(); | 20006 var arg_sizeIds = buildUnnamed1566(); |
| 20007 var arg_sortField = "foo"; | 20007 var arg_sortField = "foo"; |
| 20008 var arg_sortOrder = "foo"; | 20008 var arg_sortOrder = "foo"; |
| 20009 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 20009 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 20010 var path = (req.url).path; | 20010 var path = (req.url).path; |
| 20011 var pathOffset = 0; | 20011 var pathOffset = 0; |
| 20012 var index; | 20012 var index; |
| 20013 var subPart; | 20013 var subPart; |
| 20014 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 20014 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 20015 pathOffset += 1; | 20015 pathOffset += 1; |
| 20016 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 20016 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 20479 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { | 20479 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { |
| 20480 checkProject(response); | 20480 checkProject(response); |
| 20481 }))); | 20481 }))); |
| 20482 }); | 20482 }); |
| 20483 | 20483 |
| 20484 unittest.test("method--list", () { | 20484 unittest.test("method--list", () { |
| 20485 | 20485 |
| 20486 var mock = new HttpServerMock(); | 20486 var mock = new HttpServerMock(); |
| 20487 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; | 20487 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; |
| 20488 var arg_profileId = "foo"; | 20488 var arg_profileId = "foo"; |
| 20489 var arg_advertiserIds = buildUnnamed1555(); | 20489 var arg_advertiserIds = buildUnnamed1567(); |
| 20490 var arg_ids = buildUnnamed1556(); | 20490 var arg_ids = buildUnnamed1568(); |
| 20491 var arg_maxResults = 42; | 20491 var arg_maxResults = 42; |
| 20492 var arg_pageToken = "foo"; | 20492 var arg_pageToken = "foo"; |
| 20493 var arg_searchString = "foo"; | 20493 var arg_searchString = "foo"; |
| 20494 var arg_sortField = "foo"; | 20494 var arg_sortField = "foo"; |
| 20495 var arg_sortOrder = "foo"; | 20495 var arg_sortOrder = "foo"; |
| 20496 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 20496 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 20497 var path = (req.url).path; | 20497 var path = (req.url).path; |
| 20498 var pathOffset = 0; | 20498 var pathOffset = 0; |
| 20499 var index; | 20499 var index; |
| 20500 var subPart; | 20500 var subPart; |
| (...skipping 1327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21828 unittest.test("method--list", () { | 21828 unittest.test("method--list", () { |
| 21829 | 21829 |
| 21830 var mock = new HttpServerMock(); | 21830 var mock = new HttpServerMock(); |
| 21831 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; | 21831 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; |
| 21832 var arg_profileId = "foo"; | 21832 var arg_profileId = "foo"; |
| 21833 var arg_acceptsInStreamVideoPlacements = true; | 21833 var arg_acceptsInStreamVideoPlacements = true; |
| 21834 var arg_acceptsInterstitialPlacements = true; | 21834 var arg_acceptsInterstitialPlacements = true; |
| 21835 var arg_acceptsPublisherPaidPlacements = true; | 21835 var arg_acceptsPublisherPaidPlacements = true; |
| 21836 var arg_adWordsSite = true; | 21836 var arg_adWordsSite = true; |
| 21837 var arg_approved = true; | 21837 var arg_approved = true; |
| 21838 var arg_campaignIds = buildUnnamed1557(); | 21838 var arg_campaignIds = buildUnnamed1569(); |
| 21839 var arg_directorySiteIds = buildUnnamed1558(); | 21839 var arg_directorySiteIds = buildUnnamed1570(); |
| 21840 var arg_ids = buildUnnamed1559(); | 21840 var arg_ids = buildUnnamed1571(); |
| 21841 var arg_maxResults = 42; | 21841 var arg_maxResults = 42; |
| 21842 var arg_pageToken = "foo"; | 21842 var arg_pageToken = "foo"; |
| 21843 var arg_searchString = "foo"; | 21843 var arg_searchString = "foo"; |
| 21844 var arg_sortField = "foo"; | 21844 var arg_sortField = "foo"; |
| 21845 var arg_sortOrder = "foo"; | 21845 var arg_sortOrder = "foo"; |
| 21846 var arg_subaccountId = "foo"; | 21846 var arg_subaccountId = "foo"; |
| 21847 var arg_unmappedSite = true; | 21847 var arg_unmappedSite = true; |
| 21848 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21848 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21849 var path = (req.url).path; | 21849 var path = (req.url).path; |
| 21850 var pathOffset = 0; | 21850 var pathOffset = 0; |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22142 }))); | 22142 }))); |
| 22143 }); | 22143 }); |
| 22144 | 22144 |
| 22145 unittest.test("method--list", () { | 22145 unittest.test("method--list", () { |
| 22146 | 22146 |
| 22147 var mock = new HttpServerMock(); | 22147 var mock = new HttpServerMock(); |
| 22148 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; | 22148 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; |
| 22149 var arg_profileId = "foo"; | 22149 var arg_profileId = "foo"; |
| 22150 var arg_height = 42; | 22150 var arg_height = 42; |
| 22151 var arg_iabStandard = true; | 22151 var arg_iabStandard = true; |
| 22152 var arg_ids = buildUnnamed1560(); | 22152 var arg_ids = buildUnnamed1572(); |
| 22153 var arg_width = 42; | 22153 var arg_width = 42; |
| 22154 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22154 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22155 var path = (req.url).path; | 22155 var path = (req.url).path; |
| 22156 var pathOffset = 0; | 22156 var pathOffset = 0; |
| 22157 var index; | 22157 var index; |
| 22158 var subPart; | 22158 var subPart; |
| 22159 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 22159 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 22160 pathOffset += 1; | 22160 pathOffset += 1; |
| 22161 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 22161 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| 22162 pathOffset += 18; | 22162 pathOffset += 18; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22319 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { | 22319 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { |
| 22320 checkSubaccount(response); | 22320 checkSubaccount(response); |
| 22321 }))); | 22321 }))); |
| 22322 }); | 22322 }); |
| 22323 | 22323 |
| 22324 unittest.test("method--list", () { | 22324 unittest.test("method--list", () { |
| 22325 | 22325 |
| 22326 var mock = new HttpServerMock(); | 22326 var mock = new HttpServerMock(); |
| 22327 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; | 22327 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; |
| 22328 var arg_profileId = "foo"; | 22328 var arg_profileId = "foo"; |
| 22329 var arg_ids = buildUnnamed1561(); | 22329 var arg_ids = buildUnnamed1573(); |
| 22330 var arg_maxResults = 42; | 22330 var arg_maxResults = 42; |
| 22331 var arg_pageToken = "foo"; | 22331 var arg_pageToken = "foo"; |
| 22332 var arg_searchString = "foo"; | 22332 var arg_searchString = "foo"; |
| 22333 var arg_sortField = "foo"; | 22333 var arg_sortField = "foo"; |
| 22334 var arg_sortOrder = "foo"; | 22334 var arg_sortOrder = "foo"; |
| 22335 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22335 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22336 var path = (req.url).path; | 22336 var path = (req.url).path; |
| 22337 var pathOffset = 0; | 22337 var pathOffset = 0; |
| 22338 var index; | 22338 var index; |
| 22339 var subPart; | 22339 var subPart; |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22901 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { | 22901 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { |
| 22902 checkUserRolePermission(response); | 22902 checkUserRolePermission(response); |
| 22903 }))); | 22903 }))); |
| 22904 }); | 22904 }); |
| 22905 | 22905 |
| 22906 unittest.test("method--list", () { | 22906 unittest.test("method--list", () { |
| 22907 | 22907 |
| 22908 var mock = new HttpServerMock(); | 22908 var mock = new HttpServerMock(); |
| 22909 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; | 22909 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; |
| 22910 var arg_profileId = "foo"; | 22910 var arg_profileId = "foo"; |
| 22911 var arg_ids = buildUnnamed1562(); | 22911 var arg_ids = buildUnnamed1574(); |
| 22912 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22912 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22913 var path = (req.url).path; | 22913 var path = (req.url).path; |
| 22914 var pathOffset = 0; | 22914 var pathOffset = 0; |
| 22915 var index; | 22915 var index; |
| 22916 var subPart; | 22916 var subPart; |
| 22917 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 22917 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 22918 pathOffset += 1; | 22918 pathOffset += 1; |
| 22919 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); | 22919 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.5/")); |
| 22920 pathOffset += 18; | 22920 pathOffset += 18; |
| 22921 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 22921 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 23130 checkUserRole(response); | 23130 checkUserRole(response); |
| 23131 }))); | 23131 }))); |
| 23132 }); | 23132 }); |
| 23133 | 23133 |
| 23134 unittest.test("method--list", () { | 23134 unittest.test("method--list", () { |
| 23135 | 23135 |
| 23136 var mock = new HttpServerMock(); | 23136 var mock = new HttpServerMock(); |
| 23137 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; | 23137 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; |
| 23138 var arg_profileId = "foo"; | 23138 var arg_profileId = "foo"; |
| 23139 var arg_accountUserRoleOnly = true; | 23139 var arg_accountUserRoleOnly = true; |
| 23140 var arg_ids = buildUnnamed1563(); | 23140 var arg_ids = buildUnnamed1575(); |
| 23141 var arg_maxResults = 42; | 23141 var arg_maxResults = 42; |
| 23142 var arg_pageToken = "foo"; | 23142 var arg_pageToken = "foo"; |
| 23143 var arg_searchString = "foo"; | 23143 var arg_searchString = "foo"; |
| 23144 var arg_sortField = "foo"; | 23144 var arg_sortField = "foo"; |
| 23145 var arg_sortOrder = "foo"; | 23145 var arg_sortOrder = "foo"; |
| 23146 var arg_subaccountId = "foo"; | 23146 var arg_subaccountId = "foo"; |
| 23147 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 23147 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 23148 var path = (req.url).path; | 23148 var path = (req.url).path; |
| 23149 var pathOffset = 0; | 23149 var pathOffset = 0; |
| 23150 var index; | 23150 var index; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 23314 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { | 23314 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { |
| 23315 checkUserRole(response); | 23315 checkUserRole(response); |
| 23316 }))); | 23316 }))); |
| 23317 }); | 23317 }); |
| 23318 | 23318 |
| 23319 }); | 23319 }); |
| 23320 | 23320 |
| 23321 | 23321 |
| 23322 } | 23322 } |
| 23323 | 23323 |
| OLD | NEW |