| OLD | NEW |
| 1 library googleapis.dfareporting.v2_4.test; | 1 library googleapis.dfareporting.v2_4.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 buildUnnamed182() { | 54 buildUnnamed197() { |
| 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 checkUnnamed182(core.List<core.String> o) { | 61 checkUnnamed197(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 buildUnnamed183() { | 67 buildUnnamed198() { |
| 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 checkUnnamed183(core.List<core.String> o) { | 74 checkUnnamed198(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 = buildUnnamed182(); | 85 o.accountPermissionIds = buildUnnamed197(); |
| 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 = buildUnnamed183(); | 90 o.availablePermissionIds = buildUnnamed198(); |
| 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 checkUnnamed182(o.accountPermissionIds); | 112 checkUnnamed197(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 checkUnnamed183(o.availablePermissionIds); | 117 checkUnnamed198(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 buildUnnamed184() { | 162 buildUnnamed199() { |
| 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 checkUnnamed184(core.List<core.String> o) { | 169 checkUnnamed199(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 = buildUnnamed184(); | 180 o.accountProfiles = buildUnnamed199(); |
| 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 checkUnnamed184(o.accountProfiles); | 194 checkUnnamed199(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 buildUnnamed185() { | 227 buildUnnamed200() { |
| 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 checkUnnamed185(core.List<api.AccountPermissionGroup> o) { | 234 checkUnnamed200(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 = buildUnnamed185(); | 245 o.accountPermissionGroups = buildUnnamed200(); |
| 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 checkUnnamed185(o.accountPermissionGroups); | 255 checkUnnamed200(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 buildUnnamed186() { | 261 buildUnnamed201() { |
| 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 checkUnnamed186(core.List<api.AccountPermission> o) { | 268 checkUnnamed201(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 = buildUnnamed186(); | 279 o.accountPermissions = buildUnnamed201(); |
| 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 checkUnnamed186(o.accountPermissions); | 289 checkUnnamed201(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 buildUnnamed187() { | 344 buildUnnamed202() { |
| 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 checkUnnamed187(core.List<api.AccountUserProfile> o) { | 351 checkUnnamed202(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 = buildUnnamed187(); | 362 o.accountUserProfiles = buildUnnamed202(); |
| 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 checkUnnamed187(o.accountUserProfiles); | 373 checkUnnamed202(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 buildUnnamed188() { | 380 buildUnnamed203() { |
| 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 checkUnnamed188(core.List<api.Account> o) { | 387 checkUnnamed203(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 = buildUnnamed188(); | 398 o.accounts = buildUnnamed203(); |
| 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 checkUnnamed188(o.accounts); | 409 checkUnnamed203(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 buildUnnamed189() { | 416 buildUnnamed204() { |
| 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 checkUnnamed189(core.List<api.DimensionValue> o) { | 423 checkUnnamed204(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 buildUnnamed190() { | 429 buildUnnamed205() { |
| 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 checkUnnamed190(core.List<core.String> o) { | 436 checkUnnamed205(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 = buildUnnamed189(); | 447 o.filters = buildUnnamed204(); |
| 448 o.kind = "foo"; | 448 o.kind = "foo"; |
| 449 o.metricNames = buildUnnamed190(); | 449 o.metricNames = buildUnnamed205(); |
| 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 checkUnnamed189(o.filters); | 458 checkUnnamed204(o.filters); |
| 459 unittest.expect(o.kind, unittest.equals('foo')); | 459 unittest.expect(o.kind, unittest.equals('foo')); |
| 460 checkUnnamed190(o.metricNames); | 460 checkUnnamed205(o.metricNames); |
| 461 } | 461 } |
| 462 buildCounterActivities--; | 462 buildCounterActivities--; |
| 463 } | 463 } |
| 464 | 464 |
| 465 buildUnnamed191() { | 465 buildUnnamed206() { |
| 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 checkUnnamed191(core.List<api.CreativeGroupAssignment> o) { | 472 checkUnnamed206(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 buildUnnamed192() { | 478 buildUnnamed207() { |
| 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 checkUnnamed192(core.List<api.EventTagOverride> o) { | 485 checkUnnamed207(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 buildUnnamed193() { | 491 buildUnnamed208() { |
| 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 checkUnnamed193(core.List<api.PlacementAssignment> o) { | 498 checkUnnamed208(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 = buildUnnamed191(); | 522 o.creativeGroupAssignments = buildUnnamed206(); |
| 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 = buildUnnamed192(); | 529 o.eventTagOverrides = buildUnnamed207(); |
| 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 = buildUnnamed193(); | 537 o.placementAssignments = buildUnnamed208(); |
| 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 checkUnnamed191(o.creativeGroupAssignments); | 567 checkUnnamed206(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 checkUnnamed192(o.eventTagOverrides); | 574 checkUnnamed207(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 checkUnnamed193(o.placementAssignments); | 582 checkUnnamed208(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 buildUnnamed194() { | 628 buildUnnamed209() { |
| 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 checkUnnamed194(core.List<api.Ad> o) { | 635 checkUnnamed209(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 = buildUnnamed194(); | 646 o.ads = buildUnnamed209(); |
| 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 checkUnnamed194(o.ads); | 657 checkUnnamed209(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 buildUnnamed195() { | 736 buildUnnamed210() { |
| 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 checkUnnamed195(core.List<api.AdvertiserGroup> o) { | 743 checkUnnamed210(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 = buildUnnamed195(); | 754 o.advertiserGroups = buildUnnamed210(); |
| 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 checkUnnamed195(o.advertiserGroups); | 765 checkUnnamed210(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 buildUnnamed196() { | 772 buildUnnamed211() { |
| 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 checkUnnamed196(core.List<api.Advertiser> o) { | 779 checkUnnamed211(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 = buildUnnamed196(); | 790 o.advertisers = buildUnnamed211(); |
| 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 checkUnnamed196(o.advertisers); | 801 checkUnnamed211(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 buildUnnamed197() { | 831 buildUnnamed212() { |
| 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 checkUnnamed197(core.List<api.AudienceSegment> o) { | 838 checkUnnamed212(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 = buildUnnamed197(); | 849 o.audienceSegments = buildUnnamed212(); |
| 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 checkUnnamed197(o.audienceSegments); | 860 checkUnnamed212(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 buildUnnamed198() { | 896 buildUnnamed213() { |
| 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 checkUnnamed198(core.List<api.Browser> o) { | 903 checkUnnamed213(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 = buildUnnamed198(); | 914 o.browsers = buildUnnamed213(); |
| 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 checkUnnamed198(o.browsers); | 924 checkUnnamed213(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 buildUnnamed199() { | 930 buildUnnamed214() { |
| 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 checkUnnamed199(core.List<api.CreativeOptimizationConfiguration> o) { | 937 checkUnnamed214(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 buildUnnamed200() { | 943 buildUnnamed215() { |
| 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 checkUnnamed200(core.List<api.AudienceSegmentGroup> o) { | 950 checkUnnamed215(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 buildUnnamed201() { | 956 buildUnnamed216() { |
| 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 checkUnnamed201(core.List<core.String> o) { | 963 checkUnnamed216(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 buildUnnamed202() { | 969 buildUnnamed217() { |
| 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 checkUnnamed202(core.List<api.EventTagOverride> o) { | 976 checkUnnamed217(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 buildUnnamed203() { | 982 buildUnnamed218() { |
| 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 checkUnnamed203(core.List<core.String> o) { | 989 checkUnnamed218(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 = buildUnnamed199(); | 1001 o.additionalCreativeOptimizationConfigurations = buildUnnamed214(); |
| 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 = buildUnnamed200(); | 1006 o.audienceSegmentGroups = buildUnnamed215(); |
| 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 = buildUnnamed201(); | 1012 o.creativeGroupIds = buildUnnamed216(); |
| 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 = buildUnnamed202(); | 1016 o.eventTagOverrides = buildUnnamed217(); |
| 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 = buildUnnamed203(); | 1027 o.traffickerEmails = buildUnnamed218(); |
| 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 checkUnnamed199(o.additionalCreativeOptimizationConfigurations); | 1037 checkUnnamed214(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 checkUnnamed200(o.audienceSegmentGroups); | 1042 checkUnnamed215(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 checkUnnamed201(o.creativeGroupIds); | 1048 checkUnnamed216(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 checkUnnamed202(o.eventTagOverrides); | 1052 checkUnnamed217(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 checkUnnamed203(o.traffickerEmails); | 1063 checkUnnamed218(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 buildUnnamed204() { | 1089 buildUnnamed219() { |
| 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 checkUnnamed204(core.List<api.CampaignCreativeAssociation> o) { | 1096 checkUnnamed219(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 = buildUnnamed204(); | 1107 o.campaignCreativeAssociations = buildUnnamed219(); |
| 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 checkUnnamed204(o.campaignCreativeAssociations); | 1118 checkUnnamed219(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 buildUnnamed205() { | 1125 buildUnnamed220() { |
| 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 checkUnnamed205(core.List<api.Campaign> o) { | 1132 checkUnnamed220(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 = buildUnnamed205(); | 1143 o.campaigns = buildUnnamed220(); |
| 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 checkUnnamed205(o.campaigns); | 1154 checkUnnamed220(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 buildUnnamed206() { | 1206 buildUnnamed221() { |
| 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 checkUnnamed206(core.List<api.ChangeLog> o) { | 1213 checkUnnamed221(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 = buildUnnamed206(); | 1224 o.changeLogs = buildUnnamed221(); |
| 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 checkUnnamed206(o.changeLogs); | 1235 checkUnnamed221(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 buildUnnamed207() { | 1242 buildUnnamed222() { |
| 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 checkUnnamed207(core.List<api.City> o) { | 1249 checkUnnamed222(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 = buildUnnamed207(); | 1260 o.cities = buildUnnamed222(); |
| 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 checkUnnamed207(o.cities); | 1270 checkUnnamed222(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 buildUnnamed208() { | 1453 buildUnnamed223() { |
| 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 checkUnnamed208(core.List<api.ConnectionType> o) { | 1460 checkUnnamed223(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 = buildUnnamed208(); | 1471 o.connectionTypes = buildUnnamed223(); |
| 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 checkUnnamed208(o.connectionTypes); | 1481 checkUnnamed223(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 buildUnnamed209() { | 1487 buildUnnamed224() { |
| 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 checkUnnamed209(core.List<api.ContentCategory> o) { | 1494 checkUnnamed224(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 = buildUnnamed209(); | 1505 o.contentCategories = buildUnnamed224(); |
| 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 checkUnnamed209(o.contentCategories); | 1516 checkUnnamed224(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 buildUnnamed210() { | 1548 buildUnnamed225() { |
| 1549 var o = new core.List<api.Country>(); | 1549 var o = new core.List<api.Country>(); |
| 1550 o.add(buildCountry()); | 1550 o.add(buildCountry()); |
| 1551 o.add(buildCountry()); | 1551 o.add(buildCountry()); |
| 1552 return o; | 1552 return o; |
| 1553 } | 1553 } |
| 1554 | 1554 |
| 1555 checkUnnamed210(core.List<api.Country> o) { | 1555 checkUnnamed225(core.List<api.Country> o) { |
| 1556 unittest.expect(o, unittest.hasLength(2)); | 1556 unittest.expect(o, unittest.hasLength(2)); |
| 1557 checkCountry(o[0]); | 1557 checkCountry(o[0]); |
| 1558 checkCountry(o[1]); | 1558 checkCountry(o[1]); |
| 1559 } | 1559 } |
| 1560 | 1560 |
| 1561 core.int buildCounterCountriesListResponse = 0; | 1561 core.int buildCounterCountriesListResponse = 0; |
| 1562 buildCountriesListResponse() { | 1562 buildCountriesListResponse() { |
| 1563 var o = new api.CountriesListResponse(); | 1563 var o = new api.CountriesListResponse(); |
| 1564 buildCounterCountriesListResponse++; | 1564 buildCounterCountriesListResponse++; |
| 1565 if (buildCounterCountriesListResponse < 3) { | 1565 if (buildCounterCountriesListResponse < 3) { |
| 1566 o.countries = buildUnnamed210(); | 1566 o.countries = buildUnnamed225(); |
| 1567 o.kind = "foo"; | 1567 o.kind = "foo"; |
| 1568 } | 1568 } |
| 1569 buildCounterCountriesListResponse--; | 1569 buildCounterCountriesListResponse--; |
| 1570 return o; | 1570 return o; |
| 1571 } | 1571 } |
| 1572 | 1572 |
| 1573 checkCountriesListResponse(api.CountriesListResponse o) { | 1573 checkCountriesListResponse(api.CountriesListResponse o) { |
| 1574 buildCounterCountriesListResponse++; | 1574 buildCounterCountriesListResponse++; |
| 1575 if (buildCounterCountriesListResponse < 3) { | 1575 if (buildCounterCountriesListResponse < 3) { |
| 1576 checkUnnamed210(o.countries); | 1576 checkUnnamed225(o.countries); |
| 1577 unittest.expect(o.kind, unittest.equals('foo')); | 1577 unittest.expect(o.kind, unittest.equals('foo')); |
| 1578 } | 1578 } |
| 1579 buildCounterCountriesListResponse--; | 1579 buildCounterCountriesListResponse--; |
| 1580 } | 1580 } |
| 1581 | 1581 |
| 1582 core.int buildCounterCountry = 0; | 1582 core.int buildCounterCountry = 0; |
| 1583 buildCountry() { | 1583 buildCountry() { |
| 1584 var o = new api.Country(); | 1584 var o = new api.Country(); |
| 1585 buildCounterCountry++; | 1585 buildCounterCountry++; |
| 1586 if (buildCounterCountry < 3) { | 1586 if (buildCounterCountry < 3) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1599 if (buildCounterCountry < 3) { | 1599 if (buildCounterCountry < 3) { |
| 1600 unittest.expect(o.countryCode, unittest.equals('foo')); | 1600 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 1601 unittest.expect(o.dartId, unittest.equals('foo')); | 1601 unittest.expect(o.dartId, unittest.equals('foo')); |
| 1602 unittest.expect(o.kind, unittest.equals('foo')); | 1602 unittest.expect(o.kind, unittest.equals('foo')); |
| 1603 unittest.expect(o.name, unittest.equals('foo')); | 1603 unittest.expect(o.name, unittest.equals('foo')); |
| 1604 unittest.expect(o.sslEnabled, unittest.isTrue); | 1604 unittest.expect(o.sslEnabled, unittest.isTrue); |
| 1605 } | 1605 } |
| 1606 buildCounterCountry--; | 1606 buildCounterCountry--; |
| 1607 } | 1607 } |
| 1608 | 1608 |
| 1609 buildUnnamed211() { | 1609 buildUnnamed226() { |
| 1610 var o = new core.List<core.String>(); | 1610 var o = new core.List<core.String>(); |
| 1611 o.add("foo"); | 1611 o.add("foo"); |
| 1612 o.add("foo"); | 1612 o.add("foo"); |
| 1613 return o; | 1613 return o; |
| 1614 } | 1614 } |
| 1615 | 1615 |
| 1616 checkUnnamed211(core.List<core.String> o) { | 1616 checkUnnamed226(core.List<core.String> o) { |
| 1617 unittest.expect(o, unittest.hasLength(2)); | 1617 unittest.expect(o, unittest.hasLength(2)); |
| 1618 unittest.expect(o[0], unittest.equals('foo')); | 1618 unittest.expect(o[0], unittest.equals('foo')); |
| 1619 unittest.expect(o[1], unittest.equals('foo')); | 1619 unittest.expect(o[1], unittest.equals('foo')); |
| 1620 } | 1620 } |
| 1621 | 1621 |
| 1622 buildUnnamed212() { | 1622 buildUnnamed227() { |
| 1623 var o = new core.List<core.String>(); | 1623 var o = new core.List<core.String>(); |
| 1624 o.add("foo"); | 1624 o.add("foo"); |
| 1625 o.add("foo"); | 1625 o.add("foo"); |
| 1626 return o; | 1626 return o; |
| 1627 } | 1627 } |
| 1628 | 1628 |
| 1629 checkUnnamed212(core.List<core.String> o) { | 1629 checkUnnamed227(core.List<core.String> o) { |
| 1630 unittest.expect(o, unittest.hasLength(2)); | 1630 unittest.expect(o, unittest.hasLength(2)); |
| 1631 unittest.expect(o[0], unittest.equals('foo')); | 1631 unittest.expect(o[0], unittest.equals('foo')); |
| 1632 unittest.expect(o[1], unittest.equals('foo')); | 1632 unittest.expect(o[1], unittest.equals('foo')); |
| 1633 } | 1633 } |
| 1634 | 1634 |
| 1635 buildUnnamed213() { | 1635 buildUnnamed228() { |
| 1636 var o = new core.List<api.ClickTag>(); | 1636 var o = new core.List<api.ClickTag>(); |
| 1637 o.add(buildClickTag()); | 1637 o.add(buildClickTag()); |
| 1638 o.add(buildClickTag()); | 1638 o.add(buildClickTag()); |
| 1639 return o; | 1639 return o; |
| 1640 } | 1640 } |
| 1641 | 1641 |
| 1642 checkUnnamed213(core.List<api.ClickTag> o) { | 1642 checkUnnamed228(core.List<api.ClickTag> o) { |
| 1643 unittest.expect(o, unittest.hasLength(2)); | 1643 unittest.expect(o, unittest.hasLength(2)); |
| 1644 checkClickTag(o[0]); | 1644 checkClickTag(o[0]); |
| 1645 checkClickTag(o[1]); | 1645 checkClickTag(o[1]); |
| 1646 } | 1646 } |
| 1647 | 1647 |
| 1648 buildUnnamed214() { | 1648 buildUnnamed229() { |
| 1649 var o = new core.List<core.String>(); | 1649 var o = new core.List<core.String>(); |
| 1650 o.add("foo"); | 1650 o.add("foo"); |
| 1651 o.add("foo"); | 1651 o.add("foo"); |
| 1652 return o; | 1652 return o; |
| 1653 } | 1653 } |
| 1654 | 1654 |
| 1655 checkUnnamed214(core.List<core.String> o) { | 1655 checkUnnamed229(core.List<core.String> o) { |
| 1656 unittest.expect(o, unittest.hasLength(2)); | 1656 unittest.expect(o, unittest.hasLength(2)); |
| 1657 unittest.expect(o[0], unittest.equals('foo')); | 1657 unittest.expect(o[0], unittest.equals('foo')); |
| 1658 unittest.expect(o[1], unittest.equals('foo')); | 1658 unittest.expect(o[1], unittest.equals('foo')); |
| 1659 } | 1659 } |
| 1660 | 1660 |
| 1661 buildUnnamed215() { | 1661 buildUnnamed230() { |
| 1662 var o = new core.List<core.String>(); | 1662 var o = new core.List<core.String>(); |
| 1663 o.add("foo"); | 1663 o.add("foo"); |
| 1664 o.add("foo"); | 1664 o.add("foo"); |
| 1665 return o; | 1665 return o; |
| 1666 } | 1666 } |
| 1667 | 1667 |
| 1668 checkUnnamed215(core.List<core.String> o) { | 1668 checkUnnamed230(core.List<core.String> o) { |
| 1669 unittest.expect(o, unittest.hasLength(2)); | 1669 unittest.expect(o, unittest.hasLength(2)); |
| 1670 unittest.expect(o[0], unittest.equals('foo')); | 1670 unittest.expect(o[0], unittest.equals('foo')); |
| 1671 unittest.expect(o[1], unittest.equals('foo')); | 1671 unittest.expect(o[1], unittest.equals('foo')); |
| 1672 } | 1672 } |
| 1673 | 1673 |
| 1674 buildUnnamed216() { | 1674 buildUnnamed231() { |
| 1675 var o = new core.List<api.CreativeCustomEvent>(); | 1675 var o = new core.List<api.CreativeCustomEvent>(); |
| 1676 o.add(buildCreativeCustomEvent()); | 1676 o.add(buildCreativeCustomEvent()); |
| 1677 o.add(buildCreativeCustomEvent()); | 1677 o.add(buildCreativeCustomEvent()); |
| 1678 return o; | 1678 return o; |
| 1679 } | 1679 } |
| 1680 | 1680 |
| 1681 checkUnnamed216(core.List<api.CreativeCustomEvent> o) { | 1681 checkUnnamed231(core.List<api.CreativeCustomEvent> o) { |
| 1682 unittest.expect(o, unittest.hasLength(2)); | 1682 unittest.expect(o, unittest.hasLength(2)); |
| 1683 checkCreativeCustomEvent(o[0]); | 1683 checkCreativeCustomEvent(o[0]); |
| 1684 checkCreativeCustomEvent(o[1]); | 1684 checkCreativeCustomEvent(o[1]); |
| 1685 } | 1685 } |
| 1686 | 1686 |
| 1687 buildUnnamed217() { | 1687 buildUnnamed232() { |
| 1688 var o = new core.List<api.CreativeAsset>(); | 1688 var o = new core.List<api.CreativeAsset>(); |
| 1689 o.add(buildCreativeAsset()); | 1689 o.add(buildCreativeAsset()); |
| 1690 o.add(buildCreativeAsset()); | 1690 o.add(buildCreativeAsset()); |
| 1691 return o; | 1691 return o; |
| 1692 } | 1692 } |
| 1693 | 1693 |
| 1694 checkUnnamed217(core.List<api.CreativeAsset> o) { | 1694 checkUnnamed232(core.List<api.CreativeAsset> o) { |
| 1695 unittest.expect(o, unittest.hasLength(2)); | 1695 unittest.expect(o, unittest.hasLength(2)); |
| 1696 checkCreativeAsset(o[0]); | 1696 checkCreativeAsset(o[0]); |
| 1697 checkCreativeAsset(o[1]); | 1697 checkCreativeAsset(o[1]); |
| 1698 } | 1698 } |
| 1699 | 1699 |
| 1700 buildUnnamed218() { | 1700 buildUnnamed233() { |
| 1701 var o = new core.List<api.CreativeFieldAssignment>(); | 1701 var o = new core.List<api.CreativeFieldAssignment>(); |
| 1702 o.add(buildCreativeFieldAssignment()); | 1702 o.add(buildCreativeFieldAssignment()); |
| 1703 o.add(buildCreativeFieldAssignment()); | 1703 o.add(buildCreativeFieldAssignment()); |
| 1704 return o; | 1704 return o; |
| 1705 } | 1705 } |
| 1706 | 1706 |
| 1707 checkUnnamed218(core.List<api.CreativeFieldAssignment> o) { | 1707 checkUnnamed233(core.List<api.CreativeFieldAssignment> o) { |
| 1708 unittest.expect(o, unittest.hasLength(2)); | 1708 unittest.expect(o, unittest.hasLength(2)); |
| 1709 checkCreativeFieldAssignment(o[0]); | 1709 checkCreativeFieldAssignment(o[0]); |
| 1710 checkCreativeFieldAssignment(o[1]); | 1710 checkCreativeFieldAssignment(o[1]); |
| 1711 } | 1711 } |
| 1712 | 1712 |
| 1713 buildUnnamed219() { | 1713 buildUnnamed234() { |
| 1714 var o = new core.List<core.String>(); | 1714 var o = new core.List<core.String>(); |
| 1715 o.add("foo"); | 1715 o.add("foo"); |
| 1716 o.add("foo"); | 1716 o.add("foo"); |
| 1717 return o; | 1717 return o; |
| 1718 } | 1718 } |
| 1719 | 1719 |
| 1720 checkUnnamed219(core.List<core.String> o) { | 1720 checkUnnamed234(core.List<core.String> o) { |
| 1721 unittest.expect(o, unittest.hasLength(2)); | 1721 unittest.expect(o, unittest.hasLength(2)); |
| 1722 unittest.expect(o[0], unittest.equals('foo')); | 1722 unittest.expect(o[0], unittest.equals('foo')); |
| 1723 unittest.expect(o[1], unittest.equals('foo')); | 1723 unittest.expect(o[1], unittest.equals('foo')); |
| 1724 } | 1724 } |
| 1725 | 1725 |
| 1726 buildUnnamed220() { | 1726 buildUnnamed235() { |
| 1727 var o = new core.List<api.CreativeCustomEvent>(); | 1727 var o = new core.List<api.CreativeCustomEvent>(); |
| 1728 o.add(buildCreativeCustomEvent()); | 1728 o.add(buildCreativeCustomEvent()); |
| 1729 o.add(buildCreativeCustomEvent()); | 1729 o.add(buildCreativeCustomEvent()); |
| 1730 return o; | 1730 return o; |
| 1731 } | 1731 } |
| 1732 | 1732 |
| 1733 checkUnnamed220(core.List<api.CreativeCustomEvent> o) { | 1733 checkUnnamed235(core.List<api.CreativeCustomEvent> o) { |
| 1734 unittest.expect(o, unittest.hasLength(2)); | 1734 unittest.expect(o, unittest.hasLength(2)); |
| 1735 checkCreativeCustomEvent(o[0]); | 1735 checkCreativeCustomEvent(o[0]); |
| 1736 checkCreativeCustomEvent(o[1]); | 1736 checkCreativeCustomEvent(o[1]); |
| 1737 } | 1737 } |
| 1738 | 1738 |
| 1739 buildUnnamed221() { | 1739 buildUnnamed236() { |
| 1740 var o = new core.List<api.ThirdPartyTrackingUrl>(); | 1740 var o = new core.List<api.ThirdPartyTrackingUrl>(); |
| 1741 o.add(buildThirdPartyTrackingUrl()); | 1741 o.add(buildThirdPartyTrackingUrl()); |
| 1742 o.add(buildThirdPartyTrackingUrl()); | 1742 o.add(buildThirdPartyTrackingUrl()); |
| 1743 return o; | 1743 return o; |
| 1744 } | 1744 } |
| 1745 | 1745 |
| 1746 checkUnnamed221(core.List<api.ThirdPartyTrackingUrl> o) { | 1746 checkUnnamed236(core.List<api.ThirdPartyTrackingUrl> o) { |
| 1747 unittest.expect(o, unittest.hasLength(2)); | 1747 unittest.expect(o, unittest.hasLength(2)); |
| 1748 checkThirdPartyTrackingUrl(o[0]); | 1748 checkThirdPartyTrackingUrl(o[0]); |
| 1749 checkThirdPartyTrackingUrl(o[1]); | 1749 checkThirdPartyTrackingUrl(o[1]); |
| 1750 } | 1750 } |
| 1751 | 1751 |
| 1752 buildUnnamed222() { | 1752 buildUnnamed237() { |
| 1753 var o = new core.List<api.CreativeCustomEvent>(); | 1753 var o = new core.List<api.CreativeCustomEvent>(); |
| 1754 o.add(buildCreativeCustomEvent()); | 1754 o.add(buildCreativeCustomEvent()); |
| 1755 o.add(buildCreativeCustomEvent()); | 1755 o.add(buildCreativeCustomEvent()); |
| 1756 return o; | 1756 return o; |
| 1757 } | 1757 } |
| 1758 | 1758 |
| 1759 checkUnnamed222(core.List<api.CreativeCustomEvent> o) { | 1759 checkUnnamed237(core.List<api.CreativeCustomEvent> o) { |
| 1760 unittest.expect(o, unittest.hasLength(2)); | 1760 unittest.expect(o, unittest.hasLength(2)); |
| 1761 checkCreativeCustomEvent(o[0]); | 1761 checkCreativeCustomEvent(o[0]); |
| 1762 checkCreativeCustomEvent(o[1]); | 1762 checkCreativeCustomEvent(o[1]); |
| 1763 } | 1763 } |
| 1764 | 1764 |
| 1765 core.int buildCounterCreative = 0; | 1765 core.int buildCounterCreative = 0; |
| 1766 buildCreative() { | 1766 buildCreative() { |
| 1767 var o = new api.Creative(); | 1767 var o = new api.Creative(); |
| 1768 buildCounterCreative++; | 1768 buildCounterCreative++; |
| 1769 if (buildCounterCreative < 3) { | 1769 if (buildCounterCreative < 3) { |
| 1770 o.accountId = "foo"; | 1770 o.accountId = "foo"; |
| 1771 o.active = true; | 1771 o.active = true; |
| 1772 o.adParameters = "foo"; | 1772 o.adParameters = "foo"; |
| 1773 o.adTagKeys = buildUnnamed211(); | 1773 o.adTagKeys = buildUnnamed226(); |
| 1774 o.advertiserId = "foo"; | 1774 o.advertiserId = "foo"; |
| 1775 o.allowScriptAccess = true; | 1775 o.allowScriptAccess = true; |
| 1776 o.archived = true; | 1776 o.archived = true; |
| 1777 o.artworkType = "foo"; | 1777 o.artworkType = "foo"; |
| 1778 o.authoringSource = "foo"; | 1778 o.authoringSource = "foo"; |
| 1779 o.authoringTool = "foo"; | 1779 o.authoringTool = "foo"; |
| 1780 o.autoAdvanceImages = true; | 1780 o.autoAdvanceImages = true; |
| 1781 o.backgroundColor = "foo"; | 1781 o.backgroundColor = "foo"; |
| 1782 o.backupImageClickThroughUrl = "foo"; | 1782 o.backupImageClickThroughUrl = "foo"; |
| 1783 o.backupImageFeatures = buildUnnamed212(); | 1783 o.backupImageFeatures = buildUnnamed227(); |
| 1784 o.backupImageReportingLabel = "foo"; | 1784 o.backupImageReportingLabel = "foo"; |
| 1785 o.backupImageTargetWindow = buildTargetWindow(); | 1785 o.backupImageTargetWindow = buildTargetWindow(); |
| 1786 o.clickTags = buildUnnamed213(); | 1786 o.clickTags = buildUnnamed228(); |
| 1787 o.commercialId = "foo"; | 1787 o.commercialId = "foo"; |
| 1788 o.companionCreatives = buildUnnamed214(); | 1788 o.companionCreatives = buildUnnamed229(); |
| 1789 o.compatibility = buildUnnamed215(); | 1789 o.compatibility = buildUnnamed230(); |
| 1790 o.convertFlashToHtml5 = true; | 1790 o.convertFlashToHtml5 = true; |
| 1791 o.counterCustomEvents = buildUnnamed216(); | 1791 o.counterCustomEvents = buildUnnamed231(); |
| 1792 o.creativeAssets = buildUnnamed217(); | 1792 o.creativeAssets = buildUnnamed232(); |
| 1793 o.creativeFieldAssignments = buildUnnamed218(); | 1793 o.creativeFieldAssignments = buildUnnamed233(); |
| 1794 o.customKeyValues = buildUnnamed219(); | 1794 o.customKeyValues = buildUnnamed234(); |
| 1795 o.exitCustomEvents = buildUnnamed220(); | 1795 o.exitCustomEvents = buildUnnamed235(); |
| 1796 o.fsCommand = buildFsCommand(); | 1796 o.fsCommand = buildFsCommand(); |
| 1797 o.htmlCode = "foo"; | 1797 o.htmlCode = "foo"; |
| 1798 o.htmlCodeLocked = true; | 1798 o.htmlCodeLocked = true; |
| 1799 o.id = "foo"; | 1799 o.id = "foo"; |
| 1800 o.idDimensionValue = buildDimensionValue(); | 1800 o.idDimensionValue = buildDimensionValue(); |
| 1801 o.kind = "foo"; | 1801 o.kind = "foo"; |
| 1802 o.lastModifiedInfo = buildLastModifiedInfo(); | 1802 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 1803 o.latestTraffickedCreativeId = "foo"; | 1803 o.latestTraffickedCreativeId = "foo"; |
| 1804 o.name = "foo"; | 1804 o.name = "foo"; |
| 1805 o.overrideCss = "foo"; | 1805 o.overrideCss = "foo"; |
| 1806 o.redirectUrl = "foo"; | 1806 o.redirectUrl = "foo"; |
| 1807 o.renderingId = "foo"; | 1807 o.renderingId = "foo"; |
| 1808 o.renderingIdDimensionValue = buildDimensionValue(); | 1808 o.renderingIdDimensionValue = buildDimensionValue(); |
| 1809 o.requiredFlashPluginVersion = "foo"; | 1809 o.requiredFlashPluginVersion = "foo"; |
| 1810 o.requiredFlashVersion = 42; | 1810 o.requiredFlashVersion = 42; |
| 1811 o.size = buildSize(); | 1811 o.size = buildSize(); |
| 1812 o.skippable = true; | 1812 o.skippable = true; |
| 1813 o.sslCompliant = true; | 1813 o.sslCompliant = true; |
| 1814 o.sslOverride = true; | 1814 o.sslOverride = true; |
| 1815 o.studioAdvertiserId = "foo"; | 1815 o.studioAdvertiserId = "foo"; |
| 1816 o.studioCreativeId = "foo"; | 1816 o.studioCreativeId = "foo"; |
| 1817 o.studioTraffickedCreativeId = "foo"; | 1817 o.studioTraffickedCreativeId = "foo"; |
| 1818 o.subaccountId = "foo"; | 1818 o.subaccountId = "foo"; |
| 1819 o.thirdPartyBackupImageImpressionsUrl = "foo"; | 1819 o.thirdPartyBackupImageImpressionsUrl = "foo"; |
| 1820 o.thirdPartyRichMediaImpressionsUrl = "foo"; | 1820 o.thirdPartyRichMediaImpressionsUrl = "foo"; |
| 1821 o.thirdPartyUrls = buildUnnamed221(); | 1821 o.thirdPartyUrls = buildUnnamed236(); |
| 1822 o.timerCustomEvents = buildUnnamed222(); | 1822 o.timerCustomEvents = buildUnnamed237(); |
| 1823 o.totalFileSize = "foo"; | 1823 o.totalFileSize = "foo"; |
| 1824 o.type = "foo"; | 1824 o.type = "foo"; |
| 1825 o.version = 42; | 1825 o.version = 42; |
| 1826 o.videoDescription = "foo"; | 1826 o.videoDescription = "foo"; |
| 1827 o.videoDuration = 42.0; | 1827 o.videoDuration = 42.0; |
| 1828 } | 1828 } |
| 1829 buildCounterCreative--; | 1829 buildCounterCreative--; |
| 1830 return o; | 1830 return o; |
| 1831 } | 1831 } |
| 1832 | 1832 |
| 1833 checkCreative(api.Creative o) { | 1833 checkCreative(api.Creative o) { |
| 1834 buildCounterCreative++; | 1834 buildCounterCreative++; |
| 1835 if (buildCounterCreative < 3) { | 1835 if (buildCounterCreative < 3) { |
| 1836 unittest.expect(o.accountId, unittest.equals('foo')); | 1836 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1837 unittest.expect(o.active, unittest.isTrue); | 1837 unittest.expect(o.active, unittest.isTrue); |
| 1838 unittest.expect(o.adParameters, unittest.equals('foo')); | 1838 unittest.expect(o.adParameters, unittest.equals('foo')); |
| 1839 checkUnnamed211(o.adTagKeys); | 1839 checkUnnamed226(o.adTagKeys); |
| 1840 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1840 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 1841 unittest.expect(o.allowScriptAccess, unittest.isTrue); | 1841 unittest.expect(o.allowScriptAccess, unittest.isTrue); |
| 1842 unittest.expect(o.archived, unittest.isTrue); | 1842 unittest.expect(o.archived, unittest.isTrue); |
| 1843 unittest.expect(o.artworkType, unittest.equals('foo')); | 1843 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 1844 unittest.expect(o.authoringSource, unittest.equals('foo')); | 1844 unittest.expect(o.authoringSource, unittest.equals('foo')); |
| 1845 unittest.expect(o.authoringTool, unittest.equals('foo')); | 1845 unittest.expect(o.authoringTool, unittest.equals('foo')); |
| 1846 unittest.expect(o.autoAdvanceImages, unittest.isTrue); | 1846 unittest.expect(o.autoAdvanceImages, unittest.isTrue); |
| 1847 unittest.expect(o.backgroundColor, unittest.equals('foo')); | 1847 unittest.expect(o.backgroundColor, unittest.equals('foo')); |
| 1848 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); | 1848 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); |
| 1849 checkUnnamed212(o.backupImageFeatures); | 1849 checkUnnamed227(o.backupImageFeatures); |
| 1850 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); | 1850 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); |
| 1851 checkTargetWindow(o.backupImageTargetWindow); | 1851 checkTargetWindow(o.backupImageTargetWindow); |
| 1852 checkUnnamed213(o.clickTags); | 1852 checkUnnamed228(o.clickTags); |
| 1853 unittest.expect(o.commercialId, unittest.equals('foo')); | 1853 unittest.expect(o.commercialId, unittest.equals('foo')); |
| 1854 checkUnnamed214(o.companionCreatives); | 1854 checkUnnamed229(o.companionCreatives); |
| 1855 checkUnnamed215(o.compatibility); | 1855 checkUnnamed230(o.compatibility); |
| 1856 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); | 1856 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); |
| 1857 checkUnnamed216(o.counterCustomEvents); | 1857 checkUnnamed231(o.counterCustomEvents); |
| 1858 checkUnnamed217(o.creativeAssets); | 1858 checkUnnamed232(o.creativeAssets); |
| 1859 checkUnnamed218(o.creativeFieldAssignments); | 1859 checkUnnamed233(o.creativeFieldAssignments); |
| 1860 checkUnnamed219(o.customKeyValues); | 1860 checkUnnamed234(o.customKeyValues); |
| 1861 checkUnnamed220(o.exitCustomEvents); | 1861 checkUnnamed235(o.exitCustomEvents); |
| 1862 checkFsCommand(o.fsCommand); | 1862 checkFsCommand(o.fsCommand); |
| 1863 unittest.expect(o.htmlCode, unittest.equals('foo')); | 1863 unittest.expect(o.htmlCode, unittest.equals('foo')); |
| 1864 unittest.expect(o.htmlCodeLocked, unittest.isTrue); | 1864 unittest.expect(o.htmlCodeLocked, unittest.isTrue); |
| 1865 unittest.expect(o.id, unittest.equals('foo')); | 1865 unittest.expect(o.id, unittest.equals('foo')); |
| 1866 checkDimensionValue(o.idDimensionValue); | 1866 checkDimensionValue(o.idDimensionValue); |
| 1867 unittest.expect(o.kind, unittest.equals('foo')); | 1867 unittest.expect(o.kind, unittest.equals('foo')); |
| 1868 checkLastModifiedInfo(o.lastModifiedInfo); | 1868 checkLastModifiedInfo(o.lastModifiedInfo); |
| 1869 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); | 1869 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); |
| 1870 unittest.expect(o.name, unittest.equals('foo')); | 1870 unittest.expect(o.name, unittest.equals('foo')); |
| 1871 unittest.expect(o.overrideCss, unittest.equals('foo')); | 1871 unittest.expect(o.overrideCss, unittest.equals('foo')); |
| 1872 unittest.expect(o.redirectUrl, unittest.equals('foo')); | 1872 unittest.expect(o.redirectUrl, unittest.equals('foo')); |
| 1873 unittest.expect(o.renderingId, unittest.equals('foo')); | 1873 unittest.expect(o.renderingId, unittest.equals('foo')); |
| 1874 checkDimensionValue(o.renderingIdDimensionValue); | 1874 checkDimensionValue(o.renderingIdDimensionValue); |
| 1875 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); | 1875 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); |
| 1876 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); | 1876 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); |
| 1877 checkSize(o.size); | 1877 checkSize(o.size); |
| 1878 unittest.expect(o.skippable, unittest.isTrue); | 1878 unittest.expect(o.skippable, unittest.isTrue); |
| 1879 unittest.expect(o.sslCompliant, unittest.isTrue); | 1879 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 1880 unittest.expect(o.sslOverride, unittest.isTrue); | 1880 unittest.expect(o.sslOverride, unittest.isTrue); |
| 1881 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); | 1881 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); |
| 1882 unittest.expect(o.studioCreativeId, unittest.equals('foo')); | 1882 unittest.expect(o.studioCreativeId, unittest.equals('foo')); |
| 1883 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); | 1883 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); |
| 1884 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1884 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1885 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); | 1885 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); |
| 1886 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; | 1886 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; |
| 1887 checkUnnamed221(o.thirdPartyUrls); | 1887 checkUnnamed236(o.thirdPartyUrls); |
| 1888 checkUnnamed222(o.timerCustomEvents); | 1888 checkUnnamed237(o.timerCustomEvents); |
| 1889 unittest.expect(o.totalFileSize, unittest.equals('foo')); | 1889 unittest.expect(o.totalFileSize, unittest.equals('foo')); |
| 1890 unittest.expect(o.type, unittest.equals('foo')); | 1890 unittest.expect(o.type, unittest.equals('foo')); |
| 1891 unittest.expect(o.version, unittest.equals(42)); | 1891 unittest.expect(o.version, unittest.equals(42)); |
| 1892 unittest.expect(o.videoDescription, unittest.equals('foo')); | 1892 unittest.expect(o.videoDescription, unittest.equals('foo')); |
| 1893 unittest.expect(o.videoDuration, unittest.equals(42.0)); | 1893 unittest.expect(o.videoDuration, unittest.equals(42.0)); |
| 1894 } | 1894 } |
| 1895 buildCounterCreative--; | 1895 buildCounterCreative--; |
| 1896 } | 1896 } |
| 1897 | 1897 |
| 1898 buildUnnamed223() { | 1898 buildUnnamed238() { |
| 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 checkUnnamed223(core.List<core.String> o) { | 1905 checkUnnamed238(core.List<core.String> o) { |
| 1906 unittest.expect(o, unittest.hasLength(2)); | 1906 unittest.expect(o, unittest.hasLength(2)); |
| 1907 unittest.expect(o[0], unittest.equals('foo')); | 1907 unittest.expect(o[0], unittest.equals('foo')); |
| 1908 unittest.expect(o[1], unittest.equals('foo')); | 1908 unittest.expect(o[1], unittest.equals('foo')); |
| 1909 } | 1909 } |
| 1910 | 1910 |
| 1911 core.int buildCounterCreativeAsset = 0; | 1911 core.int buildCounterCreativeAsset = 0; |
| 1912 buildCreativeAsset() { | 1912 buildCreativeAsset() { |
| 1913 var o = new api.CreativeAsset(); | 1913 var o = new api.CreativeAsset(); |
| 1914 buildCounterCreativeAsset++; | 1914 buildCounterCreativeAsset++; |
| 1915 if (buildCounterCreativeAsset < 3) { | 1915 if (buildCounterCreativeAsset < 3) { |
| 1916 o.actionScript3 = true; | 1916 o.actionScript3 = true; |
| 1917 o.active = true; | 1917 o.active = true; |
| 1918 o.alignment = "foo"; | 1918 o.alignment = "foo"; |
| 1919 o.artworkType = "foo"; | 1919 o.artworkType = "foo"; |
| 1920 o.assetIdentifier = buildCreativeAssetId(); | 1920 o.assetIdentifier = buildCreativeAssetId(); |
| 1921 o.backupImageExit = buildCreativeCustomEvent(); | 1921 o.backupImageExit = buildCreativeCustomEvent(); |
| 1922 o.bitRate = 42; | 1922 o.bitRate = 42; |
| 1923 o.childAssetType = "foo"; | 1923 o.childAssetType = "foo"; |
| 1924 o.collapsedSize = buildSize(); | 1924 o.collapsedSize = buildSize(); |
| 1925 o.customStartTimeValue = 42; | 1925 o.customStartTimeValue = 42; |
| 1926 o.detectedFeatures = buildUnnamed223(); | 1926 o.detectedFeatures = buildUnnamed238(); |
| 1927 o.displayType = "foo"; | 1927 o.displayType = "foo"; |
| 1928 o.duration = 42; | 1928 o.duration = 42; |
| 1929 o.durationType = "foo"; | 1929 o.durationType = "foo"; |
| 1930 o.expandedDimension = buildSize(); | 1930 o.expandedDimension = buildSize(); |
| 1931 o.fileSize = "foo"; | 1931 o.fileSize = "foo"; |
| 1932 o.flashVersion = 42; | 1932 o.flashVersion = 42; |
| 1933 o.hideFlashObjects = true; | 1933 o.hideFlashObjects = true; |
| 1934 o.hideSelectionBoxes = true; | 1934 o.hideSelectionBoxes = true; |
| 1935 o.horizontallyLocked = true; | 1935 o.horizontallyLocked = true; |
| 1936 o.id = "foo"; | 1936 o.id = "foo"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1966 unittest.expect(o.actionScript3, unittest.isTrue); | 1966 unittest.expect(o.actionScript3, unittest.isTrue); |
| 1967 unittest.expect(o.active, unittest.isTrue); | 1967 unittest.expect(o.active, unittest.isTrue); |
| 1968 unittest.expect(o.alignment, unittest.equals('foo')); | 1968 unittest.expect(o.alignment, unittest.equals('foo')); |
| 1969 unittest.expect(o.artworkType, unittest.equals('foo')); | 1969 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 1970 checkCreativeAssetId(o.assetIdentifier); | 1970 checkCreativeAssetId(o.assetIdentifier); |
| 1971 checkCreativeCustomEvent(o.backupImageExit); | 1971 checkCreativeCustomEvent(o.backupImageExit); |
| 1972 unittest.expect(o.bitRate, unittest.equals(42)); | 1972 unittest.expect(o.bitRate, unittest.equals(42)); |
| 1973 unittest.expect(o.childAssetType, unittest.equals('foo')); | 1973 unittest.expect(o.childAssetType, unittest.equals('foo')); |
| 1974 checkSize(o.collapsedSize); | 1974 checkSize(o.collapsedSize); |
| 1975 unittest.expect(o.customStartTimeValue, unittest.equals(42)); | 1975 unittest.expect(o.customStartTimeValue, unittest.equals(42)); |
| 1976 checkUnnamed223(o.detectedFeatures); | 1976 checkUnnamed238(o.detectedFeatures); |
| 1977 unittest.expect(o.displayType, unittest.equals('foo')); | 1977 unittest.expect(o.displayType, unittest.equals('foo')); |
| 1978 unittest.expect(o.duration, unittest.equals(42)); | 1978 unittest.expect(o.duration, unittest.equals(42)); |
| 1979 unittest.expect(o.durationType, unittest.equals('foo')); | 1979 unittest.expect(o.durationType, unittest.equals('foo')); |
| 1980 checkSize(o.expandedDimension); | 1980 checkSize(o.expandedDimension); |
| 1981 unittest.expect(o.fileSize, unittest.equals('foo')); | 1981 unittest.expect(o.fileSize, unittest.equals('foo')); |
| 1982 unittest.expect(o.flashVersion, unittest.equals(42)); | 1982 unittest.expect(o.flashVersion, unittest.equals(42)); |
| 1983 unittest.expect(o.hideFlashObjects, unittest.isTrue); | 1983 unittest.expect(o.hideFlashObjects, unittest.isTrue); |
| 1984 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); | 1984 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); |
| 1985 unittest.expect(o.horizontallyLocked, unittest.isTrue); | 1985 unittest.expect(o.horizontallyLocked, unittest.isTrue); |
| 1986 unittest.expect(o.id, unittest.equals('foo')); | 1986 unittest.expect(o.id, unittest.equals('foo')); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2023 | 2023 |
| 2024 checkCreativeAssetId(api.CreativeAssetId o) { | 2024 checkCreativeAssetId(api.CreativeAssetId o) { |
| 2025 buildCounterCreativeAssetId++; | 2025 buildCounterCreativeAssetId++; |
| 2026 if (buildCounterCreativeAssetId < 3) { | 2026 if (buildCounterCreativeAssetId < 3) { |
| 2027 unittest.expect(o.name, unittest.equals('foo')); | 2027 unittest.expect(o.name, unittest.equals('foo')); |
| 2028 unittest.expect(o.type, unittest.equals('foo')); | 2028 unittest.expect(o.type, unittest.equals('foo')); |
| 2029 } | 2029 } |
| 2030 buildCounterCreativeAssetId--; | 2030 buildCounterCreativeAssetId--; |
| 2031 } | 2031 } |
| 2032 | 2032 |
| 2033 buildUnnamed224() { | 2033 buildUnnamed239() { |
| 2034 var o = new core.List<api.ClickTag>(); | 2034 var o = new core.List<api.ClickTag>(); |
| 2035 o.add(buildClickTag()); | 2035 o.add(buildClickTag()); |
| 2036 o.add(buildClickTag()); | 2036 o.add(buildClickTag()); |
| 2037 return o; | 2037 return o; |
| 2038 } | 2038 } |
| 2039 | 2039 |
| 2040 checkUnnamed224(core.List<api.ClickTag> o) { | 2040 checkUnnamed239(core.List<api.ClickTag> o) { |
| 2041 unittest.expect(o, unittest.hasLength(2)); | 2041 unittest.expect(o, unittest.hasLength(2)); |
| 2042 checkClickTag(o[0]); | 2042 checkClickTag(o[0]); |
| 2043 checkClickTag(o[1]); | 2043 checkClickTag(o[1]); |
| 2044 } | 2044 } |
| 2045 | 2045 |
| 2046 buildUnnamed225() { | 2046 buildUnnamed240() { |
| 2047 var o = new core.List<core.String>(); | 2047 var o = new core.List<core.String>(); |
| 2048 o.add("foo"); | 2048 o.add("foo"); |
| 2049 o.add("foo"); | 2049 o.add("foo"); |
| 2050 return o; | 2050 return o; |
| 2051 } | 2051 } |
| 2052 | 2052 |
| 2053 checkUnnamed225(core.List<core.String> o) { | 2053 checkUnnamed240(core.List<core.String> o) { |
| 2054 unittest.expect(o, unittest.hasLength(2)); | 2054 unittest.expect(o, unittest.hasLength(2)); |
| 2055 unittest.expect(o[0], unittest.equals('foo')); | 2055 unittest.expect(o[0], unittest.equals('foo')); |
| 2056 unittest.expect(o[1], unittest.equals('foo')); | 2056 unittest.expect(o[1], unittest.equals('foo')); |
| 2057 } | 2057 } |
| 2058 | 2058 |
| 2059 buildUnnamed226() { | 2059 buildUnnamed241() { |
| 2060 var o = new core.List<core.String>(); | 2060 var o = new core.List<core.String>(); |
| 2061 o.add("foo"); | 2061 o.add("foo"); |
| 2062 o.add("foo"); | 2062 o.add("foo"); |
| 2063 return o; | 2063 return o; |
| 2064 } | 2064 } |
| 2065 | 2065 |
| 2066 checkUnnamed226(core.List<core.String> o) { | 2066 checkUnnamed241(core.List<core.String> o) { |
| 2067 unittest.expect(o, unittest.hasLength(2)); | 2067 unittest.expect(o, unittest.hasLength(2)); |
| 2068 unittest.expect(o[0], unittest.equals('foo')); | 2068 unittest.expect(o[0], unittest.equals('foo')); |
| 2069 unittest.expect(o[1], unittest.equals('foo')); | 2069 unittest.expect(o[1], unittest.equals('foo')); |
| 2070 } | 2070 } |
| 2071 | 2071 |
| 2072 core.int buildCounterCreativeAssetMetadata = 0; | 2072 core.int buildCounterCreativeAssetMetadata = 0; |
| 2073 buildCreativeAssetMetadata() { | 2073 buildCreativeAssetMetadata() { |
| 2074 var o = new api.CreativeAssetMetadata(); | 2074 var o = new api.CreativeAssetMetadata(); |
| 2075 buildCounterCreativeAssetMetadata++; | 2075 buildCounterCreativeAssetMetadata++; |
| 2076 if (buildCounterCreativeAssetMetadata < 3) { | 2076 if (buildCounterCreativeAssetMetadata < 3) { |
| 2077 o.assetIdentifier = buildCreativeAssetId(); | 2077 o.assetIdentifier = buildCreativeAssetId(); |
| 2078 o.clickTags = buildUnnamed224(); | 2078 o.clickTags = buildUnnamed239(); |
| 2079 o.detectedFeatures = buildUnnamed225(); | 2079 o.detectedFeatures = buildUnnamed240(); |
| 2080 o.kind = "foo"; | 2080 o.kind = "foo"; |
| 2081 o.warnedValidationRules = buildUnnamed226(); | 2081 o.warnedValidationRules = buildUnnamed241(); |
| 2082 } | 2082 } |
| 2083 buildCounterCreativeAssetMetadata--; | 2083 buildCounterCreativeAssetMetadata--; |
| 2084 return o; | 2084 return o; |
| 2085 } | 2085 } |
| 2086 | 2086 |
| 2087 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { | 2087 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { |
| 2088 buildCounterCreativeAssetMetadata++; | 2088 buildCounterCreativeAssetMetadata++; |
| 2089 if (buildCounterCreativeAssetMetadata < 3) { | 2089 if (buildCounterCreativeAssetMetadata < 3) { |
| 2090 checkCreativeAssetId(o.assetIdentifier); | 2090 checkCreativeAssetId(o.assetIdentifier); |
| 2091 checkUnnamed224(o.clickTags); | 2091 checkUnnamed239(o.clickTags); |
| 2092 checkUnnamed225(o.detectedFeatures); | 2092 checkUnnamed240(o.detectedFeatures); |
| 2093 unittest.expect(o.kind, unittest.equals('foo')); | 2093 unittest.expect(o.kind, unittest.equals('foo')); |
| 2094 checkUnnamed226(o.warnedValidationRules); | 2094 checkUnnamed241(o.warnedValidationRules); |
| 2095 } | 2095 } |
| 2096 buildCounterCreativeAssetMetadata--; | 2096 buildCounterCreativeAssetMetadata--; |
| 2097 } | 2097 } |
| 2098 | 2098 |
| 2099 buildUnnamed227() { | 2099 buildUnnamed242() { |
| 2100 var o = new core.List<api.CompanionClickThroughOverride>(); | 2100 var o = new core.List<api.CompanionClickThroughOverride>(); |
| 2101 o.add(buildCompanionClickThroughOverride()); | 2101 o.add(buildCompanionClickThroughOverride()); |
| 2102 o.add(buildCompanionClickThroughOverride()); | 2102 o.add(buildCompanionClickThroughOverride()); |
| 2103 return o; | 2103 return o; |
| 2104 } | 2104 } |
| 2105 | 2105 |
| 2106 checkUnnamed227(core.List<api.CompanionClickThroughOverride> o) { | 2106 checkUnnamed242(core.List<api.CompanionClickThroughOverride> o) { |
| 2107 unittest.expect(o, unittest.hasLength(2)); | 2107 unittest.expect(o, unittest.hasLength(2)); |
| 2108 checkCompanionClickThroughOverride(o[0]); | 2108 checkCompanionClickThroughOverride(o[0]); |
| 2109 checkCompanionClickThroughOverride(o[1]); | 2109 checkCompanionClickThroughOverride(o[1]); |
| 2110 } | 2110 } |
| 2111 | 2111 |
| 2112 buildUnnamed228() { | 2112 buildUnnamed243() { |
| 2113 var o = new core.List<api.CreativeGroupAssignment>(); | 2113 var o = new core.List<api.CreativeGroupAssignment>(); |
| 2114 o.add(buildCreativeGroupAssignment()); | 2114 o.add(buildCreativeGroupAssignment()); |
| 2115 o.add(buildCreativeGroupAssignment()); | 2115 o.add(buildCreativeGroupAssignment()); |
| 2116 return o; | 2116 return o; |
| 2117 } | 2117 } |
| 2118 | 2118 |
| 2119 checkUnnamed228(core.List<api.CreativeGroupAssignment> o) { | 2119 checkUnnamed243(core.List<api.CreativeGroupAssignment> o) { |
| 2120 unittest.expect(o, unittest.hasLength(2)); | 2120 unittest.expect(o, unittest.hasLength(2)); |
| 2121 checkCreativeGroupAssignment(o[0]); | 2121 checkCreativeGroupAssignment(o[0]); |
| 2122 checkCreativeGroupAssignment(o[1]); | 2122 checkCreativeGroupAssignment(o[1]); |
| 2123 } | 2123 } |
| 2124 | 2124 |
| 2125 buildUnnamed229() { | 2125 buildUnnamed244() { |
| 2126 var o = new core.List<api.RichMediaExitOverride>(); | 2126 var o = new core.List<api.RichMediaExitOverride>(); |
| 2127 o.add(buildRichMediaExitOverride()); | 2127 o.add(buildRichMediaExitOverride()); |
| 2128 o.add(buildRichMediaExitOverride()); | 2128 o.add(buildRichMediaExitOverride()); |
| 2129 return o; | 2129 return o; |
| 2130 } | 2130 } |
| 2131 | 2131 |
| 2132 checkUnnamed229(core.List<api.RichMediaExitOverride> o) { | 2132 checkUnnamed244(core.List<api.RichMediaExitOverride> o) { |
| 2133 unittest.expect(o, unittest.hasLength(2)); | 2133 unittest.expect(o, unittest.hasLength(2)); |
| 2134 checkRichMediaExitOverride(o[0]); | 2134 checkRichMediaExitOverride(o[0]); |
| 2135 checkRichMediaExitOverride(o[1]); | 2135 checkRichMediaExitOverride(o[1]); |
| 2136 } | 2136 } |
| 2137 | 2137 |
| 2138 core.int buildCounterCreativeAssignment = 0; | 2138 core.int buildCounterCreativeAssignment = 0; |
| 2139 buildCreativeAssignment() { | 2139 buildCreativeAssignment() { |
| 2140 var o = new api.CreativeAssignment(); | 2140 var o = new api.CreativeAssignment(); |
| 2141 buildCounterCreativeAssignment++; | 2141 buildCounterCreativeAssignment++; |
| 2142 if (buildCounterCreativeAssignment < 3) { | 2142 if (buildCounterCreativeAssignment < 3) { |
| 2143 o.active = true; | 2143 o.active = true; |
| 2144 o.applyEventTags = true; | 2144 o.applyEventTags = true; |
| 2145 o.clickThroughUrl = buildClickThroughUrl(); | 2145 o.clickThroughUrl = buildClickThroughUrl(); |
| 2146 o.companionCreativeOverrides = buildUnnamed227(); | 2146 o.companionCreativeOverrides = buildUnnamed242(); |
| 2147 o.creativeGroupAssignments = buildUnnamed228(); | 2147 o.creativeGroupAssignments = buildUnnamed243(); |
| 2148 o.creativeId = "foo"; | 2148 o.creativeId = "foo"; |
| 2149 o.creativeIdDimensionValue = buildDimensionValue(); | 2149 o.creativeIdDimensionValue = buildDimensionValue(); |
| 2150 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2150 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2151 o.richMediaExitOverrides = buildUnnamed229(); | 2151 o.richMediaExitOverrides = buildUnnamed244(); |
| 2152 o.sequence = 42; | 2152 o.sequence = 42; |
| 2153 o.sslCompliant = true; | 2153 o.sslCompliant = true; |
| 2154 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2154 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2155 o.weight = 42; | 2155 o.weight = 42; |
| 2156 } | 2156 } |
| 2157 buildCounterCreativeAssignment--; | 2157 buildCounterCreativeAssignment--; |
| 2158 return o; | 2158 return o; |
| 2159 } | 2159 } |
| 2160 | 2160 |
| 2161 checkCreativeAssignment(api.CreativeAssignment o) { | 2161 checkCreativeAssignment(api.CreativeAssignment o) { |
| 2162 buildCounterCreativeAssignment++; | 2162 buildCounterCreativeAssignment++; |
| 2163 if (buildCounterCreativeAssignment < 3) { | 2163 if (buildCounterCreativeAssignment < 3) { |
| 2164 unittest.expect(o.active, unittest.isTrue); | 2164 unittest.expect(o.active, unittest.isTrue); |
| 2165 unittest.expect(o.applyEventTags, unittest.isTrue); | 2165 unittest.expect(o.applyEventTags, unittest.isTrue); |
| 2166 checkClickThroughUrl(o.clickThroughUrl); | 2166 checkClickThroughUrl(o.clickThroughUrl); |
| 2167 checkUnnamed227(o.companionCreativeOverrides); | 2167 checkUnnamed242(o.companionCreativeOverrides); |
| 2168 checkUnnamed228(o.creativeGroupAssignments); | 2168 checkUnnamed243(o.creativeGroupAssignments); |
| 2169 unittest.expect(o.creativeId, unittest.equals('foo')); | 2169 unittest.expect(o.creativeId, unittest.equals('foo')); |
| 2170 checkDimensionValue(o.creativeIdDimensionValue); | 2170 checkDimensionValue(o.creativeIdDimensionValue); |
| 2171 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2171 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2172 checkUnnamed229(o.richMediaExitOverrides); | 2172 checkUnnamed244(o.richMediaExitOverrides); |
| 2173 unittest.expect(o.sequence, unittest.equals(42)); | 2173 unittest.expect(o.sequence, unittest.equals(42)); |
| 2174 unittest.expect(o.sslCompliant, unittest.isTrue); | 2174 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 2175 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 2175 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 2176 unittest.expect(o.weight, unittest.equals(42)); | 2176 unittest.expect(o.weight, unittest.equals(42)); |
| 2177 } | 2177 } |
| 2178 buildCounterCreativeAssignment--; | 2178 buildCounterCreativeAssignment--; |
| 2179 } | 2179 } |
| 2180 | 2180 |
| 2181 core.int buildCounterCreativeCustomEvent = 0; | 2181 core.int buildCounterCreativeCustomEvent = 0; |
| 2182 buildCreativeCustomEvent() { | 2182 buildCreativeCustomEvent() { |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2283 checkCreativeFieldValue(api.CreativeFieldValue o) { | 2283 checkCreativeFieldValue(api.CreativeFieldValue o) { |
| 2284 buildCounterCreativeFieldValue++; | 2284 buildCounterCreativeFieldValue++; |
| 2285 if (buildCounterCreativeFieldValue < 3) { | 2285 if (buildCounterCreativeFieldValue < 3) { |
| 2286 unittest.expect(o.id, unittest.equals('foo')); | 2286 unittest.expect(o.id, unittest.equals('foo')); |
| 2287 unittest.expect(o.kind, unittest.equals('foo')); | 2287 unittest.expect(o.kind, unittest.equals('foo')); |
| 2288 unittest.expect(o.value, unittest.equals('foo')); | 2288 unittest.expect(o.value, unittest.equals('foo')); |
| 2289 } | 2289 } |
| 2290 buildCounterCreativeFieldValue--; | 2290 buildCounterCreativeFieldValue--; |
| 2291 } | 2291 } |
| 2292 | 2292 |
| 2293 buildUnnamed230() { | 2293 buildUnnamed245() { |
| 2294 var o = new core.List<api.CreativeFieldValue>(); | 2294 var o = new core.List<api.CreativeFieldValue>(); |
| 2295 o.add(buildCreativeFieldValue()); | 2295 o.add(buildCreativeFieldValue()); |
| 2296 o.add(buildCreativeFieldValue()); | 2296 o.add(buildCreativeFieldValue()); |
| 2297 return o; | 2297 return o; |
| 2298 } | 2298 } |
| 2299 | 2299 |
| 2300 checkUnnamed230(core.List<api.CreativeFieldValue> o) { | 2300 checkUnnamed245(core.List<api.CreativeFieldValue> o) { |
| 2301 unittest.expect(o, unittest.hasLength(2)); | 2301 unittest.expect(o, unittest.hasLength(2)); |
| 2302 checkCreativeFieldValue(o[0]); | 2302 checkCreativeFieldValue(o[0]); |
| 2303 checkCreativeFieldValue(o[1]); | 2303 checkCreativeFieldValue(o[1]); |
| 2304 } | 2304 } |
| 2305 | 2305 |
| 2306 core.int buildCounterCreativeFieldValuesListResponse = 0; | 2306 core.int buildCounterCreativeFieldValuesListResponse = 0; |
| 2307 buildCreativeFieldValuesListResponse() { | 2307 buildCreativeFieldValuesListResponse() { |
| 2308 var o = new api.CreativeFieldValuesListResponse(); | 2308 var o = new api.CreativeFieldValuesListResponse(); |
| 2309 buildCounterCreativeFieldValuesListResponse++; | 2309 buildCounterCreativeFieldValuesListResponse++; |
| 2310 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2310 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2311 o.creativeFieldValues = buildUnnamed230(); | 2311 o.creativeFieldValues = buildUnnamed245(); |
| 2312 o.kind = "foo"; | 2312 o.kind = "foo"; |
| 2313 o.nextPageToken = "foo"; | 2313 o.nextPageToken = "foo"; |
| 2314 } | 2314 } |
| 2315 buildCounterCreativeFieldValuesListResponse--; | 2315 buildCounterCreativeFieldValuesListResponse--; |
| 2316 return o; | 2316 return o; |
| 2317 } | 2317 } |
| 2318 | 2318 |
| 2319 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { | 2319 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { |
| 2320 buildCounterCreativeFieldValuesListResponse++; | 2320 buildCounterCreativeFieldValuesListResponse++; |
| 2321 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2321 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2322 checkUnnamed230(o.creativeFieldValues); | 2322 checkUnnamed245(o.creativeFieldValues); |
| 2323 unittest.expect(o.kind, unittest.equals('foo')); | 2323 unittest.expect(o.kind, unittest.equals('foo')); |
| 2324 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2324 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2325 } | 2325 } |
| 2326 buildCounterCreativeFieldValuesListResponse--; | 2326 buildCounterCreativeFieldValuesListResponse--; |
| 2327 } | 2327 } |
| 2328 | 2328 |
| 2329 buildUnnamed231() { | 2329 buildUnnamed246() { |
| 2330 var o = new core.List<api.CreativeField>(); | 2330 var o = new core.List<api.CreativeField>(); |
| 2331 o.add(buildCreativeField()); | 2331 o.add(buildCreativeField()); |
| 2332 o.add(buildCreativeField()); | 2332 o.add(buildCreativeField()); |
| 2333 return o; | 2333 return o; |
| 2334 } | 2334 } |
| 2335 | 2335 |
| 2336 checkUnnamed231(core.List<api.CreativeField> o) { | 2336 checkUnnamed246(core.List<api.CreativeField> o) { |
| 2337 unittest.expect(o, unittest.hasLength(2)); | 2337 unittest.expect(o, unittest.hasLength(2)); |
| 2338 checkCreativeField(o[0]); | 2338 checkCreativeField(o[0]); |
| 2339 checkCreativeField(o[1]); | 2339 checkCreativeField(o[1]); |
| 2340 } | 2340 } |
| 2341 | 2341 |
| 2342 core.int buildCounterCreativeFieldsListResponse = 0; | 2342 core.int buildCounterCreativeFieldsListResponse = 0; |
| 2343 buildCreativeFieldsListResponse() { | 2343 buildCreativeFieldsListResponse() { |
| 2344 var o = new api.CreativeFieldsListResponse(); | 2344 var o = new api.CreativeFieldsListResponse(); |
| 2345 buildCounterCreativeFieldsListResponse++; | 2345 buildCounterCreativeFieldsListResponse++; |
| 2346 if (buildCounterCreativeFieldsListResponse < 3) { | 2346 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2347 o.creativeFields = buildUnnamed231(); | 2347 o.creativeFields = buildUnnamed246(); |
| 2348 o.kind = "foo"; | 2348 o.kind = "foo"; |
| 2349 o.nextPageToken = "foo"; | 2349 o.nextPageToken = "foo"; |
| 2350 } | 2350 } |
| 2351 buildCounterCreativeFieldsListResponse--; | 2351 buildCounterCreativeFieldsListResponse--; |
| 2352 return o; | 2352 return o; |
| 2353 } | 2353 } |
| 2354 | 2354 |
| 2355 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { | 2355 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { |
| 2356 buildCounterCreativeFieldsListResponse++; | 2356 buildCounterCreativeFieldsListResponse++; |
| 2357 if (buildCounterCreativeFieldsListResponse < 3) { | 2357 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2358 checkUnnamed231(o.creativeFields); | 2358 checkUnnamed246(o.creativeFields); |
| 2359 unittest.expect(o.kind, unittest.equals('foo')); | 2359 unittest.expect(o.kind, unittest.equals('foo')); |
| 2360 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2360 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2361 } | 2361 } |
| 2362 buildCounterCreativeFieldsListResponse--; | 2362 buildCounterCreativeFieldsListResponse--; |
| 2363 } | 2363 } |
| 2364 | 2364 |
| 2365 core.int buildCounterCreativeGroup = 0; | 2365 core.int buildCounterCreativeGroup = 0; |
| 2366 buildCreativeGroup() { | 2366 buildCreativeGroup() { |
| 2367 var o = new api.CreativeGroup(); | 2367 var o = new api.CreativeGroup(); |
| 2368 buildCounterCreativeGroup++; | 2368 buildCounterCreativeGroup++; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2409 | 2409 |
| 2410 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { | 2410 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { |
| 2411 buildCounterCreativeGroupAssignment++; | 2411 buildCounterCreativeGroupAssignment++; |
| 2412 if (buildCounterCreativeGroupAssignment < 3) { | 2412 if (buildCounterCreativeGroupAssignment < 3) { |
| 2413 unittest.expect(o.creativeGroupId, unittest.equals('foo')); | 2413 unittest.expect(o.creativeGroupId, unittest.equals('foo')); |
| 2414 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); | 2414 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); |
| 2415 } | 2415 } |
| 2416 buildCounterCreativeGroupAssignment--; | 2416 buildCounterCreativeGroupAssignment--; |
| 2417 } | 2417 } |
| 2418 | 2418 |
| 2419 buildUnnamed232() { | 2419 buildUnnamed247() { |
| 2420 var o = new core.List<api.CreativeGroup>(); | 2420 var o = new core.List<api.CreativeGroup>(); |
| 2421 o.add(buildCreativeGroup()); | 2421 o.add(buildCreativeGroup()); |
| 2422 o.add(buildCreativeGroup()); | 2422 o.add(buildCreativeGroup()); |
| 2423 return o; | 2423 return o; |
| 2424 } | 2424 } |
| 2425 | 2425 |
| 2426 checkUnnamed232(core.List<api.CreativeGroup> o) { | 2426 checkUnnamed247(core.List<api.CreativeGroup> o) { |
| 2427 unittest.expect(o, unittest.hasLength(2)); | 2427 unittest.expect(o, unittest.hasLength(2)); |
| 2428 checkCreativeGroup(o[0]); | 2428 checkCreativeGroup(o[0]); |
| 2429 checkCreativeGroup(o[1]); | 2429 checkCreativeGroup(o[1]); |
| 2430 } | 2430 } |
| 2431 | 2431 |
| 2432 core.int buildCounterCreativeGroupsListResponse = 0; | 2432 core.int buildCounterCreativeGroupsListResponse = 0; |
| 2433 buildCreativeGroupsListResponse() { | 2433 buildCreativeGroupsListResponse() { |
| 2434 var o = new api.CreativeGroupsListResponse(); | 2434 var o = new api.CreativeGroupsListResponse(); |
| 2435 buildCounterCreativeGroupsListResponse++; | 2435 buildCounterCreativeGroupsListResponse++; |
| 2436 if (buildCounterCreativeGroupsListResponse < 3) { | 2436 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2437 o.creativeGroups = buildUnnamed232(); | 2437 o.creativeGroups = buildUnnamed247(); |
| 2438 o.kind = "foo"; | 2438 o.kind = "foo"; |
| 2439 o.nextPageToken = "foo"; | 2439 o.nextPageToken = "foo"; |
| 2440 } | 2440 } |
| 2441 buildCounterCreativeGroupsListResponse--; | 2441 buildCounterCreativeGroupsListResponse--; |
| 2442 return o; | 2442 return o; |
| 2443 } | 2443 } |
| 2444 | 2444 |
| 2445 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { | 2445 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { |
| 2446 buildCounterCreativeGroupsListResponse++; | 2446 buildCounterCreativeGroupsListResponse++; |
| 2447 if (buildCounterCreativeGroupsListResponse < 3) { | 2447 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2448 checkUnnamed232(o.creativeGroups); | 2448 checkUnnamed247(o.creativeGroups); |
| 2449 unittest.expect(o.kind, unittest.equals('foo')); | 2449 unittest.expect(o.kind, unittest.equals('foo')); |
| 2450 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2450 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2451 } | 2451 } |
| 2452 buildCounterCreativeGroupsListResponse--; | 2452 buildCounterCreativeGroupsListResponse--; |
| 2453 } | 2453 } |
| 2454 | 2454 |
| 2455 buildUnnamed233() { | 2455 buildUnnamed248() { |
| 2456 var o = new core.List<api.OptimizationActivity>(); | 2456 var o = new core.List<api.OptimizationActivity>(); |
| 2457 o.add(buildOptimizationActivity()); | 2457 o.add(buildOptimizationActivity()); |
| 2458 o.add(buildOptimizationActivity()); | 2458 o.add(buildOptimizationActivity()); |
| 2459 return o; | 2459 return o; |
| 2460 } | 2460 } |
| 2461 | 2461 |
| 2462 checkUnnamed233(core.List<api.OptimizationActivity> o) { | 2462 checkUnnamed248(core.List<api.OptimizationActivity> o) { |
| 2463 unittest.expect(o, unittest.hasLength(2)); | 2463 unittest.expect(o, unittest.hasLength(2)); |
| 2464 checkOptimizationActivity(o[0]); | 2464 checkOptimizationActivity(o[0]); |
| 2465 checkOptimizationActivity(o[1]); | 2465 checkOptimizationActivity(o[1]); |
| 2466 } | 2466 } |
| 2467 | 2467 |
| 2468 core.int buildCounterCreativeOptimizationConfiguration = 0; | 2468 core.int buildCounterCreativeOptimizationConfiguration = 0; |
| 2469 buildCreativeOptimizationConfiguration() { | 2469 buildCreativeOptimizationConfiguration() { |
| 2470 var o = new api.CreativeOptimizationConfiguration(); | 2470 var o = new api.CreativeOptimizationConfiguration(); |
| 2471 buildCounterCreativeOptimizationConfiguration++; | 2471 buildCounterCreativeOptimizationConfiguration++; |
| 2472 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2472 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2473 o.id = "foo"; | 2473 o.id = "foo"; |
| 2474 o.name = "foo"; | 2474 o.name = "foo"; |
| 2475 o.optimizationActivitys = buildUnnamed233(); | 2475 o.optimizationActivitys = buildUnnamed248(); |
| 2476 o.optimizationModel = "foo"; | 2476 o.optimizationModel = "foo"; |
| 2477 } | 2477 } |
| 2478 buildCounterCreativeOptimizationConfiguration--; | 2478 buildCounterCreativeOptimizationConfiguration--; |
| 2479 return o; | 2479 return o; |
| 2480 } | 2480 } |
| 2481 | 2481 |
| 2482 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ | 2482 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ |
| 2483 buildCounterCreativeOptimizationConfiguration++; | 2483 buildCounterCreativeOptimizationConfiguration++; |
| 2484 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2484 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2485 unittest.expect(o.id, unittest.equals('foo')); | 2485 unittest.expect(o.id, unittest.equals('foo')); |
| 2486 unittest.expect(o.name, unittest.equals('foo')); | 2486 unittest.expect(o.name, unittest.equals('foo')); |
| 2487 checkUnnamed233(o.optimizationActivitys); | 2487 checkUnnamed248(o.optimizationActivitys); |
| 2488 unittest.expect(o.optimizationModel, unittest.equals('foo')); | 2488 unittest.expect(o.optimizationModel, unittest.equals('foo')); |
| 2489 } | 2489 } |
| 2490 buildCounterCreativeOptimizationConfiguration--; | 2490 buildCounterCreativeOptimizationConfiguration--; |
| 2491 } | 2491 } |
| 2492 | 2492 |
| 2493 buildUnnamed234() { | 2493 buildUnnamed249() { |
| 2494 var o = new core.List<api.CreativeAssignment>(); | 2494 var o = new core.List<api.CreativeAssignment>(); |
| 2495 o.add(buildCreativeAssignment()); | 2495 o.add(buildCreativeAssignment()); |
| 2496 o.add(buildCreativeAssignment()); | 2496 o.add(buildCreativeAssignment()); |
| 2497 return o; | 2497 return o; |
| 2498 } | 2498 } |
| 2499 | 2499 |
| 2500 checkUnnamed234(core.List<api.CreativeAssignment> o) { | 2500 checkUnnamed249(core.List<api.CreativeAssignment> o) { |
| 2501 unittest.expect(o, unittest.hasLength(2)); | 2501 unittest.expect(o, unittest.hasLength(2)); |
| 2502 checkCreativeAssignment(o[0]); | 2502 checkCreativeAssignment(o[0]); |
| 2503 checkCreativeAssignment(o[1]); | 2503 checkCreativeAssignment(o[1]); |
| 2504 } | 2504 } |
| 2505 | 2505 |
| 2506 core.int buildCounterCreativeRotation = 0; | 2506 core.int buildCounterCreativeRotation = 0; |
| 2507 buildCreativeRotation() { | 2507 buildCreativeRotation() { |
| 2508 var o = new api.CreativeRotation(); | 2508 var o = new api.CreativeRotation(); |
| 2509 buildCounterCreativeRotation++; | 2509 buildCounterCreativeRotation++; |
| 2510 if (buildCounterCreativeRotation < 3) { | 2510 if (buildCounterCreativeRotation < 3) { |
| 2511 o.creativeAssignments = buildUnnamed234(); | 2511 o.creativeAssignments = buildUnnamed249(); |
| 2512 o.creativeOptimizationConfigurationId = "foo"; | 2512 o.creativeOptimizationConfigurationId = "foo"; |
| 2513 o.type = "foo"; | 2513 o.type = "foo"; |
| 2514 o.weightCalculationStrategy = "foo"; | 2514 o.weightCalculationStrategy = "foo"; |
| 2515 } | 2515 } |
| 2516 buildCounterCreativeRotation--; | 2516 buildCounterCreativeRotation--; |
| 2517 return o; | 2517 return o; |
| 2518 } | 2518 } |
| 2519 | 2519 |
| 2520 checkCreativeRotation(api.CreativeRotation o) { | 2520 checkCreativeRotation(api.CreativeRotation o) { |
| 2521 buildCounterCreativeRotation++; | 2521 buildCounterCreativeRotation++; |
| 2522 if (buildCounterCreativeRotation < 3) { | 2522 if (buildCounterCreativeRotation < 3) { |
| 2523 checkUnnamed234(o.creativeAssignments); | 2523 checkUnnamed249(o.creativeAssignments); |
| 2524 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); | 2524 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); |
| 2525 unittest.expect(o.type, unittest.equals('foo')); | 2525 unittest.expect(o.type, unittest.equals('foo')); |
| 2526 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); | 2526 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); |
| 2527 } | 2527 } |
| 2528 buildCounterCreativeRotation--; | 2528 buildCounterCreativeRotation--; |
| 2529 } | 2529 } |
| 2530 | 2530 |
| 2531 core.int buildCounterCreativeSettings = 0; | 2531 core.int buildCounterCreativeSettings = 0; |
| 2532 buildCreativeSettings() { | 2532 buildCreativeSettings() { |
| 2533 var o = new api.CreativeSettings(); | 2533 var o = new api.CreativeSettings(); |
| 2534 buildCounterCreativeSettings++; | 2534 buildCounterCreativeSettings++; |
| 2535 if (buildCounterCreativeSettings < 3) { | 2535 if (buildCounterCreativeSettings < 3) { |
| 2536 o.iFrameFooter = "foo"; | 2536 o.iFrameFooter = "foo"; |
| 2537 o.iFrameHeader = "foo"; | 2537 o.iFrameHeader = "foo"; |
| 2538 } | 2538 } |
| 2539 buildCounterCreativeSettings--; | 2539 buildCounterCreativeSettings--; |
| 2540 return o; | 2540 return o; |
| 2541 } | 2541 } |
| 2542 | 2542 |
| 2543 checkCreativeSettings(api.CreativeSettings o) { | 2543 checkCreativeSettings(api.CreativeSettings o) { |
| 2544 buildCounterCreativeSettings++; | 2544 buildCounterCreativeSettings++; |
| 2545 if (buildCounterCreativeSettings < 3) { | 2545 if (buildCounterCreativeSettings < 3) { |
| 2546 unittest.expect(o.iFrameFooter, unittest.equals('foo')); | 2546 unittest.expect(o.iFrameFooter, unittest.equals('foo')); |
| 2547 unittest.expect(o.iFrameHeader, unittest.equals('foo')); | 2547 unittest.expect(o.iFrameHeader, unittest.equals('foo')); |
| 2548 } | 2548 } |
| 2549 buildCounterCreativeSettings--; | 2549 buildCounterCreativeSettings--; |
| 2550 } | 2550 } |
| 2551 | 2551 |
| 2552 buildUnnamed235() { | 2552 buildUnnamed250() { |
| 2553 var o = new core.List<api.Creative>(); | 2553 var o = new core.List<api.Creative>(); |
| 2554 o.add(buildCreative()); | 2554 o.add(buildCreative()); |
| 2555 o.add(buildCreative()); | 2555 o.add(buildCreative()); |
| 2556 return o; | 2556 return o; |
| 2557 } | 2557 } |
| 2558 | 2558 |
| 2559 checkUnnamed235(core.List<api.Creative> o) { | 2559 checkUnnamed250(core.List<api.Creative> o) { |
| 2560 unittest.expect(o, unittest.hasLength(2)); | 2560 unittest.expect(o, unittest.hasLength(2)); |
| 2561 checkCreative(o[0]); | 2561 checkCreative(o[0]); |
| 2562 checkCreative(o[1]); | 2562 checkCreative(o[1]); |
| 2563 } | 2563 } |
| 2564 | 2564 |
| 2565 core.int buildCounterCreativesListResponse = 0; | 2565 core.int buildCounterCreativesListResponse = 0; |
| 2566 buildCreativesListResponse() { | 2566 buildCreativesListResponse() { |
| 2567 var o = new api.CreativesListResponse(); | 2567 var o = new api.CreativesListResponse(); |
| 2568 buildCounterCreativesListResponse++; | 2568 buildCounterCreativesListResponse++; |
| 2569 if (buildCounterCreativesListResponse < 3) { | 2569 if (buildCounterCreativesListResponse < 3) { |
| 2570 o.creatives = buildUnnamed235(); | 2570 o.creatives = buildUnnamed250(); |
| 2571 o.kind = "foo"; | 2571 o.kind = "foo"; |
| 2572 o.nextPageToken = "foo"; | 2572 o.nextPageToken = "foo"; |
| 2573 } | 2573 } |
| 2574 buildCounterCreativesListResponse--; | 2574 buildCounterCreativesListResponse--; |
| 2575 return o; | 2575 return o; |
| 2576 } | 2576 } |
| 2577 | 2577 |
| 2578 checkCreativesListResponse(api.CreativesListResponse o) { | 2578 checkCreativesListResponse(api.CreativesListResponse o) { |
| 2579 buildCounterCreativesListResponse++; | 2579 buildCounterCreativesListResponse++; |
| 2580 if (buildCounterCreativesListResponse < 3) { | 2580 if (buildCounterCreativesListResponse < 3) { |
| 2581 checkUnnamed235(o.creatives); | 2581 checkUnnamed250(o.creatives); |
| 2582 unittest.expect(o.kind, unittest.equals('foo')); | 2582 unittest.expect(o.kind, unittest.equals('foo')); |
| 2583 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2583 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2584 } | 2584 } |
| 2585 buildCounterCreativesListResponse--; | 2585 buildCounterCreativesListResponse--; |
| 2586 } | 2586 } |
| 2587 | 2587 |
| 2588 buildUnnamed236() { | 2588 buildUnnamed251() { |
| 2589 var o = new core.List<api.Dimension>(); | 2589 var o = new core.List<api.Dimension>(); |
| 2590 o.add(buildDimension()); | 2590 o.add(buildDimension()); |
| 2591 o.add(buildDimension()); | 2591 o.add(buildDimension()); |
| 2592 return o; | 2592 return o; |
| 2593 } | 2593 } |
| 2594 | 2594 |
| 2595 checkUnnamed236(core.List<api.Dimension> o) { | 2595 checkUnnamed251(core.List<api.Dimension> o) { |
| 2596 unittest.expect(o, unittest.hasLength(2)); | 2596 unittest.expect(o, unittest.hasLength(2)); |
| 2597 checkDimension(o[0]); | 2597 checkDimension(o[0]); |
| 2598 checkDimension(o[1]); | 2598 checkDimension(o[1]); |
| 2599 } | 2599 } |
| 2600 | 2600 |
| 2601 buildUnnamed237() { | 2601 buildUnnamed252() { |
| 2602 var o = new core.List<api.Dimension>(); | 2602 var o = new core.List<api.Dimension>(); |
| 2603 o.add(buildDimension()); | 2603 o.add(buildDimension()); |
| 2604 o.add(buildDimension()); | 2604 o.add(buildDimension()); |
| 2605 return o; | 2605 return o; |
| 2606 } | 2606 } |
| 2607 | 2607 |
| 2608 checkUnnamed237(core.List<api.Dimension> o) { | 2608 checkUnnamed252(core.List<api.Dimension> o) { |
| 2609 unittest.expect(o, unittest.hasLength(2)); | 2609 unittest.expect(o, unittest.hasLength(2)); |
| 2610 checkDimension(o[0]); | 2610 checkDimension(o[0]); |
| 2611 checkDimension(o[1]); | 2611 checkDimension(o[1]); |
| 2612 } | 2612 } |
| 2613 | 2613 |
| 2614 buildUnnamed238() { | 2614 buildUnnamed253() { |
| 2615 var o = new core.List<api.Metric>(); | 2615 var o = new core.List<api.Metric>(); |
| 2616 o.add(buildMetric()); | 2616 o.add(buildMetric()); |
| 2617 o.add(buildMetric()); | 2617 o.add(buildMetric()); |
| 2618 return o; | 2618 return o; |
| 2619 } | 2619 } |
| 2620 | 2620 |
| 2621 checkUnnamed238(core.List<api.Metric> o) { | 2621 checkUnnamed253(core.List<api.Metric> o) { |
| 2622 unittest.expect(o, unittest.hasLength(2)); | 2622 unittest.expect(o, unittest.hasLength(2)); |
| 2623 checkMetric(o[0]); | 2623 checkMetric(o[0]); |
| 2624 checkMetric(o[1]); | 2624 checkMetric(o[1]); |
| 2625 } | 2625 } |
| 2626 | 2626 |
| 2627 buildUnnamed239() { | 2627 buildUnnamed254() { |
| 2628 var o = new core.List<api.Metric>(); | 2628 var o = new core.List<api.Metric>(); |
| 2629 o.add(buildMetric()); | 2629 o.add(buildMetric()); |
| 2630 o.add(buildMetric()); | 2630 o.add(buildMetric()); |
| 2631 return o; | 2631 return o; |
| 2632 } | 2632 } |
| 2633 | 2633 |
| 2634 checkUnnamed239(core.List<api.Metric> o) { | 2634 checkUnnamed254(core.List<api.Metric> o) { |
| 2635 unittest.expect(o, unittest.hasLength(2)); | 2635 unittest.expect(o, unittest.hasLength(2)); |
| 2636 checkMetric(o[0]); | 2636 checkMetric(o[0]); |
| 2637 checkMetric(o[1]); | 2637 checkMetric(o[1]); |
| 2638 } | 2638 } |
| 2639 | 2639 |
| 2640 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; | 2640 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; |
| 2641 buildCrossDimensionReachReportCompatibleFields() { | 2641 buildCrossDimensionReachReportCompatibleFields() { |
| 2642 var o = new api.CrossDimensionReachReportCompatibleFields(); | 2642 var o = new api.CrossDimensionReachReportCompatibleFields(); |
| 2643 buildCounterCrossDimensionReachReportCompatibleFields++; | 2643 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2644 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2644 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2645 o.breakdown = buildUnnamed236(); | 2645 o.breakdown = buildUnnamed251(); |
| 2646 o.dimensionFilters = buildUnnamed237(); | 2646 o.dimensionFilters = buildUnnamed252(); |
| 2647 o.kind = "foo"; | 2647 o.kind = "foo"; |
| 2648 o.metrics = buildUnnamed238(); | 2648 o.metrics = buildUnnamed253(); |
| 2649 o.overlapMetrics = buildUnnamed239(); | 2649 o.overlapMetrics = buildUnnamed254(); |
| 2650 } | 2650 } |
| 2651 buildCounterCrossDimensionReachReportCompatibleFields--; | 2651 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2652 return o; | 2652 return o; |
| 2653 } | 2653 } |
| 2654 | 2654 |
| 2655 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { | 2655 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { |
| 2656 buildCounterCrossDimensionReachReportCompatibleFields++; | 2656 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2657 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2657 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2658 checkUnnamed236(o.breakdown); | 2658 checkUnnamed251(o.breakdown); |
| 2659 checkUnnamed237(o.dimensionFilters); | 2659 checkUnnamed252(o.dimensionFilters); |
| 2660 unittest.expect(o.kind, unittest.equals('foo')); | 2660 unittest.expect(o.kind, unittest.equals('foo')); |
| 2661 checkUnnamed238(o.metrics); | 2661 checkUnnamed253(o.metrics); |
| 2662 checkUnnamed239(o.overlapMetrics); | 2662 checkUnnamed254(o.overlapMetrics); |
| 2663 } | 2663 } |
| 2664 buildCounterCrossDimensionReachReportCompatibleFields--; | 2664 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2665 } | 2665 } |
| 2666 | 2666 |
| 2667 buildUnnamed240() { | 2667 buildUnnamed255() { |
| 2668 var o = new core.List<api.DimensionValue>(); | 2668 var o = new core.List<api.DimensionValue>(); |
| 2669 o.add(buildDimensionValue()); | 2669 o.add(buildDimensionValue()); |
| 2670 o.add(buildDimensionValue()); | 2670 o.add(buildDimensionValue()); |
| 2671 return o; | 2671 return o; |
| 2672 } | 2672 } |
| 2673 | 2673 |
| 2674 checkUnnamed240(core.List<api.DimensionValue> o) { | 2674 checkUnnamed255(core.List<api.DimensionValue> o) { |
| 2675 unittest.expect(o, unittest.hasLength(2)); | 2675 unittest.expect(o, unittest.hasLength(2)); |
| 2676 checkDimensionValue(o[0]); | 2676 checkDimensionValue(o[0]); |
| 2677 checkDimensionValue(o[1]); | 2677 checkDimensionValue(o[1]); |
| 2678 } | 2678 } |
| 2679 | 2679 |
| 2680 core.int buildCounterCustomRichMediaEvents = 0; | 2680 core.int buildCounterCustomRichMediaEvents = 0; |
| 2681 buildCustomRichMediaEvents() { | 2681 buildCustomRichMediaEvents() { |
| 2682 var o = new api.CustomRichMediaEvents(); | 2682 var o = new api.CustomRichMediaEvents(); |
| 2683 buildCounterCustomRichMediaEvents++; | 2683 buildCounterCustomRichMediaEvents++; |
| 2684 if (buildCounterCustomRichMediaEvents < 3) { | 2684 if (buildCounterCustomRichMediaEvents < 3) { |
| 2685 o.filteredEventIds = buildUnnamed240(); | 2685 o.filteredEventIds = buildUnnamed255(); |
| 2686 o.kind = "foo"; | 2686 o.kind = "foo"; |
| 2687 } | 2687 } |
| 2688 buildCounterCustomRichMediaEvents--; | 2688 buildCounterCustomRichMediaEvents--; |
| 2689 return o; | 2689 return o; |
| 2690 } | 2690 } |
| 2691 | 2691 |
| 2692 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { | 2692 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { |
| 2693 buildCounterCustomRichMediaEvents++; | 2693 buildCounterCustomRichMediaEvents++; |
| 2694 if (buildCounterCustomRichMediaEvents < 3) { | 2694 if (buildCounterCustomRichMediaEvents < 3) { |
| 2695 checkUnnamed240(o.filteredEventIds); | 2695 checkUnnamed255(o.filteredEventIds); |
| 2696 unittest.expect(o.kind, unittest.equals('foo')); | 2696 unittest.expect(o.kind, unittest.equals('foo')); |
| 2697 } | 2697 } |
| 2698 buildCounterCustomRichMediaEvents--; | 2698 buildCounterCustomRichMediaEvents--; |
| 2699 } | 2699 } |
| 2700 | 2700 |
| 2701 core.int buildCounterDateRange = 0; | 2701 core.int buildCounterDateRange = 0; |
| 2702 buildDateRange() { | 2702 buildDateRange() { |
| 2703 var o = new api.DateRange(); | 2703 var o = new api.DateRange(); |
| 2704 buildCounterDateRange++; | 2704 buildCounterDateRange++; |
| 2705 if (buildCounterDateRange < 3) { | 2705 if (buildCounterDateRange < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 2716 buildCounterDateRange++; | 2716 buildCounterDateRange++; |
| 2717 if (buildCounterDateRange < 3) { | 2717 if (buildCounterDateRange < 3) { |
| 2718 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2718 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2719 unittest.expect(o.kind, unittest.equals('foo')); | 2719 unittest.expect(o.kind, unittest.equals('foo')); |
| 2720 unittest.expect(o.relativeDateRange, unittest.equals('foo')); | 2720 unittest.expect(o.relativeDateRange, unittest.equals('foo')); |
| 2721 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2721 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2722 } | 2722 } |
| 2723 buildCounterDateRange--; | 2723 buildCounterDateRange--; |
| 2724 } | 2724 } |
| 2725 | 2725 |
| 2726 buildUnnamed241() { | 2726 buildUnnamed256() { |
| 2727 var o = new core.List<core.String>(); | 2727 var o = new core.List<core.String>(); |
| 2728 o.add("foo"); | 2728 o.add("foo"); |
| 2729 o.add("foo"); | 2729 o.add("foo"); |
| 2730 return o; | 2730 return o; |
| 2731 } | 2731 } |
| 2732 | 2732 |
| 2733 checkUnnamed241(core.List<core.String> o) { | 2733 checkUnnamed256(core.List<core.String> o) { |
| 2734 unittest.expect(o, unittest.hasLength(2)); | 2734 unittest.expect(o, unittest.hasLength(2)); |
| 2735 unittest.expect(o[0], unittest.equals('foo')); | 2735 unittest.expect(o[0], unittest.equals('foo')); |
| 2736 unittest.expect(o[1], unittest.equals('foo')); | 2736 unittest.expect(o[1], unittest.equals('foo')); |
| 2737 } | 2737 } |
| 2738 | 2738 |
| 2739 buildUnnamed242() { | 2739 buildUnnamed257() { |
| 2740 var o = new core.List<core.int>(); | 2740 var o = new core.List<core.int>(); |
| 2741 o.add(42); | 2741 o.add(42); |
| 2742 o.add(42); | 2742 o.add(42); |
| 2743 return o; | 2743 return o; |
| 2744 } | 2744 } |
| 2745 | 2745 |
| 2746 checkUnnamed242(core.List<core.int> o) { | 2746 checkUnnamed257(core.List<core.int> o) { |
| 2747 unittest.expect(o, unittest.hasLength(2)); | 2747 unittest.expect(o, unittest.hasLength(2)); |
| 2748 unittest.expect(o[0], unittest.equals(42)); | 2748 unittest.expect(o[0], unittest.equals(42)); |
| 2749 unittest.expect(o[1], unittest.equals(42)); | 2749 unittest.expect(o[1], unittest.equals(42)); |
| 2750 } | 2750 } |
| 2751 | 2751 |
| 2752 core.int buildCounterDayPartTargeting = 0; | 2752 core.int buildCounterDayPartTargeting = 0; |
| 2753 buildDayPartTargeting() { | 2753 buildDayPartTargeting() { |
| 2754 var o = new api.DayPartTargeting(); | 2754 var o = new api.DayPartTargeting(); |
| 2755 buildCounterDayPartTargeting++; | 2755 buildCounterDayPartTargeting++; |
| 2756 if (buildCounterDayPartTargeting < 3) { | 2756 if (buildCounterDayPartTargeting < 3) { |
| 2757 o.daysOfWeek = buildUnnamed241(); | 2757 o.daysOfWeek = buildUnnamed256(); |
| 2758 o.hoursOfDay = buildUnnamed242(); | 2758 o.hoursOfDay = buildUnnamed257(); |
| 2759 o.userLocalTime = true; | 2759 o.userLocalTime = true; |
| 2760 } | 2760 } |
| 2761 buildCounterDayPartTargeting--; | 2761 buildCounterDayPartTargeting--; |
| 2762 return o; | 2762 return o; |
| 2763 } | 2763 } |
| 2764 | 2764 |
| 2765 checkDayPartTargeting(api.DayPartTargeting o) { | 2765 checkDayPartTargeting(api.DayPartTargeting o) { |
| 2766 buildCounterDayPartTargeting++; | 2766 buildCounterDayPartTargeting++; |
| 2767 if (buildCounterDayPartTargeting < 3) { | 2767 if (buildCounterDayPartTargeting < 3) { |
| 2768 checkUnnamed241(o.daysOfWeek); | 2768 checkUnnamed256(o.daysOfWeek); |
| 2769 checkUnnamed242(o.hoursOfDay); | 2769 checkUnnamed257(o.hoursOfDay); |
| 2770 unittest.expect(o.userLocalTime, unittest.isTrue); | 2770 unittest.expect(o.userLocalTime, unittest.isTrue); |
| 2771 } | 2771 } |
| 2772 buildCounterDayPartTargeting--; | 2772 buildCounterDayPartTargeting--; |
| 2773 } | 2773 } |
| 2774 | 2774 |
| 2775 core.int buildCounterDefaultClickThroughEventTagProperties = 0; | 2775 core.int buildCounterDefaultClickThroughEventTagProperties = 0; |
| 2776 buildDefaultClickThroughEventTagProperties() { | 2776 buildDefaultClickThroughEventTagProperties() { |
| 2777 var o = new api.DefaultClickThroughEventTagProperties(); | 2777 var o = new api.DefaultClickThroughEventTagProperties(); |
| 2778 buildCounterDefaultClickThroughEventTagProperties++; | 2778 buildCounterDefaultClickThroughEventTagProperties++; |
| 2779 if (buildCounterDefaultClickThroughEventTagProperties < 3) { | 2779 if (buildCounterDefaultClickThroughEventTagProperties < 3) { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2911 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2911 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 2912 unittest.expect(o.etag, unittest.equals('foo')); | 2912 unittest.expect(o.etag, unittest.equals('foo')); |
| 2913 unittest.expect(o.id, unittest.equals('foo')); | 2913 unittest.expect(o.id, unittest.equals('foo')); |
| 2914 unittest.expect(o.kind, unittest.equals('foo')); | 2914 unittest.expect(o.kind, unittest.equals('foo')); |
| 2915 unittest.expect(o.matchType, unittest.equals('foo')); | 2915 unittest.expect(o.matchType, unittest.equals('foo')); |
| 2916 unittest.expect(o.value, unittest.equals('foo')); | 2916 unittest.expect(o.value, unittest.equals('foo')); |
| 2917 } | 2917 } |
| 2918 buildCounterDimensionValue--; | 2918 buildCounterDimensionValue--; |
| 2919 } | 2919 } |
| 2920 | 2920 |
| 2921 buildUnnamed243() { | 2921 buildUnnamed258() { |
| 2922 var o = new core.List<api.DimensionValue>(); | 2922 var o = new core.List<api.DimensionValue>(); |
| 2923 o.add(buildDimensionValue()); | 2923 o.add(buildDimensionValue()); |
| 2924 o.add(buildDimensionValue()); | 2924 o.add(buildDimensionValue()); |
| 2925 return o; | 2925 return o; |
| 2926 } | 2926 } |
| 2927 | 2927 |
| 2928 checkUnnamed243(core.List<api.DimensionValue> o) { | 2928 checkUnnamed258(core.List<api.DimensionValue> o) { |
| 2929 unittest.expect(o, unittest.hasLength(2)); | 2929 unittest.expect(o, unittest.hasLength(2)); |
| 2930 checkDimensionValue(o[0]); | 2930 checkDimensionValue(o[0]); |
| 2931 checkDimensionValue(o[1]); | 2931 checkDimensionValue(o[1]); |
| 2932 } | 2932 } |
| 2933 | 2933 |
| 2934 core.int buildCounterDimensionValueList = 0; | 2934 core.int buildCounterDimensionValueList = 0; |
| 2935 buildDimensionValueList() { | 2935 buildDimensionValueList() { |
| 2936 var o = new api.DimensionValueList(); | 2936 var o = new api.DimensionValueList(); |
| 2937 buildCounterDimensionValueList++; | 2937 buildCounterDimensionValueList++; |
| 2938 if (buildCounterDimensionValueList < 3) { | 2938 if (buildCounterDimensionValueList < 3) { |
| 2939 o.etag = "foo"; | 2939 o.etag = "foo"; |
| 2940 o.items = buildUnnamed243(); | 2940 o.items = buildUnnamed258(); |
| 2941 o.kind = "foo"; | 2941 o.kind = "foo"; |
| 2942 o.nextPageToken = "foo"; | 2942 o.nextPageToken = "foo"; |
| 2943 } | 2943 } |
| 2944 buildCounterDimensionValueList--; | 2944 buildCounterDimensionValueList--; |
| 2945 return o; | 2945 return o; |
| 2946 } | 2946 } |
| 2947 | 2947 |
| 2948 checkDimensionValueList(api.DimensionValueList o) { | 2948 checkDimensionValueList(api.DimensionValueList o) { |
| 2949 buildCounterDimensionValueList++; | 2949 buildCounterDimensionValueList++; |
| 2950 if (buildCounterDimensionValueList < 3) { | 2950 if (buildCounterDimensionValueList < 3) { |
| 2951 unittest.expect(o.etag, unittest.equals('foo')); | 2951 unittest.expect(o.etag, unittest.equals('foo')); |
| 2952 checkUnnamed243(o.items); | 2952 checkUnnamed258(o.items); |
| 2953 unittest.expect(o.kind, unittest.equals('foo')); | 2953 unittest.expect(o.kind, unittest.equals('foo')); |
| 2954 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2954 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2955 } | 2955 } |
| 2956 buildCounterDimensionValueList--; | 2956 buildCounterDimensionValueList--; |
| 2957 } | 2957 } |
| 2958 | 2958 |
| 2959 buildUnnamed244() { | 2959 buildUnnamed259() { |
| 2960 var o = new core.List<api.DimensionFilter>(); | 2960 var o = new core.List<api.DimensionFilter>(); |
| 2961 o.add(buildDimensionFilter()); | 2961 o.add(buildDimensionFilter()); |
| 2962 o.add(buildDimensionFilter()); | 2962 o.add(buildDimensionFilter()); |
| 2963 return o; | 2963 return o; |
| 2964 } | 2964 } |
| 2965 | 2965 |
| 2966 checkUnnamed244(core.List<api.DimensionFilter> o) { | 2966 checkUnnamed259(core.List<api.DimensionFilter> o) { |
| 2967 unittest.expect(o, unittest.hasLength(2)); | 2967 unittest.expect(o, unittest.hasLength(2)); |
| 2968 checkDimensionFilter(o[0]); | 2968 checkDimensionFilter(o[0]); |
| 2969 checkDimensionFilter(o[1]); | 2969 checkDimensionFilter(o[1]); |
| 2970 } | 2970 } |
| 2971 | 2971 |
| 2972 core.int buildCounterDimensionValueRequest = 0; | 2972 core.int buildCounterDimensionValueRequest = 0; |
| 2973 buildDimensionValueRequest() { | 2973 buildDimensionValueRequest() { |
| 2974 var o = new api.DimensionValueRequest(); | 2974 var o = new api.DimensionValueRequest(); |
| 2975 buildCounterDimensionValueRequest++; | 2975 buildCounterDimensionValueRequest++; |
| 2976 if (buildCounterDimensionValueRequest < 3) { | 2976 if (buildCounterDimensionValueRequest < 3) { |
| 2977 o.dimensionName = "foo"; | 2977 o.dimensionName = "foo"; |
| 2978 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2978 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 2979 o.filters = buildUnnamed244(); | 2979 o.filters = buildUnnamed259(); |
| 2980 o.kind = "foo"; | 2980 o.kind = "foo"; |
| 2981 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2981 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 2982 } | 2982 } |
| 2983 buildCounterDimensionValueRequest--; | 2983 buildCounterDimensionValueRequest--; |
| 2984 return o; | 2984 return o; |
| 2985 } | 2985 } |
| 2986 | 2986 |
| 2987 checkDimensionValueRequest(api.DimensionValueRequest o) { | 2987 checkDimensionValueRequest(api.DimensionValueRequest o) { |
| 2988 buildCounterDimensionValueRequest++; | 2988 buildCounterDimensionValueRequest++; |
| 2989 if (buildCounterDimensionValueRequest < 3) { | 2989 if (buildCounterDimensionValueRequest < 3) { |
| 2990 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2990 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 2991 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2991 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2992 checkUnnamed244(o.filters); | 2992 checkUnnamed259(o.filters); |
| 2993 unittest.expect(o.kind, unittest.equals('foo')); | 2993 unittest.expect(o.kind, unittest.equals('foo')); |
| 2994 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2994 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2995 } | 2995 } |
| 2996 buildCounterDimensionValueRequest--; | 2996 buildCounterDimensionValueRequest--; |
| 2997 } | 2997 } |
| 2998 | 2998 |
| 2999 buildUnnamed245() { | 2999 buildUnnamed260() { |
| 3000 var o = new core.List<api.DirectorySiteContactAssignment>(); | 3000 var o = new core.List<api.DirectorySiteContactAssignment>(); |
| 3001 o.add(buildDirectorySiteContactAssignment()); | 3001 o.add(buildDirectorySiteContactAssignment()); |
| 3002 o.add(buildDirectorySiteContactAssignment()); | 3002 o.add(buildDirectorySiteContactAssignment()); |
| 3003 return o; | 3003 return o; |
| 3004 } | 3004 } |
| 3005 | 3005 |
| 3006 checkUnnamed245(core.List<api.DirectorySiteContactAssignment> o) { | 3006 checkUnnamed260(core.List<api.DirectorySiteContactAssignment> o) { |
| 3007 unittest.expect(o, unittest.hasLength(2)); | 3007 unittest.expect(o, unittest.hasLength(2)); |
| 3008 checkDirectorySiteContactAssignment(o[0]); | 3008 checkDirectorySiteContactAssignment(o[0]); |
| 3009 checkDirectorySiteContactAssignment(o[1]); | 3009 checkDirectorySiteContactAssignment(o[1]); |
| 3010 } | 3010 } |
| 3011 | 3011 |
| 3012 buildUnnamed246() { | 3012 buildUnnamed261() { |
| 3013 var o = new core.List<core.String>(); | 3013 var o = new core.List<core.String>(); |
| 3014 o.add("foo"); | 3014 o.add("foo"); |
| 3015 o.add("foo"); | 3015 o.add("foo"); |
| 3016 return o; | 3016 return o; |
| 3017 } | 3017 } |
| 3018 | 3018 |
| 3019 checkUnnamed246(core.List<core.String> o) { | 3019 checkUnnamed261(core.List<core.String> o) { |
| 3020 unittest.expect(o, unittest.hasLength(2)); | 3020 unittest.expect(o, unittest.hasLength(2)); |
| 3021 unittest.expect(o[0], unittest.equals('foo')); | 3021 unittest.expect(o[0], unittest.equals('foo')); |
| 3022 unittest.expect(o[1], unittest.equals('foo')); | 3022 unittest.expect(o[1], unittest.equals('foo')); |
| 3023 } | 3023 } |
| 3024 | 3024 |
| 3025 buildUnnamed247() { | 3025 buildUnnamed262() { |
| 3026 var o = new core.List<core.String>(); | 3026 var o = new core.List<core.String>(); |
| 3027 o.add("foo"); | 3027 o.add("foo"); |
| 3028 o.add("foo"); | 3028 o.add("foo"); |
| 3029 return o; | 3029 return o; |
| 3030 } | 3030 } |
| 3031 | 3031 |
| 3032 checkUnnamed247(core.List<core.String> o) { | 3032 checkUnnamed262(core.List<core.String> o) { |
| 3033 unittest.expect(o, unittest.hasLength(2)); | 3033 unittest.expect(o, unittest.hasLength(2)); |
| 3034 unittest.expect(o[0], unittest.equals('foo')); | 3034 unittest.expect(o[0], unittest.equals('foo')); |
| 3035 unittest.expect(o[1], unittest.equals('foo')); | 3035 unittest.expect(o[1], unittest.equals('foo')); |
| 3036 } | 3036 } |
| 3037 | 3037 |
| 3038 core.int buildCounterDirectorySite = 0; | 3038 core.int buildCounterDirectorySite = 0; |
| 3039 buildDirectorySite() { | 3039 buildDirectorySite() { |
| 3040 var o = new api.DirectorySite(); | 3040 var o = new api.DirectorySite(); |
| 3041 buildCounterDirectorySite++; | 3041 buildCounterDirectorySite++; |
| 3042 if (buildCounterDirectorySite < 3) { | 3042 if (buildCounterDirectorySite < 3) { |
| 3043 o.active = true; | 3043 o.active = true; |
| 3044 o.contactAssignments = buildUnnamed245(); | 3044 o.contactAssignments = buildUnnamed260(); |
| 3045 o.countryId = "foo"; | 3045 o.countryId = "foo"; |
| 3046 o.currencyId = "foo"; | 3046 o.currencyId = "foo"; |
| 3047 o.description = "foo"; | 3047 o.description = "foo"; |
| 3048 o.id = "foo"; | 3048 o.id = "foo"; |
| 3049 o.idDimensionValue = buildDimensionValue(); | 3049 o.idDimensionValue = buildDimensionValue(); |
| 3050 o.inpageTagFormats = buildUnnamed246(); | 3050 o.inpageTagFormats = buildUnnamed261(); |
| 3051 o.interstitialTagFormats = buildUnnamed247(); | 3051 o.interstitialTagFormats = buildUnnamed262(); |
| 3052 o.kind = "foo"; | 3052 o.kind = "foo"; |
| 3053 o.name = "foo"; | 3053 o.name = "foo"; |
| 3054 o.parentId = "foo"; | 3054 o.parentId = "foo"; |
| 3055 o.settings = buildDirectorySiteSettings(); | 3055 o.settings = buildDirectorySiteSettings(); |
| 3056 o.url = "foo"; | 3056 o.url = "foo"; |
| 3057 } | 3057 } |
| 3058 buildCounterDirectorySite--; | 3058 buildCounterDirectorySite--; |
| 3059 return o; | 3059 return o; |
| 3060 } | 3060 } |
| 3061 | 3061 |
| 3062 checkDirectorySite(api.DirectorySite o) { | 3062 checkDirectorySite(api.DirectorySite o) { |
| 3063 buildCounterDirectorySite++; | 3063 buildCounterDirectorySite++; |
| 3064 if (buildCounterDirectorySite < 3) { | 3064 if (buildCounterDirectorySite < 3) { |
| 3065 unittest.expect(o.active, unittest.isTrue); | 3065 unittest.expect(o.active, unittest.isTrue); |
| 3066 checkUnnamed245(o.contactAssignments); | 3066 checkUnnamed260(o.contactAssignments); |
| 3067 unittest.expect(o.countryId, unittest.equals('foo')); | 3067 unittest.expect(o.countryId, unittest.equals('foo')); |
| 3068 unittest.expect(o.currencyId, unittest.equals('foo')); | 3068 unittest.expect(o.currencyId, unittest.equals('foo')); |
| 3069 unittest.expect(o.description, unittest.equals('foo')); | 3069 unittest.expect(o.description, unittest.equals('foo')); |
| 3070 unittest.expect(o.id, unittest.equals('foo')); | 3070 unittest.expect(o.id, unittest.equals('foo')); |
| 3071 checkDimensionValue(o.idDimensionValue); | 3071 checkDimensionValue(o.idDimensionValue); |
| 3072 checkUnnamed246(o.inpageTagFormats); | 3072 checkUnnamed261(o.inpageTagFormats); |
| 3073 checkUnnamed247(o.interstitialTagFormats); | 3073 checkUnnamed262(o.interstitialTagFormats); |
| 3074 unittest.expect(o.kind, unittest.equals('foo')); | 3074 unittest.expect(o.kind, unittest.equals('foo')); |
| 3075 unittest.expect(o.name, unittest.equals('foo')); | 3075 unittest.expect(o.name, unittest.equals('foo')); |
| 3076 unittest.expect(o.parentId, unittest.equals('foo')); | 3076 unittest.expect(o.parentId, unittest.equals('foo')); |
| 3077 checkDirectorySiteSettings(o.settings); | 3077 checkDirectorySiteSettings(o.settings); |
| 3078 unittest.expect(o.url, unittest.equals('foo')); | 3078 unittest.expect(o.url, unittest.equals('foo')); |
| 3079 } | 3079 } |
| 3080 buildCounterDirectorySite--; | 3080 buildCounterDirectorySite--; |
| 3081 } | 3081 } |
| 3082 | 3082 |
| 3083 core.int buildCounterDirectorySiteContact = 0; | 3083 core.int buildCounterDirectorySiteContact = 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3131 | 3131 |
| 3132 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { | 3132 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { |
| 3133 buildCounterDirectorySiteContactAssignment++; | 3133 buildCounterDirectorySiteContactAssignment++; |
| 3134 if (buildCounterDirectorySiteContactAssignment < 3) { | 3134 if (buildCounterDirectorySiteContactAssignment < 3) { |
| 3135 unittest.expect(o.contactId, unittest.equals('foo')); | 3135 unittest.expect(o.contactId, unittest.equals('foo')); |
| 3136 unittest.expect(o.visibility, unittest.equals('foo')); | 3136 unittest.expect(o.visibility, unittest.equals('foo')); |
| 3137 } | 3137 } |
| 3138 buildCounterDirectorySiteContactAssignment--; | 3138 buildCounterDirectorySiteContactAssignment--; |
| 3139 } | 3139 } |
| 3140 | 3140 |
| 3141 buildUnnamed248() { | 3141 buildUnnamed263() { |
| 3142 var o = new core.List<api.DirectorySiteContact>(); | 3142 var o = new core.List<api.DirectorySiteContact>(); |
| 3143 o.add(buildDirectorySiteContact()); | 3143 o.add(buildDirectorySiteContact()); |
| 3144 o.add(buildDirectorySiteContact()); | 3144 o.add(buildDirectorySiteContact()); |
| 3145 return o; | 3145 return o; |
| 3146 } | 3146 } |
| 3147 | 3147 |
| 3148 checkUnnamed248(core.List<api.DirectorySiteContact> o) { | 3148 checkUnnamed263(core.List<api.DirectorySiteContact> o) { |
| 3149 unittest.expect(o, unittest.hasLength(2)); | 3149 unittest.expect(o, unittest.hasLength(2)); |
| 3150 checkDirectorySiteContact(o[0]); | 3150 checkDirectorySiteContact(o[0]); |
| 3151 checkDirectorySiteContact(o[1]); | 3151 checkDirectorySiteContact(o[1]); |
| 3152 } | 3152 } |
| 3153 | 3153 |
| 3154 core.int buildCounterDirectorySiteContactsListResponse = 0; | 3154 core.int buildCounterDirectorySiteContactsListResponse = 0; |
| 3155 buildDirectorySiteContactsListResponse() { | 3155 buildDirectorySiteContactsListResponse() { |
| 3156 var o = new api.DirectorySiteContactsListResponse(); | 3156 var o = new api.DirectorySiteContactsListResponse(); |
| 3157 buildCounterDirectorySiteContactsListResponse++; | 3157 buildCounterDirectorySiteContactsListResponse++; |
| 3158 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3158 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3159 o.directorySiteContacts = buildUnnamed248(); | 3159 o.directorySiteContacts = buildUnnamed263(); |
| 3160 o.kind = "foo"; | 3160 o.kind = "foo"; |
| 3161 o.nextPageToken = "foo"; | 3161 o.nextPageToken = "foo"; |
| 3162 } | 3162 } |
| 3163 buildCounterDirectorySiteContactsListResponse--; | 3163 buildCounterDirectorySiteContactsListResponse--; |
| 3164 return o; | 3164 return o; |
| 3165 } | 3165 } |
| 3166 | 3166 |
| 3167 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ | 3167 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ |
| 3168 buildCounterDirectorySiteContactsListResponse++; | 3168 buildCounterDirectorySiteContactsListResponse++; |
| 3169 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3169 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3170 checkUnnamed248(o.directorySiteContacts); | 3170 checkUnnamed263(o.directorySiteContacts); |
| 3171 unittest.expect(o.kind, unittest.equals('foo')); | 3171 unittest.expect(o.kind, unittest.equals('foo')); |
| 3172 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3172 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3173 } | 3173 } |
| 3174 buildCounterDirectorySiteContactsListResponse--; | 3174 buildCounterDirectorySiteContactsListResponse--; |
| 3175 } | 3175 } |
| 3176 | 3176 |
| 3177 core.int buildCounterDirectorySiteSettings = 0; | 3177 core.int buildCounterDirectorySiteSettings = 0; |
| 3178 buildDirectorySiteSettings() { | 3178 buildDirectorySiteSettings() { |
| 3179 var o = new api.DirectorySiteSettings(); | 3179 var o = new api.DirectorySiteSettings(); |
| 3180 buildCounterDirectorySiteSettings++; | 3180 buildCounterDirectorySiteSettings++; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 3198 checkDfpSettings(o.dfpSettings); | 3198 checkDfpSettings(o.dfpSettings); |
| 3199 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); | 3199 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); |
| 3200 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); | 3200 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); |
| 3201 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); | 3201 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); |
| 3202 unittest.expect(o.verificationTagOptOut, unittest.isTrue); | 3202 unittest.expect(o.verificationTagOptOut, unittest.isTrue); |
| 3203 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 3203 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 3204 } | 3204 } |
| 3205 buildCounterDirectorySiteSettings--; | 3205 buildCounterDirectorySiteSettings--; |
| 3206 } | 3206 } |
| 3207 | 3207 |
| 3208 buildUnnamed249() { | 3208 buildUnnamed264() { |
| 3209 var o = new core.List<api.DirectorySite>(); | 3209 var o = new core.List<api.DirectorySite>(); |
| 3210 o.add(buildDirectorySite()); | 3210 o.add(buildDirectorySite()); |
| 3211 o.add(buildDirectorySite()); | 3211 o.add(buildDirectorySite()); |
| 3212 return o; | 3212 return o; |
| 3213 } | 3213 } |
| 3214 | 3214 |
| 3215 checkUnnamed249(core.List<api.DirectorySite> o) { | 3215 checkUnnamed264(core.List<api.DirectorySite> o) { |
| 3216 unittest.expect(o, unittest.hasLength(2)); | 3216 unittest.expect(o, unittest.hasLength(2)); |
| 3217 checkDirectorySite(o[0]); | 3217 checkDirectorySite(o[0]); |
| 3218 checkDirectorySite(o[1]); | 3218 checkDirectorySite(o[1]); |
| 3219 } | 3219 } |
| 3220 | 3220 |
| 3221 core.int buildCounterDirectorySitesListResponse = 0; | 3221 core.int buildCounterDirectorySitesListResponse = 0; |
| 3222 buildDirectorySitesListResponse() { | 3222 buildDirectorySitesListResponse() { |
| 3223 var o = new api.DirectorySitesListResponse(); | 3223 var o = new api.DirectorySitesListResponse(); |
| 3224 buildCounterDirectorySitesListResponse++; | 3224 buildCounterDirectorySitesListResponse++; |
| 3225 if (buildCounterDirectorySitesListResponse < 3) { | 3225 if (buildCounterDirectorySitesListResponse < 3) { |
| 3226 o.directorySites = buildUnnamed249(); | 3226 o.directorySites = buildUnnamed264(); |
| 3227 o.kind = "foo"; | 3227 o.kind = "foo"; |
| 3228 o.nextPageToken = "foo"; | 3228 o.nextPageToken = "foo"; |
| 3229 } | 3229 } |
| 3230 buildCounterDirectorySitesListResponse--; | 3230 buildCounterDirectorySitesListResponse--; |
| 3231 return o; | 3231 return o; |
| 3232 } | 3232 } |
| 3233 | 3233 |
| 3234 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { | 3234 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { |
| 3235 buildCounterDirectorySitesListResponse++; | 3235 buildCounterDirectorySitesListResponse++; |
| 3236 if (buildCounterDirectorySitesListResponse < 3) { | 3236 if (buildCounterDirectorySitesListResponse < 3) { |
| 3237 checkUnnamed249(o.directorySites); | 3237 checkUnnamed264(o.directorySites); |
| 3238 unittest.expect(o.kind, unittest.equals('foo')); | 3238 unittest.expect(o.kind, unittest.equals('foo')); |
| 3239 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3239 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3240 } | 3240 } |
| 3241 buildCounterDirectorySitesListResponse--; | 3241 buildCounterDirectorySitesListResponse--; |
| 3242 } | 3242 } |
| 3243 | 3243 |
| 3244 buildUnnamed250() { | 3244 buildUnnamed265() { |
| 3245 var o = new core.List<core.String>(); | 3245 var o = new core.List<core.String>(); |
| 3246 o.add("foo"); | 3246 o.add("foo"); |
| 3247 o.add("foo"); | 3247 o.add("foo"); |
| 3248 return o; | 3248 return o; |
| 3249 } | 3249 } |
| 3250 | 3250 |
| 3251 checkUnnamed250(core.List<core.String> o) { | 3251 checkUnnamed265(core.List<core.String> o) { |
| 3252 unittest.expect(o, unittest.hasLength(2)); | 3252 unittest.expect(o, unittest.hasLength(2)); |
| 3253 unittest.expect(o[0], unittest.equals('foo')); | 3253 unittest.expect(o[0], unittest.equals('foo')); |
| 3254 unittest.expect(o[1], unittest.equals('foo')); | 3254 unittest.expect(o[1], unittest.equals('foo')); |
| 3255 } | 3255 } |
| 3256 | 3256 |
| 3257 core.int buildCounterEventTag = 0; | 3257 core.int buildCounterEventTag = 0; |
| 3258 buildEventTag() { | 3258 buildEventTag() { |
| 3259 var o = new api.EventTag(); | 3259 var o = new api.EventTag(); |
| 3260 buildCounterEventTag++; | 3260 buildCounterEventTag++; |
| 3261 if (buildCounterEventTag < 3) { | 3261 if (buildCounterEventTag < 3) { |
| 3262 o.accountId = "foo"; | 3262 o.accountId = "foo"; |
| 3263 o.advertiserId = "foo"; | 3263 o.advertiserId = "foo"; |
| 3264 o.advertiserIdDimensionValue = buildDimensionValue(); | 3264 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3265 o.campaignId = "foo"; | 3265 o.campaignId = "foo"; |
| 3266 o.campaignIdDimensionValue = buildDimensionValue(); | 3266 o.campaignIdDimensionValue = buildDimensionValue(); |
| 3267 o.enabledByDefault = true; | 3267 o.enabledByDefault = true; |
| 3268 o.excludeFromAdxRequests = true; | 3268 o.excludeFromAdxRequests = true; |
| 3269 o.id = "foo"; | 3269 o.id = "foo"; |
| 3270 o.kind = "foo"; | 3270 o.kind = "foo"; |
| 3271 o.name = "foo"; | 3271 o.name = "foo"; |
| 3272 o.siteFilterType = "foo"; | 3272 o.siteFilterType = "foo"; |
| 3273 o.siteIds = buildUnnamed250(); | 3273 o.siteIds = buildUnnamed265(); |
| 3274 o.sslCompliant = true; | 3274 o.sslCompliant = true; |
| 3275 o.status = "foo"; | 3275 o.status = "foo"; |
| 3276 o.subaccountId = "foo"; | 3276 o.subaccountId = "foo"; |
| 3277 o.type = "foo"; | 3277 o.type = "foo"; |
| 3278 o.url = "foo"; | 3278 o.url = "foo"; |
| 3279 o.urlEscapeLevels = 42; | 3279 o.urlEscapeLevels = 42; |
| 3280 } | 3280 } |
| 3281 buildCounterEventTag--; | 3281 buildCounterEventTag--; |
| 3282 return o; | 3282 return o; |
| 3283 } | 3283 } |
| 3284 | 3284 |
| 3285 checkEventTag(api.EventTag o) { | 3285 checkEventTag(api.EventTag o) { |
| 3286 buildCounterEventTag++; | 3286 buildCounterEventTag++; |
| 3287 if (buildCounterEventTag < 3) { | 3287 if (buildCounterEventTag < 3) { |
| 3288 unittest.expect(o.accountId, unittest.equals('foo')); | 3288 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3289 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3289 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3290 checkDimensionValue(o.advertiserIdDimensionValue); | 3290 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3291 unittest.expect(o.campaignId, unittest.equals('foo')); | 3291 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 3292 checkDimensionValue(o.campaignIdDimensionValue); | 3292 checkDimensionValue(o.campaignIdDimensionValue); |
| 3293 unittest.expect(o.enabledByDefault, unittest.isTrue); | 3293 unittest.expect(o.enabledByDefault, unittest.isTrue); |
| 3294 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); | 3294 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); |
| 3295 unittest.expect(o.id, unittest.equals('foo')); | 3295 unittest.expect(o.id, unittest.equals('foo')); |
| 3296 unittest.expect(o.kind, unittest.equals('foo')); | 3296 unittest.expect(o.kind, unittest.equals('foo')); |
| 3297 unittest.expect(o.name, unittest.equals('foo')); | 3297 unittest.expect(o.name, unittest.equals('foo')); |
| 3298 unittest.expect(o.siteFilterType, unittest.equals('foo')); | 3298 unittest.expect(o.siteFilterType, unittest.equals('foo')); |
| 3299 checkUnnamed250(o.siteIds); | 3299 checkUnnamed265(o.siteIds); |
| 3300 unittest.expect(o.sslCompliant, unittest.isTrue); | 3300 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3301 unittest.expect(o.status, unittest.equals('foo')); | 3301 unittest.expect(o.status, unittest.equals('foo')); |
| 3302 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3302 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3303 unittest.expect(o.type, unittest.equals('foo')); | 3303 unittest.expect(o.type, unittest.equals('foo')); |
| 3304 unittest.expect(o.url, unittest.equals('foo')); | 3304 unittest.expect(o.url, unittest.equals('foo')); |
| 3305 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); | 3305 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); |
| 3306 } | 3306 } |
| 3307 buildCounterEventTag--; | 3307 buildCounterEventTag--; |
| 3308 } | 3308 } |
| 3309 | 3309 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3321 | 3321 |
| 3322 checkEventTagOverride(api.EventTagOverride o) { | 3322 checkEventTagOverride(api.EventTagOverride o) { |
| 3323 buildCounterEventTagOverride++; | 3323 buildCounterEventTagOverride++; |
| 3324 if (buildCounterEventTagOverride < 3) { | 3324 if (buildCounterEventTagOverride < 3) { |
| 3325 unittest.expect(o.enabled, unittest.isTrue); | 3325 unittest.expect(o.enabled, unittest.isTrue); |
| 3326 unittest.expect(o.id, unittest.equals('foo')); | 3326 unittest.expect(o.id, unittest.equals('foo')); |
| 3327 } | 3327 } |
| 3328 buildCounterEventTagOverride--; | 3328 buildCounterEventTagOverride--; |
| 3329 } | 3329 } |
| 3330 | 3330 |
| 3331 buildUnnamed251() { | 3331 buildUnnamed266() { |
| 3332 var o = new core.List<api.EventTag>(); | 3332 var o = new core.List<api.EventTag>(); |
| 3333 o.add(buildEventTag()); | 3333 o.add(buildEventTag()); |
| 3334 o.add(buildEventTag()); | 3334 o.add(buildEventTag()); |
| 3335 return o; | 3335 return o; |
| 3336 } | 3336 } |
| 3337 | 3337 |
| 3338 checkUnnamed251(core.List<api.EventTag> o) { | 3338 checkUnnamed266(core.List<api.EventTag> o) { |
| 3339 unittest.expect(o, unittest.hasLength(2)); | 3339 unittest.expect(o, unittest.hasLength(2)); |
| 3340 checkEventTag(o[0]); | 3340 checkEventTag(o[0]); |
| 3341 checkEventTag(o[1]); | 3341 checkEventTag(o[1]); |
| 3342 } | 3342 } |
| 3343 | 3343 |
| 3344 core.int buildCounterEventTagsListResponse = 0; | 3344 core.int buildCounterEventTagsListResponse = 0; |
| 3345 buildEventTagsListResponse() { | 3345 buildEventTagsListResponse() { |
| 3346 var o = new api.EventTagsListResponse(); | 3346 var o = new api.EventTagsListResponse(); |
| 3347 buildCounterEventTagsListResponse++; | 3347 buildCounterEventTagsListResponse++; |
| 3348 if (buildCounterEventTagsListResponse < 3) { | 3348 if (buildCounterEventTagsListResponse < 3) { |
| 3349 o.eventTags = buildUnnamed251(); | 3349 o.eventTags = buildUnnamed266(); |
| 3350 o.kind = "foo"; | 3350 o.kind = "foo"; |
| 3351 } | 3351 } |
| 3352 buildCounterEventTagsListResponse--; | 3352 buildCounterEventTagsListResponse--; |
| 3353 return o; | 3353 return o; |
| 3354 } | 3354 } |
| 3355 | 3355 |
| 3356 checkEventTagsListResponse(api.EventTagsListResponse o) { | 3356 checkEventTagsListResponse(api.EventTagsListResponse o) { |
| 3357 buildCounterEventTagsListResponse++; | 3357 buildCounterEventTagsListResponse++; |
| 3358 if (buildCounterEventTagsListResponse < 3) { | 3358 if (buildCounterEventTagsListResponse < 3) { |
| 3359 checkUnnamed251(o.eventTags); | 3359 checkUnnamed266(o.eventTags); |
| 3360 unittest.expect(o.kind, unittest.equals('foo')); | 3360 unittest.expect(o.kind, unittest.equals('foo')); |
| 3361 } | 3361 } |
| 3362 buildCounterEventTagsListResponse--; | 3362 buildCounterEventTagsListResponse--; |
| 3363 } | 3363 } |
| 3364 | 3364 |
| 3365 core.int buildCounterFileUrls = 0; | 3365 core.int buildCounterFileUrls = 0; |
| 3366 buildFileUrls() { | 3366 buildFileUrls() { |
| 3367 var o = new api.FileUrls(); | 3367 var o = new api.FileUrls(); |
| 3368 buildCounterFileUrls++; | 3368 buildCounterFileUrls++; |
| 3369 if (buildCounterFileUrls < 3) { | 3369 if (buildCounterFileUrls < 3) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3413 unittest.expect(o.id, unittest.equals('foo')); | 3413 unittest.expect(o.id, unittest.equals('foo')); |
| 3414 unittest.expect(o.kind, unittest.equals('foo')); | 3414 unittest.expect(o.kind, unittest.equals('foo')); |
| 3415 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); | 3415 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); |
| 3416 unittest.expect(o.reportId, unittest.equals('foo')); | 3416 unittest.expect(o.reportId, unittest.equals('foo')); |
| 3417 unittest.expect(o.status, unittest.equals('foo')); | 3417 unittest.expect(o.status, unittest.equals('foo')); |
| 3418 checkFileUrls(o.urls); | 3418 checkFileUrls(o.urls); |
| 3419 } | 3419 } |
| 3420 buildCounterFile--; | 3420 buildCounterFile--; |
| 3421 } | 3421 } |
| 3422 | 3422 |
| 3423 buildUnnamed252() { | 3423 buildUnnamed267() { |
| 3424 var o = new core.List<api.File>(); | 3424 var o = new core.List<api.File>(); |
| 3425 o.add(buildFile()); | 3425 o.add(buildFile()); |
| 3426 o.add(buildFile()); | 3426 o.add(buildFile()); |
| 3427 return o; | 3427 return o; |
| 3428 } | 3428 } |
| 3429 | 3429 |
| 3430 checkUnnamed252(core.List<api.File> o) { | 3430 checkUnnamed267(core.List<api.File> o) { |
| 3431 unittest.expect(o, unittest.hasLength(2)); | 3431 unittest.expect(o, unittest.hasLength(2)); |
| 3432 checkFile(o[0]); | 3432 checkFile(o[0]); |
| 3433 checkFile(o[1]); | 3433 checkFile(o[1]); |
| 3434 } | 3434 } |
| 3435 | 3435 |
| 3436 core.int buildCounterFileList = 0; | 3436 core.int buildCounterFileList = 0; |
| 3437 buildFileList() { | 3437 buildFileList() { |
| 3438 var o = new api.FileList(); | 3438 var o = new api.FileList(); |
| 3439 buildCounterFileList++; | 3439 buildCounterFileList++; |
| 3440 if (buildCounterFileList < 3) { | 3440 if (buildCounterFileList < 3) { |
| 3441 o.etag = "foo"; | 3441 o.etag = "foo"; |
| 3442 o.items = buildUnnamed252(); | 3442 o.items = buildUnnamed267(); |
| 3443 o.kind = "foo"; | 3443 o.kind = "foo"; |
| 3444 o.nextPageToken = "foo"; | 3444 o.nextPageToken = "foo"; |
| 3445 } | 3445 } |
| 3446 buildCounterFileList--; | 3446 buildCounterFileList--; |
| 3447 return o; | 3447 return o; |
| 3448 } | 3448 } |
| 3449 | 3449 |
| 3450 checkFileList(api.FileList o) { | 3450 checkFileList(api.FileList o) { |
| 3451 buildCounterFileList++; | 3451 buildCounterFileList++; |
| 3452 if (buildCounterFileList < 3) { | 3452 if (buildCounterFileList < 3) { |
| 3453 unittest.expect(o.etag, unittest.equals('foo')); | 3453 unittest.expect(o.etag, unittest.equals('foo')); |
| 3454 checkUnnamed252(o.items); | 3454 checkUnnamed267(o.items); |
| 3455 unittest.expect(o.kind, unittest.equals('foo')); | 3455 unittest.expect(o.kind, unittest.equals('foo')); |
| 3456 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3456 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3457 } | 3457 } |
| 3458 buildCounterFileList--; | 3458 buildCounterFileList--; |
| 3459 } | 3459 } |
| 3460 | 3460 |
| 3461 core.int buildCounterFlight = 0; | 3461 core.int buildCounterFlight = 0; |
| 3462 buildFlight() { | 3462 buildFlight() { |
| 3463 var o = new api.Flight(); | 3463 var o = new api.Flight(); |
| 3464 buildCounterFlight++; | 3464 buildCounterFlight++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3497 | 3497 |
| 3498 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { | 3498 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { |
| 3499 buildCounterFloodlightActivitiesGenerateTagResponse++; | 3499 buildCounterFloodlightActivitiesGenerateTagResponse++; |
| 3500 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { | 3500 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { |
| 3501 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); | 3501 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); |
| 3502 unittest.expect(o.kind, unittest.equals('foo')); | 3502 unittest.expect(o.kind, unittest.equals('foo')); |
| 3503 } | 3503 } |
| 3504 buildCounterFloodlightActivitiesGenerateTagResponse--; | 3504 buildCounterFloodlightActivitiesGenerateTagResponse--; |
| 3505 } | 3505 } |
| 3506 | 3506 |
| 3507 buildUnnamed253() { | 3507 buildUnnamed268() { |
| 3508 var o = new core.List<api.FloodlightActivity>(); | 3508 var o = new core.List<api.FloodlightActivity>(); |
| 3509 o.add(buildFloodlightActivity()); | 3509 o.add(buildFloodlightActivity()); |
| 3510 o.add(buildFloodlightActivity()); | 3510 o.add(buildFloodlightActivity()); |
| 3511 return o; | 3511 return o; |
| 3512 } | 3512 } |
| 3513 | 3513 |
| 3514 checkUnnamed253(core.List<api.FloodlightActivity> o) { | 3514 checkUnnamed268(core.List<api.FloodlightActivity> o) { |
| 3515 unittest.expect(o, unittest.hasLength(2)); | 3515 unittest.expect(o, unittest.hasLength(2)); |
| 3516 checkFloodlightActivity(o[0]); | 3516 checkFloodlightActivity(o[0]); |
| 3517 checkFloodlightActivity(o[1]); | 3517 checkFloodlightActivity(o[1]); |
| 3518 } | 3518 } |
| 3519 | 3519 |
| 3520 core.int buildCounterFloodlightActivitiesListResponse = 0; | 3520 core.int buildCounterFloodlightActivitiesListResponse = 0; |
| 3521 buildFloodlightActivitiesListResponse() { | 3521 buildFloodlightActivitiesListResponse() { |
| 3522 var o = new api.FloodlightActivitiesListResponse(); | 3522 var o = new api.FloodlightActivitiesListResponse(); |
| 3523 buildCounterFloodlightActivitiesListResponse++; | 3523 buildCounterFloodlightActivitiesListResponse++; |
| 3524 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3524 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3525 o.floodlightActivities = buildUnnamed253(); | 3525 o.floodlightActivities = buildUnnamed268(); |
| 3526 o.kind = "foo"; | 3526 o.kind = "foo"; |
| 3527 o.nextPageToken = "foo"; | 3527 o.nextPageToken = "foo"; |
| 3528 } | 3528 } |
| 3529 buildCounterFloodlightActivitiesListResponse--; | 3529 buildCounterFloodlightActivitiesListResponse--; |
| 3530 return o; | 3530 return o; |
| 3531 } | 3531 } |
| 3532 | 3532 |
| 3533 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { | 3533 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { |
| 3534 buildCounterFloodlightActivitiesListResponse++; | 3534 buildCounterFloodlightActivitiesListResponse++; |
| 3535 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3535 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3536 checkUnnamed253(o.floodlightActivities); | 3536 checkUnnamed268(o.floodlightActivities); |
| 3537 unittest.expect(o.kind, unittest.equals('foo')); | 3537 unittest.expect(o.kind, unittest.equals('foo')); |
| 3538 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3538 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3539 } | 3539 } |
| 3540 buildCounterFloodlightActivitiesListResponse--; | 3540 buildCounterFloodlightActivitiesListResponse--; |
| 3541 } | 3541 } |
| 3542 | 3542 |
| 3543 buildUnnamed254() { | 3543 buildUnnamed269() { |
| 3544 var o = new core.List<api.FloodlightActivityDynamicTag>(); | 3544 var o = new core.List<api.FloodlightActivityDynamicTag>(); |
| 3545 o.add(buildFloodlightActivityDynamicTag()); | 3545 o.add(buildFloodlightActivityDynamicTag()); |
| 3546 o.add(buildFloodlightActivityDynamicTag()); | 3546 o.add(buildFloodlightActivityDynamicTag()); |
| 3547 return o; | 3547 return o; |
| 3548 } | 3548 } |
| 3549 | 3549 |
| 3550 checkUnnamed254(core.List<api.FloodlightActivityDynamicTag> o) { | 3550 checkUnnamed269(core.List<api.FloodlightActivityDynamicTag> o) { |
| 3551 unittest.expect(o, unittest.hasLength(2)); | 3551 unittest.expect(o, unittest.hasLength(2)); |
| 3552 checkFloodlightActivityDynamicTag(o[0]); | 3552 checkFloodlightActivityDynamicTag(o[0]); |
| 3553 checkFloodlightActivityDynamicTag(o[1]); | 3553 checkFloodlightActivityDynamicTag(o[1]); |
| 3554 } | 3554 } |
| 3555 | 3555 |
| 3556 buildUnnamed255() { | 3556 buildUnnamed270() { |
| 3557 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); | 3557 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); |
| 3558 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3558 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3559 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3559 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3560 return o; | 3560 return o; |
| 3561 } | 3561 } |
| 3562 | 3562 |
| 3563 checkUnnamed255(core.List<api.FloodlightActivityPublisherDynamicTag> o) { | 3563 checkUnnamed270(core.List<api.FloodlightActivityPublisherDynamicTag> o) { |
| 3564 unittest.expect(o, unittest.hasLength(2)); | 3564 unittest.expect(o, unittest.hasLength(2)); |
| 3565 checkFloodlightActivityPublisherDynamicTag(o[0]); | 3565 checkFloodlightActivityPublisherDynamicTag(o[0]); |
| 3566 checkFloodlightActivityPublisherDynamicTag(o[1]); | 3566 checkFloodlightActivityPublisherDynamicTag(o[1]); |
| 3567 } | 3567 } |
| 3568 | 3568 |
| 3569 buildUnnamed256() { | 3569 buildUnnamed271() { |
| 3570 var o = new core.List<core.String>(); | 3570 var o = new core.List<core.String>(); |
| 3571 o.add("foo"); | 3571 o.add("foo"); |
| 3572 o.add("foo"); | 3572 o.add("foo"); |
| 3573 return o; | 3573 return o; |
| 3574 } | 3574 } |
| 3575 | 3575 |
| 3576 checkUnnamed256(core.List<core.String> o) { | 3576 checkUnnamed271(core.List<core.String> o) { |
| 3577 unittest.expect(o, unittest.hasLength(2)); | 3577 unittest.expect(o, unittest.hasLength(2)); |
| 3578 unittest.expect(o[0], unittest.equals('foo')); | 3578 unittest.expect(o[0], unittest.equals('foo')); |
| 3579 unittest.expect(o[1], unittest.equals('foo')); | 3579 unittest.expect(o[1], unittest.equals('foo')); |
| 3580 } | 3580 } |
| 3581 | 3581 |
| 3582 core.int buildCounterFloodlightActivity = 0; | 3582 core.int buildCounterFloodlightActivity = 0; |
| 3583 buildFloodlightActivity() { | 3583 buildFloodlightActivity() { |
| 3584 var o = new api.FloodlightActivity(); | 3584 var o = new api.FloodlightActivity(); |
| 3585 buildCounterFloodlightActivity++; | 3585 buildCounterFloodlightActivity++; |
| 3586 if (buildCounterFloodlightActivity < 3) { | 3586 if (buildCounterFloodlightActivity < 3) { |
| 3587 o.accountId = "foo"; | 3587 o.accountId = "foo"; |
| 3588 o.advertiserId = "foo"; | 3588 o.advertiserId = "foo"; |
| 3589 o.advertiserIdDimensionValue = buildDimensionValue(); | 3589 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3590 o.cacheBustingType = "foo"; | 3590 o.cacheBustingType = "foo"; |
| 3591 o.countingMethod = "foo"; | 3591 o.countingMethod = "foo"; |
| 3592 o.defaultTags = buildUnnamed254(); | 3592 o.defaultTags = buildUnnamed269(); |
| 3593 o.expectedUrl = "foo"; | 3593 o.expectedUrl = "foo"; |
| 3594 o.floodlightActivityGroupId = "foo"; | 3594 o.floodlightActivityGroupId = "foo"; |
| 3595 o.floodlightActivityGroupName = "foo"; | 3595 o.floodlightActivityGroupName = "foo"; |
| 3596 o.floodlightActivityGroupTagString = "foo"; | 3596 o.floodlightActivityGroupTagString = "foo"; |
| 3597 o.floodlightActivityGroupType = "foo"; | 3597 o.floodlightActivityGroupType = "foo"; |
| 3598 o.floodlightConfigurationId = "foo"; | 3598 o.floodlightConfigurationId = "foo"; |
| 3599 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); | 3599 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); |
| 3600 o.hidden = true; | 3600 o.hidden = true; |
| 3601 o.id = "foo"; | 3601 o.id = "foo"; |
| 3602 o.idDimensionValue = buildDimensionValue(); | 3602 o.idDimensionValue = buildDimensionValue(); |
| 3603 o.imageTagEnabled = true; | 3603 o.imageTagEnabled = true; |
| 3604 o.kind = "foo"; | 3604 o.kind = "foo"; |
| 3605 o.name = "foo"; | 3605 o.name = "foo"; |
| 3606 o.notes = "foo"; | 3606 o.notes = "foo"; |
| 3607 o.publisherTags = buildUnnamed255(); | 3607 o.publisherTags = buildUnnamed270(); |
| 3608 o.secure = true; | 3608 o.secure = true; |
| 3609 o.sslCompliant = true; | 3609 o.sslCompliant = true; |
| 3610 o.sslRequired = true; | 3610 o.sslRequired = true; |
| 3611 o.subaccountId = "foo"; | 3611 o.subaccountId = "foo"; |
| 3612 o.tagFormat = "foo"; | 3612 o.tagFormat = "foo"; |
| 3613 o.tagString = "foo"; | 3613 o.tagString = "foo"; |
| 3614 o.userDefinedVariableTypes = buildUnnamed256(); | 3614 o.userDefinedVariableTypes = buildUnnamed271(); |
| 3615 } | 3615 } |
| 3616 buildCounterFloodlightActivity--; | 3616 buildCounterFloodlightActivity--; |
| 3617 return o; | 3617 return o; |
| 3618 } | 3618 } |
| 3619 | 3619 |
| 3620 checkFloodlightActivity(api.FloodlightActivity o) { | 3620 checkFloodlightActivity(api.FloodlightActivity o) { |
| 3621 buildCounterFloodlightActivity++; | 3621 buildCounterFloodlightActivity++; |
| 3622 if (buildCounterFloodlightActivity < 3) { | 3622 if (buildCounterFloodlightActivity < 3) { |
| 3623 unittest.expect(o.accountId, unittest.equals('foo')); | 3623 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3624 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3624 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3625 checkDimensionValue(o.advertiserIdDimensionValue); | 3625 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3626 unittest.expect(o.cacheBustingType, unittest.equals('foo')); | 3626 unittest.expect(o.cacheBustingType, unittest.equals('foo')); |
| 3627 unittest.expect(o.countingMethod, unittest.equals('foo')); | 3627 unittest.expect(o.countingMethod, unittest.equals('foo')); |
| 3628 checkUnnamed254(o.defaultTags); | 3628 checkUnnamed269(o.defaultTags); |
| 3629 unittest.expect(o.expectedUrl, unittest.equals('foo')); | 3629 unittest.expect(o.expectedUrl, unittest.equals('foo')); |
| 3630 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); | 3630 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); |
| 3631 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); | 3631 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); |
| 3632 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); | 3632 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); |
| 3633 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); | 3633 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); |
| 3634 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 3634 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
| 3635 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); | 3635 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); |
| 3636 unittest.expect(o.hidden, unittest.isTrue); | 3636 unittest.expect(o.hidden, unittest.isTrue); |
| 3637 unittest.expect(o.id, unittest.equals('foo')); | 3637 unittest.expect(o.id, unittest.equals('foo')); |
| 3638 checkDimensionValue(o.idDimensionValue); | 3638 checkDimensionValue(o.idDimensionValue); |
| 3639 unittest.expect(o.imageTagEnabled, unittest.isTrue); | 3639 unittest.expect(o.imageTagEnabled, unittest.isTrue); |
| 3640 unittest.expect(o.kind, unittest.equals('foo')); | 3640 unittest.expect(o.kind, unittest.equals('foo')); |
| 3641 unittest.expect(o.name, unittest.equals('foo')); | 3641 unittest.expect(o.name, unittest.equals('foo')); |
| 3642 unittest.expect(o.notes, unittest.equals('foo')); | 3642 unittest.expect(o.notes, unittest.equals('foo')); |
| 3643 checkUnnamed255(o.publisherTags); | 3643 checkUnnamed270(o.publisherTags); |
| 3644 unittest.expect(o.secure, unittest.isTrue); | 3644 unittest.expect(o.secure, unittest.isTrue); |
| 3645 unittest.expect(o.sslCompliant, unittest.isTrue); | 3645 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3646 unittest.expect(o.sslRequired, unittest.isTrue); | 3646 unittest.expect(o.sslRequired, unittest.isTrue); |
| 3647 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3647 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3648 unittest.expect(o.tagFormat, unittest.equals('foo')); | 3648 unittest.expect(o.tagFormat, unittest.equals('foo')); |
| 3649 unittest.expect(o.tagString, unittest.equals('foo')); | 3649 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3650 checkUnnamed256(o.userDefinedVariableTypes); | 3650 checkUnnamed271(o.userDefinedVariableTypes); |
| 3651 } | 3651 } |
| 3652 buildCounterFloodlightActivity--; | 3652 buildCounterFloodlightActivity--; |
| 3653 } | 3653 } |
| 3654 | 3654 |
| 3655 core.int buildCounterFloodlightActivityDynamicTag = 0; | 3655 core.int buildCounterFloodlightActivityDynamicTag = 0; |
| 3656 buildFloodlightActivityDynamicTag() { | 3656 buildFloodlightActivityDynamicTag() { |
| 3657 var o = new api.FloodlightActivityDynamicTag(); | 3657 var o = new api.FloodlightActivityDynamicTag(); |
| 3658 buildCounterFloodlightActivityDynamicTag++; | 3658 buildCounterFloodlightActivityDynamicTag++; |
| 3659 if (buildCounterFloodlightActivityDynamicTag < 3) { | 3659 if (buildCounterFloodlightActivityDynamicTag < 3) { |
| 3660 o.id = "foo"; | 3660 o.id = "foo"; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3709 checkDimensionValue(o.idDimensionValue); | 3709 checkDimensionValue(o.idDimensionValue); |
| 3710 unittest.expect(o.kind, unittest.equals('foo')); | 3710 unittest.expect(o.kind, unittest.equals('foo')); |
| 3711 unittest.expect(o.name, unittest.equals('foo')); | 3711 unittest.expect(o.name, unittest.equals('foo')); |
| 3712 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3712 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3713 unittest.expect(o.tagString, unittest.equals('foo')); | 3713 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3714 unittest.expect(o.type, unittest.equals('foo')); | 3714 unittest.expect(o.type, unittest.equals('foo')); |
| 3715 } | 3715 } |
| 3716 buildCounterFloodlightActivityGroup--; | 3716 buildCounterFloodlightActivityGroup--; |
| 3717 } | 3717 } |
| 3718 | 3718 |
| 3719 buildUnnamed257() { | 3719 buildUnnamed272() { |
| 3720 var o = new core.List<api.FloodlightActivityGroup>(); | 3720 var o = new core.List<api.FloodlightActivityGroup>(); |
| 3721 o.add(buildFloodlightActivityGroup()); | 3721 o.add(buildFloodlightActivityGroup()); |
| 3722 o.add(buildFloodlightActivityGroup()); | 3722 o.add(buildFloodlightActivityGroup()); |
| 3723 return o; | 3723 return o; |
| 3724 } | 3724 } |
| 3725 | 3725 |
| 3726 checkUnnamed257(core.List<api.FloodlightActivityGroup> o) { | 3726 checkUnnamed272(core.List<api.FloodlightActivityGroup> o) { |
| 3727 unittest.expect(o, unittest.hasLength(2)); | 3727 unittest.expect(o, unittest.hasLength(2)); |
| 3728 checkFloodlightActivityGroup(o[0]); | 3728 checkFloodlightActivityGroup(o[0]); |
| 3729 checkFloodlightActivityGroup(o[1]); | 3729 checkFloodlightActivityGroup(o[1]); |
| 3730 } | 3730 } |
| 3731 | 3731 |
| 3732 core.int buildCounterFloodlightActivityGroupsListResponse = 0; | 3732 core.int buildCounterFloodlightActivityGroupsListResponse = 0; |
| 3733 buildFloodlightActivityGroupsListResponse() { | 3733 buildFloodlightActivityGroupsListResponse() { |
| 3734 var o = new api.FloodlightActivityGroupsListResponse(); | 3734 var o = new api.FloodlightActivityGroupsListResponse(); |
| 3735 buildCounterFloodlightActivityGroupsListResponse++; | 3735 buildCounterFloodlightActivityGroupsListResponse++; |
| 3736 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3736 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 3737 o.floodlightActivityGroups = buildUnnamed257(); | 3737 o.floodlightActivityGroups = buildUnnamed272(); |
| 3738 o.kind = "foo"; | 3738 o.kind = "foo"; |
| 3739 o.nextPageToken = "foo"; | 3739 o.nextPageToken = "foo"; |
| 3740 } | 3740 } |
| 3741 buildCounterFloodlightActivityGroupsListResponse--; | 3741 buildCounterFloodlightActivityGroupsListResponse--; |
| 3742 return o; | 3742 return o; |
| 3743 } | 3743 } |
| 3744 | 3744 |
| 3745 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { | 3745 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { |
| 3746 buildCounterFloodlightActivityGroupsListResponse++; | 3746 buildCounterFloodlightActivityGroupsListResponse++; |
| 3747 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3747 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 3748 checkUnnamed257(o.floodlightActivityGroups); | 3748 checkUnnamed272(o.floodlightActivityGroups); |
| 3749 unittest.expect(o.kind, unittest.equals('foo')); | 3749 unittest.expect(o.kind, unittest.equals('foo')); |
| 3750 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3750 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3751 } | 3751 } |
| 3752 buildCounterFloodlightActivityGroupsListResponse--; | 3752 buildCounterFloodlightActivityGroupsListResponse--; |
| 3753 } | 3753 } |
| 3754 | 3754 |
| 3755 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; | 3755 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; |
| 3756 buildFloodlightActivityPublisherDynamicTag() { | 3756 buildFloodlightActivityPublisherDynamicTag() { |
| 3757 var o = new api.FloodlightActivityPublisherDynamicTag(); | 3757 var o = new api.FloodlightActivityPublisherDynamicTag(); |
| 3758 buildCounterFloodlightActivityPublisherDynamicTag++; | 3758 buildCounterFloodlightActivityPublisherDynamicTag++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 3774 unittest.expect(o.clickThrough, unittest.isTrue); | 3774 unittest.expect(o.clickThrough, unittest.isTrue); |
| 3775 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 3775 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 3776 checkFloodlightActivityDynamicTag(o.dynamicTag); | 3776 checkFloodlightActivityDynamicTag(o.dynamicTag); |
| 3777 unittest.expect(o.siteId, unittest.equals('foo')); | 3777 unittest.expect(o.siteId, unittest.equals('foo')); |
| 3778 checkDimensionValue(o.siteIdDimensionValue); | 3778 checkDimensionValue(o.siteIdDimensionValue); |
| 3779 unittest.expect(o.viewThrough, unittest.isTrue); | 3779 unittest.expect(o.viewThrough, unittest.isTrue); |
| 3780 } | 3780 } |
| 3781 buildCounterFloodlightActivityPublisherDynamicTag--; | 3781 buildCounterFloodlightActivityPublisherDynamicTag--; |
| 3782 } | 3782 } |
| 3783 | 3783 |
| 3784 buildUnnamed258() { | 3784 buildUnnamed273() { |
| 3785 var o = new core.List<core.String>(); | 3785 var o = new core.List<core.String>(); |
| 3786 o.add("foo"); | 3786 o.add("foo"); |
| 3787 o.add("foo"); | 3787 o.add("foo"); |
| 3788 return o; | 3788 return o; |
| 3789 } | 3789 } |
| 3790 | 3790 |
| 3791 checkUnnamed258(core.List<core.String> o) { | 3791 checkUnnamed273(core.List<core.String> o) { |
| 3792 unittest.expect(o, unittest.hasLength(2)); | 3792 unittest.expect(o, unittest.hasLength(2)); |
| 3793 unittest.expect(o[0], unittest.equals('foo')); | 3793 unittest.expect(o[0], unittest.equals('foo')); |
| 3794 unittest.expect(o[1], unittest.equals('foo')); | 3794 unittest.expect(o[1], unittest.equals('foo')); |
| 3795 } | 3795 } |
| 3796 | 3796 |
| 3797 buildUnnamed259() { | 3797 buildUnnamed274() { |
| 3798 var o = new core.List<api.ThirdPartyAuthenticationToken>(); | 3798 var o = new core.List<api.ThirdPartyAuthenticationToken>(); |
| 3799 o.add(buildThirdPartyAuthenticationToken()); | 3799 o.add(buildThirdPartyAuthenticationToken()); |
| 3800 o.add(buildThirdPartyAuthenticationToken()); | 3800 o.add(buildThirdPartyAuthenticationToken()); |
| 3801 return o; | 3801 return o; |
| 3802 } | 3802 } |
| 3803 | 3803 |
| 3804 checkUnnamed259(core.List<api.ThirdPartyAuthenticationToken> o) { | 3804 checkUnnamed274(core.List<api.ThirdPartyAuthenticationToken> o) { |
| 3805 unittest.expect(o, unittest.hasLength(2)); | 3805 unittest.expect(o, unittest.hasLength(2)); |
| 3806 checkThirdPartyAuthenticationToken(o[0]); | 3806 checkThirdPartyAuthenticationToken(o[0]); |
| 3807 checkThirdPartyAuthenticationToken(o[1]); | 3807 checkThirdPartyAuthenticationToken(o[1]); |
| 3808 } | 3808 } |
| 3809 | 3809 |
| 3810 buildUnnamed260() { | 3810 buildUnnamed275() { |
| 3811 var o = new core.List<api.UserDefinedVariableConfiguration>(); | 3811 var o = new core.List<api.UserDefinedVariableConfiguration>(); |
| 3812 o.add(buildUserDefinedVariableConfiguration()); | 3812 o.add(buildUserDefinedVariableConfiguration()); |
| 3813 o.add(buildUserDefinedVariableConfiguration()); | 3813 o.add(buildUserDefinedVariableConfiguration()); |
| 3814 return o; | 3814 return o; |
| 3815 } | 3815 } |
| 3816 | 3816 |
| 3817 checkUnnamed260(core.List<api.UserDefinedVariableConfiguration> o) { | 3817 checkUnnamed275(core.List<api.UserDefinedVariableConfiguration> o) { |
| 3818 unittest.expect(o, unittest.hasLength(2)); | 3818 unittest.expect(o, unittest.hasLength(2)); |
| 3819 checkUserDefinedVariableConfiguration(o[0]); | 3819 checkUserDefinedVariableConfiguration(o[0]); |
| 3820 checkUserDefinedVariableConfiguration(o[1]); | 3820 checkUserDefinedVariableConfiguration(o[1]); |
| 3821 } | 3821 } |
| 3822 | 3822 |
| 3823 core.int buildCounterFloodlightConfiguration = 0; | 3823 core.int buildCounterFloodlightConfiguration = 0; |
| 3824 buildFloodlightConfiguration() { | 3824 buildFloodlightConfiguration() { |
| 3825 var o = new api.FloodlightConfiguration(); | 3825 var o = new api.FloodlightConfiguration(); |
| 3826 buildCounterFloodlightConfiguration++; | 3826 buildCounterFloodlightConfiguration++; |
| 3827 if (buildCounterFloodlightConfiguration < 3) { | 3827 if (buildCounterFloodlightConfiguration < 3) { |
| 3828 o.accountId = "foo"; | 3828 o.accountId = "foo"; |
| 3829 o.advertiserId = "foo"; | 3829 o.advertiserId = "foo"; |
| 3830 o.advertiserIdDimensionValue = buildDimensionValue(); | 3830 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3831 o.analyticsDataSharingEnabled = true; | 3831 o.analyticsDataSharingEnabled = true; |
| 3832 o.exposureToConversionEnabled = true; | 3832 o.exposureToConversionEnabled = true; |
| 3833 o.firstDayOfWeek = "foo"; | 3833 o.firstDayOfWeek = "foo"; |
| 3834 o.id = "foo"; | 3834 o.id = "foo"; |
| 3835 o.idDimensionValue = buildDimensionValue(); | 3835 o.idDimensionValue = buildDimensionValue(); |
| 3836 o.inAppAttributionTrackingEnabled = true; | 3836 o.inAppAttributionTrackingEnabled = true; |
| 3837 o.kind = "foo"; | 3837 o.kind = "foo"; |
| 3838 o.lookbackConfiguration = buildLookbackConfiguration(); | 3838 o.lookbackConfiguration = buildLookbackConfiguration(); |
| 3839 o.naturalSearchConversionAttributionOption = "foo"; | 3839 o.naturalSearchConversionAttributionOption = "foo"; |
| 3840 o.omnitureSettings = buildOmnitureSettings(); | 3840 o.omnitureSettings = buildOmnitureSettings(); |
| 3841 o.standardVariableTypes = buildUnnamed258(); | 3841 o.standardVariableTypes = buildUnnamed273(); |
| 3842 o.subaccountId = "foo"; | 3842 o.subaccountId = "foo"; |
| 3843 o.tagSettings = buildTagSettings(); | 3843 o.tagSettings = buildTagSettings(); |
| 3844 o.thirdPartyAuthenticationTokens = buildUnnamed259(); | 3844 o.thirdPartyAuthenticationTokens = buildUnnamed274(); |
| 3845 o.userDefinedVariableConfigurations = buildUnnamed260(); | 3845 o.userDefinedVariableConfigurations = buildUnnamed275(); |
| 3846 } | 3846 } |
| 3847 buildCounterFloodlightConfiguration--; | 3847 buildCounterFloodlightConfiguration--; |
| 3848 return o; | 3848 return o; |
| 3849 } | 3849 } |
| 3850 | 3850 |
| 3851 checkFloodlightConfiguration(api.FloodlightConfiguration o) { | 3851 checkFloodlightConfiguration(api.FloodlightConfiguration o) { |
| 3852 buildCounterFloodlightConfiguration++; | 3852 buildCounterFloodlightConfiguration++; |
| 3853 if (buildCounterFloodlightConfiguration < 3) { | 3853 if (buildCounterFloodlightConfiguration < 3) { |
| 3854 unittest.expect(o.accountId, unittest.equals('foo')); | 3854 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3855 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3855 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3856 checkDimensionValue(o.advertiserIdDimensionValue); | 3856 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3857 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); | 3857 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); |
| 3858 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); | 3858 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); |
| 3859 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); | 3859 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); |
| 3860 unittest.expect(o.id, unittest.equals('foo')); | 3860 unittest.expect(o.id, unittest.equals('foo')); |
| 3861 checkDimensionValue(o.idDimensionValue); | 3861 checkDimensionValue(o.idDimensionValue); |
| 3862 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); | 3862 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); |
| 3863 unittest.expect(o.kind, unittest.equals('foo')); | 3863 unittest.expect(o.kind, unittest.equals('foo')); |
| 3864 checkLookbackConfiguration(o.lookbackConfiguration); | 3864 checkLookbackConfiguration(o.lookbackConfiguration); |
| 3865 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); | 3865 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); |
| 3866 checkOmnitureSettings(o.omnitureSettings); | 3866 checkOmnitureSettings(o.omnitureSettings); |
| 3867 checkUnnamed258(o.standardVariableTypes); | 3867 checkUnnamed273(o.standardVariableTypes); |
| 3868 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3868 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3869 checkTagSettings(o.tagSettings); | 3869 checkTagSettings(o.tagSettings); |
| 3870 checkUnnamed259(o.thirdPartyAuthenticationTokens); | 3870 checkUnnamed274(o.thirdPartyAuthenticationTokens); |
| 3871 checkUnnamed260(o.userDefinedVariableConfigurations); | 3871 checkUnnamed275(o.userDefinedVariableConfigurations); |
| 3872 } | 3872 } |
| 3873 buildCounterFloodlightConfiguration--; | 3873 buildCounterFloodlightConfiguration--; |
| 3874 } | 3874 } |
| 3875 | 3875 |
| 3876 buildUnnamed261() { | 3876 buildUnnamed276() { |
| 3877 var o = new core.List<api.FloodlightConfiguration>(); | 3877 var o = new core.List<api.FloodlightConfiguration>(); |
| 3878 o.add(buildFloodlightConfiguration()); | 3878 o.add(buildFloodlightConfiguration()); |
| 3879 o.add(buildFloodlightConfiguration()); | 3879 o.add(buildFloodlightConfiguration()); |
| 3880 return o; | 3880 return o; |
| 3881 } | 3881 } |
| 3882 | 3882 |
| 3883 checkUnnamed261(core.List<api.FloodlightConfiguration> o) { | 3883 checkUnnamed276(core.List<api.FloodlightConfiguration> o) { |
| 3884 unittest.expect(o, unittest.hasLength(2)); | 3884 unittest.expect(o, unittest.hasLength(2)); |
| 3885 checkFloodlightConfiguration(o[0]); | 3885 checkFloodlightConfiguration(o[0]); |
| 3886 checkFloodlightConfiguration(o[1]); | 3886 checkFloodlightConfiguration(o[1]); |
| 3887 } | 3887 } |
| 3888 | 3888 |
| 3889 core.int buildCounterFloodlightConfigurationsListResponse = 0; | 3889 core.int buildCounterFloodlightConfigurationsListResponse = 0; |
| 3890 buildFloodlightConfigurationsListResponse() { | 3890 buildFloodlightConfigurationsListResponse() { |
| 3891 var o = new api.FloodlightConfigurationsListResponse(); | 3891 var o = new api.FloodlightConfigurationsListResponse(); |
| 3892 buildCounterFloodlightConfigurationsListResponse++; | 3892 buildCounterFloodlightConfigurationsListResponse++; |
| 3893 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3893 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 3894 o.floodlightConfigurations = buildUnnamed261(); | 3894 o.floodlightConfigurations = buildUnnamed276(); |
| 3895 o.kind = "foo"; | 3895 o.kind = "foo"; |
| 3896 } | 3896 } |
| 3897 buildCounterFloodlightConfigurationsListResponse--; | 3897 buildCounterFloodlightConfigurationsListResponse--; |
| 3898 return o; | 3898 return o; |
| 3899 } | 3899 } |
| 3900 | 3900 |
| 3901 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { | 3901 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { |
| 3902 buildCounterFloodlightConfigurationsListResponse++; | 3902 buildCounterFloodlightConfigurationsListResponse++; |
| 3903 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3903 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 3904 checkUnnamed261(o.floodlightConfigurations); | 3904 checkUnnamed276(o.floodlightConfigurations); |
| 3905 unittest.expect(o.kind, unittest.equals('foo')); | 3905 unittest.expect(o.kind, unittest.equals('foo')); |
| 3906 } | 3906 } |
| 3907 buildCounterFloodlightConfigurationsListResponse--; | 3907 buildCounterFloodlightConfigurationsListResponse--; |
| 3908 } | 3908 } |
| 3909 | 3909 |
| 3910 buildUnnamed262() { | 3910 buildUnnamed277() { |
| 3911 var o = new core.List<api.Dimension>(); | 3911 var o = new core.List<api.Dimension>(); |
| 3912 o.add(buildDimension()); | 3912 o.add(buildDimension()); |
| 3913 o.add(buildDimension()); | 3913 o.add(buildDimension()); |
| 3914 return o; | 3914 return o; |
| 3915 } | 3915 } |
| 3916 | 3916 |
| 3917 checkUnnamed262(core.List<api.Dimension> o) { | 3917 checkUnnamed277(core.List<api.Dimension> o) { |
| 3918 unittest.expect(o, unittest.hasLength(2)); | 3918 unittest.expect(o, unittest.hasLength(2)); |
| 3919 checkDimension(o[0]); | 3919 checkDimension(o[0]); |
| 3920 checkDimension(o[1]); | 3920 checkDimension(o[1]); |
| 3921 } | 3921 } |
| 3922 | 3922 |
| 3923 buildUnnamed263() { | 3923 buildUnnamed278() { |
| 3924 var o = new core.List<api.Dimension>(); | 3924 var o = new core.List<api.Dimension>(); |
| 3925 o.add(buildDimension()); | 3925 o.add(buildDimension()); |
| 3926 o.add(buildDimension()); | 3926 o.add(buildDimension()); |
| 3927 return o; | 3927 return o; |
| 3928 } | 3928 } |
| 3929 | 3929 |
| 3930 checkUnnamed263(core.List<api.Dimension> o) { | 3930 checkUnnamed278(core.List<api.Dimension> o) { |
| 3931 unittest.expect(o, unittest.hasLength(2)); | 3931 unittest.expect(o, unittest.hasLength(2)); |
| 3932 checkDimension(o[0]); | 3932 checkDimension(o[0]); |
| 3933 checkDimension(o[1]); | 3933 checkDimension(o[1]); |
| 3934 } | 3934 } |
| 3935 | 3935 |
| 3936 buildUnnamed264() { | 3936 buildUnnamed279() { |
| 3937 var o = new core.List<api.Metric>(); | 3937 var o = new core.List<api.Metric>(); |
| 3938 o.add(buildMetric()); | 3938 o.add(buildMetric()); |
| 3939 o.add(buildMetric()); | 3939 o.add(buildMetric()); |
| 3940 return o; | 3940 return o; |
| 3941 } | 3941 } |
| 3942 | 3942 |
| 3943 checkUnnamed264(core.List<api.Metric> o) { | 3943 checkUnnamed279(core.List<api.Metric> o) { |
| 3944 unittest.expect(o, unittest.hasLength(2)); | 3944 unittest.expect(o, unittest.hasLength(2)); |
| 3945 checkMetric(o[0]); | 3945 checkMetric(o[0]); |
| 3946 checkMetric(o[1]); | 3946 checkMetric(o[1]); |
| 3947 } | 3947 } |
| 3948 | 3948 |
| 3949 core.int buildCounterFloodlightReportCompatibleFields = 0; | 3949 core.int buildCounterFloodlightReportCompatibleFields = 0; |
| 3950 buildFloodlightReportCompatibleFields() { | 3950 buildFloodlightReportCompatibleFields() { |
| 3951 var o = new api.FloodlightReportCompatibleFields(); | 3951 var o = new api.FloodlightReportCompatibleFields(); |
| 3952 buildCounterFloodlightReportCompatibleFields++; | 3952 buildCounterFloodlightReportCompatibleFields++; |
| 3953 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3953 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 3954 o.dimensionFilters = buildUnnamed262(); | 3954 o.dimensionFilters = buildUnnamed277(); |
| 3955 o.dimensions = buildUnnamed263(); | 3955 o.dimensions = buildUnnamed278(); |
| 3956 o.kind = "foo"; | 3956 o.kind = "foo"; |
| 3957 o.metrics = buildUnnamed264(); | 3957 o.metrics = buildUnnamed279(); |
| 3958 } | 3958 } |
| 3959 buildCounterFloodlightReportCompatibleFields--; | 3959 buildCounterFloodlightReportCompatibleFields--; |
| 3960 return o; | 3960 return o; |
| 3961 } | 3961 } |
| 3962 | 3962 |
| 3963 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { | 3963 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { |
| 3964 buildCounterFloodlightReportCompatibleFields++; | 3964 buildCounterFloodlightReportCompatibleFields++; |
| 3965 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3965 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 3966 checkUnnamed262(o.dimensionFilters); | 3966 checkUnnamed277(o.dimensionFilters); |
| 3967 checkUnnamed263(o.dimensions); | 3967 checkUnnamed278(o.dimensions); |
| 3968 unittest.expect(o.kind, unittest.equals('foo')); | 3968 unittest.expect(o.kind, unittest.equals('foo')); |
| 3969 checkUnnamed264(o.metrics); | 3969 checkUnnamed279(o.metrics); |
| 3970 } | 3970 } |
| 3971 buildCounterFloodlightReportCompatibleFields--; | 3971 buildCounterFloodlightReportCompatibleFields--; |
| 3972 } | 3972 } |
| 3973 | 3973 |
| 3974 core.int buildCounterFrequencyCap = 0; | 3974 core.int buildCounterFrequencyCap = 0; |
| 3975 buildFrequencyCap() { | 3975 buildFrequencyCap() { |
| 3976 var o = new api.FrequencyCap(); | 3976 var o = new api.FrequencyCap(); |
| 3977 buildCounterFrequencyCap++; | 3977 buildCounterFrequencyCap++; |
| 3978 if (buildCounterFrequencyCap < 3) { | 3978 if (buildCounterFrequencyCap < 3) { |
| 3979 o.duration = "foo"; | 3979 o.duration = "foo"; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4012 if (buildCounterFsCommand < 3) { | 4012 if (buildCounterFsCommand < 3) { |
| 4013 unittest.expect(o.left, unittest.equals(42)); | 4013 unittest.expect(o.left, unittest.equals(42)); |
| 4014 unittest.expect(o.positionOption, unittest.equals('foo')); | 4014 unittest.expect(o.positionOption, unittest.equals('foo')); |
| 4015 unittest.expect(o.top, unittest.equals(42)); | 4015 unittest.expect(o.top, unittest.equals(42)); |
| 4016 unittest.expect(o.windowHeight, unittest.equals(42)); | 4016 unittest.expect(o.windowHeight, unittest.equals(42)); |
| 4017 unittest.expect(o.windowWidth, unittest.equals(42)); | 4017 unittest.expect(o.windowWidth, unittest.equals(42)); |
| 4018 } | 4018 } |
| 4019 buildCounterFsCommand--; | 4019 buildCounterFsCommand--; |
| 4020 } | 4020 } |
| 4021 | 4021 |
| 4022 buildUnnamed265() { | 4022 buildUnnamed280() { |
| 4023 var o = new core.List<api.City>(); | 4023 var o = new core.List<api.City>(); |
| 4024 o.add(buildCity()); | 4024 o.add(buildCity()); |
| 4025 o.add(buildCity()); | 4025 o.add(buildCity()); |
| 4026 return o; | 4026 return o; |
| 4027 } | 4027 } |
| 4028 | 4028 |
| 4029 checkUnnamed265(core.List<api.City> o) { | 4029 checkUnnamed280(core.List<api.City> o) { |
| 4030 unittest.expect(o, unittest.hasLength(2)); | 4030 unittest.expect(o, unittest.hasLength(2)); |
| 4031 checkCity(o[0]); | 4031 checkCity(o[0]); |
| 4032 checkCity(o[1]); | 4032 checkCity(o[1]); |
| 4033 } | 4033 } |
| 4034 | 4034 |
| 4035 buildUnnamed266() { | 4035 buildUnnamed281() { |
| 4036 var o = new core.List<api.Country>(); | 4036 var o = new core.List<api.Country>(); |
| 4037 o.add(buildCountry()); | 4037 o.add(buildCountry()); |
| 4038 o.add(buildCountry()); | 4038 o.add(buildCountry()); |
| 4039 return o; | 4039 return o; |
| 4040 } | 4040 } |
| 4041 | 4041 |
| 4042 checkUnnamed266(core.List<api.Country> o) { | 4042 checkUnnamed281(core.List<api.Country> o) { |
| 4043 unittest.expect(o, unittest.hasLength(2)); | 4043 unittest.expect(o, unittest.hasLength(2)); |
| 4044 checkCountry(o[0]); | 4044 checkCountry(o[0]); |
| 4045 checkCountry(o[1]); | 4045 checkCountry(o[1]); |
| 4046 } | 4046 } |
| 4047 | 4047 |
| 4048 buildUnnamed267() { | 4048 buildUnnamed282() { |
| 4049 var o = new core.List<api.Metro>(); | 4049 var o = new core.List<api.Metro>(); |
| 4050 o.add(buildMetro()); | 4050 o.add(buildMetro()); |
| 4051 o.add(buildMetro()); | 4051 o.add(buildMetro()); |
| 4052 return o; | 4052 return o; |
| 4053 } | 4053 } |
| 4054 | 4054 |
| 4055 checkUnnamed267(core.List<api.Metro> o) { | 4055 checkUnnamed282(core.List<api.Metro> o) { |
| 4056 unittest.expect(o, unittest.hasLength(2)); | 4056 unittest.expect(o, unittest.hasLength(2)); |
| 4057 checkMetro(o[0]); | 4057 checkMetro(o[0]); |
| 4058 checkMetro(o[1]); | 4058 checkMetro(o[1]); |
| 4059 } | 4059 } |
| 4060 | 4060 |
| 4061 buildUnnamed268() { | 4061 buildUnnamed283() { |
| 4062 var o = new core.List<api.PostalCode>(); | 4062 var o = new core.List<api.PostalCode>(); |
| 4063 o.add(buildPostalCode()); | 4063 o.add(buildPostalCode()); |
| 4064 o.add(buildPostalCode()); | 4064 o.add(buildPostalCode()); |
| 4065 return o; | 4065 return o; |
| 4066 } | 4066 } |
| 4067 | 4067 |
| 4068 checkUnnamed268(core.List<api.PostalCode> o) { | 4068 checkUnnamed283(core.List<api.PostalCode> o) { |
| 4069 unittest.expect(o, unittest.hasLength(2)); | 4069 unittest.expect(o, unittest.hasLength(2)); |
| 4070 checkPostalCode(o[0]); | 4070 checkPostalCode(o[0]); |
| 4071 checkPostalCode(o[1]); | 4071 checkPostalCode(o[1]); |
| 4072 } | 4072 } |
| 4073 | 4073 |
| 4074 buildUnnamed269() { | 4074 buildUnnamed284() { |
| 4075 var o = new core.List<api.Region>(); | 4075 var o = new core.List<api.Region>(); |
| 4076 o.add(buildRegion()); | 4076 o.add(buildRegion()); |
| 4077 o.add(buildRegion()); | 4077 o.add(buildRegion()); |
| 4078 return o; | 4078 return o; |
| 4079 } | 4079 } |
| 4080 | 4080 |
| 4081 checkUnnamed269(core.List<api.Region> o) { | 4081 checkUnnamed284(core.List<api.Region> o) { |
| 4082 unittest.expect(o, unittest.hasLength(2)); | 4082 unittest.expect(o, unittest.hasLength(2)); |
| 4083 checkRegion(o[0]); | 4083 checkRegion(o[0]); |
| 4084 checkRegion(o[1]); | 4084 checkRegion(o[1]); |
| 4085 } | 4085 } |
| 4086 | 4086 |
| 4087 core.int buildCounterGeoTargeting = 0; | 4087 core.int buildCounterGeoTargeting = 0; |
| 4088 buildGeoTargeting() { | 4088 buildGeoTargeting() { |
| 4089 var o = new api.GeoTargeting(); | 4089 var o = new api.GeoTargeting(); |
| 4090 buildCounterGeoTargeting++; | 4090 buildCounterGeoTargeting++; |
| 4091 if (buildCounterGeoTargeting < 3) { | 4091 if (buildCounterGeoTargeting < 3) { |
| 4092 o.cities = buildUnnamed265(); | 4092 o.cities = buildUnnamed280(); |
| 4093 o.countries = buildUnnamed266(); | 4093 o.countries = buildUnnamed281(); |
| 4094 o.excludeCountries = true; | 4094 o.excludeCountries = true; |
| 4095 o.metros = buildUnnamed267(); | 4095 o.metros = buildUnnamed282(); |
| 4096 o.postalCodes = buildUnnamed268(); | 4096 o.postalCodes = buildUnnamed283(); |
| 4097 o.regions = buildUnnamed269(); | 4097 o.regions = buildUnnamed284(); |
| 4098 } | 4098 } |
| 4099 buildCounterGeoTargeting--; | 4099 buildCounterGeoTargeting--; |
| 4100 return o; | 4100 return o; |
| 4101 } | 4101 } |
| 4102 | 4102 |
| 4103 checkGeoTargeting(api.GeoTargeting o) { | 4103 checkGeoTargeting(api.GeoTargeting o) { |
| 4104 buildCounterGeoTargeting++; | 4104 buildCounterGeoTargeting++; |
| 4105 if (buildCounterGeoTargeting < 3) { | 4105 if (buildCounterGeoTargeting < 3) { |
| 4106 checkUnnamed265(o.cities); | 4106 checkUnnamed280(o.cities); |
| 4107 checkUnnamed266(o.countries); | 4107 checkUnnamed281(o.countries); |
| 4108 unittest.expect(o.excludeCountries, unittest.isTrue); | 4108 unittest.expect(o.excludeCountries, unittest.isTrue); |
| 4109 checkUnnamed267(o.metros); | 4109 checkUnnamed282(o.metros); |
| 4110 checkUnnamed268(o.postalCodes); | 4110 checkUnnamed283(o.postalCodes); |
| 4111 checkUnnamed269(o.regions); | 4111 checkUnnamed284(o.regions); |
| 4112 } | 4112 } |
| 4113 buildCounterGeoTargeting--; | 4113 buildCounterGeoTargeting--; |
| 4114 } | 4114 } |
| 4115 | 4115 |
| 4116 buildUnnamed270() { | 4116 buildUnnamed285() { |
| 4117 var o = new core.List<api.AdSlot>(); | 4117 var o = new core.List<api.AdSlot>(); |
| 4118 o.add(buildAdSlot()); | 4118 o.add(buildAdSlot()); |
| 4119 o.add(buildAdSlot()); | 4119 o.add(buildAdSlot()); |
| 4120 return o; | 4120 return o; |
| 4121 } | 4121 } |
| 4122 | 4122 |
| 4123 checkUnnamed270(core.List<api.AdSlot> o) { | 4123 checkUnnamed285(core.List<api.AdSlot> o) { |
| 4124 unittest.expect(o, unittest.hasLength(2)); | 4124 unittest.expect(o, unittest.hasLength(2)); |
| 4125 checkAdSlot(o[0]); | 4125 checkAdSlot(o[0]); |
| 4126 checkAdSlot(o[1]); | 4126 checkAdSlot(o[1]); |
| 4127 } | 4127 } |
| 4128 | 4128 |
| 4129 core.int buildCounterInventoryItem = 0; | 4129 core.int buildCounterInventoryItem = 0; |
| 4130 buildInventoryItem() { | 4130 buildInventoryItem() { |
| 4131 var o = new api.InventoryItem(); | 4131 var o = new api.InventoryItem(); |
| 4132 buildCounterInventoryItem++; | 4132 buildCounterInventoryItem++; |
| 4133 if (buildCounterInventoryItem < 3) { | 4133 if (buildCounterInventoryItem < 3) { |
| 4134 o.accountId = "foo"; | 4134 o.accountId = "foo"; |
| 4135 o.adSlots = buildUnnamed270(); | 4135 o.adSlots = buildUnnamed285(); |
| 4136 o.advertiserId = "foo"; | 4136 o.advertiserId = "foo"; |
| 4137 o.contentCategoryId = "foo"; | 4137 o.contentCategoryId = "foo"; |
| 4138 o.estimatedClickThroughRate = "foo"; | 4138 o.estimatedClickThroughRate = "foo"; |
| 4139 o.estimatedConversionRate = "foo"; | 4139 o.estimatedConversionRate = "foo"; |
| 4140 o.id = "foo"; | 4140 o.id = "foo"; |
| 4141 o.inPlan = true; | 4141 o.inPlan = true; |
| 4142 o.kind = "foo"; | 4142 o.kind = "foo"; |
| 4143 o.lastModifiedInfo = buildLastModifiedInfo(); | 4143 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4144 o.name = "foo"; | 4144 o.name = "foo"; |
| 4145 o.negotiationChannelId = "foo"; | 4145 o.negotiationChannelId = "foo"; |
| 4146 o.orderId = "foo"; | 4146 o.orderId = "foo"; |
| 4147 o.placementStrategyId = "foo"; | 4147 o.placementStrategyId = "foo"; |
| 4148 o.pricing = buildPricing(); | 4148 o.pricing = buildPricing(); |
| 4149 o.projectId = "foo"; | 4149 o.projectId = "foo"; |
| 4150 o.rfpId = "foo"; | 4150 o.rfpId = "foo"; |
| 4151 o.siteId = "foo"; | 4151 o.siteId = "foo"; |
| 4152 o.subaccountId = "foo"; | 4152 o.subaccountId = "foo"; |
| 4153 o.type = "foo"; | 4153 o.type = "foo"; |
| 4154 } | 4154 } |
| 4155 buildCounterInventoryItem--; | 4155 buildCounterInventoryItem--; |
| 4156 return o; | 4156 return o; |
| 4157 } | 4157 } |
| 4158 | 4158 |
| 4159 checkInventoryItem(api.InventoryItem o) { | 4159 checkInventoryItem(api.InventoryItem o) { |
| 4160 buildCounterInventoryItem++; | 4160 buildCounterInventoryItem++; |
| 4161 if (buildCounterInventoryItem < 3) { | 4161 if (buildCounterInventoryItem < 3) { |
| 4162 unittest.expect(o.accountId, unittest.equals('foo')); | 4162 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4163 checkUnnamed270(o.adSlots); | 4163 checkUnnamed285(o.adSlots); |
| 4164 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4164 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4165 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 4165 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 4166 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); | 4166 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); |
| 4167 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); | 4167 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); |
| 4168 unittest.expect(o.id, unittest.equals('foo')); | 4168 unittest.expect(o.id, unittest.equals('foo')); |
| 4169 unittest.expect(o.inPlan, unittest.isTrue); | 4169 unittest.expect(o.inPlan, unittest.isTrue); |
| 4170 unittest.expect(o.kind, unittest.equals('foo')); | 4170 unittest.expect(o.kind, unittest.equals('foo')); |
| 4171 checkLastModifiedInfo(o.lastModifiedInfo); | 4171 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4172 unittest.expect(o.name, unittest.equals('foo')); | 4172 unittest.expect(o.name, unittest.equals('foo')); |
| 4173 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); | 4173 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); |
| 4174 unittest.expect(o.orderId, unittest.equals('foo')); | 4174 unittest.expect(o.orderId, unittest.equals('foo')); |
| 4175 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 4175 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 4176 checkPricing(o.pricing); | 4176 checkPricing(o.pricing); |
| 4177 unittest.expect(o.projectId, unittest.equals('foo')); | 4177 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4178 unittest.expect(o.rfpId, unittest.equals('foo')); | 4178 unittest.expect(o.rfpId, unittest.equals('foo')); |
| 4179 unittest.expect(o.siteId, unittest.equals('foo')); | 4179 unittest.expect(o.siteId, unittest.equals('foo')); |
| 4180 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4180 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4181 unittest.expect(o.type, unittest.equals('foo')); | 4181 unittest.expect(o.type, unittest.equals('foo')); |
| 4182 } | 4182 } |
| 4183 buildCounterInventoryItem--; | 4183 buildCounterInventoryItem--; |
| 4184 } | 4184 } |
| 4185 | 4185 |
| 4186 buildUnnamed271() { | 4186 buildUnnamed286() { |
| 4187 var o = new core.List<api.InventoryItem>(); | 4187 var o = new core.List<api.InventoryItem>(); |
| 4188 o.add(buildInventoryItem()); | 4188 o.add(buildInventoryItem()); |
| 4189 o.add(buildInventoryItem()); | 4189 o.add(buildInventoryItem()); |
| 4190 return o; | 4190 return o; |
| 4191 } | 4191 } |
| 4192 | 4192 |
| 4193 checkUnnamed271(core.List<api.InventoryItem> o) { | 4193 checkUnnamed286(core.List<api.InventoryItem> o) { |
| 4194 unittest.expect(o, unittest.hasLength(2)); | 4194 unittest.expect(o, unittest.hasLength(2)); |
| 4195 checkInventoryItem(o[0]); | 4195 checkInventoryItem(o[0]); |
| 4196 checkInventoryItem(o[1]); | 4196 checkInventoryItem(o[1]); |
| 4197 } | 4197 } |
| 4198 | 4198 |
| 4199 core.int buildCounterInventoryItemsListResponse = 0; | 4199 core.int buildCounterInventoryItemsListResponse = 0; |
| 4200 buildInventoryItemsListResponse() { | 4200 buildInventoryItemsListResponse() { |
| 4201 var o = new api.InventoryItemsListResponse(); | 4201 var o = new api.InventoryItemsListResponse(); |
| 4202 buildCounterInventoryItemsListResponse++; | 4202 buildCounterInventoryItemsListResponse++; |
| 4203 if (buildCounterInventoryItemsListResponse < 3) { | 4203 if (buildCounterInventoryItemsListResponse < 3) { |
| 4204 o.inventoryItems = buildUnnamed271(); | 4204 o.inventoryItems = buildUnnamed286(); |
| 4205 o.kind = "foo"; | 4205 o.kind = "foo"; |
| 4206 o.nextPageToken = "foo"; | 4206 o.nextPageToken = "foo"; |
| 4207 } | 4207 } |
| 4208 buildCounterInventoryItemsListResponse--; | 4208 buildCounterInventoryItemsListResponse--; |
| 4209 return o; | 4209 return o; |
| 4210 } | 4210 } |
| 4211 | 4211 |
| 4212 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { | 4212 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { |
| 4213 buildCounterInventoryItemsListResponse++; | 4213 buildCounterInventoryItemsListResponse++; |
| 4214 if (buildCounterInventoryItemsListResponse < 3) { | 4214 if (buildCounterInventoryItemsListResponse < 3) { |
| 4215 checkUnnamed271(o.inventoryItems); | 4215 checkUnnamed286(o.inventoryItems); |
| 4216 unittest.expect(o.kind, unittest.equals('foo')); | 4216 unittest.expect(o.kind, unittest.equals('foo')); |
| 4217 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4217 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4218 } | 4218 } |
| 4219 buildCounterInventoryItemsListResponse--; | 4219 buildCounterInventoryItemsListResponse--; |
| 4220 } | 4220 } |
| 4221 | 4221 |
| 4222 core.int buildCounterKeyValueTargetingExpression = 0; | 4222 core.int buildCounterKeyValueTargetingExpression = 0; |
| 4223 buildKeyValueTargetingExpression() { | 4223 buildKeyValueTargetingExpression() { |
| 4224 var o = new api.KeyValueTargetingExpression(); | 4224 var o = new api.KeyValueTargetingExpression(); |
| 4225 buildCounterKeyValueTargetingExpression++; | 4225 buildCounterKeyValueTargetingExpression++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4258 if (buildCounterLandingPage < 3) { | 4258 if (buildCounterLandingPage < 3) { |
| 4259 unittest.expect(o.default_, unittest.isTrue); | 4259 unittest.expect(o.default_, unittest.isTrue); |
| 4260 unittest.expect(o.id, unittest.equals('foo')); | 4260 unittest.expect(o.id, unittest.equals('foo')); |
| 4261 unittest.expect(o.kind, unittest.equals('foo')); | 4261 unittest.expect(o.kind, unittest.equals('foo')); |
| 4262 unittest.expect(o.name, unittest.equals('foo')); | 4262 unittest.expect(o.name, unittest.equals('foo')); |
| 4263 unittest.expect(o.url, unittest.equals('foo')); | 4263 unittest.expect(o.url, unittest.equals('foo')); |
| 4264 } | 4264 } |
| 4265 buildCounterLandingPage--; | 4265 buildCounterLandingPage--; |
| 4266 } | 4266 } |
| 4267 | 4267 |
| 4268 buildUnnamed272() { | 4268 buildUnnamed287() { |
| 4269 var o = new core.List<api.LandingPage>(); | 4269 var o = new core.List<api.LandingPage>(); |
| 4270 o.add(buildLandingPage()); | 4270 o.add(buildLandingPage()); |
| 4271 o.add(buildLandingPage()); | 4271 o.add(buildLandingPage()); |
| 4272 return o; | 4272 return o; |
| 4273 } | 4273 } |
| 4274 | 4274 |
| 4275 checkUnnamed272(core.List<api.LandingPage> o) { | 4275 checkUnnamed287(core.List<api.LandingPage> o) { |
| 4276 unittest.expect(o, unittest.hasLength(2)); | 4276 unittest.expect(o, unittest.hasLength(2)); |
| 4277 checkLandingPage(o[0]); | 4277 checkLandingPage(o[0]); |
| 4278 checkLandingPage(o[1]); | 4278 checkLandingPage(o[1]); |
| 4279 } | 4279 } |
| 4280 | 4280 |
| 4281 core.int buildCounterLandingPagesListResponse = 0; | 4281 core.int buildCounterLandingPagesListResponse = 0; |
| 4282 buildLandingPagesListResponse() { | 4282 buildLandingPagesListResponse() { |
| 4283 var o = new api.LandingPagesListResponse(); | 4283 var o = new api.LandingPagesListResponse(); |
| 4284 buildCounterLandingPagesListResponse++; | 4284 buildCounterLandingPagesListResponse++; |
| 4285 if (buildCounterLandingPagesListResponse < 3) { | 4285 if (buildCounterLandingPagesListResponse < 3) { |
| 4286 o.kind = "foo"; | 4286 o.kind = "foo"; |
| 4287 o.landingPages = buildUnnamed272(); | 4287 o.landingPages = buildUnnamed287(); |
| 4288 } | 4288 } |
| 4289 buildCounterLandingPagesListResponse--; | 4289 buildCounterLandingPagesListResponse--; |
| 4290 return o; | 4290 return o; |
| 4291 } | 4291 } |
| 4292 | 4292 |
| 4293 checkLandingPagesListResponse(api.LandingPagesListResponse o) { | 4293 checkLandingPagesListResponse(api.LandingPagesListResponse o) { |
| 4294 buildCounterLandingPagesListResponse++; | 4294 buildCounterLandingPagesListResponse++; |
| 4295 if (buildCounterLandingPagesListResponse < 3) { | 4295 if (buildCounterLandingPagesListResponse < 3) { |
| 4296 unittest.expect(o.kind, unittest.equals('foo')); | 4296 unittest.expect(o.kind, unittest.equals('foo')); |
| 4297 checkUnnamed272(o.landingPages); | 4297 checkUnnamed287(o.landingPages); |
| 4298 } | 4298 } |
| 4299 buildCounterLandingPagesListResponse--; | 4299 buildCounterLandingPagesListResponse--; |
| 4300 } | 4300 } |
| 4301 | 4301 |
| 4302 core.int buildCounterLastModifiedInfo = 0; | 4302 core.int buildCounterLastModifiedInfo = 0; |
| 4303 buildLastModifiedInfo() { | 4303 buildLastModifiedInfo() { |
| 4304 var o = new api.LastModifiedInfo(); | 4304 var o = new api.LastModifiedInfo(); |
| 4305 buildCounterLastModifiedInfo++; | 4305 buildCounterLastModifiedInfo++; |
| 4306 if (buildCounterLastModifiedInfo < 3) { | 4306 if (buildCounterLastModifiedInfo < 3) { |
| 4307 o.time = "foo"; | 4307 o.time = "foo"; |
| 4308 } | 4308 } |
| 4309 buildCounterLastModifiedInfo--; | 4309 buildCounterLastModifiedInfo--; |
| 4310 return o; | 4310 return o; |
| 4311 } | 4311 } |
| 4312 | 4312 |
| 4313 checkLastModifiedInfo(api.LastModifiedInfo o) { | 4313 checkLastModifiedInfo(api.LastModifiedInfo o) { |
| 4314 buildCounterLastModifiedInfo++; | 4314 buildCounterLastModifiedInfo++; |
| 4315 if (buildCounterLastModifiedInfo < 3) { | 4315 if (buildCounterLastModifiedInfo < 3) { |
| 4316 unittest.expect(o.time, unittest.equals('foo')); | 4316 unittest.expect(o.time, unittest.equals('foo')); |
| 4317 } | 4317 } |
| 4318 buildCounterLastModifiedInfo--; | 4318 buildCounterLastModifiedInfo--; |
| 4319 } | 4319 } |
| 4320 | 4320 |
| 4321 buildUnnamed273() { | 4321 buildUnnamed288() { |
| 4322 var o = new core.List<api.ListPopulationTerm>(); | 4322 var o = new core.List<api.ListPopulationTerm>(); |
| 4323 o.add(buildListPopulationTerm()); | 4323 o.add(buildListPopulationTerm()); |
| 4324 o.add(buildListPopulationTerm()); | 4324 o.add(buildListPopulationTerm()); |
| 4325 return o; | 4325 return o; |
| 4326 } | 4326 } |
| 4327 | 4327 |
| 4328 checkUnnamed273(core.List<api.ListPopulationTerm> o) { | 4328 checkUnnamed288(core.List<api.ListPopulationTerm> o) { |
| 4329 unittest.expect(o, unittest.hasLength(2)); | 4329 unittest.expect(o, unittest.hasLength(2)); |
| 4330 checkListPopulationTerm(o[0]); | 4330 checkListPopulationTerm(o[0]); |
| 4331 checkListPopulationTerm(o[1]); | 4331 checkListPopulationTerm(o[1]); |
| 4332 } | 4332 } |
| 4333 | 4333 |
| 4334 core.int buildCounterListPopulationClause = 0; | 4334 core.int buildCounterListPopulationClause = 0; |
| 4335 buildListPopulationClause() { | 4335 buildListPopulationClause() { |
| 4336 var o = new api.ListPopulationClause(); | 4336 var o = new api.ListPopulationClause(); |
| 4337 buildCounterListPopulationClause++; | 4337 buildCounterListPopulationClause++; |
| 4338 if (buildCounterListPopulationClause < 3) { | 4338 if (buildCounterListPopulationClause < 3) { |
| 4339 o.terms = buildUnnamed273(); | 4339 o.terms = buildUnnamed288(); |
| 4340 } | 4340 } |
| 4341 buildCounterListPopulationClause--; | 4341 buildCounterListPopulationClause--; |
| 4342 return o; | 4342 return o; |
| 4343 } | 4343 } |
| 4344 | 4344 |
| 4345 checkListPopulationClause(api.ListPopulationClause o) { | 4345 checkListPopulationClause(api.ListPopulationClause o) { |
| 4346 buildCounterListPopulationClause++; | 4346 buildCounterListPopulationClause++; |
| 4347 if (buildCounterListPopulationClause < 3) { | 4347 if (buildCounterListPopulationClause < 3) { |
| 4348 checkUnnamed273(o.terms); | 4348 checkUnnamed288(o.terms); |
| 4349 } | 4349 } |
| 4350 buildCounterListPopulationClause--; | 4350 buildCounterListPopulationClause--; |
| 4351 } | 4351 } |
| 4352 | 4352 |
| 4353 buildUnnamed274() { | 4353 buildUnnamed289() { |
| 4354 var o = new core.List<api.ListPopulationClause>(); | 4354 var o = new core.List<api.ListPopulationClause>(); |
| 4355 o.add(buildListPopulationClause()); | 4355 o.add(buildListPopulationClause()); |
| 4356 o.add(buildListPopulationClause()); | 4356 o.add(buildListPopulationClause()); |
| 4357 return o; | 4357 return o; |
| 4358 } | 4358 } |
| 4359 | 4359 |
| 4360 checkUnnamed274(core.List<api.ListPopulationClause> o) { | 4360 checkUnnamed289(core.List<api.ListPopulationClause> o) { |
| 4361 unittest.expect(o, unittest.hasLength(2)); | 4361 unittest.expect(o, unittest.hasLength(2)); |
| 4362 checkListPopulationClause(o[0]); | 4362 checkListPopulationClause(o[0]); |
| 4363 checkListPopulationClause(o[1]); | 4363 checkListPopulationClause(o[1]); |
| 4364 } | 4364 } |
| 4365 | 4365 |
| 4366 core.int buildCounterListPopulationRule = 0; | 4366 core.int buildCounterListPopulationRule = 0; |
| 4367 buildListPopulationRule() { | 4367 buildListPopulationRule() { |
| 4368 var o = new api.ListPopulationRule(); | 4368 var o = new api.ListPopulationRule(); |
| 4369 buildCounterListPopulationRule++; | 4369 buildCounterListPopulationRule++; |
| 4370 if (buildCounterListPopulationRule < 3) { | 4370 if (buildCounterListPopulationRule < 3) { |
| 4371 o.floodlightActivityId = "foo"; | 4371 o.floodlightActivityId = "foo"; |
| 4372 o.floodlightActivityName = "foo"; | 4372 o.floodlightActivityName = "foo"; |
| 4373 o.listPopulationClauses = buildUnnamed274(); | 4373 o.listPopulationClauses = buildUnnamed289(); |
| 4374 } | 4374 } |
| 4375 buildCounterListPopulationRule--; | 4375 buildCounterListPopulationRule--; |
| 4376 return o; | 4376 return o; |
| 4377 } | 4377 } |
| 4378 | 4378 |
| 4379 checkListPopulationRule(api.ListPopulationRule o) { | 4379 checkListPopulationRule(api.ListPopulationRule o) { |
| 4380 buildCounterListPopulationRule++; | 4380 buildCounterListPopulationRule++; |
| 4381 if (buildCounterListPopulationRule < 3) { | 4381 if (buildCounterListPopulationRule < 3) { |
| 4382 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4382 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4383 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); | 4383 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); |
| 4384 checkUnnamed274(o.listPopulationClauses); | 4384 checkUnnamed289(o.listPopulationClauses); |
| 4385 } | 4385 } |
| 4386 buildCounterListPopulationRule--; | 4386 buildCounterListPopulationRule--; |
| 4387 } | 4387 } |
| 4388 | 4388 |
| 4389 core.int buildCounterListPopulationTerm = 0; | 4389 core.int buildCounterListPopulationTerm = 0; |
| 4390 buildListPopulationTerm() { | 4390 buildListPopulationTerm() { |
| 4391 var o = new api.ListPopulationTerm(); | 4391 var o = new api.ListPopulationTerm(); |
| 4392 buildCounterListPopulationTerm++; | 4392 buildCounterListPopulationTerm++; |
| 4393 if (buildCounterListPopulationTerm < 3) { | 4393 if (buildCounterListPopulationTerm < 3) { |
| 4394 o.contains = true; | 4394 o.contains = true; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4504 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4504 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4505 unittest.expect(o.dartId, unittest.equals('foo')); | 4505 unittest.expect(o.dartId, unittest.equals('foo')); |
| 4506 unittest.expect(o.dmaId, unittest.equals('foo')); | 4506 unittest.expect(o.dmaId, unittest.equals('foo')); |
| 4507 unittest.expect(o.kind, unittest.equals('foo')); | 4507 unittest.expect(o.kind, unittest.equals('foo')); |
| 4508 unittest.expect(o.metroCode, unittest.equals('foo')); | 4508 unittest.expect(o.metroCode, unittest.equals('foo')); |
| 4509 unittest.expect(o.name, unittest.equals('foo')); | 4509 unittest.expect(o.name, unittest.equals('foo')); |
| 4510 } | 4510 } |
| 4511 buildCounterMetro--; | 4511 buildCounterMetro--; |
| 4512 } | 4512 } |
| 4513 | 4513 |
| 4514 buildUnnamed275() { | 4514 buildUnnamed290() { |
| 4515 var o = new core.List<api.Metro>(); | 4515 var o = new core.List<api.Metro>(); |
| 4516 o.add(buildMetro()); | 4516 o.add(buildMetro()); |
| 4517 o.add(buildMetro()); | 4517 o.add(buildMetro()); |
| 4518 return o; | 4518 return o; |
| 4519 } | 4519 } |
| 4520 | 4520 |
| 4521 checkUnnamed275(core.List<api.Metro> o) { | 4521 checkUnnamed290(core.List<api.Metro> o) { |
| 4522 unittest.expect(o, unittest.hasLength(2)); | 4522 unittest.expect(o, unittest.hasLength(2)); |
| 4523 checkMetro(o[0]); | 4523 checkMetro(o[0]); |
| 4524 checkMetro(o[1]); | 4524 checkMetro(o[1]); |
| 4525 } | 4525 } |
| 4526 | 4526 |
| 4527 core.int buildCounterMetrosListResponse = 0; | 4527 core.int buildCounterMetrosListResponse = 0; |
| 4528 buildMetrosListResponse() { | 4528 buildMetrosListResponse() { |
| 4529 var o = new api.MetrosListResponse(); | 4529 var o = new api.MetrosListResponse(); |
| 4530 buildCounterMetrosListResponse++; | 4530 buildCounterMetrosListResponse++; |
| 4531 if (buildCounterMetrosListResponse < 3) { | 4531 if (buildCounterMetrosListResponse < 3) { |
| 4532 o.kind = "foo"; | 4532 o.kind = "foo"; |
| 4533 o.metros = buildUnnamed275(); | 4533 o.metros = buildUnnamed290(); |
| 4534 } | 4534 } |
| 4535 buildCounterMetrosListResponse--; | 4535 buildCounterMetrosListResponse--; |
| 4536 return o; | 4536 return o; |
| 4537 } | 4537 } |
| 4538 | 4538 |
| 4539 checkMetrosListResponse(api.MetrosListResponse o) { | 4539 checkMetrosListResponse(api.MetrosListResponse o) { |
| 4540 buildCounterMetrosListResponse++; | 4540 buildCounterMetrosListResponse++; |
| 4541 if (buildCounterMetrosListResponse < 3) { | 4541 if (buildCounterMetrosListResponse < 3) { |
| 4542 unittest.expect(o.kind, unittest.equals('foo')); | 4542 unittest.expect(o.kind, unittest.equals('foo')); |
| 4543 checkUnnamed275(o.metros); | 4543 checkUnnamed290(o.metros); |
| 4544 } | 4544 } |
| 4545 buildCounterMetrosListResponse--; | 4545 buildCounterMetrosListResponse--; |
| 4546 } | 4546 } |
| 4547 | 4547 |
| 4548 core.int buildCounterMobileCarrier = 0; | 4548 core.int buildCounterMobileCarrier = 0; |
| 4549 buildMobileCarrier() { | 4549 buildMobileCarrier() { |
| 4550 var o = new api.MobileCarrier(); | 4550 var o = new api.MobileCarrier(); |
| 4551 buildCounterMobileCarrier++; | 4551 buildCounterMobileCarrier++; |
| 4552 if (buildCounterMobileCarrier < 3) { | 4552 if (buildCounterMobileCarrier < 3) { |
| 4553 o.countryCode = "foo"; | 4553 o.countryCode = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4565 if (buildCounterMobileCarrier < 3) { | 4565 if (buildCounterMobileCarrier < 3) { |
| 4566 unittest.expect(o.countryCode, unittest.equals('foo')); | 4566 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 4567 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4567 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4568 unittest.expect(o.id, unittest.equals('foo')); | 4568 unittest.expect(o.id, unittest.equals('foo')); |
| 4569 unittest.expect(o.kind, unittest.equals('foo')); | 4569 unittest.expect(o.kind, unittest.equals('foo')); |
| 4570 unittest.expect(o.name, unittest.equals('foo')); | 4570 unittest.expect(o.name, unittest.equals('foo')); |
| 4571 } | 4571 } |
| 4572 buildCounterMobileCarrier--; | 4572 buildCounterMobileCarrier--; |
| 4573 } | 4573 } |
| 4574 | 4574 |
| 4575 buildUnnamed276() { | 4575 buildUnnamed291() { |
| 4576 var o = new core.List<api.MobileCarrier>(); | 4576 var o = new core.List<api.MobileCarrier>(); |
| 4577 o.add(buildMobileCarrier()); | 4577 o.add(buildMobileCarrier()); |
| 4578 o.add(buildMobileCarrier()); | 4578 o.add(buildMobileCarrier()); |
| 4579 return o; | 4579 return o; |
| 4580 } | 4580 } |
| 4581 | 4581 |
| 4582 checkUnnamed276(core.List<api.MobileCarrier> o) { | 4582 checkUnnamed291(core.List<api.MobileCarrier> o) { |
| 4583 unittest.expect(o, unittest.hasLength(2)); | 4583 unittest.expect(o, unittest.hasLength(2)); |
| 4584 checkMobileCarrier(o[0]); | 4584 checkMobileCarrier(o[0]); |
| 4585 checkMobileCarrier(o[1]); | 4585 checkMobileCarrier(o[1]); |
| 4586 } | 4586 } |
| 4587 | 4587 |
| 4588 core.int buildCounterMobileCarriersListResponse = 0; | 4588 core.int buildCounterMobileCarriersListResponse = 0; |
| 4589 buildMobileCarriersListResponse() { | 4589 buildMobileCarriersListResponse() { |
| 4590 var o = new api.MobileCarriersListResponse(); | 4590 var o = new api.MobileCarriersListResponse(); |
| 4591 buildCounterMobileCarriersListResponse++; | 4591 buildCounterMobileCarriersListResponse++; |
| 4592 if (buildCounterMobileCarriersListResponse < 3) { | 4592 if (buildCounterMobileCarriersListResponse < 3) { |
| 4593 o.kind = "foo"; | 4593 o.kind = "foo"; |
| 4594 o.mobileCarriers = buildUnnamed276(); | 4594 o.mobileCarriers = buildUnnamed291(); |
| 4595 } | 4595 } |
| 4596 buildCounterMobileCarriersListResponse--; | 4596 buildCounterMobileCarriersListResponse--; |
| 4597 return o; | 4597 return o; |
| 4598 } | 4598 } |
| 4599 | 4599 |
| 4600 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { | 4600 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { |
| 4601 buildCounterMobileCarriersListResponse++; | 4601 buildCounterMobileCarriersListResponse++; |
| 4602 if (buildCounterMobileCarriersListResponse < 3) { | 4602 if (buildCounterMobileCarriersListResponse < 3) { |
| 4603 unittest.expect(o.kind, unittest.equals('foo')); | 4603 unittest.expect(o.kind, unittest.equals('foo')); |
| 4604 checkUnnamed276(o.mobileCarriers); | 4604 checkUnnamed291(o.mobileCarriers); |
| 4605 } | 4605 } |
| 4606 buildCounterMobileCarriersListResponse--; | 4606 buildCounterMobileCarriersListResponse--; |
| 4607 } | 4607 } |
| 4608 | 4608 |
| 4609 buildUnnamed277() { | 4609 buildUnnamed292() { |
| 4610 var o = new core.List<core.String>(); | 4610 var o = new core.List<core.String>(); |
| 4611 o.add("foo"); | 4611 o.add("foo"); |
| 4612 o.add("foo"); | 4612 o.add("foo"); |
| 4613 return o; | 4613 return o; |
| 4614 } | 4614 } |
| 4615 | 4615 |
| 4616 checkUnnamed277(core.List<core.String> o) { | 4616 checkUnnamed292(core.List<core.String> o) { |
| 4617 unittest.expect(o, unittest.hasLength(2)); | 4617 unittest.expect(o, unittest.hasLength(2)); |
| 4618 unittest.expect(o[0], unittest.equals('foo')); | 4618 unittest.expect(o[0], unittest.equals('foo')); |
| 4619 unittest.expect(o[1], unittest.equals('foo')); | 4619 unittest.expect(o[1], unittest.equals('foo')); |
| 4620 } | 4620 } |
| 4621 | 4621 |
| 4622 core.int buildCounterObjectFilter = 0; | 4622 core.int buildCounterObjectFilter = 0; |
| 4623 buildObjectFilter() { | 4623 buildObjectFilter() { |
| 4624 var o = new api.ObjectFilter(); | 4624 var o = new api.ObjectFilter(); |
| 4625 buildCounterObjectFilter++; | 4625 buildCounterObjectFilter++; |
| 4626 if (buildCounterObjectFilter < 3) { | 4626 if (buildCounterObjectFilter < 3) { |
| 4627 o.kind = "foo"; | 4627 o.kind = "foo"; |
| 4628 o.objectIds = buildUnnamed277(); | 4628 o.objectIds = buildUnnamed292(); |
| 4629 o.status = "foo"; | 4629 o.status = "foo"; |
| 4630 } | 4630 } |
| 4631 buildCounterObjectFilter--; | 4631 buildCounterObjectFilter--; |
| 4632 return o; | 4632 return o; |
| 4633 } | 4633 } |
| 4634 | 4634 |
| 4635 checkObjectFilter(api.ObjectFilter o) { | 4635 checkObjectFilter(api.ObjectFilter o) { |
| 4636 buildCounterObjectFilter++; | 4636 buildCounterObjectFilter++; |
| 4637 if (buildCounterObjectFilter < 3) { | 4637 if (buildCounterObjectFilter < 3) { |
| 4638 unittest.expect(o.kind, unittest.equals('foo')); | 4638 unittest.expect(o.kind, unittest.equals('foo')); |
| 4639 checkUnnamed277(o.objectIds); | 4639 checkUnnamed292(o.objectIds); |
| 4640 unittest.expect(o.status, unittest.equals('foo')); | 4640 unittest.expect(o.status, unittest.equals('foo')); |
| 4641 } | 4641 } |
| 4642 buildCounterObjectFilter--; | 4642 buildCounterObjectFilter--; |
| 4643 } | 4643 } |
| 4644 | 4644 |
| 4645 core.int buildCounterOffsetPosition = 0; | 4645 core.int buildCounterOffsetPosition = 0; |
| 4646 buildOffsetPosition() { | 4646 buildOffsetPosition() { |
| 4647 var o = new api.OffsetPosition(); | 4647 var o = new api.OffsetPosition(); |
| 4648 buildCounterOffsetPosition++; | 4648 buildCounterOffsetPosition++; |
| 4649 if (buildCounterOffsetPosition < 3) { | 4649 if (buildCounterOffsetPosition < 3) { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4733 unittest.expect(o.id, unittest.equals('foo')); | 4733 unittest.expect(o.id, unittest.equals('foo')); |
| 4734 unittest.expect(o.kind, unittest.equals('foo')); | 4734 unittest.expect(o.kind, unittest.equals('foo')); |
| 4735 unittest.expect(o.majorVersion, unittest.equals('foo')); | 4735 unittest.expect(o.majorVersion, unittest.equals('foo')); |
| 4736 unittest.expect(o.minorVersion, unittest.equals('foo')); | 4736 unittest.expect(o.minorVersion, unittest.equals('foo')); |
| 4737 unittest.expect(o.name, unittest.equals('foo')); | 4737 unittest.expect(o.name, unittest.equals('foo')); |
| 4738 checkOperatingSystem(o.operatingSystem); | 4738 checkOperatingSystem(o.operatingSystem); |
| 4739 } | 4739 } |
| 4740 buildCounterOperatingSystemVersion--; | 4740 buildCounterOperatingSystemVersion--; |
| 4741 } | 4741 } |
| 4742 | 4742 |
| 4743 buildUnnamed278() { | 4743 buildUnnamed293() { |
| 4744 var o = new core.List<api.OperatingSystemVersion>(); | 4744 var o = new core.List<api.OperatingSystemVersion>(); |
| 4745 o.add(buildOperatingSystemVersion()); | 4745 o.add(buildOperatingSystemVersion()); |
| 4746 o.add(buildOperatingSystemVersion()); | 4746 o.add(buildOperatingSystemVersion()); |
| 4747 return o; | 4747 return o; |
| 4748 } | 4748 } |
| 4749 | 4749 |
| 4750 checkUnnamed278(core.List<api.OperatingSystemVersion> o) { | 4750 checkUnnamed293(core.List<api.OperatingSystemVersion> o) { |
| 4751 unittest.expect(o, unittest.hasLength(2)); | 4751 unittest.expect(o, unittest.hasLength(2)); |
| 4752 checkOperatingSystemVersion(o[0]); | 4752 checkOperatingSystemVersion(o[0]); |
| 4753 checkOperatingSystemVersion(o[1]); | 4753 checkOperatingSystemVersion(o[1]); |
| 4754 } | 4754 } |
| 4755 | 4755 |
| 4756 core.int buildCounterOperatingSystemVersionsListResponse = 0; | 4756 core.int buildCounterOperatingSystemVersionsListResponse = 0; |
| 4757 buildOperatingSystemVersionsListResponse() { | 4757 buildOperatingSystemVersionsListResponse() { |
| 4758 var o = new api.OperatingSystemVersionsListResponse(); | 4758 var o = new api.OperatingSystemVersionsListResponse(); |
| 4759 buildCounterOperatingSystemVersionsListResponse++; | 4759 buildCounterOperatingSystemVersionsListResponse++; |
| 4760 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4760 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 4761 o.kind = "foo"; | 4761 o.kind = "foo"; |
| 4762 o.operatingSystemVersions = buildUnnamed278(); | 4762 o.operatingSystemVersions = buildUnnamed293(); |
| 4763 } | 4763 } |
| 4764 buildCounterOperatingSystemVersionsListResponse--; | 4764 buildCounterOperatingSystemVersionsListResponse--; |
| 4765 return o; | 4765 return o; |
| 4766 } | 4766 } |
| 4767 | 4767 |
| 4768 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { | 4768 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { |
| 4769 buildCounterOperatingSystemVersionsListResponse++; | 4769 buildCounterOperatingSystemVersionsListResponse++; |
| 4770 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4770 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 4771 unittest.expect(o.kind, unittest.equals('foo')); | 4771 unittest.expect(o.kind, unittest.equals('foo')); |
| 4772 checkUnnamed278(o.operatingSystemVersions); | 4772 checkUnnamed293(o.operatingSystemVersions); |
| 4773 } | 4773 } |
| 4774 buildCounterOperatingSystemVersionsListResponse--; | 4774 buildCounterOperatingSystemVersionsListResponse--; |
| 4775 } | 4775 } |
| 4776 | 4776 |
| 4777 buildUnnamed279() { | 4777 buildUnnamed294() { |
| 4778 var o = new core.List<api.OperatingSystem>(); | 4778 var o = new core.List<api.OperatingSystem>(); |
| 4779 o.add(buildOperatingSystem()); | 4779 o.add(buildOperatingSystem()); |
| 4780 o.add(buildOperatingSystem()); | 4780 o.add(buildOperatingSystem()); |
| 4781 return o; | 4781 return o; |
| 4782 } | 4782 } |
| 4783 | 4783 |
| 4784 checkUnnamed279(core.List<api.OperatingSystem> o) { | 4784 checkUnnamed294(core.List<api.OperatingSystem> o) { |
| 4785 unittest.expect(o, unittest.hasLength(2)); | 4785 unittest.expect(o, unittest.hasLength(2)); |
| 4786 checkOperatingSystem(o[0]); | 4786 checkOperatingSystem(o[0]); |
| 4787 checkOperatingSystem(o[1]); | 4787 checkOperatingSystem(o[1]); |
| 4788 } | 4788 } |
| 4789 | 4789 |
| 4790 core.int buildCounterOperatingSystemsListResponse = 0; | 4790 core.int buildCounterOperatingSystemsListResponse = 0; |
| 4791 buildOperatingSystemsListResponse() { | 4791 buildOperatingSystemsListResponse() { |
| 4792 var o = new api.OperatingSystemsListResponse(); | 4792 var o = new api.OperatingSystemsListResponse(); |
| 4793 buildCounterOperatingSystemsListResponse++; | 4793 buildCounterOperatingSystemsListResponse++; |
| 4794 if (buildCounterOperatingSystemsListResponse < 3) { | 4794 if (buildCounterOperatingSystemsListResponse < 3) { |
| 4795 o.kind = "foo"; | 4795 o.kind = "foo"; |
| 4796 o.operatingSystems = buildUnnamed279(); | 4796 o.operatingSystems = buildUnnamed294(); |
| 4797 } | 4797 } |
| 4798 buildCounterOperatingSystemsListResponse--; | 4798 buildCounterOperatingSystemsListResponse--; |
| 4799 return o; | 4799 return o; |
| 4800 } | 4800 } |
| 4801 | 4801 |
| 4802 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { | 4802 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { |
| 4803 buildCounterOperatingSystemsListResponse++; | 4803 buildCounterOperatingSystemsListResponse++; |
| 4804 if (buildCounterOperatingSystemsListResponse < 3) { | 4804 if (buildCounterOperatingSystemsListResponse < 3) { |
| 4805 unittest.expect(o.kind, unittest.equals('foo')); | 4805 unittest.expect(o.kind, unittest.equals('foo')); |
| 4806 checkUnnamed279(o.operatingSystems); | 4806 checkUnnamed294(o.operatingSystems); |
| 4807 } | 4807 } |
| 4808 buildCounterOperatingSystemsListResponse--; | 4808 buildCounterOperatingSystemsListResponse--; |
| 4809 } | 4809 } |
| 4810 | 4810 |
| 4811 core.int buildCounterOptimizationActivity = 0; | 4811 core.int buildCounterOptimizationActivity = 0; |
| 4812 buildOptimizationActivity() { | 4812 buildOptimizationActivity() { |
| 4813 var o = new api.OptimizationActivity(); | 4813 var o = new api.OptimizationActivity(); |
| 4814 buildCounterOptimizationActivity++; | 4814 buildCounterOptimizationActivity++; |
| 4815 if (buildCounterOptimizationActivity < 3) { | 4815 if (buildCounterOptimizationActivity < 3) { |
| 4816 o.floodlightActivityId = "foo"; | 4816 o.floodlightActivityId = "foo"; |
| 4817 o.floodlightActivityIdDimensionValue = buildDimensionValue(); | 4817 o.floodlightActivityIdDimensionValue = buildDimensionValue(); |
| 4818 o.weight = 42; | 4818 o.weight = 42; |
| 4819 } | 4819 } |
| 4820 buildCounterOptimizationActivity--; | 4820 buildCounterOptimizationActivity--; |
| 4821 return o; | 4821 return o; |
| 4822 } | 4822 } |
| 4823 | 4823 |
| 4824 checkOptimizationActivity(api.OptimizationActivity o) { | 4824 checkOptimizationActivity(api.OptimizationActivity o) { |
| 4825 buildCounterOptimizationActivity++; | 4825 buildCounterOptimizationActivity++; |
| 4826 if (buildCounterOptimizationActivity < 3) { | 4826 if (buildCounterOptimizationActivity < 3) { |
| 4827 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4827 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4828 checkDimensionValue(o.floodlightActivityIdDimensionValue); | 4828 checkDimensionValue(o.floodlightActivityIdDimensionValue); |
| 4829 unittest.expect(o.weight, unittest.equals(42)); | 4829 unittest.expect(o.weight, unittest.equals(42)); |
| 4830 } | 4830 } |
| 4831 buildCounterOptimizationActivity--; | 4831 buildCounterOptimizationActivity--; |
| 4832 } | 4832 } |
| 4833 | 4833 |
| 4834 buildUnnamed280() { | 4834 buildUnnamed295() { |
| 4835 var o = new core.List<core.String>(); | 4835 var o = new core.List<core.String>(); |
| 4836 o.add("foo"); | 4836 o.add("foo"); |
| 4837 o.add("foo"); | 4837 o.add("foo"); |
| 4838 return o; | 4838 return o; |
| 4839 } | 4839 } |
| 4840 | 4840 |
| 4841 checkUnnamed280(core.List<core.String> o) { | 4841 checkUnnamed295(core.List<core.String> o) { |
| 4842 unittest.expect(o, unittest.hasLength(2)); | 4842 unittest.expect(o, unittest.hasLength(2)); |
| 4843 unittest.expect(o[0], unittest.equals('foo')); | 4843 unittest.expect(o[0], unittest.equals('foo')); |
| 4844 unittest.expect(o[1], unittest.equals('foo')); | 4844 unittest.expect(o[1], unittest.equals('foo')); |
| 4845 } | 4845 } |
| 4846 | 4846 |
| 4847 buildUnnamed281() { | 4847 buildUnnamed296() { |
| 4848 var o = new core.List<api.OrderContact>(); | 4848 var o = new core.List<api.OrderContact>(); |
| 4849 o.add(buildOrderContact()); | 4849 o.add(buildOrderContact()); |
| 4850 o.add(buildOrderContact()); | 4850 o.add(buildOrderContact()); |
| 4851 return o; | 4851 return o; |
| 4852 } | 4852 } |
| 4853 | 4853 |
| 4854 checkUnnamed281(core.List<api.OrderContact> o) { | 4854 checkUnnamed296(core.List<api.OrderContact> o) { |
| 4855 unittest.expect(o, unittest.hasLength(2)); | 4855 unittest.expect(o, unittest.hasLength(2)); |
| 4856 checkOrderContact(o[0]); | 4856 checkOrderContact(o[0]); |
| 4857 checkOrderContact(o[1]); | 4857 checkOrderContact(o[1]); |
| 4858 } | 4858 } |
| 4859 | 4859 |
| 4860 buildUnnamed282() { | 4860 buildUnnamed297() { |
| 4861 var o = new core.List<core.String>(); | 4861 var o = new core.List<core.String>(); |
| 4862 o.add("foo"); | 4862 o.add("foo"); |
| 4863 o.add("foo"); | 4863 o.add("foo"); |
| 4864 return o; | 4864 return o; |
| 4865 } | 4865 } |
| 4866 | 4866 |
| 4867 checkUnnamed282(core.List<core.String> o) { | 4867 checkUnnamed297(core.List<core.String> o) { |
| 4868 unittest.expect(o, unittest.hasLength(2)); | 4868 unittest.expect(o, unittest.hasLength(2)); |
| 4869 unittest.expect(o[0], unittest.equals('foo')); | 4869 unittest.expect(o[0], unittest.equals('foo')); |
| 4870 unittest.expect(o[1], unittest.equals('foo')); | 4870 unittest.expect(o[1], unittest.equals('foo')); |
| 4871 } | 4871 } |
| 4872 | 4872 |
| 4873 buildUnnamed283() { | 4873 buildUnnamed298() { |
| 4874 var o = new core.List<core.String>(); | 4874 var o = new core.List<core.String>(); |
| 4875 o.add("foo"); | 4875 o.add("foo"); |
| 4876 o.add("foo"); | 4876 o.add("foo"); |
| 4877 return o; | 4877 return o; |
| 4878 } | 4878 } |
| 4879 | 4879 |
| 4880 checkUnnamed283(core.List<core.String> o) { | 4880 checkUnnamed298(core.List<core.String> o) { |
| 4881 unittest.expect(o, unittest.hasLength(2)); | 4881 unittest.expect(o, unittest.hasLength(2)); |
| 4882 unittest.expect(o[0], unittest.equals('foo')); | 4882 unittest.expect(o[0], unittest.equals('foo')); |
| 4883 unittest.expect(o[1], unittest.equals('foo')); | 4883 unittest.expect(o[1], unittest.equals('foo')); |
| 4884 } | 4884 } |
| 4885 | 4885 |
| 4886 core.int buildCounterOrder = 0; | 4886 core.int buildCounterOrder = 0; |
| 4887 buildOrder() { | 4887 buildOrder() { |
| 4888 var o = new api.Order(); | 4888 var o = new api.Order(); |
| 4889 buildCounterOrder++; | 4889 buildCounterOrder++; |
| 4890 if (buildCounterOrder < 3) { | 4890 if (buildCounterOrder < 3) { |
| 4891 o.accountId = "foo"; | 4891 o.accountId = "foo"; |
| 4892 o.advertiserId = "foo"; | 4892 o.advertiserId = "foo"; |
| 4893 o.approverUserProfileIds = buildUnnamed280(); | 4893 o.approverUserProfileIds = buildUnnamed295(); |
| 4894 o.buyerInvoiceId = "foo"; | 4894 o.buyerInvoiceId = "foo"; |
| 4895 o.buyerOrganizationName = "foo"; | 4895 o.buyerOrganizationName = "foo"; |
| 4896 o.comments = "foo"; | 4896 o.comments = "foo"; |
| 4897 o.contacts = buildUnnamed281(); | 4897 o.contacts = buildUnnamed296(); |
| 4898 o.id = "foo"; | 4898 o.id = "foo"; |
| 4899 o.kind = "foo"; | 4899 o.kind = "foo"; |
| 4900 o.lastModifiedInfo = buildLastModifiedInfo(); | 4900 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4901 o.name = "foo"; | 4901 o.name = "foo"; |
| 4902 o.notes = "foo"; | 4902 o.notes = "foo"; |
| 4903 o.planningTermId = "foo"; | 4903 o.planningTermId = "foo"; |
| 4904 o.projectId = "foo"; | 4904 o.projectId = "foo"; |
| 4905 o.sellerOrderId = "foo"; | 4905 o.sellerOrderId = "foo"; |
| 4906 o.sellerOrganizationName = "foo"; | 4906 o.sellerOrganizationName = "foo"; |
| 4907 o.siteId = buildUnnamed282(); | 4907 o.siteId = buildUnnamed297(); |
| 4908 o.siteNames = buildUnnamed283(); | 4908 o.siteNames = buildUnnamed298(); |
| 4909 o.subaccountId = "foo"; | 4909 o.subaccountId = "foo"; |
| 4910 o.termsAndConditions = "foo"; | 4910 o.termsAndConditions = "foo"; |
| 4911 } | 4911 } |
| 4912 buildCounterOrder--; | 4912 buildCounterOrder--; |
| 4913 return o; | 4913 return o; |
| 4914 } | 4914 } |
| 4915 | 4915 |
| 4916 checkOrder(api.Order o) { | 4916 checkOrder(api.Order o) { |
| 4917 buildCounterOrder++; | 4917 buildCounterOrder++; |
| 4918 if (buildCounterOrder < 3) { | 4918 if (buildCounterOrder < 3) { |
| 4919 unittest.expect(o.accountId, unittest.equals('foo')); | 4919 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4920 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4920 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4921 checkUnnamed280(o.approverUserProfileIds); | 4921 checkUnnamed295(o.approverUserProfileIds); |
| 4922 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); | 4922 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); |
| 4923 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); | 4923 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); |
| 4924 unittest.expect(o.comments, unittest.equals('foo')); | 4924 unittest.expect(o.comments, unittest.equals('foo')); |
| 4925 checkUnnamed281(o.contacts); | 4925 checkUnnamed296(o.contacts); |
| 4926 unittest.expect(o.id, unittest.equals('foo')); | 4926 unittest.expect(o.id, unittest.equals('foo')); |
| 4927 unittest.expect(o.kind, unittest.equals('foo')); | 4927 unittest.expect(o.kind, unittest.equals('foo')); |
| 4928 checkLastModifiedInfo(o.lastModifiedInfo); | 4928 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4929 unittest.expect(o.name, unittest.equals('foo')); | 4929 unittest.expect(o.name, unittest.equals('foo')); |
| 4930 unittest.expect(o.notes, unittest.equals('foo')); | 4930 unittest.expect(o.notes, unittest.equals('foo')); |
| 4931 unittest.expect(o.planningTermId, unittest.equals('foo')); | 4931 unittest.expect(o.planningTermId, unittest.equals('foo')); |
| 4932 unittest.expect(o.projectId, unittest.equals('foo')); | 4932 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4933 unittest.expect(o.sellerOrderId, unittest.equals('foo')); | 4933 unittest.expect(o.sellerOrderId, unittest.equals('foo')); |
| 4934 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); | 4934 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); |
| 4935 checkUnnamed282(o.siteId); | 4935 checkUnnamed297(o.siteId); |
| 4936 checkUnnamed283(o.siteNames); | 4936 checkUnnamed298(o.siteNames); |
| 4937 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4937 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4938 unittest.expect(o.termsAndConditions, unittest.equals('foo')); | 4938 unittest.expect(o.termsAndConditions, unittest.equals('foo')); |
| 4939 } | 4939 } |
| 4940 buildCounterOrder--; | 4940 buildCounterOrder--; |
| 4941 } | 4941 } |
| 4942 | 4942 |
| 4943 core.int buildCounterOrderContact = 0; | 4943 core.int buildCounterOrderContact = 0; |
| 4944 buildOrderContact() { | 4944 buildOrderContact() { |
| 4945 var o = new api.OrderContact(); | 4945 var o = new api.OrderContact(); |
| 4946 buildCounterOrderContact++; | 4946 buildCounterOrderContact++; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 4960 if (buildCounterOrderContact < 3) { | 4960 if (buildCounterOrderContact < 3) { |
| 4961 unittest.expect(o.contactInfo, unittest.equals('foo')); | 4961 unittest.expect(o.contactInfo, unittest.equals('foo')); |
| 4962 unittest.expect(o.contactName, unittest.equals('foo')); | 4962 unittest.expect(o.contactName, unittest.equals('foo')); |
| 4963 unittest.expect(o.contactTitle, unittest.equals('foo')); | 4963 unittest.expect(o.contactTitle, unittest.equals('foo')); |
| 4964 unittest.expect(o.contactType, unittest.equals('foo')); | 4964 unittest.expect(o.contactType, unittest.equals('foo')); |
| 4965 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); | 4965 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); |
| 4966 } | 4966 } |
| 4967 buildCounterOrderContact--; | 4967 buildCounterOrderContact--; |
| 4968 } | 4968 } |
| 4969 | 4969 |
| 4970 buildUnnamed284() { | 4970 buildUnnamed299() { |
| 4971 var o = new core.List<core.String>(); | 4971 var o = new core.List<core.String>(); |
| 4972 o.add("foo"); | 4972 o.add("foo"); |
| 4973 o.add("foo"); | 4973 o.add("foo"); |
| 4974 return o; | 4974 return o; |
| 4975 } | 4975 } |
| 4976 | 4976 |
| 4977 checkUnnamed284(core.List<core.String> o) { | 4977 checkUnnamed299(core.List<core.String> o) { |
| 4978 unittest.expect(o, unittest.hasLength(2)); | 4978 unittest.expect(o, unittest.hasLength(2)); |
| 4979 unittest.expect(o[0], unittest.equals('foo')); | 4979 unittest.expect(o[0], unittest.equals('foo')); |
| 4980 unittest.expect(o[1], unittest.equals('foo')); | 4980 unittest.expect(o[1], unittest.equals('foo')); |
| 4981 } | 4981 } |
| 4982 | 4982 |
| 4983 buildUnnamed285() { | 4983 buildUnnamed300() { |
| 4984 var o = new core.List<core.String>(); | 4984 var o = new core.List<core.String>(); |
| 4985 o.add("foo"); | 4985 o.add("foo"); |
| 4986 o.add("foo"); | 4986 o.add("foo"); |
| 4987 return o; | 4987 return o; |
| 4988 } | 4988 } |
| 4989 | 4989 |
| 4990 checkUnnamed285(core.List<core.String> o) { | 4990 checkUnnamed300(core.List<core.String> o) { |
| 4991 unittest.expect(o, unittest.hasLength(2)); | 4991 unittest.expect(o, unittest.hasLength(2)); |
| 4992 unittest.expect(o[0], unittest.equals('foo')); | 4992 unittest.expect(o[0], unittest.equals('foo')); |
| 4993 unittest.expect(o[1], unittest.equals('foo')); | 4993 unittest.expect(o[1], unittest.equals('foo')); |
| 4994 } | 4994 } |
| 4995 | 4995 |
| 4996 core.int buildCounterOrderDocument = 0; | 4996 core.int buildCounterOrderDocument = 0; |
| 4997 buildOrderDocument() { | 4997 buildOrderDocument() { |
| 4998 var o = new api.OrderDocument(); | 4998 var o = new api.OrderDocument(); |
| 4999 buildCounterOrderDocument++; | 4999 buildCounterOrderDocument++; |
| 5000 if (buildCounterOrderDocument < 3) { | 5000 if (buildCounterOrderDocument < 3) { |
| 5001 o.accountId = "foo"; | 5001 o.accountId = "foo"; |
| 5002 o.advertiserId = "foo"; | 5002 o.advertiserId = "foo"; |
| 5003 o.amendedOrderDocumentId = "foo"; | 5003 o.amendedOrderDocumentId = "foo"; |
| 5004 o.approvedByUserProfileIds = buildUnnamed284(); | 5004 o.approvedByUserProfileIds = buildUnnamed299(); |
| 5005 o.cancelled = true; | 5005 o.cancelled = true; |
| 5006 o.createdInfo = buildLastModifiedInfo(); | 5006 o.createdInfo = buildLastModifiedInfo(); |
| 5007 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5007 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5008 o.id = "foo"; | 5008 o.id = "foo"; |
| 5009 o.kind = "foo"; | 5009 o.kind = "foo"; |
| 5010 o.lastSentRecipients = buildUnnamed285(); | 5010 o.lastSentRecipients = buildUnnamed300(); |
| 5011 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); | 5011 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 5012 o.orderId = "foo"; | 5012 o.orderId = "foo"; |
| 5013 o.projectId = "foo"; | 5013 o.projectId = "foo"; |
| 5014 o.signed = true; | 5014 o.signed = true; |
| 5015 o.subaccountId = "foo"; | 5015 o.subaccountId = "foo"; |
| 5016 o.title = "foo"; | 5016 o.title = "foo"; |
| 5017 o.type = "foo"; | 5017 o.type = "foo"; |
| 5018 } | 5018 } |
| 5019 buildCounterOrderDocument--; | 5019 buildCounterOrderDocument--; |
| 5020 return o; | 5020 return o; |
| 5021 } | 5021 } |
| 5022 | 5022 |
| 5023 checkOrderDocument(api.OrderDocument o) { | 5023 checkOrderDocument(api.OrderDocument o) { |
| 5024 buildCounterOrderDocument++; | 5024 buildCounterOrderDocument++; |
| 5025 if (buildCounterOrderDocument < 3) { | 5025 if (buildCounterOrderDocument < 3) { |
| 5026 unittest.expect(o.accountId, unittest.equals('foo')); | 5026 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5027 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5027 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5028 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); | 5028 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); |
| 5029 checkUnnamed284(o.approvedByUserProfileIds); | 5029 checkUnnamed299(o.approvedByUserProfileIds); |
| 5030 unittest.expect(o.cancelled, unittest.isTrue); | 5030 unittest.expect(o.cancelled, unittest.isTrue); |
| 5031 checkLastModifiedInfo(o.createdInfo); | 5031 checkLastModifiedInfo(o.createdInfo); |
| 5032 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); | 5032 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); |
| 5033 unittest.expect(o.id, unittest.equals('foo')); | 5033 unittest.expect(o.id, unittest.equals('foo')); |
| 5034 unittest.expect(o.kind, unittest.equals('foo')); | 5034 unittest.expect(o.kind, unittest.equals('foo')); |
| 5035 checkUnnamed285(o.lastSentRecipients); | 5035 checkUnnamed300(o.lastSentRecipients); |
| 5036 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); | 5036 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); |
| 5037 unittest.expect(o.orderId, unittest.equals('foo')); | 5037 unittest.expect(o.orderId, unittest.equals('foo')); |
| 5038 unittest.expect(o.projectId, unittest.equals('foo')); | 5038 unittest.expect(o.projectId, unittest.equals('foo')); |
| 5039 unittest.expect(o.signed, unittest.isTrue); | 5039 unittest.expect(o.signed, unittest.isTrue); |
| 5040 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5040 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5041 unittest.expect(o.title, unittest.equals('foo')); | 5041 unittest.expect(o.title, unittest.equals('foo')); |
| 5042 unittest.expect(o.type, unittest.equals('foo')); | 5042 unittest.expect(o.type, unittest.equals('foo')); |
| 5043 } | 5043 } |
| 5044 buildCounterOrderDocument--; | 5044 buildCounterOrderDocument--; |
| 5045 } | 5045 } |
| 5046 | 5046 |
| 5047 buildUnnamed286() { | 5047 buildUnnamed301() { |
| 5048 var o = new core.List<api.OrderDocument>(); | 5048 var o = new core.List<api.OrderDocument>(); |
| 5049 o.add(buildOrderDocument()); | 5049 o.add(buildOrderDocument()); |
| 5050 o.add(buildOrderDocument()); | 5050 o.add(buildOrderDocument()); |
| 5051 return o; | 5051 return o; |
| 5052 } | 5052 } |
| 5053 | 5053 |
| 5054 checkUnnamed286(core.List<api.OrderDocument> o) { | 5054 checkUnnamed301(core.List<api.OrderDocument> o) { |
| 5055 unittest.expect(o, unittest.hasLength(2)); | 5055 unittest.expect(o, unittest.hasLength(2)); |
| 5056 checkOrderDocument(o[0]); | 5056 checkOrderDocument(o[0]); |
| 5057 checkOrderDocument(o[1]); | 5057 checkOrderDocument(o[1]); |
| 5058 } | 5058 } |
| 5059 | 5059 |
| 5060 core.int buildCounterOrderDocumentsListResponse = 0; | 5060 core.int buildCounterOrderDocumentsListResponse = 0; |
| 5061 buildOrderDocumentsListResponse() { | 5061 buildOrderDocumentsListResponse() { |
| 5062 var o = new api.OrderDocumentsListResponse(); | 5062 var o = new api.OrderDocumentsListResponse(); |
| 5063 buildCounterOrderDocumentsListResponse++; | 5063 buildCounterOrderDocumentsListResponse++; |
| 5064 if (buildCounterOrderDocumentsListResponse < 3) { | 5064 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5065 o.kind = "foo"; | 5065 o.kind = "foo"; |
| 5066 o.nextPageToken = "foo"; | 5066 o.nextPageToken = "foo"; |
| 5067 o.orderDocuments = buildUnnamed286(); | 5067 o.orderDocuments = buildUnnamed301(); |
| 5068 } | 5068 } |
| 5069 buildCounterOrderDocumentsListResponse--; | 5069 buildCounterOrderDocumentsListResponse--; |
| 5070 return o; | 5070 return o; |
| 5071 } | 5071 } |
| 5072 | 5072 |
| 5073 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { | 5073 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { |
| 5074 buildCounterOrderDocumentsListResponse++; | 5074 buildCounterOrderDocumentsListResponse++; |
| 5075 if (buildCounterOrderDocumentsListResponse < 3) { | 5075 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5076 unittest.expect(o.kind, unittest.equals('foo')); | 5076 unittest.expect(o.kind, unittest.equals('foo')); |
| 5077 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5077 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5078 checkUnnamed286(o.orderDocuments); | 5078 checkUnnamed301(o.orderDocuments); |
| 5079 } | 5079 } |
| 5080 buildCounterOrderDocumentsListResponse--; | 5080 buildCounterOrderDocumentsListResponse--; |
| 5081 } | 5081 } |
| 5082 | 5082 |
| 5083 buildUnnamed287() { | 5083 buildUnnamed302() { |
| 5084 var o = new core.List<api.Order>(); | 5084 var o = new core.List<api.Order>(); |
| 5085 o.add(buildOrder()); | 5085 o.add(buildOrder()); |
| 5086 o.add(buildOrder()); | 5086 o.add(buildOrder()); |
| 5087 return o; | 5087 return o; |
| 5088 } | 5088 } |
| 5089 | 5089 |
| 5090 checkUnnamed287(core.List<api.Order> o) { | 5090 checkUnnamed302(core.List<api.Order> o) { |
| 5091 unittest.expect(o, unittest.hasLength(2)); | 5091 unittest.expect(o, unittest.hasLength(2)); |
| 5092 checkOrder(o[0]); | 5092 checkOrder(o[0]); |
| 5093 checkOrder(o[1]); | 5093 checkOrder(o[1]); |
| 5094 } | 5094 } |
| 5095 | 5095 |
| 5096 core.int buildCounterOrdersListResponse = 0; | 5096 core.int buildCounterOrdersListResponse = 0; |
| 5097 buildOrdersListResponse() { | 5097 buildOrdersListResponse() { |
| 5098 var o = new api.OrdersListResponse(); | 5098 var o = new api.OrdersListResponse(); |
| 5099 buildCounterOrdersListResponse++; | 5099 buildCounterOrdersListResponse++; |
| 5100 if (buildCounterOrdersListResponse < 3) { | 5100 if (buildCounterOrdersListResponse < 3) { |
| 5101 o.kind = "foo"; | 5101 o.kind = "foo"; |
| 5102 o.nextPageToken = "foo"; | 5102 o.nextPageToken = "foo"; |
| 5103 o.orders = buildUnnamed287(); | 5103 o.orders = buildUnnamed302(); |
| 5104 } | 5104 } |
| 5105 buildCounterOrdersListResponse--; | 5105 buildCounterOrdersListResponse--; |
| 5106 return o; | 5106 return o; |
| 5107 } | 5107 } |
| 5108 | 5108 |
| 5109 checkOrdersListResponse(api.OrdersListResponse o) { | 5109 checkOrdersListResponse(api.OrdersListResponse o) { |
| 5110 buildCounterOrdersListResponse++; | 5110 buildCounterOrdersListResponse++; |
| 5111 if (buildCounterOrdersListResponse < 3) { | 5111 if (buildCounterOrdersListResponse < 3) { |
| 5112 unittest.expect(o.kind, unittest.equals('foo')); | 5112 unittest.expect(o.kind, unittest.equals('foo')); |
| 5113 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5113 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5114 checkUnnamed287(o.orders); | 5114 checkUnnamed302(o.orders); |
| 5115 } | 5115 } |
| 5116 buildCounterOrdersListResponse--; | 5116 buildCounterOrdersListResponse--; |
| 5117 } | 5117 } |
| 5118 | 5118 |
| 5119 buildUnnamed288() { | 5119 buildUnnamed303() { |
| 5120 var o = new core.List<api.Dimension>(); | 5120 var o = new core.List<api.Dimension>(); |
| 5121 o.add(buildDimension()); | 5121 o.add(buildDimension()); |
| 5122 o.add(buildDimension()); | 5122 o.add(buildDimension()); |
| 5123 return o; | 5123 return o; |
| 5124 } | 5124 } |
| 5125 | 5125 |
| 5126 checkUnnamed288(core.List<api.Dimension> o) { | 5126 checkUnnamed303(core.List<api.Dimension> o) { |
| 5127 unittest.expect(o, unittest.hasLength(2)); | 5127 unittest.expect(o, unittest.hasLength(2)); |
| 5128 checkDimension(o[0]); | 5128 checkDimension(o[0]); |
| 5129 checkDimension(o[1]); | 5129 checkDimension(o[1]); |
| 5130 } | 5130 } |
| 5131 | 5131 |
| 5132 buildUnnamed289() { | 5132 buildUnnamed304() { |
| 5133 var o = new core.List<api.Dimension>(); | 5133 var o = new core.List<api.Dimension>(); |
| 5134 o.add(buildDimension()); | 5134 o.add(buildDimension()); |
| 5135 o.add(buildDimension()); | 5135 o.add(buildDimension()); |
| 5136 return o; | 5136 return o; |
| 5137 } | 5137 } |
| 5138 | 5138 |
| 5139 checkUnnamed289(core.List<api.Dimension> o) { | 5139 checkUnnamed304(core.List<api.Dimension> o) { |
| 5140 unittest.expect(o, unittest.hasLength(2)); | 5140 unittest.expect(o, unittest.hasLength(2)); |
| 5141 checkDimension(o[0]); | 5141 checkDimension(o[0]); |
| 5142 checkDimension(o[1]); | 5142 checkDimension(o[1]); |
| 5143 } | 5143 } |
| 5144 | 5144 |
| 5145 buildUnnamed290() { | 5145 buildUnnamed305() { |
| 5146 var o = new core.List<api.Metric>(); | 5146 var o = new core.List<api.Metric>(); |
| 5147 o.add(buildMetric()); | 5147 o.add(buildMetric()); |
| 5148 o.add(buildMetric()); | 5148 o.add(buildMetric()); |
| 5149 return o; | 5149 return o; |
| 5150 } | 5150 } |
| 5151 | 5151 |
| 5152 checkUnnamed290(core.List<api.Metric> o) { | 5152 checkUnnamed305(core.List<api.Metric> o) { |
| 5153 unittest.expect(o, unittest.hasLength(2)); | 5153 unittest.expect(o, unittest.hasLength(2)); |
| 5154 checkMetric(o[0]); | 5154 checkMetric(o[0]); |
| 5155 checkMetric(o[1]); | 5155 checkMetric(o[1]); |
| 5156 } | 5156 } |
| 5157 | 5157 |
| 5158 buildUnnamed291() { | 5158 buildUnnamed306() { |
| 5159 var o = new core.List<api.Dimension>(); | 5159 var o = new core.List<api.Dimension>(); |
| 5160 o.add(buildDimension()); | 5160 o.add(buildDimension()); |
| 5161 o.add(buildDimension()); | 5161 o.add(buildDimension()); |
| 5162 return o; | 5162 return o; |
| 5163 } | 5163 } |
| 5164 | 5164 |
| 5165 checkUnnamed291(core.List<api.Dimension> o) { | 5165 checkUnnamed306(core.List<api.Dimension> o) { |
| 5166 unittest.expect(o, unittest.hasLength(2)); | 5166 unittest.expect(o, unittest.hasLength(2)); |
| 5167 checkDimension(o[0]); | 5167 checkDimension(o[0]); |
| 5168 checkDimension(o[1]); | 5168 checkDimension(o[1]); |
| 5169 } | 5169 } |
| 5170 | 5170 |
| 5171 core.int buildCounterPathToConversionReportCompatibleFields = 0; | 5171 core.int buildCounterPathToConversionReportCompatibleFields = 0; |
| 5172 buildPathToConversionReportCompatibleFields() { | 5172 buildPathToConversionReportCompatibleFields() { |
| 5173 var o = new api.PathToConversionReportCompatibleFields(); | 5173 var o = new api.PathToConversionReportCompatibleFields(); |
| 5174 buildCounterPathToConversionReportCompatibleFields++; | 5174 buildCounterPathToConversionReportCompatibleFields++; |
| 5175 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5175 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5176 o.conversionDimensions = buildUnnamed288(); | 5176 o.conversionDimensions = buildUnnamed303(); |
| 5177 o.customFloodlightVariables = buildUnnamed289(); | 5177 o.customFloodlightVariables = buildUnnamed304(); |
| 5178 o.kind = "foo"; | 5178 o.kind = "foo"; |
| 5179 o.metrics = buildUnnamed290(); | 5179 o.metrics = buildUnnamed305(); |
| 5180 o.perInteractionDimensions = buildUnnamed291(); | 5180 o.perInteractionDimensions = buildUnnamed306(); |
| 5181 } | 5181 } |
| 5182 buildCounterPathToConversionReportCompatibleFields--; | 5182 buildCounterPathToConversionReportCompatibleFields--; |
| 5183 return o; | 5183 return o; |
| 5184 } | 5184 } |
| 5185 | 5185 |
| 5186 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { | 5186 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { |
| 5187 buildCounterPathToConversionReportCompatibleFields++; | 5187 buildCounterPathToConversionReportCompatibleFields++; |
| 5188 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5188 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5189 checkUnnamed288(o.conversionDimensions); | 5189 checkUnnamed303(o.conversionDimensions); |
| 5190 checkUnnamed289(o.customFloodlightVariables); | 5190 checkUnnamed304(o.customFloodlightVariables); |
| 5191 unittest.expect(o.kind, unittest.equals('foo')); | 5191 unittest.expect(o.kind, unittest.equals('foo')); |
| 5192 checkUnnamed290(o.metrics); | 5192 checkUnnamed305(o.metrics); |
| 5193 checkUnnamed291(o.perInteractionDimensions); | 5193 checkUnnamed306(o.perInteractionDimensions); |
| 5194 } | 5194 } |
| 5195 buildCounterPathToConversionReportCompatibleFields--; | 5195 buildCounterPathToConversionReportCompatibleFields--; |
| 5196 } | 5196 } |
| 5197 | 5197 |
| 5198 buildUnnamed292() { | 5198 buildUnnamed307() { |
| 5199 var o = new core.List<core.String>(); | 5199 var o = new core.List<core.String>(); |
| 5200 o.add("foo"); | 5200 o.add("foo"); |
| 5201 o.add("foo"); | 5201 o.add("foo"); |
| 5202 return o; | 5202 return o; |
| 5203 } | 5203 } |
| 5204 | 5204 |
| 5205 checkUnnamed292(core.List<core.String> o) { | 5205 checkUnnamed307(core.List<core.String> o) { |
| 5206 unittest.expect(o, unittest.hasLength(2)); | 5206 unittest.expect(o, unittest.hasLength(2)); |
| 5207 unittest.expect(o[0], unittest.equals('foo')); | 5207 unittest.expect(o[0], unittest.equals('foo')); |
| 5208 unittest.expect(o[1], unittest.equals('foo')); | 5208 unittest.expect(o[1], unittest.equals('foo')); |
| 5209 } | 5209 } |
| 5210 | 5210 |
| 5211 core.int buildCounterPlacement = 0; | 5211 core.int buildCounterPlacement = 0; |
| 5212 buildPlacement() { | 5212 buildPlacement() { |
| 5213 var o = new api.Placement(); | 5213 var o = new api.Placement(); |
| 5214 buildCounterPlacement++; | 5214 buildCounterPlacement++; |
| 5215 if (buildCounterPlacement < 3) { | 5215 if (buildCounterPlacement < 3) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5240 o.placementStrategyId = "foo"; | 5240 o.placementStrategyId = "foo"; |
| 5241 o.pricingSchedule = buildPricingSchedule(); | 5241 o.pricingSchedule = buildPricingSchedule(); |
| 5242 o.primary = true; | 5242 o.primary = true; |
| 5243 o.publisherUpdateInfo = buildLastModifiedInfo(); | 5243 o.publisherUpdateInfo = buildLastModifiedInfo(); |
| 5244 o.siteId = "foo"; | 5244 o.siteId = "foo"; |
| 5245 o.siteIdDimensionValue = buildDimensionValue(); | 5245 o.siteIdDimensionValue = buildDimensionValue(); |
| 5246 o.size = buildSize(); | 5246 o.size = buildSize(); |
| 5247 o.sslRequired = true; | 5247 o.sslRequired = true; |
| 5248 o.status = "foo"; | 5248 o.status = "foo"; |
| 5249 o.subaccountId = "foo"; | 5249 o.subaccountId = "foo"; |
| 5250 o.tagFormats = buildUnnamed292(); | 5250 o.tagFormats = buildUnnamed307(); |
| 5251 o.tagSetting = buildTagSetting(); | 5251 o.tagSetting = buildTagSetting(); |
| 5252 } | 5252 } |
| 5253 buildCounterPlacement--; | 5253 buildCounterPlacement--; |
| 5254 return o; | 5254 return o; |
| 5255 } | 5255 } |
| 5256 | 5256 |
| 5257 checkPlacement(api.Placement o) { | 5257 checkPlacement(api.Placement o) { |
| 5258 buildCounterPlacement++; | 5258 buildCounterPlacement++; |
| 5259 if (buildCounterPlacement < 3) { | 5259 if (buildCounterPlacement < 3) { |
| 5260 unittest.expect(o.accountId, unittest.equals('foo')); | 5260 unittest.expect(o.accountId, unittest.equals('foo')); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 5284 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5284 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5285 checkPricingSchedule(o.pricingSchedule); | 5285 checkPricingSchedule(o.pricingSchedule); |
| 5286 unittest.expect(o.primary, unittest.isTrue); | 5286 unittest.expect(o.primary, unittest.isTrue); |
| 5287 checkLastModifiedInfo(o.publisherUpdateInfo); | 5287 checkLastModifiedInfo(o.publisherUpdateInfo); |
| 5288 unittest.expect(o.siteId, unittest.equals('foo')); | 5288 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5289 checkDimensionValue(o.siteIdDimensionValue); | 5289 checkDimensionValue(o.siteIdDimensionValue); |
| 5290 checkSize(o.size); | 5290 checkSize(o.size); |
| 5291 unittest.expect(o.sslRequired, unittest.isTrue); | 5291 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5292 unittest.expect(o.status, unittest.equals('foo')); | 5292 unittest.expect(o.status, unittest.equals('foo')); |
| 5293 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5293 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5294 checkUnnamed292(o.tagFormats); | 5294 checkUnnamed307(o.tagFormats); |
| 5295 checkTagSetting(o.tagSetting); | 5295 checkTagSetting(o.tagSetting); |
| 5296 } | 5296 } |
| 5297 buildCounterPlacement--; | 5297 buildCounterPlacement--; |
| 5298 } | 5298 } |
| 5299 | 5299 |
| 5300 core.int buildCounterPlacementAssignment = 0; | 5300 core.int buildCounterPlacementAssignment = 0; |
| 5301 buildPlacementAssignment() { | 5301 buildPlacementAssignment() { |
| 5302 var o = new api.PlacementAssignment(); | 5302 var o = new api.PlacementAssignment(); |
| 5303 buildCounterPlacementAssignment++; | 5303 buildCounterPlacementAssignment++; |
| 5304 if (buildCounterPlacementAssignment < 3) { | 5304 if (buildCounterPlacementAssignment < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 5315 buildCounterPlacementAssignment++; | 5315 buildCounterPlacementAssignment++; |
| 5316 if (buildCounterPlacementAssignment < 3) { | 5316 if (buildCounterPlacementAssignment < 3) { |
| 5317 unittest.expect(o.active, unittest.isTrue); | 5317 unittest.expect(o.active, unittest.isTrue); |
| 5318 unittest.expect(o.placementId, unittest.equals('foo')); | 5318 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5319 checkDimensionValue(o.placementIdDimensionValue); | 5319 checkDimensionValue(o.placementIdDimensionValue); |
| 5320 unittest.expect(o.sslRequired, unittest.isTrue); | 5320 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5321 } | 5321 } |
| 5322 buildCounterPlacementAssignment--; | 5322 buildCounterPlacementAssignment--; |
| 5323 } | 5323 } |
| 5324 | 5324 |
| 5325 buildUnnamed293() { | 5325 buildUnnamed308() { |
| 5326 var o = new core.List<core.String>(); | 5326 var o = new core.List<core.String>(); |
| 5327 o.add("foo"); | 5327 o.add("foo"); |
| 5328 o.add("foo"); | 5328 o.add("foo"); |
| 5329 return o; | 5329 return o; |
| 5330 } | 5330 } |
| 5331 | 5331 |
| 5332 checkUnnamed293(core.List<core.String> o) { | 5332 checkUnnamed308(core.List<core.String> o) { |
| 5333 unittest.expect(o, unittest.hasLength(2)); | 5333 unittest.expect(o, unittest.hasLength(2)); |
| 5334 unittest.expect(o[0], unittest.equals('foo')); | 5334 unittest.expect(o[0], unittest.equals('foo')); |
| 5335 unittest.expect(o[1], unittest.equals('foo')); | 5335 unittest.expect(o[1], unittest.equals('foo')); |
| 5336 } | 5336 } |
| 5337 | 5337 |
| 5338 core.int buildCounterPlacementGroup = 0; | 5338 core.int buildCounterPlacementGroup = 0; |
| 5339 buildPlacementGroup() { | 5339 buildPlacementGroup() { |
| 5340 var o = new api.PlacementGroup(); | 5340 var o = new api.PlacementGroup(); |
| 5341 buildCounterPlacementGroup++; | 5341 buildCounterPlacementGroup++; |
| 5342 if (buildCounterPlacementGroup < 3) { | 5342 if (buildCounterPlacementGroup < 3) { |
| 5343 o.accountId = "foo"; | 5343 o.accountId = "foo"; |
| 5344 o.advertiserId = "foo"; | 5344 o.advertiserId = "foo"; |
| 5345 o.advertiserIdDimensionValue = buildDimensionValue(); | 5345 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 5346 o.archived = true; | 5346 o.archived = true; |
| 5347 o.campaignId = "foo"; | 5347 o.campaignId = "foo"; |
| 5348 o.campaignIdDimensionValue = buildDimensionValue(); | 5348 o.campaignIdDimensionValue = buildDimensionValue(); |
| 5349 o.childPlacementIds = buildUnnamed293(); | 5349 o.childPlacementIds = buildUnnamed308(); |
| 5350 o.comment = "foo"; | 5350 o.comment = "foo"; |
| 5351 o.contentCategoryId = "foo"; | 5351 o.contentCategoryId = "foo"; |
| 5352 o.createInfo = buildLastModifiedInfo(); | 5352 o.createInfo = buildLastModifiedInfo(); |
| 5353 o.directorySiteId = "foo"; | 5353 o.directorySiteId = "foo"; |
| 5354 o.directorySiteIdDimensionValue = buildDimensionValue(); | 5354 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 5355 o.externalId = "foo"; | 5355 o.externalId = "foo"; |
| 5356 o.id = "foo"; | 5356 o.id = "foo"; |
| 5357 o.idDimensionValue = buildDimensionValue(); | 5357 o.idDimensionValue = buildDimensionValue(); |
| 5358 o.kind = "foo"; | 5358 o.kind = "foo"; |
| 5359 o.lastModifiedInfo = buildLastModifiedInfo(); | 5359 o.lastModifiedInfo = buildLastModifiedInfo(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 5373 | 5373 |
| 5374 checkPlacementGroup(api.PlacementGroup o) { | 5374 checkPlacementGroup(api.PlacementGroup o) { |
| 5375 buildCounterPlacementGroup++; | 5375 buildCounterPlacementGroup++; |
| 5376 if (buildCounterPlacementGroup < 3) { | 5376 if (buildCounterPlacementGroup < 3) { |
| 5377 unittest.expect(o.accountId, unittest.equals('foo')); | 5377 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5378 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5378 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5379 checkDimensionValue(o.advertiserIdDimensionValue); | 5379 checkDimensionValue(o.advertiserIdDimensionValue); |
| 5380 unittest.expect(o.archived, unittest.isTrue); | 5380 unittest.expect(o.archived, unittest.isTrue); |
| 5381 unittest.expect(o.campaignId, unittest.equals('foo')); | 5381 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 5382 checkDimensionValue(o.campaignIdDimensionValue); | 5382 checkDimensionValue(o.campaignIdDimensionValue); |
| 5383 checkUnnamed293(o.childPlacementIds); | 5383 checkUnnamed308(o.childPlacementIds); |
| 5384 unittest.expect(o.comment, unittest.equals('foo')); | 5384 unittest.expect(o.comment, unittest.equals('foo')); |
| 5385 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 5385 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 5386 checkLastModifiedInfo(o.createInfo); | 5386 checkLastModifiedInfo(o.createInfo); |
| 5387 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 5387 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 5388 checkDimensionValue(o.directorySiteIdDimensionValue); | 5388 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 5389 unittest.expect(o.externalId, unittest.equals('foo')); | 5389 unittest.expect(o.externalId, unittest.equals('foo')); |
| 5390 unittest.expect(o.id, unittest.equals('foo')); | 5390 unittest.expect(o.id, unittest.equals('foo')); |
| 5391 checkDimensionValue(o.idDimensionValue); | 5391 checkDimensionValue(o.idDimensionValue); |
| 5392 unittest.expect(o.kind, unittest.equals('foo')); | 5392 unittest.expect(o.kind, unittest.equals('foo')); |
| 5393 checkLastModifiedInfo(o.lastModifiedInfo); | 5393 checkLastModifiedInfo(o.lastModifiedInfo); |
| 5394 unittest.expect(o.name, unittest.equals('foo')); | 5394 unittest.expect(o.name, unittest.equals('foo')); |
| 5395 unittest.expect(o.placementGroupType, unittest.equals('foo')); | 5395 unittest.expect(o.placementGroupType, unittest.equals('foo')); |
| 5396 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5396 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5397 checkPricingSchedule(o.pricingSchedule); | 5397 checkPricingSchedule(o.pricingSchedule); |
| 5398 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); | 5398 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); |
| 5399 checkDimensionValue(o.primaryPlacementIdDimensionValue); | 5399 checkDimensionValue(o.primaryPlacementIdDimensionValue); |
| 5400 unittest.expect(o.siteId, unittest.equals('foo')); | 5400 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5401 checkDimensionValue(o.siteIdDimensionValue); | 5401 checkDimensionValue(o.siteIdDimensionValue); |
| 5402 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5402 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5403 } | 5403 } |
| 5404 buildCounterPlacementGroup--; | 5404 buildCounterPlacementGroup--; |
| 5405 } | 5405 } |
| 5406 | 5406 |
| 5407 buildUnnamed294() { | 5407 buildUnnamed309() { |
| 5408 var o = new core.List<api.PlacementGroup>(); | 5408 var o = new core.List<api.PlacementGroup>(); |
| 5409 o.add(buildPlacementGroup()); | 5409 o.add(buildPlacementGroup()); |
| 5410 o.add(buildPlacementGroup()); | 5410 o.add(buildPlacementGroup()); |
| 5411 return o; | 5411 return o; |
| 5412 } | 5412 } |
| 5413 | 5413 |
| 5414 checkUnnamed294(core.List<api.PlacementGroup> o) { | 5414 checkUnnamed309(core.List<api.PlacementGroup> o) { |
| 5415 unittest.expect(o, unittest.hasLength(2)); | 5415 unittest.expect(o, unittest.hasLength(2)); |
| 5416 checkPlacementGroup(o[0]); | 5416 checkPlacementGroup(o[0]); |
| 5417 checkPlacementGroup(o[1]); | 5417 checkPlacementGroup(o[1]); |
| 5418 } | 5418 } |
| 5419 | 5419 |
| 5420 core.int buildCounterPlacementGroupsListResponse = 0; | 5420 core.int buildCounterPlacementGroupsListResponse = 0; |
| 5421 buildPlacementGroupsListResponse() { | 5421 buildPlacementGroupsListResponse() { |
| 5422 var o = new api.PlacementGroupsListResponse(); | 5422 var o = new api.PlacementGroupsListResponse(); |
| 5423 buildCounterPlacementGroupsListResponse++; | 5423 buildCounterPlacementGroupsListResponse++; |
| 5424 if (buildCounterPlacementGroupsListResponse < 3) { | 5424 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5425 o.kind = "foo"; | 5425 o.kind = "foo"; |
| 5426 o.nextPageToken = "foo"; | 5426 o.nextPageToken = "foo"; |
| 5427 o.placementGroups = buildUnnamed294(); | 5427 o.placementGroups = buildUnnamed309(); |
| 5428 } | 5428 } |
| 5429 buildCounterPlacementGroupsListResponse--; | 5429 buildCounterPlacementGroupsListResponse--; |
| 5430 return o; | 5430 return o; |
| 5431 } | 5431 } |
| 5432 | 5432 |
| 5433 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { | 5433 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { |
| 5434 buildCounterPlacementGroupsListResponse++; | 5434 buildCounterPlacementGroupsListResponse++; |
| 5435 if (buildCounterPlacementGroupsListResponse < 3) { | 5435 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5436 unittest.expect(o.kind, unittest.equals('foo')); | 5436 unittest.expect(o.kind, unittest.equals('foo')); |
| 5437 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5437 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5438 checkUnnamed294(o.placementGroups); | 5438 checkUnnamed309(o.placementGroups); |
| 5439 } | 5439 } |
| 5440 buildCounterPlacementGroupsListResponse--; | 5440 buildCounterPlacementGroupsListResponse--; |
| 5441 } | 5441 } |
| 5442 | 5442 |
| 5443 buildUnnamed295() { | 5443 buildUnnamed310() { |
| 5444 var o = new core.List<api.PlacementStrategy>(); | 5444 var o = new core.List<api.PlacementStrategy>(); |
| 5445 o.add(buildPlacementStrategy()); | 5445 o.add(buildPlacementStrategy()); |
| 5446 o.add(buildPlacementStrategy()); | 5446 o.add(buildPlacementStrategy()); |
| 5447 return o; | 5447 return o; |
| 5448 } | 5448 } |
| 5449 | 5449 |
| 5450 checkUnnamed295(core.List<api.PlacementStrategy> o) { | 5450 checkUnnamed310(core.List<api.PlacementStrategy> o) { |
| 5451 unittest.expect(o, unittest.hasLength(2)); | 5451 unittest.expect(o, unittest.hasLength(2)); |
| 5452 checkPlacementStrategy(o[0]); | 5452 checkPlacementStrategy(o[0]); |
| 5453 checkPlacementStrategy(o[1]); | 5453 checkPlacementStrategy(o[1]); |
| 5454 } | 5454 } |
| 5455 | 5455 |
| 5456 core.int buildCounterPlacementStrategiesListResponse = 0; | 5456 core.int buildCounterPlacementStrategiesListResponse = 0; |
| 5457 buildPlacementStrategiesListResponse() { | 5457 buildPlacementStrategiesListResponse() { |
| 5458 var o = new api.PlacementStrategiesListResponse(); | 5458 var o = new api.PlacementStrategiesListResponse(); |
| 5459 buildCounterPlacementStrategiesListResponse++; | 5459 buildCounterPlacementStrategiesListResponse++; |
| 5460 if (buildCounterPlacementStrategiesListResponse < 3) { | 5460 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5461 o.kind = "foo"; | 5461 o.kind = "foo"; |
| 5462 o.nextPageToken = "foo"; | 5462 o.nextPageToken = "foo"; |
| 5463 o.placementStrategies = buildUnnamed295(); | 5463 o.placementStrategies = buildUnnamed310(); |
| 5464 } | 5464 } |
| 5465 buildCounterPlacementStrategiesListResponse--; | 5465 buildCounterPlacementStrategiesListResponse--; |
| 5466 return o; | 5466 return o; |
| 5467 } | 5467 } |
| 5468 | 5468 |
| 5469 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { | 5469 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { |
| 5470 buildCounterPlacementStrategiesListResponse++; | 5470 buildCounterPlacementStrategiesListResponse++; |
| 5471 if (buildCounterPlacementStrategiesListResponse < 3) { | 5471 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5472 unittest.expect(o.kind, unittest.equals('foo')); | 5472 unittest.expect(o.kind, unittest.equals('foo')); |
| 5473 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5473 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5474 checkUnnamed295(o.placementStrategies); | 5474 checkUnnamed310(o.placementStrategies); |
| 5475 } | 5475 } |
| 5476 buildCounterPlacementStrategiesListResponse--; | 5476 buildCounterPlacementStrategiesListResponse--; |
| 5477 } | 5477 } |
| 5478 | 5478 |
| 5479 core.int buildCounterPlacementStrategy = 0; | 5479 core.int buildCounterPlacementStrategy = 0; |
| 5480 buildPlacementStrategy() { | 5480 buildPlacementStrategy() { |
| 5481 var o = new api.PlacementStrategy(); | 5481 var o = new api.PlacementStrategy(); |
| 5482 buildCounterPlacementStrategy++; | 5482 buildCounterPlacementStrategy++; |
| 5483 if (buildCounterPlacementStrategy < 3) { | 5483 if (buildCounterPlacementStrategy < 3) { |
| 5484 o.accountId = "foo"; | 5484 o.accountId = "foo"; |
| 5485 o.id = "foo"; | 5485 o.id = "foo"; |
| 5486 o.kind = "foo"; | 5486 o.kind = "foo"; |
| 5487 o.name = "foo"; | 5487 o.name = "foo"; |
| 5488 } | 5488 } |
| 5489 buildCounterPlacementStrategy--; | 5489 buildCounterPlacementStrategy--; |
| 5490 return o; | 5490 return o; |
| 5491 } | 5491 } |
| 5492 | 5492 |
| 5493 checkPlacementStrategy(api.PlacementStrategy o) { | 5493 checkPlacementStrategy(api.PlacementStrategy o) { |
| 5494 buildCounterPlacementStrategy++; | 5494 buildCounterPlacementStrategy++; |
| 5495 if (buildCounterPlacementStrategy < 3) { | 5495 if (buildCounterPlacementStrategy < 3) { |
| 5496 unittest.expect(o.accountId, unittest.equals('foo')); | 5496 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5497 unittest.expect(o.id, unittest.equals('foo')); | 5497 unittest.expect(o.id, unittest.equals('foo')); |
| 5498 unittest.expect(o.kind, unittest.equals('foo')); | 5498 unittest.expect(o.kind, unittest.equals('foo')); |
| 5499 unittest.expect(o.name, unittest.equals('foo')); | 5499 unittest.expect(o.name, unittest.equals('foo')); |
| 5500 } | 5500 } |
| 5501 buildCounterPlacementStrategy--; | 5501 buildCounterPlacementStrategy--; |
| 5502 } | 5502 } |
| 5503 | 5503 |
| 5504 buildUnnamed296() { | 5504 buildUnnamed311() { |
| 5505 var o = new core.List<api.TagData>(); | 5505 var o = new core.List<api.TagData>(); |
| 5506 o.add(buildTagData()); | 5506 o.add(buildTagData()); |
| 5507 o.add(buildTagData()); | 5507 o.add(buildTagData()); |
| 5508 return o; | 5508 return o; |
| 5509 } | 5509 } |
| 5510 | 5510 |
| 5511 checkUnnamed296(core.List<api.TagData> o) { | 5511 checkUnnamed311(core.List<api.TagData> o) { |
| 5512 unittest.expect(o, unittest.hasLength(2)); | 5512 unittest.expect(o, unittest.hasLength(2)); |
| 5513 checkTagData(o[0]); | 5513 checkTagData(o[0]); |
| 5514 checkTagData(o[1]); | 5514 checkTagData(o[1]); |
| 5515 } | 5515 } |
| 5516 | 5516 |
| 5517 core.int buildCounterPlacementTag = 0; | 5517 core.int buildCounterPlacementTag = 0; |
| 5518 buildPlacementTag() { | 5518 buildPlacementTag() { |
| 5519 var o = new api.PlacementTag(); | 5519 var o = new api.PlacementTag(); |
| 5520 buildCounterPlacementTag++; | 5520 buildCounterPlacementTag++; |
| 5521 if (buildCounterPlacementTag < 3) { | 5521 if (buildCounterPlacementTag < 3) { |
| 5522 o.placementId = "foo"; | 5522 o.placementId = "foo"; |
| 5523 o.tagDatas = buildUnnamed296(); | 5523 o.tagDatas = buildUnnamed311(); |
| 5524 } | 5524 } |
| 5525 buildCounterPlacementTag--; | 5525 buildCounterPlacementTag--; |
| 5526 return o; | 5526 return o; |
| 5527 } | 5527 } |
| 5528 | 5528 |
| 5529 checkPlacementTag(api.PlacementTag o) { | 5529 checkPlacementTag(api.PlacementTag o) { |
| 5530 buildCounterPlacementTag++; | 5530 buildCounterPlacementTag++; |
| 5531 if (buildCounterPlacementTag < 3) { | 5531 if (buildCounterPlacementTag < 3) { |
| 5532 unittest.expect(o.placementId, unittest.equals('foo')); | 5532 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5533 checkUnnamed296(o.tagDatas); | 5533 checkUnnamed311(o.tagDatas); |
| 5534 } | 5534 } |
| 5535 buildCounterPlacementTag--; | 5535 buildCounterPlacementTag--; |
| 5536 } | 5536 } |
| 5537 | 5537 |
| 5538 buildUnnamed297() { | 5538 buildUnnamed312() { |
| 5539 var o = new core.List<api.PlacementTag>(); | 5539 var o = new core.List<api.PlacementTag>(); |
| 5540 o.add(buildPlacementTag()); | 5540 o.add(buildPlacementTag()); |
| 5541 o.add(buildPlacementTag()); | 5541 o.add(buildPlacementTag()); |
| 5542 return o; | 5542 return o; |
| 5543 } | 5543 } |
| 5544 | 5544 |
| 5545 checkUnnamed297(core.List<api.PlacementTag> o) { | 5545 checkUnnamed312(core.List<api.PlacementTag> o) { |
| 5546 unittest.expect(o, unittest.hasLength(2)); | 5546 unittest.expect(o, unittest.hasLength(2)); |
| 5547 checkPlacementTag(o[0]); | 5547 checkPlacementTag(o[0]); |
| 5548 checkPlacementTag(o[1]); | 5548 checkPlacementTag(o[1]); |
| 5549 } | 5549 } |
| 5550 | 5550 |
| 5551 core.int buildCounterPlacementsGenerateTagsResponse = 0; | 5551 core.int buildCounterPlacementsGenerateTagsResponse = 0; |
| 5552 buildPlacementsGenerateTagsResponse() { | 5552 buildPlacementsGenerateTagsResponse() { |
| 5553 var o = new api.PlacementsGenerateTagsResponse(); | 5553 var o = new api.PlacementsGenerateTagsResponse(); |
| 5554 buildCounterPlacementsGenerateTagsResponse++; | 5554 buildCounterPlacementsGenerateTagsResponse++; |
| 5555 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5555 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5556 o.kind = "foo"; | 5556 o.kind = "foo"; |
| 5557 o.placementTags = buildUnnamed297(); | 5557 o.placementTags = buildUnnamed312(); |
| 5558 } | 5558 } |
| 5559 buildCounterPlacementsGenerateTagsResponse--; | 5559 buildCounterPlacementsGenerateTagsResponse--; |
| 5560 return o; | 5560 return o; |
| 5561 } | 5561 } |
| 5562 | 5562 |
| 5563 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { | 5563 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { |
| 5564 buildCounterPlacementsGenerateTagsResponse++; | 5564 buildCounterPlacementsGenerateTagsResponse++; |
| 5565 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5565 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5566 unittest.expect(o.kind, unittest.equals('foo')); | 5566 unittest.expect(o.kind, unittest.equals('foo')); |
| 5567 checkUnnamed297(o.placementTags); | 5567 checkUnnamed312(o.placementTags); |
| 5568 } | 5568 } |
| 5569 buildCounterPlacementsGenerateTagsResponse--; | 5569 buildCounterPlacementsGenerateTagsResponse--; |
| 5570 } | 5570 } |
| 5571 | 5571 |
| 5572 buildUnnamed298() { | 5572 buildUnnamed313() { |
| 5573 var o = new core.List<api.Placement>(); | 5573 var o = new core.List<api.Placement>(); |
| 5574 o.add(buildPlacement()); | 5574 o.add(buildPlacement()); |
| 5575 o.add(buildPlacement()); | 5575 o.add(buildPlacement()); |
| 5576 return o; | 5576 return o; |
| 5577 } | 5577 } |
| 5578 | 5578 |
| 5579 checkUnnamed298(core.List<api.Placement> o) { | 5579 checkUnnamed313(core.List<api.Placement> o) { |
| 5580 unittest.expect(o, unittest.hasLength(2)); | 5580 unittest.expect(o, unittest.hasLength(2)); |
| 5581 checkPlacement(o[0]); | 5581 checkPlacement(o[0]); |
| 5582 checkPlacement(o[1]); | 5582 checkPlacement(o[1]); |
| 5583 } | 5583 } |
| 5584 | 5584 |
| 5585 core.int buildCounterPlacementsListResponse = 0; | 5585 core.int buildCounterPlacementsListResponse = 0; |
| 5586 buildPlacementsListResponse() { | 5586 buildPlacementsListResponse() { |
| 5587 var o = new api.PlacementsListResponse(); | 5587 var o = new api.PlacementsListResponse(); |
| 5588 buildCounterPlacementsListResponse++; | 5588 buildCounterPlacementsListResponse++; |
| 5589 if (buildCounterPlacementsListResponse < 3) { | 5589 if (buildCounterPlacementsListResponse < 3) { |
| 5590 o.kind = "foo"; | 5590 o.kind = "foo"; |
| 5591 o.nextPageToken = "foo"; | 5591 o.nextPageToken = "foo"; |
| 5592 o.placements = buildUnnamed298(); | 5592 o.placements = buildUnnamed313(); |
| 5593 } | 5593 } |
| 5594 buildCounterPlacementsListResponse--; | 5594 buildCounterPlacementsListResponse--; |
| 5595 return o; | 5595 return o; |
| 5596 } | 5596 } |
| 5597 | 5597 |
| 5598 checkPlacementsListResponse(api.PlacementsListResponse o) { | 5598 checkPlacementsListResponse(api.PlacementsListResponse o) { |
| 5599 buildCounterPlacementsListResponse++; | 5599 buildCounterPlacementsListResponse++; |
| 5600 if (buildCounterPlacementsListResponse < 3) { | 5600 if (buildCounterPlacementsListResponse < 3) { |
| 5601 unittest.expect(o.kind, unittest.equals('foo')); | 5601 unittest.expect(o.kind, unittest.equals('foo')); |
| 5602 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5602 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5603 checkUnnamed298(o.placements); | 5603 checkUnnamed313(o.placements); |
| 5604 } | 5604 } |
| 5605 buildCounterPlacementsListResponse--; | 5605 buildCounterPlacementsListResponse--; |
| 5606 } | 5606 } |
| 5607 | 5607 |
| 5608 core.int buildCounterPlatformType = 0; | 5608 core.int buildCounterPlatformType = 0; |
| 5609 buildPlatformType() { | 5609 buildPlatformType() { |
| 5610 var o = new api.PlatformType(); | 5610 var o = new api.PlatformType(); |
| 5611 buildCounterPlatformType++; | 5611 buildCounterPlatformType++; |
| 5612 if (buildCounterPlatformType < 3) { | 5612 if (buildCounterPlatformType < 3) { |
| 5613 o.id = "foo"; | 5613 o.id = "foo"; |
| 5614 o.kind = "foo"; | 5614 o.kind = "foo"; |
| 5615 o.name = "foo"; | 5615 o.name = "foo"; |
| 5616 } | 5616 } |
| 5617 buildCounterPlatformType--; | 5617 buildCounterPlatformType--; |
| 5618 return o; | 5618 return o; |
| 5619 } | 5619 } |
| 5620 | 5620 |
| 5621 checkPlatformType(api.PlatformType o) { | 5621 checkPlatformType(api.PlatformType o) { |
| 5622 buildCounterPlatformType++; | 5622 buildCounterPlatformType++; |
| 5623 if (buildCounterPlatformType < 3) { | 5623 if (buildCounterPlatformType < 3) { |
| 5624 unittest.expect(o.id, unittest.equals('foo')); | 5624 unittest.expect(o.id, unittest.equals('foo')); |
| 5625 unittest.expect(o.kind, unittest.equals('foo')); | 5625 unittest.expect(o.kind, unittest.equals('foo')); |
| 5626 unittest.expect(o.name, unittest.equals('foo')); | 5626 unittest.expect(o.name, unittest.equals('foo')); |
| 5627 } | 5627 } |
| 5628 buildCounterPlatformType--; | 5628 buildCounterPlatformType--; |
| 5629 } | 5629 } |
| 5630 | 5630 |
| 5631 buildUnnamed299() { | 5631 buildUnnamed314() { |
| 5632 var o = new core.List<api.PlatformType>(); | 5632 var o = new core.List<api.PlatformType>(); |
| 5633 o.add(buildPlatformType()); | 5633 o.add(buildPlatformType()); |
| 5634 o.add(buildPlatformType()); | 5634 o.add(buildPlatformType()); |
| 5635 return o; | 5635 return o; |
| 5636 } | 5636 } |
| 5637 | 5637 |
| 5638 checkUnnamed299(core.List<api.PlatformType> o) { | 5638 checkUnnamed314(core.List<api.PlatformType> o) { |
| 5639 unittest.expect(o, unittest.hasLength(2)); | 5639 unittest.expect(o, unittest.hasLength(2)); |
| 5640 checkPlatformType(o[0]); | 5640 checkPlatformType(o[0]); |
| 5641 checkPlatformType(o[1]); | 5641 checkPlatformType(o[1]); |
| 5642 } | 5642 } |
| 5643 | 5643 |
| 5644 core.int buildCounterPlatformTypesListResponse = 0; | 5644 core.int buildCounterPlatformTypesListResponse = 0; |
| 5645 buildPlatformTypesListResponse() { | 5645 buildPlatformTypesListResponse() { |
| 5646 var o = new api.PlatformTypesListResponse(); | 5646 var o = new api.PlatformTypesListResponse(); |
| 5647 buildCounterPlatformTypesListResponse++; | 5647 buildCounterPlatformTypesListResponse++; |
| 5648 if (buildCounterPlatformTypesListResponse < 3) { | 5648 if (buildCounterPlatformTypesListResponse < 3) { |
| 5649 o.kind = "foo"; | 5649 o.kind = "foo"; |
| 5650 o.platformTypes = buildUnnamed299(); | 5650 o.platformTypes = buildUnnamed314(); |
| 5651 } | 5651 } |
| 5652 buildCounterPlatformTypesListResponse--; | 5652 buildCounterPlatformTypesListResponse--; |
| 5653 return o; | 5653 return o; |
| 5654 } | 5654 } |
| 5655 | 5655 |
| 5656 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { | 5656 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { |
| 5657 buildCounterPlatformTypesListResponse++; | 5657 buildCounterPlatformTypesListResponse++; |
| 5658 if (buildCounterPlatformTypesListResponse < 3) { | 5658 if (buildCounterPlatformTypesListResponse < 3) { |
| 5659 unittest.expect(o.kind, unittest.equals('foo')); | 5659 unittest.expect(o.kind, unittest.equals('foo')); |
| 5660 checkUnnamed299(o.platformTypes); | 5660 checkUnnamed314(o.platformTypes); |
| 5661 } | 5661 } |
| 5662 buildCounterPlatformTypesListResponse--; | 5662 buildCounterPlatformTypesListResponse--; |
| 5663 } | 5663 } |
| 5664 | 5664 |
| 5665 core.int buildCounterPopupWindowProperties = 0; | 5665 core.int buildCounterPopupWindowProperties = 0; |
| 5666 buildPopupWindowProperties() { | 5666 buildPopupWindowProperties() { |
| 5667 var o = new api.PopupWindowProperties(); | 5667 var o = new api.PopupWindowProperties(); |
| 5668 buildCounterPopupWindowProperties++; | 5668 buildCounterPopupWindowProperties++; |
| 5669 if (buildCounterPopupWindowProperties < 3) { | 5669 if (buildCounterPopupWindowProperties < 3) { |
| 5670 o.dimension = buildSize(); | 5670 o.dimension = buildSize(); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5717 if (buildCounterPostalCode < 3) { | 5717 if (buildCounterPostalCode < 3) { |
| 5718 unittest.expect(o.code, unittest.equals('foo')); | 5718 unittest.expect(o.code, unittest.equals('foo')); |
| 5719 unittest.expect(o.countryCode, unittest.equals('foo')); | 5719 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 5720 unittest.expect(o.countryDartId, unittest.equals('foo')); | 5720 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 5721 unittest.expect(o.id, unittest.equals('foo')); | 5721 unittest.expect(o.id, unittest.equals('foo')); |
| 5722 unittest.expect(o.kind, unittest.equals('foo')); | 5722 unittest.expect(o.kind, unittest.equals('foo')); |
| 5723 } | 5723 } |
| 5724 buildCounterPostalCode--; | 5724 buildCounterPostalCode--; |
| 5725 } | 5725 } |
| 5726 | 5726 |
| 5727 buildUnnamed300() { | 5727 buildUnnamed315() { |
| 5728 var o = new core.List<api.PostalCode>(); | 5728 var o = new core.List<api.PostalCode>(); |
| 5729 o.add(buildPostalCode()); | 5729 o.add(buildPostalCode()); |
| 5730 o.add(buildPostalCode()); | 5730 o.add(buildPostalCode()); |
| 5731 return o; | 5731 return o; |
| 5732 } | 5732 } |
| 5733 | 5733 |
| 5734 checkUnnamed300(core.List<api.PostalCode> o) { | 5734 checkUnnamed315(core.List<api.PostalCode> o) { |
| 5735 unittest.expect(o, unittest.hasLength(2)); | 5735 unittest.expect(o, unittest.hasLength(2)); |
| 5736 checkPostalCode(o[0]); | 5736 checkPostalCode(o[0]); |
| 5737 checkPostalCode(o[1]); | 5737 checkPostalCode(o[1]); |
| 5738 } | 5738 } |
| 5739 | 5739 |
| 5740 core.int buildCounterPostalCodesListResponse = 0; | 5740 core.int buildCounterPostalCodesListResponse = 0; |
| 5741 buildPostalCodesListResponse() { | 5741 buildPostalCodesListResponse() { |
| 5742 var o = new api.PostalCodesListResponse(); | 5742 var o = new api.PostalCodesListResponse(); |
| 5743 buildCounterPostalCodesListResponse++; | 5743 buildCounterPostalCodesListResponse++; |
| 5744 if (buildCounterPostalCodesListResponse < 3) { | 5744 if (buildCounterPostalCodesListResponse < 3) { |
| 5745 o.kind = "foo"; | 5745 o.kind = "foo"; |
| 5746 o.postalCodes = buildUnnamed300(); | 5746 o.postalCodes = buildUnnamed315(); |
| 5747 } | 5747 } |
| 5748 buildCounterPostalCodesListResponse--; | 5748 buildCounterPostalCodesListResponse--; |
| 5749 return o; | 5749 return o; |
| 5750 } | 5750 } |
| 5751 | 5751 |
| 5752 checkPostalCodesListResponse(api.PostalCodesListResponse o) { | 5752 checkPostalCodesListResponse(api.PostalCodesListResponse o) { |
| 5753 buildCounterPostalCodesListResponse++; | 5753 buildCounterPostalCodesListResponse++; |
| 5754 if (buildCounterPostalCodesListResponse < 3) { | 5754 if (buildCounterPostalCodesListResponse < 3) { |
| 5755 unittest.expect(o.kind, unittest.equals('foo')); | 5755 unittest.expect(o.kind, unittest.equals('foo')); |
| 5756 checkUnnamed300(o.postalCodes); | 5756 checkUnnamed315(o.postalCodes); |
| 5757 } | 5757 } |
| 5758 buildCounterPostalCodesListResponse--; | 5758 buildCounterPostalCodesListResponse--; |
| 5759 } | 5759 } |
| 5760 | 5760 |
| 5761 buildUnnamed301() { | 5761 buildUnnamed316() { |
| 5762 var o = new core.List<api.Flight>(); | 5762 var o = new core.List<api.Flight>(); |
| 5763 o.add(buildFlight()); | 5763 o.add(buildFlight()); |
| 5764 o.add(buildFlight()); | 5764 o.add(buildFlight()); |
| 5765 return o; | 5765 return o; |
| 5766 } | 5766 } |
| 5767 | 5767 |
| 5768 checkUnnamed301(core.List<api.Flight> o) { | 5768 checkUnnamed316(core.List<api.Flight> o) { |
| 5769 unittest.expect(o, unittest.hasLength(2)); | 5769 unittest.expect(o, unittest.hasLength(2)); |
| 5770 checkFlight(o[0]); | 5770 checkFlight(o[0]); |
| 5771 checkFlight(o[1]); | 5771 checkFlight(o[1]); |
| 5772 } | 5772 } |
| 5773 | 5773 |
| 5774 core.int buildCounterPricing = 0; | 5774 core.int buildCounterPricing = 0; |
| 5775 buildPricing() { | 5775 buildPricing() { |
| 5776 var o = new api.Pricing(); | 5776 var o = new api.Pricing(); |
| 5777 buildCounterPricing++; | 5777 buildCounterPricing++; |
| 5778 if (buildCounterPricing < 3) { | 5778 if (buildCounterPricing < 3) { |
| 5779 o.capCostType = "foo"; | 5779 o.capCostType = "foo"; |
| 5780 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5780 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5781 o.flights = buildUnnamed301(); | 5781 o.flights = buildUnnamed316(); |
| 5782 o.groupType = "foo"; | 5782 o.groupType = "foo"; |
| 5783 o.pricingType = "foo"; | 5783 o.pricingType = "foo"; |
| 5784 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5784 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5785 } | 5785 } |
| 5786 buildCounterPricing--; | 5786 buildCounterPricing--; |
| 5787 return o; | 5787 return o; |
| 5788 } | 5788 } |
| 5789 | 5789 |
| 5790 checkPricing(api.Pricing o) { | 5790 checkPricing(api.Pricing o) { |
| 5791 buildCounterPricing++; | 5791 buildCounterPricing++; |
| 5792 if (buildCounterPricing < 3) { | 5792 if (buildCounterPricing < 3) { |
| 5793 unittest.expect(o.capCostType, unittest.equals('foo')); | 5793 unittest.expect(o.capCostType, unittest.equals('foo')); |
| 5794 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5794 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 5795 checkUnnamed301(o.flights); | 5795 checkUnnamed316(o.flights); |
| 5796 unittest.expect(o.groupType, unittest.equals('foo')); | 5796 unittest.expect(o.groupType, unittest.equals('foo')); |
| 5797 unittest.expect(o.pricingType, unittest.equals('foo')); | 5797 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 5798 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5798 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 5799 } | 5799 } |
| 5800 buildCounterPricing--; | 5800 buildCounterPricing--; |
| 5801 } | 5801 } |
| 5802 | 5802 |
| 5803 buildUnnamed302() { | 5803 buildUnnamed317() { |
| 5804 var o = new core.List<api.PricingSchedulePricingPeriod>(); | 5804 var o = new core.List<api.PricingSchedulePricingPeriod>(); |
| 5805 o.add(buildPricingSchedulePricingPeriod()); | 5805 o.add(buildPricingSchedulePricingPeriod()); |
| 5806 o.add(buildPricingSchedulePricingPeriod()); | 5806 o.add(buildPricingSchedulePricingPeriod()); |
| 5807 return o; | 5807 return o; |
| 5808 } | 5808 } |
| 5809 | 5809 |
| 5810 checkUnnamed302(core.List<api.PricingSchedulePricingPeriod> o) { | 5810 checkUnnamed317(core.List<api.PricingSchedulePricingPeriod> o) { |
| 5811 unittest.expect(o, unittest.hasLength(2)); | 5811 unittest.expect(o, unittest.hasLength(2)); |
| 5812 checkPricingSchedulePricingPeriod(o[0]); | 5812 checkPricingSchedulePricingPeriod(o[0]); |
| 5813 checkPricingSchedulePricingPeriod(o[1]); | 5813 checkPricingSchedulePricingPeriod(o[1]); |
| 5814 } | 5814 } |
| 5815 | 5815 |
| 5816 core.int buildCounterPricingSchedule = 0; | 5816 core.int buildCounterPricingSchedule = 0; |
| 5817 buildPricingSchedule() { | 5817 buildPricingSchedule() { |
| 5818 var o = new api.PricingSchedule(); | 5818 var o = new api.PricingSchedule(); |
| 5819 buildCounterPricingSchedule++; | 5819 buildCounterPricingSchedule++; |
| 5820 if (buildCounterPricingSchedule < 3) { | 5820 if (buildCounterPricingSchedule < 3) { |
| 5821 o.capCostOption = "foo"; | 5821 o.capCostOption = "foo"; |
| 5822 o.disregardOverdelivery = true; | 5822 o.disregardOverdelivery = true; |
| 5823 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5823 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5824 o.flighted = true; | 5824 o.flighted = true; |
| 5825 o.floodlightActivityId = "foo"; | 5825 o.floodlightActivityId = "foo"; |
| 5826 o.pricingPeriods = buildUnnamed302(); | 5826 o.pricingPeriods = buildUnnamed317(); |
| 5827 o.pricingType = "foo"; | 5827 o.pricingType = "foo"; |
| 5828 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5828 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5829 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5829 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5830 } | 5830 } |
| 5831 buildCounterPricingSchedule--; | 5831 buildCounterPricingSchedule--; |
| 5832 return o; | 5832 return o; |
| 5833 } | 5833 } |
| 5834 | 5834 |
| 5835 checkPricingSchedule(api.PricingSchedule o) { | 5835 checkPricingSchedule(api.PricingSchedule o) { |
| 5836 buildCounterPricingSchedule++; | 5836 buildCounterPricingSchedule++; |
| 5837 if (buildCounterPricingSchedule < 3) { | 5837 if (buildCounterPricingSchedule < 3) { |
| 5838 unittest.expect(o.capCostOption, unittest.equals('foo')); | 5838 unittest.expect(o.capCostOption, unittest.equals('foo')); |
| 5839 unittest.expect(o.disregardOverdelivery, unittest.isTrue); | 5839 unittest.expect(o.disregardOverdelivery, unittest.isTrue); |
| 5840 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5840 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 5841 unittest.expect(o.flighted, unittest.isTrue); | 5841 unittest.expect(o.flighted, unittest.isTrue); |
| 5842 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 5842 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 5843 checkUnnamed302(o.pricingPeriods); | 5843 checkUnnamed317(o.pricingPeriods); |
| 5844 unittest.expect(o.pricingType, unittest.equals('foo')); | 5844 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 5845 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5845 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 5846 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); | 5846 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); |
| 5847 } | 5847 } |
| 5848 buildCounterPricingSchedule--; | 5848 buildCounterPricingSchedule--; |
| 5849 } | 5849 } |
| 5850 | 5850 |
| 5851 core.int buildCounterPricingSchedulePricingPeriod = 0; | 5851 core.int buildCounterPricingSchedulePricingPeriod = 0; |
| 5852 buildPricingSchedulePricingPeriod() { | 5852 buildPricingSchedulePricingPeriod() { |
| 5853 var o = new api.PricingSchedulePricingPeriod(); | 5853 var o = new api.PricingSchedulePricingPeriod(); |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5927 unittest.expect(o.targetClicks, unittest.equals('foo')); | 5927 unittest.expect(o.targetClicks, unittest.equals('foo')); |
| 5928 unittest.expect(o.targetConversions, unittest.equals('foo')); | 5928 unittest.expect(o.targetConversions, unittest.equals('foo')); |
| 5929 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); | 5929 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); |
| 5930 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); | 5930 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); |
| 5931 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); | 5931 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); |
| 5932 unittest.expect(o.targetImpressions, unittest.equals('foo')); | 5932 unittest.expect(o.targetImpressions, unittest.equals('foo')); |
| 5933 } | 5933 } |
| 5934 buildCounterProject--; | 5934 buildCounterProject--; |
| 5935 } | 5935 } |
| 5936 | 5936 |
| 5937 buildUnnamed303() { | 5937 buildUnnamed318() { |
| 5938 var o = new core.List<api.Project>(); | 5938 var o = new core.List<api.Project>(); |
| 5939 o.add(buildProject()); | 5939 o.add(buildProject()); |
| 5940 o.add(buildProject()); | 5940 o.add(buildProject()); |
| 5941 return o; | 5941 return o; |
| 5942 } | 5942 } |
| 5943 | 5943 |
| 5944 checkUnnamed303(core.List<api.Project> o) { | 5944 checkUnnamed318(core.List<api.Project> o) { |
| 5945 unittest.expect(o, unittest.hasLength(2)); | 5945 unittest.expect(o, unittest.hasLength(2)); |
| 5946 checkProject(o[0]); | 5946 checkProject(o[0]); |
| 5947 checkProject(o[1]); | 5947 checkProject(o[1]); |
| 5948 } | 5948 } |
| 5949 | 5949 |
| 5950 core.int buildCounterProjectsListResponse = 0; | 5950 core.int buildCounterProjectsListResponse = 0; |
| 5951 buildProjectsListResponse() { | 5951 buildProjectsListResponse() { |
| 5952 var o = new api.ProjectsListResponse(); | 5952 var o = new api.ProjectsListResponse(); |
| 5953 buildCounterProjectsListResponse++; | 5953 buildCounterProjectsListResponse++; |
| 5954 if (buildCounterProjectsListResponse < 3) { | 5954 if (buildCounterProjectsListResponse < 3) { |
| 5955 o.kind = "foo"; | 5955 o.kind = "foo"; |
| 5956 o.nextPageToken = "foo"; | 5956 o.nextPageToken = "foo"; |
| 5957 o.projects = buildUnnamed303(); | 5957 o.projects = buildUnnamed318(); |
| 5958 } | 5958 } |
| 5959 buildCounterProjectsListResponse--; | 5959 buildCounterProjectsListResponse--; |
| 5960 return o; | 5960 return o; |
| 5961 } | 5961 } |
| 5962 | 5962 |
| 5963 checkProjectsListResponse(api.ProjectsListResponse o) { | 5963 checkProjectsListResponse(api.ProjectsListResponse o) { |
| 5964 buildCounterProjectsListResponse++; | 5964 buildCounterProjectsListResponse++; |
| 5965 if (buildCounterProjectsListResponse < 3) { | 5965 if (buildCounterProjectsListResponse < 3) { |
| 5966 unittest.expect(o.kind, unittest.equals('foo')); | 5966 unittest.expect(o.kind, unittest.equals('foo')); |
| 5967 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5967 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5968 checkUnnamed303(o.projects); | 5968 checkUnnamed318(o.projects); |
| 5969 } | 5969 } |
| 5970 buildCounterProjectsListResponse--; | 5970 buildCounterProjectsListResponse--; |
| 5971 } | 5971 } |
| 5972 | 5972 |
| 5973 buildUnnamed304() { | 5973 buildUnnamed319() { |
| 5974 var o = new core.List<api.Dimension>(); | 5974 var o = new core.List<api.Dimension>(); |
| 5975 o.add(buildDimension()); | 5975 o.add(buildDimension()); |
| 5976 o.add(buildDimension()); | 5976 o.add(buildDimension()); |
| 5977 return o; | 5977 return o; |
| 5978 } | 5978 } |
| 5979 | 5979 |
| 5980 checkUnnamed304(core.List<api.Dimension> o) { | 5980 checkUnnamed319(core.List<api.Dimension> o) { |
| 5981 unittest.expect(o, unittest.hasLength(2)); | 5981 unittest.expect(o, unittest.hasLength(2)); |
| 5982 checkDimension(o[0]); | 5982 checkDimension(o[0]); |
| 5983 checkDimension(o[1]); | 5983 checkDimension(o[1]); |
| 5984 } | 5984 } |
| 5985 | 5985 |
| 5986 buildUnnamed305() { | 5986 buildUnnamed320() { |
| 5987 var o = new core.List<api.Dimension>(); | 5987 var o = new core.List<api.Dimension>(); |
| 5988 o.add(buildDimension()); | 5988 o.add(buildDimension()); |
| 5989 o.add(buildDimension()); | 5989 o.add(buildDimension()); |
| 5990 return o; | 5990 return o; |
| 5991 } | 5991 } |
| 5992 | 5992 |
| 5993 checkUnnamed305(core.List<api.Dimension> o) { | 5993 checkUnnamed320(core.List<api.Dimension> o) { |
| 5994 unittest.expect(o, unittest.hasLength(2)); | 5994 unittest.expect(o, unittest.hasLength(2)); |
| 5995 checkDimension(o[0]); | 5995 checkDimension(o[0]); |
| 5996 checkDimension(o[1]); | 5996 checkDimension(o[1]); |
| 5997 } | 5997 } |
| 5998 | 5998 |
| 5999 buildUnnamed306() { | 5999 buildUnnamed321() { |
| 6000 var o = new core.List<api.Metric>(); | 6000 var o = new core.List<api.Metric>(); |
| 6001 o.add(buildMetric()); | 6001 o.add(buildMetric()); |
| 6002 o.add(buildMetric()); | 6002 o.add(buildMetric()); |
| 6003 return o; | 6003 return o; |
| 6004 } | 6004 } |
| 6005 | 6005 |
| 6006 checkUnnamed306(core.List<api.Metric> o) { | 6006 checkUnnamed321(core.List<api.Metric> o) { |
| 6007 unittest.expect(o, unittest.hasLength(2)); | 6007 unittest.expect(o, unittest.hasLength(2)); |
| 6008 checkMetric(o[0]); | 6008 checkMetric(o[0]); |
| 6009 checkMetric(o[1]); | 6009 checkMetric(o[1]); |
| 6010 } | 6010 } |
| 6011 | 6011 |
| 6012 buildUnnamed307() { | 6012 buildUnnamed322() { |
| 6013 var o = new core.List<api.Metric>(); | 6013 var o = new core.List<api.Metric>(); |
| 6014 o.add(buildMetric()); | 6014 o.add(buildMetric()); |
| 6015 o.add(buildMetric()); | 6015 o.add(buildMetric()); |
| 6016 return o; | 6016 return o; |
| 6017 } | 6017 } |
| 6018 | 6018 |
| 6019 checkUnnamed307(core.List<api.Metric> o) { | 6019 checkUnnamed322(core.List<api.Metric> o) { |
| 6020 unittest.expect(o, unittest.hasLength(2)); | 6020 unittest.expect(o, unittest.hasLength(2)); |
| 6021 checkMetric(o[0]); | 6021 checkMetric(o[0]); |
| 6022 checkMetric(o[1]); | 6022 checkMetric(o[1]); |
| 6023 } | 6023 } |
| 6024 | 6024 |
| 6025 buildUnnamed308() { | 6025 buildUnnamed323() { |
| 6026 var o = new core.List<api.Metric>(); | 6026 var o = new core.List<api.Metric>(); |
| 6027 o.add(buildMetric()); | 6027 o.add(buildMetric()); |
| 6028 o.add(buildMetric()); | 6028 o.add(buildMetric()); |
| 6029 return o; | 6029 return o; |
| 6030 } | 6030 } |
| 6031 | 6031 |
| 6032 checkUnnamed308(core.List<api.Metric> o) { | 6032 checkUnnamed323(core.List<api.Metric> o) { |
| 6033 unittest.expect(o, unittest.hasLength(2)); | 6033 unittest.expect(o, unittest.hasLength(2)); |
| 6034 checkMetric(o[0]); | 6034 checkMetric(o[0]); |
| 6035 checkMetric(o[1]); | 6035 checkMetric(o[1]); |
| 6036 } | 6036 } |
| 6037 | 6037 |
| 6038 core.int buildCounterReachReportCompatibleFields = 0; | 6038 core.int buildCounterReachReportCompatibleFields = 0; |
| 6039 buildReachReportCompatibleFields() { | 6039 buildReachReportCompatibleFields() { |
| 6040 var o = new api.ReachReportCompatibleFields(); | 6040 var o = new api.ReachReportCompatibleFields(); |
| 6041 buildCounterReachReportCompatibleFields++; | 6041 buildCounterReachReportCompatibleFields++; |
| 6042 if (buildCounterReachReportCompatibleFields < 3) { | 6042 if (buildCounterReachReportCompatibleFields < 3) { |
| 6043 o.dimensionFilters = buildUnnamed304(); | 6043 o.dimensionFilters = buildUnnamed319(); |
| 6044 o.dimensions = buildUnnamed305(); | 6044 o.dimensions = buildUnnamed320(); |
| 6045 o.kind = "foo"; | 6045 o.kind = "foo"; |
| 6046 o.metrics = buildUnnamed306(); | 6046 o.metrics = buildUnnamed321(); |
| 6047 o.pivotedActivityMetrics = buildUnnamed307(); | 6047 o.pivotedActivityMetrics = buildUnnamed322(); |
| 6048 o.reachByFrequencyMetrics = buildUnnamed308(); | 6048 o.reachByFrequencyMetrics = buildUnnamed323(); |
| 6049 } | 6049 } |
| 6050 buildCounterReachReportCompatibleFields--; | 6050 buildCounterReachReportCompatibleFields--; |
| 6051 return o; | 6051 return o; |
| 6052 } | 6052 } |
| 6053 | 6053 |
| 6054 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { | 6054 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { |
| 6055 buildCounterReachReportCompatibleFields++; | 6055 buildCounterReachReportCompatibleFields++; |
| 6056 if (buildCounterReachReportCompatibleFields < 3) { | 6056 if (buildCounterReachReportCompatibleFields < 3) { |
| 6057 checkUnnamed304(o.dimensionFilters); | 6057 checkUnnamed319(o.dimensionFilters); |
| 6058 checkUnnamed305(o.dimensions); | 6058 checkUnnamed320(o.dimensions); |
| 6059 unittest.expect(o.kind, unittest.equals('foo')); | 6059 unittest.expect(o.kind, unittest.equals('foo')); |
| 6060 checkUnnamed306(o.metrics); | 6060 checkUnnamed321(o.metrics); |
| 6061 checkUnnamed307(o.pivotedActivityMetrics); | 6061 checkUnnamed322(o.pivotedActivityMetrics); |
| 6062 checkUnnamed308(o.reachByFrequencyMetrics); | 6062 checkUnnamed323(o.reachByFrequencyMetrics); |
| 6063 } | 6063 } |
| 6064 buildCounterReachReportCompatibleFields--; | 6064 buildCounterReachReportCompatibleFields--; |
| 6065 } | 6065 } |
| 6066 | 6066 |
| 6067 core.int buildCounterRecipient = 0; | 6067 core.int buildCounterRecipient = 0; |
| 6068 buildRecipient() { | 6068 buildRecipient() { |
| 6069 var o = new api.Recipient(); | 6069 var o = new api.Recipient(); |
| 6070 buildCounterRecipient++; | 6070 buildCounterRecipient++; |
| 6071 if (buildCounterRecipient < 3) { | 6071 if (buildCounterRecipient < 3) { |
| 6072 o.deliveryType = "foo"; | 6072 o.deliveryType = "foo"; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6109 unittest.expect(o.countryCode, unittest.equals('foo')); | 6109 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 6110 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6110 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 6111 unittest.expect(o.dartId, unittest.equals('foo')); | 6111 unittest.expect(o.dartId, unittest.equals('foo')); |
| 6112 unittest.expect(o.kind, unittest.equals('foo')); | 6112 unittest.expect(o.kind, unittest.equals('foo')); |
| 6113 unittest.expect(o.name, unittest.equals('foo')); | 6113 unittest.expect(o.name, unittest.equals('foo')); |
| 6114 unittest.expect(o.regionCode, unittest.equals('foo')); | 6114 unittest.expect(o.regionCode, unittest.equals('foo')); |
| 6115 } | 6115 } |
| 6116 buildCounterRegion--; | 6116 buildCounterRegion--; |
| 6117 } | 6117 } |
| 6118 | 6118 |
| 6119 buildUnnamed309() { | 6119 buildUnnamed324() { |
| 6120 var o = new core.List<api.Region>(); | 6120 var o = new core.List<api.Region>(); |
| 6121 o.add(buildRegion()); | 6121 o.add(buildRegion()); |
| 6122 o.add(buildRegion()); | 6122 o.add(buildRegion()); |
| 6123 return o; | 6123 return o; |
| 6124 } | 6124 } |
| 6125 | 6125 |
| 6126 checkUnnamed309(core.List<api.Region> o) { | 6126 checkUnnamed324(core.List<api.Region> o) { |
| 6127 unittest.expect(o, unittest.hasLength(2)); | 6127 unittest.expect(o, unittest.hasLength(2)); |
| 6128 checkRegion(o[0]); | 6128 checkRegion(o[0]); |
| 6129 checkRegion(o[1]); | 6129 checkRegion(o[1]); |
| 6130 } | 6130 } |
| 6131 | 6131 |
| 6132 core.int buildCounterRegionsListResponse = 0; | 6132 core.int buildCounterRegionsListResponse = 0; |
| 6133 buildRegionsListResponse() { | 6133 buildRegionsListResponse() { |
| 6134 var o = new api.RegionsListResponse(); | 6134 var o = new api.RegionsListResponse(); |
| 6135 buildCounterRegionsListResponse++; | 6135 buildCounterRegionsListResponse++; |
| 6136 if (buildCounterRegionsListResponse < 3) { | 6136 if (buildCounterRegionsListResponse < 3) { |
| 6137 o.kind = "foo"; | 6137 o.kind = "foo"; |
| 6138 o.regions = buildUnnamed309(); | 6138 o.regions = buildUnnamed324(); |
| 6139 } | 6139 } |
| 6140 buildCounterRegionsListResponse--; | 6140 buildCounterRegionsListResponse--; |
| 6141 return o; | 6141 return o; |
| 6142 } | 6142 } |
| 6143 | 6143 |
| 6144 checkRegionsListResponse(api.RegionsListResponse o) { | 6144 checkRegionsListResponse(api.RegionsListResponse o) { |
| 6145 buildCounterRegionsListResponse++; | 6145 buildCounterRegionsListResponse++; |
| 6146 if (buildCounterRegionsListResponse < 3) { | 6146 if (buildCounterRegionsListResponse < 3) { |
| 6147 unittest.expect(o.kind, unittest.equals('foo')); | 6147 unittest.expect(o.kind, unittest.equals('foo')); |
| 6148 checkUnnamed309(o.regions); | 6148 checkUnnamed324(o.regions); |
| 6149 } | 6149 } |
| 6150 buildCounterRegionsListResponse--; | 6150 buildCounterRegionsListResponse--; |
| 6151 } | 6151 } |
| 6152 | 6152 |
| 6153 core.int buildCounterRemarketingList = 0; | 6153 core.int buildCounterRemarketingList = 0; |
| 6154 buildRemarketingList() { | 6154 buildRemarketingList() { |
| 6155 var o = new api.RemarketingList(); | 6155 var o = new api.RemarketingList(); |
| 6156 buildCounterRemarketingList++; | 6156 buildCounterRemarketingList++; |
| 6157 if (buildCounterRemarketingList < 3) { | 6157 if (buildCounterRemarketingList < 3) { |
| 6158 o.accountId = "foo"; | 6158 o.accountId = "foo"; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 6186 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 6186 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 6187 checkListPopulationRule(o.listPopulationRule); | 6187 checkListPopulationRule(o.listPopulationRule); |
| 6188 unittest.expect(o.listSize, unittest.equals('foo')); | 6188 unittest.expect(o.listSize, unittest.equals('foo')); |
| 6189 unittest.expect(o.listSource, unittest.equals('foo')); | 6189 unittest.expect(o.listSource, unittest.equals('foo')); |
| 6190 unittest.expect(o.name, unittest.equals('foo')); | 6190 unittest.expect(o.name, unittest.equals('foo')); |
| 6191 unittest.expect(o.subaccountId, unittest.equals('foo')); | 6191 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 6192 } | 6192 } |
| 6193 buildCounterRemarketingList--; | 6193 buildCounterRemarketingList--; |
| 6194 } | 6194 } |
| 6195 | 6195 |
| 6196 buildUnnamed310() { | 6196 buildUnnamed325() { |
| 6197 var o = new core.List<core.String>(); | 6197 var o = new core.List<core.String>(); |
| 6198 o.add("foo"); | 6198 o.add("foo"); |
| 6199 o.add("foo"); | 6199 o.add("foo"); |
| 6200 return o; | 6200 return o; |
| 6201 } | 6201 } |
| 6202 | 6202 |
| 6203 checkUnnamed310(core.List<core.String> o) { | 6203 checkUnnamed325(core.List<core.String> o) { |
| 6204 unittest.expect(o, unittest.hasLength(2)); | 6204 unittest.expect(o, unittest.hasLength(2)); |
| 6205 unittest.expect(o[0], unittest.equals('foo')); | 6205 unittest.expect(o[0], unittest.equals('foo')); |
| 6206 unittest.expect(o[1], unittest.equals('foo')); | 6206 unittest.expect(o[1], unittest.equals('foo')); |
| 6207 } | 6207 } |
| 6208 | 6208 |
| 6209 buildUnnamed311() { | 6209 buildUnnamed326() { |
| 6210 var o = new core.List<core.String>(); | 6210 var o = new core.List<core.String>(); |
| 6211 o.add("foo"); | 6211 o.add("foo"); |
| 6212 o.add("foo"); | 6212 o.add("foo"); |
| 6213 return o; | 6213 return o; |
| 6214 } | 6214 } |
| 6215 | 6215 |
| 6216 checkUnnamed311(core.List<core.String> o) { | 6216 checkUnnamed326(core.List<core.String> o) { |
| 6217 unittest.expect(o, unittest.hasLength(2)); | 6217 unittest.expect(o, unittest.hasLength(2)); |
| 6218 unittest.expect(o[0], unittest.equals('foo')); | 6218 unittest.expect(o[0], unittest.equals('foo')); |
| 6219 unittest.expect(o[1], unittest.equals('foo')); | 6219 unittest.expect(o[1], unittest.equals('foo')); |
| 6220 } | 6220 } |
| 6221 | 6221 |
| 6222 core.int buildCounterRemarketingListShare = 0; | 6222 core.int buildCounterRemarketingListShare = 0; |
| 6223 buildRemarketingListShare() { | 6223 buildRemarketingListShare() { |
| 6224 var o = new api.RemarketingListShare(); | 6224 var o = new api.RemarketingListShare(); |
| 6225 buildCounterRemarketingListShare++; | 6225 buildCounterRemarketingListShare++; |
| 6226 if (buildCounterRemarketingListShare < 3) { | 6226 if (buildCounterRemarketingListShare < 3) { |
| 6227 o.kind = "foo"; | 6227 o.kind = "foo"; |
| 6228 o.remarketingListId = "foo"; | 6228 o.remarketingListId = "foo"; |
| 6229 o.sharedAccountIds = buildUnnamed310(); | 6229 o.sharedAccountIds = buildUnnamed325(); |
| 6230 o.sharedAdvertiserIds = buildUnnamed311(); | 6230 o.sharedAdvertiserIds = buildUnnamed326(); |
| 6231 } | 6231 } |
| 6232 buildCounterRemarketingListShare--; | 6232 buildCounterRemarketingListShare--; |
| 6233 return o; | 6233 return o; |
| 6234 } | 6234 } |
| 6235 | 6235 |
| 6236 checkRemarketingListShare(api.RemarketingListShare o) { | 6236 checkRemarketingListShare(api.RemarketingListShare o) { |
| 6237 buildCounterRemarketingListShare++; | 6237 buildCounterRemarketingListShare++; |
| 6238 if (buildCounterRemarketingListShare < 3) { | 6238 if (buildCounterRemarketingListShare < 3) { |
| 6239 unittest.expect(o.kind, unittest.equals('foo')); | 6239 unittest.expect(o.kind, unittest.equals('foo')); |
| 6240 unittest.expect(o.remarketingListId, unittest.equals('foo')); | 6240 unittest.expect(o.remarketingListId, unittest.equals('foo')); |
| 6241 checkUnnamed310(o.sharedAccountIds); | 6241 checkUnnamed325(o.sharedAccountIds); |
| 6242 checkUnnamed311(o.sharedAdvertiserIds); | 6242 checkUnnamed326(o.sharedAdvertiserIds); |
| 6243 } | 6243 } |
| 6244 buildCounterRemarketingListShare--; | 6244 buildCounterRemarketingListShare--; |
| 6245 } | 6245 } |
| 6246 | 6246 |
| 6247 buildUnnamed312() { | 6247 buildUnnamed327() { |
| 6248 var o = new core.List<api.RemarketingList>(); | 6248 var o = new core.List<api.RemarketingList>(); |
| 6249 o.add(buildRemarketingList()); | 6249 o.add(buildRemarketingList()); |
| 6250 o.add(buildRemarketingList()); | 6250 o.add(buildRemarketingList()); |
| 6251 return o; | 6251 return o; |
| 6252 } | 6252 } |
| 6253 | 6253 |
| 6254 checkUnnamed312(core.List<api.RemarketingList> o) { | 6254 checkUnnamed327(core.List<api.RemarketingList> o) { |
| 6255 unittest.expect(o, unittest.hasLength(2)); | 6255 unittest.expect(o, unittest.hasLength(2)); |
| 6256 checkRemarketingList(o[0]); | 6256 checkRemarketingList(o[0]); |
| 6257 checkRemarketingList(o[1]); | 6257 checkRemarketingList(o[1]); |
| 6258 } | 6258 } |
| 6259 | 6259 |
| 6260 core.int buildCounterRemarketingListsListResponse = 0; | 6260 core.int buildCounterRemarketingListsListResponse = 0; |
| 6261 buildRemarketingListsListResponse() { | 6261 buildRemarketingListsListResponse() { |
| 6262 var o = new api.RemarketingListsListResponse(); | 6262 var o = new api.RemarketingListsListResponse(); |
| 6263 buildCounterRemarketingListsListResponse++; | 6263 buildCounterRemarketingListsListResponse++; |
| 6264 if (buildCounterRemarketingListsListResponse < 3) { | 6264 if (buildCounterRemarketingListsListResponse < 3) { |
| 6265 o.kind = "foo"; | 6265 o.kind = "foo"; |
| 6266 o.nextPageToken = "foo"; | 6266 o.nextPageToken = "foo"; |
| 6267 o.remarketingLists = buildUnnamed312(); | 6267 o.remarketingLists = buildUnnamed327(); |
| 6268 } | 6268 } |
| 6269 buildCounterRemarketingListsListResponse--; | 6269 buildCounterRemarketingListsListResponse--; |
| 6270 return o; | 6270 return o; |
| 6271 } | 6271 } |
| 6272 | 6272 |
| 6273 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { | 6273 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { |
| 6274 buildCounterRemarketingListsListResponse++; | 6274 buildCounterRemarketingListsListResponse++; |
| 6275 if (buildCounterRemarketingListsListResponse < 3) { | 6275 if (buildCounterRemarketingListsListResponse < 3) { |
| 6276 unittest.expect(o.kind, unittest.equals('foo')); | 6276 unittest.expect(o.kind, unittest.equals('foo')); |
| 6277 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6277 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6278 checkUnnamed312(o.remarketingLists); | 6278 checkUnnamed327(o.remarketingLists); |
| 6279 } | 6279 } |
| 6280 buildCounterRemarketingListsListResponse--; | 6280 buildCounterRemarketingListsListResponse--; |
| 6281 } | 6281 } |
| 6282 | 6282 |
| 6283 buildUnnamed313() { | 6283 buildUnnamed328() { |
| 6284 var o = new core.List<api.DimensionValue>(); | 6284 var o = new core.List<api.DimensionValue>(); |
| 6285 o.add(buildDimensionValue()); | 6285 o.add(buildDimensionValue()); |
| 6286 o.add(buildDimensionValue()); | 6286 o.add(buildDimensionValue()); |
| 6287 return o; | 6287 return o; |
| 6288 } | 6288 } |
| 6289 | 6289 |
| 6290 checkUnnamed313(core.List<api.DimensionValue> o) { | 6290 checkUnnamed328(core.List<api.DimensionValue> o) { |
| 6291 unittest.expect(o, unittest.hasLength(2)); | 6291 unittest.expect(o, unittest.hasLength(2)); |
| 6292 checkDimensionValue(o[0]); | 6292 checkDimensionValue(o[0]); |
| 6293 checkDimensionValue(o[1]); | 6293 checkDimensionValue(o[1]); |
| 6294 } | 6294 } |
| 6295 | 6295 |
| 6296 buildUnnamed314() { | 6296 buildUnnamed329() { |
| 6297 var o = new core.List<api.SortedDimension>(); | 6297 var o = new core.List<api.SortedDimension>(); |
| 6298 o.add(buildSortedDimension()); | 6298 o.add(buildSortedDimension()); |
| 6299 o.add(buildSortedDimension()); | 6299 o.add(buildSortedDimension()); |
| 6300 return o; | 6300 return o; |
| 6301 } | 6301 } |
| 6302 | 6302 |
| 6303 checkUnnamed314(core.List<api.SortedDimension> o) { | 6303 checkUnnamed329(core.List<api.SortedDimension> o) { |
| 6304 unittest.expect(o, unittest.hasLength(2)); | 6304 unittest.expect(o, unittest.hasLength(2)); |
| 6305 checkSortedDimension(o[0]); | 6305 checkSortedDimension(o[0]); |
| 6306 checkSortedDimension(o[1]); | 6306 checkSortedDimension(o[1]); |
| 6307 } | 6307 } |
| 6308 | 6308 |
| 6309 buildUnnamed315() { | 6309 buildUnnamed330() { |
| 6310 var o = new core.List<core.String>(); | 6310 var o = new core.List<core.String>(); |
| 6311 o.add("foo"); | 6311 o.add("foo"); |
| 6312 o.add("foo"); | 6312 o.add("foo"); |
| 6313 return o; | 6313 return o; |
| 6314 } | 6314 } |
| 6315 | 6315 |
| 6316 checkUnnamed315(core.List<core.String> o) { | 6316 checkUnnamed330(core.List<core.String> o) { |
| 6317 unittest.expect(o, unittest.hasLength(2)); | 6317 unittest.expect(o, unittest.hasLength(2)); |
| 6318 unittest.expect(o[0], unittest.equals('foo')); | 6318 unittest.expect(o[0], unittest.equals('foo')); |
| 6319 unittest.expect(o[1], unittest.equals('foo')); | 6319 unittest.expect(o[1], unittest.equals('foo')); |
| 6320 } | 6320 } |
| 6321 | 6321 |
| 6322 core.int buildCounterReportCriteria = 0; | 6322 core.int buildCounterReportCriteria = 0; |
| 6323 buildReportCriteria() { | 6323 buildReportCriteria() { |
| 6324 var o = new api.ReportCriteria(); | 6324 var o = new api.ReportCriteria(); |
| 6325 buildCounterReportCriteria++; | 6325 buildCounterReportCriteria++; |
| 6326 if (buildCounterReportCriteria < 3) { | 6326 if (buildCounterReportCriteria < 3) { |
| 6327 o.activities = buildActivities(); | 6327 o.activities = buildActivities(); |
| 6328 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6328 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6329 o.dateRange = buildDateRange(); | 6329 o.dateRange = buildDateRange(); |
| 6330 o.dimensionFilters = buildUnnamed313(); | 6330 o.dimensionFilters = buildUnnamed328(); |
| 6331 o.dimensions = buildUnnamed314(); | 6331 o.dimensions = buildUnnamed329(); |
| 6332 o.metricNames = buildUnnamed315(); | 6332 o.metricNames = buildUnnamed330(); |
| 6333 } | 6333 } |
| 6334 buildCounterReportCriteria--; | 6334 buildCounterReportCriteria--; |
| 6335 return o; | 6335 return o; |
| 6336 } | 6336 } |
| 6337 | 6337 |
| 6338 checkReportCriteria(api.ReportCriteria o) { | 6338 checkReportCriteria(api.ReportCriteria o) { |
| 6339 buildCounterReportCriteria++; | 6339 buildCounterReportCriteria++; |
| 6340 if (buildCounterReportCriteria < 3) { | 6340 if (buildCounterReportCriteria < 3) { |
| 6341 checkActivities(o.activities); | 6341 checkActivities(o.activities); |
| 6342 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6342 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6343 checkDateRange(o.dateRange); | 6343 checkDateRange(o.dateRange); |
| 6344 checkUnnamed313(o.dimensionFilters); | 6344 checkUnnamed328(o.dimensionFilters); |
| 6345 checkUnnamed314(o.dimensions); | 6345 checkUnnamed329(o.dimensions); |
| 6346 checkUnnamed315(o.metricNames); | 6346 checkUnnamed330(o.metricNames); |
| 6347 } | 6347 } |
| 6348 buildCounterReportCriteria--; | 6348 buildCounterReportCriteria--; |
| 6349 } | 6349 } |
| 6350 | 6350 |
| 6351 buildUnnamed316() { | 6351 buildUnnamed331() { |
| 6352 var o = new core.List<api.SortedDimension>(); | 6352 var o = new core.List<api.SortedDimension>(); |
| 6353 o.add(buildSortedDimension()); | 6353 o.add(buildSortedDimension()); |
| 6354 o.add(buildSortedDimension()); | 6354 o.add(buildSortedDimension()); |
| 6355 return o; | 6355 return o; |
| 6356 } | 6356 } |
| 6357 | 6357 |
| 6358 checkUnnamed316(core.List<api.SortedDimension> o) { | 6358 checkUnnamed331(core.List<api.SortedDimension> o) { |
| 6359 unittest.expect(o, unittest.hasLength(2)); | 6359 unittest.expect(o, unittest.hasLength(2)); |
| 6360 checkSortedDimension(o[0]); | 6360 checkSortedDimension(o[0]); |
| 6361 checkSortedDimension(o[1]); | 6361 checkSortedDimension(o[1]); |
| 6362 } | 6362 } |
| 6363 | 6363 |
| 6364 buildUnnamed317() { | 6364 buildUnnamed332() { |
| 6365 var o = new core.List<api.DimensionValue>(); | 6365 var o = new core.List<api.DimensionValue>(); |
| 6366 o.add(buildDimensionValue()); | 6366 o.add(buildDimensionValue()); |
| 6367 o.add(buildDimensionValue()); | 6367 o.add(buildDimensionValue()); |
| 6368 return o; | 6368 return o; |
| 6369 } | 6369 } |
| 6370 | 6370 |
| 6371 checkUnnamed317(core.List<api.DimensionValue> o) { | 6371 checkUnnamed332(core.List<api.DimensionValue> o) { |
| 6372 unittest.expect(o, unittest.hasLength(2)); | 6372 unittest.expect(o, unittest.hasLength(2)); |
| 6373 checkDimensionValue(o[0]); | 6373 checkDimensionValue(o[0]); |
| 6374 checkDimensionValue(o[1]); | 6374 checkDimensionValue(o[1]); |
| 6375 } | 6375 } |
| 6376 | 6376 |
| 6377 buildUnnamed318() { | 6377 buildUnnamed333() { |
| 6378 var o = new core.List<core.String>(); | 6378 var o = new core.List<core.String>(); |
| 6379 o.add("foo"); | 6379 o.add("foo"); |
| 6380 o.add("foo"); | 6380 o.add("foo"); |
| 6381 return o; | 6381 return o; |
| 6382 } | 6382 } |
| 6383 | 6383 |
| 6384 checkUnnamed318(core.List<core.String> o) { | 6384 checkUnnamed333(core.List<core.String> o) { |
| 6385 unittest.expect(o, unittest.hasLength(2)); | 6385 unittest.expect(o, unittest.hasLength(2)); |
| 6386 unittest.expect(o[0], unittest.equals('foo')); | 6386 unittest.expect(o[0], unittest.equals('foo')); |
| 6387 unittest.expect(o[1], unittest.equals('foo')); | 6387 unittest.expect(o[1], unittest.equals('foo')); |
| 6388 } | 6388 } |
| 6389 | 6389 |
| 6390 buildUnnamed319() { | 6390 buildUnnamed334() { |
| 6391 var o = new core.List<core.String>(); | 6391 var o = new core.List<core.String>(); |
| 6392 o.add("foo"); | 6392 o.add("foo"); |
| 6393 o.add("foo"); | 6393 o.add("foo"); |
| 6394 return o; | 6394 return o; |
| 6395 } | 6395 } |
| 6396 | 6396 |
| 6397 checkUnnamed319(core.List<core.String> o) { | 6397 checkUnnamed334(core.List<core.String> o) { |
| 6398 unittest.expect(o, unittest.hasLength(2)); | 6398 unittest.expect(o, unittest.hasLength(2)); |
| 6399 unittest.expect(o[0], unittest.equals('foo')); | 6399 unittest.expect(o[0], unittest.equals('foo')); |
| 6400 unittest.expect(o[1], unittest.equals('foo')); | 6400 unittest.expect(o[1], unittest.equals('foo')); |
| 6401 } | 6401 } |
| 6402 | 6402 |
| 6403 core.int buildCounterReportCrossDimensionReachCriteria = 0; | 6403 core.int buildCounterReportCrossDimensionReachCriteria = 0; |
| 6404 buildReportCrossDimensionReachCriteria() { | 6404 buildReportCrossDimensionReachCriteria() { |
| 6405 var o = new api.ReportCrossDimensionReachCriteria(); | 6405 var o = new api.ReportCrossDimensionReachCriteria(); |
| 6406 buildCounterReportCrossDimensionReachCriteria++; | 6406 buildCounterReportCrossDimensionReachCriteria++; |
| 6407 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6407 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6408 o.breakdown = buildUnnamed316(); | 6408 o.breakdown = buildUnnamed331(); |
| 6409 o.dateRange = buildDateRange(); | 6409 o.dateRange = buildDateRange(); |
| 6410 o.dimension = "foo"; | 6410 o.dimension = "foo"; |
| 6411 o.dimensionFilters = buildUnnamed317(); | 6411 o.dimensionFilters = buildUnnamed332(); |
| 6412 o.metricNames = buildUnnamed318(); | 6412 o.metricNames = buildUnnamed333(); |
| 6413 o.overlapMetricNames = buildUnnamed319(); | 6413 o.overlapMetricNames = buildUnnamed334(); |
| 6414 o.pivoted = true; | 6414 o.pivoted = true; |
| 6415 } | 6415 } |
| 6416 buildCounterReportCrossDimensionReachCriteria--; | 6416 buildCounterReportCrossDimensionReachCriteria--; |
| 6417 return o; | 6417 return o; |
| 6418 } | 6418 } |
| 6419 | 6419 |
| 6420 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ | 6420 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ |
| 6421 buildCounterReportCrossDimensionReachCriteria++; | 6421 buildCounterReportCrossDimensionReachCriteria++; |
| 6422 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6422 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6423 checkUnnamed316(o.breakdown); | 6423 checkUnnamed331(o.breakdown); |
| 6424 checkDateRange(o.dateRange); | 6424 checkDateRange(o.dateRange); |
| 6425 unittest.expect(o.dimension, unittest.equals('foo')); | 6425 unittest.expect(o.dimension, unittest.equals('foo')); |
| 6426 checkUnnamed317(o.dimensionFilters); | 6426 checkUnnamed332(o.dimensionFilters); |
| 6427 checkUnnamed318(o.metricNames); | 6427 checkUnnamed333(o.metricNames); |
| 6428 checkUnnamed319(o.overlapMetricNames); | 6428 checkUnnamed334(o.overlapMetricNames); |
| 6429 unittest.expect(o.pivoted, unittest.isTrue); | 6429 unittest.expect(o.pivoted, unittest.isTrue); |
| 6430 } | 6430 } |
| 6431 buildCounterReportCrossDimensionReachCriteria--; | 6431 buildCounterReportCrossDimensionReachCriteria--; |
| 6432 } | 6432 } |
| 6433 | 6433 |
| 6434 buildUnnamed320() { | 6434 buildUnnamed335() { |
| 6435 var o = new core.List<api.Recipient>(); | 6435 var o = new core.List<api.Recipient>(); |
| 6436 o.add(buildRecipient()); | 6436 o.add(buildRecipient()); |
| 6437 o.add(buildRecipient()); | 6437 o.add(buildRecipient()); |
| 6438 return o; | 6438 return o; |
| 6439 } | 6439 } |
| 6440 | 6440 |
| 6441 checkUnnamed320(core.List<api.Recipient> o) { | 6441 checkUnnamed335(core.List<api.Recipient> o) { |
| 6442 unittest.expect(o, unittest.hasLength(2)); | 6442 unittest.expect(o, unittest.hasLength(2)); |
| 6443 checkRecipient(o[0]); | 6443 checkRecipient(o[0]); |
| 6444 checkRecipient(o[1]); | 6444 checkRecipient(o[1]); |
| 6445 } | 6445 } |
| 6446 | 6446 |
| 6447 core.int buildCounterReportDelivery = 0; | 6447 core.int buildCounterReportDelivery = 0; |
| 6448 buildReportDelivery() { | 6448 buildReportDelivery() { |
| 6449 var o = new api.ReportDelivery(); | 6449 var o = new api.ReportDelivery(); |
| 6450 buildCounterReportDelivery++; | 6450 buildCounterReportDelivery++; |
| 6451 if (buildCounterReportDelivery < 3) { | 6451 if (buildCounterReportDelivery < 3) { |
| 6452 o.emailOwner = true; | 6452 o.emailOwner = true; |
| 6453 o.emailOwnerDeliveryType = "foo"; | 6453 o.emailOwnerDeliveryType = "foo"; |
| 6454 o.message = "foo"; | 6454 o.message = "foo"; |
| 6455 o.recipients = buildUnnamed320(); | 6455 o.recipients = buildUnnamed335(); |
| 6456 } | 6456 } |
| 6457 buildCounterReportDelivery--; | 6457 buildCounterReportDelivery--; |
| 6458 return o; | 6458 return o; |
| 6459 } | 6459 } |
| 6460 | 6460 |
| 6461 checkReportDelivery(api.ReportDelivery o) { | 6461 checkReportDelivery(api.ReportDelivery o) { |
| 6462 buildCounterReportDelivery++; | 6462 buildCounterReportDelivery++; |
| 6463 if (buildCounterReportDelivery < 3) { | 6463 if (buildCounterReportDelivery < 3) { |
| 6464 unittest.expect(o.emailOwner, unittest.isTrue); | 6464 unittest.expect(o.emailOwner, unittest.isTrue); |
| 6465 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); | 6465 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); |
| 6466 unittest.expect(o.message, unittest.equals('foo')); | 6466 unittest.expect(o.message, unittest.equals('foo')); |
| 6467 checkUnnamed320(o.recipients); | 6467 checkUnnamed335(o.recipients); |
| 6468 } | 6468 } |
| 6469 buildCounterReportDelivery--; | 6469 buildCounterReportDelivery--; |
| 6470 } | 6470 } |
| 6471 | 6471 |
| 6472 buildUnnamed321() { | 6472 buildUnnamed336() { |
| 6473 var o = new core.List<api.DimensionValue>(); | 6473 var o = new core.List<api.DimensionValue>(); |
| 6474 o.add(buildDimensionValue()); | 6474 o.add(buildDimensionValue()); |
| 6475 o.add(buildDimensionValue()); | 6475 o.add(buildDimensionValue()); |
| 6476 return o; | 6476 return o; |
| 6477 } | 6477 } |
| 6478 | 6478 |
| 6479 checkUnnamed321(core.List<api.DimensionValue> o) { | 6479 checkUnnamed336(core.List<api.DimensionValue> o) { |
| 6480 unittest.expect(o, unittest.hasLength(2)); | 6480 unittest.expect(o, unittest.hasLength(2)); |
| 6481 checkDimensionValue(o[0]); | 6481 checkDimensionValue(o[0]); |
| 6482 checkDimensionValue(o[1]); | 6482 checkDimensionValue(o[1]); |
| 6483 } | 6483 } |
| 6484 | 6484 |
| 6485 buildUnnamed322() { | 6485 buildUnnamed337() { |
| 6486 var o = new core.List<api.DimensionValue>(); | 6486 var o = new core.List<api.DimensionValue>(); |
| 6487 o.add(buildDimensionValue()); | 6487 o.add(buildDimensionValue()); |
| 6488 o.add(buildDimensionValue()); | 6488 o.add(buildDimensionValue()); |
| 6489 return o; | 6489 return o; |
| 6490 } | 6490 } |
| 6491 | 6491 |
| 6492 checkUnnamed322(core.List<api.DimensionValue> o) { | 6492 checkUnnamed337(core.List<api.DimensionValue> o) { |
| 6493 unittest.expect(o, unittest.hasLength(2)); | 6493 unittest.expect(o, unittest.hasLength(2)); |
| 6494 checkDimensionValue(o[0]); | 6494 checkDimensionValue(o[0]); |
| 6495 checkDimensionValue(o[1]); | 6495 checkDimensionValue(o[1]); |
| 6496 } | 6496 } |
| 6497 | 6497 |
| 6498 buildUnnamed323() { | 6498 buildUnnamed338() { |
| 6499 var o = new core.List<api.SortedDimension>(); | 6499 var o = new core.List<api.SortedDimension>(); |
| 6500 o.add(buildSortedDimension()); | 6500 o.add(buildSortedDimension()); |
| 6501 o.add(buildSortedDimension()); | 6501 o.add(buildSortedDimension()); |
| 6502 return o; | 6502 return o; |
| 6503 } | 6503 } |
| 6504 | 6504 |
| 6505 checkUnnamed323(core.List<api.SortedDimension> o) { | 6505 checkUnnamed338(core.List<api.SortedDimension> o) { |
| 6506 unittest.expect(o, unittest.hasLength(2)); | 6506 unittest.expect(o, unittest.hasLength(2)); |
| 6507 checkSortedDimension(o[0]); | 6507 checkSortedDimension(o[0]); |
| 6508 checkSortedDimension(o[1]); | 6508 checkSortedDimension(o[1]); |
| 6509 } | 6509 } |
| 6510 | 6510 |
| 6511 buildUnnamed324() { | 6511 buildUnnamed339() { |
| 6512 var o = new core.List<core.String>(); | 6512 var o = new core.List<core.String>(); |
| 6513 o.add("foo"); | 6513 o.add("foo"); |
| 6514 o.add("foo"); | 6514 o.add("foo"); |
| 6515 return o; | 6515 return o; |
| 6516 } | 6516 } |
| 6517 | 6517 |
| 6518 checkUnnamed324(core.List<core.String> o) { | 6518 checkUnnamed339(core.List<core.String> o) { |
| 6519 unittest.expect(o, unittest.hasLength(2)); | 6519 unittest.expect(o, unittest.hasLength(2)); |
| 6520 unittest.expect(o[0], unittest.equals('foo')); | 6520 unittest.expect(o[0], unittest.equals('foo')); |
| 6521 unittest.expect(o[1], unittest.equals('foo')); | 6521 unittest.expect(o[1], unittest.equals('foo')); |
| 6522 } | 6522 } |
| 6523 | 6523 |
| 6524 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; | 6524 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; |
| 6525 buildReportFloodlightCriteriaReportProperties() { | 6525 buildReportFloodlightCriteriaReportProperties() { |
| 6526 var o = new api.ReportFloodlightCriteriaReportProperties(); | 6526 var o = new api.ReportFloodlightCriteriaReportProperties(); |
| 6527 buildCounterReportFloodlightCriteriaReportProperties++; | 6527 buildCounterReportFloodlightCriteriaReportProperties++; |
| 6528 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { | 6528 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 6542 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); | 6542 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); |
| 6543 } | 6543 } |
| 6544 buildCounterReportFloodlightCriteriaReportProperties--; | 6544 buildCounterReportFloodlightCriteriaReportProperties--; |
| 6545 } | 6545 } |
| 6546 | 6546 |
| 6547 core.int buildCounterReportFloodlightCriteria = 0; | 6547 core.int buildCounterReportFloodlightCriteria = 0; |
| 6548 buildReportFloodlightCriteria() { | 6548 buildReportFloodlightCriteria() { |
| 6549 var o = new api.ReportFloodlightCriteria(); | 6549 var o = new api.ReportFloodlightCriteria(); |
| 6550 buildCounterReportFloodlightCriteria++; | 6550 buildCounterReportFloodlightCriteria++; |
| 6551 if (buildCounterReportFloodlightCriteria < 3) { | 6551 if (buildCounterReportFloodlightCriteria < 3) { |
| 6552 o.customRichMediaEvents = buildUnnamed321(); | 6552 o.customRichMediaEvents = buildUnnamed336(); |
| 6553 o.dateRange = buildDateRange(); | 6553 o.dateRange = buildDateRange(); |
| 6554 o.dimensionFilters = buildUnnamed322(); | 6554 o.dimensionFilters = buildUnnamed337(); |
| 6555 o.dimensions = buildUnnamed323(); | 6555 o.dimensions = buildUnnamed338(); |
| 6556 o.floodlightConfigId = buildDimensionValue(); | 6556 o.floodlightConfigId = buildDimensionValue(); |
| 6557 o.metricNames = buildUnnamed324(); | 6557 o.metricNames = buildUnnamed339(); |
| 6558 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); | 6558 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); |
| 6559 } | 6559 } |
| 6560 buildCounterReportFloodlightCriteria--; | 6560 buildCounterReportFloodlightCriteria--; |
| 6561 return o; | 6561 return o; |
| 6562 } | 6562 } |
| 6563 | 6563 |
| 6564 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { | 6564 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { |
| 6565 buildCounterReportFloodlightCriteria++; | 6565 buildCounterReportFloodlightCriteria++; |
| 6566 if (buildCounterReportFloodlightCriteria < 3) { | 6566 if (buildCounterReportFloodlightCriteria < 3) { |
| 6567 checkUnnamed321(o.customRichMediaEvents); | 6567 checkUnnamed336(o.customRichMediaEvents); |
| 6568 checkDateRange(o.dateRange); | 6568 checkDateRange(o.dateRange); |
| 6569 checkUnnamed322(o.dimensionFilters); | 6569 checkUnnamed337(o.dimensionFilters); |
| 6570 checkUnnamed323(o.dimensions); | 6570 checkUnnamed338(o.dimensions); |
| 6571 checkDimensionValue(o.floodlightConfigId); | 6571 checkDimensionValue(o.floodlightConfigId); |
| 6572 checkUnnamed324(o.metricNames); | 6572 checkUnnamed339(o.metricNames); |
| 6573 checkReportFloodlightCriteriaReportProperties(o.reportProperties); | 6573 checkReportFloodlightCriteriaReportProperties(o.reportProperties); |
| 6574 } | 6574 } |
| 6575 buildCounterReportFloodlightCriteria--; | 6575 buildCounterReportFloodlightCriteria--; |
| 6576 } | 6576 } |
| 6577 | 6577 |
| 6578 buildUnnamed325() { | 6578 buildUnnamed340() { |
| 6579 var o = new core.List<api.DimensionValue>(); | 6579 var o = new core.List<api.DimensionValue>(); |
| 6580 o.add(buildDimensionValue()); | 6580 o.add(buildDimensionValue()); |
| 6581 o.add(buildDimensionValue()); | 6581 o.add(buildDimensionValue()); |
| 6582 return o; | 6582 return o; |
| 6583 } | 6583 } |
| 6584 | 6584 |
| 6585 checkUnnamed325(core.List<api.DimensionValue> o) { | 6585 checkUnnamed340(core.List<api.DimensionValue> o) { |
| 6586 unittest.expect(o, unittest.hasLength(2)); | 6586 unittest.expect(o, unittest.hasLength(2)); |
| 6587 checkDimensionValue(o[0]); | 6587 checkDimensionValue(o[0]); |
| 6588 checkDimensionValue(o[1]); | 6588 checkDimensionValue(o[1]); |
| 6589 } | 6589 } |
| 6590 | 6590 |
| 6591 buildUnnamed326() { | 6591 buildUnnamed341() { |
| 6592 var o = new core.List<api.SortedDimension>(); | 6592 var o = new core.List<api.SortedDimension>(); |
| 6593 o.add(buildSortedDimension()); | 6593 o.add(buildSortedDimension()); |
| 6594 o.add(buildSortedDimension()); | 6594 o.add(buildSortedDimension()); |
| 6595 return o; | 6595 return o; |
| 6596 } | 6596 } |
| 6597 | 6597 |
| 6598 checkUnnamed326(core.List<api.SortedDimension> o) { | 6598 checkUnnamed341(core.List<api.SortedDimension> o) { |
| 6599 unittest.expect(o, unittest.hasLength(2)); | 6599 unittest.expect(o, unittest.hasLength(2)); |
| 6600 checkSortedDimension(o[0]); | 6600 checkSortedDimension(o[0]); |
| 6601 checkSortedDimension(o[1]); | 6601 checkSortedDimension(o[1]); |
| 6602 } | 6602 } |
| 6603 | 6603 |
| 6604 buildUnnamed327() { | 6604 buildUnnamed342() { |
| 6605 var o = new core.List<api.SortedDimension>(); | 6605 var o = new core.List<api.SortedDimension>(); |
| 6606 o.add(buildSortedDimension()); | 6606 o.add(buildSortedDimension()); |
| 6607 o.add(buildSortedDimension()); | 6607 o.add(buildSortedDimension()); |
| 6608 return o; | 6608 return o; |
| 6609 } | 6609 } |
| 6610 | 6610 |
| 6611 checkUnnamed327(core.List<api.SortedDimension> o) { | 6611 checkUnnamed342(core.List<api.SortedDimension> o) { |
| 6612 unittest.expect(o, unittest.hasLength(2)); | 6612 unittest.expect(o, unittest.hasLength(2)); |
| 6613 checkSortedDimension(o[0]); | 6613 checkSortedDimension(o[0]); |
| 6614 checkSortedDimension(o[1]); | 6614 checkSortedDimension(o[1]); |
| 6615 } | 6615 } |
| 6616 | 6616 |
| 6617 buildUnnamed328() { | 6617 buildUnnamed343() { |
| 6618 var o = new core.List<api.DimensionValue>(); | 6618 var o = new core.List<api.DimensionValue>(); |
| 6619 o.add(buildDimensionValue()); | 6619 o.add(buildDimensionValue()); |
| 6620 o.add(buildDimensionValue()); | 6620 o.add(buildDimensionValue()); |
| 6621 return o; | 6621 return o; |
| 6622 } | 6622 } |
| 6623 | 6623 |
| 6624 checkUnnamed328(core.List<api.DimensionValue> o) { | 6624 checkUnnamed343(core.List<api.DimensionValue> o) { |
| 6625 unittest.expect(o, unittest.hasLength(2)); | 6625 unittest.expect(o, unittest.hasLength(2)); |
| 6626 checkDimensionValue(o[0]); | 6626 checkDimensionValue(o[0]); |
| 6627 checkDimensionValue(o[1]); | 6627 checkDimensionValue(o[1]); |
| 6628 } | 6628 } |
| 6629 | 6629 |
| 6630 buildUnnamed329() { | 6630 buildUnnamed344() { |
| 6631 var o = new core.List<core.String>(); | 6631 var o = new core.List<core.String>(); |
| 6632 o.add("foo"); | 6632 o.add("foo"); |
| 6633 o.add("foo"); | 6633 o.add("foo"); |
| 6634 return o; | 6634 return o; |
| 6635 } | 6635 } |
| 6636 | 6636 |
| 6637 checkUnnamed329(core.List<core.String> o) { | 6637 checkUnnamed344(core.List<core.String> o) { |
| 6638 unittest.expect(o, unittest.hasLength(2)); | 6638 unittest.expect(o, unittest.hasLength(2)); |
| 6639 unittest.expect(o[0], unittest.equals('foo')); | 6639 unittest.expect(o[0], unittest.equals('foo')); |
| 6640 unittest.expect(o[1], unittest.equals('foo')); | 6640 unittest.expect(o[1], unittest.equals('foo')); |
| 6641 } | 6641 } |
| 6642 | 6642 |
| 6643 buildUnnamed330() { | 6643 buildUnnamed345() { |
| 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 checkUnnamed330(core.List<api.SortedDimension> o) { | 6650 checkUnnamed345(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 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; | 6656 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; |
| 6657 buildReportPathToConversionCriteriaReportProperties() { | 6657 buildReportPathToConversionCriteriaReportProperties() { |
| 6658 var o = new api.ReportPathToConversionCriteriaReportProperties(); | 6658 var o = new api.ReportPathToConversionCriteriaReportProperties(); |
| 6659 buildCounterReportPathToConversionCriteriaReportProperties++; | 6659 buildCounterReportPathToConversionCriteriaReportProperties++; |
| 6660 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { | 6660 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 6686 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); | 6686 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); |
| 6687 } | 6687 } |
| 6688 buildCounterReportPathToConversionCriteriaReportProperties--; | 6688 buildCounterReportPathToConversionCriteriaReportProperties--; |
| 6689 } | 6689 } |
| 6690 | 6690 |
| 6691 core.int buildCounterReportPathToConversionCriteria = 0; | 6691 core.int buildCounterReportPathToConversionCriteria = 0; |
| 6692 buildReportPathToConversionCriteria() { | 6692 buildReportPathToConversionCriteria() { |
| 6693 var o = new api.ReportPathToConversionCriteria(); | 6693 var o = new api.ReportPathToConversionCriteria(); |
| 6694 buildCounterReportPathToConversionCriteria++; | 6694 buildCounterReportPathToConversionCriteria++; |
| 6695 if (buildCounterReportPathToConversionCriteria < 3) { | 6695 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6696 o.activityFilters = buildUnnamed325(); | 6696 o.activityFilters = buildUnnamed340(); |
| 6697 o.conversionDimensions = buildUnnamed326(); | 6697 o.conversionDimensions = buildUnnamed341(); |
| 6698 o.customFloodlightVariables = buildUnnamed327(); | 6698 o.customFloodlightVariables = buildUnnamed342(); |
| 6699 o.customRichMediaEvents = buildUnnamed328(); | 6699 o.customRichMediaEvents = buildUnnamed343(); |
| 6700 o.dateRange = buildDateRange(); | 6700 o.dateRange = buildDateRange(); |
| 6701 o.floodlightConfigId = buildDimensionValue(); | 6701 o.floodlightConfigId = buildDimensionValue(); |
| 6702 o.metricNames = buildUnnamed329(); | 6702 o.metricNames = buildUnnamed344(); |
| 6703 o.perInteractionDimensions = buildUnnamed330(); | 6703 o.perInteractionDimensions = buildUnnamed345(); |
| 6704 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); | 6704 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); |
| 6705 } | 6705 } |
| 6706 buildCounterReportPathToConversionCriteria--; | 6706 buildCounterReportPathToConversionCriteria--; |
| 6707 return o; | 6707 return o; |
| 6708 } | 6708 } |
| 6709 | 6709 |
| 6710 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { | 6710 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { |
| 6711 buildCounterReportPathToConversionCriteria++; | 6711 buildCounterReportPathToConversionCriteria++; |
| 6712 if (buildCounterReportPathToConversionCriteria < 3) { | 6712 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6713 checkUnnamed325(o.activityFilters); | 6713 checkUnnamed340(o.activityFilters); |
| 6714 checkUnnamed326(o.conversionDimensions); | 6714 checkUnnamed341(o.conversionDimensions); |
| 6715 checkUnnamed327(o.customFloodlightVariables); | 6715 checkUnnamed342(o.customFloodlightVariables); |
| 6716 checkUnnamed328(o.customRichMediaEvents); | 6716 checkUnnamed343(o.customRichMediaEvents); |
| 6717 checkDateRange(o.dateRange); | 6717 checkDateRange(o.dateRange); |
| 6718 checkDimensionValue(o.floodlightConfigId); | 6718 checkDimensionValue(o.floodlightConfigId); |
| 6719 checkUnnamed329(o.metricNames); | 6719 checkUnnamed344(o.metricNames); |
| 6720 checkUnnamed330(o.perInteractionDimensions); | 6720 checkUnnamed345(o.perInteractionDimensions); |
| 6721 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); | 6721 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); |
| 6722 } | 6722 } |
| 6723 buildCounterReportPathToConversionCriteria--; | 6723 buildCounterReportPathToConversionCriteria--; |
| 6724 } | 6724 } |
| 6725 | 6725 |
| 6726 buildUnnamed331() { | 6726 buildUnnamed346() { |
| 6727 var o = new core.List<api.DimensionValue>(); | 6727 var o = new core.List<api.DimensionValue>(); |
| 6728 o.add(buildDimensionValue()); | 6728 o.add(buildDimensionValue()); |
| 6729 o.add(buildDimensionValue()); | 6729 o.add(buildDimensionValue()); |
| 6730 return o; | 6730 return o; |
| 6731 } | 6731 } |
| 6732 | 6732 |
| 6733 checkUnnamed331(core.List<api.DimensionValue> o) { | 6733 checkUnnamed346(core.List<api.DimensionValue> o) { |
| 6734 unittest.expect(o, unittest.hasLength(2)); | 6734 unittest.expect(o, unittest.hasLength(2)); |
| 6735 checkDimensionValue(o[0]); | 6735 checkDimensionValue(o[0]); |
| 6736 checkDimensionValue(o[1]); | 6736 checkDimensionValue(o[1]); |
| 6737 } | 6737 } |
| 6738 | 6738 |
| 6739 buildUnnamed332() { | 6739 buildUnnamed347() { |
| 6740 var o = new core.List<api.SortedDimension>(); | 6740 var o = new core.List<api.SortedDimension>(); |
| 6741 o.add(buildSortedDimension()); | 6741 o.add(buildSortedDimension()); |
| 6742 o.add(buildSortedDimension()); | 6742 o.add(buildSortedDimension()); |
| 6743 return o; | 6743 return o; |
| 6744 } | 6744 } |
| 6745 | 6745 |
| 6746 checkUnnamed332(core.List<api.SortedDimension> o) { | 6746 checkUnnamed347(core.List<api.SortedDimension> o) { |
| 6747 unittest.expect(o, unittest.hasLength(2)); | 6747 unittest.expect(o, unittest.hasLength(2)); |
| 6748 checkSortedDimension(o[0]); | 6748 checkSortedDimension(o[0]); |
| 6749 checkSortedDimension(o[1]); | 6749 checkSortedDimension(o[1]); |
| 6750 } | 6750 } |
| 6751 | 6751 |
| 6752 buildUnnamed333() { | 6752 buildUnnamed348() { |
| 6753 var o = new core.List<core.String>(); | 6753 var o = new core.List<core.String>(); |
| 6754 o.add("foo"); | 6754 o.add("foo"); |
| 6755 o.add("foo"); | 6755 o.add("foo"); |
| 6756 return o; | 6756 return o; |
| 6757 } | 6757 } |
| 6758 | 6758 |
| 6759 checkUnnamed333(core.List<core.String> o) { | 6759 checkUnnamed348(core.List<core.String> o) { |
| 6760 unittest.expect(o, unittest.hasLength(2)); | 6760 unittest.expect(o, unittest.hasLength(2)); |
| 6761 unittest.expect(o[0], unittest.equals('foo')); | 6761 unittest.expect(o[0], unittest.equals('foo')); |
| 6762 unittest.expect(o[1], unittest.equals('foo')); | 6762 unittest.expect(o[1], unittest.equals('foo')); |
| 6763 } | 6763 } |
| 6764 | 6764 |
| 6765 buildUnnamed334() { | 6765 buildUnnamed349() { |
| 6766 var o = new core.List<core.String>(); | 6766 var o = new core.List<core.String>(); |
| 6767 o.add("foo"); | 6767 o.add("foo"); |
| 6768 o.add("foo"); | 6768 o.add("foo"); |
| 6769 return o; | 6769 return o; |
| 6770 } | 6770 } |
| 6771 | 6771 |
| 6772 checkUnnamed334(core.List<core.String> o) { | 6772 checkUnnamed349(core.List<core.String> o) { |
| 6773 unittest.expect(o, unittest.hasLength(2)); | 6773 unittest.expect(o, unittest.hasLength(2)); |
| 6774 unittest.expect(o[0], unittest.equals('foo')); | 6774 unittest.expect(o[0], unittest.equals('foo')); |
| 6775 unittest.expect(o[1], unittest.equals('foo')); | 6775 unittest.expect(o[1], unittest.equals('foo')); |
| 6776 } | 6776 } |
| 6777 | 6777 |
| 6778 core.int buildCounterReportReachCriteria = 0; | 6778 core.int buildCounterReportReachCriteria = 0; |
| 6779 buildReportReachCriteria() { | 6779 buildReportReachCriteria() { |
| 6780 var o = new api.ReportReachCriteria(); | 6780 var o = new api.ReportReachCriteria(); |
| 6781 buildCounterReportReachCriteria++; | 6781 buildCounterReportReachCriteria++; |
| 6782 if (buildCounterReportReachCriteria < 3) { | 6782 if (buildCounterReportReachCriteria < 3) { |
| 6783 o.activities = buildActivities(); | 6783 o.activities = buildActivities(); |
| 6784 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6784 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6785 o.dateRange = buildDateRange(); | 6785 o.dateRange = buildDateRange(); |
| 6786 o.dimensionFilters = buildUnnamed331(); | 6786 o.dimensionFilters = buildUnnamed346(); |
| 6787 o.dimensions = buildUnnamed332(); | 6787 o.dimensions = buildUnnamed347(); |
| 6788 o.enableAllDimensionCombinations = true; | 6788 o.enableAllDimensionCombinations = true; |
| 6789 o.metricNames = buildUnnamed333(); | 6789 o.metricNames = buildUnnamed348(); |
| 6790 o.reachByFrequencyMetricNames = buildUnnamed334(); | 6790 o.reachByFrequencyMetricNames = buildUnnamed349(); |
| 6791 } | 6791 } |
| 6792 buildCounterReportReachCriteria--; | 6792 buildCounterReportReachCriteria--; |
| 6793 return o; | 6793 return o; |
| 6794 } | 6794 } |
| 6795 | 6795 |
| 6796 checkReportReachCriteria(api.ReportReachCriteria o) { | 6796 checkReportReachCriteria(api.ReportReachCriteria o) { |
| 6797 buildCounterReportReachCriteria++; | 6797 buildCounterReportReachCriteria++; |
| 6798 if (buildCounterReportReachCriteria < 3) { | 6798 if (buildCounterReportReachCriteria < 3) { |
| 6799 checkActivities(o.activities); | 6799 checkActivities(o.activities); |
| 6800 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6800 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6801 checkDateRange(o.dateRange); | 6801 checkDateRange(o.dateRange); |
| 6802 checkUnnamed331(o.dimensionFilters); | 6802 checkUnnamed346(o.dimensionFilters); |
| 6803 checkUnnamed332(o.dimensions); | 6803 checkUnnamed347(o.dimensions); |
| 6804 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); | 6804 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); |
| 6805 checkUnnamed333(o.metricNames); | 6805 checkUnnamed348(o.metricNames); |
| 6806 checkUnnamed334(o.reachByFrequencyMetricNames); | 6806 checkUnnamed349(o.reachByFrequencyMetricNames); |
| 6807 } | 6807 } |
| 6808 buildCounterReportReachCriteria--; | 6808 buildCounterReportReachCriteria--; |
| 6809 } | 6809 } |
| 6810 | 6810 |
| 6811 buildUnnamed335() { | 6811 buildUnnamed350() { |
| 6812 var o = new core.List<core.String>(); | 6812 var o = new core.List<core.String>(); |
| 6813 o.add("foo"); | 6813 o.add("foo"); |
| 6814 o.add("foo"); | 6814 o.add("foo"); |
| 6815 return o; | 6815 return o; |
| 6816 } | 6816 } |
| 6817 | 6817 |
| 6818 checkUnnamed335(core.List<core.String> o) { | 6818 checkUnnamed350(core.List<core.String> o) { |
| 6819 unittest.expect(o, unittest.hasLength(2)); | 6819 unittest.expect(o, unittest.hasLength(2)); |
| 6820 unittest.expect(o[0], unittest.equals('foo')); | 6820 unittest.expect(o[0], unittest.equals('foo')); |
| 6821 unittest.expect(o[1], unittest.equals('foo')); | 6821 unittest.expect(o[1], unittest.equals('foo')); |
| 6822 } | 6822 } |
| 6823 | 6823 |
| 6824 core.int buildCounterReportSchedule = 0; | 6824 core.int buildCounterReportSchedule = 0; |
| 6825 buildReportSchedule() { | 6825 buildReportSchedule() { |
| 6826 var o = new api.ReportSchedule(); | 6826 var o = new api.ReportSchedule(); |
| 6827 buildCounterReportSchedule++; | 6827 buildCounterReportSchedule++; |
| 6828 if (buildCounterReportSchedule < 3) { | 6828 if (buildCounterReportSchedule < 3) { |
| 6829 o.active = true; | 6829 o.active = true; |
| 6830 o.every = 42; | 6830 o.every = 42; |
| 6831 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6831 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6832 o.repeats = "foo"; | 6832 o.repeats = "foo"; |
| 6833 o.repeatsOnWeekDays = buildUnnamed335(); | 6833 o.repeatsOnWeekDays = buildUnnamed350(); |
| 6834 o.runsOnDayOfMonth = "foo"; | 6834 o.runsOnDayOfMonth = "foo"; |
| 6835 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6835 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6836 } | 6836 } |
| 6837 buildCounterReportSchedule--; | 6837 buildCounterReportSchedule--; |
| 6838 return o; | 6838 return o; |
| 6839 } | 6839 } |
| 6840 | 6840 |
| 6841 checkReportSchedule(api.ReportSchedule o) { | 6841 checkReportSchedule(api.ReportSchedule o) { |
| 6842 buildCounterReportSchedule++; | 6842 buildCounterReportSchedule++; |
| 6843 if (buildCounterReportSchedule < 3) { | 6843 if (buildCounterReportSchedule < 3) { |
| 6844 unittest.expect(o.active, unittest.isTrue); | 6844 unittest.expect(o.active, unittest.isTrue); |
| 6845 unittest.expect(o.every, unittest.equals(42)); | 6845 unittest.expect(o.every, unittest.equals(42)); |
| 6846 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); | 6846 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); |
| 6847 unittest.expect(o.repeats, unittest.equals('foo')); | 6847 unittest.expect(o.repeats, unittest.equals('foo')); |
| 6848 checkUnnamed335(o.repeatsOnWeekDays); | 6848 checkUnnamed350(o.repeatsOnWeekDays); |
| 6849 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); | 6849 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); |
| 6850 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6850 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 6851 } | 6851 } |
| 6852 buildCounterReportSchedule--; | 6852 buildCounterReportSchedule--; |
| 6853 } | 6853 } |
| 6854 | 6854 |
| 6855 core.int buildCounterReport = 0; | 6855 core.int buildCounterReport = 0; |
| 6856 buildReport() { | 6856 buildReport() { |
| 6857 var o = new api.Report(); | 6857 var o = new api.Report(); |
| 6858 buildCounterReport++; | 6858 buildCounterReport++; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6898 unittest.expect(o.ownerProfileId, unittest.equals('foo')); | 6898 unittest.expect(o.ownerProfileId, unittest.equals('foo')); |
| 6899 checkReportPathToConversionCriteria(o.pathToConversionCriteria); | 6899 checkReportPathToConversionCriteria(o.pathToConversionCriteria); |
| 6900 checkReportReachCriteria(o.reachCriteria); | 6900 checkReportReachCriteria(o.reachCriteria); |
| 6901 checkReportSchedule(o.schedule); | 6901 checkReportSchedule(o.schedule); |
| 6902 unittest.expect(o.subAccountId, unittest.equals('foo')); | 6902 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 6903 unittest.expect(o.type, unittest.equals('foo')); | 6903 unittest.expect(o.type, unittest.equals('foo')); |
| 6904 } | 6904 } |
| 6905 buildCounterReport--; | 6905 buildCounterReport--; |
| 6906 } | 6906 } |
| 6907 | 6907 |
| 6908 buildUnnamed336() { | 6908 buildUnnamed351() { |
| 6909 var o = new core.List<api.Dimension>(); | 6909 var o = new core.List<api.Dimension>(); |
| 6910 o.add(buildDimension()); | 6910 o.add(buildDimension()); |
| 6911 o.add(buildDimension()); | 6911 o.add(buildDimension()); |
| 6912 return o; | 6912 return o; |
| 6913 } | 6913 } |
| 6914 | 6914 |
| 6915 checkUnnamed336(core.List<api.Dimension> o) { | 6915 checkUnnamed351(core.List<api.Dimension> o) { |
| 6916 unittest.expect(o, unittest.hasLength(2)); | 6916 unittest.expect(o, unittest.hasLength(2)); |
| 6917 checkDimension(o[0]); | 6917 checkDimension(o[0]); |
| 6918 checkDimension(o[1]); | 6918 checkDimension(o[1]); |
| 6919 } | 6919 } |
| 6920 | 6920 |
| 6921 buildUnnamed337() { | 6921 buildUnnamed352() { |
| 6922 var o = new core.List<api.Dimension>(); | 6922 var o = new core.List<api.Dimension>(); |
| 6923 o.add(buildDimension()); | 6923 o.add(buildDimension()); |
| 6924 o.add(buildDimension()); | 6924 o.add(buildDimension()); |
| 6925 return o; | 6925 return o; |
| 6926 } | 6926 } |
| 6927 | 6927 |
| 6928 checkUnnamed337(core.List<api.Dimension> o) { | 6928 checkUnnamed352(core.List<api.Dimension> o) { |
| 6929 unittest.expect(o, unittest.hasLength(2)); | 6929 unittest.expect(o, unittest.hasLength(2)); |
| 6930 checkDimension(o[0]); | 6930 checkDimension(o[0]); |
| 6931 checkDimension(o[1]); | 6931 checkDimension(o[1]); |
| 6932 } | 6932 } |
| 6933 | 6933 |
| 6934 buildUnnamed338() { | 6934 buildUnnamed353() { |
| 6935 var o = new core.List<api.Metric>(); | 6935 var o = new core.List<api.Metric>(); |
| 6936 o.add(buildMetric()); | 6936 o.add(buildMetric()); |
| 6937 o.add(buildMetric()); | 6937 o.add(buildMetric()); |
| 6938 return o; | 6938 return o; |
| 6939 } | 6939 } |
| 6940 | 6940 |
| 6941 checkUnnamed338(core.List<api.Metric> o) { | 6941 checkUnnamed353(core.List<api.Metric> o) { |
| 6942 unittest.expect(o, unittest.hasLength(2)); | 6942 unittest.expect(o, unittest.hasLength(2)); |
| 6943 checkMetric(o[0]); | 6943 checkMetric(o[0]); |
| 6944 checkMetric(o[1]); | 6944 checkMetric(o[1]); |
| 6945 } | 6945 } |
| 6946 | 6946 |
| 6947 buildUnnamed339() { | 6947 buildUnnamed354() { |
| 6948 var o = new core.List<api.Metric>(); | 6948 var o = new core.List<api.Metric>(); |
| 6949 o.add(buildMetric()); | 6949 o.add(buildMetric()); |
| 6950 o.add(buildMetric()); | 6950 o.add(buildMetric()); |
| 6951 return o; | 6951 return o; |
| 6952 } | 6952 } |
| 6953 | 6953 |
| 6954 checkUnnamed339(core.List<api.Metric> o) { | 6954 checkUnnamed354(core.List<api.Metric> o) { |
| 6955 unittest.expect(o, unittest.hasLength(2)); | 6955 unittest.expect(o, unittest.hasLength(2)); |
| 6956 checkMetric(o[0]); | 6956 checkMetric(o[0]); |
| 6957 checkMetric(o[1]); | 6957 checkMetric(o[1]); |
| 6958 } | 6958 } |
| 6959 | 6959 |
| 6960 core.int buildCounterReportCompatibleFields = 0; | 6960 core.int buildCounterReportCompatibleFields = 0; |
| 6961 buildReportCompatibleFields() { | 6961 buildReportCompatibleFields() { |
| 6962 var o = new api.ReportCompatibleFields(); | 6962 var o = new api.ReportCompatibleFields(); |
| 6963 buildCounterReportCompatibleFields++; | 6963 buildCounterReportCompatibleFields++; |
| 6964 if (buildCounterReportCompatibleFields < 3) { | 6964 if (buildCounterReportCompatibleFields < 3) { |
| 6965 o.dimensionFilters = buildUnnamed336(); | 6965 o.dimensionFilters = buildUnnamed351(); |
| 6966 o.dimensions = buildUnnamed337(); | 6966 o.dimensions = buildUnnamed352(); |
| 6967 o.kind = "foo"; | 6967 o.kind = "foo"; |
| 6968 o.metrics = buildUnnamed338(); | 6968 o.metrics = buildUnnamed353(); |
| 6969 o.pivotedActivityMetrics = buildUnnamed339(); | 6969 o.pivotedActivityMetrics = buildUnnamed354(); |
| 6970 } | 6970 } |
| 6971 buildCounterReportCompatibleFields--; | 6971 buildCounterReportCompatibleFields--; |
| 6972 return o; | 6972 return o; |
| 6973 } | 6973 } |
| 6974 | 6974 |
| 6975 checkReportCompatibleFields(api.ReportCompatibleFields o) { | 6975 checkReportCompatibleFields(api.ReportCompatibleFields o) { |
| 6976 buildCounterReportCompatibleFields++; | 6976 buildCounterReportCompatibleFields++; |
| 6977 if (buildCounterReportCompatibleFields < 3) { | 6977 if (buildCounterReportCompatibleFields < 3) { |
| 6978 checkUnnamed336(o.dimensionFilters); | 6978 checkUnnamed351(o.dimensionFilters); |
| 6979 checkUnnamed337(o.dimensions); | 6979 checkUnnamed352(o.dimensions); |
| 6980 unittest.expect(o.kind, unittest.equals('foo')); | 6980 unittest.expect(o.kind, unittest.equals('foo')); |
| 6981 checkUnnamed338(o.metrics); | 6981 checkUnnamed353(o.metrics); |
| 6982 checkUnnamed339(o.pivotedActivityMetrics); | 6982 checkUnnamed354(o.pivotedActivityMetrics); |
| 6983 } | 6983 } |
| 6984 buildCounterReportCompatibleFields--; | 6984 buildCounterReportCompatibleFields--; |
| 6985 } | 6985 } |
| 6986 | 6986 |
| 6987 buildUnnamed340() { | 6987 buildUnnamed355() { |
| 6988 var o = new core.List<api.Report>(); | 6988 var o = new core.List<api.Report>(); |
| 6989 o.add(buildReport()); | 6989 o.add(buildReport()); |
| 6990 o.add(buildReport()); | 6990 o.add(buildReport()); |
| 6991 return o; | 6991 return o; |
| 6992 } | 6992 } |
| 6993 | 6993 |
| 6994 checkUnnamed340(core.List<api.Report> o) { | 6994 checkUnnamed355(core.List<api.Report> o) { |
| 6995 unittest.expect(o, unittest.hasLength(2)); | 6995 unittest.expect(o, unittest.hasLength(2)); |
| 6996 checkReport(o[0]); | 6996 checkReport(o[0]); |
| 6997 checkReport(o[1]); | 6997 checkReport(o[1]); |
| 6998 } | 6998 } |
| 6999 | 6999 |
| 7000 core.int buildCounterReportList = 0; | 7000 core.int buildCounterReportList = 0; |
| 7001 buildReportList() { | 7001 buildReportList() { |
| 7002 var o = new api.ReportList(); | 7002 var o = new api.ReportList(); |
| 7003 buildCounterReportList++; | 7003 buildCounterReportList++; |
| 7004 if (buildCounterReportList < 3) { | 7004 if (buildCounterReportList < 3) { |
| 7005 o.etag = "foo"; | 7005 o.etag = "foo"; |
| 7006 o.items = buildUnnamed340(); | 7006 o.items = buildUnnamed355(); |
| 7007 o.kind = "foo"; | 7007 o.kind = "foo"; |
| 7008 o.nextPageToken = "foo"; | 7008 o.nextPageToken = "foo"; |
| 7009 } | 7009 } |
| 7010 buildCounterReportList--; | 7010 buildCounterReportList--; |
| 7011 return o; | 7011 return o; |
| 7012 } | 7012 } |
| 7013 | 7013 |
| 7014 checkReportList(api.ReportList o) { | 7014 checkReportList(api.ReportList o) { |
| 7015 buildCounterReportList++; | 7015 buildCounterReportList++; |
| 7016 if (buildCounterReportList < 3) { | 7016 if (buildCounterReportList < 3) { |
| 7017 unittest.expect(o.etag, unittest.equals('foo')); | 7017 unittest.expect(o.etag, unittest.equals('foo')); |
| 7018 checkUnnamed340(o.items); | 7018 checkUnnamed355(o.items); |
| 7019 unittest.expect(o.kind, unittest.equals('foo')); | 7019 unittest.expect(o.kind, unittest.equals('foo')); |
| 7020 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7020 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7021 } | 7021 } |
| 7022 buildCounterReportList--; | 7022 buildCounterReportList--; |
| 7023 } | 7023 } |
| 7024 | 7024 |
| 7025 core.int buildCounterReportsConfiguration = 0; | 7025 core.int buildCounterReportsConfiguration = 0; |
| 7026 buildReportsConfiguration() { | 7026 buildReportsConfiguration() { |
| 7027 var o = new api.ReportsConfiguration(); | 7027 var o = new api.ReportsConfiguration(); |
| 7028 buildCounterReportsConfiguration++; | 7028 buildCounterReportsConfiguration++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7061 checkRichMediaExitOverride(api.RichMediaExitOverride o) { | 7061 checkRichMediaExitOverride(api.RichMediaExitOverride o) { |
| 7062 buildCounterRichMediaExitOverride++; | 7062 buildCounterRichMediaExitOverride++; |
| 7063 if (buildCounterRichMediaExitOverride < 3) { | 7063 if (buildCounterRichMediaExitOverride < 3) { |
| 7064 unittest.expect(o.customExitUrl, unittest.equals('foo')); | 7064 unittest.expect(o.customExitUrl, unittest.equals('foo')); |
| 7065 unittest.expect(o.exitId, unittest.equals('foo')); | 7065 unittest.expect(o.exitId, unittest.equals('foo')); |
| 7066 unittest.expect(o.useCustomExitUrl, unittest.isTrue); | 7066 unittest.expect(o.useCustomExitUrl, unittest.isTrue); |
| 7067 } | 7067 } |
| 7068 buildCounterRichMediaExitOverride--; | 7068 buildCounterRichMediaExitOverride--; |
| 7069 } | 7069 } |
| 7070 | 7070 |
| 7071 buildUnnamed341() { | 7071 buildUnnamed356() { |
| 7072 var o = new core.List<api.SiteContact>(); | 7072 var o = new core.List<api.SiteContact>(); |
| 7073 o.add(buildSiteContact()); | 7073 o.add(buildSiteContact()); |
| 7074 o.add(buildSiteContact()); | 7074 o.add(buildSiteContact()); |
| 7075 return o; | 7075 return o; |
| 7076 } | 7076 } |
| 7077 | 7077 |
| 7078 checkUnnamed341(core.List<api.SiteContact> o) { | 7078 checkUnnamed356(core.List<api.SiteContact> o) { |
| 7079 unittest.expect(o, unittest.hasLength(2)); | 7079 unittest.expect(o, unittest.hasLength(2)); |
| 7080 checkSiteContact(o[0]); | 7080 checkSiteContact(o[0]); |
| 7081 checkSiteContact(o[1]); | 7081 checkSiteContact(o[1]); |
| 7082 } | 7082 } |
| 7083 | 7083 |
| 7084 core.int buildCounterSite = 0; | 7084 core.int buildCounterSite = 0; |
| 7085 buildSite() { | 7085 buildSite() { |
| 7086 var o = new api.Site(); | 7086 var o = new api.Site(); |
| 7087 buildCounterSite++; | 7087 buildCounterSite++; |
| 7088 if (buildCounterSite < 3) { | 7088 if (buildCounterSite < 3) { |
| 7089 o.accountId = "foo"; | 7089 o.accountId = "foo"; |
| 7090 o.approved = true; | 7090 o.approved = true; |
| 7091 o.directorySiteId = "foo"; | 7091 o.directorySiteId = "foo"; |
| 7092 o.directorySiteIdDimensionValue = buildDimensionValue(); | 7092 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 7093 o.id = "foo"; | 7093 o.id = "foo"; |
| 7094 o.idDimensionValue = buildDimensionValue(); | 7094 o.idDimensionValue = buildDimensionValue(); |
| 7095 o.keyName = "foo"; | 7095 o.keyName = "foo"; |
| 7096 o.kind = "foo"; | 7096 o.kind = "foo"; |
| 7097 o.name = "foo"; | 7097 o.name = "foo"; |
| 7098 o.siteContacts = buildUnnamed341(); | 7098 o.siteContacts = buildUnnamed356(); |
| 7099 o.siteSettings = buildSiteSettings(); | 7099 o.siteSettings = buildSiteSettings(); |
| 7100 o.subaccountId = "foo"; | 7100 o.subaccountId = "foo"; |
| 7101 } | 7101 } |
| 7102 buildCounterSite--; | 7102 buildCounterSite--; |
| 7103 return o; | 7103 return o; |
| 7104 } | 7104 } |
| 7105 | 7105 |
| 7106 checkSite(api.Site o) { | 7106 checkSite(api.Site o) { |
| 7107 buildCounterSite++; | 7107 buildCounterSite++; |
| 7108 if (buildCounterSite < 3) { | 7108 if (buildCounterSite < 3) { |
| 7109 unittest.expect(o.accountId, unittest.equals('foo')); | 7109 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7110 unittest.expect(o.approved, unittest.isTrue); | 7110 unittest.expect(o.approved, unittest.isTrue); |
| 7111 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 7111 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 7112 checkDimensionValue(o.directorySiteIdDimensionValue); | 7112 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 7113 unittest.expect(o.id, unittest.equals('foo')); | 7113 unittest.expect(o.id, unittest.equals('foo')); |
| 7114 checkDimensionValue(o.idDimensionValue); | 7114 checkDimensionValue(o.idDimensionValue); |
| 7115 unittest.expect(o.keyName, unittest.equals('foo')); | 7115 unittest.expect(o.keyName, unittest.equals('foo')); |
| 7116 unittest.expect(o.kind, unittest.equals('foo')); | 7116 unittest.expect(o.kind, unittest.equals('foo')); |
| 7117 unittest.expect(o.name, unittest.equals('foo')); | 7117 unittest.expect(o.name, unittest.equals('foo')); |
| 7118 checkUnnamed341(o.siteContacts); | 7118 checkUnnamed356(o.siteContacts); |
| 7119 checkSiteSettings(o.siteSettings); | 7119 checkSiteSettings(o.siteSettings); |
| 7120 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7120 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7121 } | 7121 } |
| 7122 buildCounterSite--; | 7122 buildCounterSite--; |
| 7123 } | 7123 } |
| 7124 | 7124 |
| 7125 core.int buildCounterSiteContact = 0; | 7125 core.int buildCounterSiteContact = 0; |
| 7126 buildSiteContact() { | 7126 buildSiteContact() { |
| 7127 var o = new api.SiteContact(); | 7127 var o = new api.SiteContact(); |
| 7128 buildCounterSiteContact++; | 7128 buildCounterSiteContact++; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7179 checkCreativeSettings(o.creativeSettings); | 7179 checkCreativeSettings(o.creativeSettings); |
| 7180 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); | 7180 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); |
| 7181 unittest.expect(o.disableNewCookie, unittest.isTrue); | 7181 unittest.expect(o.disableNewCookie, unittest.isTrue); |
| 7182 checkLookbackConfiguration(o.lookbackConfiguration); | 7182 checkLookbackConfiguration(o.lookbackConfiguration); |
| 7183 checkTagSetting(o.tagSetting); | 7183 checkTagSetting(o.tagSetting); |
| 7184 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 7184 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 7185 } | 7185 } |
| 7186 buildCounterSiteSettings--; | 7186 buildCounterSiteSettings--; |
| 7187 } | 7187 } |
| 7188 | 7188 |
| 7189 buildUnnamed342() { | 7189 buildUnnamed357() { |
| 7190 var o = new core.List<api.Site>(); | 7190 var o = new core.List<api.Site>(); |
| 7191 o.add(buildSite()); | 7191 o.add(buildSite()); |
| 7192 o.add(buildSite()); | 7192 o.add(buildSite()); |
| 7193 return o; | 7193 return o; |
| 7194 } | 7194 } |
| 7195 | 7195 |
| 7196 checkUnnamed342(core.List<api.Site> o) { | 7196 checkUnnamed357(core.List<api.Site> o) { |
| 7197 unittest.expect(o, unittest.hasLength(2)); | 7197 unittest.expect(o, unittest.hasLength(2)); |
| 7198 checkSite(o[0]); | 7198 checkSite(o[0]); |
| 7199 checkSite(o[1]); | 7199 checkSite(o[1]); |
| 7200 } | 7200 } |
| 7201 | 7201 |
| 7202 core.int buildCounterSitesListResponse = 0; | 7202 core.int buildCounterSitesListResponse = 0; |
| 7203 buildSitesListResponse() { | 7203 buildSitesListResponse() { |
| 7204 var o = new api.SitesListResponse(); | 7204 var o = new api.SitesListResponse(); |
| 7205 buildCounterSitesListResponse++; | 7205 buildCounterSitesListResponse++; |
| 7206 if (buildCounterSitesListResponse < 3) { | 7206 if (buildCounterSitesListResponse < 3) { |
| 7207 o.kind = "foo"; | 7207 o.kind = "foo"; |
| 7208 o.nextPageToken = "foo"; | 7208 o.nextPageToken = "foo"; |
| 7209 o.sites = buildUnnamed342(); | 7209 o.sites = buildUnnamed357(); |
| 7210 } | 7210 } |
| 7211 buildCounterSitesListResponse--; | 7211 buildCounterSitesListResponse--; |
| 7212 return o; | 7212 return o; |
| 7213 } | 7213 } |
| 7214 | 7214 |
| 7215 checkSitesListResponse(api.SitesListResponse o) { | 7215 checkSitesListResponse(api.SitesListResponse o) { |
| 7216 buildCounterSitesListResponse++; | 7216 buildCounterSitesListResponse++; |
| 7217 if (buildCounterSitesListResponse < 3) { | 7217 if (buildCounterSitesListResponse < 3) { |
| 7218 unittest.expect(o.kind, unittest.equals('foo')); | 7218 unittest.expect(o.kind, unittest.equals('foo')); |
| 7219 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7219 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7220 checkUnnamed342(o.sites); | 7220 checkUnnamed357(o.sites); |
| 7221 } | 7221 } |
| 7222 buildCounterSitesListResponse--; | 7222 buildCounterSitesListResponse--; |
| 7223 } | 7223 } |
| 7224 | 7224 |
| 7225 core.int buildCounterSize = 0; | 7225 core.int buildCounterSize = 0; |
| 7226 buildSize() { | 7226 buildSize() { |
| 7227 var o = new api.Size(); | 7227 var o = new api.Size(); |
| 7228 buildCounterSize++; | 7228 buildCounterSize++; |
| 7229 if (buildCounterSize < 3) { | 7229 if (buildCounterSize < 3) { |
| 7230 o.height = 42; | 7230 o.height = 42; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 7242 if (buildCounterSize < 3) { | 7242 if (buildCounterSize < 3) { |
| 7243 unittest.expect(o.height, unittest.equals(42)); | 7243 unittest.expect(o.height, unittest.equals(42)); |
| 7244 unittest.expect(o.iab, unittest.isTrue); | 7244 unittest.expect(o.iab, unittest.isTrue); |
| 7245 unittest.expect(o.id, unittest.equals('foo')); | 7245 unittest.expect(o.id, unittest.equals('foo')); |
| 7246 unittest.expect(o.kind, unittest.equals('foo')); | 7246 unittest.expect(o.kind, unittest.equals('foo')); |
| 7247 unittest.expect(o.width, unittest.equals(42)); | 7247 unittest.expect(o.width, unittest.equals(42)); |
| 7248 } | 7248 } |
| 7249 buildCounterSize--; | 7249 buildCounterSize--; |
| 7250 } | 7250 } |
| 7251 | 7251 |
| 7252 buildUnnamed343() { | 7252 buildUnnamed358() { |
| 7253 var o = new core.List<api.Size>(); | 7253 var o = new core.List<api.Size>(); |
| 7254 o.add(buildSize()); | 7254 o.add(buildSize()); |
| 7255 o.add(buildSize()); | 7255 o.add(buildSize()); |
| 7256 return o; | 7256 return o; |
| 7257 } | 7257 } |
| 7258 | 7258 |
| 7259 checkUnnamed343(core.List<api.Size> o) { | 7259 checkUnnamed358(core.List<api.Size> o) { |
| 7260 unittest.expect(o, unittest.hasLength(2)); | 7260 unittest.expect(o, unittest.hasLength(2)); |
| 7261 checkSize(o[0]); | 7261 checkSize(o[0]); |
| 7262 checkSize(o[1]); | 7262 checkSize(o[1]); |
| 7263 } | 7263 } |
| 7264 | 7264 |
| 7265 core.int buildCounterSizesListResponse = 0; | 7265 core.int buildCounterSizesListResponse = 0; |
| 7266 buildSizesListResponse() { | 7266 buildSizesListResponse() { |
| 7267 var o = new api.SizesListResponse(); | 7267 var o = new api.SizesListResponse(); |
| 7268 buildCounterSizesListResponse++; | 7268 buildCounterSizesListResponse++; |
| 7269 if (buildCounterSizesListResponse < 3) { | 7269 if (buildCounterSizesListResponse < 3) { |
| 7270 o.kind = "foo"; | 7270 o.kind = "foo"; |
| 7271 o.sizes = buildUnnamed343(); | 7271 o.sizes = buildUnnamed358(); |
| 7272 } | 7272 } |
| 7273 buildCounterSizesListResponse--; | 7273 buildCounterSizesListResponse--; |
| 7274 return o; | 7274 return o; |
| 7275 } | 7275 } |
| 7276 | 7276 |
| 7277 checkSizesListResponse(api.SizesListResponse o) { | 7277 checkSizesListResponse(api.SizesListResponse o) { |
| 7278 buildCounterSizesListResponse++; | 7278 buildCounterSizesListResponse++; |
| 7279 if (buildCounterSizesListResponse < 3) { | 7279 if (buildCounterSizesListResponse < 3) { |
| 7280 unittest.expect(o.kind, unittest.equals('foo')); | 7280 unittest.expect(o.kind, unittest.equals('foo')); |
| 7281 checkUnnamed343(o.sizes); | 7281 checkUnnamed358(o.sizes); |
| 7282 } | 7282 } |
| 7283 buildCounterSizesListResponse--; | 7283 buildCounterSizesListResponse--; |
| 7284 } | 7284 } |
| 7285 | 7285 |
| 7286 core.int buildCounterSortedDimension = 0; | 7286 core.int buildCounterSortedDimension = 0; |
| 7287 buildSortedDimension() { | 7287 buildSortedDimension() { |
| 7288 var o = new api.SortedDimension(); | 7288 var o = new api.SortedDimension(); |
| 7289 buildCounterSortedDimension++; | 7289 buildCounterSortedDimension++; |
| 7290 if (buildCounterSortedDimension < 3) { | 7290 if (buildCounterSortedDimension < 3) { |
| 7291 o.kind = "foo"; | 7291 o.kind = "foo"; |
| 7292 o.name = "foo"; | 7292 o.name = "foo"; |
| 7293 o.sortOrder = "foo"; | 7293 o.sortOrder = "foo"; |
| 7294 } | 7294 } |
| 7295 buildCounterSortedDimension--; | 7295 buildCounterSortedDimension--; |
| 7296 return o; | 7296 return o; |
| 7297 } | 7297 } |
| 7298 | 7298 |
| 7299 checkSortedDimension(api.SortedDimension o) { | 7299 checkSortedDimension(api.SortedDimension o) { |
| 7300 buildCounterSortedDimension++; | 7300 buildCounterSortedDimension++; |
| 7301 if (buildCounterSortedDimension < 3) { | 7301 if (buildCounterSortedDimension < 3) { |
| 7302 unittest.expect(o.kind, unittest.equals('foo')); | 7302 unittest.expect(o.kind, unittest.equals('foo')); |
| 7303 unittest.expect(o.name, unittest.equals('foo')); | 7303 unittest.expect(o.name, unittest.equals('foo')); |
| 7304 unittest.expect(o.sortOrder, unittest.equals('foo')); | 7304 unittest.expect(o.sortOrder, unittest.equals('foo')); |
| 7305 } | 7305 } |
| 7306 buildCounterSortedDimension--; | 7306 buildCounterSortedDimension--; |
| 7307 } | 7307 } |
| 7308 | 7308 |
| 7309 buildUnnamed344() { | 7309 buildUnnamed359() { |
| 7310 var o = new core.List<core.String>(); | 7310 var o = new core.List<core.String>(); |
| 7311 o.add("foo"); | 7311 o.add("foo"); |
| 7312 o.add("foo"); | 7312 o.add("foo"); |
| 7313 return o; | 7313 return o; |
| 7314 } | 7314 } |
| 7315 | 7315 |
| 7316 checkUnnamed344(core.List<core.String> o) { | 7316 checkUnnamed359(core.List<core.String> o) { |
| 7317 unittest.expect(o, unittest.hasLength(2)); | 7317 unittest.expect(o, unittest.hasLength(2)); |
| 7318 unittest.expect(o[0], unittest.equals('foo')); | 7318 unittest.expect(o[0], unittest.equals('foo')); |
| 7319 unittest.expect(o[1], unittest.equals('foo')); | 7319 unittest.expect(o[1], unittest.equals('foo')); |
| 7320 } | 7320 } |
| 7321 | 7321 |
| 7322 core.int buildCounterSubaccount = 0; | 7322 core.int buildCounterSubaccount = 0; |
| 7323 buildSubaccount() { | 7323 buildSubaccount() { |
| 7324 var o = new api.Subaccount(); | 7324 var o = new api.Subaccount(); |
| 7325 buildCounterSubaccount++; | 7325 buildCounterSubaccount++; |
| 7326 if (buildCounterSubaccount < 3) { | 7326 if (buildCounterSubaccount < 3) { |
| 7327 o.accountId = "foo"; | 7327 o.accountId = "foo"; |
| 7328 o.availablePermissionIds = buildUnnamed344(); | 7328 o.availablePermissionIds = buildUnnamed359(); |
| 7329 o.id = "foo"; | 7329 o.id = "foo"; |
| 7330 o.kind = "foo"; | 7330 o.kind = "foo"; |
| 7331 o.name = "foo"; | 7331 o.name = "foo"; |
| 7332 } | 7332 } |
| 7333 buildCounterSubaccount--; | 7333 buildCounterSubaccount--; |
| 7334 return o; | 7334 return o; |
| 7335 } | 7335 } |
| 7336 | 7336 |
| 7337 checkSubaccount(api.Subaccount o) { | 7337 checkSubaccount(api.Subaccount o) { |
| 7338 buildCounterSubaccount++; | 7338 buildCounterSubaccount++; |
| 7339 if (buildCounterSubaccount < 3) { | 7339 if (buildCounterSubaccount < 3) { |
| 7340 unittest.expect(o.accountId, unittest.equals('foo')); | 7340 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7341 checkUnnamed344(o.availablePermissionIds); | 7341 checkUnnamed359(o.availablePermissionIds); |
| 7342 unittest.expect(o.id, unittest.equals('foo')); | 7342 unittest.expect(o.id, unittest.equals('foo')); |
| 7343 unittest.expect(o.kind, unittest.equals('foo')); | 7343 unittest.expect(o.kind, unittest.equals('foo')); |
| 7344 unittest.expect(o.name, unittest.equals('foo')); | 7344 unittest.expect(o.name, unittest.equals('foo')); |
| 7345 } | 7345 } |
| 7346 buildCounterSubaccount--; | 7346 buildCounterSubaccount--; |
| 7347 } | 7347 } |
| 7348 | 7348 |
| 7349 buildUnnamed345() { | 7349 buildUnnamed360() { |
| 7350 var o = new core.List<api.Subaccount>(); | 7350 var o = new core.List<api.Subaccount>(); |
| 7351 o.add(buildSubaccount()); | 7351 o.add(buildSubaccount()); |
| 7352 o.add(buildSubaccount()); | 7352 o.add(buildSubaccount()); |
| 7353 return o; | 7353 return o; |
| 7354 } | 7354 } |
| 7355 | 7355 |
| 7356 checkUnnamed345(core.List<api.Subaccount> o) { | 7356 checkUnnamed360(core.List<api.Subaccount> o) { |
| 7357 unittest.expect(o, unittest.hasLength(2)); | 7357 unittest.expect(o, unittest.hasLength(2)); |
| 7358 checkSubaccount(o[0]); | 7358 checkSubaccount(o[0]); |
| 7359 checkSubaccount(o[1]); | 7359 checkSubaccount(o[1]); |
| 7360 } | 7360 } |
| 7361 | 7361 |
| 7362 core.int buildCounterSubaccountsListResponse = 0; | 7362 core.int buildCounterSubaccountsListResponse = 0; |
| 7363 buildSubaccountsListResponse() { | 7363 buildSubaccountsListResponse() { |
| 7364 var o = new api.SubaccountsListResponse(); | 7364 var o = new api.SubaccountsListResponse(); |
| 7365 buildCounterSubaccountsListResponse++; | 7365 buildCounterSubaccountsListResponse++; |
| 7366 if (buildCounterSubaccountsListResponse < 3) { | 7366 if (buildCounterSubaccountsListResponse < 3) { |
| 7367 o.kind = "foo"; | 7367 o.kind = "foo"; |
| 7368 o.nextPageToken = "foo"; | 7368 o.nextPageToken = "foo"; |
| 7369 o.subaccounts = buildUnnamed345(); | 7369 o.subaccounts = buildUnnamed360(); |
| 7370 } | 7370 } |
| 7371 buildCounterSubaccountsListResponse--; | 7371 buildCounterSubaccountsListResponse--; |
| 7372 return o; | 7372 return o; |
| 7373 } | 7373 } |
| 7374 | 7374 |
| 7375 checkSubaccountsListResponse(api.SubaccountsListResponse o) { | 7375 checkSubaccountsListResponse(api.SubaccountsListResponse o) { |
| 7376 buildCounterSubaccountsListResponse++; | 7376 buildCounterSubaccountsListResponse++; |
| 7377 if (buildCounterSubaccountsListResponse < 3) { | 7377 if (buildCounterSubaccountsListResponse < 3) { |
| 7378 unittest.expect(o.kind, unittest.equals('foo')); | 7378 unittest.expect(o.kind, unittest.equals('foo')); |
| 7379 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7379 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7380 checkUnnamed345(o.subaccounts); | 7380 checkUnnamed360(o.subaccounts); |
| 7381 } | 7381 } |
| 7382 buildCounterSubaccountsListResponse--; | 7382 buildCounterSubaccountsListResponse--; |
| 7383 } | 7383 } |
| 7384 | 7384 |
| 7385 core.int buildCounterTagData = 0; | 7385 core.int buildCounterTagData = 0; |
| 7386 buildTagData() { | 7386 buildTagData() { |
| 7387 var o = new api.TagData(); | 7387 var o = new api.TagData(); |
| 7388 buildCounterTagData++; | 7388 buildCounterTagData++; |
| 7389 if (buildCounterTagData < 3) { | 7389 if (buildCounterTagData < 3) { |
| 7390 o.adId = "foo"; | 7390 o.adId = "foo"; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7510 unittest.expect(o.kind, unittest.equals('foo')); | 7510 unittest.expect(o.kind, unittest.equals('foo')); |
| 7511 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 7511 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 7512 unittest.expect(o.listSize, unittest.equals('foo')); | 7512 unittest.expect(o.listSize, unittest.equals('foo')); |
| 7513 unittest.expect(o.listSource, unittest.equals('foo')); | 7513 unittest.expect(o.listSource, unittest.equals('foo')); |
| 7514 unittest.expect(o.name, unittest.equals('foo')); | 7514 unittest.expect(o.name, unittest.equals('foo')); |
| 7515 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7515 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7516 } | 7516 } |
| 7517 buildCounterTargetableRemarketingList--; | 7517 buildCounterTargetableRemarketingList--; |
| 7518 } | 7518 } |
| 7519 | 7519 |
| 7520 buildUnnamed346() { | 7520 buildUnnamed361() { |
| 7521 var o = new core.List<api.TargetableRemarketingList>(); | 7521 var o = new core.List<api.TargetableRemarketingList>(); |
| 7522 o.add(buildTargetableRemarketingList()); | 7522 o.add(buildTargetableRemarketingList()); |
| 7523 o.add(buildTargetableRemarketingList()); | 7523 o.add(buildTargetableRemarketingList()); |
| 7524 return o; | 7524 return o; |
| 7525 } | 7525 } |
| 7526 | 7526 |
| 7527 checkUnnamed346(core.List<api.TargetableRemarketingList> o) { | 7527 checkUnnamed361(core.List<api.TargetableRemarketingList> o) { |
| 7528 unittest.expect(o, unittest.hasLength(2)); | 7528 unittest.expect(o, unittest.hasLength(2)); |
| 7529 checkTargetableRemarketingList(o[0]); | 7529 checkTargetableRemarketingList(o[0]); |
| 7530 checkTargetableRemarketingList(o[1]); | 7530 checkTargetableRemarketingList(o[1]); |
| 7531 } | 7531 } |
| 7532 | 7532 |
| 7533 core.int buildCounterTargetableRemarketingListsListResponse = 0; | 7533 core.int buildCounterTargetableRemarketingListsListResponse = 0; |
| 7534 buildTargetableRemarketingListsListResponse() { | 7534 buildTargetableRemarketingListsListResponse() { |
| 7535 var o = new api.TargetableRemarketingListsListResponse(); | 7535 var o = new api.TargetableRemarketingListsListResponse(); |
| 7536 buildCounterTargetableRemarketingListsListResponse++; | 7536 buildCounterTargetableRemarketingListsListResponse++; |
| 7537 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7537 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7538 o.kind = "foo"; | 7538 o.kind = "foo"; |
| 7539 o.nextPageToken = "foo"; | 7539 o.nextPageToken = "foo"; |
| 7540 o.targetableRemarketingLists = buildUnnamed346(); | 7540 o.targetableRemarketingLists = buildUnnamed361(); |
| 7541 } | 7541 } |
| 7542 buildCounterTargetableRemarketingListsListResponse--; | 7542 buildCounterTargetableRemarketingListsListResponse--; |
| 7543 return o; | 7543 return o; |
| 7544 } | 7544 } |
| 7545 | 7545 |
| 7546 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { | 7546 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { |
| 7547 buildCounterTargetableRemarketingListsListResponse++; | 7547 buildCounterTargetableRemarketingListsListResponse++; |
| 7548 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7548 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7549 unittest.expect(o.kind, unittest.equals('foo')); | 7549 unittest.expect(o.kind, unittest.equals('foo')); |
| 7550 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7550 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7551 checkUnnamed346(o.targetableRemarketingLists); | 7551 checkUnnamed361(o.targetableRemarketingLists); |
| 7552 } | 7552 } |
| 7553 buildCounterTargetableRemarketingListsListResponse--; | 7553 buildCounterTargetableRemarketingListsListResponse--; |
| 7554 } | 7554 } |
| 7555 | 7555 |
| 7556 buildUnnamed347() { | 7556 buildUnnamed362() { |
| 7557 var o = new core.List<api.Browser>(); | 7557 var o = new core.List<api.Browser>(); |
| 7558 o.add(buildBrowser()); | 7558 o.add(buildBrowser()); |
| 7559 o.add(buildBrowser()); | 7559 o.add(buildBrowser()); |
| 7560 return o; | 7560 return o; |
| 7561 } | 7561 } |
| 7562 | 7562 |
| 7563 checkUnnamed347(core.List<api.Browser> o) { | 7563 checkUnnamed362(core.List<api.Browser> o) { |
| 7564 unittest.expect(o, unittest.hasLength(2)); | 7564 unittest.expect(o, unittest.hasLength(2)); |
| 7565 checkBrowser(o[0]); | 7565 checkBrowser(o[0]); |
| 7566 checkBrowser(o[1]); | 7566 checkBrowser(o[1]); |
| 7567 } | 7567 } |
| 7568 | 7568 |
| 7569 buildUnnamed348() { | 7569 buildUnnamed363() { |
| 7570 var o = new core.List<api.ConnectionType>(); | 7570 var o = new core.List<api.ConnectionType>(); |
| 7571 o.add(buildConnectionType()); | 7571 o.add(buildConnectionType()); |
| 7572 o.add(buildConnectionType()); | 7572 o.add(buildConnectionType()); |
| 7573 return o; | 7573 return o; |
| 7574 } | 7574 } |
| 7575 | 7575 |
| 7576 checkUnnamed348(core.List<api.ConnectionType> o) { | 7576 checkUnnamed363(core.List<api.ConnectionType> o) { |
| 7577 unittest.expect(o, unittest.hasLength(2)); | 7577 unittest.expect(o, unittest.hasLength(2)); |
| 7578 checkConnectionType(o[0]); | 7578 checkConnectionType(o[0]); |
| 7579 checkConnectionType(o[1]); | 7579 checkConnectionType(o[1]); |
| 7580 } | 7580 } |
| 7581 | 7581 |
| 7582 buildUnnamed349() { | 7582 buildUnnamed364() { |
| 7583 var o = new core.List<api.MobileCarrier>(); | 7583 var o = new core.List<api.MobileCarrier>(); |
| 7584 o.add(buildMobileCarrier()); | 7584 o.add(buildMobileCarrier()); |
| 7585 o.add(buildMobileCarrier()); | 7585 o.add(buildMobileCarrier()); |
| 7586 return o; | 7586 return o; |
| 7587 } | 7587 } |
| 7588 | 7588 |
| 7589 checkUnnamed349(core.List<api.MobileCarrier> o) { | 7589 checkUnnamed364(core.List<api.MobileCarrier> o) { |
| 7590 unittest.expect(o, unittest.hasLength(2)); | 7590 unittest.expect(o, unittest.hasLength(2)); |
| 7591 checkMobileCarrier(o[0]); | 7591 checkMobileCarrier(o[0]); |
| 7592 checkMobileCarrier(o[1]); | 7592 checkMobileCarrier(o[1]); |
| 7593 } | 7593 } |
| 7594 | 7594 |
| 7595 buildUnnamed350() { | 7595 buildUnnamed365() { |
| 7596 var o = new core.List<api.OperatingSystemVersion>(); | 7596 var o = new core.List<api.OperatingSystemVersion>(); |
| 7597 o.add(buildOperatingSystemVersion()); | 7597 o.add(buildOperatingSystemVersion()); |
| 7598 o.add(buildOperatingSystemVersion()); | 7598 o.add(buildOperatingSystemVersion()); |
| 7599 return o; | 7599 return o; |
| 7600 } | 7600 } |
| 7601 | 7601 |
| 7602 checkUnnamed350(core.List<api.OperatingSystemVersion> o) { | 7602 checkUnnamed365(core.List<api.OperatingSystemVersion> o) { |
| 7603 unittest.expect(o, unittest.hasLength(2)); | 7603 unittest.expect(o, unittest.hasLength(2)); |
| 7604 checkOperatingSystemVersion(o[0]); | 7604 checkOperatingSystemVersion(o[0]); |
| 7605 checkOperatingSystemVersion(o[1]); | 7605 checkOperatingSystemVersion(o[1]); |
| 7606 } | 7606 } |
| 7607 | 7607 |
| 7608 buildUnnamed351() { | 7608 buildUnnamed366() { |
| 7609 var o = new core.List<api.OperatingSystem>(); | 7609 var o = new core.List<api.OperatingSystem>(); |
| 7610 o.add(buildOperatingSystem()); | 7610 o.add(buildOperatingSystem()); |
| 7611 o.add(buildOperatingSystem()); | 7611 o.add(buildOperatingSystem()); |
| 7612 return o; | 7612 return o; |
| 7613 } | 7613 } |
| 7614 | 7614 |
| 7615 checkUnnamed351(core.List<api.OperatingSystem> o) { | 7615 checkUnnamed366(core.List<api.OperatingSystem> o) { |
| 7616 unittest.expect(o, unittest.hasLength(2)); | 7616 unittest.expect(o, unittest.hasLength(2)); |
| 7617 checkOperatingSystem(o[0]); | 7617 checkOperatingSystem(o[0]); |
| 7618 checkOperatingSystem(o[1]); | 7618 checkOperatingSystem(o[1]); |
| 7619 } | 7619 } |
| 7620 | 7620 |
| 7621 buildUnnamed352() { | 7621 buildUnnamed367() { |
| 7622 var o = new core.List<api.PlatformType>(); | 7622 var o = new core.List<api.PlatformType>(); |
| 7623 o.add(buildPlatformType()); | 7623 o.add(buildPlatformType()); |
| 7624 o.add(buildPlatformType()); | 7624 o.add(buildPlatformType()); |
| 7625 return o; | 7625 return o; |
| 7626 } | 7626 } |
| 7627 | 7627 |
| 7628 checkUnnamed352(core.List<api.PlatformType> o) { | 7628 checkUnnamed367(core.List<api.PlatformType> o) { |
| 7629 unittest.expect(o, unittest.hasLength(2)); | 7629 unittest.expect(o, unittest.hasLength(2)); |
| 7630 checkPlatformType(o[0]); | 7630 checkPlatformType(o[0]); |
| 7631 checkPlatformType(o[1]); | 7631 checkPlatformType(o[1]); |
| 7632 } | 7632 } |
| 7633 | 7633 |
| 7634 core.int buildCounterTechnologyTargeting = 0; | 7634 core.int buildCounterTechnologyTargeting = 0; |
| 7635 buildTechnologyTargeting() { | 7635 buildTechnologyTargeting() { |
| 7636 var o = new api.TechnologyTargeting(); | 7636 var o = new api.TechnologyTargeting(); |
| 7637 buildCounterTechnologyTargeting++; | 7637 buildCounterTechnologyTargeting++; |
| 7638 if (buildCounterTechnologyTargeting < 3) { | 7638 if (buildCounterTechnologyTargeting < 3) { |
| 7639 o.browsers = buildUnnamed347(); | 7639 o.browsers = buildUnnamed362(); |
| 7640 o.connectionTypes = buildUnnamed348(); | 7640 o.connectionTypes = buildUnnamed363(); |
| 7641 o.mobileCarriers = buildUnnamed349(); | 7641 o.mobileCarriers = buildUnnamed364(); |
| 7642 o.operatingSystemVersions = buildUnnamed350(); | 7642 o.operatingSystemVersions = buildUnnamed365(); |
| 7643 o.operatingSystems = buildUnnamed351(); | 7643 o.operatingSystems = buildUnnamed366(); |
| 7644 o.platformTypes = buildUnnamed352(); | 7644 o.platformTypes = buildUnnamed367(); |
| 7645 } | 7645 } |
| 7646 buildCounterTechnologyTargeting--; | 7646 buildCounterTechnologyTargeting--; |
| 7647 return o; | 7647 return o; |
| 7648 } | 7648 } |
| 7649 | 7649 |
| 7650 checkTechnologyTargeting(api.TechnologyTargeting o) { | 7650 checkTechnologyTargeting(api.TechnologyTargeting o) { |
| 7651 buildCounterTechnologyTargeting++; | 7651 buildCounterTechnologyTargeting++; |
| 7652 if (buildCounterTechnologyTargeting < 3) { | 7652 if (buildCounterTechnologyTargeting < 3) { |
| 7653 checkUnnamed347(o.browsers); | 7653 checkUnnamed362(o.browsers); |
| 7654 checkUnnamed348(o.connectionTypes); | 7654 checkUnnamed363(o.connectionTypes); |
| 7655 checkUnnamed349(o.mobileCarriers); | 7655 checkUnnamed364(o.mobileCarriers); |
| 7656 checkUnnamed350(o.operatingSystemVersions); | 7656 checkUnnamed365(o.operatingSystemVersions); |
| 7657 checkUnnamed351(o.operatingSystems); | 7657 checkUnnamed366(o.operatingSystems); |
| 7658 checkUnnamed352(o.platformTypes); | 7658 checkUnnamed367(o.platformTypes); |
| 7659 } | 7659 } |
| 7660 buildCounterTechnologyTargeting--; | 7660 buildCounterTechnologyTargeting--; |
| 7661 } | 7661 } |
| 7662 | 7662 |
| 7663 core.int buildCounterThirdPartyAuthenticationToken = 0; | 7663 core.int buildCounterThirdPartyAuthenticationToken = 0; |
| 7664 buildThirdPartyAuthenticationToken() { | 7664 buildThirdPartyAuthenticationToken() { |
| 7665 var o = new api.ThirdPartyAuthenticationToken(); | 7665 var o = new api.ThirdPartyAuthenticationToken(); |
| 7666 buildCounterThirdPartyAuthenticationToken++; | 7666 buildCounterThirdPartyAuthenticationToken++; |
| 7667 if (buildCounterThirdPartyAuthenticationToken < 3) { | 7667 if (buildCounterThirdPartyAuthenticationToken < 3) { |
| 7668 o.name = "foo"; | 7668 o.name = "foo"; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7751 unittest.expect(o.etag, unittest.equals('foo')); | 7751 unittest.expect(o.etag, unittest.equals('foo')); |
| 7752 unittest.expect(o.kind, unittest.equals('foo')); | 7752 unittest.expect(o.kind, unittest.equals('foo')); |
| 7753 unittest.expect(o.profileId, unittest.equals('foo')); | 7753 unittest.expect(o.profileId, unittest.equals('foo')); |
| 7754 unittest.expect(o.subAccountId, unittest.equals('foo')); | 7754 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 7755 unittest.expect(o.subAccountName, unittest.equals('foo')); | 7755 unittest.expect(o.subAccountName, unittest.equals('foo')); |
| 7756 unittest.expect(o.userName, unittest.equals('foo')); | 7756 unittest.expect(o.userName, unittest.equals('foo')); |
| 7757 } | 7757 } |
| 7758 buildCounterUserProfile--; | 7758 buildCounterUserProfile--; |
| 7759 } | 7759 } |
| 7760 | 7760 |
| 7761 buildUnnamed353() { | 7761 buildUnnamed368() { |
| 7762 var o = new core.List<api.UserProfile>(); | 7762 var o = new core.List<api.UserProfile>(); |
| 7763 o.add(buildUserProfile()); | 7763 o.add(buildUserProfile()); |
| 7764 o.add(buildUserProfile()); | 7764 o.add(buildUserProfile()); |
| 7765 return o; | 7765 return o; |
| 7766 } | 7766 } |
| 7767 | 7767 |
| 7768 checkUnnamed353(core.List<api.UserProfile> o) { | 7768 checkUnnamed368(core.List<api.UserProfile> o) { |
| 7769 unittest.expect(o, unittest.hasLength(2)); | 7769 unittest.expect(o, unittest.hasLength(2)); |
| 7770 checkUserProfile(o[0]); | 7770 checkUserProfile(o[0]); |
| 7771 checkUserProfile(o[1]); | 7771 checkUserProfile(o[1]); |
| 7772 } | 7772 } |
| 7773 | 7773 |
| 7774 core.int buildCounterUserProfileList = 0; | 7774 core.int buildCounterUserProfileList = 0; |
| 7775 buildUserProfileList() { | 7775 buildUserProfileList() { |
| 7776 var o = new api.UserProfileList(); | 7776 var o = new api.UserProfileList(); |
| 7777 buildCounterUserProfileList++; | 7777 buildCounterUserProfileList++; |
| 7778 if (buildCounterUserProfileList < 3) { | 7778 if (buildCounterUserProfileList < 3) { |
| 7779 o.etag = "foo"; | 7779 o.etag = "foo"; |
| 7780 o.items = buildUnnamed353(); | 7780 o.items = buildUnnamed368(); |
| 7781 o.kind = "foo"; | 7781 o.kind = "foo"; |
| 7782 } | 7782 } |
| 7783 buildCounterUserProfileList--; | 7783 buildCounterUserProfileList--; |
| 7784 return o; | 7784 return o; |
| 7785 } | 7785 } |
| 7786 | 7786 |
| 7787 checkUserProfileList(api.UserProfileList o) { | 7787 checkUserProfileList(api.UserProfileList o) { |
| 7788 buildCounterUserProfileList++; | 7788 buildCounterUserProfileList++; |
| 7789 if (buildCounterUserProfileList < 3) { | 7789 if (buildCounterUserProfileList < 3) { |
| 7790 unittest.expect(o.etag, unittest.equals('foo')); | 7790 unittest.expect(o.etag, unittest.equals('foo')); |
| 7791 checkUnnamed353(o.items); | 7791 checkUnnamed368(o.items); |
| 7792 unittest.expect(o.kind, unittest.equals('foo')); | 7792 unittest.expect(o.kind, unittest.equals('foo')); |
| 7793 } | 7793 } |
| 7794 buildCounterUserProfileList--; | 7794 buildCounterUserProfileList--; |
| 7795 } | 7795 } |
| 7796 | 7796 |
| 7797 buildUnnamed354() { | 7797 buildUnnamed369() { |
| 7798 var o = new core.List<api.UserRolePermission>(); | 7798 var o = new core.List<api.UserRolePermission>(); |
| 7799 o.add(buildUserRolePermission()); | 7799 o.add(buildUserRolePermission()); |
| 7800 o.add(buildUserRolePermission()); | 7800 o.add(buildUserRolePermission()); |
| 7801 return o; | 7801 return o; |
| 7802 } | 7802 } |
| 7803 | 7803 |
| 7804 checkUnnamed354(core.List<api.UserRolePermission> o) { | 7804 checkUnnamed369(core.List<api.UserRolePermission> o) { |
| 7805 unittest.expect(o, unittest.hasLength(2)); | 7805 unittest.expect(o, unittest.hasLength(2)); |
| 7806 checkUserRolePermission(o[0]); | 7806 checkUserRolePermission(o[0]); |
| 7807 checkUserRolePermission(o[1]); | 7807 checkUserRolePermission(o[1]); |
| 7808 } | 7808 } |
| 7809 | 7809 |
| 7810 core.int buildCounterUserRole = 0; | 7810 core.int buildCounterUserRole = 0; |
| 7811 buildUserRole() { | 7811 buildUserRole() { |
| 7812 var o = new api.UserRole(); | 7812 var o = new api.UserRole(); |
| 7813 buildCounterUserRole++; | 7813 buildCounterUserRole++; |
| 7814 if (buildCounterUserRole < 3) { | 7814 if (buildCounterUserRole < 3) { |
| 7815 o.accountId = "foo"; | 7815 o.accountId = "foo"; |
| 7816 o.defaultUserRole = true; | 7816 o.defaultUserRole = true; |
| 7817 o.id = "foo"; | 7817 o.id = "foo"; |
| 7818 o.kind = "foo"; | 7818 o.kind = "foo"; |
| 7819 o.name = "foo"; | 7819 o.name = "foo"; |
| 7820 o.parentUserRoleId = "foo"; | 7820 o.parentUserRoleId = "foo"; |
| 7821 o.permissions = buildUnnamed354(); | 7821 o.permissions = buildUnnamed369(); |
| 7822 o.subaccountId = "foo"; | 7822 o.subaccountId = "foo"; |
| 7823 } | 7823 } |
| 7824 buildCounterUserRole--; | 7824 buildCounterUserRole--; |
| 7825 return o; | 7825 return o; |
| 7826 } | 7826 } |
| 7827 | 7827 |
| 7828 checkUserRole(api.UserRole o) { | 7828 checkUserRole(api.UserRole o) { |
| 7829 buildCounterUserRole++; | 7829 buildCounterUserRole++; |
| 7830 if (buildCounterUserRole < 3) { | 7830 if (buildCounterUserRole < 3) { |
| 7831 unittest.expect(o.accountId, unittest.equals('foo')); | 7831 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7832 unittest.expect(o.defaultUserRole, unittest.isTrue); | 7832 unittest.expect(o.defaultUserRole, unittest.isTrue); |
| 7833 unittest.expect(o.id, unittest.equals('foo')); | 7833 unittest.expect(o.id, unittest.equals('foo')); |
| 7834 unittest.expect(o.kind, unittest.equals('foo')); | 7834 unittest.expect(o.kind, unittest.equals('foo')); |
| 7835 unittest.expect(o.name, unittest.equals('foo')); | 7835 unittest.expect(o.name, unittest.equals('foo')); |
| 7836 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); | 7836 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); |
| 7837 checkUnnamed354(o.permissions); | 7837 checkUnnamed369(o.permissions); |
| 7838 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7838 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7839 } | 7839 } |
| 7840 buildCounterUserRole--; | 7840 buildCounterUserRole--; |
| 7841 } | 7841 } |
| 7842 | 7842 |
| 7843 core.int buildCounterUserRolePermission = 0; | 7843 core.int buildCounterUserRolePermission = 0; |
| 7844 buildUserRolePermission() { | 7844 buildUserRolePermission() { |
| 7845 var o = new api.UserRolePermission(); | 7845 var o = new api.UserRolePermission(); |
| 7846 buildCounterUserRolePermission++; | 7846 buildCounterUserRolePermission++; |
| 7847 if (buildCounterUserRolePermission < 3) { | 7847 if (buildCounterUserRolePermission < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7883 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { | 7883 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { |
| 7884 buildCounterUserRolePermissionGroup++; | 7884 buildCounterUserRolePermissionGroup++; |
| 7885 if (buildCounterUserRolePermissionGroup < 3) { | 7885 if (buildCounterUserRolePermissionGroup < 3) { |
| 7886 unittest.expect(o.id, unittest.equals('foo')); | 7886 unittest.expect(o.id, unittest.equals('foo')); |
| 7887 unittest.expect(o.kind, unittest.equals('foo')); | 7887 unittest.expect(o.kind, unittest.equals('foo')); |
| 7888 unittest.expect(o.name, unittest.equals('foo')); | 7888 unittest.expect(o.name, unittest.equals('foo')); |
| 7889 } | 7889 } |
| 7890 buildCounterUserRolePermissionGroup--; | 7890 buildCounterUserRolePermissionGroup--; |
| 7891 } | 7891 } |
| 7892 | 7892 |
| 7893 buildUnnamed355() { | 7893 buildUnnamed370() { |
| 7894 var o = new core.List<api.UserRolePermissionGroup>(); | 7894 var o = new core.List<api.UserRolePermissionGroup>(); |
| 7895 o.add(buildUserRolePermissionGroup()); | 7895 o.add(buildUserRolePermissionGroup()); |
| 7896 o.add(buildUserRolePermissionGroup()); | 7896 o.add(buildUserRolePermissionGroup()); |
| 7897 return o; | 7897 return o; |
| 7898 } | 7898 } |
| 7899 | 7899 |
| 7900 checkUnnamed355(core.List<api.UserRolePermissionGroup> o) { | 7900 checkUnnamed370(core.List<api.UserRolePermissionGroup> o) { |
| 7901 unittest.expect(o, unittest.hasLength(2)); | 7901 unittest.expect(o, unittest.hasLength(2)); |
| 7902 checkUserRolePermissionGroup(o[0]); | 7902 checkUserRolePermissionGroup(o[0]); |
| 7903 checkUserRolePermissionGroup(o[1]); | 7903 checkUserRolePermissionGroup(o[1]); |
| 7904 } | 7904 } |
| 7905 | 7905 |
| 7906 core.int buildCounterUserRolePermissionGroupsListResponse = 0; | 7906 core.int buildCounterUserRolePermissionGroupsListResponse = 0; |
| 7907 buildUserRolePermissionGroupsListResponse() { | 7907 buildUserRolePermissionGroupsListResponse() { |
| 7908 var o = new api.UserRolePermissionGroupsListResponse(); | 7908 var o = new api.UserRolePermissionGroupsListResponse(); |
| 7909 buildCounterUserRolePermissionGroupsListResponse++; | 7909 buildCounterUserRolePermissionGroupsListResponse++; |
| 7910 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7910 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 7911 o.kind = "foo"; | 7911 o.kind = "foo"; |
| 7912 o.userRolePermissionGroups = buildUnnamed355(); | 7912 o.userRolePermissionGroups = buildUnnamed370(); |
| 7913 } | 7913 } |
| 7914 buildCounterUserRolePermissionGroupsListResponse--; | 7914 buildCounterUserRolePermissionGroupsListResponse--; |
| 7915 return o; | 7915 return o; |
| 7916 } | 7916 } |
| 7917 | 7917 |
| 7918 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { | 7918 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { |
| 7919 buildCounterUserRolePermissionGroupsListResponse++; | 7919 buildCounterUserRolePermissionGroupsListResponse++; |
| 7920 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7920 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 7921 unittest.expect(o.kind, unittest.equals('foo')); | 7921 unittest.expect(o.kind, unittest.equals('foo')); |
| 7922 checkUnnamed355(o.userRolePermissionGroups); | 7922 checkUnnamed370(o.userRolePermissionGroups); |
| 7923 } | 7923 } |
| 7924 buildCounterUserRolePermissionGroupsListResponse--; | 7924 buildCounterUserRolePermissionGroupsListResponse--; |
| 7925 } | 7925 } |
| 7926 | 7926 |
| 7927 buildUnnamed356() { | 7927 buildUnnamed371() { |
| 7928 var o = new core.List<api.UserRolePermission>(); | 7928 var o = new core.List<api.UserRolePermission>(); |
| 7929 o.add(buildUserRolePermission()); | 7929 o.add(buildUserRolePermission()); |
| 7930 o.add(buildUserRolePermission()); | 7930 o.add(buildUserRolePermission()); |
| 7931 return o; | 7931 return o; |
| 7932 } | 7932 } |
| 7933 | 7933 |
| 7934 checkUnnamed356(core.List<api.UserRolePermission> o) { | 7934 checkUnnamed371(core.List<api.UserRolePermission> o) { |
| 7935 unittest.expect(o, unittest.hasLength(2)); | 7935 unittest.expect(o, unittest.hasLength(2)); |
| 7936 checkUserRolePermission(o[0]); | 7936 checkUserRolePermission(o[0]); |
| 7937 checkUserRolePermission(o[1]); | 7937 checkUserRolePermission(o[1]); |
| 7938 } | 7938 } |
| 7939 | 7939 |
| 7940 core.int buildCounterUserRolePermissionsListResponse = 0; | 7940 core.int buildCounterUserRolePermissionsListResponse = 0; |
| 7941 buildUserRolePermissionsListResponse() { | 7941 buildUserRolePermissionsListResponse() { |
| 7942 var o = new api.UserRolePermissionsListResponse(); | 7942 var o = new api.UserRolePermissionsListResponse(); |
| 7943 buildCounterUserRolePermissionsListResponse++; | 7943 buildCounterUserRolePermissionsListResponse++; |
| 7944 if (buildCounterUserRolePermissionsListResponse < 3) { | 7944 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 7945 o.kind = "foo"; | 7945 o.kind = "foo"; |
| 7946 o.userRolePermissions = buildUnnamed356(); | 7946 o.userRolePermissions = buildUnnamed371(); |
| 7947 } | 7947 } |
| 7948 buildCounterUserRolePermissionsListResponse--; | 7948 buildCounterUserRolePermissionsListResponse--; |
| 7949 return o; | 7949 return o; |
| 7950 } | 7950 } |
| 7951 | 7951 |
| 7952 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { | 7952 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { |
| 7953 buildCounterUserRolePermissionsListResponse++; | 7953 buildCounterUserRolePermissionsListResponse++; |
| 7954 if (buildCounterUserRolePermissionsListResponse < 3) { | 7954 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 7955 unittest.expect(o.kind, unittest.equals('foo')); | 7955 unittest.expect(o.kind, unittest.equals('foo')); |
| 7956 checkUnnamed356(o.userRolePermissions); | 7956 checkUnnamed371(o.userRolePermissions); |
| 7957 } | 7957 } |
| 7958 buildCounterUserRolePermissionsListResponse--; | 7958 buildCounterUserRolePermissionsListResponse--; |
| 7959 } | 7959 } |
| 7960 | 7960 |
| 7961 buildUnnamed357() { | 7961 buildUnnamed372() { |
| 7962 var o = new core.List<api.UserRole>(); | 7962 var o = new core.List<api.UserRole>(); |
| 7963 o.add(buildUserRole()); | 7963 o.add(buildUserRole()); |
| 7964 o.add(buildUserRole()); | 7964 o.add(buildUserRole()); |
| 7965 return o; | 7965 return o; |
| 7966 } | 7966 } |
| 7967 | 7967 |
| 7968 checkUnnamed357(core.List<api.UserRole> o) { | 7968 checkUnnamed372(core.List<api.UserRole> o) { |
| 7969 unittest.expect(o, unittest.hasLength(2)); | 7969 unittest.expect(o, unittest.hasLength(2)); |
| 7970 checkUserRole(o[0]); | 7970 checkUserRole(o[0]); |
| 7971 checkUserRole(o[1]); | 7971 checkUserRole(o[1]); |
| 7972 } | 7972 } |
| 7973 | 7973 |
| 7974 core.int buildCounterUserRolesListResponse = 0; | 7974 core.int buildCounterUserRolesListResponse = 0; |
| 7975 buildUserRolesListResponse() { | 7975 buildUserRolesListResponse() { |
| 7976 var o = new api.UserRolesListResponse(); | 7976 var o = new api.UserRolesListResponse(); |
| 7977 buildCounterUserRolesListResponse++; | 7977 buildCounterUserRolesListResponse++; |
| 7978 if (buildCounterUserRolesListResponse < 3) { | 7978 if (buildCounterUserRolesListResponse < 3) { |
| 7979 o.kind = "foo"; | 7979 o.kind = "foo"; |
| 7980 o.nextPageToken = "foo"; | 7980 o.nextPageToken = "foo"; |
| 7981 o.userRoles = buildUnnamed357(); | 7981 o.userRoles = buildUnnamed372(); |
| 7982 } | 7982 } |
| 7983 buildCounterUserRolesListResponse--; | 7983 buildCounterUserRolesListResponse--; |
| 7984 return o; | 7984 return o; |
| 7985 } | 7985 } |
| 7986 | 7986 |
| 7987 checkUserRolesListResponse(api.UserRolesListResponse o) { | 7987 checkUserRolesListResponse(api.UserRolesListResponse o) { |
| 7988 buildCounterUserRolesListResponse++; | 7988 buildCounterUserRolesListResponse++; |
| 7989 if (buildCounterUserRolesListResponse < 3) { | 7989 if (buildCounterUserRolesListResponse < 3) { |
| 7990 unittest.expect(o.kind, unittest.equals('foo')); | 7990 unittest.expect(o.kind, unittest.equals('foo')); |
| 7991 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7991 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7992 checkUnnamed357(o.userRoles); | 7992 checkUnnamed372(o.userRoles); |
| 7993 } | 7993 } |
| 7994 buildCounterUserRolesListResponse--; | 7994 buildCounterUserRolesListResponse--; |
| 7995 } | 7995 } |
| 7996 | 7996 |
| 7997 buildUnnamed358() { | |
| 7998 var o = new core.List<core.String>(); | |
| 7999 o.add("foo"); | |
| 8000 o.add("foo"); | |
| 8001 return o; | |
| 8002 } | |
| 8003 | |
| 8004 checkUnnamed358(core.List<core.String> o) { | |
| 8005 unittest.expect(o, unittest.hasLength(2)); | |
| 8006 unittest.expect(o[0], unittest.equals('foo')); | |
| 8007 unittest.expect(o[1], unittest.equals('foo')); | |
| 8008 } | |
| 8009 | |
| 8010 buildUnnamed359() { | |
| 8011 var o = new core.List<core.String>(); | |
| 8012 o.add("foo"); | |
| 8013 o.add("foo"); | |
| 8014 return o; | |
| 8015 } | |
| 8016 | |
| 8017 checkUnnamed359(core.List<core.String> o) { | |
| 8018 unittest.expect(o, unittest.hasLength(2)); | |
| 8019 unittest.expect(o[0], unittest.equals('foo')); | |
| 8020 unittest.expect(o[1], unittest.equals('foo')); | |
| 8021 } | |
| 8022 | |
| 8023 buildUnnamed360() { | |
| 8024 var o = new core.List<core.String>(); | |
| 8025 o.add("foo"); | |
| 8026 o.add("foo"); | |
| 8027 return o; | |
| 8028 } | |
| 8029 | |
| 8030 checkUnnamed360(core.List<core.String> o) { | |
| 8031 unittest.expect(o, unittest.hasLength(2)); | |
| 8032 unittest.expect(o[0], unittest.equals('foo')); | |
| 8033 unittest.expect(o[1], unittest.equals('foo')); | |
| 8034 } | |
| 8035 | |
| 8036 buildUnnamed361() { | |
| 8037 var o = new core.List<core.String>(); | |
| 8038 o.add("foo"); | |
| 8039 o.add("foo"); | |
| 8040 return o; | |
| 8041 } | |
| 8042 | |
| 8043 checkUnnamed361(core.List<core.String> o) { | |
| 8044 unittest.expect(o, unittest.hasLength(2)); | |
| 8045 unittest.expect(o[0], unittest.equals('foo')); | |
| 8046 unittest.expect(o[1], unittest.equals('foo')); | |
| 8047 } | |
| 8048 | |
| 8049 buildUnnamed362() { | |
| 8050 var o = new core.List<core.String>(); | |
| 8051 o.add("foo"); | |
| 8052 o.add("foo"); | |
| 8053 return o; | |
| 8054 } | |
| 8055 | |
| 8056 checkUnnamed362(core.List<core.String> o) { | |
| 8057 unittest.expect(o, unittest.hasLength(2)); | |
| 8058 unittest.expect(o[0], unittest.equals('foo')); | |
| 8059 unittest.expect(o[1], unittest.equals('foo')); | |
| 8060 } | |
| 8061 | |
| 8062 buildUnnamed363() { | |
| 8063 var o = new core.List<core.String>(); | |
| 8064 o.add("foo"); | |
| 8065 o.add("foo"); | |
| 8066 return o; | |
| 8067 } | |
| 8068 | |
| 8069 checkUnnamed363(core.List<core.String> o) { | |
| 8070 unittest.expect(o, unittest.hasLength(2)); | |
| 8071 unittest.expect(o[0], unittest.equals('foo')); | |
| 8072 unittest.expect(o[1], unittest.equals('foo')); | |
| 8073 } | |
| 8074 | |
| 8075 buildUnnamed364() { | |
| 8076 var o = new core.List<core.String>(); | |
| 8077 o.add("foo"); | |
| 8078 o.add("foo"); | |
| 8079 return o; | |
| 8080 } | |
| 8081 | |
| 8082 checkUnnamed364(core.List<core.String> o) { | |
| 8083 unittest.expect(o, unittest.hasLength(2)); | |
| 8084 unittest.expect(o[0], unittest.equals('foo')); | |
| 8085 unittest.expect(o[1], unittest.equals('foo')); | |
| 8086 } | |
| 8087 | |
| 8088 buildUnnamed365() { | |
| 8089 var o = new core.List<core.String>(); | |
| 8090 o.add("foo"); | |
| 8091 o.add("foo"); | |
| 8092 return o; | |
| 8093 } | |
| 8094 | |
| 8095 checkUnnamed365(core.List<core.String> o) { | |
| 8096 unittest.expect(o, unittest.hasLength(2)); | |
| 8097 unittest.expect(o[0], unittest.equals('foo')); | |
| 8098 unittest.expect(o[1], unittest.equals('foo')); | |
| 8099 } | |
| 8100 | |
| 8101 buildUnnamed366() { | |
| 8102 var o = new core.List<core.String>(); | |
| 8103 o.add("foo"); | |
| 8104 o.add("foo"); | |
| 8105 return o; | |
| 8106 } | |
| 8107 | |
| 8108 checkUnnamed366(core.List<core.String> o) { | |
| 8109 unittest.expect(o, unittest.hasLength(2)); | |
| 8110 unittest.expect(o[0], unittest.equals('foo')); | |
| 8111 unittest.expect(o[1], unittest.equals('foo')); | |
| 8112 } | |
| 8113 | |
| 8114 buildUnnamed367() { | |
| 8115 var o = new core.List<core.String>(); | |
| 8116 o.add("foo"); | |
| 8117 o.add("foo"); | |
| 8118 return o; | |
| 8119 } | |
| 8120 | |
| 8121 checkUnnamed367(core.List<core.String> o) { | |
| 8122 unittest.expect(o, unittest.hasLength(2)); | |
| 8123 unittest.expect(o[0], unittest.equals('foo')); | |
| 8124 unittest.expect(o[1], unittest.equals('foo')); | |
| 8125 } | |
| 8126 | |
| 8127 buildUnnamed368() { | |
| 8128 var o = new core.List<core.String>(); | |
| 8129 o.add("foo"); | |
| 8130 o.add("foo"); | |
| 8131 return o; | |
| 8132 } | |
| 8133 | |
| 8134 checkUnnamed368(core.List<core.String> o) { | |
| 8135 unittest.expect(o, unittest.hasLength(2)); | |
| 8136 unittest.expect(o[0], unittest.equals('foo')); | |
| 8137 unittest.expect(o[1], unittest.equals('foo')); | |
| 8138 } | |
| 8139 | |
| 8140 buildUnnamed369() { | |
| 8141 var o = new core.List<core.String>(); | |
| 8142 o.add("foo"); | |
| 8143 o.add("foo"); | |
| 8144 return o; | |
| 8145 } | |
| 8146 | |
| 8147 checkUnnamed369(core.List<core.String> o) { | |
| 8148 unittest.expect(o, unittest.hasLength(2)); | |
| 8149 unittest.expect(o[0], unittest.equals('foo')); | |
| 8150 unittest.expect(o[1], unittest.equals('foo')); | |
| 8151 } | |
| 8152 | |
| 8153 buildUnnamed370() { | |
| 8154 var o = new core.List<core.String>(); | |
| 8155 o.add("foo"); | |
| 8156 o.add("foo"); | |
| 8157 return o; | |
| 8158 } | |
| 8159 | |
| 8160 checkUnnamed370(core.List<core.String> o) { | |
| 8161 unittest.expect(o, unittest.hasLength(2)); | |
| 8162 unittest.expect(o[0], unittest.equals('foo')); | |
| 8163 unittest.expect(o[1], unittest.equals('foo')); | |
| 8164 } | |
| 8165 | |
| 8166 buildUnnamed371() { | |
| 8167 var o = new core.List<core.String>(); | |
| 8168 o.add("foo"); | |
| 8169 o.add("foo"); | |
| 8170 return o; | |
| 8171 } | |
| 8172 | |
| 8173 checkUnnamed371(core.List<core.String> o) { | |
| 8174 unittest.expect(o, unittest.hasLength(2)); | |
| 8175 unittest.expect(o[0], unittest.equals('foo')); | |
| 8176 unittest.expect(o[1], unittest.equals('foo')); | |
| 8177 } | |
| 8178 | |
| 8179 buildUnnamed372() { | |
| 8180 var o = new core.List<core.String>(); | |
| 8181 o.add("foo"); | |
| 8182 o.add("foo"); | |
| 8183 return o; | |
| 8184 } | |
| 8185 | |
| 8186 checkUnnamed372(core.List<core.String> o) { | |
| 8187 unittest.expect(o, unittest.hasLength(2)); | |
| 8188 unittest.expect(o[0], unittest.equals('foo')); | |
| 8189 unittest.expect(o[1], unittest.equals('foo')); | |
| 8190 } | |
| 8191 | |
| 8192 buildUnnamed373() { | 7997 buildUnnamed373() { |
| 8193 var o = new core.List<core.String>(); | 7998 var o = new core.List<core.String>(); |
| 8194 o.add("foo"); | 7999 o.add("foo"); |
| 8195 o.add("foo"); | 8000 o.add("foo"); |
| 8196 return o; | 8001 return o; |
| 8197 } | 8002 } |
| 8198 | 8003 |
| 8199 checkUnnamed373(core.List<core.String> o) { | 8004 checkUnnamed373(core.List<core.String> o) { |
| 8200 unittest.expect(o, unittest.hasLength(2)); | 8005 unittest.expect(o, unittest.hasLength(2)); |
| 8201 unittest.expect(o[0], unittest.equals('foo')); | 8006 unittest.expect(o[0], unittest.equals('foo')); |
| (...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9105 o.add("foo"); | 8910 o.add("foo"); |
| 9106 return o; | 8911 return o; |
| 9107 } | 8912 } |
| 9108 | 8913 |
| 9109 checkUnnamed443(core.List<core.String> o) { | 8914 checkUnnamed443(core.List<core.String> o) { |
| 9110 unittest.expect(o, unittest.hasLength(2)); | 8915 unittest.expect(o, unittest.hasLength(2)); |
| 9111 unittest.expect(o[0], unittest.equals('foo')); | 8916 unittest.expect(o[0], unittest.equals('foo')); |
| 9112 unittest.expect(o[1], unittest.equals('foo')); | 8917 unittest.expect(o[1], unittest.equals('foo')); |
| 9113 } | 8918 } |
| 9114 | 8919 |
| 8920 buildUnnamed444() { |
| 8921 var o = new core.List<core.String>(); |
| 8922 o.add("foo"); |
| 8923 o.add("foo"); |
| 8924 return o; |
| 8925 } |
| 8926 |
| 8927 checkUnnamed444(core.List<core.String> o) { |
| 8928 unittest.expect(o, unittest.hasLength(2)); |
| 8929 unittest.expect(o[0], unittest.equals('foo')); |
| 8930 unittest.expect(o[1], unittest.equals('foo')); |
| 8931 } |
| 8932 |
| 8933 buildUnnamed445() { |
| 8934 var o = new core.List<core.String>(); |
| 8935 o.add("foo"); |
| 8936 o.add("foo"); |
| 8937 return o; |
| 8938 } |
| 8939 |
| 8940 checkUnnamed445(core.List<core.String> o) { |
| 8941 unittest.expect(o, unittest.hasLength(2)); |
| 8942 unittest.expect(o[0], unittest.equals('foo')); |
| 8943 unittest.expect(o[1], unittest.equals('foo')); |
| 8944 } |
| 8945 |
| 8946 buildUnnamed446() { |
| 8947 var o = new core.List<core.String>(); |
| 8948 o.add("foo"); |
| 8949 o.add("foo"); |
| 8950 return o; |
| 8951 } |
| 8952 |
| 8953 checkUnnamed446(core.List<core.String> o) { |
| 8954 unittest.expect(o, unittest.hasLength(2)); |
| 8955 unittest.expect(o[0], unittest.equals('foo')); |
| 8956 unittest.expect(o[1], unittest.equals('foo')); |
| 8957 } |
| 8958 |
| 8959 buildUnnamed447() { |
| 8960 var o = new core.List<core.String>(); |
| 8961 o.add("foo"); |
| 8962 o.add("foo"); |
| 8963 return o; |
| 8964 } |
| 8965 |
| 8966 checkUnnamed447(core.List<core.String> o) { |
| 8967 unittest.expect(o, unittest.hasLength(2)); |
| 8968 unittest.expect(o[0], unittest.equals('foo')); |
| 8969 unittest.expect(o[1], unittest.equals('foo')); |
| 8970 } |
| 8971 |
| 8972 buildUnnamed448() { |
| 8973 var o = new core.List<core.String>(); |
| 8974 o.add("foo"); |
| 8975 o.add("foo"); |
| 8976 return o; |
| 8977 } |
| 8978 |
| 8979 checkUnnamed448(core.List<core.String> o) { |
| 8980 unittest.expect(o, unittest.hasLength(2)); |
| 8981 unittest.expect(o[0], unittest.equals('foo')); |
| 8982 unittest.expect(o[1], unittest.equals('foo')); |
| 8983 } |
| 8984 |
| 8985 buildUnnamed449() { |
| 8986 var o = new core.List<core.String>(); |
| 8987 o.add("foo"); |
| 8988 o.add("foo"); |
| 8989 return o; |
| 8990 } |
| 8991 |
| 8992 checkUnnamed449(core.List<core.String> o) { |
| 8993 unittest.expect(o, unittest.hasLength(2)); |
| 8994 unittest.expect(o[0], unittest.equals('foo')); |
| 8995 unittest.expect(o[1], unittest.equals('foo')); |
| 8996 } |
| 8997 |
| 8998 buildUnnamed450() { |
| 8999 var o = new core.List<core.String>(); |
| 9000 o.add("foo"); |
| 9001 o.add("foo"); |
| 9002 return o; |
| 9003 } |
| 9004 |
| 9005 checkUnnamed450(core.List<core.String> o) { |
| 9006 unittest.expect(o, unittest.hasLength(2)); |
| 9007 unittest.expect(o[0], unittest.equals('foo')); |
| 9008 unittest.expect(o[1], unittest.equals('foo')); |
| 9009 } |
| 9010 |
| 9011 buildUnnamed451() { |
| 9012 var o = new core.List<core.String>(); |
| 9013 o.add("foo"); |
| 9014 o.add("foo"); |
| 9015 return o; |
| 9016 } |
| 9017 |
| 9018 checkUnnamed451(core.List<core.String> o) { |
| 9019 unittest.expect(o, unittest.hasLength(2)); |
| 9020 unittest.expect(o[0], unittest.equals('foo')); |
| 9021 unittest.expect(o[1], unittest.equals('foo')); |
| 9022 } |
| 9023 |
| 9024 buildUnnamed452() { |
| 9025 var o = new core.List<core.String>(); |
| 9026 o.add("foo"); |
| 9027 o.add("foo"); |
| 9028 return o; |
| 9029 } |
| 9030 |
| 9031 checkUnnamed452(core.List<core.String> o) { |
| 9032 unittest.expect(o, unittest.hasLength(2)); |
| 9033 unittest.expect(o[0], unittest.equals('foo')); |
| 9034 unittest.expect(o[1], unittest.equals('foo')); |
| 9035 } |
| 9036 |
| 9037 buildUnnamed453() { |
| 9038 var o = new core.List<core.String>(); |
| 9039 o.add("foo"); |
| 9040 o.add("foo"); |
| 9041 return o; |
| 9042 } |
| 9043 |
| 9044 checkUnnamed453(core.List<core.String> o) { |
| 9045 unittest.expect(o, unittest.hasLength(2)); |
| 9046 unittest.expect(o[0], unittest.equals('foo')); |
| 9047 unittest.expect(o[1], unittest.equals('foo')); |
| 9048 } |
| 9049 |
| 9050 buildUnnamed454() { |
| 9051 var o = new core.List<core.String>(); |
| 9052 o.add("foo"); |
| 9053 o.add("foo"); |
| 9054 return o; |
| 9055 } |
| 9056 |
| 9057 checkUnnamed454(core.List<core.String> o) { |
| 9058 unittest.expect(o, unittest.hasLength(2)); |
| 9059 unittest.expect(o[0], unittest.equals('foo')); |
| 9060 unittest.expect(o[1], unittest.equals('foo')); |
| 9061 } |
| 9062 |
| 9063 buildUnnamed455() { |
| 9064 var o = new core.List<core.String>(); |
| 9065 o.add("foo"); |
| 9066 o.add("foo"); |
| 9067 return o; |
| 9068 } |
| 9069 |
| 9070 checkUnnamed455(core.List<core.String> o) { |
| 9071 unittest.expect(o, unittest.hasLength(2)); |
| 9072 unittest.expect(o[0], unittest.equals('foo')); |
| 9073 unittest.expect(o[1], unittest.equals('foo')); |
| 9074 } |
| 9075 |
| 9076 buildUnnamed456() { |
| 9077 var o = new core.List<core.String>(); |
| 9078 o.add("foo"); |
| 9079 o.add("foo"); |
| 9080 return o; |
| 9081 } |
| 9082 |
| 9083 checkUnnamed456(core.List<core.String> o) { |
| 9084 unittest.expect(o, unittest.hasLength(2)); |
| 9085 unittest.expect(o[0], unittest.equals('foo')); |
| 9086 unittest.expect(o[1], unittest.equals('foo')); |
| 9087 } |
| 9088 |
| 9089 buildUnnamed457() { |
| 9090 var o = new core.List<core.String>(); |
| 9091 o.add("foo"); |
| 9092 o.add("foo"); |
| 9093 return o; |
| 9094 } |
| 9095 |
| 9096 checkUnnamed457(core.List<core.String> o) { |
| 9097 unittest.expect(o, unittest.hasLength(2)); |
| 9098 unittest.expect(o[0], unittest.equals('foo')); |
| 9099 unittest.expect(o[1], unittest.equals('foo')); |
| 9100 } |
| 9101 |
| 9102 buildUnnamed458() { |
| 9103 var o = new core.List<core.String>(); |
| 9104 o.add("foo"); |
| 9105 o.add("foo"); |
| 9106 return o; |
| 9107 } |
| 9108 |
| 9109 checkUnnamed458(core.List<core.String> o) { |
| 9110 unittest.expect(o, unittest.hasLength(2)); |
| 9111 unittest.expect(o[0], unittest.equals('foo')); |
| 9112 unittest.expect(o[1], unittest.equals('foo')); |
| 9113 } |
| 9114 |
| 9115 | 9115 |
| 9116 main() { | 9116 main() { |
| 9117 unittest.group("obj-schema-Account", () { | 9117 unittest.group("obj-schema-Account", () { |
| 9118 unittest.test("to-json--from-json", () { | 9118 unittest.test("to-json--from-json", () { |
| 9119 var o = buildAccount(); | 9119 var o = buildAccount(); |
| 9120 var od = new api.Account.fromJson(o.toJson()); | 9120 var od = new api.Account.fromJson(o.toJson()); |
| 9121 checkAccount(od); | 9121 checkAccount(od); |
| 9122 }); | 9122 }); |
| 9123 }); | 9123 }); |
| 9124 | 9124 |
| (...skipping 2129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11254 checkAccountUserProfile(response); | 11254 checkAccountUserProfile(response); |
| 11255 }))); | 11255 }))); |
| 11256 }); | 11256 }); |
| 11257 | 11257 |
| 11258 unittest.test("method--list", () { | 11258 unittest.test("method--list", () { |
| 11259 | 11259 |
| 11260 var mock = new HttpServerMock(); | 11260 var mock = new HttpServerMock(); |
| 11261 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; | 11261 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; |
| 11262 var arg_profileId = "foo"; | 11262 var arg_profileId = "foo"; |
| 11263 var arg_active = true; | 11263 var arg_active = true; |
| 11264 var arg_ids = buildUnnamed358(); | 11264 var arg_ids = buildUnnamed373(); |
| 11265 var arg_maxResults = 42; | 11265 var arg_maxResults = 42; |
| 11266 var arg_pageToken = "foo"; | 11266 var arg_pageToken = "foo"; |
| 11267 var arg_searchString = "foo"; | 11267 var arg_searchString = "foo"; |
| 11268 var arg_sortField = "foo"; | 11268 var arg_sortField = "foo"; |
| 11269 var arg_sortOrder = "foo"; | 11269 var arg_sortOrder = "foo"; |
| 11270 var arg_subaccountId = "foo"; | 11270 var arg_subaccountId = "foo"; |
| 11271 var arg_userRoleId = "foo"; | 11271 var arg_userRoleId = "foo"; |
| 11272 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11272 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11273 var path = (req.url).path; | 11273 var path = (req.url).path; |
| 11274 var pathOffset = 0; | 11274 var pathOffset = 0; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11502 checkAccount(response); | 11502 checkAccount(response); |
| 11503 }))); | 11503 }))); |
| 11504 }); | 11504 }); |
| 11505 | 11505 |
| 11506 unittest.test("method--list", () { | 11506 unittest.test("method--list", () { |
| 11507 | 11507 |
| 11508 var mock = new HttpServerMock(); | 11508 var mock = new HttpServerMock(); |
| 11509 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; | 11509 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; |
| 11510 var arg_profileId = "foo"; | 11510 var arg_profileId = "foo"; |
| 11511 var arg_active = true; | 11511 var arg_active = true; |
| 11512 var arg_ids = buildUnnamed359(); | 11512 var arg_ids = buildUnnamed374(); |
| 11513 var arg_maxResults = 42; | 11513 var arg_maxResults = 42; |
| 11514 var arg_pageToken = "foo"; | 11514 var arg_pageToken = "foo"; |
| 11515 var arg_searchString = "foo"; | 11515 var arg_searchString = "foo"; |
| 11516 var arg_sortField = "foo"; | 11516 var arg_sortField = "foo"; |
| 11517 var arg_sortOrder = "foo"; | 11517 var arg_sortOrder = "foo"; |
| 11518 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11518 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11519 var path = (req.url).path; | 11519 var path = (req.url).path; |
| 11520 var pathOffset = 0; | 11520 var pathOffset = 0; |
| 11521 var index; | 11521 var index; |
| 11522 var subPart; | 11522 var subPart; |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11805 }); | 11805 }); |
| 11806 | 11806 |
| 11807 unittest.test("method--list", () { | 11807 unittest.test("method--list", () { |
| 11808 | 11808 |
| 11809 var mock = new HttpServerMock(); | 11809 var mock = new HttpServerMock(); |
| 11810 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; | 11810 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; |
| 11811 var arg_profileId = "foo"; | 11811 var arg_profileId = "foo"; |
| 11812 var arg_active = true; | 11812 var arg_active = true; |
| 11813 var arg_advertiserId = "foo"; | 11813 var arg_advertiserId = "foo"; |
| 11814 var arg_archived = true; | 11814 var arg_archived = true; |
| 11815 var arg_audienceSegmentIds = buildUnnamed360(); | 11815 var arg_audienceSegmentIds = buildUnnamed375(); |
| 11816 var arg_campaignIds = buildUnnamed361(); | 11816 var arg_campaignIds = buildUnnamed376(); |
| 11817 var arg_compatibility = "foo"; | 11817 var arg_compatibility = "foo"; |
| 11818 var arg_creativeIds = buildUnnamed362(); | 11818 var arg_creativeIds = buildUnnamed377(); |
| 11819 var arg_creativeOptimizationConfigurationIds = buildUnnamed363(); | 11819 var arg_creativeOptimizationConfigurationIds = buildUnnamed378(); |
| 11820 var arg_creativeType = "foo"; | 11820 var arg_creativeType = "foo"; |
| 11821 var arg_dynamicClickTracker = true; | 11821 var arg_dynamicClickTracker = true; |
| 11822 var arg_ids = buildUnnamed364(); | 11822 var arg_ids = buildUnnamed379(); |
| 11823 var arg_landingPageIds = buildUnnamed365(); | 11823 var arg_landingPageIds = buildUnnamed380(); |
| 11824 var arg_maxResults = 42; | 11824 var arg_maxResults = 42; |
| 11825 var arg_overriddenEventTagId = "foo"; | 11825 var arg_overriddenEventTagId = "foo"; |
| 11826 var arg_pageToken = "foo"; | 11826 var arg_pageToken = "foo"; |
| 11827 var arg_placementIds = buildUnnamed366(); | 11827 var arg_placementIds = buildUnnamed381(); |
| 11828 var arg_remarketingListIds = buildUnnamed367(); | 11828 var arg_remarketingListIds = buildUnnamed382(); |
| 11829 var arg_searchString = "foo"; | 11829 var arg_searchString = "foo"; |
| 11830 var arg_sizeIds = buildUnnamed368(); | 11830 var arg_sizeIds = buildUnnamed383(); |
| 11831 var arg_sortField = "foo"; | 11831 var arg_sortField = "foo"; |
| 11832 var arg_sortOrder = "foo"; | 11832 var arg_sortOrder = "foo"; |
| 11833 var arg_sslCompliant = true; | 11833 var arg_sslCompliant = true; |
| 11834 var arg_sslRequired = true; | 11834 var arg_sslRequired = true; |
| 11835 var arg_type = buildUnnamed369(); | 11835 var arg_type = buildUnnamed384(); |
| 11836 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11836 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11837 var path = (req.url).path; | 11837 var path = (req.url).path; |
| 11838 var pathOffset = 0; | 11838 var pathOffset = 0; |
| 11839 var index; | 11839 var index; |
| 11840 var subPart; | 11840 var subPart; |
| 11841 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 11841 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 11842 pathOffset += 1; | 11842 pathOffset += 1; |
| 11843 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 11843 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| 11844 pathOffset += 18; | 11844 pathOffset += 18; |
| 11845 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 11845 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12192 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { | 12192 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { |
| 12193 checkAdvertiserGroup(response); | 12193 checkAdvertiserGroup(response); |
| 12194 }))); | 12194 }))); |
| 12195 }); | 12195 }); |
| 12196 | 12196 |
| 12197 unittest.test("method--list", () { | 12197 unittest.test("method--list", () { |
| 12198 | 12198 |
| 12199 var mock = new HttpServerMock(); | 12199 var mock = new HttpServerMock(); |
| 12200 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; | 12200 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; |
| 12201 var arg_profileId = "foo"; | 12201 var arg_profileId = "foo"; |
| 12202 var arg_ids = buildUnnamed370(); | 12202 var arg_ids = buildUnnamed385(); |
| 12203 var arg_maxResults = 42; | 12203 var arg_maxResults = 42; |
| 12204 var arg_pageToken = "foo"; | 12204 var arg_pageToken = "foo"; |
| 12205 var arg_searchString = "foo"; | 12205 var arg_searchString = "foo"; |
| 12206 var arg_sortField = "foo"; | 12206 var arg_sortField = "foo"; |
| 12207 var arg_sortOrder = "foo"; | 12207 var arg_sortOrder = "foo"; |
| 12208 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12208 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 12209 var path = (req.url).path; | 12209 var path = (req.url).path; |
| 12210 var pathOffset = 0; | 12210 var pathOffset = 0; |
| 12211 var index; | 12211 var index; |
| 12212 var subPart; | 12212 var subPart; |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12491 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { | 12491 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { |
| 12492 checkAdvertiser(response); | 12492 checkAdvertiser(response); |
| 12493 }))); | 12493 }))); |
| 12494 }); | 12494 }); |
| 12495 | 12495 |
| 12496 unittest.test("method--list", () { | 12496 unittest.test("method--list", () { |
| 12497 | 12497 |
| 12498 var mock = new HttpServerMock(); | 12498 var mock = new HttpServerMock(); |
| 12499 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; | 12499 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; |
| 12500 var arg_profileId = "foo"; | 12500 var arg_profileId = "foo"; |
| 12501 var arg_advertiserGroupIds = buildUnnamed371(); | 12501 var arg_advertiserGroupIds = buildUnnamed386(); |
| 12502 var arg_floodlightConfigurationIds = buildUnnamed372(); | 12502 var arg_floodlightConfigurationIds = buildUnnamed387(); |
| 12503 var arg_ids = buildUnnamed373(); | 12503 var arg_ids = buildUnnamed388(); |
| 12504 var arg_includeAdvertisersWithoutGroupsOnly = true; | 12504 var arg_includeAdvertisersWithoutGroupsOnly = true; |
| 12505 var arg_maxResults = 42; | 12505 var arg_maxResults = 42; |
| 12506 var arg_onlyParent = true; | 12506 var arg_onlyParent = true; |
| 12507 var arg_pageToken = "foo"; | 12507 var arg_pageToken = "foo"; |
| 12508 var arg_searchString = "foo"; | 12508 var arg_searchString = "foo"; |
| 12509 var arg_sortField = "foo"; | 12509 var arg_sortField = "foo"; |
| 12510 var arg_sortOrder = "foo"; | 12510 var arg_sortOrder = "foo"; |
| 12511 var arg_status = "foo"; | 12511 var arg_status = "foo"; |
| 12512 var arg_subaccountId = "foo"; | 12512 var arg_subaccountId = "foo"; |
| 12513 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12513 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12999 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { | 12999 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { |
| 13000 checkCampaign(response); | 13000 checkCampaign(response); |
| 13001 }))); | 13001 }))); |
| 13002 }); | 13002 }); |
| 13003 | 13003 |
| 13004 unittest.test("method--list", () { | 13004 unittest.test("method--list", () { |
| 13005 | 13005 |
| 13006 var mock = new HttpServerMock(); | 13006 var mock = new HttpServerMock(); |
| 13007 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; | 13007 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; |
| 13008 var arg_profileId = "foo"; | 13008 var arg_profileId = "foo"; |
| 13009 var arg_advertiserGroupIds = buildUnnamed374(); | 13009 var arg_advertiserGroupIds = buildUnnamed389(); |
| 13010 var arg_advertiserIds = buildUnnamed375(); | 13010 var arg_advertiserIds = buildUnnamed390(); |
| 13011 var arg_archived = true; | 13011 var arg_archived = true; |
| 13012 var arg_atLeastOneOptimizationActivity = true; | 13012 var arg_atLeastOneOptimizationActivity = true; |
| 13013 var arg_excludedIds = buildUnnamed376(); | 13013 var arg_excludedIds = buildUnnamed391(); |
| 13014 var arg_ids = buildUnnamed377(); | 13014 var arg_ids = buildUnnamed392(); |
| 13015 var arg_maxResults = 42; | 13015 var arg_maxResults = 42; |
| 13016 var arg_overriddenEventTagId = "foo"; | 13016 var arg_overriddenEventTagId = "foo"; |
| 13017 var arg_pageToken = "foo"; | 13017 var arg_pageToken = "foo"; |
| 13018 var arg_searchString = "foo"; | 13018 var arg_searchString = "foo"; |
| 13019 var arg_sortField = "foo"; | 13019 var arg_sortField = "foo"; |
| 13020 var arg_sortOrder = "foo"; | 13020 var arg_sortOrder = "foo"; |
| 13021 var arg_subaccountId = "foo"; | 13021 var arg_subaccountId = "foo"; |
| 13022 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13022 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13023 var path = (req.url).path; | 13023 var path = (req.url).path; |
| 13024 var pathOffset = 0; | 13024 var pathOffset = 0; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13256 checkChangeLog(response); | 13256 checkChangeLog(response); |
| 13257 }))); | 13257 }))); |
| 13258 }); | 13258 }); |
| 13259 | 13259 |
| 13260 unittest.test("method--list", () { | 13260 unittest.test("method--list", () { |
| 13261 | 13261 |
| 13262 var mock = new HttpServerMock(); | 13262 var mock = new HttpServerMock(); |
| 13263 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; | 13263 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; |
| 13264 var arg_profileId = "foo"; | 13264 var arg_profileId = "foo"; |
| 13265 var arg_action = "foo"; | 13265 var arg_action = "foo"; |
| 13266 var arg_ids = buildUnnamed378(); | 13266 var arg_ids = buildUnnamed393(); |
| 13267 var arg_maxChangeTime = "foo"; | 13267 var arg_maxChangeTime = "foo"; |
| 13268 var arg_maxResults = 42; | 13268 var arg_maxResults = 42; |
| 13269 var arg_minChangeTime = "foo"; | 13269 var arg_minChangeTime = "foo"; |
| 13270 var arg_objectIds = buildUnnamed379(); | 13270 var arg_objectIds = buildUnnamed394(); |
| 13271 var arg_objectType = "foo"; | 13271 var arg_objectType = "foo"; |
| 13272 var arg_pageToken = "foo"; | 13272 var arg_pageToken = "foo"; |
| 13273 var arg_searchString = "foo"; | 13273 var arg_searchString = "foo"; |
| 13274 var arg_userProfileIds = buildUnnamed380(); | 13274 var arg_userProfileIds = buildUnnamed395(); |
| 13275 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13275 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13276 var path = (req.url).path; | 13276 var path = (req.url).path; |
| 13277 var pathOffset = 0; | 13277 var pathOffset = 0; |
| 13278 var index; | 13278 var index; |
| 13279 var subPart; | 13279 var subPart; |
| 13280 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13280 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13281 pathOffset += 1; | 13281 pathOffset += 1; |
| 13282 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 13282 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| 13283 pathOffset += 18; | 13283 pathOffset += 18; |
| 13284 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13284 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13332 | 13332 |
| 13333 }); | 13333 }); |
| 13334 | 13334 |
| 13335 | 13335 |
| 13336 unittest.group("resource-CitiesResourceApi", () { | 13336 unittest.group("resource-CitiesResourceApi", () { |
| 13337 unittest.test("method--list", () { | 13337 unittest.test("method--list", () { |
| 13338 | 13338 |
| 13339 var mock = new HttpServerMock(); | 13339 var mock = new HttpServerMock(); |
| 13340 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; | 13340 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; |
| 13341 var arg_profileId = "foo"; | 13341 var arg_profileId = "foo"; |
| 13342 var arg_countryDartIds = buildUnnamed381(); | 13342 var arg_countryDartIds = buildUnnamed396(); |
| 13343 var arg_dartIds = buildUnnamed382(); | 13343 var arg_dartIds = buildUnnamed397(); |
| 13344 var arg_namePrefix = "foo"; | 13344 var arg_namePrefix = "foo"; |
| 13345 var arg_regionDartIds = buildUnnamed383(); | 13345 var arg_regionDartIds = buildUnnamed398(); |
| 13346 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13346 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13347 var path = (req.url).path; | 13347 var path = (req.url).path; |
| 13348 var pathOffset = 0; | 13348 var pathOffset = 0; |
| 13349 var index; | 13349 var index; |
| 13350 var subPart; | 13350 var subPart; |
| 13351 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13351 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13352 pathOffset += 1; | 13352 pathOffset += 1; |
| 13353 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 13353 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| 13354 pathOffset += 18; | 13354 pathOffset += 18; |
| 13355 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13355 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13680 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { | 13680 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { |
| 13681 checkContentCategory(response); | 13681 checkContentCategory(response); |
| 13682 }))); | 13682 }))); |
| 13683 }); | 13683 }); |
| 13684 | 13684 |
| 13685 unittest.test("method--list", () { | 13685 unittest.test("method--list", () { |
| 13686 | 13686 |
| 13687 var mock = new HttpServerMock(); | 13687 var mock = new HttpServerMock(); |
| 13688 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; | 13688 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; |
| 13689 var arg_profileId = "foo"; | 13689 var arg_profileId = "foo"; |
| 13690 var arg_ids = buildUnnamed384(); | 13690 var arg_ids = buildUnnamed399(); |
| 13691 var arg_maxResults = 42; | 13691 var arg_maxResults = 42; |
| 13692 var arg_pageToken = "foo"; | 13692 var arg_pageToken = "foo"; |
| 13693 var arg_searchString = "foo"; | 13693 var arg_searchString = "foo"; |
| 13694 var arg_sortField = "foo"; | 13694 var arg_sortField = "foo"; |
| 13695 var arg_sortOrder = "foo"; | 13695 var arg_sortOrder = "foo"; |
| 13696 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13696 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13697 var path = (req.url).path; | 13697 var path = (req.url).path; |
| 13698 var pathOffset = 0; | 13698 var pathOffset = 0; |
| 13699 var index; | 13699 var index; |
| 13700 var subPart; | 13700 var subPart; |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14244 checkCreativeFieldValue(response); | 14244 checkCreativeFieldValue(response); |
| 14245 }))); | 14245 }))); |
| 14246 }); | 14246 }); |
| 14247 | 14247 |
| 14248 unittest.test("method--list", () { | 14248 unittest.test("method--list", () { |
| 14249 | 14249 |
| 14250 var mock = new HttpServerMock(); | 14250 var mock = new HttpServerMock(); |
| 14251 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; | 14251 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; |
| 14252 var arg_profileId = "foo"; | 14252 var arg_profileId = "foo"; |
| 14253 var arg_creativeFieldId = "foo"; | 14253 var arg_creativeFieldId = "foo"; |
| 14254 var arg_ids = buildUnnamed385(); | 14254 var arg_ids = buildUnnamed400(); |
| 14255 var arg_maxResults = 42; | 14255 var arg_maxResults = 42; |
| 14256 var arg_pageToken = "foo"; | 14256 var arg_pageToken = "foo"; |
| 14257 var arg_searchString = "foo"; | 14257 var arg_searchString = "foo"; |
| 14258 var arg_sortField = "foo"; | 14258 var arg_sortField = "foo"; |
| 14259 var arg_sortOrder = "foo"; | 14259 var arg_sortOrder = "foo"; |
| 14260 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14260 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14261 var path = (req.url).path; | 14261 var path = (req.url).path; |
| 14262 var pathOffset = 0; | 14262 var pathOffset = 0; |
| 14263 var index; | 14263 var index; |
| 14264 var subPart; | 14264 var subPart; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14621 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { | 14621 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { |
| 14622 checkCreativeField(response); | 14622 checkCreativeField(response); |
| 14623 }))); | 14623 }))); |
| 14624 }); | 14624 }); |
| 14625 | 14625 |
| 14626 unittest.test("method--list", () { | 14626 unittest.test("method--list", () { |
| 14627 | 14627 |
| 14628 var mock = new HttpServerMock(); | 14628 var mock = new HttpServerMock(); |
| 14629 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; | 14629 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; |
| 14630 var arg_profileId = "foo"; | 14630 var arg_profileId = "foo"; |
| 14631 var arg_advertiserIds = buildUnnamed386(); | 14631 var arg_advertiserIds = buildUnnamed401(); |
| 14632 var arg_ids = buildUnnamed387(); | 14632 var arg_ids = buildUnnamed402(); |
| 14633 var arg_maxResults = 42; | 14633 var arg_maxResults = 42; |
| 14634 var arg_pageToken = "foo"; | 14634 var arg_pageToken = "foo"; |
| 14635 var arg_searchString = "foo"; | 14635 var arg_searchString = "foo"; |
| 14636 var arg_sortField = "foo"; | 14636 var arg_sortField = "foo"; |
| 14637 var arg_sortOrder = "foo"; | 14637 var arg_sortOrder = "foo"; |
| 14638 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14638 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14639 var path = (req.url).path; | 14639 var path = (req.url).path; |
| 14640 var pathOffset = 0; | 14640 var pathOffset = 0; |
| 14641 var index; | 14641 var index; |
| 14642 var subPart; | 14642 var subPart; |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14922 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { | 14922 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { |
| 14923 checkCreativeGroup(response); | 14923 checkCreativeGroup(response); |
| 14924 }))); | 14924 }))); |
| 14925 }); | 14925 }); |
| 14926 | 14926 |
| 14927 unittest.test("method--list", () { | 14927 unittest.test("method--list", () { |
| 14928 | 14928 |
| 14929 var mock = new HttpServerMock(); | 14929 var mock = new HttpServerMock(); |
| 14930 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; | 14930 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; |
| 14931 var arg_profileId = "foo"; | 14931 var arg_profileId = "foo"; |
| 14932 var arg_advertiserIds = buildUnnamed388(); | 14932 var arg_advertiserIds = buildUnnamed403(); |
| 14933 var arg_groupNumber = 42; | 14933 var arg_groupNumber = 42; |
| 14934 var arg_ids = buildUnnamed389(); | 14934 var arg_ids = buildUnnamed404(); |
| 14935 var arg_maxResults = 42; | 14935 var arg_maxResults = 42; |
| 14936 var arg_pageToken = "foo"; | 14936 var arg_pageToken = "foo"; |
| 14937 var arg_searchString = "foo"; | 14937 var arg_searchString = "foo"; |
| 14938 var arg_sortField = "foo"; | 14938 var arg_sortField = "foo"; |
| 14939 var arg_sortOrder = "foo"; | 14939 var arg_sortOrder = "foo"; |
| 14940 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14940 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14941 var path = (req.url).path; | 14941 var path = (req.url).path; |
| 14942 var pathOffset = 0; | 14942 var pathOffset = 0; |
| 14943 var index; | 14943 var index; |
| 14944 var subPart; | 14944 var subPart; |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15229 | 15229 |
| 15230 unittest.test("method--list", () { | 15230 unittest.test("method--list", () { |
| 15231 | 15231 |
| 15232 var mock = new HttpServerMock(); | 15232 var mock = new HttpServerMock(); |
| 15233 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; | 15233 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; |
| 15234 var arg_profileId = "foo"; | 15234 var arg_profileId = "foo"; |
| 15235 var arg_active = true; | 15235 var arg_active = true; |
| 15236 var arg_advertiserId = "foo"; | 15236 var arg_advertiserId = "foo"; |
| 15237 var arg_archived = true; | 15237 var arg_archived = true; |
| 15238 var arg_campaignId = "foo"; | 15238 var arg_campaignId = "foo"; |
| 15239 var arg_companionCreativeIds = buildUnnamed390(); | 15239 var arg_companionCreativeIds = buildUnnamed405(); |
| 15240 var arg_creativeFieldIds = buildUnnamed391(); | 15240 var arg_creativeFieldIds = buildUnnamed406(); |
| 15241 var arg_ids = buildUnnamed392(); | 15241 var arg_ids = buildUnnamed407(); |
| 15242 var arg_maxResults = 42; | 15242 var arg_maxResults = 42; |
| 15243 var arg_pageToken = "foo"; | 15243 var arg_pageToken = "foo"; |
| 15244 var arg_renderingIds = buildUnnamed393(); | 15244 var arg_renderingIds = buildUnnamed408(); |
| 15245 var arg_searchString = "foo"; | 15245 var arg_searchString = "foo"; |
| 15246 var arg_sizeIds = buildUnnamed394(); | 15246 var arg_sizeIds = buildUnnamed409(); |
| 15247 var arg_sortField = "foo"; | 15247 var arg_sortField = "foo"; |
| 15248 var arg_sortOrder = "foo"; | 15248 var arg_sortOrder = "foo"; |
| 15249 var arg_studioCreativeId = "foo"; | 15249 var arg_studioCreativeId = "foo"; |
| 15250 var arg_types = buildUnnamed395(); | 15250 var arg_types = buildUnnamed410(); |
| 15251 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15251 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15252 var path = (req.url).path; | 15252 var path = (req.url).path; |
| 15253 var pathOffset = 0; | 15253 var pathOffset = 0; |
| 15254 var index; | 15254 var index; |
| 15255 var subPart; | 15255 var subPart; |
| 15256 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 15256 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 15257 pathOffset += 1; | 15257 pathOffset += 1; |
| 15258 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 15258 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| 15259 pathOffset += 18; | 15259 pathOffset += 18; |
| 15260 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 15260 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15552 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { | 15552 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { |
| 15553 checkDirectorySiteContact(response); | 15553 checkDirectorySiteContact(response); |
| 15554 }))); | 15554 }))); |
| 15555 }); | 15555 }); |
| 15556 | 15556 |
| 15557 unittest.test("method--list", () { | 15557 unittest.test("method--list", () { |
| 15558 | 15558 |
| 15559 var mock = new HttpServerMock(); | 15559 var mock = new HttpServerMock(); |
| 15560 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; | 15560 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; |
| 15561 var arg_profileId = "foo"; | 15561 var arg_profileId = "foo"; |
| 15562 var arg_directorySiteIds = buildUnnamed396(); | 15562 var arg_directorySiteIds = buildUnnamed411(); |
| 15563 var arg_ids = buildUnnamed397(); | 15563 var arg_ids = buildUnnamed412(); |
| 15564 var arg_maxResults = 42; | 15564 var arg_maxResults = 42; |
| 15565 var arg_pageToken = "foo"; | 15565 var arg_pageToken = "foo"; |
| 15566 var arg_searchString = "foo"; | 15566 var arg_searchString = "foo"; |
| 15567 var arg_sortField = "foo"; | 15567 var arg_sortField = "foo"; |
| 15568 var arg_sortOrder = "foo"; | 15568 var arg_sortOrder = "foo"; |
| 15569 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15569 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15570 var path = (req.url).path; | 15570 var path = (req.url).path; |
| 15571 var pathOffset = 0; | 15571 var pathOffset = 0; |
| 15572 var index; | 15572 var index; |
| 15573 var subPart; | 15573 var subPart; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15743 | 15743 |
| 15744 var mock = new HttpServerMock(); | 15744 var mock = new HttpServerMock(); |
| 15745 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; | 15745 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; |
| 15746 var arg_profileId = "foo"; | 15746 var arg_profileId = "foo"; |
| 15747 var arg_acceptsInStreamVideoPlacements = true; | 15747 var arg_acceptsInStreamVideoPlacements = true; |
| 15748 var arg_acceptsInterstitialPlacements = true; | 15748 var arg_acceptsInterstitialPlacements = true; |
| 15749 var arg_acceptsPublisherPaidPlacements = true; | 15749 var arg_acceptsPublisherPaidPlacements = true; |
| 15750 var arg_active = true; | 15750 var arg_active = true; |
| 15751 var arg_countryId = "foo"; | 15751 var arg_countryId = "foo"; |
| 15752 var arg_dfpNetworkCode = "foo"; | 15752 var arg_dfpNetworkCode = "foo"; |
| 15753 var arg_ids = buildUnnamed398(); | 15753 var arg_ids = buildUnnamed413(); |
| 15754 var arg_maxResults = 42; | 15754 var arg_maxResults = 42; |
| 15755 var arg_pageToken = "foo"; | 15755 var arg_pageToken = "foo"; |
| 15756 var arg_parentId = "foo"; | 15756 var arg_parentId = "foo"; |
| 15757 var arg_searchString = "foo"; | 15757 var arg_searchString = "foo"; |
| 15758 var arg_sortField = "foo"; | 15758 var arg_sortField = "foo"; |
| 15759 var arg_sortOrder = "foo"; | 15759 var arg_sortOrder = "foo"; |
| 15760 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15760 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15761 var path = (req.url).path; | 15761 var path = (req.url).path; |
| 15762 var pathOffset = 0; | 15762 var pathOffset = 0; |
| 15763 var index; | 15763 var index; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15994 unittest.test("method--list", () { | 15994 unittest.test("method--list", () { |
| 15995 | 15995 |
| 15996 var mock = new HttpServerMock(); | 15996 var mock = new HttpServerMock(); |
| 15997 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; | 15997 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; |
| 15998 var arg_profileId = "foo"; | 15998 var arg_profileId = "foo"; |
| 15999 var arg_adId = "foo"; | 15999 var arg_adId = "foo"; |
| 16000 var arg_advertiserId = "foo"; | 16000 var arg_advertiserId = "foo"; |
| 16001 var arg_campaignId = "foo"; | 16001 var arg_campaignId = "foo"; |
| 16002 var arg_definitionsOnly = true; | 16002 var arg_definitionsOnly = true; |
| 16003 var arg_enabled = true; | 16003 var arg_enabled = true; |
| 16004 var arg_eventTagTypes = buildUnnamed399(); | 16004 var arg_eventTagTypes = buildUnnamed414(); |
| 16005 var arg_ids = buildUnnamed400(); | 16005 var arg_ids = buildUnnamed415(); |
| 16006 var arg_searchString = "foo"; | 16006 var arg_searchString = "foo"; |
| 16007 var arg_sortField = "foo"; | 16007 var arg_sortField = "foo"; |
| 16008 var arg_sortOrder = "foo"; | 16008 var arg_sortOrder = "foo"; |
| 16009 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16009 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16010 var path = (req.url).path; | 16010 var path = (req.url).path; |
| 16011 var pathOffset = 0; | 16011 var pathOffset = 0; |
| 16012 var index; | 16012 var index; |
| 16013 var subPart; | 16013 var subPart; |
| 16014 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16014 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 16015 pathOffset += 1; | 16015 pathOffset += 1; |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16533 checkFloodlightActivity(response); | 16533 checkFloodlightActivity(response); |
| 16534 }))); | 16534 }))); |
| 16535 }); | 16535 }); |
| 16536 | 16536 |
| 16537 unittest.test("method--list", () { | 16537 unittest.test("method--list", () { |
| 16538 | 16538 |
| 16539 var mock = new HttpServerMock(); | 16539 var mock = new HttpServerMock(); |
| 16540 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; | 16540 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; |
| 16541 var arg_profileId = "foo"; | 16541 var arg_profileId = "foo"; |
| 16542 var arg_advertiserId = "foo"; | 16542 var arg_advertiserId = "foo"; |
| 16543 var arg_floodlightActivityGroupIds = buildUnnamed401(); | 16543 var arg_floodlightActivityGroupIds = buildUnnamed416(); |
| 16544 var arg_floodlightActivityGroupName = "foo"; | 16544 var arg_floodlightActivityGroupName = "foo"; |
| 16545 var arg_floodlightActivityGroupTagString = "foo"; | 16545 var arg_floodlightActivityGroupTagString = "foo"; |
| 16546 var arg_floodlightActivityGroupType = "foo"; | 16546 var arg_floodlightActivityGroupType = "foo"; |
| 16547 var arg_floodlightConfigurationId = "foo"; | 16547 var arg_floodlightConfigurationId = "foo"; |
| 16548 var arg_ids = buildUnnamed402(); | 16548 var arg_ids = buildUnnamed417(); |
| 16549 var arg_maxResults = 42; | 16549 var arg_maxResults = 42; |
| 16550 var arg_pageToken = "foo"; | 16550 var arg_pageToken = "foo"; |
| 16551 var arg_searchString = "foo"; | 16551 var arg_searchString = "foo"; |
| 16552 var arg_sortField = "foo"; | 16552 var arg_sortField = "foo"; |
| 16553 var arg_sortOrder = "foo"; | 16553 var arg_sortOrder = "foo"; |
| 16554 var arg_tagString = "foo"; | 16554 var arg_tagString = "foo"; |
| 16555 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16555 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16556 var path = (req.url).path; | 16556 var path = (req.url).path; |
| 16557 var pathOffset = 0; | 16557 var pathOffset = 0; |
| 16558 var index; | 16558 var index; |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16847 }))); | 16847 }))); |
| 16848 }); | 16848 }); |
| 16849 | 16849 |
| 16850 unittest.test("method--list", () { | 16850 unittest.test("method--list", () { |
| 16851 | 16851 |
| 16852 var mock = new HttpServerMock(); | 16852 var mock = new HttpServerMock(); |
| 16853 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; | 16853 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; |
| 16854 var arg_profileId = "foo"; | 16854 var arg_profileId = "foo"; |
| 16855 var arg_advertiserId = "foo"; | 16855 var arg_advertiserId = "foo"; |
| 16856 var arg_floodlightConfigurationId = "foo"; | 16856 var arg_floodlightConfigurationId = "foo"; |
| 16857 var arg_ids = buildUnnamed403(); | 16857 var arg_ids = buildUnnamed418(); |
| 16858 var arg_maxResults = 42; | 16858 var arg_maxResults = 42; |
| 16859 var arg_pageToken = "foo"; | 16859 var arg_pageToken = "foo"; |
| 16860 var arg_searchString = "foo"; | 16860 var arg_searchString = "foo"; |
| 16861 var arg_sortField = "foo"; | 16861 var arg_sortField = "foo"; |
| 16862 var arg_sortOrder = "foo"; | 16862 var arg_sortOrder = "foo"; |
| 16863 var arg_type = "foo"; | 16863 var arg_type = "foo"; |
| 16864 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16864 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16865 var path = (req.url).path; | 16865 var path = (req.url).path; |
| 16866 var pathOffset = 0; | 16866 var pathOffset = 0; |
| 16867 var index; | 16867 var index; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17093 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { | 17093 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { |
| 17094 checkFloodlightConfiguration(response); | 17094 checkFloodlightConfiguration(response); |
| 17095 }))); | 17095 }))); |
| 17096 }); | 17096 }); |
| 17097 | 17097 |
| 17098 unittest.test("method--list", () { | 17098 unittest.test("method--list", () { |
| 17099 | 17099 |
| 17100 var mock = new HttpServerMock(); | 17100 var mock = new HttpServerMock(); |
| 17101 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; | 17101 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; |
| 17102 var arg_profileId = "foo"; | 17102 var arg_profileId = "foo"; |
| 17103 var arg_ids = buildUnnamed404(); | 17103 var arg_ids = buildUnnamed419(); |
| 17104 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17104 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17105 var path = (req.url).path; | 17105 var path = (req.url).path; |
| 17106 var pathOffset = 0; | 17106 var pathOffset = 0; |
| 17107 var index; | 17107 var index; |
| 17108 var subPart; | 17108 var subPart; |
| 17109 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17109 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17110 pathOffset += 1; | 17110 pathOffset += 1; |
| 17111 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 17111 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| 17112 pathOffset += 18; | 17112 pathOffset += 18; |
| 17113 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 17113 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17334 checkInventoryItem(response); | 17334 checkInventoryItem(response); |
| 17335 }))); | 17335 }))); |
| 17336 }); | 17336 }); |
| 17337 | 17337 |
| 17338 unittest.test("method--list", () { | 17338 unittest.test("method--list", () { |
| 17339 | 17339 |
| 17340 var mock = new HttpServerMock(); | 17340 var mock = new HttpServerMock(); |
| 17341 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; | 17341 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; |
| 17342 var arg_profileId = "foo"; | 17342 var arg_profileId = "foo"; |
| 17343 var arg_projectId = "foo"; | 17343 var arg_projectId = "foo"; |
| 17344 var arg_ids = buildUnnamed405(); | 17344 var arg_ids = buildUnnamed420(); |
| 17345 var arg_inPlan = true; | 17345 var arg_inPlan = true; |
| 17346 var arg_maxResults = 42; | 17346 var arg_maxResults = 42; |
| 17347 var arg_orderId = buildUnnamed406(); | 17347 var arg_orderId = buildUnnamed421(); |
| 17348 var arg_pageToken = "foo"; | 17348 var arg_pageToken = "foo"; |
| 17349 var arg_siteId = buildUnnamed407(); | 17349 var arg_siteId = buildUnnamed422(); |
| 17350 var arg_sortField = "foo"; | 17350 var arg_sortField = "foo"; |
| 17351 var arg_sortOrder = "foo"; | 17351 var arg_sortOrder = "foo"; |
| 17352 var arg_type = "foo"; | 17352 var arg_type = "foo"; |
| 17353 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17353 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17354 var path = (req.url).path; | 17354 var path = (req.url).path; |
| 17355 var pathOffset = 0; | 17355 var pathOffset = 0; |
| 17356 var index; | 17356 var index; |
| 17357 var subPart; | 17357 var subPart; |
| 17358 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17358 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17359 pathOffset += 1; | 17359 pathOffset += 1; |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18272 }))); | 18272 }))); |
| 18273 }); | 18273 }); |
| 18274 | 18274 |
| 18275 unittest.test("method--list", () { | 18275 unittest.test("method--list", () { |
| 18276 | 18276 |
| 18277 var mock = new HttpServerMock(); | 18277 var mock = new HttpServerMock(); |
| 18278 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; | 18278 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; |
| 18279 var arg_profileId = "foo"; | 18279 var arg_profileId = "foo"; |
| 18280 var arg_projectId = "foo"; | 18280 var arg_projectId = "foo"; |
| 18281 var arg_approved = true; | 18281 var arg_approved = true; |
| 18282 var arg_ids = buildUnnamed408(); | 18282 var arg_ids = buildUnnamed423(); |
| 18283 var arg_maxResults = 42; | 18283 var arg_maxResults = 42; |
| 18284 var arg_orderId = buildUnnamed409(); | 18284 var arg_orderId = buildUnnamed424(); |
| 18285 var arg_pageToken = "foo"; | 18285 var arg_pageToken = "foo"; |
| 18286 var arg_searchString = "foo"; | 18286 var arg_searchString = "foo"; |
| 18287 var arg_siteId = buildUnnamed410(); | 18287 var arg_siteId = buildUnnamed425(); |
| 18288 var arg_sortField = "foo"; | 18288 var arg_sortField = "foo"; |
| 18289 var arg_sortOrder = "foo"; | 18289 var arg_sortOrder = "foo"; |
| 18290 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18290 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18291 var path = (req.url).path; | 18291 var path = (req.url).path; |
| 18292 var pathOffset = 0; | 18292 var pathOffset = 0; |
| 18293 var index; | 18293 var index; |
| 18294 var subPart; | 18294 var subPart; |
| 18295 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18295 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18296 pathOffset += 1; | 18296 pathOffset += 1; |
| 18297 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 18297 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18419 checkOrder(response); | 18419 checkOrder(response); |
| 18420 }))); | 18420 }))); |
| 18421 }); | 18421 }); |
| 18422 | 18422 |
| 18423 unittest.test("method--list", () { | 18423 unittest.test("method--list", () { |
| 18424 | 18424 |
| 18425 var mock = new HttpServerMock(); | 18425 var mock = new HttpServerMock(); |
| 18426 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; | 18426 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; |
| 18427 var arg_profileId = "foo"; | 18427 var arg_profileId = "foo"; |
| 18428 var arg_projectId = "foo"; | 18428 var arg_projectId = "foo"; |
| 18429 var arg_ids = buildUnnamed411(); | 18429 var arg_ids = buildUnnamed426(); |
| 18430 var arg_maxResults = 42; | 18430 var arg_maxResults = 42; |
| 18431 var arg_pageToken = "foo"; | 18431 var arg_pageToken = "foo"; |
| 18432 var arg_searchString = "foo"; | 18432 var arg_searchString = "foo"; |
| 18433 var arg_siteId = buildUnnamed412(); | 18433 var arg_siteId = buildUnnamed427(); |
| 18434 var arg_sortField = "foo"; | 18434 var arg_sortField = "foo"; |
| 18435 var arg_sortOrder = "foo"; | 18435 var arg_sortOrder = "foo"; |
| 18436 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18436 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18437 var path = (req.url).path; | 18437 var path = (req.url).path; |
| 18438 var pathOffset = 0; | 18438 var pathOffset = 0; |
| 18439 var index; | 18439 var index; |
| 18440 var subPart; | 18440 var subPart; |
| 18441 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18441 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18442 pathOffset += 1; | 18442 pathOffset += 1; |
| 18443 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 18443 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18611 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { | 18611 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { |
| 18612 checkPlacementGroup(response); | 18612 checkPlacementGroup(response); |
| 18613 }))); | 18613 }))); |
| 18614 }); | 18614 }); |
| 18615 | 18615 |
| 18616 unittest.test("method--list", () { | 18616 unittest.test("method--list", () { |
| 18617 | 18617 |
| 18618 var mock = new HttpServerMock(); | 18618 var mock = new HttpServerMock(); |
| 18619 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; | 18619 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; |
| 18620 var arg_profileId = "foo"; | 18620 var arg_profileId = "foo"; |
| 18621 var arg_advertiserIds = buildUnnamed413(); | 18621 var arg_advertiserIds = buildUnnamed428(); |
| 18622 var arg_archived = true; | 18622 var arg_archived = true; |
| 18623 var arg_campaignIds = buildUnnamed414(); | 18623 var arg_campaignIds = buildUnnamed429(); |
| 18624 var arg_contentCategoryIds = buildUnnamed415(); | 18624 var arg_contentCategoryIds = buildUnnamed430(); |
| 18625 var arg_directorySiteIds = buildUnnamed416(); | 18625 var arg_directorySiteIds = buildUnnamed431(); |
| 18626 var arg_ids = buildUnnamed417(); | 18626 var arg_ids = buildUnnamed432(); |
| 18627 var arg_maxEndDate = "foo"; | 18627 var arg_maxEndDate = "foo"; |
| 18628 var arg_maxResults = 42; | 18628 var arg_maxResults = 42; |
| 18629 var arg_maxStartDate = "foo"; | 18629 var arg_maxStartDate = "foo"; |
| 18630 var arg_minEndDate = "foo"; | 18630 var arg_minEndDate = "foo"; |
| 18631 var arg_minStartDate = "foo"; | 18631 var arg_minStartDate = "foo"; |
| 18632 var arg_pageToken = "foo"; | 18632 var arg_pageToken = "foo"; |
| 18633 var arg_placementGroupType = "foo"; | 18633 var arg_placementGroupType = "foo"; |
| 18634 var arg_placementStrategyIds = buildUnnamed418(); | 18634 var arg_placementStrategyIds = buildUnnamed433(); |
| 18635 var arg_pricingTypes = buildUnnamed419(); | 18635 var arg_pricingTypes = buildUnnamed434(); |
| 18636 var arg_searchString = "foo"; | 18636 var arg_searchString = "foo"; |
| 18637 var arg_siteIds = buildUnnamed420(); | 18637 var arg_siteIds = buildUnnamed435(); |
| 18638 var arg_sortField = "foo"; | 18638 var arg_sortField = "foo"; |
| 18639 var arg_sortOrder = "foo"; | 18639 var arg_sortOrder = "foo"; |
| 18640 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18640 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18641 var path = (req.url).path; | 18641 var path = (req.url).path; |
| 18642 var pathOffset = 0; | 18642 var pathOffset = 0; |
| 18643 var index; | 18643 var index; |
| 18644 var subPart; | 18644 var subPart; |
| 18645 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18645 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18646 pathOffset += 1; | 18646 pathOffset += 1; |
| 18647 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 18647 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18991 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { | 18991 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { |
| 18992 checkPlacementStrategy(response); | 18992 checkPlacementStrategy(response); |
| 18993 }))); | 18993 }))); |
| 18994 }); | 18994 }); |
| 18995 | 18995 |
| 18996 unittest.test("method--list", () { | 18996 unittest.test("method--list", () { |
| 18997 | 18997 |
| 18998 var mock = new HttpServerMock(); | 18998 var mock = new HttpServerMock(); |
| 18999 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; | 18999 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; |
| 19000 var arg_profileId = "foo"; | 19000 var arg_profileId = "foo"; |
| 19001 var arg_ids = buildUnnamed421(); | 19001 var arg_ids = buildUnnamed436(); |
| 19002 var arg_maxResults = 42; | 19002 var arg_maxResults = 42; |
| 19003 var arg_pageToken = "foo"; | 19003 var arg_pageToken = "foo"; |
| 19004 var arg_searchString = "foo"; | 19004 var arg_searchString = "foo"; |
| 19005 var arg_sortField = "foo"; | 19005 var arg_sortField = "foo"; |
| 19006 var arg_sortOrder = "foo"; | 19006 var arg_sortOrder = "foo"; |
| 19007 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19007 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19008 var path = (req.url).path; | 19008 var path = (req.url).path; |
| 19009 var pathOffset = 0; | 19009 var pathOffset = 0; |
| 19010 var index; | 19010 var index; |
| 19011 var subPart; | 19011 var subPart; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19177 }); | 19177 }); |
| 19178 | 19178 |
| 19179 | 19179 |
| 19180 unittest.group("resource-PlacementsResourceApi", () { | 19180 unittest.group("resource-PlacementsResourceApi", () { |
| 19181 unittest.test("method--generatetags", () { | 19181 unittest.test("method--generatetags", () { |
| 19182 | 19182 |
| 19183 var mock = new HttpServerMock(); | 19183 var mock = new HttpServerMock(); |
| 19184 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19184 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19185 var arg_profileId = "foo"; | 19185 var arg_profileId = "foo"; |
| 19186 var arg_campaignId = "foo"; | 19186 var arg_campaignId = "foo"; |
| 19187 var arg_placementIds = buildUnnamed422(); | 19187 var arg_placementIds = buildUnnamed437(); |
| 19188 var arg_tagFormats = buildUnnamed423(); | 19188 var arg_tagFormats = buildUnnamed438(); |
| 19189 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19189 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19190 var path = (req.url).path; | 19190 var path = (req.url).path; |
| 19191 var pathOffset = 0; | 19191 var pathOffset = 0; |
| 19192 var index; | 19192 var index; |
| 19193 var subPart; | 19193 var subPart; |
| 19194 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19194 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19195 pathOffset += 1; | 19195 pathOffset += 1; |
| 19196 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 19196 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| 19197 pathOffset += 18; | 19197 pathOffset += 18; |
| 19198 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 19198 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19349 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { | 19349 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { |
| 19350 checkPlacement(response); | 19350 checkPlacement(response); |
| 19351 }))); | 19351 }))); |
| 19352 }); | 19352 }); |
| 19353 | 19353 |
| 19354 unittest.test("method--list", () { | 19354 unittest.test("method--list", () { |
| 19355 | 19355 |
| 19356 var mock = new HttpServerMock(); | 19356 var mock = new HttpServerMock(); |
| 19357 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19357 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19358 var arg_profileId = "foo"; | 19358 var arg_profileId = "foo"; |
| 19359 var arg_advertiserIds = buildUnnamed424(); | 19359 var arg_advertiserIds = buildUnnamed439(); |
| 19360 var arg_archived = true; | 19360 var arg_archived = true; |
| 19361 var arg_campaignIds = buildUnnamed425(); | 19361 var arg_campaignIds = buildUnnamed440(); |
| 19362 var arg_compatibilities = buildUnnamed426(); | 19362 var arg_compatibilities = buildUnnamed441(); |
| 19363 var arg_contentCategoryIds = buildUnnamed427(); | 19363 var arg_contentCategoryIds = buildUnnamed442(); |
| 19364 var arg_directorySiteIds = buildUnnamed428(); | 19364 var arg_directorySiteIds = buildUnnamed443(); |
| 19365 var arg_groupIds = buildUnnamed429(); | 19365 var arg_groupIds = buildUnnamed444(); |
| 19366 var arg_ids = buildUnnamed430(); | 19366 var arg_ids = buildUnnamed445(); |
| 19367 var arg_maxEndDate = "foo"; | 19367 var arg_maxEndDate = "foo"; |
| 19368 var arg_maxResults = 42; | 19368 var arg_maxResults = 42; |
| 19369 var arg_maxStartDate = "foo"; | 19369 var arg_maxStartDate = "foo"; |
| 19370 var arg_minEndDate = "foo"; | 19370 var arg_minEndDate = "foo"; |
| 19371 var arg_minStartDate = "foo"; | 19371 var arg_minStartDate = "foo"; |
| 19372 var arg_pageToken = "foo"; | 19372 var arg_pageToken = "foo"; |
| 19373 var arg_paymentSource = "foo"; | 19373 var arg_paymentSource = "foo"; |
| 19374 var arg_placementStrategyIds = buildUnnamed431(); | 19374 var arg_placementStrategyIds = buildUnnamed446(); |
| 19375 var arg_pricingTypes = buildUnnamed432(); | 19375 var arg_pricingTypes = buildUnnamed447(); |
| 19376 var arg_searchString = "foo"; | 19376 var arg_searchString = "foo"; |
| 19377 var arg_siteIds = buildUnnamed433(); | 19377 var arg_siteIds = buildUnnamed448(); |
| 19378 var arg_sizeIds = buildUnnamed434(); | 19378 var arg_sizeIds = buildUnnamed449(); |
| 19379 var arg_sortField = "foo"; | 19379 var arg_sortField = "foo"; |
| 19380 var arg_sortOrder = "foo"; | 19380 var arg_sortOrder = "foo"; |
| 19381 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19381 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19382 var path = (req.url).path; | 19382 var path = (req.url).path; |
| 19383 var pathOffset = 0; | 19383 var pathOffset = 0; |
| 19384 var index; | 19384 var index; |
| 19385 var subPart; | 19385 var subPart; |
| 19386 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19386 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19387 pathOffset += 1; | 19387 pathOffset += 1; |
| 19388 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 19388 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19851 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { | 19851 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { |
| 19852 checkProject(response); | 19852 checkProject(response); |
| 19853 }))); | 19853 }))); |
| 19854 }); | 19854 }); |
| 19855 | 19855 |
| 19856 unittest.test("method--list", () { | 19856 unittest.test("method--list", () { |
| 19857 | 19857 |
| 19858 var mock = new HttpServerMock(); | 19858 var mock = new HttpServerMock(); |
| 19859 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; | 19859 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; |
| 19860 var arg_profileId = "foo"; | 19860 var arg_profileId = "foo"; |
| 19861 var arg_advertiserIds = buildUnnamed435(); | 19861 var arg_advertiserIds = buildUnnamed450(); |
| 19862 var arg_ids = buildUnnamed436(); | 19862 var arg_ids = buildUnnamed451(); |
| 19863 var arg_maxResults = 42; | 19863 var arg_maxResults = 42; |
| 19864 var arg_pageToken = "foo"; | 19864 var arg_pageToken = "foo"; |
| 19865 var arg_searchString = "foo"; | 19865 var arg_searchString = "foo"; |
| 19866 var arg_sortField = "foo"; | 19866 var arg_sortField = "foo"; |
| 19867 var arg_sortOrder = "foo"; | 19867 var arg_sortOrder = "foo"; |
| 19868 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19868 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19869 var path = (req.url).path; | 19869 var path = (req.url).path; |
| 19870 var pathOffset = 0; | 19870 var pathOffset = 0; |
| 19871 var index; | 19871 var index; |
| 19872 var subPart; | 19872 var subPart; |
| (...skipping 1327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21200 unittest.test("method--list", () { | 21200 unittest.test("method--list", () { |
| 21201 | 21201 |
| 21202 var mock = new HttpServerMock(); | 21202 var mock = new HttpServerMock(); |
| 21203 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; | 21203 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; |
| 21204 var arg_profileId = "foo"; | 21204 var arg_profileId = "foo"; |
| 21205 var arg_acceptsInStreamVideoPlacements = true; | 21205 var arg_acceptsInStreamVideoPlacements = true; |
| 21206 var arg_acceptsInterstitialPlacements = true; | 21206 var arg_acceptsInterstitialPlacements = true; |
| 21207 var arg_acceptsPublisherPaidPlacements = true; | 21207 var arg_acceptsPublisherPaidPlacements = true; |
| 21208 var arg_adWordsSite = true; | 21208 var arg_adWordsSite = true; |
| 21209 var arg_approved = true; | 21209 var arg_approved = true; |
| 21210 var arg_campaignIds = buildUnnamed437(); | 21210 var arg_campaignIds = buildUnnamed452(); |
| 21211 var arg_directorySiteIds = buildUnnamed438(); | 21211 var arg_directorySiteIds = buildUnnamed453(); |
| 21212 var arg_ids = buildUnnamed439(); | 21212 var arg_ids = buildUnnamed454(); |
| 21213 var arg_maxResults = 42; | 21213 var arg_maxResults = 42; |
| 21214 var arg_pageToken = "foo"; | 21214 var arg_pageToken = "foo"; |
| 21215 var arg_searchString = "foo"; | 21215 var arg_searchString = "foo"; |
| 21216 var arg_sortField = "foo"; | 21216 var arg_sortField = "foo"; |
| 21217 var arg_sortOrder = "foo"; | 21217 var arg_sortOrder = "foo"; |
| 21218 var arg_subaccountId = "foo"; | 21218 var arg_subaccountId = "foo"; |
| 21219 var arg_unmappedSite = true; | 21219 var arg_unmappedSite = true; |
| 21220 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21220 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21221 var path = (req.url).path; | 21221 var path = (req.url).path; |
| 21222 var pathOffset = 0; | 21222 var pathOffset = 0; |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21514 }))); | 21514 }))); |
| 21515 }); | 21515 }); |
| 21516 | 21516 |
| 21517 unittest.test("method--list", () { | 21517 unittest.test("method--list", () { |
| 21518 | 21518 |
| 21519 var mock = new HttpServerMock(); | 21519 var mock = new HttpServerMock(); |
| 21520 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; | 21520 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; |
| 21521 var arg_profileId = "foo"; | 21521 var arg_profileId = "foo"; |
| 21522 var arg_height = 42; | 21522 var arg_height = 42; |
| 21523 var arg_iabStandard = true; | 21523 var arg_iabStandard = true; |
| 21524 var arg_ids = buildUnnamed440(); | 21524 var arg_ids = buildUnnamed455(); |
| 21525 var arg_width = 42; | 21525 var arg_width = 42; |
| 21526 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21526 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21527 var path = (req.url).path; | 21527 var path = (req.url).path; |
| 21528 var pathOffset = 0; | 21528 var pathOffset = 0; |
| 21529 var index; | 21529 var index; |
| 21530 var subPart; | 21530 var subPart; |
| 21531 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 21531 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 21532 pathOffset += 1; | 21532 pathOffset += 1; |
| 21533 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 21533 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| 21534 pathOffset += 18; | 21534 pathOffset += 18; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21691 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { | 21691 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { |
| 21692 checkSubaccount(response); | 21692 checkSubaccount(response); |
| 21693 }))); | 21693 }))); |
| 21694 }); | 21694 }); |
| 21695 | 21695 |
| 21696 unittest.test("method--list", () { | 21696 unittest.test("method--list", () { |
| 21697 | 21697 |
| 21698 var mock = new HttpServerMock(); | 21698 var mock = new HttpServerMock(); |
| 21699 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; | 21699 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; |
| 21700 var arg_profileId = "foo"; | 21700 var arg_profileId = "foo"; |
| 21701 var arg_ids = buildUnnamed441(); | 21701 var arg_ids = buildUnnamed456(); |
| 21702 var arg_maxResults = 42; | 21702 var arg_maxResults = 42; |
| 21703 var arg_pageToken = "foo"; | 21703 var arg_pageToken = "foo"; |
| 21704 var arg_searchString = "foo"; | 21704 var arg_searchString = "foo"; |
| 21705 var arg_sortField = "foo"; | 21705 var arg_sortField = "foo"; |
| 21706 var arg_sortOrder = "foo"; | 21706 var arg_sortOrder = "foo"; |
| 21707 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21707 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21708 var path = (req.url).path; | 21708 var path = (req.url).path; |
| 21709 var pathOffset = 0; | 21709 var pathOffset = 0; |
| 21710 var index; | 21710 var index; |
| 21711 var subPart; | 21711 var subPart; |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22273 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { | 22273 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { |
| 22274 checkUserRolePermission(response); | 22274 checkUserRolePermission(response); |
| 22275 }))); | 22275 }))); |
| 22276 }); | 22276 }); |
| 22277 | 22277 |
| 22278 unittest.test("method--list", () { | 22278 unittest.test("method--list", () { |
| 22279 | 22279 |
| 22280 var mock = new HttpServerMock(); | 22280 var mock = new HttpServerMock(); |
| 22281 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; | 22281 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; |
| 22282 var arg_profileId = "foo"; | 22282 var arg_profileId = "foo"; |
| 22283 var arg_ids = buildUnnamed442(); | 22283 var arg_ids = buildUnnamed457(); |
| 22284 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22284 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22285 var path = (req.url).path; | 22285 var path = (req.url).path; |
| 22286 var pathOffset = 0; | 22286 var pathOffset = 0; |
| 22287 var index; | 22287 var index; |
| 22288 var subPart; | 22288 var subPart; |
| 22289 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 22289 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 22290 pathOffset += 1; | 22290 pathOffset += 1; |
| 22291 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); | 22291 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.4/")); |
| 22292 pathOffset += 18; | 22292 pathOffset += 18; |
| 22293 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 22293 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22502 checkUserRole(response); | 22502 checkUserRole(response); |
| 22503 }))); | 22503 }))); |
| 22504 }); | 22504 }); |
| 22505 | 22505 |
| 22506 unittest.test("method--list", () { | 22506 unittest.test("method--list", () { |
| 22507 | 22507 |
| 22508 var mock = new HttpServerMock(); | 22508 var mock = new HttpServerMock(); |
| 22509 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; | 22509 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; |
| 22510 var arg_profileId = "foo"; | 22510 var arg_profileId = "foo"; |
| 22511 var arg_accountUserRoleOnly = true; | 22511 var arg_accountUserRoleOnly = true; |
| 22512 var arg_ids = buildUnnamed443(); | 22512 var arg_ids = buildUnnamed458(); |
| 22513 var arg_maxResults = 42; | 22513 var arg_maxResults = 42; |
| 22514 var arg_pageToken = "foo"; | 22514 var arg_pageToken = "foo"; |
| 22515 var arg_searchString = "foo"; | 22515 var arg_searchString = "foo"; |
| 22516 var arg_sortField = "foo"; | 22516 var arg_sortField = "foo"; |
| 22517 var arg_sortOrder = "foo"; | 22517 var arg_sortOrder = "foo"; |
| 22518 var arg_subaccountId = "foo"; | 22518 var arg_subaccountId = "foo"; |
| 22519 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22519 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22520 var path = (req.url).path; | 22520 var path = (req.url).path; |
| 22521 var pathOffset = 0; | 22521 var pathOffset = 0; |
| 22522 var index; | 22522 var index; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22686 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { | 22686 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { |
| 22687 checkUserRole(response); | 22687 checkUserRole(response); |
| 22688 }))); | 22688 }))); |
| 22689 }); | 22689 }); |
| 22690 | 22690 |
| 22691 }); | 22691 }); |
| 22692 | 22692 |
| 22693 | 22693 |
| 22694 } | 22694 } |
| 22695 | 22695 |
| OLD | NEW |