| OLD | NEW |
| 1 library googleapis.dfareporting.v2_2.test; | 1 library googleapis.dfareporting.v2_2.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 buildUnnamed1304() { | 54 buildUnnamed1940() { |
| 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 checkUnnamed1304(core.List<core.String> o) { | 61 checkUnnamed1940(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 buildUnnamed1305() { | 67 buildUnnamed1941() { |
| 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 checkUnnamed1305(core.List<core.String> o) { | 74 checkUnnamed1941(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 = buildUnnamed1304(); | 85 o.accountPermissionIds = buildUnnamed1940(); |
| 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 = buildUnnamed1305(); | 90 o.availablePermissionIds = buildUnnamed1941(); |
| 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 checkUnnamed1304(o.accountPermissionIds); | 112 checkUnnamed1940(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 checkUnnamed1305(o.availablePermissionIds); | 117 checkUnnamed1941(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 buildUnnamed1306() { | 162 buildUnnamed1942() { |
| 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 checkUnnamed1306(core.List<core.String> o) { | 169 checkUnnamed1942(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 = buildUnnamed1306(); | 180 o.accountProfiles = buildUnnamed1942(); |
| 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 checkUnnamed1306(o.accountProfiles); | 194 checkUnnamed1942(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 buildUnnamed1307() { | 227 buildUnnamed1943() { |
| 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 checkUnnamed1307(core.List<api.AccountPermissionGroup> o) { | 234 checkUnnamed1943(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 = buildUnnamed1307(); | 245 o.accountPermissionGroups = buildUnnamed1943(); |
| 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 checkUnnamed1307(o.accountPermissionGroups); | 255 checkUnnamed1943(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 buildUnnamed1308() { | 261 buildUnnamed1944() { |
| 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 checkUnnamed1308(core.List<api.AccountPermission> o) { | 268 checkUnnamed1944(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 = buildUnnamed1308(); | 279 o.accountPermissions = buildUnnamed1944(); |
| 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 checkUnnamed1308(o.accountPermissions); | 289 checkUnnamed1944(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 buildUnnamed1309() { | 344 buildUnnamed1945() { |
| 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 checkUnnamed1309(core.List<api.AccountUserProfile> o) { | 351 checkUnnamed1945(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 = buildUnnamed1309(); | 362 o.accountUserProfiles = buildUnnamed1945(); |
| 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 checkUnnamed1309(o.accountUserProfiles); | 373 checkUnnamed1945(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 buildUnnamed1310() { | 380 buildUnnamed1946() { |
| 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 checkUnnamed1310(core.List<api.Account> o) { | 387 checkUnnamed1946(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 = buildUnnamed1310(); | 398 o.accounts = buildUnnamed1946(); |
| 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 checkUnnamed1310(o.accounts); | 409 checkUnnamed1946(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 buildUnnamed1311() { | 416 buildUnnamed1947() { |
| 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 checkUnnamed1311(core.List<api.DimensionValue> o) { | 423 checkUnnamed1947(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 buildUnnamed1312() { | 429 buildUnnamed1948() { |
| 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 checkUnnamed1312(core.List<core.String> o) { | 436 checkUnnamed1948(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 = buildUnnamed1311(); | 447 o.filters = buildUnnamed1947(); |
| 448 o.kind = "foo"; | 448 o.kind = "foo"; |
| 449 o.metricNames = buildUnnamed1312(); | 449 o.metricNames = buildUnnamed1948(); |
| 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 checkUnnamed1311(o.filters); | 458 checkUnnamed1947(o.filters); |
| 459 unittest.expect(o.kind, unittest.equals('foo')); | 459 unittest.expect(o.kind, unittest.equals('foo')); |
| 460 checkUnnamed1312(o.metricNames); | 460 checkUnnamed1948(o.metricNames); |
| 461 } | 461 } |
| 462 buildCounterActivities--; | 462 buildCounterActivities--; |
| 463 } | 463 } |
| 464 | 464 |
| 465 buildUnnamed1313() { | 465 buildUnnamed1949() { |
| 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 checkUnnamed1313(core.List<api.CreativeGroupAssignment> o) { | 472 checkUnnamed1949(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 buildUnnamed1314() { | 478 buildUnnamed1950() { |
| 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 checkUnnamed1314(core.List<api.EventTagOverride> o) { | 485 checkUnnamed1950(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 buildUnnamed1315() { | 491 buildUnnamed1951() { |
| 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 checkUnnamed1315(core.List<api.PlacementAssignment> o) { | 498 checkUnnamed1951(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 = buildUnnamed1313(); | 522 o.creativeGroupAssignments = buildUnnamed1949(); |
| 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 = buildUnnamed1314(); | 529 o.eventTagOverrides = buildUnnamed1950(); |
| 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 = buildUnnamed1315(); | 537 o.placementAssignments = buildUnnamed1951(); |
| 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 checkUnnamed1313(o.creativeGroupAssignments); | 567 checkUnnamed1949(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 checkUnnamed1314(o.eventTagOverrides); | 574 checkUnnamed1950(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 checkUnnamed1315(o.placementAssignments); | 582 checkUnnamed1951(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 buildUnnamed1316() { | 628 buildUnnamed1952() { |
| 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 checkUnnamed1316(core.List<api.Ad> o) { | 635 checkUnnamed1952(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 = buildUnnamed1316(); | 646 o.ads = buildUnnamed1952(); |
| 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 checkUnnamed1316(o.ads); | 657 checkUnnamed1952(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 buildUnnamed1317() { | 736 buildUnnamed1953() { |
| 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 checkUnnamed1317(core.List<api.AdvertiserGroup> o) { | 743 checkUnnamed1953(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 = buildUnnamed1317(); | 754 o.advertiserGroups = buildUnnamed1953(); |
| 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 checkUnnamed1317(o.advertiserGroups); | 765 checkUnnamed1953(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 buildUnnamed1318() { | 772 buildUnnamed1954() { |
| 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 checkUnnamed1318(core.List<api.Advertiser> o) { | 779 checkUnnamed1954(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 = buildUnnamed1318(); | 790 o.advertisers = buildUnnamed1954(); |
| 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 checkUnnamed1318(o.advertisers); | 801 checkUnnamed1954(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 buildUnnamed1319() { | 831 buildUnnamed1955() { |
| 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 checkUnnamed1319(core.List<api.AudienceSegment> o) { | 838 checkUnnamed1955(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 = buildUnnamed1319(); | 849 o.audienceSegments = buildUnnamed1955(); |
| 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 checkUnnamed1319(o.audienceSegments); | 860 checkUnnamed1955(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 buildUnnamed1320() { | 896 buildUnnamed1956() { |
| 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 checkUnnamed1320(core.List<api.Browser> o) { | 903 checkUnnamed1956(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 = buildUnnamed1320(); | 914 o.browsers = buildUnnamed1956(); |
| 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 checkUnnamed1320(o.browsers); | 924 checkUnnamed1956(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 buildUnnamed1321() { | 930 buildUnnamed1957() { |
| 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 checkUnnamed1321(core.List<api.CreativeOptimizationConfiguration> o) { | 937 checkUnnamed1957(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 buildUnnamed1322() { | 943 buildUnnamed1958() { |
| 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 checkUnnamed1322(core.List<api.AudienceSegmentGroup> o) { | 950 checkUnnamed1958(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 buildUnnamed1323() { | 956 buildUnnamed1959() { |
| 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 checkUnnamed1323(core.List<core.String> o) { | 963 checkUnnamed1959(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 buildUnnamed1324() { | 969 buildUnnamed1960() { |
| 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 checkUnnamed1324(core.List<api.EventTagOverride> o) { | 976 checkUnnamed1960(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 buildUnnamed1325() { | 982 buildUnnamed1961() { |
| 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 checkUnnamed1325(core.List<core.String> o) { | 989 checkUnnamed1961(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 = buildUnnamed1321(); | 1001 o.additionalCreativeOptimizationConfigurations = buildUnnamed1957(); |
| 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 = buildUnnamed1322(); | 1006 o.audienceSegmentGroups = buildUnnamed1958(); |
| 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 = buildUnnamed1323(); | 1012 o.creativeGroupIds = buildUnnamed1959(); |
| 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 = buildUnnamed1324(); | 1016 o.eventTagOverrides = buildUnnamed1960(); |
| 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 = buildUnnamed1325(); | 1027 o.traffickerEmails = buildUnnamed1961(); |
| 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 checkUnnamed1321(o.additionalCreativeOptimizationConfigurations); | 1037 checkUnnamed1957(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 checkUnnamed1322(o.audienceSegmentGroups); | 1042 checkUnnamed1958(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 checkUnnamed1323(o.creativeGroupIds); | 1048 checkUnnamed1959(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 checkUnnamed1324(o.eventTagOverrides); | 1052 checkUnnamed1960(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 checkUnnamed1325(o.traffickerEmails); | 1063 checkUnnamed1961(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 buildUnnamed1326() { | 1089 buildUnnamed1962() { |
| 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 checkUnnamed1326(core.List<api.CampaignCreativeAssociation> o) { | 1096 checkUnnamed1962(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 = buildUnnamed1326(); | 1107 o.campaignCreativeAssociations = buildUnnamed1962(); |
| 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 checkUnnamed1326(o.campaignCreativeAssociations); | 1118 checkUnnamed1962(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 buildUnnamed1327() { | 1125 buildUnnamed1963() { |
| 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 checkUnnamed1327(core.List<api.Campaign> o) { | 1132 checkUnnamed1963(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 = buildUnnamed1327(); | 1143 o.campaigns = buildUnnamed1963(); |
| 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 checkUnnamed1327(o.campaigns); | 1154 checkUnnamed1963(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 buildUnnamed1328() { | 1206 buildUnnamed1964() { |
| 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 checkUnnamed1328(core.List<api.ChangeLog> o) { | 1213 checkUnnamed1964(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 = buildUnnamed1328(); | 1224 o.changeLogs = buildUnnamed1964(); |
| 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 checkUnnamed1328(o.changeLogs); | 1235 checkUnnamed1964(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 buildUnnamed1329() { | 1242 buildUnnamed1965() { |
| 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 checkUnnamed1329(core.List<api.City> o) { | 1249 checkUnnamed1965(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 = buildUnnamed1329(); | 1260 o.cities = buildUnnamed1965(); |
| 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 checkUnnamed1329(o.cities); | 1270 checkUnnamed1965(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 buildUnnamed1330() { | 1453 buildUnnamed1966() { |
| 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 checkUnnamed1330(core.List<api.ConnectionType> o) { | 1460 checkUnnamed1966(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 = buildUnnamed1330(); | 1471 o.connectionTypes = buildUnnamed1966(); |
| 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 checkUnnamed1330(o.connectionTypes); | 1481 checkUnnamed1966(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 buildUnnamed1331() { | 1487 buildUnnamed1967() { |
| 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 checkUnnamed1331(core.List<api.ContentCategory> o) { | 1494 checkUnnamed1967(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 = buildUnnamed1331(); | 1505 o.contentCategories = buildUnnamed1967(); |
| 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 checkUnnamed1331(o.contentCategories); | 1516 checkUnnamed1967(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 buildUnnamed1332() { | 1548 buildUnnamed1968() { |
| 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 checkUnnamed1332(core.List<api.Country> o) { | 1555 checkUnnamed1968(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 = buildUnnamed1332(); | 1566 o.countries = buildUnnamed1968(); |
| 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 checkUnnamed1332(o.countries); | 1576 checkUnnamed1968(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 buildUnnamed1333() { | 1609 buildUnnamed1969() { |
| 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 checkUnnamed1333(core.List<core.String> o) { | 1616 checkUnnamed1969(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 buildUnnamed1334() { | 1622 buildUnnamed1970() { |
| 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 checkUnnamed1334(core.List<core.String> o) { | 1629 checkUnnamed1970(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 buildUnnamed1335() { | 1635 buildUnnamed1971() { |
| 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 checkUnnamed1335(core.List<api.ClickTag> o) { | 1642 checkUnnamed1971(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 buildUnnamed1336() { | 1648 buildUnnamed1972() { |
| 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 checkUnnamed1336(core.List<core.String> o) { | 1655 checkUnnamed1972(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 buildUnnamed1337() { | 1661 buildUnnamed1973() { |
| 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 checkUnnamed1337(core.List<core.String> o) { | 1668 checkUnnamed1973(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 buildUnnamed1338() { | 1674 buildUnnamed1974() { |
| 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 checkUnnamed1338(core.List<api.CreativeCustomEvent> o) { | 1681 checkUnnamed1974(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 buildUnnamed1339() { | 1687 buildUnnamed1975() { |
| 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 checkUnnamed1339(core.List<api.CreativeAsset> o) { | 1694 checkUnnamed1975(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 buildUnnamed1340() { | 1700 buildUnnamed1976() { |
| 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 checkUnnamed1340(core.List<api.CreativeFieldAssignment> o) { | 1707 checkUnnamed1976(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 buildUnnamed1341() { | 1713 buildUnnamed1977() { |
| 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 checkUnnamed1341(core.List<core.String> o) { | 1720 checkUnnamed1977(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 buildUnnamed1342() { | 1726 buildUnnamed1978() { |
| 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 checkUnnamed1342(core.List<api.CreativeCustomEvent> o) { | 1733 checkUnnamed1978(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 buildUnnamed1343() { | 1739 buildUnnamed1979() { |
| 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 checkUnnamed1343(core.List<api.ThirdPartyTrackingUrl> o) { | 1746 checkUnnamed1979(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 buildUnnamed1344() { | 1752 buildUnnamed1980() { |
| 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 checkUnnamed1344(core.List<api.CreativeCustomEvent> o) { | 1759 checkUnnamed1980(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 = buildUnnamed1333(); | 1773 o.adTagKeys = buildUnnamed1969(); |
| 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.authoringTool = "foo"; | 1778 o.authoringTool = "foo"; |
| 1779 o.autoAdvanceImages = true; | 1779 o.autoAdvanceImages = true; |
| 1780 o.backgroundColor = "foo"; | 1780 o.backgroundColor = "foo"; |
| 1781 o.backupImageClickThroughUrl = "foo"; | 1781 o.backupImageClickThroughUrl = "foo"; |
| 1782 o.backupImageFeatures = buildUnnamed1334(); | 1782 o.backupImageFeatures = buildUnnamed1970(); |
| 1783 o.backupImageReportingLabel = "foo"; | 1783 o.backupImageReportingLabel = "foo"; |
| 1784 o.backupImageTargetWindow = buildTargetWindow(); | 1784 o.backupImageTargetWindow = buildTargetWindow(); |
| 1785 o.clickTags = buildUnnamed1335(); | 1785 o.clickTags = buildUnnamed1971(); |
| 1786 o.commercialId = "foo"; | 1786 o.commercialId = "foo"; |
| 1787 o.companionCreatives = buildUnnamed1336(); | 1787 o.companionCreatives = buildUnnamed1972(); |
| 1788 o.compatibility = buildUnnamed1337(); | 1788 o.compatibility = buildUnnamed1973(); |
| 1789 o.convertFlashToHtml5 = true; | 1789 o.convertFlashToHtml5 = true; |
| 1790 o.counterCustomEvents = buildUnnamed1338(); | 1790 o.counterCustomEvents = buildUnnamed1974(); |
| 1791 o.creativeAssets = buildUnnamed1339(); | 1791 o.creativeAssets = buildUnnamed1975(); |
| 1792 o.creativeFieldAssignments = buildUnnamed1340(); | 1792 o.creativeFieldAssignments = buildUnnamed1976(); |
| 1793 o.customKeyValues = buildUnnamed1341(); | 1793 o.customKeyValues = buildUnnamed1977(); |
| 1794 o.exitCustomEvents = buildUnnamed1342(); | 1794 o.exitCustomEvents = buildUnnamed1978(); |
| 1795 o.fsCommand = buildFsCommand(); | 1795 o.fsCommand = buildFsCommand(); |
| 1796 o.htmlCode = "foo"; | 1796 o.htmlCode = "foo"; |
| 1797 o.htmlCodeLocked = true; | 1797 o.htmlCodeLocked = true; |
| 1798 o.id = "foo"; | 1798 o.id = "foo"; |
| 1799 o.idDimensionValue = buildDimensionValue(); | 1799 o.idDimensionValue = buildDimensionValue(); |
| 1800 o.kind = "foo"; | 1800 o.kind = "foo"; |
| 1801 o.lastModifiedInfo = buildLastModifiedInfo(); | 1801 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 1802 o.latestTraffickedCreativeId = "foo"; | 1802 o.latestTraffickedCreativeId = "foo"; |
| 1803 o.name = "foo"; | 1803 o.name = "foo"; |
| 1804 o.overrideCss = "foo"; | 1804 o.overrideCss = "foo"; |
| 1805 o.redirectUrl = "foo"; | 1805 o.redirectUrl = "foo"; |
| 1806 o.renderingId = "foo"; | 1806 o.renderingId = "foo"; |
| 1807 o.renderingIdDimensionValue = buildDimensionValue(); | 1807 o.renderingIdDimensionValue = buildDimensionValue(); |
| 1808 o.requiredFlashPluginVersion = "foo"; | 1808 o.requiredFlashPluginVersion = "foo"; |
| 1809 o.requiredFlashVersion = 42; | 1809 o.requiredFlashVersion = 42; |
| 1810 o.size = buildSize(); | 1810 o.size = buildSize(); |
| 1811 o.skippable = true; | 1811 o.skippable = true; |
| 1812 o.sslCompliant = true; | 1812 o.sslCompliant = true; |
| 1813 o.sslOverride = true; | 1813 o.sslOverride = true; |
| 1814 o.studioAdvertiserId = "foo"; | 1814 o.studioAdvertiserId = "foo"; |
| 1815 o.studioCreativeId = "foo"; | 1815 o.studioCreativeId = "foo"; |
| 1816 o.studioTraffickedCreativeId = "foo"; | 1816 o.studioTraffickedCreativeId = "foo"; |
| 1817 o.subaccountId = "foo"; | 1817 o.subaccountId = "foo"; |
| 1818 o.thirdPartyBackupImageImpressionsUrl = "foo"; | 1818 o.thirdPartyBackupImageImpressionsUrl = "foo"; |
| 1819 o.thirdPartyRichMediaImpressionsUrl = "foo"; | 1819 o.thirdPartyRichMediaImpressionsUrl = "foo"; |
| 1820 o.thirdPartyUrls = buildUnnamed1343(); | 1820 o.thirdPartyUrls = buildUnnamed1979(); |
| 1821 o.timerCustomEvents = buildUnnamed1344(); | 1821 o.timerCustomEvents = buildUnnamed1980(); |
| 1822 o.totalFileSize = "foo"; | 1822 o.totalFileSize = "foo"; |
| 1823 o.type = "foo"; | 1823 o.type = "foo"; |
| 1824 o.version = 42; | 1824 o.version = 42; |
| 1825 o.videoDescription = "foo"; | 1825 o.videoDescription = "foo"; |
| 1826 o.videoDuration = 42.0; | 1826 o.videoDuration = 42.0; |
| 1827 } | 1827 } |
| 1828 buildCounterCreative--; | 1828 buildCounterCreative--; |
| 1829 return o; | 1829 return o; |
| 1830 } | 1830 } |
| 1831 | 1831 |
| 1832 checkCreative(api.Creative o) { | 1832 checkCreative(api.Creative o) { |
| 1833 buildCounterCreative++; | 1833 buildCounterCreative++; |
| 1834 if (buildCounterCreative < 3) { | 1834 if (buildCounterCreative < 3) { |
| 1835 unittest.expect(o.accountId, unittest.equals('foo')); | 1835 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1836 unittest.expect(o.active, unittest.isTrue); | 1836 unittest.expect(o.active, unittest.isTrue); |
| 1837 unittest.expect(o.adParameters, unittest.equals('foo')); | 1837 unittest.expect(o.adParameters, unittest.equals('foo')); |
| 1838 checkUnnamed1333(o.adTagKeys); | 1838 checkUnnamed1969(o.adTagKeys); |
| 1839 unittest.expect(o.advertiserId, unittest.equals('foo')); | 1839 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 1840 unittest.expect(o.allowScriptAccess, unittest.isTrue); | 1840 unittest.expect(o.allowScriptAccess, unittest.isTrue); |
| 1841 unittest.expect(o.archived, unittest.isTrue); | 1841 unittest.expect(o.archived, unittest.isTrue); |
| 1842 unittest.expect(o.artworkType, unittest.equals('foo')); | 1842 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 1843 unittest.expect(o.authoringTool, unittest.equals('foo')); | 1843 unittest.expect(o.authoringTool, unittest.equals('foo')); |
| 1844 unittest.expect(o.autoAdvanceImages, unittest.isTrue); | 1844 unittest.expect(o.autoAdvanceImages, unittest.isTrue); |
| 1845 unittest.expect(o.backgroundColor, unittest.equals('foo')); | 1845 unittest.expect(o.backgroundColor, unittest.equals('foo')); |
| 1846 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); | 1846 unittest.expect(o.backupImageClickThroughUrl, unittest.equals('foo')); |
| 1847 checkUnnamed1334(o.backupImageFeatures); | 1847 checkUnnamed1970(o.backupImageFeatures); |
| 1848 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); | 1848 unittest.expect(o.backupImageReportingLabel, unittest.equals('foo')); |
| 1849 checkTargetWindow(o.backupImageTargetWindow); | 1849 checkTargetWindow(o.backupImageTargetWindow); |
| 1850 checkUnnamed1335(o.clickTags); | 1850 checkUnnamed1971(o.clickTags); |
| 1851 unittest.expect(o.commercialId, unittest.equals('foo')); | 1851 unittest.expect(o.commercialId, unittest.equals('foo')); |
| 1852 checkUnnamed1336(o.companionCreatives); | 1852 checkUnnamed1972(o.companionCreatives); |
| 1853 checkUnnamed1337(o.compatibility); | 1853 checkUnnamed1973(o.compatibility); |
| 1854 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); | 1854 unittest.expect(o.convertFlashToHtml5, unittest.isTrue); |
| 1855 checkUnnamed1338(o.counterCustomEvents); | 1855 checkUnnamed1974(o.counterCustomEvents); |
| 1856 checkUnnamed1339(o.creativeAssets); | 1856 checkUnnamed1975(o.creativeAssets); |
| 1857 checkUnnamed1340(o.creativeFieldAssignments); | 1857 checkUnnamed1976(o.creativeFieldAssignments); |
| 1858 checkUnnamed1341(o.customKeyValues); | 1858 checkUnnamed1977(o.customKeyValues); |
| 1859 checkUnnamed1342(o.exitCustomEvents); | 1859 checkUnnamed1978(o.exitCustomEvents); |
| 1860 checkFsCommand(o.fsCommand); | 1860 checkFsCommand(o.fsCommand); |
| 1861 unittest.expect(o.htmlCode, unittest.equals('foo')); | 1861 unittest.expect(o.htmlCode, unittest.equals('foo')); |
| 1862 unittest.expect(o.htmlCodeLocked, unittest.isTrue); | 1862 unittest.expect(o.htmlCodeLocked, unittest.isTrue); |
| 1863 unittest.expect(o.id, unittest.equals('foo')); | 1863 unittest.expect(o.id, unittest.equals('foo')); |
| 1864 checkDimensionValue(o.idDimensionValue); | 1864 checkDimensionValue(o.idDimensionValue); |
| 1865 unittest.expect(o.kind, unittest.equals('foo')); | 1865 unittest.expect(o.kind, unittest.equals('foo')); |
| 1866 checkLastModifiedInfo(o.lastModifiedInfo); | 1866 checkLastModifiedInfo(o.lastModifiedInfo); |
| 1867 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); | 1867 unittest.expect(o.latestTraffickedCreativeId, unittest.equals('foo')); |
| 1868 unittest.expect(o.name, unittest.equals('foo')); | 1868 unittest.expect(o.name, unittest.equals('foo')); |
| 1869 unittest.expect(o.overrideCss, unittest.equals('foo')); | 1869 unittest.expect(o.overrideCss, unittest.equals('foo')); |
| 1870 unittest.expect(o.redirectUrl, unittest.equals('foo')); | 1870 unittest.expect(o.redirectUrl, unittest.equals('foo')); |
| 1871 unittest.expect(o.renderingId, unittest.equals('foo')); | 1871 unittest.expect(o.renderingId, unittest.equals('foo')); |
| 1872 checkDimensionValue(o.renderingIdDimensionValue); | 1872 checkDimensionValue(o.renderingIdDimensionValue); |
| 1873 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); | 1873 unittest.expect(o.requiredFlashPluginVersion, unittest.equals('foo')); |
| 1874 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); | 1874 unittest.expect(o.requiredFlashVersion, unittest.equals(42)); |
| 1875 checkSize(o.size); | 1875 checkSize(o.size); |
| 1876 unittest.expect(o.skippable, unittest.isTrue); | 1876 unittest.expect(o.skippable, unittest.isTrue); |
| 1877 unittest.expect(o.sslCompliant, unittest.isTrue); | 1877 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 1878 unittest.expect(o.sslOverride, unittest.isTrue); | 1878 unittest.expect(o.sslOverride, unittest.isTrue); |
| 1879 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); | 1879 unittest.expect(o.studioAdvertiserId, unittest.equals('foo')); |
| 1880 unittest.expect(o.studioCreativeId, unittest.equals('foo')); | 1880 unittest.expect(o.studioCreativeId, unittest.equals('foo')); |
| 1881 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); | 1881 unittest.expect(o.studioTraffickedCreativeId, unittest.equals('foo')); |
| 1882 unittest.expect(o.subaccountId, unittest.equals('foo')); | 1882 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 1883 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); | 1883 unittest.expect(o.thirdPartyBackupImageImpressionsUrl, unittest.equals('foo'
)); |
| 1884 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; | 1884 unittest.expect(o.thirdPartyRichMediaImpressionsUrl, unittest.equals('foo'))
; |
| 1885 checkUnnamed1343(o.thirdPartyUrls); | 1885 checkUnnamed1979(o.thirdPartyUrls); |
| 1886 checkUnnamed1344(o.timerCustomEvents); | 1886 checkUnnamed1980(o.timerCustomEvents); |
| 1887 unittest.expect(o.totalFileSize, unittest.equals('foo')); | 1887 unittest.expect(o.totalFileSize, unittest.equals('foo')); |
| 1888 unittest.expect(o.type, unittest.equals('foo')); | 1888 unittest.expect(o.type, unittest.equals('foo')); |
| 1889 unittest.expect(o.version, unittest.equals(42)); | 1889 unittest.expect(o.version, unittest.equals(42)); |
| 1890 unittest.expect(o.videoDescription, unittest.equals('foo')); | 1890 unittest.expect(o.videoDescription, unittest.equals('foo')); |
| 1891 unittest.expect(o.videoDuration, unittest.equals(42.0)); | 1891 unittest.expect(o.videoDuration, unittest.equals(42.0)); |
| 1892 } | 1892 } |
| 1893 buildCounterCreative--; | 1893 buildCounterCreative--; |
| 1894 } | 1894 } |
| 1895 | 1895 |
| 1896 buildUnnamed1345() { | 1896 buildUnnamed1981() { |
| 1897 var o = new core.List<core.String>(); | 1897 var o = new core.List<core.String>(); |
| 1898 o.add("foo"); | 1898 o.add("foo"); |
| 1899 o.add("foo"); | 1899 o.add("foo"); |
| 1900 return o; | 1900 return o; |
| 1901 } | 1901 } |
| 1902 | 1902 |
| 1903 checkUnnamed1345(core.List<core.String> o) { | 1903 checkUnnamed1981(core.List<core.String> o) { |
| 1904 unittest.expect(o, unittest.hasLength(2)); | 1904 unittest.expect(o, unittest.hasLength(2)); |
| 1905 unittest.expect(o[0], unittest.equals('foo')); | 1905 unittest.expect(o[0], unittest.equals('foo')); |
| 1906 unittest.expect(o[1], unittest.equals('foo')); | 1906 unittest.expect(o[1], unittest.equals('foo')); |
| 1907 } | 1907 } |
| 1908 | 1908 |
| 1909 core.int buildCounterCreativeAsset = 0; | 1909 core.int buildCounterCreativeAsset = 0; |
| 1910 buildCreativeAsset() { | 1910 buildCreativeAsset() { |
| 1911 var o = new api.CreativeAsset(); | 1911 var o = new api.CreativeAsset(); |
| 1912 buildCounterCreativeAsset++; | 1912 buildCounterCreativeAsset++; |
| 1913 if (buildCounterCreativeAsset < 3) { | 1913 if (buildCounterCreativeAsset < 3) { |
| 1914 o.actionScript3 = true; | 1914 o.actionScript3 = true; |
| 1915 o.active = true; | 1915 o.active = true; |
| 1916 o.alignment = "foo"; | 1916 o.alignment = "foo"; |
| 1917 o.artworkType = "foo"; | 1917 o.artworkType = "foo"; |
| 1918 o.assetIdentifier = buildCreativeAssetId(); | 1918 o.assetIdentifier = buildCreativeAssetId(); |
| 1919 o.backupImageExit = buildCreativeCustomEvent(); | 1919 o.backupImageExit = buildCreativeCustomEvent(); |
| 1920 o.bitRate = 42; | 1920 o.bitRate = 42; |
| 1921 o.childAssetType = "foo"; | 1921 o.childAssetType = "foo"; |
| 1922 o.collapsedSize = buildSize(); | 1922 o.collapsedSize = buildSize(); |
| 1923 o.customStartTimeValue = 42; | 1923 o.customStartTimeValue = 42; |
| 1924 o.detectedFeatures = buildUnnamed1345(); | 1924 o.detectedFeatures = buildUnnamed1981(); |
| 1925 o.displayType = "foo"; | 1925 o.displayType = "foo"; |
| 1926 o.duration = 42; | 1926 o.duration = 42; |
| 1927 o.durationType = "foo"; | 1927 o.durationType = "foo"; |
| 1928 o.expandedDimension = buildSize(); | 1928 o.expandedDimension = buildSize(); |
| 1929 o.fileSize = "foo"; | 1929 o.fileSize = "foo"; |
| 1930 o.flashVersion = 42; | 1930 o.flashVersion = 42; |
| 1931 o.hideFlashObjects = true; | 1931 o.hideFlashObjects = true; |
| 1932 o.hideSelectionBoxes = true; | 1932 o.hideSelectionBoxes = true; |
| 1933 o.horizontallyLocked = true; | 1933 o.horizontallyLocked = true; |
| 1934 o.id = "foo"; | 1934 o.id = "foo"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1964 unittest.expect(o.actionScript3, unittest.isTrue); | 1964 unittest.expect(o.actionScript3, unittest.isTrue); |
| 1965 unittest.expect(o.active, unittest.isTrue); | 1965 unittest.expect(o.active, unittest.isTrue); |
| 1966 unittest.expect(o.alignment, unittest.equals('foo')); | 1966 unittest.expect(o.alignment, unittest.equals('foo')); |
| 1967 unittest.expect(o.artworkType, unittest.equals('foo')); | 1967 unittest.expect(o.artworkType, unittest.equals('foo')); |
| 1968 checkCreativeAssetId(o.assetIdentifier); | 1968 checkCreativeAssetId(o.assetIdentifier); |
| 1969 checkCreativeCustomEvent(o.backupImageExit); | 1969 checkCreativeCustomEvent(o.backupImageExit); |
| 1970 unittest.expect(o.bitRate, unittest.equals(42)); | 1970 unittest.expect(o.bitRate, unittest.equals(42)); |
| 1971 unittest.expect(o.childAssetType, unittest.equals('foo')); | 1971 unittest.expect(o.childAssetType, unittest.equals('foo')); |
| 1972 checkSize(o.collapsedSize); | 1972 checkSize(o.collapsedSize); |
| 1973 unittest.expect(o.customStartTimeValue, unittest.equals(42)); | 1973 unittest.expect(o.customStartTimeValue, unittest.equals(42)); |
| 1974 checkUnnamed1345(o.detectedFeatures); | 1974 checkUnnamed1981(o.detectedFeatures); |
| 1975 unittest.expect(o.displayType, unittest.equals('foo')); | 1975 unittest.expect(o.displayType, unittest.equals('foo')); |
| 1976 unittest.expect(o.duration, unittest.equals(42)); | 1976 unittest.expect(o.duration, unittest.equals(42)); |
| 1977 unittest.expect(o.durationType, unittest.equals('foo')); | 1977 unittest.expect(o.durationType, unittest.equals('foo')); |
| 1978 checkSize(o.expandedDimension); | 1978 checkSize(o.expandedDimension); |
| 1979 unittest.expect(o.fileSize, unittest.equals('foo')); | 1979 unittest.expect(o.fileSize, unittest.equals('foo')); |
| 1980 unittest.expect(o.flashVersion, unittest.equals(42)); | 1980 unittest.expect(o.flashVersion, unittest.equals(42)); |
| 1981 unittest.expect(o.hideFlashObjects, unittest.isTrue); | 1981 unittest.expect(o.hideFlashObjects, unittest.isTrue); |
| 1982 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); | 1982 unittest.expect(o.hideSelectionBoxes, unittest.isTrue); |
| 1983 unittest.expect(o.horizontallyLocked, unittest.isTrue); | 1983 unittest.expect(o.horizontallyLocked, unittest.isTrue); |
| 1984 unittest.expect(o.id, unittest.equals('foo')); | 1984 unittest.expect(o.id, unittest.equals('foo')); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2021 | 2021 |
| 2022 checkCreativeAssetId(api.CreativeAssetId o) { | 2022 checkCreativeAssetId(api.CreativeAssetId o) { |
| 2023 buildCounterCreativeAssetId++; | 2023 buildCounterCreativeAssetId++; |
| 2024 if (buildCounterCreativeAssetId < 3) { | 2024 if (buildCounterCreativeAssetId < 3) { |
| 2025 unittest.expect(o.name, unittest.equals('foo')); | 2025 unittest.expect(o.name, unittest.equals('foo')); |
| 2026 unittest.expect(o.type, unittest.equals('foo')); | 2026 unittest.expect(o.type, unittest.equals('foo')); |
| 2027 } | 2027 } |
| 2028 buildCounterCreativeAssetId--; | 2028 buildCounterCreativeAssetId--; |
| 2029 } | 2029 } |
| 2030 | 2030 |
| 2031 buildUnnamed1346() { | 2031 buildUnnamed1982() { |
| 2032 var o = new core.List<api.ClickTag>(); | 2032 var o = new core.List<api.ClickTag>(); |
| 2033 o.add(buildClickTag()); | 2033 o.add(buildClickTag()); |
| 2034 o.add(buildClickTag()); | 2034 o.add(buildClickTag()); |
| 2035 return o; | 2035 return o; |
| 2036 } | 2036 } |
| 2037 | 2037 |
| 2038 checkUnnamed1346(core.List<api.ClickTag> o) { | 2038 checkUnnamed1982(core.List<api.ClickTag> o) { |
| 2039 unittest.expect(o, unittest.hasLength(2)); | 2039 unittest.expect(o, unittest.hasLength(2)); |
| 2040 checkClickTag(o[0]); | 2040 checkClickTag(o[0]); |
| 2041 checkClickTag(o[1]); | 2041 checkClickTag(o[1]); |
| 2042 } | 2042 } |
| 2043 | 2043 |
| 2044 buildUnnamed1347() { | 2044 buildUnnamed1983() { |
| 2045 var o = new core.List<core.String>(); | 2045 var o = new core.List<core.String>(); |
| 2046 o.add("foo"); | 2046 o.add("foo"); |
| 2047 o.add("foo"); | 2047 o.add("foo"); |
| 2048 return o; | 2048 return o; |
| 2049 } | 2049 } |
| 2050 | 2050 |
| 2051 checkUnnamed1347(core.List<core.String> o) { | 2051 checkUnnamed1983(core.List<core.String> o) { |
| 2052 unittest.expect(o, unittest.hasLength(2)); | 2052 unittest.expect(o, unittest.hasLength(2)); |
| 2053 unittest.expect(o[0], unittest.equals('foo')); | 2053 unittest.expect(o[0], unittest.equals('foo')); |
| 2054 unittest.expect(o[1], unittest.equals('foo')); | 2054 unittest.expect(o[1], unittest.equals('foo')); |
| 2055 } | 2055 } |
| 2056 | 2056 |
| 2057 buildUnnamed1348() { | 2057 buildUnnamed1984() { |
| 2058 var o = new core.List<core.String>(); | 2058 var o = new core.List<core.String>(); |
| 2059 o.add("foo"); | 2059 o.add("foo"); |
| 2060 o.add("foo"); | 2060 o.add("foo"); |
| 2061 return o; | 2061 return o; |
| 2062 } | 2062 } |
| 2063 | 2063 |
| 2064 checkUnnamed1348(core.List<core.String> o) { | 2064 checkUnnamed1984(core.List<core.String> o) { |
| 2065 unittest.expect(o, unittest.hasLength(2)); | 2065 unittest.expect(o, unittest.hasLength(2)); |
| 2066 unittest.expect(o[0], unittest.equals('foo')); | 2066 unittest.expect(o[0], unittest.equals('foo')); |
| 2067 unittest.expect(o[1], unittest.equals('foo')); | 2067 unittest.expect(o[1], unittest.equals('foo')); |
| 2068 } | 2068 } |
| 2069 | 2069 |
| 2070 core.int buildCounterCreativeAssetMetadata = 0; | 2070 core.int buildCounterCreativeAssetMetadata = 0; |
| 2071 buildCreativeAssetMetadata() { | 2071 buildCreativeAssetMetadata() { |
| 2072 var o = new api.CreativeAssetMetadata(); | 2072 var o = new api.CreativeAssetMetadata(); |
| 2073 buildCounterCreativeAssetMetadata++; | 2073 buildCounterCreativeAssetMetadata++; |
| 2074 if (buildCounterCreativeAssetMetadata < 3) { | 2074 if (buildCounterCreativeAssetMetadata < 3) { |
| 2075 o.assetIdentifier = buildCreativeAssetId(); | 2075 o.assetIdentifier = buildCreativeAssetId(); |
| 2076 o.clickTags = buildUnnamed1346(); | 2076 o.clickTags = buildUnnamed1982(); |
| 2077 o.detectedFeatures = buildUnnamed1347(); | 2077 o.detectedFeatures = buildUnnamed1983(); |
| 2078 o.kind = "foo"; | 2078 o.kind = "foo"; |
| 2079 o.warnedValidationRules = buildUnnamed1348(); | 2079 o.warnedValidationRules = buildUnnamed1984(); |
| 2080 } | 2080 } |
| 2081 buildCounterCreativeAssetMetadata--; | 2081 buildCounterCreativeAssetMetadata--; |
| 2082 return o; | 2082 return o; |
| 2083 } | 2083 } |
| 2084 | 2084 |
| 2085 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { | 2085 checkCreativeAssetMetadata(api.CreativeAssetMetadata o) { |
| 2086 buildCounterCreativeAssetMetadata++; | 2086 buildCounterCreativeAssetMetadata++; |
| 2087 if (buildCounterCreativeAssetMetadata < 3) { | 2087 if (buildCounterCreativeAssetMetadata < 3) { |
| 2088 checkCreativeAssetId(o.assetIdentifier); | 2088 checkCreativeAssetId(o.assetIdentifier); |
| 2089 checkUnnamed1346(o.clickTags); | 2089 checkUnnamed1982(o.clickTags); |
| 2090 checkUnnamed1347(o.detectedFeatures); | 2090 checkUnnamed1983(o.detectedFeatures); |
| 2091 unittest.expect(o.kind, unittest.equals('foo')); | 2091 unittest.expect(o.kind, unittest.equals('foo')); |
| 2092 checkUnnamed1348(o.warnedValidationRules); | 2092 checkUnnamed1984(o.warnedValidationRules); |
| 2093 } | 2093 } |
| 2094 buildCounterCreativeAssetMetadata--; | 2094 buildCounterCreativeAssetMetadata--; |
| 2095 } | 2095 } |
| 2096 | 2096 |
| 2097 buildUnnamed1349() { | 2097 buildUnnamed1985() { |
| 2098 var o = new core.List<api.CompanionClickThroughOverride>(); | 2098 var o = new core.List<api.CompanionClickThroughOverride>(); |
| 2099 o.add(buildCompanionClickThroughOverride()); | 2099 o.add(buildCompanionClickThroughOverride()); |
| 2100 o.add(buildCompanionClickThroughOverride()); | 2100 o.add(buildCompanionClickThroughOverride()); |
| 2101 return o; | 2101 return o; |
| 2102 } | 2102 } |
| 2103 | 2103 |
| 2104 checkUnnamed1349(core.List<api.CompanionClickThroughOverride> o) { | 2104 checkUnnamed1985(core.List<api.CompanionClickThroughOverride> o) { |
| 2105 unittest.expect(o, unittest.hasLength(2)); | 2105 unittest.expect(o, unittest.hasLength(2)); |
| 2106 checkCompanionClickThroughOverride(o[0]); | 2106 checkCompanionClickThroughOverride(o[0]); |
| 2107 checkCompanionClickThroughOverride(o[1]); | 2107 checkCompanionClickThroughOverride(o[1]); |
| 2108 } | 2108 } |
| 2109 | 2109 |
| 2110 buildUnnamed1350() { | 2110 buildUnnamed1986() { |
| 2111 var o = new core.List<api.CreativeGroupAssignment>(); | 2111 var o = new core.List<api.CreativeGroupAssignment>(); |
| 2112 o.add(buildCreativeGroupAssignment()); | 2112 o.add(buildCreativeGroupAssignment()); |
| 2113 o.add(buildCreativeGroupAssignment()); | 2113 o.add(buildCreativeGroupAssignment()); |
| 2114 return o; | 2114 return o; |
| 2115 } | 2115 } |
| 2116 | 2116 |
| 2117 checkUnnamed1350(core.List<api.CreativeGroupAssignment> o) { | 2117 checkUnnamed1986(core.List<api.CreativeGroupAssignment> o) { |
| 2118 unittest.expect(o, unittest.hasLength(2)); | 2118 unittest.expect(o, unittest.hasLength(2)); |
| 2119 checkCreativeGroupAssignment(o[0]); | 2119 checkCreativeGroupAssignment(o[0]); |
| 2120 checkCreativeGroupAssignment(o[1]); | 2120 checkCreativeGroupAssignment(o[1]); |
| 2121 } | 2121 } |
| 2122 | 2122 |
| 2123 buildUnnamed1351() { | 2123 buildUnnamed1987() { |
| 2124 var o = new core.List<api.RichMediaExitOverride>(); | 2124 var o = new core.List<api.RichMediaExitOverride>(); |
| 2125 o.add(buildRichMediaExitOverride()); | 2125 o.add(buildRichMediaExitOverride()); |
| 2126 o.add(buildRichMediaExitOverride()); | 2126 o.add(buildRichMediaExitOverride()); |
| 2127 return o; | 2127 return o; |
| 2128 } | 2128 } |
| 2129 | 2129 |
| 2130 checkUnnamed1351(core.List<api.RichMediaExitOverride> o) { | 2130 checkUnnamed1987(core.List<api.RichMediaExitOverride> o) { |
| 2131 unittest.expect(o, unittest.hasLength(2)); | 2131 unittest.expect(o, unittest.hasLength(2)); |
| 2132 checkRichMediaExitOverride(o[0]); | 2132 checkRichMediaExitOverride(o[0]); |
| 2133 checkRichMediaExitOverride(o[1]); | 2133 checkRichMediaExitOverride(o[1]); |
| 2134 } | 2134 } |
| 2135 | 2135 |
| 2136 core.int buildCounterCreativeAssignment = 0; | 2136 core.int buildCounterCreativeAssignment = 0; |
| 2137 buildCreativeAssignment() { | 2137 buildCreativeAssignment() { |
| 2138 var o = new api.CreativeAssignment(); | 2138 var o = new api.CreativeAssignment(); |
| 2139 buildCounterCreativeAssignment++; | 2139 buildCounterCreativeAssignment++; |
| 2140 if (buildCounterCreativeAssignment < 3) { | 2140 if (buildCounterCreativeAssignment < 3) { |
| 2141 o.active = true; | 2141 o.active = true; |
| 2142 o.applyEventTags = true; | 2142 o.applyEventTags = true; |
| 2143 o.clickThroughUrl = buildClickThroughUrl(); | 2143 o.clickThroughUrl = buildClickThroughUrl(); |
| 2144 o.companionCreativeOverrides = buildUnnamed1349(); | 2144 o.companionCreativeOverrides = buildUnnamed1985(); |
| 2145 o.creativeGroupAssignments = buildUnnamed1350(); | 2145 o.creativeGroupAssignments = buildUnnamed1986(); |
| 2146 o.creativeId = "foo"; | 2146 o.creativeId = "foo"; |
| 2147 o.creativeIdDimensionValue = buildDimensionValue(); | 2147 o.creativeIdDimensionValue = buildDimensionValue(); |
| 2148 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2148 o.endTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2149 o.richMediaExitOverrides = buildUnnamed1351(); | 2149 o.richMediaExitOverrides = buildUnnamed1987(); |
| 2150 o.sequence = 42; | 2150 o.sequence = 42; |
| 2151 o.sslCompliant = true; | 2151 o.sslCompliant = true; |
| 2152 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 2152 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2153 o.weight = 42; | 2153 o.weight = 42; |
| 2154 } | 2154 } |
| 2155 buildCounterCreativeAssignment--; | 2155 buildCounterCreativeAssignment--; |
| 2156 return o; | 2156 return o; |
| 2157 } | 2157 } |
| 2158 | 2158 |
| 2159 checkCreativeAssignment(api.CreativeAssignment o) { | 2159 checkCreativeAssignment(api.CreativeAssignment o) { |
| 2160 buildCounterCreativeAssignment++; | 2160 buildCounterCreativeAssignment++; |
| 2161 if (buildCounterCreativeAssignment < 3) { | 2161 if (buildCounterCreativeAssignment < 3) { |
| 2162 unittest.expect(o.active, unittest.isTrue); | 2162 unittest.expect(o.active, unittest.isTrue); |
| 2163 unittest.expect(o.applyEventTags, unittest.isTrue); | 2163 unittest.expect(o.applyEventTags, unittest.isTrue); |
| 2164 checkClickThroughUrl(o.clickThroughUrl); | 2164 checkClickThroughUrl(o.clickThroughUrl); |
| 2165 checkUnnamed1349(o.companionCreativeOverrides); | 2165 checkUnnamed1985(o.companionCreativeOverrides); |
| 2166 checkUnnamed1350(o.creativeGroupAssignments); | 2166 checkUnnamed1986(o.creativeGroupAssignments); |
| 2167 unittest.expect(o.creativeId, unittest.equals('foo')); | 2167 unittest.expect(o.creativeId, unittest.equals('foo')); |
| 2168 checkDimensionValue(o.creativeIdDimensionValue); | 2168 checkDimensionValue(o.creativeIdDimensionValue); |
| 2169 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2169 unittest.expect(o.endTime, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2170 checkUnnamed1351(o.richMediaExitOverrides); | 2170 checkUnnamed1987(o.richMediaExitOverrides); |
| 2171 unittest.expect(o.sequence, unittest.equals(42)); | 2171 unittest.expect(o.sequence, unittest.equals(42)); |
| 2172 unittest.expect(o.sslCompliant, unittest.isTrue); | 2172 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 2173 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 2173 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 2174 unittest.expect(o.weight, unittest.equals(42)); | 2174 unittest.expect(o.weight, unittest.equals(42)); |
| 2175 } | 2175 } |
| 2176 buildCounterCreativeAssignment--; | 2176 buildCounterCreativeAssignment--; |
| 2177 } | 2177 } |
| 2178 | 2178 |
| 2179 core.int buildCounterCreativeCustomEvent = 0; | 2179 core.int buildCounterCreativeCustomEvent = 0; |
| 2180 buildCreativeCustomEvent() { | 2180 buildCreativeCustomEvent() { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2279 checkCreativeFieldValue(api.CreativeFieldValue o) { | 2279 checkCreativeFieldValue(api.CreativeFieldValue o) { |
| 2280 buildCounterCreativeFieldValue++; | 2280 buildCounterCreativeFieldValue++; |
| 2281 if (buildCounterCreativeFieldValue < 3) { | 2281 if (buildCounterCreativeFieldValue < 3) { |
| 2282 unittest.expect(o.id, unittest.equals('foo')); | 2282 unittest.expect(o.id, unittest.equals('foo')); |
| 2283 unittest.expect(o.kind, unittest.equals('foo')); | 2283 unittest.expect(o.kind, unittest.equals('foo')); |
| 2284 unittest.expect(o.value, unittest.equals('foo')); | 2284 unittest.expect(o.value, unittest.equals('foo')); |
| 2285 } | 2285 } |
| 2286 buildCounterCreativeFieldValue--; | 2286 buildCounterCreativeFieldValue--; |
| 2287 } | 2287 } |
| 2288 | 2288 |
| 2289 buildUnnamed1352() { | 2289 buildUnnamed1988() { |
| 2290 var o = new core.List<api.CreativeFieldValue>(); | 2290 var o = new core.List<api.CreativeFieldValue>(); |
| 2291 o.add(buildCreativeFieldValue()); | 2291 o.add(buildCreativeFieldValue()); |
| 2292 o.add(buildCreativeFieldValue()); | 2292 o.add(buildCreativeFieldValue()); |
| 2293 return o; | 2293 return o; |
| 2294 } | 2294 } |
| 2295 | 2295 |
| 2296 checkUnnamed1352(core.List<api.CreativeFieldValue> o) { | 2296 checkUnnamed1988(core.List<api.CreativeFieldValue> o) { |
| 2297 unittest.expect(o, unittest.hasLength(2)); | 2297 unittest.expect(o, unittest.hasLength(2)); |
| 2298 checkCreativeFieldValue(o[0]); | 2298 checkCreativeFieldValue(o[0]); |
| 2299 checkCreativeFieldValue(o[1]); | 2299 checkCreativeFieldValue(o[1]); |
| 2300 } | 2300 } |
| 2301 | 2301 |
| 2302 core.int buildCounterCreativeFieldValuesListResponse = 0; | 2302 core.int buildCounterCreativeFieldValuesListResponse = 0; |
| 2303 buildCreativeFieldValuesListResponse() { | 2303 buildCreativeFieldValuesListResponse() { |
| 2304 var o = new api.CreativeFieldValuesListResponse(); | 2304 var o = new api.CreativeFieldValuesListResponse(); |
| 2305 buildCounterCreativeFieldValuesListResponse++; | 2305 buildCounterCreativeFieldValuesListResponse++; |
| 2306 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2306 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2307 o.creativeFieldValues = buildUnnamed1352(); | 2307 o.creativeFieldValues = buildUnnamed1988(); |
| 2308 o.kind = "foo"; | 2308 o.kind = "foo"; |
| 2309 o.nextPageToken = "foo"; | 2309 o.nextPageToken = "foo"; |
| 2310 } | 2310 } |
| 2311 buildCounterCreativeFieldValuesListResponse--; | 2311 buildCounterCreativeFieldValuesListResponse--; |
| 2312 return o; | 2312 return o; |
| 2313 } | 2313 } |
| 2314 | 2314 |
| 2315 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { | 2315 checkCreativeFieldValuesListResponse(api.CreativeFieldValuesListResponse o) { |
| 2316 buildCounterCreativeFieldValuesListResponse++; | 2316 buildCounterCreativeFieldValuesListResponse++; |
| 2317 if (buildCounterCreativeFieldValuesListResponse < 3) { | 2317 if (buildCounterCreativeFieldValuesListResponse < 3) { |
| 2318 checkUnnamed1352(o.creativeFieldValues); | 2318 checkUnnamed1988(o.creativeFieldValues); |
| 2319 unittest.expect(o.kind, unittest.equals('foo')); | 2319 unittest.expect(o.kind, unittest.equals('foo')); |
| 2320 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2320 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2321 } | 2321 } |
| 2322 buildCounterCreativeFieldValuesListResponse--; | 2322 buildCounterCreativeFieldValuesListResponse--; |
| 2323 } | 2323 } |
| 2324 | 2324 |
| 2325 buildUnnamed1353() { | 2325 buildUnnamed1989() { |
| 2326 var o = new core.List<api.CreativeField>(); | 2326 var o = new core.List<api.CreativeField>(); |
| 2327 o.add(buildCreativeField()); | 2327 o.add(buildCreativeField()); |
| 2328 o.add(buildCreativeField()); | 2328 o.add(buildCreativeField()); |
| 2329 return o; | 2329 return o; |
| 2330 } | 2330 } |
| 2331 | 2331 |
| 2332 checkUnnamed1353(core.List<api.CreativeField> o) { | 2332 checkUnnamed1989(core.List<api.CreativeField> o) { |
| 2333 unittest.expect(o, unittest.hasLength(2)); | 2333 unittest.expect(o, unittest.hasLength(2)); |
| 2334 checkCreativeField(o[0]); | 2334 checkCreativeField(o[0]); |
| 2335 checkCreativeField(o[1]); | 2335 checkCreativeField(o[1]); |
| 2336 } | 2336 } |
| 2337 | 2337 |
| 2338 core.int buildCounterCreativeFieldsListResponse = 0; | 2338 core.int buildCounterCreativeFieldsListResponse = 0; |
| 2339 buildCreativeFieldsListResponse() { | 2339 buildCreativeFieldsListResponse() { |
| 2340 var o = new api.CreativeFieldsListResponse(); | 2340 var o = new api.CreativeFieldsListResponse(); |
| 2341 buildCounterCreativeFieldsListResponse++; | 2341 buildCounterCreativeFieldsListResponse++; |
| 2342 if (buildCounterCreativeFieldsListResponse < 3) { | 2342 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2343 o.creativeFields = buildUnnamed1353(); | 2343 o.creativeFields = buildUnnamed1989(); |
| 2344 o.kind = "foo"; | 2344 o.kind = "foo"; |
| 2345 o.nextPageToken = "foo"; | 2345 o.nextPageToken = "foo"; |
| 2346 } | 2346 } |
| 2347 buildCounterCreativeFieldsListResponse--; | 2347 buildCounterCreativeFieldsListResponse--; |
| 2348 return o; | 2348 return o; |
| 2349 } | 2349 } |
| 2350 | 2350 |
| 2351 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { | 2351 checkCreativeFieldsListResponse(api.CreativeFieldsListResponse o) { |
| 2352 buildCounterCreativeFieldsListResponse++; | 2352 buildCounterCreativeFieldsListResponse++; |
| 2353 if (buildCounterCreativeFieldsListResponse < 3) { | 2353 if (buildCounterCreativeFieldsListResponse < 3) { |
| 2354 checkUnnamed1353(o.creativeFields); | 2354 checkUnnamed1989(o.creativeFields); |
| 2355 unittest.expect(o.kind, unittest.equals('foo')); | 2355 unittest.expect(o.kind, unittest.equals('foo')); |
| 2356 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2356 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2357 } | 2357 } |
| 2358 buildCounterCreativeFieldsListResponse--; | 2358 buildCounterCreativeFieldsListResponse--; |
| 2359 } | 2359 } |
| 2360 | 2360 |
| 2361 core.int buildCounterCreativeGroup = 0; | 2361 core.int buildCounterCreativeGroup = 0; |
| 2362 buildCreativeGroup() { | 2362 buildCreativeGroup() { |
| 2363 var o = new api.CreativeGroup(); | 2363 var o = new api.CreativeGroup(); |
| 2364 buildCounterCreativeGroup++; | 2364 buildCounterCreativeGroup++; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2405 | 2405 |
| 2406 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { | 2406 checkCreativeGroupAssignment(api.CreativeGroupAssignment o) { |
| 2407 buildCounterCreativeGroupAssignment++; | 2407 buildCounterCreativeGroupAssignment++; |
| 2408 if (buildCounterCreativeGroupAssignment < 3) { | 2408 if (buildCounterCreativeGroupAssignment < 3) { |
| 2409 unittest.expect(o.creativeGroupId, unittest.equals('foo')); | 2409 unittest.expect(o.creativeGroupId, unittest.equals('foo')); |
| 2410 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); | 2410 unittest.expect(o.creativeGroupNumber, unittest.equals('foo')); |
| 2411 } | 2411 } |
| 2412 buildCounterCreativeGroupAssignment--; | 2412 buildCounterCreativeGroupAssignment--; |
| 2413 } | 2413 } |
| 2414 | 2414 |
| 2415 buildUnnamed1354() { | 2415 buildUnnamed1990() { |
| 2416 var o = new core.List<api.CreativeGroup>(); | 2416 var o = new core.List<api.CreativeGroup>(); |
| 2417 o.add(buildCreativeGroup()); | 2417 o.add(buildCreativeGroup()); |
| 2418 o.add(buildCreativeGroup()); | 2418 o.add(buildCreativeGroup()); |
| 2419 return o; | 2419 return o; |
| 2420 } | 2420 } |
| 2421 | 2421 |
| 2422 checkUnnamed1354(core.List<api.CreativeGroup> o) { | 2422 checkUnnamed1990(core.List<api.CreativeGroup> o) { |
| 2423 unittest.expect(o, unittest.hasLength(2)); | 2423 unittest.expect(o, unittest.hasLength(2)); |
| 2424 checkCreativeGroup(o[0]); | 2424 checkCreativeGroup(o[0]); |
| 2425 checkCreativeGroup(o[1]); | 2425 checkCreativeGroup(o[1]); |
| 2426 } | 2426 } |
| 2427 | 2427 |
| 2428 core.int buildCounterCreativeGroupsListResponse = 0; | 2428 core.int buildCounterCreativeGroupsListResponse = 0; |
| 2429 buildCreativeGroupsListResponse() { | 2429 buildCreativeGroupsListResponse() { |
| 2430 var o = new api.CreativeGroupsListResponse(); | 2430 var o = new api.CreativeGroupsListResponse(); |
| 2431 buildCounterCreativeGroupsListResponse++; | 2431 buildCounterCreativeGroupsListResponse++; |
| 2432 if (buildCounterCreativeGroupsListResponse < 3) { | 2432 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2433 o.creativeGroups = buildUnnamed1354(); | 2433 o.creativeGroups = buildUnnamed1990(); |
| 2434 o.kind = "foo"; | 2434 o.kind = "foo"; |
| 2435 o.nextPageToken = "foo"; | 2435 o.nextPageToken = "foo"; |
| 2436 } | 2436 } |
| 2437 buildCounterCreativeGroupsListResponse--; | 2437 buildCounterCreativeGroupsListResponse--; |
| 2438 return o; | 2438 return o; |
| 2439 } | 2439 } |
| 2440 | 2440 |
| 2441 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { | 2441 checkCreativeGroupsListResponse(api.CreativeGroupsListResponse o) { |
| 2442 buildCounterCreativeGroupsListResponse++; | 2442 buildCounterCreativeGroupsListResponse++; |
| 2443 if (buildCounterCreativeGroupsListResponse < 3) { | 2443 if (buildCounterCreativeGroupsListResponse < 3) { |
| 2444 checkUnnamed1354(o.creativeGroups); | 2444 checkUnnamed1990(o.creativeGroups); |
| 2445 unittest.expect(o.kind, unittest.equals('foo')); | 2445 unittest.expect(o.kind, unittest.equals('foo')); |
| 2446 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2446 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2447 } | 2447 } |
| 2448 buildCounterCreativeGroupsListResponse--; | 2448 buildCounterCreativeGroupsListResponse--; |
| 2449 } | 2449 } |
| 2450 | 2450 |
| 2451 buildUnnamed1355() { | 2451 buildUnnamed1991() { |
| 2452 var o = new core.List<api.OptimizationActivity>(); | 2452 var o = new core.List<api.OptimizationActivity>(); |
| 2453 o.add(buildOptimizationActivity()); | 2453 o.add(buildOptimizationActivity()); |
| 2454 o.add(buildOptimizationActivity()); | 2454 o.add(buildOptimizationActivity()); |
| 2455 return o; | 2455 return o; |
| 2456 } | 2456 } |
| 2457 | 2457 |
| 2458 checkUnnamed1355(core.List<api.OptimizationActivity> o) { | 2458 checkUnnamed1991(core.List<api.OptimizationActivity> o) { |
| 2459 unittest.expect(o, unittest.hasLength(2)); | 2459 unittest.expect(o, unittest.hasLength(2)); |
| 2460 checkOptimizationActivity(o[0]); | 2460 checkOptimizationActivity(o[0]); |
| 2461 checkOptimizationActivity(o[1]); | 2461 checkOptimizationActivity(o[1]); |
| 2462 } | 2462 } |
| 2463 | 2463 |
| 2464 core.int buildCounterCreativeOptimizationConfiguration = 0; | 2464 core.int buildCounterCreativeOptimizationConfiguration = 0; |
| 2465 buildCreativeOptimizationConfiguration() { | 2465 buildCreativeOptimizationConfiguration() { |
| 2466 var o = new api.CreativeOptimizationConfiguration(); | 2466 var o = new api.CreativeOptimizationConfiguration(); |
| 2467 buildCounterCreativeOptimizationConfiguration++; | 2467 buildCounterCreativeOptimizationConfiguration++; |
| 2468 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2468 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2469 o.id = "foo"; | 2469 o.id = "foo"; |
| 2470 o.name = "foo"; | 2470 o.name = "foo"; |
| 2471 o.optimizationActivitys = buildUnnamed1355(); | 2471 o.optimizationActivitys = buildUnnamed1991(); |
| 2472 o.optimizationModel = "foo"; | 2472 o.optimizationModel = "foo"; |
| 2473 } | 2473 } |
| 2474 buildCounterCreativeOptimizationConfiguration--; | 2474 buildCounterCreativeOptimizationConfiguration--; |
| 2475 return o; | 2475 return o; |
| 2476 } | 2476 } |
| 2477 | 2477 |
| 2478 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ | 2478 checkCreativeOptimizationConfiguration(api.CreativeOptimizationConfiguration o)
{ |
| 2479 buildCounterCreativeOptimizationConfiguration++; | 2479 buildCounterCreativeOptimizationConfiguration++; |
| 2480 if (buildCounterCreativeOptimizationConfiguration < 3) { | 2480 if (buildCounterCreativeOptimizationConfiguration < 3) { |
| 2481 unittest.expect(o.id, unittest.equals('foo')); | 2481 unittest.expect(o.id, unittest.equals('foo')); |
| 2482 unittest.expect(o.name, unittest.equals('foo')); | 2482 unittest.expect(o.name, unittest.equals('foo')); |
| 2483 checkUnnamed1355(o.optimizationActivitys); | 2483 checkUnnamed1991(o.optimizationActivitys); |
| 2484 unittest.expect(o.optimizationModel, unittest.equals('foo')); | 2484 unittest.expect(o.optimizationModel, unittest.equals('foo')); |
| 2485 } | 2485 } |
| 2486 buildCounterCreativeOptimizationConfiguration--; | 2486 buildCounterCreativeOptimizationConfiguration--; |
| 2487 } | 2487 } |
| 2488 | 2488 |
| 2489 buildUnnamed1356() { | 2489 buildUnnamed1992() { |
| 2490 var o = new core.List<api.CreativeAssignment>(); | 2490 var o = new core.List<api.CreativeAssignment>(); |
| 2491 o.add(buildCreativeAssignment()); | 2491 o.add(buildCreativeAssignment()); |
| 2492 o.add(buildCreativeAssignment()); | 2492 o.add(buildCreativeAssignment()); |
| 2493 return o; | 2493 return o; |
| 2494 } | 2494 } |
| 2495 | 2495 |
| 2496 checkUnnamed1356(core.List<api.CreativeAssignment> o) { | 2496 checkUnnamed1992(core.List<api.CreativeAssignment> o) { |
| 2497 unittest.expect(o, unittest.hasLength(2)); | 2497 unittest.expect(o, unittest.hasLength(2)); |
| 2498 checkCreativeAssignment(o[0]); | 2498 checkCreativeAssignment(o[0]); |
| 2499 checkCreativeAssignment(o[1]); | 2499 checkCreativeAssignment(o[1]); |
| 2500 } | 2500 } |
| 2501 | 2501 |
| 2502 core.int buildCounterCreativeRotation = 0; | 2502 core.int buildCounterCreativeRotation = 0; |
| 2503 buildCreativeRotation() { | 2503 buildCreativeRotation() { |
| 2504 var o = new api.CreativeRotation(); | 2504 var o = new api.CreativeRotation(); |
| 2505 buildCounterCreativeRotation++; | 2505 buildCounterCreativeRotation++; |
| 2506 if (buildCounterCreativeRotation < 3) { | 2506 if (buildCounterCreativeRotation < 3) { |
| 2507 o.creativeAssignments = buildUnnamed1356(); | 2507 o.creativeAssignments = buildUnnamed1992(); |
| 2508 o.creativeOptimizationConfigurationId = "foo"; | 2508 o.creativeOptimizationConfigurationId = "foo"; |
| 2509 o.type = "foo"; | 2509 o.type = "foo"; |
| 2510 o.weightCalculationStrategy = "foo"; | 2510 o.weightCalculationStrategy = "foo"; |
| 2511 } | 2511 } |
| 2512 buildCounterCreativeRotation--; | 2512 buildCounterCreativeRotation--; |
| 2513 return o; | 2513 return o; |
| 2514 } | 2514 } |
| 2515 | 2515 |
| 2516 checkCreativeRotation(api.CreativeRotation o) { | 2516 checkCreativeRotation(api.CreativeRotation o) { |
| 2517 buildCounterCreativeRotation++; | 2517 buildCounterCreativeRotation++; |
| 2518 if (buildCounterCreativeRotation < 3) { | 2518 if (buildCounterCreativeRotation < 3) { |
| 2519 checkUnnamed1356(o.creativeAssignments); | 2519 checkUnnamed1992(o.creativeAssignments); |
| 2520 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); | 2520 unittest.expect(o.creativeOptimizationConfigurationId, unittest.equals('foo'
)); |
| 2521 unittest.expect(o.type, unittest.equals('foo')); | 2521 unittest.expect(o.type, unittest.equals('foo')); |
| 2522 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); | 2522 unittest.expect(o.weightCalculationStrategy, unittest.equals('foo')); |
| 2523 } | 2523 } |
| 2524 buildCounterCreativeRotation--; | 2524 buildCounterCreativeRotation--; |
| 2525 } | 2525 } |
| 2526 | 2526 |
| 2527 core.int buildCounterCreativeSettings = 0; | 2527 core.int buildCounterCreativeSettings = 0; |
| 2528 buildCreativeSettings() { | 2528 buildCreativeSettings() { |
| 2529 var o = new api.CreativeSettings(); | 2529 var o = new api.CreativeSettings(); |
| 2530 buildCounterCreativeSettings++; | 2530 buildCounterCreativeSettings++; |
| 2531 if (buildCounterCreativeSettings < 3) { | 2531 if (buildCounterCreativeSettings < 3) { |
| 2532 o.iFrameFooter = "foo"; | 2532 o.iFrameFooter = "foo"; |
| 2533 o.iFrameHeader = "foo"; | 2533 o.iFrameHeader = "foo"; |
| 2534 } | 2534 } |
| 2535 buildCounterCreativeSettings--; | 2535 buildCounterCreativeSettings--; |
| 2536 return o; | 2536 return o; |
| 2537 } | 2537 } |
| 2538 | 2538 |
| 2539 checkCreativeSettings(api.CreativeSettings o) { | 2539 checkCreativeSettings(api.CreativeSettings o) { |
| 2540 buildCounterCreativeSettings++; | 2540 buildCounterCreativeSettings++; |
| 2541 if (buildCounterCreativeSettings < 3) { | 2541 if (buildCounterCreativeSettings < 3) { |
| 2542 unittest.expect(o.iFrameFooter, unittest.equals('foo')); | 2542 unittest.expect(o.iFrameFooter, unittest.equals('foo')); |
| 2543 unittest.expect(o.iFrameHeader, unittest.equals('foo')); | 2543 unittest.expect(o.iFrameHeader, unittest.equals('foo')); |
| 2544 } | 2544 } |
| 2545 buildCounterCreativeSettings--; | 2545 buildCounterCreativeSettings--; |
| 2546 } | 2546 } |
| 2547 | 2547 |
| 2548 buildUnnamed1357() { | 2548 buildUnnamed1993() { |
| 2549 var o = new core.List<api.Creative>(); | 2549 var o = new core.List<api.Creative>(); |
| 2550 o.add(buildCreative()); | 2550 o.add(buildCreative()); |
| 2551 o.add(buildCreative()); | 2551 o.add(buildCreative()); |
| 2552 return o; | 2552 return o; |
| 2553 } | 2553 } |
| 2554 | 2554 |
| 2555 checkUnnamed1357(core.List<api.Creative> o) { | 2555 checkUnnamed1993(core.List<api.Creative> o) { |
| 2556 unittest.expect(o, unittest.hasLength(2)); | 2556 unittest.expect(o, unittest.hasLength(2)); |
| 2557 checkCreative(o[0]); | 2557 checkCreative(o[0]); |
| 2558 checkCreative(o[1]); | 2558 checkCreative(o[1]); |
| 2559 } | 2559 } |
| 2560 | 2560 |
| 2561 core.int buildCounterCreativesListResponse = 0; | 2561 core.int buildCounterCreativesListResponse = 0; |
| 2562 buildCreativesListResponse() { | 2562 buildCreativesListResponse() { |
| 2563 var o = new api.CreativesListResponse(); | 2563 var o = new api.CreativesListResponse(); |
| 2564 buildCounterCreativesListResponse++; | 2564 buildCounterCreativesListResponse++; |
| 2565 if (buildCounterCreativesListResponse < 3) { | 2565 if (buildCounterCreativesListResponse < 3) { |
| 2566 o.creatives = buildUnnamed1357(); | 2566 o.creatives = buildUnnamed1993(); |
| 2567 o.kind = "foo"; | 2567 o.kind = "foo"; |
| 2568 o.nextPageToken = "foo"; | 2568 o.nextPageToken = "foo"; |
| 2569 } | 2569 } |
| 2570 buildCounterCreativesListResponse--; | 2570 buildCounterCreativesListResponse--; |
| 2571 return o; | 2571 return o; |
| 2572 } | 2572 } |
| 2573 | 2573 |
| 2574 checkCreativesListResponse(api.CreativesListResponse o) { | 2574 checkCreativesListResponse(api.CreativesListResponse o) { |
| 2575 buildCounterCreativesListResponse++; | 2575 buildCounterCreativesListResponse++; |
| 2576 if (buildCounterCreativesListResponse < 3) { | 2576 if (buildCounterCreativesListResponse < 3) { |
| 2577 checkUnnamed1357(o.creatives); | 2577 checkUnnamed1993(o.creatives); |
| 2578 unittest.expect(o.kind, unittest.equals('foo')); | 2578 unittest.expect(o.kind, unittest.equals('foo')); |
| 2579 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2579 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2580 } | 2580 } |
| 2581 buildCounterCreativesListResponse--; | 2581 buildCounterCreativesListResponse--; |
| 2582 } | 2582 } |
| 2583 | 2583 |
| 2584 buildUnnamed1358() { | 2584 buildUnnamed1994() { |
| 2585 var o = new core.List<api.Dimension>(); | 2585 var o = new core.List<api.Dimension>(); |
| 2586 o.add(buildDimension()); | 2586 o.add(buildDimension()); |
| 2587 o.add(buildDimension()); | 2587 o.add(buildDimension()); |
| 2588 return o; | 2588 return o; |
| 2589 } | 2589 } |
| 2590 | 2590 |
| 2591 checkUnnamed1358(core.List<api.Dimension> o) { | 2591 checkUnnamed1994(core.List<api.Dimension> o) { |
| 2592 unittest.expect(o, unittest.hasLength(2)); | 2592 unittest.expect(o, unittest.hasLength(2)); |
| 2593 checkDimension(o[0]); | 2593 checkDimension(o[0]); |
| 2594 checkDimension(o[1]); | 2594 checkDimension(o[1]); |
| 2595 } | 2595 } |
| 2596 | 2596 |
| 2597 buildUnnamed1359() { | 2597 buildUnnamed1995() { |
| 2598 var o = new core.List<api.Dimension>(); | 2598 var o = new core.List<api.Dimension>(); |
| 2599 o.add(buildDimension()); | 2599 o.add(buildDimension()); |
| 2600 o.add(buildDimension()); | 2600 o.add(buildDimension()); |
| 2601 return o; | 2601 return o; |
| 2602 } | 2602 } |
| 2603 | 2603 |
| 2604 checkUnnamed1359(core.List<api.Dimension> o) { | 2604 checkUnnamed1995(core.List<api.Dimension> o) { |
| 2605 unittest.expect(o, unittest.hasLength(2)); | 2605 unittest.expect(o, unittest.hasLength(2)); |
| 2606 checkDimension(o[0]); | 2606 checkDimension(o[0]); |
| 2607 checkDimension(o[1]); | 2607 checkDimension(o[1]); |
| 2608 } | 2608 } |
| 2609 | 2609 |
| 2610 buildUnnamed1360() { | 2610 buildUnnamed1996() { |
| 2611 var o = new core.List<api.Metric>(); | 2611 var o = new core.List<api.Metric>(); |
| 2612 o.add(buildMetric()); | 2612 o.add(buildMetric()); |
| 2613 o.add(buildMetric()); | 2613 o.add(buildMetric()); |
| 2614 return o; | 2614 return o; |
| 2615 } | 2615 } |
| 2616 | 2616 |
| 2617 checkUnnamed1360(core.List<api.Metric> o) { | 2617 checkUnnamed1996(core.List<api.Metric> o) { |
| 2618 unittest.expect(o, unittest.hasLength(2)); | 2618 unittest.expect(o, unittest.hasLength(2)); |
| 2619 checkMetric(o[0]); | 2619 checkMetric(o[0]); |
| 2620 checkMetric(o[1]); | 2620 checkMetric(o[1]); |
| 2621 } | 2621 } |
| 2622 | 2622 |
| 2623 buildUnnamed1361() { | 2623 buildUnnamed1997() { |
| 2624 var o = new core.List<api.Metric>(); | 2624 var o = new core.List<api.Metric>(); |
| 2625 o.add(buildMetric()); | 2625 o.add(buildMetric()); |
| 2626 o.add(buildMetric()); | 2626 o.add(buildMetric()); |
| 2627 return o; | 2627 return o; |
| 2628 } | 2628 } |
| 2629 | 2629 |
| 2630 checkUnnamed1361(core.List<api.Metric> o) { | 2630 checkUnnamed1997(core.List<api.Metric> o) { |
| 2631 unittest.expect(o, unittest.hasLength(2)); | 2631 unittest.expect(o, unittest.hasLength(2)); |
| 2632 checkMetric(o[0]); | 2632 checkMetric(o[0]); |
| 2633 checkMetric(o[1]); | 2633 checkMetric(o[1]); |
| 2634 } | 2634 } |
| 2635 | 2635 |
| 2636 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; | 2636 core.int buildCounterCrossDimensionReachReportCompatibleFields = 0; |
| 2637 buildCrossDimensionReachReportCompatibleFields() { | 2637 buildCrossDimensionReachReportCompatibleFields() { |
| 2638 var o = new api.CrossDimensionReachReportCompatibleFields(); | 2638 var o = new api.CrossDimensionReachReportCompatibleFields(); |
| 2639 buildCounterCrossDimensionReachReportCompatibleFields++; | 2639 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2640 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2640 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2641 o.breakdown = buildUnnamed1358(); | 2641 o.breakdown = buildUnnamed1994(); |
| 2642 o.dimensionFilters = buildUnnamed1359(); | 2642 o.dimensionFilters = buildUnnamed1995(); |
| 2643 o.kind = "foo"; | 2643 o.kind = "foo"; |
| 2644 o.metrics = buildUnnamed1360(); | 2644 o.metrics = buildUnnamed1996(); |
| 2645 o.overlapMetrics = buildUnnamed1361(); | 2645 o.overlapMetrics = buildUnnamed1997(); |
| 2646 } | 2646 } |
| 2647 buildCounterCrossDimensionReachReportCompatibleFields--; | 2647 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2648 return o; | 2648 return o; |
| 2649 } | 2649 } |
| 2650 | 2650 |
| 2651 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { | 2651 checkCrossDimensionReachReportCompatibleFields(api.CrossDimensionReachReportComp
atibleFields o) { |
| 2652 buildCounterCrossDimensionReachReportCompatibleFields++; | 2652 buildCounterCrossDimensionReachReportCompatibleFields++; |
| 2653 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { | 2653 if (buildCounterCrossDimensionReachReportCompatibleFields < 3) { |
| 2654 checkUnnamed1358(o.breakdown); | 2654 checkUnnamed1994(o.breakdown); |
| 2655 checkUnnamed1359(o.dimensionFilters); | 2655 checkUnnamed1995(o.dimensionFilters); |
| 2656 unittest.expect(o.kind, unittest.equals('foo')); | 2656 unittest.expect(o.kind, unittest.equals('foo')); |
| 2657 checkUnnamed1360(o.metrics); | 2657 checkUnnamed1996(o.metrics); |
| 2658 checkUnnamed1361(o.overlapMetrics); | 2658 checkUnnamed1997(o.overlapMetrics); |
| 2659 } | 2659 } |
| 2660 buildCounterCrossDimensionReachReportCompatibleFields--; | 2660 buildCounterCrossDimensionReachReportCompatibleFields--; |
| 2661 } | 2661 } |
| 2662 | 2662 |
| 2663 buildUnnamed1362() { | 2663 buildUnnamed1998() { |
| 2664 var o = new core.List<api.DimensionValue>(); | 2664 var o = new core.List<api.DimensionValue>(); |
| 2665 o.add(buildDimensionValue()); | 2665 o.add(buildDimensionValue()); |
| 2666 o.add(buildDimensionValue()); | 2666 o.add(buildDimensionValue()); |
| 2667 return o; | 2667 return o; |
| 2668 } | 2668 } |
| 2669 | 2669 |
| 2670 checkUnnamed1362(core.List<api.DimensionValue> o) { | 2670 checkUnnamed1998(core.List<api.DimensionValue> o) { |
| 2671 unittest.expect(o, unittest.hasLength(2)); | 2671 unittest.expect(o, unittest.hasLength(2)); |
| 2672 checkDimensionValue(o[0]); | 2672 checkDimensionValue(o[0]); |
| 2673 checkDimensionValue(o[1]); | 2673 checkDimensionValue(o[1]); |
| 2674 } | 2674 } |
| 2675 | 2675 |
| 2676 core.int buildCounterCustomRichMediaEvents = 0; | 2676 core.int buildCounterCustomRichMediaEvents = 0; |
| 2677 buildCustomRichMediaEvents() { | 2677 buildCustomRichMediaEvents() { |
| 2678 var o = new api.CustomRichMediaEvents(); | 2678 var o = new api.CustomRichMediaEvents(); |
| 2679 buildCounterCustomRichMediaEvents++; | 2679 buildCounterCustomRichMediaEvents++; |
| 2680 if (buildCounterCustomRichMediaEvents < 3) { | 2680 if (buildCounterCustomRichMediaEvents < 3) { |
| 2681 o.filteredEventIds = buildUnnamed1362(); | 2681 o.filteredEventIds = buildUnnamed1998(); |
| 2682 o.kind = "foo"; | 2682 o.kind = "foo"; |
| 2683 } | 2683 } |
| 2684 buildCounterCustomRichMediaEvents--; | 2684 buildCounterCustomRichMediaEvents--; |
| 2685 return o; | 2685 return o; |
| 2686 } | 2686 } |
| 2687 | 2687 |
| 2688 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { | 2688 checkCustomRichMediaEvents(api.CustomRichMediaEvents o) { |
| 2689 buildCounterCustomRichMediaEvents++; | 2689 buildCounterCustomRichMediaEvents++; |
| 2690 if (buildCounterCustomRichMediaEvents < 3) { | 2690 if (buildCounterCustomRichMediaEvents < 3) { |
| 2691 checkUnnamed1362(o.filteredEventIds); | 2691 checkUnnamed1998(o.filteredEventIds); |
| 2692 unittest.expect(o.kind, unittest.equals('foo')); | 2692 unittest.expect(o.kind, unittest.equals('foo')); |
| 2693 } | 2693 } |
| 2694 buildCounterCustomRichMediaEvents--; | 2694 buildCounterCustomRichMediaEvents--; |
| 2695 } | 2695 } |
| 2696 | 2696 |
| 2697 core.int buildCounterDateRange = 0; | 2697 core.int buildCounterDateRange = 0; |
| 2698 buildDateRange() { | 2698 buildDateRange() { |
| 2699 var o = new api.DateRange(); | 2699 var o = new api.DateRange(); |
| 2700 buildCounterDateRange++; | 2700 buildCounterDateRange++; |
| 2701 if (buildCounterDateRange < 3) { | 2701 if (buildCounterDateRange < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 2712 buildCounterDateRange++; | 2712 buildCounterDateRange++; |
| 2713 if (buildCounterDateRange < 3) { | 2713 if (buildCounterDateRange < 3) { |
| 2714 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2714 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2715 unittest.expect(o.kind, unittest.equals('foo')); | 2715 unittest.expect(o.kind, unittest.equals('foo')); |
| 2716 unittest.expect(o.relativeDateRange, unittest.equals('foo')); | 2716 unittest.expect(o.relativeDateRange, unittest.equals('foo')); |
| 2717 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2717 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2718 } | 2718 } |
| 2719 buildCounterDateRange--; | 2719 buildCounterDateRange--; |
| 2720 } | 2720 } |
| 2721 | 2721 |
| 2722 buildUnnamed1363() { | 2722 buildUnnamed1999() { |
| 2723 var o = new core.List<core.String>(); | 2723 var o = new core.List<core.String>(); |
| 2724 o.add("foo"); | 2724 o.add("foo"); |
| 2725 o.add("foo"); | 2725 o.add("foo"); |
| 2726 return o; | 2726 return o; |
| 2727 } | 2727 } |
| 2728 | 2728 |
| 2729 checkUnnamed1363(core.List<core.String> o) { | 2729 checkUnnamed1999(core.List<core.String> o) { |
| 2730 unittest.expect(o, unittest.hasLength(2)); | 2730 unittest.expect(o, unittest.hasLength(2)); |
| 2731 unittest.expect(o[0], unittest.equals('foo')); | 2731 unittest.expect(o[0], unittest.equals('foo')); |
| 2732 unittest.expect(o[1], unittest.equals('foo')); | 2732 unittest.expect(o[1], unittest.equals('foo')); |
| 2733 } | 2733 } |
| 2734 | 2734 |
| 2735 buildUnnamed1364() { | 2735 buildUnnamed2000() { |
| 2736 var o = new core.List<core.int>(); | 2736 var o = new core.List<core.int>(); |
| 2737 o.add(42); | 2737 o.add(42); |
| 2738 o.add(42); | 2738 o.add(42); |
| 2739 return o; | 2739 return o; |
| 2740 } | 2740 } |
| 2741 | 2741 |
| 2742 checkUnnamed1364(core.List<core.int> o) { | 2742 checkUnnamed2000(core.List<core.int> o) { |
| 2743 unittest.expect(o, unittest.hasLength(2)); | 2743 unittest.expect(o, unittest.hasLength(2)); |
| 2744 unittest.expect(o[0], unittest.equals(42)); | 2744 unittest.expect(o[0], unittest.equals(42)); |
| 2745 unittest.expect(o[1], unittest.equals(42)); | 2745 unittest.expect(o[1], unittest.equals(42)); |
| 2746 } | 2746 } |
| 2747 | 2747 |
| 2748 core.int buildCounterDayPartTargeting = 0; | 2748 core.int buildCounterDayPartTargeting = 0; |
| 2749 buildDayPartTargeting() { | 2749 buildDayPartTargeting() { |
| 2750 var o = new api.DayPartTargeting(); | 2750 var o = new api.DayPartTargeting(); |
| 2751 buildCounterDayPartTargeting++; | 2751 buildCounterDayPartTargeting++; |
| 2752 if (buildCounterDayPartTargeting < 3) { | 2752 if (buildCounterDayPartTargeting < 3) { |
| 2753 o.daysOfWeek = buildUnnamed1363(); | 2753 o.daysOfWeek = buildUnnamed1999(); |
| 2754 o.hoursOfDay = buildUnnamed1364(); | 2754 o.hoursOfDay = buildUnnamed2000(); |
| 2755 o.userLocalTime = true; | 2755 o.userLocalTime = true; |
| 2756 } | 2756 } |
| 2757 buildCounterDayPartTargeting--; | 2757 buildCounterDayPartTargeting--; |
| 2758 return o; | 2758 return o; |
| 2759 } | 2759 } |
| 2760 | 2760 |
| 2761 checkDayPartTargeting(api.DayPartTargeting o) { | 2761 checkDayPartTargeting(api.DayPartTargeting o) { |
| 2762 buildCounterDayPartTargeting++; | 2762 buildCounterDayPartTargeting++; |
| 2763 if (buildCounterDayPartTargeting < 3) { | 2763 if (buildCounterDayPartTargeting < 3) { |
| 2764 checkUnnamed1363(o.daysOfWeek); | 2764 checkUnnamed1999(o.daysOfWeek); |
| 2765 checkUnnamed1364(o.hoursOfDay); | 2765 checkUnnamed2000(o.hoursOfDay); |
| 2766 unittest.expect(o.userLocalTime, unittest.isTrue); | 2766 unittest.expect(o.userLocalTime, unittest.isTrue); |
| 2767 } | 2767 } |
| 2768 buildCounterDayPartTargeting--; | 2768 buildCounterDayPartTargeting--; |
| 2769 } | 2769 } |
| 2770 | 2770 |
| 2771 core.int buildCounterDefaultClickThroughEventTagProperties = 0; | 2771 core.int buildCounterDefaultClickThroughEventTagProperties = 0; |
| 2772 buildDefaultClickThroughEventTagProperties() { | 2772 buildDefaultClickThroughEventTagProperties() { |
| 2773 var o = new api.DefaultClickThroughEventTagProperties(); | 2773 var o = new api.DefaultClickThroughEventTagProperties(); |
| 2774 buildCounterDefaultClickThroughEventTagProperties++; | 2774 buildCounterDefaultClickThroughEventTagProperties++; |
| 2775 if (buildCounterDefaultClickThroughEventTagProperties < 3) { | 2775 if (buildCounterDefaultClickThroughEventTagProperties < 3) { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2907 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2907 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 2908 unittest.expect(o.etag, unittest.equals('foo')); | 2908 unittest.expect(o.etag, unittest.equals('foo')); |
| 2909 unittest.expect(o.id, unittest.equals('foo')); | 2909 unittest.expect(o.id, unittest.equals('foo')); |
| 2910 unittest.expect(o.kind, unittest.equals('foo')); | 2910 unittest.expect(o.kind, unittest.equals('foo')); |
| 2911 unittest.expect(o.matchType, unittest.equals('foo')); | 2911 unittest.expect(o.matchType, unittest.equals('foo')); |
| 2912 unittest.expect(o.value, unittest.equals('foo')); | 2912 unittest.expect(o.value, unittest.equals('foo')); |
| 2913 } | 2913 } |
| 2914 buildCounterDimensionValue--; | 2914 buildCounterDimensionValue--; |
| 2915 } | 2915 } |
| 2916 | 2916 |
| 2917 buildUnnamed1365() { | 2917 buildUnnamed2001() { |
| 2918 var o = new core.List<api.DimensionValue>(); | 2918 var o = new core.List<api.DimensionValue>(); |
| 2919 o.add(buildDimensionValue()); | 2919 o.add(buildDimensionValue()); |
| 2920 o.add(buildDimensionValue()); | 2920 o.add(buildDimensionValue()); |
| 2921 return o; | 2921 return o; |
| 2922 } | 2922 } |
| 2923 | 2923 |
| 2924 checkUnnamed1365(core.List<api.DimensionValue> o) { | 2924 checkUnnamed2001(core.List<api.DimensionValue> o) { |
| 2925 unittest.expect(o, unittest.hasLength(2)); | 2925 unittest.expect(o, unittest.hasLength(2)); |
| 2926 checkDimensionValue(o[0]); | 2926 checkDimensionValue(o[0]); |
| 2927 checkDimensionValue(o[1]); | 2927 checkDimensionValue(o[1]); |
| 2928 } | 2928 } |
| 2929 | 2929 |
| 2930 core.int buildCounterDimensionValueList = 0; | 2930 core.int buildCounterDimensionValueList = 0; |
| 2931 buildDimensionValueList() { | 2931 buildDimensionValueList() { |
| 2932 var o = new api.DimensionValueList(); | 2932 var o = new api.DimensionValueList(); |
| 2933 buildCounterDimensionValueList++; | 2933 buildCounterDimensionValueList++; |
| 2934 if (buildCounterDimensionValueList < 3) { | 2934 if (buildCounterDimensionValueList < 3) { |
| 2935 o.etag = "foo"; | 2935 o.etag = "foo"; |
| 2936 o.items = buildUnnamed1365(); | 2936 o.items = buildUnnamed2001(); |
| 2937 o.kind = "foo"; | 2937 o.kind = "foo"; |
| 2938 o.nextPageToken = "foo"; | 2938 o.nextPageToken = "foo"; |
| 2939 } | 2939 } |
| 2940 buildCounterDimensionValueList--; | 2940 buildCounterDimensionValueList--; |
| 2941 return o; | 2941 return o; |
| 2942 } | 2942 } |
| 2943 | 2943 |
| 2944 checkDimensionValueList(api.DimensionValueList o) { | 2944 checkDimensionValueList(api.DimensionValueList o) { |
| 2945 buildCounterDimensionValueList++; | 2945 buildCounterDimensionValueList++; |
| 2946 if (buildCounterDimensionValueList < 3) { | 2946 if (buildCounterDimensionValueList < 3) { |
| 2947 unittest.expect(o.etag, unittest.equals('foo')); | 2947 unittest.expect(o.etag, unittest.equals('foo')); |
| 2948 checkUnnamed1365(o.items); | 2948 checkUnnamed2001(o.items); |
| 2949 unittest.expect(o.kind, unittest.equals('foo')); | 2949 unittest.expect(o.kind, unittest.equals('foo')); |
| 2950 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 2950 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 2951 } | 2951 } |
| 2952 buildCounterDimensionValueList--; | 2952 buildCounterDimensionValueList--; |
| 2953 } | 2953 } |
| 2954 | 2954 |
| 2955 buildUnnamed1366() { | 2955 buildUnnamed2002() { |
| 2956 var o = new core.List<api.DimensionFilter>(); | 2956 var o = new core.List<api.DimensionFilter>(); |
| 2957 o.add(buildDimensionFilter()); | 2957 o.add(buildDimensionFilter()); |
| 2958 o.add(buildDimensionFilter()); | 2958 o.add(buildDimensionFilter()); |
| 2959 return o; | 2959 return o; |
| 2960 } | 2960 } |
| 2961 | 2961 |
| 2962 checkUnnamed1366(core.List<api.DimensionFilter> o) { | 2962 checkUnnamed2002(core.List<api.DimensionFilter> o) { |
| 2963 unittest.expect(o, unittest.hasLength(2)); | 2963 unittest.expect(o, unittest.hasLength(2)); |
| 2964 checkDimensionFilter(o[0]); | 2964 checkDimensionFilter(o[0]); |
| 2965 checkDimensionFilter(o[1]); | 2965 checkDimensionFilter(o[1]); |
| 2966 } | 2966 } |
| 2967 | 2967 |
| 2968 core.int buildCounterDimensionValueRequest = 0; | 2968 core.int buildCounterDimensionValueRequest = 0; |
| 2969 buildDimensionValueRequest() { | 2969 buildDimensionValueRequest() { |
| 2970 var o = new api.DimensionValueRequest(); | 2970 var o = new api.DimensionValueRequest(); |
| 2971 buildCounterDimensionValueRequest++; | 2971 buildCounterDimensionValueRequest++; |
| 2972 if (buildCounterDimensionValueRequest < 3) { | 2972 if (buildCounterDimensionValueRequest < 3) { |
| 2973 o.dimensionName = "foo"; | 2973 o.dimensionName = "foo"; |
| 2974 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2974 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 2975 o.filters = buildUnnamed1366(); | 2975 o.filters = buildUnnamed2002(); |
| 2976 o.kind = "foo"; | 2976 o.kind = "foo"; |
| 2977 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 2977 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 2978 } | 2978 } |
| 2979 buildCounterDimensionValueRequest--; | 2979 buildCounterDimensionValueRequest--; |
| 2980 return o; | 2980 return o; |
| 2981 } | 2981 } |
| 2982 | 2982 |
| 2983 checkDimensionValueRequest(api.DimensionValueRequest o) { | 2983 checkDimensionValueRequest(api.DimensionValueRequest o) { |
| 2984 buildCounterDimensionValueRequest++; | 2984 buildCounterDimensionValueRequest++; |
| 2985 if (buildCounterDimensionValueRequest < 3) { | 2985 if (buildCounterDimensionValueRequest < 3) { |
| 2986 unittest.expect(o.dimensionName, unittest.equals('foo')); | 2986 unittest.expect(o.dimensionName, unittest.equals('foo')); |
| 2987 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 2987 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 2988 checkUnnamed1366(o.filters); | 2988 checkUnnamed2002(o.filters); |
| 2989 unittest.expect(o.kind, unittest.equals('foo')); | 2989 unittest.expect(o.kind, unittest.equals('foo')); |
| 2990 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 2990 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 2991 } | 2991 } |
| 2992 buildCounterDimensionValueRequest--; | 2992 buildCounterDimensionValueRequest--; |
| 2993 } | 2993 } |
| 2994 | 2994 |
| 2995 buildUnnamed1367() { | 2995 buildUnnamed2003() { |
| 2996 var o = new core.List<api.DirectorySiteContactAssignment>(); | 2996 var o = new core.List<api.DirectorySiteContactAssignment>(); |
| 2997 o.add(buildDirectorySiteContactAssignment()); | 2997 o.add(buildDirectorySiteContactAssignment()); |
| 2998 o.add(buildDirectorySiteContactAssignment()); | 2998 o.add(buildDirectorySiteContactAssignment()); |
| 2999 return o; | 2999 return o; |
| 3000 } | 3000 } |
| 3001 | 3001 |
| 3002 checkUnnamed1367(core.List<api.DirectorySiteContactAssignment> o) { | 3002 checkUnnamed2003(core.List<api.DirectorySiteContactAssignment> o) { |
| 3003 unittest.expect(o, unittest.hasLength(2)); | 3003 unittest.expect(o, unittest.hasLength(2)); |
| 3004 checkDirectorySiteContactAssignment(o[0]); | 3004 checkDirectorySiteContactAssignment(o[0]); |
| 3005 checkDirectorySiteContactAssignment(o[1]); | 3005 checkDirectorySiteContactAssignment(o[1]); |
| 3006 } | 3006 } |
| 3007 | 3007 |
| 3008 buildUnnamed1368() { | 3008 buildUnnamed2004() { |
| 3009 var o = new core.List<core.String>(); | 3009 var o = new core.List<core.String>(); |
| 3010 o.add("foo"); | 3010 o.add("foo"); |
| 3011 o.add("foo"); | 3011 o.add("foo"); |
| 3012 return o; | 3012 return o; |
| 3013 } | 3013 } |
| 3014 | 3014 |
| 3015 checkUnnamed1368(core.List<core.String> o) { | 3015 checkUnnamed2004(core.List<core.String> o) { |
| 3016 unittest.expect(o, unittest.hasLength(2)); | 3016 unittest.expect(o, unittest.hasLength(2)); |
| 3017 unittest.expect(o[0], unittest.equals('foo')); | 3017 unittest.expect(o[0], unittest.equals('foo')); |
| 3018 unittest.expect(o[1], unittest.equals('foo')); | 3018 unittest.expect(o[1], unittest.equals('foo')); |
| 3019 } | 3019 } |
| 3020 | 3020 |
| 3021 buildUnnamed1369() { | 3021 buildUnnamed2005() { |
| 3022 var o = new core.List<core.String>(); | 3022 var o = new core.List<core.String>(); |
| 3023 o.add("foo"); | 3023 o.add("foo"); |
| 3024 o.add("foo"); | 3024 o.add("foo"); |
| 3025 return o; | 3025 return o; |
| 3026 } | 3026 } |
| 3027 | 3027 |
| 3028 checkUnnamed1369(core.List<core.String> o) { | 3028 checkUnnamed2005(core.List<core.String> o) { |
| 3029 unittest.expect(o, unittest.hasLength(2)); | 3029 unittest.expect(o, unittest.hasLength(2)); |
| 3030 unittest.expect(o[0], unittest.equals('foo')); | 3030 unittest.expect(o[0], unittest.equals('foo')); |
| 3031 unittest.expect(o[1], unittest.equals('foo')); | 3031 unittest.expect(o[1], unittest.equals('foo')); |
| 3032 } | 3032 } |
| 3033 | 3033 |
| 3034 core.int buildCounterDirectorySite = 0; | 3034 core.int buildCounterDirectorySite = 0; |
| 3035 buildDirectorySite() { | 3035 buildDirectorySite() { |
| 3036 var o = new api.DirectorySite(); | 3036 var o = new api.DirectorySite(); |
| 3037 buildCounterDirectorySite++; | 3037 buildCounterDirectorySite++; |
| 3038 if (buildCounterDirectorySite < 3) { | 3038 if (buildCounterDirectorySite < 3) { |
| 3039 o.active = true; | 3039 o.active = true; |
| 3040 o.contactAssignments = buildUnnamed1367(); | 3040 o.contactAssignments = buildUnnamed2003(); |
| 3041 o.countryId = "foo"; | 3041 o.countryId = "foo"; |
| 3042 o.currencyId = "foo"; | 3042 o.currencyId = "foo"; |
| 3043 o.description = "foo"; | 3043 o.description = "foo"; |
| 3044 o.id = "foo"; | 3044 o.id = "foo"; |
| 3045 o.idDimensionValue = buildDimensionValue(); | 3045 o.idDimensionValue = buildDimensionValue(); |
| 3046 o.inpageTagFormats = buildUnnamed1368(); | 3046 o.inpageTagFormats = buildUnnamed2004(); |
| 3047 o.interstitialTagFormats = buildUnnamed1369(); | 3047 o.interstitialTagFormats = buildUnnamed2005(); |
| 3048 o.kind = "foo"; | 3048 o.kind = "foo"; |
| 3049 o.name = "foo"; | 3049 o.name = "foo"; |
| 3050 o.parentId = "foo"; | 3050 o.parentId = "foo"; |
| 3051 o.settings = buildDirectorySiteSettings(); | 3051 o.settings = buildDirectorySiteSettings(); |
| 3052 o.url = "foo"; | 3052 o.url = "foo"; |
| 3053 } | 3053 } |
| 3054 buildCounterDirectorySite--; | 3054 buildCounterDirectorySite--; |
| 3055 return o; | 3055 return o; |
| 3056 } | 3056 } |
| 3057 | 3057 |
| 3058 checkDirectorySite(api.DirectorySite o) { | 3058 checkDirectorySite(api.DirectorySite o) { |
| 3059 buildCounterDirectorySite++; | 3059 buildCounterDirectorySite++; |
| 3060 if (buildCounterDirectorySite < 3) { | 3060 if (buildCounterDirectorySite < 3) { |
| 3061 unittest.expect(o.active, unittest.isTrue); | 3061 unittest.expect(o.active, unittest.isTrue); |
| 3062 checkUnnamed1367(o.contactAssignments); | 3062 checkUnnamed2003(o.contactAssignments); |
| 3063 unittest.expect(o.countryId, unittest.equals('foo')); | 3063 unittest.expect(o.countryId, unittest.equals('foo')); |
| 3064 unittest.expect(o.currencyId, unittest.equals('foo')); | 3064 unittest.expect(o.currencyId, unittest.equals('foo')); |
| 3065 unittest.expect(o.description, unittest.equals('foo')); | 3065 unittest.expect(o.description, unittest.equals('foo')); |
| 3066 unittest.expect(o.id, unittest.equals('foo')); | 3066 unittest.expect(o.id, unittest.equals('foo')); |
| 3067 checkDimensionValue(o.idDimensionValue); | 3067 checkDimensionValue(o.idDimensionValue); |
| 3068 checkUnnamed1368(o.inpageTagFormats); | 3068 checkUnnamed2004(o.inpageTagFormats); |
| 3069 checkUnnamed1369(o.interstitialTagFormats); | 3069 checkUnnamed2005(o.interstitialTagFormats); |
| 3070 unittest.expect(o.kind, unittest.equals('foo')); | 3070 unittest.expect(o.kind, unittest.equals('foo')); |
| 3071 unittest.expect(o.name, unittest.equals('foo')); | 3071 unittest.expect(o.name, unittest.equals('foo')); |
| 3072 unittest.expect(o.parentId, unittest.equals('foo')); | 3072 unittest.expect(o.parentId, unittest.equals('foo')); |
| 3073 checkDirectorySiteSettings(o.settings); | 3073 checkDirectorySiteSettings(o.settings); |
| 3074 unittest.expect(o.url, unittest.equals('foo')); | 3074 unittest.expect(o.url, unittest.equals('foo')); |
| 3075 } | 3075 } |
| 3076 buildCounterDirectorySite--; | 3076 buildCounterDirectorySite--; |
| 3077 } | 3077 } |
| 3078 | 3078 |
| 3079 core.int buildCounterDirectorySiteContact = 0; | 3079 core.int buildCounterDirectorySiteContact = 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3127 | 3127 |
| 3128 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { | 3128 checkDirectorySiteContactAssignment(api.DirectorySiteContactAssignment o) { |
| 3129 buildCounterDirectorySiteContactAssignment++; | 3129 buildCounterDirectorySiteContactAssignment++; |
| 3130 if (buildCounterDirectorySiteContactAssignment < 3) { | 3130 if (buildCounterDirectorySiteContactAssignment < 3) { |
| 3131 unittest.expect(o.contactId, unittest.equals('foo')); | 3131 unittest.expect(o.contactId, unittest.equals('foo')); |
| 3132 unittest.expect(o.visibility, unittest.equals('foo')); | 3132 unittest.expect(o.visibility, unittest.equals('foo')); |
| 3133 } | 3133 } |
| 3134 buildCounterDirectorySiteContactAssignment--; | 3134 buildCounterDirectorySiteContactAssignment--; |
| 3135 } | 3135 } |
| 3136 | 3136 |
| 3137 buildUnnamed1370() { | 3137 buildUnnamed2006() { |
| 3138 var o = new core.List<api.DirectorySiteContact>(); | 3138 var o = new core.List<api.DirectorySiteContact>(); |
| 3139 o.add(buildDirectorySiteContact()); | 3139 o.add(buildDirectorySiteContact()); |
| 3140 o.add(buildDirectorySiteContact()); | 3140 o.add(buildDirectorySiteContact()); |
| 3141 return o; | 3141 return o; |
| 3142 } | 3142 } |
| 3143 | 3143 |
| 3144 checkUnnamed1370(core.List<api.DirectorySiteContact> o) { | 3144 checkUnnamed2006(core.List<api.DirectorySiteContact> o) { |
| 3145 unittest.expect(o, unittest.hasLength(2)); | 3145 unittest.expect(o, unittest.hasLength(2)); |
| 3146 checkDirectorySiteContact(o[0]); | 3146 checkDirectorySiteContact(o[0]); |
| 3147 checkDirectorySiteContact(o[1]); | 3147 checkDirectorySiteContact(o[1]); |
| 3148 } | 3148 } |
| 3149 | 3149 |
| 3150 core.int buildCounterDirectorySiteContactsListResponse = 0; | 3150 core.int buildCounterDirectorySiteContactsListResponse = 0; |
| 3151 buildDirectorySiteContactsListResponse() { | 3151 buildDirectorySiteContactsListResponse() { |
| 3152 var o = new api.DirectorySiteContactsListResponse(); | 3152 var o = new api.DirectorySiteContactsListResponse(); |
| 3153 buildCounterDirectorySiteContactsListResponse++; | 3153 buildCounterDirectorySiteContactsListResponse++; |
| 3154 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3154 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3155 o.directorySiteContacts = buildUnnamed1370(); | 3155 o.directorySiteContacts = buildUnnamed2006(); |
| 3156 o.kind = "foo"; | 3156 o.kind = "foo"; |
| 3157 o.nextPageToken = "foo"; | 3157 o.nextPageToken = "foo"; |
| 3158 } | 3158 } |
| 3159 buildCounterDirectorySiteContactsListResponse--; | 3159 buildCounterDirectorySiteContactsListResponse--; |
| 3160 return o; | 3160 return o; |
| 3161 } | 3161 } |
| 3162 | 3162 |
| 3163 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ | 3163 checkDirectorySiteContactsListResponse(api.DirectorySiteContactsListResponse o)
{ |
| 3164 buildCounterDirectorySiteContactsListResponse++; | 3164 buildCounterDirectorySiteContactsListResponse++; |
| 3165 if (buildCounterDirectorySiteContactsListResponse < 3) { | 3165 if (buildCounterDirectorySiteContactsListResponse < 3) { |
| 3166 checkUnnamed1370(o.directorySiteContacts); | 3166 checkUnnamed2006(o.directorySiteContacts); |
| 3167 unittest.expect(o.kind, unittest.equals('foo')); | 3167 unittest.expect(o.kind, unittest.equals('foo')); |
| 3168 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3168 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3169 } | 3169 } |
| 3170 buildCounterDirectorySiteContactsListResponse--; | 3170 buildCounterDirectorySiteContactsListResponse--; |
| 3171 } | 3171 } |
| 3172 | 3172 |
| 3173 core.int buildCounterDirectorySiteSettings = 0; | 3173 core.int buildCounterDirectorySiteSettings = 0; |
| 3174 buildDirectorySiteSettings() { | 3174 buildDirectorySiteSettings() { |
| 3175 var o = new api.DirectorySiteSettings(); | 3175 var o = new api.DirectorySiteSettings(); |
| 3176 buildCounterDirectorySiteSettings++; | 3176 buildCounterDirectorySiteSettings++; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 3194 checkDfpSettings(o.dfpSettings); | 3194 checkDfpSettings(o.dfpSettings); |
| 3195 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); | 3195 unittest.expect(o.instreamVideoPlacementAccepted, unittest.isTrue); |
| 3196 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); | 3196 unittest.expect(o.interstitialPlacementAccepted, unittest.isTrue); |
| 3197 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); | 3197 unittest.expect(o.nielsenOcrOptOut, unittest.isTrue); |
| 3198 unittest.expect(o.verificationTagOptOut, unittest.isTrue); | 3198 unittest.expect(o.verificationTagOptOut, unittest.isTrue); |
| 3199 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); | 3199 unittest.expect(o.videoActiveViewOptOut, unittest.isTrue); |
| 3200 } | 3200 } |
| 3201 buildCounterDirectorySiteSettings--; | 3201 buildCounterDirectorySiteSettings--; |
| 3202 } | 3202 } |
| 3203 | 3203 |
| 3204 buildUnnamed1371() { | 3204 buildUnnamed2007() { |
| 3205 var o = new core.List<api.DirectorySite>(); | 3205 var o = new core.List<api.DirectorySite>(); |
| 3206 o.add(buildDirectorySite()); | 3206 o.add(buildDirectorySite()); |
| 3207 o.add(buildDirectorySite()); | 3207 o.add(buildDirectorySite()); |
| 3208 return o; | 3208 return o; |
| 3209 } | 3209 } |
| 3210 | 3210 |
| 3211 checkUnnamed1371(core.List<api.DirectorySite> o) { | 3211 checkUnnamed2007(core.List<api.DirectorySite> o) { |
| 3212 unittest.expect(o, unittest.hasLength(2)); | 3212 unittest.expect(o, unittest.hasLength(2)); |
| 3213 checkDirectorySite(o[0]); | 3213 checkDirectorySite(o[0]); |
| 3214 checkDirectorySite(o[1]); | 3214 checkDirectorySite(o[1]); |
| 3215 } | 3215 } |
| 3216 | 3216 |
| 3217 core.int buildCounterDirectorySitesListResponse = 0; | 3217 core.int buildCounterDirectorySitesListResponse = 0; |
| 3218 buildDirectorySitesListResponse() { | 3218 buildDirectorySitesListResponse() { |
| 3219 var o = new api.DirectorySitesListResponse(); | 3219 var o = new api.DirectorySitesListResponse(); |
| 3220 buildCounterDirectorySitesListResponse++; | 3220 buildCounterDirectorySitesListResponse++; |
| 3221 if (buildCounterDirectorySitesListResponse < 3) { | 3221 if (buildCounterDirectorySitesListResponse < 3) { |
| 3222 o.directorySites = buildUnnamed1371(); | 3222 o.directorySites = buildUnnamed2007(); |
| 3223 o.kind = "foo"; | 3223 o.kind = "foo"; |
| 3224 o.nextPageToken = "foo"; | 3224 o.nextPageToken = "foo"; |
| 3225 } | 3225 } |
| 3226 buildCounterDirectorySitesListResponse--; | 3226 buildCounterDirectorySitesListResponse--; |
| 3227 return o; | 3227 return o; |
| 3228 } | 3228 } |
| 3229 | 3229 |
| 3230 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { | 3230 checkDirectorySitesListResponse(api.DirectorySitesListResponse o) { |
| 3231 buildCounterDirectorySitesListResponse++; | 3231 buildCounterDirectorySitesListResponse++; |
| 3232 if (buildCounterDirectorySitesListResponse < 3) { | 3232 if (buildCounterDirectorySitesListResponse < 3) { |
| 3233 checkUnnamed1371(o.directorySites); | 3233 checkUnnamed2007(o.directorySites); |
| 3234 unittest.expect(o.kind, unittest.equals('foo')); | 3234 unittest.expect(o.kind, unittest.equals('foo')); |
| 3235 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3235 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3236 } | 3236 } |
| 3237 buildCounterDirectorySitesListResponse--; | 3237 buildCounterDirectorySitesListResponse--; |
| 3238 } | 3238 } |
| 3239 | 3239 |
| 3240 buildUnnamed1372() { | 3240 buildUnnamed2008() { |
| 3241 var o = new core.List<core.String>(); | 3241 var o = new core.List<core.String>(); |
| 3242 o.add("foo"); | 3242 o.add("foo"); |
| 3243 o.add("foo"); | 3243 o.add("foo"); |
| 3244 return o; | 3244 return o; |
| 3245 } | 3245 } |
| 3246 | 3246 |
| 3247 checkUnnamed1372(core.List<core.String> o) { | 3247 checkUnnamed2008(core.List<core.String> o) { |
| 3248 unittest.expect(o, unittest.hasLength(2)); | 3248 unittest.expect(o, unittest.hasLength(2)); |
| 3249 unittest.expect(o[0], unittest.equals('foo')); | 3249 unittest.expect(o[0], unittest.equals('foo')); |
| 3250 unittest.expect(o[1], unittest.equals('foo')); | 3250 unittest.expect(o[1], unittest.equals('foo')); |
| 3251 } | 3251 } |
| 3252 | 3252 |
| 3253 core.int buildCounterEventTag = 0; | 3253 core.int buildCounterEventTag = 0; |
| 3254 buildEventTag() { | 3254 buildEventTag() { |
| 3255 var o = new api.EventTag(); | 3255 var o = new api.EventTag(); |
| 3256 buildCounterEventTag++; | 3256 buildCounterEventTag++; |
| 3257 if (buildCounterEventTag < 3) { | 3257 if (buildCounterEventTag < 3) { |
| 3258 o.accountId = "foo"; | 3258 o.accountId = "foo"; |
| 3259 o.advertiserId = "foo"; | 3259 o.advertiserId = "foo"; |
| 3260 o.advertiserIdDimensionValue = buildDimensionValue(); | 3260 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3261 o.campaignId = "foo"; | 3261 o.campaignId = "foo"; |
| 3262 o.campaignIdDimensionValue = buildDimensionValue(); | 3262 o.campaignIdDimensionValue = buildDimensionValue(); |
| 3263 o.enabledByDefault = true; | 3263 o.enabledByDefault = true; |
| 3264 o.excludeFromAdxRequests = true; | 3264 o.excludeFromAdxRequests = true; |
| 3265 o.id = "foo"; | 3265 o.id = "foo"; |
| 3266 o.kind = "foo"; | 3266 o.kind = "foo"; |
| 3267 o.name = "foo"; | 3267 o.name = "foo"; |
| 3268 o.siteFilterType = "foo"; | 3268 o.siteFilterType = "foo"; |
| 3269 o.siteIds = buildUnnamed1372(); | 3269 o.siteIds = buildUnnamed2008(); |
| 3270 o.sslCompliant = true; | 3270 o.sslCompliant = true; |
| 3271 o.status = "foo"; | 3271 o.status = "foo"; |
| 3272 o.subaccountId = "foo"; | 3272 o.subaccountId = "foo"; |
| 3273 o.type = "foo"; | 3273 o.type = "foo"; |
| 3274 o.url = "foo"; | 3274 o.url = "foo"; |
| 3275 o.urlEscapeLevels = 42; | 3275 o.urlEscapeLevels = 42; |
| 3276 } | 3276 } |
| 3277 buildCounterEventTag--; | 3277 buildCounterEventTag--; |
| 3278 return o; | 3278 return o; |
| 3279 } | 3279 } |
| 3280 | 3280 |
| 3281 checkEventTag(api.EventTag o) { | 3281 checkEventTag(api.EventTag o) { |
| 3282 buildCounterEventTag++; | 3282 buildCounterEventTag++; |
| 3283 if (buildCounterEventTag < 3) { | 3283 if (buildCounterEventTag < 3) { |
| 3284 unittest.expect(o.accountId, unittest.equals('foo')); | 3284 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3285 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3285 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3286 checkDimensionValue(o.advertiserIdDimensionValue); | 3286 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3287 unittest.expect(o.campaignId, unittest.equals('foo')); | 3287 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 3288 checkDimensionValue(o.campaignIdDimensionValue); | 3288 checkDimensionValue(o.campaignIdDimensionValue); |
| 3289 unittest.expect(o.enabledByDefault, unittest.isTrue); | 3289 unittest.expect(o.enabledByDefault, unittest.isTrue); |
| 3290 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); | 3290 unittest.expect(o.excludeFromAdxRequests, unittest.isTrue); |
| 3291 unittest.expect(o.id, unittest.equals('foo')); | 3291 unittest.expect(o.id, unittest.equals('foo')); |
| 3292 unittest.expect(o.kind, unittest.equals('foo')); | 3292 unittest.expect(o.kind, unittest.equals('foo')); |
| 3293 unittest.expect(o.name, unittest.equals('foo')); | 3293 unittest.expect(o.name, unittest.equals('foo')); |
| 3294 unittest.expect(o.siteFilterType, unittest.equals('foo')); | 3294 unittest.expect(o.siteFilterType, unittest.equals('foo')); |
| 3295 checkUnnamed1372(o.siteIds); | 3295 checkUnnamed2008(o.siteIds); |
| 3296 unittest.expect(o.sslCompliant, unittest.isTrue); | 3296 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3297 unittest.expect(o.status, unittest.equals('foo')); | 3297 unittest.expect(o.status, unittest.equals('foo')); |
| 3298 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3298 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3299 unittest.expect(o.type, unittest.equals('foo')); | 3299 unittest.expect(o.type, unittest.equals('foo')); |
| 3300 unittest.expect(o.url, unittest.equals('foo')); | 3300 unittest.expect(o.url, unittest.equals('foo')); |
| 3301 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); | 3301 unittest.expect(o.urlEscapeLevels, unittest.equals(42)); |
| 3302 } | 3302 } |
| 3303 buildCounterEventTag--; | 3303 buildCounterEventTag--; |
| 3304 } | 3304 } |
| 3305 | 3305 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 3317 | 3317 |
| 3318 checkEventTagOverride(api.EventTagOverride o) { | 3318 checkEventTagOverride(api.EventTagOverride o) { |
| 3319 buildCounterEventTagOverride++; | 3319 buildCounterEventTagOverride++; |
| 3320 if (buildCounterEventTagOverride < 3) { | 3320 if (buildCounterEventTagOverride < 3) { |
| 3321 unittest.expect(o.enabled, unittest.isTrue); | 3321 unittest.expect(o.enabled, unittest.isTrue); |
| 3322 unittest.expect(o.id, unittest.equals('foo')); | 3322 unittest.expect(o.id, unittest.equals('foo')); |
| 3323 } | 3323 } |
| 3324 buildCounterEventTagOverride--; | 3324 buildCounterEventTagOverride--; |
| 3325 } | 3325 } |
| 3326 | 3326 |
| 3327 buildUnnamed1373() { | 3327 buildUnnamed2009() { |
| 3328 var o = new core.List<api.EventTag>(); | 3328 var o = new core.List<api.EventTag>(); |
| 3329 o.add(buildEventTag()); | 3329 o.add(buildEventTag()); |
| 3330 o.add(buildEventTag()); | 3330 o.add(buildEventTag()); |
| 3331 return o; | 3331 return o; |
| 3332 } | 3332 } |
| 3333 | 3333 |
| 3334 checkUnnamed1373(core.List<api.EventTag> o) { | 3334 checkUnnamed2009(core.List<api.EventTag> o) { |
| 3335 unittest.expect(o, unittest.hasLength(2)); | 3335 unittest.expect(o, unittest.hasLength(2)); |
| 3336 checkEventTag(o[0]); | 3336 checkEventTag(o[0]); |
| 3337 checkEventTag(o[1]); | 3337 checkEventTag(o[1]); |
| 3338 } | 3338 } |
| 3339 | 3339 |
| 3340 core.int buildCounterEventTagsListResponse = 0; | 3340 core.int buildCounterEventTagsListResponse = 0; |
| 3341 buildEventTagsListResponse() { | 3341 buildEventTagsListResponse() { |
| 3342 var o = new api.EventTagsListResponse(); | 3342 var o = new api.EventTagsListResponse(); |
| 3343 buildCounterEventTagsListResponse++; | 3343 buildCounterEventTagsListResponse++; |
| 3344 if (buildCounterEventTagsListResponse < 3) { | 3344 if (buildCounterEventTagsListResponse < 3) { |
| 3345 o.eventTags = buildUnnamed1373(); | 3345 o.eventTags = buildUnnamed2009(); |
| 3346 o.kind = "foo"; | 3346 o.kind = "foo"; |
| 3347 } | 3347 } |
| 3348 buildCounterEventTagsListResponse--; | 3348 buildCounterEventTagsListResponse--; |
| 3349 return o; | 3349 return o; |
| 3350 } | 3350 } |
| 3351 | 3351 |
| 3352 checkEventTagsListResponse(api.EventTagsListResponse o) { | 3352 checkEventTagsListResponse(api.EventTagsListResponse o) { |
| 3353 buildCounterEventTagsListResponse++; | 3353 buildCounterEventTagsListResponse++; |
| 3354 if (buildCounterEventTagsListResponse < 3) { | 3354 if (buildCounterEventTagsListResponse < 3) { |
| 3355 checkUnnamed1373(o.eventTags); | 3355 checkUnnamed2009(o.eventTags); |
| 3356 unittest.expect(o.kind, unittest.equals('foo')); | 3356 unittest.expect(o.kind, unittest.equals('foo')); |
| 3357 } | 3357 } |
| 3358 buildCounterEventTagsListResponse--; | 3358 buildCounterEventTagsListResponse--; |
| 3359 } | 3359 } |
| 3360 | 3360 |
| 3361 core.int buildCounterFileUrls = 0; | 3361 core.int buildCounterFileUrls = 0; |
| 3362 buildFileUrls() { | 3362 buildFileUrls() { |
| 3363 var o = new api.FileUrls(); | 3363 var o = new api.FileUrls(); |
| 3364 buildCounterFileUrls++; | 3364 buildCounterFileUrls++; |
| 3365 if (buildCounterFileUrls < 3) { | 3365 if (buildCounterFileUrls < 3) { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3409 unittest.expect(o.id, unittest.equals('foo')); | 3409 unittest.expect(o.id, unittest.equals('foo')); |
| 3410 unittest.expect(o.kind, unittest.equals('foo')); | 3410 unittest.expect(o.kind, unittest.equals('foo')); |
| 3411 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); | 3411 unittest.expect(o.lastModifiedTime, unittest.equals('foo')); |
| 3412 unittest.expect(o.reportId, unittest.equals('foo')); | 3412 unittest.expect(o.reportId, unittest.equals('foo')); |
| 3413 unittest.expect(o.status, unittest.equals('foo')); | 3413 unittest.expect(o.status, unittest.equals('foo')); |
| 3414 checkFileUrls(o.urls); | 3414 checkFileUrls(o.urls); |
| 3415 } | 3415 } |
| 3416 buildCounterFile--; | 3416 buildCounterFile--; |
| 3417 } | 3417 } |
| 3418 | 3418 |
| 3419 buildUnnamed1374() { | 3419 buildUnnamed2010() { |
| 3420 var o = new core.List<api.File>(); | 3420 var o = new core.List<api.File>(); |
| 3421 o.add(buildFile()); | 3421 o.add(buildFile()); |
| 3422 o.add(buildFile()); | 3422 o.add(buildFile()); |
| 3423 return o; | 3423 return o; |
| 3424 } | 3424 } |
| 3425 | 3425 |
| 3426 checkUnnamed1374(core.List<api.File> o) { | 3426 checkUnnamed2010(core.List<api.File> o) { |
| 3427 unittest.expect(o, unittest.hasLength(2)); | 3427 unittest.expect(o, unittest.hasLength(2)); |
| 3428 checkFile(o[0]); | 3428 checkFile(o[0]); |
| 3429 checkFile(o[1]); | 3429 checkFile(o[1]); |
| 3430 } | 3430 } |
| 3431 | 3431 |
| 3432 core.int buildCounterFileList = 0; | 3432 core.int buildCounterFileList = 0; |
| 3433 buildFileList() { | 3433 buildFileList() { |
| 3434 var o = new api.FileList(); | 3434 var o = new api.FileList(); |
| 3435 buildCounterFileList++; | 3435 buildCounterFileList++; |
| 3436 if (buildCounterFileList < 3) { | 3436 if (buildCounterFileList < 3) { |
| 3437 o.etag = "foo"; | 3437 o.etag = "foo"; |
| 3438 o.items = buildUnnamed1374(); | 3438 o.items = buildUnnamed2010(); |
| 3439 o.kind = "foo"; | 3439 o.kind = "foo"; |
| 3440 o.nextPageToken = "foo"; | 3440 o.nextPageToken = "foo"; |
| 3441 } | 3441 } |
| 3442 buildCounterFileList--; | 3442 buildCounterFileList--; |
| 3443 return o; | 3443 return o; |
| 3444 } | 3444 } |
| 3445 | 3445 |
| 3446 checkFileList(api.FileList o) { | 3446 checkFileList(api.FileList o) { |
| 3447 buildCounterFileList++; | 3447 buildCounterFileList++; |
| 3448 if (buildCounterFileList < 3) { | 3448 if (buildCounterFileList < 3) { |
| 3449 unittest.expect(o.etag, unittest.equals('foo')); | 3449 unittest.expect(o.etag, unittest.equals('foo')); |
| 3450 checkUnnamed1374(o.items); | 3450 checkUnnamed2010(o.items); |
| 3451 unittest.expect(o.kind, unittest.equals('foo')); | 3451 unittest.expect(o.kind, unittest.equals('foo')); |
| 3452 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3452 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3453 } | 3453 } |
| 3454 buildCounterFileList--; | 3454 buildCounterFileList--; |
| 3455 } | 3455 } |
| 3456 | 3456 |
| 3457 core.int buildCounterFlight = 0; | 3457 core.int buildCounterFlight = 0; |
| 3458 buildFlight() { | 3458 buildFlight() { |
| 3459 var o = new api.Flight(); | 3459 var o = new api.Flight(); |
| 3460 buildCounterFlight++; | 3460 buildCounterFlight++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3493 | 3493 |
| 3494 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { | 3494 checkFloodlightActivitiesGenerateTagResponse(api.FloodlightActivitiesGenerateTag
Response o) { |
| 3495 buildCounterFloodlightActivitiesGenerateTagResponse++; | 3495 buildCounterFloodlightActivitiesGenerateTagResponse++; |
| 3496 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { | 3496 if (buildCounterFloodlightActivitiesGenerateTagResponse < 3) { |
| 3497 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); | 3497 unittest.expect(o.floodlightActivityTag, unittest.equals('foo')); |
| 3498 unittest.expect(o.kind, unittest.equals('foo')); | 3498 unittest.expect(o.kind, unittest.equals('foo')); |
| 3499 } | 3499 } |
| 3500 buildCounterFloodlightActivitiesGenerateTagResponse--; | 3500 buildCounterFloodlightActivitiesGenerateTagResponse--; |
| 3501 } | 3501 } |
| 3502 | 3502 |
| 3503 buildUnnamed1375() { | 3503 buildUnnamed2011() { |
| 3504 var o = new core.List<api.FloodlightActivity>(); | 3504 var o = new core.List<api.FloodlightActivity>(); |
| 3505 o.add(buildFloodlightActivity()); | 3505 o.add(buildFloodlightActivity()); |
| 3506 o.add(buildFloodlightActivity()); | 3506 o.add(buildFloodlightActivity()); |
| 3507 return o; | 3507 return o; |
| 3508 } | 3508 } |
| 3509 | 3509 |
| 3510 checkUnnamed1375(core.List<api.FloodlightActivity> o) { | 3510 checkUnnamed2011(core.List<api.FloodlightActivity> o) { |
| 3511 unittest.expect(o, unittest.hasLength(2)); | 3511 unittest.expect(o, unittest.hasLength(2)); |
| 3512 checkFloodlightActivity(o[0]); | 3512 checkFloodlightActivity(o[0]); |
| 3513 checkFloodlightActivity(o[1]); | 3513 checkFloodlightActivity(o[1]); |
| 3514 } | 3514 } |
| 3515 | 3515 |
| 3516 core.int buildCounterFloodlightActivitiesListResponse = 0; | 3516 core.int buildCounterFloodlightActivitiesListResponse = 0; |
| 3517 buildFloodlightActivitiesListResponse() { | 3517 buildFloodlightActivitiesListResponse() { |
| 3518 var o = new api.FloodlightActivitiesListResponse(); | 3518 var o = new api.FloodlightActivitiesListResponse(); |
| 3519 buildCounterFloodlightActivitiesListResponse++; | 3519 buildCounterFloodlightActivitiesListResponse++; |
| 3520 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3520 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3521 o.floodlightActivities = buildUnnamed1375(); | 3521 o.floodlightActivities = buildUnnamed2011(); |
| 3522 o.kind = "foo"; | 3522 o.kind = "foo"; |
| 3523 o.nextPageToken = "foo"; | 3523 o.nextPageToken = "foo"; |
| 3524 } | 3524 } |
| 3525 buildCounterFloodlightActivitiesListResponse--; | 3525 buildCounterFloodlightActivitiesListResponse--; |
| 3526 return o; | 3526 return o; |
| 3527 } | 3527 } |
| 3528 | 3528 |
| 3529 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { | 3529 checkFloodlightActivitiesListResponse(api.FloodlightActivitiesListResponse o) { |
| 3530 buildCounterFloodlightActivitiesListResponse++; | 3530 buildCounterFloodlightActivitiesListResponse++; |
| 3531 if (buildCounterFloodlightActivitiesListResponse < 3) { | 3531 if (buildCounterFloodlightActivitiesListResponse < 3) { |
| 3532 checkUnnamed1375(o.floodlightActivities); | 3532 checkUnnamed2011(o.floodlightActivities); |
| 3533 unittest.expect(o.kind, unittest.equals('foo')); | 3533 unittest.expect(o.kind, unittest.equals('foo')); |
| 3534 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3534 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3535 } | 3535 } |
| 3536 buildCounterFloodlightActivitiesListResponse--; | 3536 buildCounterFloodlightActivitiesListResponse--; |
| 3537 } | 3537 } |
| 3538 | 3538 |
| 3539 buildUnnamed1376() { | 3539 buildUnnamed2012() { |
| 3540 var o = new core.List<api.FloodlightActivityDynamicTag>(); | 3540 var o = new core.List<api.FloodlightActivityDynamicTag>(); |
| 3541 o.add(buildFloodlightActivityDynamicTag()); | 3541 o.add(buildFloodlightActivityDynamicTag()); |
| 3542 o.add(buildFloodlightActivityDynamicTag()); | 3542 o.add(buildFloodlightActivityDynamicTag()); |
| 3543 return o; | 3543 return o; |
| 3544 } | 3544 } |
| 3545 | 3545 |
| 3546 checkUnnamed1376(core.List<api.FloodlightActivityDynamicTag> o) { | 3546 checkUnnamed2012(core.List<api.FloodlightActivityDynamicTag> o) { |
| 3547 unittest.expect(o, unittest.hasLength(2)); | 3547 unittest.expect(o, unittest.hasLength(2)); |
| 3548 checkFloodlightActivityDynamicTag(o[0]); | 3548 checkFloodlightActivityDynamicTag(o[0]); |
| 3549 checkFloodlightActivityDynamicTag(o[1]); | 3549 checkFloodlightActivityDynamicTag(o[1]); |
| 3550 } | 3550 } |
| 3551 | 3551 |
| 3552 buildUnnamed1377() { | 3552 buildUnnamed2013() { |
| 3553 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); | 3553 var o = new core.List<api.FloodlightActivityPublisherDynamicTag>(); |
| 3554 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3554 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3555 o.add(buildFloodlightActivityPublisherDynamicTag()); | 3555 o.add(buildFloodlightActivityPublisherDynamicTag()); |
| 3556 return o; | 3556 return o; |
| 3557 } | 3557 } |
| 3558 | 3558 |
| 3559 checkUnnamed1377(core.List<api.FloodlightActivityPublisherDynamicTag> o) { | 3559 checkUnnamed2013(core.List<api.FloodlightActivityPublisherDynamicTag> o) { |
| 3560 unittest.expect(o, unittest.hasLength(2)); | 3560 unittest.expect(o, unittest.hasLength(2)); |
| 3561 checkFloodlightActivityPublisherDynamicTag(o[0]); | 3561 checkFloodlightActivityPublisherDynamicTag(o[0]); |
| 3562 checkFloodlightActivityPublisherDynamicTag(o[1]); | 3562 checkFloodlightActivityPublisherDynamicTag(o[1]); |
| 3563 } | 3563 } |
| 3564 | 3564 |
| 3565 buildUnnamed1378() { | 3565 buildUnnamed2014() { |
| 3566 var o = new core.List<core.String>(); | 3566 var o = new core.List<core.String>(); |
| 3567 o.add("foo"); | 3567 o.add("foo"); |
| 3568 o.add("foo"); | 3568 o.add("foo"); |
| 3569 return o; | 3569 return o; |
| 3570 } | 3570 } |
| 3571 | 3571 |
| 3572 checkUnnamed1378(core.List<core.String> o) { | 3572 checkUnnamed2014(core.List<core.String> o) { |
| 3573 unittest.expect(o, unittest.hasLength(2)); | 3573 unittest.expect(o, unittest.hasLength(2)); |
| 3574 unittest.expect(o[0], unittest.equals('foo')); | 3574 unittest.expect(o[0], unittest.equals('foo')); |
| 3575 unittest.expect(o[1], unittest.equals('foo')); | 3575 unittest.expect(o[1], unittest.equals('foo')); |
| 3576 } | 3576 } |
| 3577 | 3577 |
| 3578 core.int buildCounterFloodlightActivity = 0; | 3578 core.int buildCounterFloodlightActivity = 0; |
| 3579 buildFloodlightActivity() { | 3579 buildFloodlightActivity() { |
| 3580 var o = new api.FloodlightActivity(); | 3580 var o = new api.FloodlightActivity(); |
| 3581 buildCounterFloodlightActivity++; | 3581 buildCounterFloodlightActivity++; |
| 3582 if (buildCounterFloodlightActivity < 3) { | 3582 if (buildCounterFloodlightActivity < 3) { |
| 3583 o.accountId = "foo"; | 3583 o.accountId = "foo"; |
| 3584 o.advertiserId = "foo"; | 3584 o.advertiserId = "foo"; |
| 3585 o.advertiserIdDimensionValue = buildDimensionValue(); | 3585 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3586 o.cacheBustingType = "foo"; | 3586 o.cacheBustingType = "foo"; |
| 3587 o.countingMethod = "foo"; | 3587 o.countingMethod = "foo"; |
| 3588 o.defaultTags = buildUnnamed1376(); | 3588 o.defaultTags = buildUnnamed2012(); |
| 3589 o.expectedUrl = "foo"; | 3589 o.expectedUrl = "foo"; |
| 3590 o.floodlightActivityGroupId = "foo"; | 3590 o.floodlightActivityGroupId = "foo"; |
| 3591 o.floodlightActivityGroupName = "foo"; | 3591 o.floodlightActivityGroupName = "foo"; |
| 3592 o.floodlightActivityGroupTagString = "foo"; | 3592 o.floodlightActivityGroupTagString = "foo"; |
| 3593 o.floodlightActivityGroupType = "foo"; | 3593 o.floodlightActivityGroupType = "foo"; |
| 3594 o.floodlightConfigurationId = "foo"; | 3594 o.floodlightConfigurationId = "foo"; |
| 3595 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); | 3595 o.floodlightConfigurationIdDimensionValue = buildDimensionValue(); |
| 3596 o.hidden = true; | 3596 o.hidden = true; |
| 3597 o.id = "foo"; | 3597 o.id = "foo"; |
| 3598 o.idDimensionValue = buildDimensionValue(); | 3598 o.idDimensionValue = buildDimensionValue(); |
| 3599 o.imageTagEnabled = true; | 3599 o.imageTagEnabled = true; |
| 3600 o.kind = "foo"; | 3600 o.kind = "foo"; |
| 3601 o.name = "foo"; | 3601 o.name = "foo"; |
| 3602 o.notes = "foo"; | 3602 o.notes = "foo"; |
| 3603 o.publisherTags = buildUnnamed1377(); | 3603 o.publisherTags = buildUnnamed2013(); |
| 3604 o.secure = true; | 3604 o.secure = true; |
| 3605 o.sslCompliant = true; | 3605 o.sslCompliant = true; |
| 3606 o.sslRequired = true; | 3606 o.sslRequired = true; |
| 3607 o.subaccountId = "foo"; | 3607 o.subaccountId = "foo"; |
| 3608 o.tagFormat = "foo"; | 3608 o.tagFormat = "foo"; |
| 3609 o.tagString = "foo"; | 3609 o.tagString = "foo"; |
| 3610 o.userDefinedVariableTypes = buildUnnamed1378(); | 3610 o.userDefinedVariableTypes = buildUnnamed2014(); |
| 3611 } | 3611 } |
| 3612 buildCounterFloodlightActivity--; | 3612 buildCounterFloodlightActivity--; |
| 3613 return o; | 3613 return o; |
| 3614 } | 3614 } |
| 3615 | 3615 |
| 3616 checkFloodlightActivity(api.FloodlightActivity o) { | 3616 checkFloodlightActivity(api.FloodlightActivity o) { |
| 3617 buildCounterFloodlightActivity++; | 3617 buildCounterFloodlightActivity++; |
| 3618 if (buildCounterFloodlightActivity < 3) { | 3618 if (buildCounterFloodlightActivity < 3) { |
| 3619 unittest.expect(o.accountId, unittest.equals('foo')); | 3619 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3620 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3620 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3621 checkDimensionValue(o.advertiserIdDimensionValue); | 3621 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3622 unittest.expect(o.cacheBustingType, unittest.equals('foo')); | 3622 unittest.expect(o.cacheBustingType, unittest.equals('foo')); |
| 3623 unittest.expect(o.countingMethod, unittest.equals('foo')); | 3623 unittest.expect(o.countingMethod, unittest.equals('foo')); |
| 3624 checkUnnamed1376(o.defaultTags); | 3624 checkUnnamed2012(o.defaultTags); |
| 3625 unittest.expect(o.expectedUrl, unittest.equals('foo')); | 3625 unittest.expect(o.expectedUrl, unittest.equals('foo')); |
| 3626 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); | 3626 unittest.expect(o.floodlightActivityGroupId, unittest.equals('foo')); |
| 3627 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); | 3627 unittest.expect(o.floodlightActivityGroupName, unittest.equals('foo')); |
| 3628 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); | 3628 unittest.expect(o.floodlightActivityGroupTagString, unittest.equals('foo')); |
| 3629 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); | 3629 unittest.expect(o.floodlightActivityGroupType, unittest.equals('foo')); |
| 3630 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); | 3630 unittest.expect(o.floodlightConfigurationId, unittest.equals('foo')); |
| 3631 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); | 3631 checkDimensionValue(o.floodlightConfigurationIdDimensionValue); |
| 3632 unittest.expect(o.hidden, unittest.isTrue); | 3632 unittest.expect(o.hidden, unittest.isTrue); |
| 3633 unittest.expect(o.id, unittest.equals('foo')); | 3633 unittest.expect(o.id, unittest.equals('foo')); |
| 3634 checkDimensionValue(o.idDimensionValue); | 3634 checkDimensionValue(o.idDimensionValue); |
| 3635 unittest.expect(o.imageTagEnabled, unittest.isTrue); | 3635 unittest.expect(o.imageTagEnabled, unittest.isTrue); |
| 3636 unittest.expect(o.kind, unittest.equals('foo')); | 3636 unittest.expect(o.kind, unittest.equals('foo')); |
| 3637 unittest.expect(o.name, unittest.equals('foo')); | 3637 unittest.expect(o.name, unittest.equals('foo')); |
| 3638 unittest.expect(o.notes, unittest.equals('foo')); | 3638 unittest.expect(o.notes, unittest.equals('foo')); |
| 3639 checkUnnamed1377(o.publisherTags); | 3639 checkUnnamed2013(o.publisherTags); |
| 3640 unittest.expect(o.secure, unittest.isTrue); | 3640 unittest.expect(o.secure, unittest.isTrue); |
| 3641 unittest.expect(o.sslCompliant, unittest.isTrue); | 3641 unittest.expect(o.sslCompliant, unittest.isTrue); |
| 3642 unittest.expect(o.sslRequired, unittest.isTrue); | 3642 unittest.expect(o.sslRequired, unittest.isTrue); |
| 3643 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3643 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3644 unittest.expect(o.tagFormat, unittest.equals('foo')); | 3644 unittest.expect(o.tagFormat, unittest.equals('foo')); |
| 3645 unittest.expect(o.tagString, unittest.equals('foo')); | 3645 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3646 checkUnnamed1378(o.userDefinedVariableTypes); | 3646 checkUnnamed2014(o.userDefinedVariableTypes); |
| 3647 } | 3647 } |
| 3648 buildCounterFloodlightActivity--; | 3648 buildCounterFloodlightActivity--; |
| 3649 } | 3649 } |
| 3650 | 3650 |
| 3651 core.int buildCounterFloodlightActivityDynamicTag = 0; | 3651 core.int buildCounterFloodlightActivityDynamicTag = 0; |
| 3652 buildFloodlightActivityDynamicTag() { | 3652 buildFloodlightActivityDynamicTag() { |
| 3653 var o = new api.FloodlightActivityDynamicTag(); | 3653 var o = new api.FloodlightActivityDynamicTag(); |
| 3654 buildCounterFloodlightActivityDynamicTag++; | 3654 buildCounterFloodlightActivityDynamicTag++; |
| 3655 if (buildCounterFloodlightActivityDynamicTag < 3) { | 3655 if (buildCounterFloodlightActivityDynamicTag < 3) { |
| 3656 o.id = "foo"; | 3656 o.id = "foo"; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3705 checkDimensionValue(o.idDimensionValue); | 3705 checkDimensionValue(o.idDimensionValue); |
| 3706 unittest.expect(o.kind, unittest.equals('foo')); | 3706 unittest.expect(o.kind, unittest.equals('foo')); |
| 3707 unittest.expect(o.name, unittest.equals('foo')); | 3707 unittest.expect(o.name, unittest.equals('foo')); |
| 3708 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3708 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3709 unittest.expect(o.tagString, unittest.equals('foo')); | 3709 unittest.expect(o.tagString, unittest.equals('foo')); |
| 3710 unittest.expect(o.type, unittest.equals('foo')); | 3710 unittest.expect(o.type, unittest.equals('foo')); |
| 3711 } | 3711 } |
| 3712 buildCounterFloodlightActivityGroup--; | 3712 buildCounterFloodlightActivityGroup--; |
| 3713 } | 3713 } |
| 3714 | 3714 |
| 3715 buildUnnamed1379() { | 3715 buildUnnamed2015() { |
| 3716 var o = new core.List<api.FloodlightActivityGroup>(); | 3716 var o = new core.List<api.FloodlightActivityGroup>(); |
| 3717 o.add(buildFloodlightActivityGroup()); | 3717 o.add(buildFloodlightActivityGroup()); |
| 3718 o.add(buildFloodlightActivityGroup()); | 3718 o.add(buildFloodlightActivityGroup()); |
| 3719 return o; | 3719 return o; |
| 3720 } | 3720 } |
| 3721 | 3721 |
| 3722 checkUnnamed1379(core.List<api.FloodlightActivityGroup> o) { | 3722 checkUnnamed2015(core.List<api.FloodlightActivityGroup> o) { |
| 3723 unittest.expect(o, unittest.hasLength(2)); | 3723 unittest.expect(o, unittest.hasLength(2)); |
| 3724 checkFloodlightActivityGroup(o[0]); | 3724 checkFloodlightActivityGroup(o[0]); |
| 3725 checkFloodlightActivityGroup(o[1]); | 3725 checkFloodlightActivityGroup(o[1]); |
| 3726 } | 3726 } |
| 3727 | 3727 |
| 3728 core.int buildCounterFloodlightActivityGroupsListResponse = 0; | 3728 core.int buildCounterFloodlightActivityGroupsListResponse = 0; |
| 3729 buildFloodlightActivityGroupsListResponse() { | 3729 buildFloodlightActivityGroupsListResponse() { |
| 3730 var o = new api.FloodlightActivityGroupsListResponse(); | 3730 var o = new api.FloodlightActivityGroupsListResponse(); |
| 3731 buildCounterFloodlightActivityGroupsListResponse++; | 3731 buildCounterFloodlightActivityGroupsListResponse++; |
| 3732 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3732 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 3733 o.floodlightActivityGroups = buildUnnamed1379(); | 3733 o.floodlightActivityGroups = buildUnnamed2015(); |
| 3734 o.kind = "foo"; | 3734 o.kind = "foo"; |
| 3735 o.nextPageToken = "foo"; | 3735 o.nextPageToken = "foo"; |
| 3736 } | 3736 } |
| 3737 buildCounterFloodlightActivityGroupsListResponse--; | 3737 buildCounterFloodlightActivityGroupsListResponse--; |
| 3738 return o; | 3738 return o; |
| 3739 } | 3739 } |
| 3740 | 3740 |
| 3741 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { | 3741 checkFloodlightActivityGroupsListResponse(api.FloodlightActivityGroupsListRespon
se o) { |
| 3742 buildCounterFloodlightActivityGroupsListResponse++; | 3742 buildCounterFloodlightActivityGroupsListResponse++; |
| 3743 if (buildCounterFloodlightActivityGroupsListResponse < 3) { | 3743 if (buildCounterFloodlightActivityGroupsListResponse < 3) { |
| 3744 checkUnnamed1379(o.floodlightActivityGroups); | 3744 checkUnnamed2015(o.floodlightActivityGroups); |
| 3745 unittest.expect(o.kind, unittest.equals('foo')); | 3745 unittest.expect(o.kind, unittest.equals('foo')); |
| 3746 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 3746 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 3747 } | 3747 } |
| 3748 buildCounterFloodlightActivityGroupsListResponse--; | 3748 buildCounterFloodlightActivityGroupsListResponse--; |
| 3749 } | 3749 } |
| 3750 | 3750 |
| 3751 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; | 3751 core.int buildCounterFloodlightActivityPublisherDynamicTag = 0; |
| 3752 buildFloodlightActivityPublisherDynamicTag() { | 3752 buildFloodlightActivityPublisherDynamicTag() { |
| 3753 var o = new api.FloodlightActivityPublisherDynamicTag(); | 3753 var o = new api.FloodlightActivityPublisherDynamicTag(); |
| 3754 buildCounterFloodlightActivityPublisherDynamicTag++; | 3754 buildCounterFloodlightActivityPublisherDynamicTag++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 3770 unittest.expect(o.clickThrough, unittest.isTrue); | 3770 unittest.expect(o.clickThrough, unittest.isTrue); |
| 3771 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 3771 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 3772 checkFloodlightActivityDynamicTag(o.dynamicTag); | 3772 checkFloodlightActivityDynamicTag(o.dynamicTag); |
| 3773 unittest.expect(o.siteId, unittest.equals('foo')); | 3773 unittest.expect(o.siteId, unittest.equals('foo')); |
| 3774 checkDimensionValue(o.siteIdDimensionValue); | 3774 checkDimensionValue(o.siteIdDimensionValue); |
| 3775 unittest.expect(o.viewThrough, unittest.isTrue); | 3775 unittest.expect(o.viewThrough, unittest.isTrue); |
| 3776 } | 3776 } |
| 3777 buildCounterFloodlightActivityPublisherDynamicTag--; | 3777 buildCounterFloodlightActivityPublisherDynamicTag--; |
| 3778 } | 3778 } |
| 3779 | 3779 |
| 3780 buildUnnamed1380() { | 3780 buildUnnamed2016() { |
| 3781 var o = new core.List<core.String>(); | 3781 var o = new core.List<core.String>(); |
| 3782 o.add("foo"); | 3782 o.add("foo"); |
| 3783 o.add("foo"); | 3783 o.add("foo"); |
| 3784 return o; | 3784 return o; |
| 3785 } | 3785 } |
| 3786 | 3786 |
| 3787 checkUnnamed1380(core.List<core.String> o) { | 3787 checkUnnamed2016(core.List<core.String> o) { |
| 3788 unittest.expect(o, unittest.hasLength(2)); | 3788 unittest.expect(o, unittest.hasLength(2)); |
| 3789 unittest.expect(o[0], unittest.equals('foo')); | 3789 unittest.expect(o[0], unittest.equals('foo')); |
| 3790 unittest.expect(o[1], unittest.equals('foo')); | 3790 unittest.expect(o[1], unittest.equals('foo')); |
| 3791 } | 3791 } |
| 3792 | 3792 |
| 3793 buildUnnamed1381() { | 3793 buildUnnamed2017() { |
| 3794 var o = new core.List<api.ThirdPartyAuthenticationToken>(); | 3794 var o = new core.List<api.ThirdPartyAuthenticationToken>(); |
| 3795 o.add(buildThirdPartyAuthenticationToken()); | 3795 o.add(buildThirdPartyAuthenticationToken()); |
| 3796 o.add(buildThirdPartyAuthenticationToken()); | 3796 o.add(buildThirdPartyAuthenticationToken()); |
| 3797 return o; | 3797 return o; |
| 3798 } | 3798 } |
| 3799 | 3799 |
| 3800 checkUnnamed1381(core.List<api.ThirdPartyAuthenticationToken> o) { | 3800 checkUnnamed2017(core.List<api.ThirdPartyAuthenticationToken> o) { |
| 3801 unittest.expect(o, unittest.hasLength(2)); | 3801 unittest.expect(o, unittest.hasLength(2)); |
| 3802 checkThirdPartyAuthenticationToken(o[0]); | 3802 checkThirdPartyAuthenticationToken(o[0]); |
| 3803 checkThirdPartyAuthenticationToken(o[1]); | 3803 checkThirdPartyAuthenticationToken(o[1]); |
| 3804 } | 3804 } |
| 3805 | 3805 |
| 3806 buildUnnamed1382() { | 3806 buildUnnamed2018() { |
| 3807 var o = new core.List<api.UserDefinedVariableConfiguration>(); | 3807 var o = new core.List<api.UserDefinedVariableConfiguration>(); |
| 3808 o.add(buildUserDefinedVariableConfiguration()); | 3808 o.add(buildUserDefinedVariableConfiguration()); |
| 3809 o.add(buildUserDefinedVariableConfiguration()); | 3809 o.add(buildUserDefinedVariableConfiguration()); |
| 3810 return o; | 3810 return o; |
| 3811 } | 3811 } |
| 3812 | 3812 |
| 3813 checkUnnamed1382(core.List<api.UserDefinedVariableConfiguration> o) { | 3813 checkUnnamed2018(core.List<api.UserDefinedVariableConfiguration> o) { |
| 3814 unittest.expect(o, unittest.hasLength(2)); | 3814 unittest.expect(o, unittest.hasLength(2)); |
| 3815 checkUserDefinedVariableConfiguration(o[0]); | 3815 checkUserDefinedVariableConfiguration(o[0]); |
| 3816 checkUserDefinedVariableConfiguration(o[1]); | 3816 checkUserDefinedVariableConfiguration(o[1]); |
| 3817 } | 3817 } |
| 3818 | 3818 |
| 3819 core.int buildCounterFloodlightConfiguration = 0; | 3819 core.int buildCounterFloodlightConfiguration = 0; |
| 3820 buildFloodlightConfiguration() { | 3820 buildFloodlightConfiguration() { |
| 3821 var o = new api.FloodlightConfiguration(); | 3821 var o = new api.FloodlightConfiguration(); |
| 3822 buildCounterFloodlightConfiguration++; | 3822 buildCounterFloodlightConfiguration++; |
| 3823 if (buildCounterFloodlightConfiguration < 3) { | 3823 if (buildCounterFloodlightConfiguration < 3) { |
| 3824 o.accountId = "foo"; | 3824 o.accountId = "foo"; |
| 3825 o.advertiserId = "foo"; | 3825 o.advertiserId = "foo"; |
| 3826 o.advertiserIdDimensionValue = buildDimensionValue(); | 3826 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 3827 o.analyticsDataSharingEnabled = true; | 3827 o.analyticsDataSharingEnabled = true; |
| 3828 o.exposureToConversionEnabled = true; | 3828 o.exposureToConversionEnabled = true; |
| 3829 o.firstDayOfWeek = "foo"; | 3829 o.firstDayOfWeek = "foo"; |
| 3830 o.id = "foo"; | 3830 o.id = "foo"; |
| 3831 o.idDimensionValue = buildDimensionValue(); | 3831 o.idDimensionValue = buildDimensionValue(); |
| 3832 o.inAppAttributionTrackingEnabled = true; | 3832 o.inAppAttributionTrackingEnabled = true; |
| 3833 o.kind = "foo"; | 3833 o.kind = "foo"; |
| 3834 o.lookbackConfiguration = buildLookbackConfiguration(); | 3834 o.lookbackConfiguration = buildLookbackConfiguration(); |
| 3835 o.naturalSearchConversionAttributionOption = "foo"; | 3835 o.naturalSearchConversionAttributionOption = "foo"; |
| 3836 o.omnitureSettings = buildOmnitureSettings(); | 3836 o.omnitureSettings = buildOmnitureSettings(); |
| 3837 o.sslRequired = true; | 3837 o.sslRequired = true; |
| 3838 o.standardVariableTypes = buildUnnamed1380(); | 3838 o.standardVariableTypes = buildUnnamed2016(); |
| 3839 o.subaccountId = "foo"; | 3839 o.subaccountId = "foo"; |
| 3840 o.tagSettings = buildTagSettings(); | 3840 o.tagSettings = buildTagSettings(); |
| 3841 o.thirdPartyAuthenticationTokens = buildUnnamed1381(); | 3841 o.thirdPartyAuthenticationTokens = buildUnnamed2017(); |
| 3842 o.userDefinedVariableConfigurations = buildUnnamed1382(); | 3842 o.userDefinedVariableConfigurations = buildUnnamed2018(); |
| 3843 } | 3843 } |
| 3844 buildCounterFloodlightConfiguration--; | 3844 buildCounterFloodlightConfiguration--; |
| 3845 return o; | 3845 return o; |
| 3846 } | 3846 } |
| 3847 | 3847 |
| 3848 checkFloodlightConfiguration(api.FloodlightConfiguration o) { | 3848 checkFloodlightConfiguration(api.FloodlightConfiguration o) { |
| 3849 buildCounterFloodlightConfiguration++; | 3849 buildCounterFloodlightConfiguration++; |
| 3850 if (buildCounterFloodlightConfiguration < 3) { | 3850 if (buildCounterFloodlightConfiguration < 3) { |
| 3851 unittest.expect(o.accountId, unittest.equals('foo')); | 3851 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3852 unittest.expect(o.advertiserId, unittest.equals('foo')); | 3852 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 3853 checkDimensionValue(o.advertiserIdDimensionValue); | 3853 checkDimensionValue(o.advertiserIdDimensionValue); |
| 3854 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); | 3854 unittest.expect(o.analyticsDataSharingEnabled, unittest.isTrue); |
| 3855 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); | 3855 unittest.expect(o.exposureToConversionEnabled, unittest.isTrue); |
| 3856 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); | 3856 unittest.expect(o.firstDayOfWeek, unittest.equals('foo')); |
| 3857 unittest.expect(o.id, unittest.equals('foo')); | 3857 unittest.expect(o.id, unittest.equals('foo')); |
| 3858 checkDimensionValue(o.idDimensionValue); | 3858 checkDimensionValue(o.idDimensionValue); |
| 3859 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); | 3859 unittest.expect(o.inAppAttributionTrackingEnabled, unittest.isTrue); |
| 3860 unittest.expect(o.kind, unittest.equals('foo')); | 3860 unittest.expect(o.kind, unittest.equals('foo')); |
| 3861 checkLookbackConfiguration(o.lookbackConfiguration); | 3861 checkLookbackConfiguration(o.lookbackConfiguration); |
| 3862 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); | 3862 unittest.expect(o.naturalSearchConversionAttributionOption, unittest.equals(
'foo')); |
| 3863 checkOmnitureSettings(o.omnitureSettings); | 3863 checkOmnitureSettings(o.omnitureSettings); |
| 3864 unittest.expect(o.sslRequired, unittest.isTrue); | 3864 unittest.expect(o.sslRequired, unittest.isTrue); |
| 3865 checkUnnamed1380(o.standardVariableTypes); | 3865 checkUnnamed2016(o.standardVariableTypes); |
| 3866 unittest.expect(o.subaccountId, unittest.equals('foo')); | 3866 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 3867 checkTagSettings(o.tagSettings); | 3867 checkTagSettings(o.tagSettings); |
| 3868 checkUnnamed1381(o.thirdPartyAuthenticationTokens); | 3868 checkUnnamed2017(o.thirdPartyAuthenticationTokens); |
| 3869 checkUnnamed1382(o.userDefinedVariableConfigurations); | 3869 checkUnnamed2018(o.userDefinedVariableConfigurations); |
| 3870 } | 3870 } |
| 3871 buildCounterFloodlightConfiguration--; | 3871 buildCounterFloodlightConfiguration--; |
| 3872 } | 3872 } |
| 3873 | 3873 |
| 3874 buildUnnamed1383() { | 3874 buildUnnamed2019() { |
| 3875 var o = new core.List<api.FloodlightConfiguration>(); | 3875 var o = new core.List<api.FloodlightConfiguration>(); |
| 3876 o.add(buildFloodlightConfiguration()); | 3876 o.add(buildFloodlightConfiguration()); |
| 3877 o.add(buildFloodlightConfiguration()); | 3877 o.add(buildFloodlightConfiguration()); |
| 3878 return o; | 3878 return o; |
| 3879 } | 3879 } |
| 3880 | 3880 |
| 3881 checkUnnamed1383(core.List<api.FloodlightConfiguration> o) { | 3881 checkUnnamed2019(core.List<api.FloodlightConfiguration> o) { |
| 3882 unittest.expect(o, unittest.hasLength(2)); | 3882 unittest.expect(o, unittest.hasLength(2)); |
| 3883 checkFloodlightConfiguration(o[0]); | 3883 checkFloodlightConfiguration(o[0]); |
| 3884 checkFloodlightConfiguration(o[1]); | 3884 checkFloodlightConfiguration(o[1]); |
| 3885 } | 3885 } |
| 3886 | 3886 |
| 3887 core.int buildCounterFloodlightConfigurationsListResponse = 0; | 3887 core.int buildCounterFloodlightConfigurationsListResponse = 0; |
| 3888 buildFloodlightConfigurationsListResponse() { | 3888 buildFloodlightConfigurationsListResponse() { |
| 3889 var o = new api.FloodlightConfigurationsListResponse(); | 3889 var o = new api.FloodlightConfigurationsListResponse(); |
| 3890 buildCounterFloodlightConfigurationsListResponse++; | 3890 buildCounterFloodlightConfigurationsListResponse++; |
| 3891 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3891 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 3892 o.floodlightConfigurations = buildUnnamed1383(); | 3892 o.floodlightConfigurations = buildUnnamed2019(); |
| 3893 o.kind = "foo"; | 3893 o.kind = "foo"; |
| 3894 } | 3894 } |
| 3895 buildCounterFloodlightConfigurationsListResponse--; | 3895 buildCounterFloodlightConfigurationsListResponse--; |
| 3896 return o; | 3896 return o; |
| 3897 } | 3897 } |
| 3898 | 3898 |
| 3899 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { | 3899 checkFloodlightConfigurationsListResponse(api.FloodlightConfigurationsListRespon
se o) { |
| 3900 buildCounterFloodlightConfigurationsListResponse++; | 3900 buildCounterFloodlightConfigurationsListResponse++; |
| 3901 if (buildCounterFloodlightConfigurationsListResponse < 3) { | 3901 if (buildCounterFloodlightConfigurationsListResponse < 3) { |
| 3902 checkUnnamed1383(o.floodlightConfigurations); | 3902 checkUnnamed2019(o.floodlightConfigurations); |
| 3903 unittest.expect(o.kind, unittest.equals('foo')); | 3903 unittest.expect(o.kind, unittest.equals('foo')); |
| 3904 } | 3904 } |
| 3905 buildCounterFloodlightConfigurationsListResponse--; | 3905 buildCounterFloodlightConfigurationsListResponse--; |
| 3906 } | 3906 } |
| 3907 | 3907 |
| 3908 buildUnnamed1384() { | 3908 buildUnnamed2020() { |
| 3909 var o = new core.List<api.Dimension>(); | 3909 var o = new core.List<api.Dimension>(); |
| 3910 o.add(buildDimension()); | 3910 o.add(buildDimension()); |
| 3911 o.add(buildDimension()); | 3911 o.add(buildDimension()); |
| 3912 return o; | 3912 return o; |
| 3913 } | 3913 } |
| 3914 | 3914 |
| 3915 checkUnnamed1384(core.List<api.Dimension> o) { | 3915 checkUnnamed2020(core.List<api.Dimension> o) { |
| 3916 unittest.expect(o, unittest.hasLength(2)); | 3916 unittest.expect(o, unittest.hasLength(2)); |
| 3917 checkDimension(o[0]); | 3917 checkDimension(o[0]); |
| 3918 checkDimension(o[1]); | 3918 checkDimension(o[1]); |
| 3919 } | 3919 } |
| 3920 | 3920 |
| 3921 buildUnnamed1385() { | 3921 buildUnnamed2021() { |
| 3922 var o = new core.List<api.Dimension>(); | 3922 var o = new core.List<api.Dimension>(); |
| 3923 o.add(buildDimension()); | 3923 o.add(buildDimension()); |
| 3924 o.add(buildDimension()); | 3924 o.add(buildDimension()); |
| 3925 return o; | 3925 return o; |
| 3926 } | 3926 } |
| 3927 | 3927 |
| 3928 checkUnnamed1385(core.List<api.Dimension> o) { | 3928 checkUnnamed2021(core.List<api.Dimension> o) { |
| 3929 unittest.expect(o, unittest.hasLength(2)); | 3929 unittest.expect(o, unittest.hasLength(2)); |
| 3930 checkDimension(o[0]); | 3930 checkDimension(o[0]); |
| 3931 checkDimension(o[1]); | 3931 checkDimension(o[1]); |
| 3932 } | 3932 } |
| 3933 | 3933 |
| 3934 buildUnnamed1386() { | 3934 buildUnnamed2022() { |
| 3935 var o = new core.List<api.Metric>(); | 3935 var o = new core.List<api.Metric>(); |
| 3936 o.add(buildMetric()); | 3936 o.add(buildMetric()); |
| 3937 o.add(buildMetric()); | 3937 o.add(buildMetric()); |
| 3938 return o; | 3938 return o; |
| 3939 } | 3939 } |
| 3940 | 3940 |
| 3941 checkUnnamed1386(core.List<api.Metric> o) { | 3941 checkUnnamed2022(core.List<api.Metric> o) { |
| 3942 unittest.expect(o, unittest.hasLength(2)); | 3942 unittest.expect(o, unittest.hasLength(2)); |
| 3943 checkMetric(o[0]); | 3943 checkMetric(o[0]); |
| 3944 checkMetric(o[1]); | 3944 checkMetric(o[1]); |
| 3945 } | 3945 } |
| 3946 | 3946 |
| 3947 core.int buildCounterFloodlightReportCompatibleFields = 0; | 3947 core.int buildCounterFloodlightReportCompatibleFields = 0; |
| 3948 buildFloodlightReportCompatibleFields() { | 3948 buildFloodlightReportCompatibleFields() { |
| 3949 var o = new api.FloodlightReportCompatibleFields(); | 3949 var o = new api.FloodlightReportCompatibleFields(); |
| 3950 buildCounterFloodlightReportCompatibleFields++; | 3950 buildCounterFloodlightReportCompatibleFields++; |
| 3951 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3951 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 3952 o.dimensionFilters = buildUnnamed1384(); | 3952 o.dimensionFilters = buildUnnamed2020(); |
| 3953 o.dimensions = buildUnnamed1385(); | 3953 o.dimensions = buildUnnamed2021(); |
| 3954 o.kind = "foo"; | 3954 o.kind = "foo"; |
| 3955 o.metrics = buildUnnamed1386(); | 3955 o.metrics = buildUnnamed2022(); |
| 3956 } | 3956 } |
| 3957 buildCounterFloodlightReportCompatibleFields--; | 3957 buildCounterFloodlightReportCompatibleFields--; |
| 3958 return o; | 3958 return o; |
| 3959 } | 3959 } |
| 3960 | 3960 |
| 3961 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { | 3961 checkFloodlightReportCompatibleFields(api.FloodlightReportCompatibleFields o) { |
| 3962 buildCounterFloodlightReportCompatibleFields++; | 3962 buildCounterFloodlightReportCompatibleFields++; |
| 3963 if (buildCounterFloodlightReportCompatibleFields < 3) { | 3963 if (buildCounterFloodlightReportCompatibleFields < 3) { |
| 3964 checkUnnamed1384(o.dimensionFilters); | 3964 checkUnnamed2020(o.dimensionFilters); |
| 3965 checkUnnamed1385(o.dimensions); | 3965 checkUnnamed2021(o.dimensions); |
| 3966 unittest.expect(o.kind, unittest.equals('foo')); | 3966 unittest.expect(o.kind, unittest.equals('foo')); |
| 3967 checkUnnamed1386(o.metrics); | 3967 checkUnnamed2022(o.metrics); |
| 3968 } | 3968 } |
| 3969 buildCounterFloodlightReportCompatibleFields--; | 3969 buildCounterFloodlightReportCompatibleFields--; |
| 3970 } | 3970 } |
| 3971 | 3971 |
| 3972 core.int buildCounterFrequencyCap = 0; | 3972 core.int buildCounterFrequencyCap = 0; |
| 3973 buildFrequencyCap() { | 3973 buildFrequencyCap() { |
| 3974 var o = new api.FrequencyCap(); | 3974 var o = new api.FrequencyCap(); |
| 3975 buildCounterFrequencyCap++; | 3975 buildCounterFrequencyCap++; |
| 3976 if (buildCounterFrequencyCap < 3) { | 3976 if (buildCounterFrequencyCap < 3) { |
| 3977 o.duration = "foo"; | 3977 o.duration = "foo"; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4010 if (buildCounterFsCommand < 3) { | 4010 if (buildCounterFsCommand < 3) { |
| 4011 unittest.expect(o.left, unittest.equals(42)); | 4011 unittest.expect(o.left, unittest.equals(42)); |
| 4012 unittest.expect(o.positionOption, unittest.equals('foo')); | 4012 unittest.expect(o.positionOption, unittest.equals('foo')); |
| 4013 unittest.expect(o.top, unittest.equals(42)); | 4013 unittest.expect(o.top, unittest.equals(42)); |
| 4014 unittest.expect(o.windowHeight, unittest.equals(42)); | 4014 unittest.expect(o.windowHeight, unittest.equals(42)); |
| 4015 unittest.expect(o.windowWidth, unittest.equals(42)); | 4015 unittest.expect(o.windowWidth, unittest.equals(42)); |
| 4016 } | 4016 } |
| 4017 buildCounterFsCommand--; | 4017 buildCounterFsCommand--; |
| 4018 } | 4018 } |
| 4019 | 4019 |
| 4020 buildUnnamed1387() { | 4020 buildUnnamed2023() { |
| 4021 var o = new core.List<api.City>(); | 4021 var o = new core.List<api.City>(); |
| 4022 o.add(buildCity()); | 4022 o.add(buildCity()); |
| 4023 o.add(buildCity()); | 4023 o.add(buildCity()); |
| 4024 return o; | 4024 return o; |
| 4025 } | 4025 } |
| 4026 | 4026 |
| 4027 checkUnnamed1387(core.List<api.City> o) { | 4027 checkUnnamed2023(core.List<api.City> o) { |
| 4028 unittest.expect(o, unittest.hasLength(2)); | 4028 unittest.expect(o, unittest.hasLength(2)); |
| 4029 checkCity(o[0]); | 4029 checkCity(o[0]); |
| 4030 checkCity(o[1]); | 4030 checkCity(o[1]); |
| 4031 } | 4031 } |
| 4032 | 4032 |
| 4033 buildUnnamed1388() { | 4033 buildUnnamed2024() { |
| 4034 var o = new core.List<api.Country>(); | 4034 var o = new core.List<api.Country>(); |
| 4035 o.add(buildCountry()); | 4035 o.add(buildCountry()); |
| 4036 o.add(buildCountry()); | 4036 o.add(buildCountry()); |
| 4037 return o; | 4037 return o; |
| 4038 } | 4038 } |
| 4039 | 4039 |
| 4040 checkUnnamed1388(core.List<api.Country> o) { | 4040 checkUnnamed2024(core.List<api.Country> o) { |
| 4041 unittest.expect(o, unittest.hasLength(2)); | 4041 unittest.expect(o, unittest.hasLength(2)); |
| 4042 checkCountry(o[0]); | 4042 checkCountry(o[0]); |
| 4043 checkCountry(o[1]); | 4043 checkCountry(o[1]); |
| 4044 } | 4044 } |
| 4045 | 4045 |
| 4046 buildUnnamed1389() { | 4046 buildUnnamed2025() { |
| 4047 var o = new core.List<api.Metro>(); | 4047 var o = new core.List<api.Metro>(); |
| 4048 o.add(buildMetro()); | 4048 o.add(buildMetro()); |
| 4049 o.add(buildMetro()); | 4049 o.add(buildMetro()); |
| 4050 return o; | 4050 return o; |
| 4051 } | 4051 } |
| 4052 | 4052 |
| 4053 checkUnnamed1389(core.List<api.Metro> o) { | 4053 checkUnnamed2025(core.List<api.Metro> o) { |
| 4054 unittest.expect(o, unittest.hasLength(2)); | 4054 unittest.expect(o, unittest.hasLength(2)); |
| 4055 checkMetro(o[0]); | 4055 checkMetro(o[0]); |
| 4056 checkMetro(o[1]); | 4056 checkMetro(o[1]); |
| 4057 } | 4057 } |
| 4058 | 4058 |
| 4059 buildUnnamed1390() { | 4059 buildUnnamed2026() { |
| 4060 var o = new core.List<api.PostalCode>(); | 4060 var o = new core.List<api.PostalCode>(); |
| 4061 o.add(buildPostalCode()); | 4061 o.add(buildPostalCode()); |
| 4062 o.add(buildPostalCode()); | 4062 o.add(buildPostalCode()); |
| 4063 return o; | 4063 return o; |
| 4064 } | 4064 } |
| 4065 | 4065 |
| 4066 checkUnnamed1390(core.List<api.PostalCode> o) { | 4066 checkUnnamed2026(core.List<api.PostalCode> o) { |
| 4067 unittest.expect(o, unittest.hasLength(2)); | 4067 unittest.expect(o, unittest.hasLength(2)); |
| 4068 checkPostalCode(o[0]); | 4068 checkPostalCode(o[0]); |
| 4069 checkPostalCode(o[1]); | 4069 checkPostalCode(o[1]); |
| 4070 } | 4070 } |
| 4071 | 4071 |
| 4072 buildUnnamed1391() { | 4072 buildUnnamed2027() { |
| 4073 var o = new core.List<api.Region>(); | 4073 var o = new core.List<api.Region>(); |
| 4074 o.add(buildRegion()); | 4074 o.add(buildRegion()); |
| 4075 o.add(buildRegion()); | 4075 o.add(buildRegion()); |
| 4076 return o; | 4076 return o; |
| 4077 } | 4077 } |
| 4078 | 4078 |
| 4079 checkUnnamed1391(core.List<api.Region> o) { | 4079 checkUnnamed2027(core.List<api.Region> o) { |
| 4080 unittest.expect(o, unittest.hasLength(2)); | 4080 unittest.expect(o, unittest.hasLength(2)); |
| 4081 checkRegion(o[0]); | 4081 checkRegion(o[0]); |
| 4082 checkRegion(o[1]); | 4082 checkRegion(o[1]); |
| 4083 } | 4083 } |
| 4084 | 4084 |
| 4085 core.int buildCounterGeoTargeting = 0; | 4085 core.int buildCounterGeoTargeting = 0; |
| 4086 buildGeoTargeting() { | 4086 buildGeoTargeting() { |
| 4087 var o = new api.GeoTargeting(); | 4087 var o = new api.GeoTargeting(); |
| 4088 buildCounterGeoTargeting++; | 4088 buildCounterGeoTargeting++; |
| 4089 if (buildCounterGeoTargeting < 3) { | 4089 if (buildCounterGeoTargeting < 3) { |
| 4090 o.cities = buildUnnamed1387(); | 4090 o.cities = buildUnnamed2023(); |
| 4091 o.countries = buildUnnamed1388(); | 4091 o.countries = buildUnnamed2024(); |
| 4092 o.excludeCountries = true; | 4092 o.excludeCountries = true; |
| 4093 o.metros = buildUnnamed1389(); | 4093 o.metros = buildUnnamed2025(); |
| 4094 o.postalCodes = buildUnnamed1390(); | 4094 o.postalCodes = buildUnnamed2026(); |
| 4095 o.regions = buildUnnamed1391(); | 4095 o.regions = buildUnnamed2027(); |
| 4096 } | 4096 } |
| 4097 buildCounterGeoTargeting--; | 4097 buildCounterGeoTargeting--; |
| 4098 return o; | 4098 return o; |
| 4099 } | 4099 } |
| 4100 | 4100 |
| 4101 checkGeoTargeting(api.GeoTargeting o) { | 4101 checkGeoTargeting(api.GeoTargeting o) { |
| 4102 buildCounterGeoTargeting++; | 4102 buildCounterGeoTargeting++; |
| 4103 if (buildCounterGeoTargeting < 3) { | 4103 if (buildCounterGeoTargeting < 3) { |
| 4104 checkUnnamed1387(o.cities); | 4104 checkUnnamed2023(o.cities); |
| 4105 checkUnnamed1388(o.countries); | 4105 checkUnnamed2024(o.countries); |
| 4106 unittest.expect(o.excludeCountries, unittest.isTrue); | 4106 unittest.expect(o.excludeCountries, unittest.isTrue); |
| 4107 checkUnnamed1389(o.metros); | 4107 checkUnnamed2025(o.metros); |
| 4108 checkUnnamed1390(o.postalCodes); | 4108 checkUnnamed2026(o.postalCodes); |
| 4109 checkUnnamed1391(o.regions); | 4109 checkUnnamed2027(o.regions); |
| 4110 } | 4110 } |
| 4111 buildCounterGeoTargeting--; | 4111 buildCounterGeoTargeting--; |
| 4112 } | 4112 } |
| 4113 | 4113 |
| 4114 buildUnnamed1392() { | 4114 buildUnnamed2028() { |
| 4115 var o = new core.List<api.AdSlot>(); | 4115 var o = new core.List<api.AdSlot>(); |
| 4116 o.add(buildAdSlot()); | 4116 o.add(buildAdSlot()); |
| 4117 o.add(buildAdSlot()); | 4117 o.add(buildAdSlot()); |
| 4118 return o; | 4118 return o; |
| 4119 } | 4119 } |
| 4120 | 4120 |
| 4121 checkUnnamed1392(core.List<api.AdSlot> o) { | 4121 checkUnnamed2028(core.List<api.AdSlot> o) { |
| 4122 unittest.expect(o, unittest.hasLength(2)); | 4122 unittest.expect(o, unittest.hasLength(2)); |
| 4123 checkAdSlot(o[0]); | 4123 checkAdSlot(o[0]); |
| 4124 checkAdSlot(o[1]); | 4124 checkAdSlot(o[1]); |
| 4125 } | 4125 } |
| 4126 | 4126 |
| 4127 core.int buildCounterInventoryItem = 0; | 4127 core.int buildCounterInventoryItem = 0; |
| 4128 buildInventoryItem() { | 4128 buildInventoryItem() { |
| 4129 var o = new api.InventoryItem(); | 4129 var o = new api.InventoryItem(); |
| 4130 buildCounterInventoryItem++; | 4130 buildCounterInventoryItem++; |
| 4131 if (buildCounterInventoryItem < 3) { | 4131 if (buildCounterInventoryItem < 3) { |
| 4132 o.accountId = "foo"; | 4132 o.accountId = "foo"; |
| 4133 o.adSlots = buildUnnamed1392(); | 4133 o.adSlots = buildUnnamed2028(); |
| 4134 o.advertiserId = "foo"; | 4134 o.advertiserId = "foo"; |
| 4135 o.contentCategoryId = "foo"; | 4135 o.contentCategoryId = "foo"; |
| 4136 o.estimatedClickThroughRate = "foo"; | 4136 o.estimatedClickThroughRate = "foo"; |
| 4137 o.estimatedConversionRate = "foo"; | 4137 o.estimatedConversionRate = "foo"; |
| 4138 o.id = "foo"; | 4138 o.id = "foo"; |
| 4139 o.inPlan = true; | 4139 o.inPlan = true; |
| 4140 o.kind = "foo"; | 4140 o.kind = "foo"; |
| 4141 o.lastModifiedInfo = buildLastModifiedInfo(); | 4141 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4142 o.name = "foo"; | 4142 o.name = "foo"; |
| 4143 o.negotiationChannelId = "foo"; | 4143 o.negotiationChannelId = "foo"; |
| 4144 o.orderId = "foo"; | 4144 o.orderId = "foo"; |
| 4145 o.placementStrategyId = "foo"; | 4145 o.placementStrategyId = "foo"; |
| 4146 o.pricing = buildPricing(); | 4146 o.pricing = buildPricing(); |
| 4147 o.projectId = "foo"; | 4147 o.projectId = "foo"; |
| 4148 o.rfpId = "foo"; | 4148 o.rfpId = "foo"; |
| 4149 o.siteId = "foo"; | 4149 o.siteId = "foo"; |
| 4150 o.subaccountId = "foo"; | 4150 o.subaccountId = "foo"; |
| 4151 } | 4151 } |
| 4152 buildCounterInventoryItem--; | 4152 buildCounterInventoryItem--; |
| 4153 return o; | 4153 return o; |
| 4154 } | 4154 } |
| 4155 | 4155 |
| 4156 checkInventoryItem(api.InventoryItem o) { | 4156 checkInventoryItem(api.InventoryItem o) { |
| 4157 buildCounterInventoryItem++; | 4157 buildCounterInventoryItem++; |
| 4158 if (buildCounterInventoryItem < 3) { | 4158 if (buildCounterInventoryItem < 3) { |
| 4159 unittest.expect(o.accountId, unittest.equals('foo')); | 4159 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4160 checkUnnamed1392(o.adSlots); | 4160 checkUnnamed2028(o.adSlots); |
| 4161 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4161 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4162 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 4162 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 4163 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); | 4163 unittest.expect(o.estimatedClickThroughRate, unittest.equals('foo')); |
| 4164 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); | 4164 unittest.expect(o.estimatedConversionRate, unittest.equals('foo')); |
| 4165 unittest.expect(o.id, unittest.equals('foo')); | 4165 unittest.expect(o.id, unittest.equals('foo')); |
| 4166 unittest.expect(o.inPlan, unittest.isTrue); | 4166 unittest.expect(o.inPlan, unittest.isTrue); |
| 4167 unittest.expect(o.kind, unittest.equals('foo')); | 4167 unittest.expect(o.kind, unittest.equals('foo')); |
| 4168 checkLastModifiedInfo(o.lastModifiedInfo); | 4168 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4169 unittest.expect(o.name, unittest.equals('foo')); | 4169 unittest.expect(o.name, unittest.equals('foo')); |
| 4170 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); | 4170 unittest.expect(o.negotiationChannelId, unittest.equals('foo')); |
| 4171 unittest.expect(o.orderId, unittest.equals('foo')); | 4171 unittest.expect(o.orderId, unittest.equals('foo')); |
| 4172 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 4172 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 4173 checkPricing(o.pricing); | 4173 checkPricing(o.pricing); |
| 4174 unittest.expect(o.projectId, unittest.equals('foo')); | 4174 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4175 unittest.expect(o.rfpId, unittest.equals('foo')); | 4175 unittest.expect(o.rfpId, unittest.equals('foo')); |
| 4176 unittest.expect(o.siteId, unittest.equals('foo')); | 4176 unittest.expect(o.siteId, unittest.equals('foo')); |
| 4177 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4177 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4178 } | 4178 } |
| 4179 buildCounterInventoryItem--; | 4179 buildCounterInventoryItem--; |
| 4180 } | 4180 } |
| 4181 | 4181 |
| 4182 buildUnnamed1393() { | 4182 buildUnnamed2029() { |
| 4183 var o = new core.List<api.InventoryItem>(); | 4183 var o = new core.List<api.InventoryItem>(); |
| 4184 o.add(buildInventoryItem()); | 4184 o.add(buildInventoryItem()); |
| 4185 o.add(buildInventoryItem()); | 4185 o.add(buildInventoryItem()); |
| 4186 return o; | 4186 return o; |
| 4187 } | 4187 } |
| 4188 | 4188 |
| 4189 checkUnnamed1393(core.List<api.InventoryItem> o) { | 4189 checkUnnamed2029(core.List<api.InventoryItem> o) { |
| 4190 unittest.expect(o, unittest.hasLength(2)); | 4190 unittest.expect(o, unittest.hasLength(2)); |
| 4191 checkInventoryItem(o[0]); | 4191 checkInventoryItem(o[0]); |
| 4192 checkInventoryItem(o[1]); | 4192 checkInventoryItem(o[1]); |
| 4193 } | 4193 } |
| 4194 | 4194 |
| 4195 core.int buildCounterInventoryItemsListResponse = 0; | 4195 core.int buildCounterInventoryItemsListResponse = 0; |
| 4196 buildInventoryItemsListResponse() { | 4196 buildInventoryItemsListResponse() { |
| 4197 var o = new api.InventoryItemsListResponse(); | 4197 var o = new api.InventoryItemsListResponse(); |
| 4198 buildCounterInventoryItemsListResponse++; | 4198 buildCounterInventoryItemsListResponse++; |
| 4199 if (buildCounterInventoryItemsListResponse < 3) { | 4199 if (buildCounterInventoryItemsListResponse < 3) { |
| 4200 o.inventoryItems = buildUnnamed1393(); | 4200 o.inventoryItems = buildUnnamed2029(); |
| 4201 o.kind = "foo"; | 4201 o.kind = "foo"; |
| 4202 o.nextPageToken = "foo"; | 4202 o.nextPageToken = "foo"; |
| 4203 } | 4203 } |
| 4204 buildCounterInventoryItemsListResponse--; | 4204 buildCounterInventoryItemsListResponse--; |
| 4205 return o; | 4205 return o; |
| 4206 } | 4206 } |
| 4207 | 4207 |
| 4208 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { | 4208 checkInventoryItemsListResponse(api.InventoryItemsListResponse o) { |
| 4209 buildCounterInventoryItemsListResponse++; | 4209 buildCounterInventoryItemsListResponse++; |
| 4210 if (buildCounterInventoryItemsListResponse < 3) { | 4210 if (buildCounterInventoryItemsListResponse < 3) { |
| 4211 checkUnnamed1393(o.inventoryItems); | 4211 checkUnnamed2029(o.inventoryItems); |
| 4212 unittest.expect(o.kind, unittest.equals('foo')); | 4212 unittest.expect(o.kind, unittest.equals('foo')); |
| 4213 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 4213 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 4214 } | 4214 } |
| 4215 buildCounterInventoryItemsListResponse--; | 4215 buildCounterInventoryItemsListResponse--; |
| 4216 } | 4216 } |
| 4217 | 4217 |
| 4218 core.int buildCounterKeyValueTargetingExpression = 0; | 4218 core.int buildCounterKeyValueTargetingExpression = 0; |
| 4219 buildKeyValueTargetingExpression() { | 4219 buildKeyValueTargetingExpression() { |
| 4220 var o = new api.KeyValueTargetingExpression(); | 4220 var o = new api.KeyValueTargetingExpression(); |
| 4221 buildCounterKeyValueTargetingExpression++; | 4221 buildCounterKeyValueTargetingExpression++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4254 if (buildCounterLandingPage < 3) { | 4254 if (buildCounterLandingPage < 3) { |
| 4255 unittest.expect(o.default_, unittest.isTrue); | 4255 unittest.expect(o.default_, unittest.isTrue); |
| 4256 unittest.expect(o.id, unittest.equals('foo')); | 4256 unittest.expect(o.id, unittest.equals('foo')); |
| 4257 unittest.expect(o.kind, unittest.equals('foo')); | 4257 unittest.expect(o.kind, unittest.equals('foo')); |
| 4258 unittest.expect(o.name, unittest.equals('foo')); | 4258 unittest.expect(o.name, unittest.equals('foo')); |
| 4259 unittest.expect(o.url, unittest.equals('foo')); | 4259 unittest.expect(o.url, unittest.equals('foo')); |
| 4260 } | 4260 } |
| 4261 buildCounterLandingPage--; | 4261 buildCounterLandingPage--; |
| 4262 } | 4262 } |
| 4263 | 4263 |
| 4264 buildUnnamed1394() { | 4264 buildUnnamed2030() { |
| 4265 var o = new core.List<api.LandingPage>(); | 4265 var o = new core.List<api.LandingPage>(); |
| 4266 o.add(buildLandingPage()); | 4266 o.add(buildLandingPage()); |
| 4267 o.add(buildLandingPage()); | 4267 o.add(buildLandingPage()); |
| 4268 return o; | 4268 return o; |
| 4269 } | 4269 } |
| 4270 | 4270 |
| 4271 checkUnnamed1394(core.List<api.LandingPage> o) { | 4271 checkUnnamed2030(core.List<api.LandingPage> o) { |
| 4272 unittest.expect(o, unittest.hasLength(2)); | 4272 unittest.expect(o, unittest.hasLength(2)); |
| 4273 checkLandingPage(o[0]); | 4273 checkLandingPage(o[0]); |
| 4274 checkLandingPage(o[1]); | 4274 checkLandingPage(o[1]); |
| 4275 } | 4275 } |
| 4276 | 4276 |
| 4277 core.int buildCounterLandingPagesListResponse = 0; | 4277 core.int buildCounterLandingPagesListResponse = 0; |
| 4278 buildLandingPagesListResponse() { | 4278 buildLandingPagesListResponse() { |
| 4279 var o = new api.LandingPagesListResponse(); | 4279 var o = new api.LandingPagesListResponse(); |
| 4280 buildCounterLandingPagesListResponse++; | 4280 buildCounterLandingPagesListResponse++; |
| 4281 if (buildCounterLandingPagesListResponse < 3) { | 4281 if (buildCounterLandingPagesListResponse < 3) { |
| 4282 o.kind = "foo"; | 4282 o.kind = "foo"; |
| 4283 o.landingPages = buildUnnamed1394(); | 4283 o.landingPages = buildUnnamed2030(); |
| 4284 } | 4284 } |
| 4285 buildCounterLandingPagesListResponse--; | 4285 buildCounterLandingPagesListResponse--; |
| 4286 return o; | 4286 return o; |
| 4287 } | 4287 } |
| 4288 | 4288 |
| 4289 checkLandingPagesListResponse(api.LandingPagesListResponse o) { | 4289 checkLandingPagesListResponse(api.LandingPagesListResponse o) { |
| 4290 buildCounterLandingPagesListResponse++; | 4290 buildCounterLandingPagesListResponse++; |
| 4291 if (buildCounterLandingPagesListResponse < 3) { | 4291 if (buildCounterLandingPagesListResponse < 3) { |
| 4292 unittest.expect(o.kind, unittest.equals('foo')); | 4292 unittest.expect(o.kind, unittest.equals('foo')); |
| 4293 checkUnnamed1394(o.landingPages); | 4293 checkUnnamed2030(o.landingPages); |
| 4294 } | 4294 } |
| 4295 buildCounterLandingPagesListResponse--; | 4295 buildCounterLandingPagesListResponse--; |
| 4296 } | 4296 } |
| 4297 | 4297 |
| 4298 core.int buildCounterLastModifiedInfo = 0; | 4298 core.int buildCounterLastModifiedInfo = 0; |
| 4299 buildLastModifiedInfo() { | 4299 buildLastModifiedInfo() { |
| 4300 var o = new api.LastModifiedInfo(); | 4300 var o = new api.LastModifiedInfo(); |
| 4301 buildCounterLastModifiedInfo++; | 4301 buildCounterLastModifiedInfo++; |
| 4302 if (buildCounterLastModifiedInfo < 3) { | 4302 if (buildCounterLastModifiedInfo < 3) { |
| 4303 o.time = "foo"; | 4303 o.time = "foo"; |
| 4304 } | 4304 } |
| 4305 buildCounterLastModifiedInfo--; | 4305 buildCounterLastModifiedInfo--; |
| 4306 return o; | 4306 return o; |
| 4307 } | 4307 } |
| 4308 | 4308 |
| 4309 checkLastModifiedInfo(api.LastModifiedInfo o) { | 4309 checkLastModifiedInfo(api.LastModifiedInfo o) { |
| 4310 buildCounterLastModifiedInfo++; | 4310 buildCounterLastModifiedInfo++; |
| 4311 if (buildCounterLastModifiedInfo < 3) { | 4311 if (buildCounterLastModifiedInfo < 3) { |
| 4312 unittest.expect(o.time, unittest.equals('foo')); | 4312 unittest.expect(o.time, unittest.equals('foo')); |
| 4313 } | 4313 } |
| 4314 buildCounterLastModifiedInfo--; | 4314 buildCounterLastModifiedInfo--; |
| 4315 } | 4315 } |
| 4316 | 4316 |
| 4317 buildUnnamed1395() { | 4317 buildUnnamed2031() { |
| 4318 var o = new core.List<api.ListPopulationTerm>(); | 4318 var o = new core.List<api.ListPopulationTerm>(); |
| 4319 o.add(buildListPopulationTerm()); | 4319 o.add(buildListPopulationTerm()); |
| 4320 o.add(buildListPopulationTerm()); | 4320 o.add(buildListPopulationTerm()); |
| 4321 return o; | 4321 return o; |
| 4322 } | 4322 } |
| 4323 | 4323 |
| 4324 checkUnnamed1395(core.List<api.ListPopulationTerm> o) { | 4324 checkUnnamed2031(core.List<api.ListPopulationTerm> o) { |
| 4325 unittest.expect(o, unittest.hasLength(2)); | 4325 unittest.expect(o, unittest.hasLength(2)); |
| 4326 checkListPopulationTerm(o[0]); | 4326 checkListPopulationTerm(o[0]); |
| 4327 checkListPopulationTerm(o[1]); | 4327 checkListPopulationTerm(o[1]); |
| 4328 } | 4328 } |
| 4329 | 4329 |
| 4330 core.int buildCounterListPopulationClause = 0; | 4330 core.int buildCounterListPopulationClause = 0; |
| 4331 buildListPopulationClause() { | 4331 buildListPopulationClause() { |
| 4332 var o = new api.ListPopulationClause(); | 4332 var o = new api.ListPopulationClause(); |
| 4333 buildCounterListPopulationClause++; | 4333 buildCounterListPopulationClause++; |
| 4334 if (buildCounterListPopulationClause < 3) { | 4334 if (buildCounterListPopulationClause < 3) { |
| 4335 o.terms = buildUnnamed1395(); | 4335 o.terms = buildUnnamed2031(); |
| 4336 } | 4336 } |
| 4337 buildCounterListPopulationClause--; | 4337 buildCounterListPopulationClause--; |
| 4338 return o; | 4338 return o; |
| 4339 } | 4339 } |
| 4340 | 4340 |
| 4341 checkListPopulationClause(api.ListPopulationClause o) { | 4341 checkListPopulationClause(api.ListPopulationClause o) { |
| 4342 buildCounterListPopulationClause++; | 4342 buildCounterListPopulationClause++; |
| 4343 if (buildCounterListPopulationClause < 3) { | 4343 if (buildCounterListPopulationClause < 3) { |
| 4344 checkUnnamed1395(o.terms); | 4344 checkUnnamed2031(o.terms); |
| 4345 } | 4345 } |
| 4346 buildCounterListPopulationClause--; | 4346 buildCounterListPopulationClause--; |
| 4347 } | 4347 } |
| 4348 | 4348 |
| 4349 buildUnnamed1396() { | 4349 buildUnnamed2032() { |
| 4350 var o = new core.List<api.ListPopulationClause>(); | 4350 var o = new core.List<api.ListPopulationClause>(); |
| 4351 o.add(buildListPopulationClause()); | 4351 o.add(buildListPopulationClause()); |
| 4352 o.add(buildListPopulationClause()); | 4352 o.add(buildListPopulationClause()); |
| 4353 return o; | 4353 return o; |
| 4354 } | 4354 } |
| 4355 | 4355 |
| 4356 checkUnnamed1396(core.List<api.ListPopulationClause> o) { | 4356 checkUnnamed2032(core.List<api.ListPopulationClause> o) { |
| 4357 unittest.expect(o, unittest.hasLength(2)); | 4357 unittest.expect(o, unittest.hasLength(2)); |
| 4358 checkListPopulationClause(o[0]); | 4358 checkListPopulationClause(o[0]); |
| 4359 checkListPopulationClause(o[1]); | 4359 checkListPopulationClause(o[1]); |
| 4360 } | 4360 } |
| 4361 | 4361 |
| 4362 core.int buildCounterListPopulationRule = 0; | 4362 core.int buildCounterListPopulationRule = 0; |
| 4363 buildListPopulationRule() { | 4363 buildListPopulationRule() { |
| 4364 var o = new api.ListPopulationRule(); | 4364 var o = new api.ListPopulationRule(); |
| 4365 buildCounterListPopulationRule++; | 4365 buildCounterListPopulationRule++; |
| 4366 if (buildCounterListPopulationRule < 3) { | 4366 if (buildCounterListPopulationRule < 3) { |
| 4367 o.floodlightActivityId = "foo"; | 4367 o.floodlightActivityId = "foo"; |
| 4368 o.floodlightActivityName = "foo"; | 4368 o.floodlightActivityName = "foo"; |
| 4369 o.listPopulationClauses = buildUnnamed1396(); | 4369 o.listPopulationClauses = buildUnnamed2032(); |
| 4370 } | 4370 } |
| 4371 buildCounterListPopulationRule--; | 4371 buildCounterListPopulationRule--; |
| 4372 return o; | 4372 return o; |
| 4373 } | 4373 } |
| 4374 | 4374 |
| 4375 checkListPopulationRule(api.ListPopulationRule o) { | 4375 checkListPopulationRule(api.ListPopulationRule o) { |
| 4376 buildCounterListPopulationRule++; | 4376 buildCounterListPopulationRule++; |
| 4377 if (buildCounterListPopulationRule < 3) { | 4377 if (buildCounterListPopulationRule < 3) { |
| 4378 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4378 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4379 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); | 4379 unittest.expect(o.floodlightActivityName, unittest.equals('foo')); |
| 4380 checkUnnamed1396(o.listPopulationClauses); | 4380 checkUnnamed2032(o.listPopulationClauses); |
| 4381 } | 4381 } |
| 4382 buildCounterListPopulationRule--; | 4382 buildCounterListPopulationRule--; |
| 4383 } | 4383 } |
| 4384 | 4384 |
| 4385 core.int buildCounterListPopulationTerm = 0; | 4385 core.int buildCounterListPopulationTerm = 0; |
| 4386 buildListPopulationTerm() { | 4386 buildListPopulationTerm() { |
| 4387 var o = new api.ListPopulationTerm(); | 4387 var o = new api.ListPopulationTerm(); |
| 4388 buildCounterListPopulationTerm++; | 4388 buildCounterListPopulationTerm++; |
| 4389 if (buildCounterListPopulationTerm < 3) { | 4389 if (buildCounterListPopulationTerm < 3) { |
| 4390 o.contains = true; | 4390 o.contains = true; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4500 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4500 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4501 unittest.expect(o.dartId, unittest.equals('foo')); | 4501 unittest.expect(o.dartId, unittest.equals('foo')); |
| 4502 unittest.expect(o.dmaId, unittest.equals('foo')); | 4502 unittest.expect(o.dmaId, unittest.equals('foo')); |
| 4503 unittest.expect(o.kind, unittest.equals('foo')); | 4503 unittest.expect(o.kind, unittest.equals('foo')); |
| 4504 unittest.expect(o.metroCode, unittest.equals('foo')); | 4504 unittest.expect(o.metroCode, unittest.equals('foo')); |
| 4505 unittest.expect(o.name, unittest.equals('foo')); | 4505 unittest.expect(o.name, unittest.equals('foo')); |
| 4506 } | 4506 } |
| 4507 buildCounterMetro--; | 4507 buildCounterMetro--; |
| 4508 } | 4508 } |
| 4509 | 4509 |
| 4510 buildUnnamed1397() { | 4510 buildUnnamed2033() { |
| 4511 var o = new core.List<api.Metro>(); | 4511 var o = new core.List<api.Metro>(); |
| 4512 o.add(buildMetro()); | 4512 o.add(buildMetro()); |
| 4513 o.add(buildMetro()); | 4513 o.add(buildMetro()); |
| 4514 return o; | 4514 return o; |
| 4515 } | 4515 } |
| 4516 | 4516 |
| 4517 checkUnnamed1397(core.List<api.Metro> o) { | 4517 checkUnnamed2033(core.List<api.Metro> o) { |
| 4518 unittest.expect(o, unittest.hasLength(2)); | 4518 unittest.expect(o, unittest.hasLength(2)); |
| 4519 checkMetro(o[0]); | 4519 checkMetro(o[0]); |
| 4520 checkMetro(o[1]); | 4520 checkMetro(o[1]); |
| 4521 } | 4521 } |
| 4522 | 4522 |
| 4523 core.int buildCounterMetrosListResponse = 0; | 4523 core.int buildCounterMetrosListResponse = 0; |
| 4524 buildMetrosListResponse() { | 4524 buildMetrosListResponse() { |
| 4525 var o = new api.MetrosListResponse(); | 4525 var o = new api.MetrosListResponse(); |
| 4526 buildCounterMetrosListResponse++; | 4526 buildCounterMetrosListResponse++; |
| 4527 if (buildCounterMetrosListResponse < 3) { | 4527 if (buildCounterMetrosListResponse < 3) { |
| 4528 o.kind = "foo"; | 4528 o.kind = "foo"; |
| 4529 o.metros = buildUnnamed1397(); | 4529 o.metros = buildUnnamed2033(); |
| 4530 } | 4530 } |
| 4531 buildCounterMetrosListResponse--; | 4531 buildCounterMetrosListResponse--; |
| 4532 return o; | 4532 return o; |
| 4533 } | 4533 } |
| 4534 | 4534 |
| 4535 checkMetrosListResponse(api.MetrosListResponse o) { | 4535 checkMetrosListResponse(api.MetrosListResponse o) { |
| 4536 buildCounterMetrosListResponse++; | 4536 buildCounterMetrosListResponse++; |
| 4537 if (buildCounterMetrosListResponse < 3) { | 4537 if (buildCounterMetrosListResponse < 3) { |
| 4538 unittest.expect(o.kind, unittest.equals('foo')); | 4538 unittest.expect(o.kind, unittest.equals('foo')); |
| 4539 checkUnnamed1397(o.metros); | 4539 checkUnnamed2033(o.metros); |
| 4540 } | 4540 } |
| 4541 buildCounterMetrosListResponse--; | 4541 buildCounterMetrosListResponse--; |
| 4542 } | 4542 } |
| 4543 | 4543 |
| 4544 core.int buildCounterMobileCarrier = 0; | 4544 core.int buildCounterMobileCarrier = 0; |
| 4545 buildMobileCarrier() { | 4545 buildMobileCarrier() { |
| 4546 var o = new api.MobileCarrier(); | 4546 var o = new api.MobileCarrier(); |
| 4547 buildCounterMobileCarrier++; | 4547 buildCounterMobileCarrier++; |
| 4548 if (buildCounterMobileCarrier < 3) { | 4548 if (buildCounterMobileCarrier < 3) { |
| 4549 o.countryCode = "foo"; | 4549 o.countryCode = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4561 if (buildCounterMobileCarrier < 3) { | 4561 if (buildCounterMobileCarrier < 3) { |
| 4562 unittest.expect(o.countryCode, unittest.equals('foo')); | 4562 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 4563 unittest.expect(o.countryDartId, unittest.equals('foo')); | 4563 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 4564 unittest.expect(o.id, unittest.equals('foo')); | 4564 unittest.expect(o.id, unittest.equals('foo')); |
| 4565 unittest.expect(o.kind, unittest.equals('foo')); | 4565 unittest.expect(o.kind, unittest.equals('foo')); |
| 4566 unittest.expect(o.name, unittest.equals('foo')); | 4566 unittest.expect(o.name, unittest.equals('foo')); |
| 4567 } | 4567 } |
| 4568 buildCounterMobileCarrier--; | 4568 buildCounterMobileCarrier--; |
| 4569 } | 4569 } |
| 4570 | 4570 |
| 4571 buildUnnamed1398() { | 4571 buildUnnamed2034() { |
| 4572 var o = new core.List<api.MobileCarrier>(); | 4572 var o = new core.List<api.MobileCarrier>(); |
| 4573 o.add(buildMobileCarrier()); | 4573 o.add(buildMobileCarrier()); |
| 4574 o.add(buildMobileCarrier()); | 4574 o.add(buildMobileCarrier()); |
| 4575 return o; | 4575 return o; |
| 4576 } | 4576 } |
| 4577 | 4577 |
| 4578 checkUnnamed1398(core.List<api.MobileCarrier> o) { | 4578 checkUnnamed2034(core.List<api.MobileCarrier> o) { |
| 4579 unittest.expect(o, unittest.hasLength(2)); | 4579 unittest.expect(o, unittest.hasLength(2)); |
| 4580 checkMobileCarrier(o[0]); | 4580 checkMobileCarrier(o[0]); |
| 4581 checkMobileCarrier(o[1]); | 4581 checkMobileCarrier(o[1]); |
| 4582 } | 4582 } |
| 4583 | 4583 |
| 4584 core.int buildCounterMobileCarriersListResponse = 0; | 4584 core.int buildCounterMobileCarriersListResponse = 0; |
| 4585 buildMobileCarriersListResponse() { | 4585 buildMobileCarriersListResponse() { |
| 4586 var o = new api.MobileCarriersListResponse(); | 4586 var o = new api.MobileCarriersListResponse(); |
| 4587 buildCounterMobileCarriersListResponse++; | 4587 buildCounterMobileCarriersListResponse++; |
| 4588 if (buildCounterMobileCarriersListResponse < 3) { | 4588 if (buildCounterMobileCarriersListResponse < 3) { |
| 4589 o.kind = "foo"; | 4589 o.kind = "foo"; |
| 4590 o.mobileCarriers = buildUnnamed1398(); | 4590 o.mobileCarriers = buildUnnamed2034(); |
| 4591 } | 4591 } |
| 4592 buildCounterMobileCarriersListResponse--; | 4592 buildCounterMobileCarriersListResponse--; |
| 4593 return o; | 4593 return o; |
| 4594 } | 4594 } |
| 4595 | 4595 |
| 4596 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { | 4596 checkMobileCarriersListResponse(api.MobileCarriersListResponse o) { |
| 4597 buildCounterMobileCarriersListResponse++; | 4597 buildCounterMobileCarriersListResponse++; |
| 4598 if (buildCounterMobileCarriersListResponse < 3) { | 4598 if (buildCounterMobileCarriersListResponse < 3) { |
| 4599 unittest.expect(o.kind, unittest.equals('foo')); | 4599 unittest.expect(o.kind, unittest.equals('foo')); |
| 4600 checkUnnamed1398(o.mobileCarriers); | 4600 checkUnnamed2034(o.mobileCarriers); |
| 4601 } | 4601 } |
| 4602 buildCounterMobileCarriersListResponse--; | 4602 buildCounterMobileCarriersListResponse--; |
| 4603 } | 4603 } |
| 4604 | 4604 |
| 4605 buildUnnamed1399() { | 4605 buildUnnamed2035() { |
| 4606 var o = new core.List<core.String>(); | 4606 var o = new core.List<core.String>(); |
| 4607 o.add("foo"); | 4607 o.add("foo"); |
| 4608 o.add("foo"); | 4608 o.add("foo"); |
| 4609 return o; | 4609 return o; |
| 4610 } | 4610 } |
| 4611 | 4611 |
| 4612 checkUnnamed1399(core.List<core.String> o) { | 4612 checkUnnamed2035(core.List<core.String> o) { |
| 4613 unittest.expect(o, unittest.hasLength(2)); | 4613 unittest.expect(o, unittest.hasLength(2)); |
| 4614 unittest.expect(o[0], unittest.equals('foo')); | 4614 unittest.expect(o[0], unittest.equals('foo')); |
| 4615 unittest.expect(o[1], unittest.equals('foo')); | 4615 unittest.expect(o[1], unittest.equals('foo')); |
| 4616 } | 4616 } |
| 4617 | 4617 |
| 4618 core.int buildCounterObjectFilter = 0; | 4618 core.int buildCounterObjectFilter = 0; |
| 4619 buildObjectFilter() { | 4619 buildObjectFilter() { |
| 4620 var o = new api.ObjectFilter(); | 4620 var o = new api.ObjectFilter(); |
| 4621 buildCounterObjectFilter++; | 4621 buildCounterObjectFilter++; |
| 4622 if (buildCounterObjectFilter < 3) { | 4622 if (buildCounterObjectFilter < 3) { |
| 4623 o.kind = "foo"; | 4623 o.kind = "foo"; |
| 4624 o.objectIds = buildUnnamed1399(); | 4624 o.objectIds = buildUnnamed2035(); |
| 4625 o.status = "foo"; | 4625 o.status = "foo"; |
| 4626 } | 4626 } |
| 4627 buildCounterObjectFilter--; | 4627 buildCounterObjectFilter--; |
| 4628 return o; | 4628 return o; |
| 4629 } | 4629 } |
| 4630 | 4630 |
| 4631 checkObjectFilter(api.ObjectFilter o) { | 4631 checkObjectFilter(api.ObjectFilter o) { |
| 4632 buildCounterObjectFilter++; | 4632 buildCounterObjectFilter++; |
| 4633 if (buildCounterObjectFilter < 3) { | 4633 if (buildCounterObjectFilter < 3) { |
| 4634 unittest.expect(o.kind, unittest.equals('foo')); | 4634 unittest.expect(o.kind, unittest.equals('foo')); |
| 4635 checkUnnamed1399(o.objectIds); | 4635 checkUnnamed2035(o.objectIds); |
| 4636 unittest.expect(o.status, unittest.equals('foo')); | 4636 unittest.expect(o.status, unittest.equals('foo')); |
| 4637 } | 4637 } |
| 4638 buildCounterObjectFilter--; | 4638 buildCounterObjectFilter--; |
| 4639 } | 4639 } |
| 4640 | 4640 |
| 4641 core.int buildCounterOffsetPosition = 0; | 4641 core.int buildCounterOffsetPosition = 0; |
| 4642 buildOffsetPosition() { | 4642 buildOffsetPosition() { |
| 4643 var o = new api.OffsetPosition(); | 4643 var o = new api.OffsetPosition(); |
| 4644 buildCounterOffsetPosition++; | 4644 buildCounterOffsetPosition++; |
| 4645 if (buildCounterOffsetPosition < 3) { | 4645 if (buildCounterOffsetPosition < 3) { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4729 unittest.expect(o.id, unittest.equals('foo')); | 4729 unittest.expect(o.id, unittest.equals('foo')); |
| 4730 unittest.expect(o.kind, unittest.equals('foo')); | 4730 unittest.expect(o.kind, unittest.equals('foo')); |
| 4731 unittest.expect(o.majorVersion, unittest.equals('foo')); | 4731 unittest.expect(o.majorVersion, unittest.equals('foo')); |
| 4732 unittest.expect(o.minorVersion, unittest.equals('foo')); | 4732 unittest.expect(o.minorVersion, unittest.equals('foo')); |
| 4733 unittest.expect(o.name, unittest.equals('foo')); | 4733 unittest.expect(o.name, unittest.equals('foo')); |
| 4734 checkOperatingSystem(o.operatingSystem); | 4734 checkOperatingSystem(o.operatingSystem); |
| 4735 } | 4735 } |
| 4736 buildCounterOperatingSystemVersion--; | 4736 buildCounterOperatingSystemVersion--; |
| 4737 } | 4737 } |
| 4738 | 4738 |
| 4739 buildUnnamed1400() { | 4739 buildUnnamed2036() { |
| 4740 var o = new core.List<api.OperatingSystemVersion>(); | 4740 var o = new core.List<api.OperatingSystemVersion>(); |
| 4741 o.add(buildOperatingSystemVersion()); | 4741 o.add(buildOperatingSystemVersion()); |
| 4742 o.add(buildOperatingSystemVersion()); | 4742 o.add(buildOperatingSystemVersion()); |
| 4743 return o; | 4743 return o; |
| 4744 } | 4744 } |
| 4745 | 4745 |
| 4746 checkUnnamed1400(core.List<api.OperatingSystemVersion> o) { | 4746 checkUnnamed2036(core.List<api.OperatingSystemVersion> o) { |
| 4747 unittest.expect(o, unittest.hasLength(2)); | 4747 unittest.expect(o, unittest.hasLength(2)); |
| 4748 checkOperatingSystemVersion(o[0]); | 4748 checkOperatingSystemVersion(o[0]); |
| 4749 checkOperatingSystemVersion(o[1]); | 4749 checkOperatingSystemVersion(o[1]); |
| 4750 } | 4750 } |
| 4751 | 4751 |
| 4752 core.int buildCounterOperatingSystemVersionsListResponse = 0; | 4752 core.int buildCounterOperatingSystemVersionsListResponse = 0; |
| 4753 buildOperatingSystemVersionsListResponse() { | 4753 buildOperatingSystemVersionsListResponse() { |
| 4754 var o = new api.OperatingSystemVersionsListResponse(); | 4754 var o = new api.OperatingSystemVersionsListResponse(); |
| 4755 buildCounterOperatingSystemVersionsListResponse++; | 4755 buildCounterOperatingSystemVersionsListResponse++; |
| 4756 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4756 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 4757 o.kind = "foo"; | 4757 o.kind = "foo"; |
| 4758 o.operatingSystemVersions = buildUnnamed1400(); | 4758 o.operatingSystemVersions = buildUnnamed2036(); |
| 4759 } | 4759 } |
| 4760 buildCounterOperatingSystemVersionsListResponse--; | 4760 buildCounterOperatingSystemVersionsListResponse--; |
| 4761 return o; | 4761 return o; |
| 4762 } | 4762 } |
| 4763 | 4763 |
| 4764 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { | 4764 checkOperatingSystemVersionsListResponse(api.OperatingSystemVersionsListResponse
o) { |
| 4765 buildCounterOperatingSystemVersionsListResponse++; | 4765 buildCounterOperatingSystemVersionsListResponse++; |
| 4766 if (buildCounterOperatingSystemVersionsListResponse < 3) { | 4766 if (buildCounterOperatingSystemVersionsListResponse < 3) { |
| 4767 unittest.expect(o.kind, unittest.equals('foo')); | 4767 unittest.expect(o.kind, unittest.equals('foo')); |
| 4768 checkUnnamed1400(o.operatingSystemVersions); | 4768 checkUnnamed2036(o.operatingSystemVersions); |
| 4769 } | 4769 } |
| 4770 buildCounterOperatingSystemVersionsListResponse--; | 4770 buildCounterOperatingSystemVersionsListResponse--; |
| 4771 } | 4771 } |
| 4772 | 4772 |
| 4773 buildUnnamed1401() { | 4773 buildUnnamed2037() { |
| 4774 var o = new core.List<api.OperatingSystem>(); | 4774 var o = new core.List<api.OperatingSystem>(); |
| 4775 o.add(buildOperatingSystem()); | 4775 o.add(buildOperatingSystem()); |
| 4776 o.add(buildOperatingSystem()); | 4776 o.add(buildOperatingSystem()); |
| 4777 return o; | 4777 return o; |
| 4778 } | 4778 } |
| 4779 | 4779 |
| 4780 checkUnnamed1401(core.List<api.OperatingSystem> o) { | 4780 checkUnnamed2037(core.List<api.OperatingSystem> o) { |
| 4781 unittest.expect(o, unittest.hasLength(2)); | 4781 unittest.expect(o, unittest.hasLength(2)); |
| 4782 checkOperatingSystem(o[0]); | 4782 checkOperatingSystem(o[0]); |
| 4783 checkOperatingSystem(o[1]); | 4783 checkOperatingSystem(o[1]); |
| 4784 } | 4784 } |
| 4785 | 4785 |
| 4786 core.int buildCounterOperatingSystemsListResponse = 0; | 4786 core.int buildCounterOperatingSystemsListResponse = 0; |
| 4787 buildOperatingSystemsListResponse() { | 4787 buildOperatingSystemsListResponse() { |
| 4788 var o = new api.OperatingSystemsListResponse(); | 4788 var o = new api.OperatingSystemsListResponse(); |
| 4789 buildCounterOperatingSystemsListResponse++; | 4789 buildCounterOperatingSystemsListResponse++; |
| 4790 if (buildCounterOperatingSystemsListResponse < 3) { | 4790 if (buildCounterOperatingSystemsListResponse < 3) { |
| 4791 o.kind = "foo"; | 4791 o.kind = "foo"; |
| 4792 o.operatingSystems = buildUnnamed1401(); | 4792 o.operatingSystems = buildUnnamed2037(); |
| 4793 } | 4793 } |
| 4794 buildCounterOperatingSystemsListResponse--; | 4794 buildCounterOperatingSystemsListResponse--; |
| 4795 return o; | 4795 return o; |
| 4796 } | 4796 } |
| 4797 | 4797 |
| 4798 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { | 4798 checkOperatingSystemsListResponse(api.OperatingSystemsListResponse o) { |
| 4799 buildCounterOperatingSystemsListResponse++; | 4799 buildCounterOperatingSystemsListResponse++; |
| 4800 if (buildCounterOperatingSystemsListResponse < 3) { | 4800 if (buildCounterOperatingSystemsListResponse < 3) { |
| 4801 unittest.expect(o.kind, unittest.equals('foo')); | 4801 unittest.expect(o.kind, unittest.equals('foo')); |
| 4802 checkUnnamed1401(o.operatingSystems); | 4802 checkUnnamed2037(o.operatingSystems); |
| 4803 } | 4803 } |
| 4804 buildCounterOperatingSystemsListResponse--; | 4804 buildCounterOperatingSystemsListResponse--; |
| 4805 } | 4805 } |
| 4806 | 4806 |
| 4807 core.int buildCounterOptimizationActivity = 0; | 4807 core.int buildCounterOptimizationActivity = 0; |
| 4808 buildOptimizationActivity() { | 4808 buildOptimizationActivity() { |
| 4809 var o = new api.OptimizationActivity(); | 4809 var o = new api.OptimizationActivity(); |
| 4810 buildCounterOptimizationActivity++; | 4810 buildCounterOptimizationActivity++; |
| 4811 if (buildCounterOptimizationActivity < 3) { | 4811 if (buildCounterOptimizationActivity < 3) { |
| 4812 o.floodlightActivityId = "foo"; | 4812 o.floodlightActivityId = "foo"; |
| 4813 o.floodlightActivityIdDimensionValue = buildDimensionValue(); | 4813 o.floodlightActivityIdDimensionValue = buildDimensionValue(); |
| 4814 o.weight = 42; | 4814 o.weight = 42; |
| 4815 } | 4815 } |
| 4816 buildCounterOptimizationActivity--; | 4816 buildCounterOptimizationActivity--; |
| 4817 return o; | 4817 return o; |
| 4818 } | 4818 } |
| 4819 | 4819 |
| 4820 checkOptimizationActivity(api.OptimizationActivity o) { | 4820 checkOptimizationActivity(api.OptimizationActivity o) { |
| 4821 buildCounterOptimizationActivity++; | 4821 buildCounterOptimizationActivity++; |
| 4822 if (buildCounterOptimizationActivity < 3) { | 4822 if (buildCounterOptimizationActivity < 3) { |
| 4823 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 4823 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 4824 checkDimensionValue(o.floodlightActivityIdDimensionValue); | 4824 checkDimensionValue(o.floodlightActivityIdDimensionValue); |
| 4825 unittest.expect(o.weight, unittest.equals(42)); | 4825 unittest.expect(o.weight, unittest.equals(42)); |
| 4826 } | 4826 } |
| 4827 buildCounterOptimizationActivity--; | 4827 buildCounterOptimizationActivity--; |
| 4828 } | 4828 } |
| 4829 | 4829 |
| 4830 buildUnnamed1402() { | 4830 buildUnnamed2038() { |
| 4831 var o = new core.List<core.String>(); | 4831 var o = new core.List<core.String>(); |
| 4832 o.add("foo"); | 4832 o.add("foo"); |
| 4833 o.add("foo"); | 4833 o.add("foo"); |
| 4834 return o; | 4834 return o; |
| 4835 } | 4835 } |
| 4836 | 4836 |
| 4837 checkUnnamed1402(core.List<core.String> o) { | 4837 checkUnnamed2038(core.List<core.String> o) { |
| 4838 unittest.expect(o, unittest.hasLength(2)); | 4838 unittest.expect(o, unittest.hasLength(2)); |
| 4839 unittest.expect(o[0], unittest.equals('foo')); | 4839 unittest.expect(o[0], unittest.equals('foo')); |
| 4840 unittest.expect(o[1], unittest.equals('foo')); | 4840 unittest.expect(o[1], unittest.equals('foo')); |
| 4841 } | 4841 } |
| 4842 | 4842 |
| 4843 buildUnnamed1403() { | 4843 buildUnnamed2039() { |
| 4844 var o = new core.List<api.OrderContact>(); | 4844 var o = new core.List<api.OrderContact>(); |
| 4845 o.add(buildOrderContact()); | 4845 o.add(buildOrderContact()); |
| 4846 o.add(buildOrderContact()); | 4846 o.add(buildOrderContact()); |
| 4847 return o; | 4847 return o; |
| 4848 } | 4848 } |
| 4849 | 4849 |
| 4850 checkUnnamed1403(core.List<api.OrderContact> o) { | 4850 checkUnnamed2039(core.List<api.OrderContact> o) { |
| 4851 unittest.expect(o, unittest.hasLength(2)); | 4851 unittest.expect(o, unittest.hasLength(2)); |
| 4852 checkOrderContact(o[0]); | 4852 checkOrderContact(o[0]); |
| 4853 checkOrderContact(o[1]); | 4853 checkOrderContact(o[1]); |
| 4854 } | 4854 } |
| 4855 | 4855 |
| 4856 buildUnnamed1404() { | 4856 buildUnnamed2040() { |
| 4857 var o = new core.List<core.String>(); | 4857 var o = new core.List<core.String>(); |
| 4858 o.add("foo"); | 4858 o.add("foo"); |
| 4859 o.add("foo"); | 4859 o.add("foo"); |
| 4860 return o; | 4860 return o; |
| 4861 } | 4861 } |
| 4862 | 4862 |
| 4863 checkUnnamed1404(core.List<core.String> o) { | 4863 checkUnnamed2040(core.List<core.String> o) { |
| 4864 unittest.expect(o, unittest.hasLength(2)); | 4864 unittest.expect(o, unittest.hasLength(2)); |
| 4865 unittest.expect(o[0], unittest.equals('foo')); | 4865 unittest.expect(o[0], unittest.equals('foo')); |
| 4866 unittest.expect(o[1], unittest.equals('foo')); | 4866 unittest.expect(o[1], unittest.equals('foo')); |
| 4867 } | 4867 } |
| 4868 | 4868 |
| 4869 buildUnnamed1405() { | 4869 buildUnnamed2041() { |
| 4870 var o = new core.List<core.String>(); | 4870 var o = new core.List<core.String>(); |
| 4871 o.add("foo"); | 4871 o.add("foo"); |
| 4872 o.add("foo"); | 4872 o.add("foo"); |
| 4873 return o; | 4873 return o; |
| 4874 } | 4874 } |
| 4875 | 4875 |
| 4876 checkUnnamed1405(core.List<core.String> o) { | 4876 checkUnnamed2041(core.List<core.String> o) { |
| 4877 unittest.expect(o, unittest.hasLength(2)); | 4877 unittest.expect(o, unittest.hasLength(2)); |
| 4878 unittest.expect(o[0], unittest.equals('foo')); | 4878 unittest.expect(o[0], unittest.equals('foo')); |
| 4879 unittest.expect(o[1], unittest.equals('foo')); | 4879 unittest.expect(o[1], unittest.equals('foo')); |
| 4880 } | 4880 } |
| 4881 | 4881 |
| 4882 core.int buildCounterOrder = 0; | 4882 core.int buildCounterOrder = 0; |
| 4883 buildOrder() { | 4883 buildOrder() { |
| 4884 var o = new api.Order(); | 4884 var o = new api.Order(); |
| 4885 buildCounterOrder++; | 4885 buildCounterOrder++; |
| 4886 if (buildCounterOrder < 3) { | 4886 if (buildCounterOrder < 3) { |
| 4887 o.accountId = "foo"; | 4887 o.accountId = "foo"; |
| 4888 o.advertiserId = "foo"; | 4888 o.advertiserId = "foo"; |
| 4889 o.approverUserProfileIds = buildUnnamed1402(); | 4889 o.approverUserProfileIds = buildUnnamed2038(); |
| 4890 o.buyerInvoiceId = "foo"; | 4890 o.buyerInvoiceId = "foo"; |
| 4891 o.buyerOrganizationName = "foo"; | 4891 o.buyerOrganizationName = "foo"; |
| 4892 o.comments = "foo"; | 4892 o.comments = "foo"; |
| 4893 o.contacts = buildUnnamed1403(); | 4893 o.contacts = buildUnnamed2039(); |
| 4894 o.id = "foo"; | 4894 o.id = "foo"; |
| 4895 o.kind = "foo"; | 4895 o.kind = "foo"; |
| 4896 o.lastModifiedInfo = buildLastModifiedInfo(); | 4896 o.lastModifiedInfo = buildLastModifiedInfo(); |
| 4897 o.name = "foo"; | 4897 o.name = "foo"; |
| 4898 o.notes = "foo"; | 4898 o.notes = "foo"; |
| 4899 o.planningTermId = "foo"; | 4899 o.planningTermId = "foo"; |
| 4900 o.projectId = "foo"; | 4900 o.projectId = "foo"; |
| 4901 o.sellerOrderId = "foo"; | 4901 o.sellerOrderId = "foo"; |
| 4902 o.sellerOrganizationName = "foo"; | 4902 o.sellerOrganizationName = "foo"; |
| 4903 o.siteId = buildUnnamed1404(); | 4903 o.siteId = buildUnnamed2040(); |
| 4904 o.siteNames = buildUnnamed1405(); | 4904 o.siteNames = buildUnnamed2041(); |
| 4905 o.subaccountId = "foo"; | 4905 o.subaccountId = "foo"; |
| 4906 o.termsAndConditions = "foo"; | 4906 o.termsAndConditions = "foo"; |
| 4907 } | 4907 } |
| 4908 buildCounterOrder--; | 4908 buildCounterOrder--; |
| 4909 return o; | 4909 return o; |
| 4910 } | 4910 } |
| 4911 | 4911 |
| 4912 checkOrder(api.Order o) { | 4912 checkOrder(api.Order o) { |
| 4913 buildCounterOrder++; | 4913 buildCounterOrder++; |
| 4914 if (buildCounterOrder < 3) { | 4914 if (buildCounterOrder < 3) { |
| 4915 unittest.expect(o.accountId, unittest.equals('foo')); | 4915 unittest.expect(o.accountId, unittest.equals('foo')); |
| 4916 unittest.expect(o.advertiserId, unittest.equals('foo')); | 4916 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 4917 checkUnnamed1402(o.approverUserProfileIds); | 4917 checkUnnamed2038(o.approverUserProfileIds); |
| 4918 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); | 4918 unittest.expect(o.buyerInvoiceId, unittest.equals('foo')); |
| 4919 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); | 4919 unittest.expect(o.buyerOrganizationName, unittest.equals('foo')); |
| 4920 unittest.expect(o.comments, unittest.equals('foo')); | 4920 unittest.expect(o.comments, unittest.equals('foo')); |
| 4921 checkUnnamed1403(o.contacts); | 4921 checkUnnamed2039(o.contacts); |
| 4922 unittest.expect(o.id, unittest.equals('foo')); | 4922 unittest.expect(o.id, unittest.equals('foo')); |
| 4923 unittest.expect(o.kind, unittest.equals('foo')); | 4923 unittest.expect(o.kind, unittest.equals('foo')); |
| 4924 checkLastModifiedInfo(o.lastModifiedInfo); | 4924 checkLastModifiedInfo(o.lastModifiedInfo); |
| 4925 unittest.expect(o.name, unittest.equals('foo')); | 4925 unittest.expect(o.name, unittest.equals('foo')); |
| 4926 unittest.expect(o.notes, unittest.equals('foo')); | 4926 unittest.expect(o.notes, unittest.equals('foo')); |
| 4927 unittest.expect(o.planningTermId, unittest.equals('foo')); | 4927 unittest.expect(o.planningTermId, unittest.equals('foo')); |
| 4928 unittest.expect(o.projectId, unittest.equals('foo')); | 4928 unittest.expect(o.projectId, unittest.equals('foo')); |
| 4929 unittest.expect(o.sellerOrderId, unittest.equals('foo')); | 4929 unittest.expect(o.sellerOrderId, unittest.equals('foo')); |
| 4930 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); | 4930 unittest.expect(o.sellerOrganizationName, unittest.equals('foo')); |
| 4931 checkUnnamed1404(o.siteId); | 4931 checkUnnamed2040(o.siteId); |
| 4932 checkUnnamed1405(o.siteNames); | 4932 checkUnnamed2041(o.siteNames); |
| 4933 unittest.expect(o.subaccountId, unittest.equals('foo')); | 4933 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 4934 unittest.expect(o.termsAndConditions, unittest.equals('foo')); | 4934 unittest.expect(o.termsAndConditions, unittest.equals('foo')); |
| 4935 } | 4935 } |
| 4936 buildCounterOrder--; | 4936 buildCounterOrder--; |
| 4937 } | 4937 } |
| 4938 | 4938 |
| 4939 core.int buildCounterOrderContact = 0; | 4939 core.int buildCounterOrderContact = 0; |
| 4940 buildOrderContact() { | 4940 buildOrderContact() { |
| 4941 var o = new api.OrderContact(); | 4941 var o = new api.OrderContact(); |
| 4942 buildCounterOrderContact++; | 4942 buildCounterOrderContact++; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 4956 if (buildCounterOrderContact < 3) { | 4956 if (buildCounterOrderContact < 3) { |
| 4957 unittest.expect(o.contactInfo, unittest.equals('foo')); | 4957 unittest.expect(o.contactInfo, unittest.equals('foo')); |
| 4958 unittest.expect(o.contactName, unittest.equals('foo')); | 4958 unittest.expect(o.contactName, unittest.equals('foo')); |
| 4959 unittest.expect(o.contactTitle, unittest.equals('foo')); | 4959 unittest.expect(o.contactTitle, unittest.equals('foo')); |
| 4960 unittest.expect(o.contactType, unittest.equals('foo')); | 4960 unittest.expect(o.contactType, unittest.equals('foo')); |
| 4961 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); | 4961 unittest.expect(o.signatureUserProfileId, unittest.equals('foo')); |
| 4962 } | 4962 } |
| 4963 buildCounterOrderContact--; | 4963 buildCounterOrderContact--; |
| 4964 } | 4964 } |
| 4965 | 4965 |
| 4966 buildUnnamed1406() { | 4966 buildUnnamed2042() { |
| 4967 var o = new core.List<core.String>(); | 4967 var o = new core.List<core.String>(); |
| 4968 o.add("foo"); | 4968 o.add("foo"); |
| 4969 o.add("foo"); | 4969 o.add("foo"); |
| 4970 return o; | 4970 return o; |
| 4971 } | 4971 } |
| 4972 | 4972 |
| 4973 checkUnnamed1406(core.List<core.String> o) { | 4973 checkUnnamed2042(core.List<core.String> o) { |
| 4974 unittest.expect(o, unittest.hasLength(2)); | 4974 unittest.expect(o, unittest.hasLength(2)); |
| 4975 unittest.expect(o[0], unittest.equals('foo')); | 4975 unittest.expect(o[0], unittest.equals('foo')); |
| 4976 unittest.expect(o[1], unittest.equals('foo')); | 4976 unittest.expect(o[1], unittest.equals('foo')); |
| 4977 } | 4977 } |
| 4978 | 4978 |
| 4979 buildUnnamed1407() { | 4979 buildUnnamed2043() { |
| 4980 var o = new core.List<core.String>(); | 4980 var o = new core.List<core.String>(); |
| 4981 o.add("foo"); | 4981 o.add("foo"); |
| 4982 o.add("foo"); | 4982 o.add("foo"); |
| 4983 return o; | 4983 return o; |
| 4984 } | 4984 } |
| 4985 | 4985 |
| 4986 checkUnnamed1407(core.List<core.String> o) { | 4986 checkUnnamed2043(core.List<core.String> o) { |
| 4987 unittest.expect(o, unittest.hasLength(2)); | 4987 unittest.expect(o, unittest.hasLength(2)); |
| 4988 unittest.expect(o[0], unittest.equals('foo')); | 4988 unittest.expect(o[0], unittest.equals('foo')); |
| 4989 unittest.expect(o[1], unittest.equals('foo')); | 4989 unittest.expect(o[1], unittest.equals('foo')); |
| 4990 } | 4990 } |
| 4991 | 4991 |
| 4992 core.int buildCounterOrderDocument = 0; | 4992 core.int buildCounterOrderDocument = 0; |
| 4993 buildOrderDocument() { | 4993 buildOrderDocument() { |
| 4994 var o = new api.OrderDocument(); | 4994 var o = new api.OrderDocument(); |
| 4995 buildCounterOrderDocument++; | 4995 buildCounterOrderDocument++; |
| 4996 if (buildCounterOrderDocument < 3) { | 4996 if (buildCounterOrderDocument < 3) { |
| 4997 o.accountId = "foo"; | 4997 o.accountId = "foo"; |
| 4998 o.advertiserId = "foo"; | 4998 o.advertiserId = "foo"; |
| 4999 o.amendedOrderDocumentId = "foo"; | 4999 o.amendedOrderDocumentId = "foo"; |
| 5000 o.approvedByUserProfileIds = buildUnnamed1406(); | 5000 o.approvedByUserProfileIds = buildUnnamed2042(); |
| 5001 o.cancelled = true; | 5001 o.cancelled = true; |
| 5002 o.createdInfo = buildLastModifiedInfo(); | 5002 o.createdInfo = buildLastModifiedInfo(); |
| 5003 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5003 o.effectiveDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5004 o.id = "foo"; | 5004 o.id = "foo"; |
| 5005 o.kind = "foo"; | 5005 o.kind = "foo"; |
| 5006 o.lastSentRecipients = buildUnnamed1407(); | 5006 o.lastSentRecipients = buildUnnamed2043(); |
| 5007 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); | 5007 o.lastSentTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 5008 o.orderId = "foo"; | 5008 o.orderId = "foo"; |
| 5009 o.projectId = "foo"; | 5009 o.projectId = "foo"; |
| 5010 o.signed = true; | 5010 o.signed = true; |
| 5011 o.subaccountId = "foo"; | 5011 o.subaccountId = "foo"; |
| 5012 o.title = "foo"; | 5012 o.title = "foo"; |
| 5013 o.type = "foo"; | 5013 o.type = "foo"; |
| 5014 } | 5014 } |
| 5015 buildCounterOrderDocument--; | 5015 buildCounterOrderDocument--; |
| 5016 return o; | 5016 return o; |
| 5017 } | 5017 } |
| 5018 | 5018 |
| 5019 checkOrderDocument(api.OrderDocument o) { | 5019 checkOrderDocument(api.OrderDocument o) { |
| 5020 buildCounterOrderDocument++; | 5020 buildCounterOrderDocument++; |
| 5021 if (buildCounterOrderDocument < 3) { | 5021 if (buildCounterOrderDocument < 3) { |
| 5022 unittest.expect(o.accountId, unittest.equals('foo')); | 5022 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5023 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5023 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5024 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); | 5024 unittest.expect(o.amendedOrderDocumentId, unittest.equals('foo')); |
| 5025 checkUnnamed1406(o.approvedByUserProfileIds); | 5025 checkUnnamed2042(o.approvedByUserProfileIds); |
| 5026 unittest.expect(o.cancelled, unittest.isTrue); | 5026 unittest.expect(o.cancelled, unittest.isTrue); |
| 5027 checkLastModifiedInfo(o.createdInfo); | 5027 checkLastModifiedInfo(o.createdInfo); |
| 5028 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); | 5028 unittest.expect(o.effectiveDate, unittest.equals(core.DateTime.parse("2002-0
2-27T00:00:00"))); |
| 5029 unittest.expect(o.id, unittest.equals('foo')); | 5029 unittest.expect(o.id, unittest.equals('foo')); |
| 5030 unittest.expect(o.kind, unittest.equals('foo')); | 5030 unittest.expect(o.kind, unittest.equals('foo')); |
| 5031 checkUnnamed1407(o.lastSentRecipients); | 5031 checkUnnamed2043(o.lastSentRecipients); |
| 5032 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); | 5032 unittest.expect(o.lastSentTime, unittest.equals(core.DateTime.parse("2002-02
-27T14:01:02"))); |
| 5033 unittest.expect(o.orderId, unittest.equals('foo')); | 5033 unittest.expect(o.orderId, unittest.equals('foo')); |
| 5034 unittest.expect(o.projectId, unittest.equals('foo')); | 5034 unittest.expect(o.projectId, unittest.equals('foo')); |
| 5035 unittest.expect(o.signed, unittest.isTrue); | 5035 unittest.expect(o.signed, unittest.isTrue); |
| 5036 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5036 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5037 unittest.expect(o.title, unittest.equals('foo')); | 5037 unittest.expect(o.title, unittest.equals('foo')); |
| 5038 unittest.expect(o.type, unittest.equals('foo')); | 5038 unittest.expect(o.type, unittest.equals('foo')); |
| 5039 } | 5039 } |
| 5040 buildCounterOrderDocument--; | 5040 buildCounterOrderDocument--; |
| 5041 } | 5041 } |
| 5042 | 5042 |
| 5043 buildUnnamed1408() { | 5043 buildUnnamed2044() { |
| 5044 var o = new core.List<api.OrderDocument>(); | 5044 var o = new core.List<api.OrderDocument>(); |
| 5045 o.add(buildOrderDocument()); | 5045 o.add(buildOrderDocument()); |
| 5046 o.add(buildOrderDocument()); | 5046 o.add(buildOrderDocument()); |
| 5047 return o; | 5047 return o; |
| 5048 } | 5048 } |
| 5049 | 5049 |
| 5050 checkUnnamed1408(core.List<api.OrderDocument> o) { | 5050 checkUnnamed2044(core.List<api.OrderDocument> o) { |
| 5051 unittest.expect(o, unittest.hasLength(2)); | 5051 unittest.expect(o, unittest.hasLength(2)); |
| 5052 checkOrderDocument(o[0]); | 5052 checkOrderDocument(o[0]); |
| 5053 checkOrderDocument(o[1]); | 5053 checkOrderDocument(o[1]); |
| 5054 } | 5054 } |
| 5055 | 5055 |
| 5056 core.int buildCounterOrderDocumentsListResponse = 0; | 5056 core.int buildCounterOrderDocumentsListResponse = 0; |
| 5057 buildOrderDocumentsListResponse() { | 5057 buildOrderDocumentsListResponse() { |
| 5058 var o = new api.OrderDocumentsListResponse(); | 5058 var o = new api.OrderDocumentsListResponse(); |
| 5059 buildCounterOrderDocumentsListResponse++; | 5059 buildCounterOrderDocumentsListResponse++; |
| 5060 if (buildCounterOrderDocumentsListResponse < 3) { | 5060 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5061 o.kind = "foo"; | 5061 o.kind = "foo"; |
| 5062 o.nextPageToken = "foo"; | 5062 o.nextPageToken = "foo"; |
| 5063 o.orderDocuments = buildUnnamed1408(); | 5063 o.orderDocuments = buildUnnamed2044(); |
| 5064 } | 5064 } |
| 5065 buildCounterOrderDocumentsListResponse--; | 5065 buildCounterOrderDocumentsListResponse--; |
| 5066 return o; | 5066 return o; |
| 5067 } | 5067 } |
| 5068 | 5068 |
| 5069 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { | 5069 checkOrderDocumentsListResponse(api.OrderDocumentsListResponse o) { |
| 5070 buildCounterOrderDocumentsListResponse++; | 5070 buildCounterOrderDocumentsListResponse++; |
| 5071 if (buildCounterOrderDocumentsListResponse < 3) { | 5071 if (buildCounterOrderDocumentsListResponse < 3) { |
| 5072 unittest.expect(o.kind, unittest.equals('foo')); | 5072 unittest.expect(o.kind, unittest.equals('foo')); |
| 5073 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5073 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5074 checkUnnamed1408(o.orderDocuments); | 5074 checkUnnamed2044(o.orderDocuments); |
| 5075 } | 5075 } |
| 5076 buildCounterOrderDocumentsListResponse--; | 5076 buildCounterOrderDocumentsListResponse--; |
| 5077 } | 5077 } |
| 5078 | 5078 |
| 5079 buildUnnamed1409() { | 5079 buildUnnamed2045() { |
| 5080 var o = new core.List<api.Order>(); | 5080 var o = new core.List<api.Order>(); |
| 5081 o.add(buildOrder()); | 5081 o.add(buildOrder()); |
| 5082 o.add(buildOrder()); | 5082 o.add(buildOrder()); |
| 5083 return o; | 5083 return o; |
| 5084 } | 5084 } |
| 5085 | 5085 |
| 5086 checkUnnamed1409(core.List<api.Order> o) { | 5086 checkUnnamed2045(core.List<api.Order> o) { |
| 5087 unittest.expect(o, unittest.hasLength(2)); | 5087 unittest.expect(o, unittest.hasLength(2)); |
| 5088 checkOrder(o[0]); | 5088 checkOrder(o[0]); |
| 5089 checkOrder(o[1]); | 5089 checkOrder(o[1]); |
| 5090 } | 5090 } |
| 5091 | 5091 |
| 5092 core.int buildCounterOrdersListResponse = 0; | 5092 core.int buildCounterOrdersListResponse = 0; |
| 5093 buildOrdersListResponse() { | 5093 buildOrdersListResponse() { |
| 5094 var o = new api.OrdersListResponse(); | 5094 var o = new api.OrdersListResponse(); |
| 5095 buildCounterOrdersListResponse++; | 5095 buildCounterOrdersListResponse++; |
| 5096 if (buildCounterOrdersListResponse < 3) { | 5096 if (buildCounterOrdersListResponse < 3) { |
| 5097 o.kind = "foo"; | 5097 o.kind = "foo"; |
| 5098 o.nextPageToken = "foo"; | 5098 o.nextPageToken = "foo"; |
| 5099 o.orders = buildUnnamed1409(); | 5099 o.orders = buildUnnamed2045(); |
| 5100 } | 5100 } |
| 5101 buildCounterOrdersListResponse--; | 5101 buildCounterOrdersListResponse--; |
| 5102 return o; | 5102 return o; |
| 5103 } | 5103 } |
| 5104 | 5104 |
| 5105 checkOrdersListResponse(api.OrdersListResponse o) { | 5105 checkOrdersListResponse(api.OrdersListResponse o) { |
| 5106 buildCounterOrdersListResponse++; | 5106 buildCounterOrdersListResponse++; |
| 5107 if (buildCounterOrdersListResponse < 3) { | 5107 if (buildCounterOrdersListResponse < 3) { |
| 5108 unittest.expect(o.kind, unittest.equals('foo')); | 5108 unittest.expect(o.kind, unittest.equals('foo')); |
| 5109 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5109 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5110 checkUnnamed1409(o.orders); | 5110 checkUnnamed2045(o.orders); |
| 5111 } | 5111 } |
| 5112 buildCounterOrdersListResponse--; | 5112 buildCounterOrdersListResponse--; |
| 5113 } | 5113 } |
| 5114 | 5114 |
| 5115 buildUnnamed1410() { | 5115 buildUnnamed2046() { |
| 5116 var o = new core.List<api.Dimension>(); | 5116 var o = new core.List<api.Dimension>(); |
| 5117 o.add(buildDimension()); | 5117 o.add(buildDimension()); |
| 5118 o.add(buildDimension()); | 5118 o.add(buildDimension()); |
| 5119 return o; | 5119 return o; |
| 5120 } | 5120 } |
| 5121 | 5121 |
| 5122 checkUnnamed1410(core.List<api.Dimension> o) { | 5122 checkUnnamed2046(core.List<api.Dimension> o) { |
| 5123 unittest.expect(o, unittest.hasLength(2)); | 5123 unittest.expect(o, unittest.hasLength(2)); |
| 5124 checkDimension(o[0]); | 5124 checkDimension(o[0]); |
| 5125 checkDimension(o[1]); | 5125 checkDimension(o[1]); |
| 5126 } | 5126 } |
| 5127 | 5127 |
| 5128 buildUnnamed1411() { | 5128 buildUnnamed2047() { |
| 5129 var o = new core.List<api.Dimension>(); | 5129 var o = new core.List<api.Dimension>(); |
| 5130 o.add(buildDimension()); | 5130 o.add(buildDimension()); |
| 5131 o.add(buildDimension()); | 5131 o.add(buildDimension()); |
| 5132 return o; | 5132 return o; |
| 5133 } | 5133 } |
| 5134 | 5134 |
| 5135 checkUnnamed1411(core.List<api.Dimension> o) { | 5135 checkUnnamed2047(core.List<api.Dimension> o) { |
| 5136 unittest.expect(o, unittest.hasLength(2)); | 5136 unittest.expect(o, unittest.hasLength(2)); |
| 5137 checkDimension(o[0]); | 5137 checkDimension(o[0]); |
| 5138 checkDimension(o[1]); | 5138 checkDimension(o[1]); |
| 5139 } | 5139 } |
| 5140 | 5140 |
| 5141 buildUnnamed1412() { | 5141 buildUnnamed2048() { |
| 5142 var o = new core.List<api.Metric>(); | 5142 var o = new core.List<api.Metric>(); |
| 5143 o.add(buildMetric()); | 5143 o.add(buildMetric()); |
| 5144 o.add(buildMetric()); | 5144 o.add(buildMetric()); |
| 5145 return o; | 5145 return o; |
| 5146 } | 5146 } |
| 5147 | 5147 |
| 5148 checkUnnamed1412(core.List<api.Metric> o) { | 5148 checkUnnamed2048(core.List<api.Metric> o) { |
| 5149 unittest.expect(o, unittest.hasLength(2)); | 5149 unittest.expect(o, unittest.hasLength(2)); |
| 5150 checkMetric(o[0]); | 5150 checkMetric(o[0]); |
| 5151 checkMetric(o[1]); | 5151 checkMetric(o[1]); |
| 5152 } | 5152 } |
| 5153 | 5153 |
| 5154 buildUnnamed1413() { | 5154 buildUnnamed2049() { |
| 5155 var o = new core.List<api.Dimension>(); | 5155 var o = new core.List<api.Dimension>(); |
| 5156 o.add(buildDimension()); | 5156 o.add(buildDimension()); |
| 5157 o.add(buildDimension()); | 5157 o.add(buildDimension()); |
| 5158 return o; | 5158 return o; |
| 5159 } | 5159 } |
| 5160 | 5160 |
| 5161 checkUnnamed1413(core.List<api.Dimension> o) { | 5161 checkUnnamed2049(core.List<api.Dimension> o) { |
| 5162 unittest.expect(o, unittest.hasLength(2)); | 5162 unittest.expect(o, unittest.hasLength(2)); |
| 5163 checkDimension(o[0]); | 5163 checkDimension(o[0]); |
| 5164 checkDimension(o[1]); | 5164 checkDimension(o[1]); |
| 5165 } | 5165 } |
| 5166 | 5166 |
| 5167 core.int buildCounterPathToConversionReportCompatibleFields = 0; | 5167 core.int buildCounterPathToConversionReportCompatibleFields = 0; |
| 5168 buildPathToConversionReportCompatibleFields() { | 5168 buildPathToConversionReportCompatibleFields() { |
| 5169 var o = new api.PathToConversionReportCompatibleFields(); | 5169 var o = new api.PathToConversionReportCompatibleFields(); |
| 5170 buildCounterPathToConversionReportCompatibleFields++; | 5170 buildCounterPathToConversionReportCompatibleFields++; |
| 5171 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5171 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5172 o.conversionDimensions = buildUnnamed1410(); | 5172 o.conversionDimensions = buildUnnamed2046(); |
| 5173 o.customFloodlightVariables = buildUnnamed1411(); | 5173 o.customFloodlightVariables = buildUnnamed2047(); |
| 5174 o.kind = "foo"; | 5174 o.kind = "foo"; |
| 5175 o.metrics = buildUnnamed1412(); | 5175 o.metrics = buildUnnamed2048(); |
| 5176 o.perInteractionDimensions = buildUnnamed1413(); | 5176 o.perInteractionDimensions = buildUnnamed2049(); |
| 5177 } | 5177 } |
| 5178 buildCounterPathToConversionReportCompatibleFields--; | 5178 buildCounterPathToConversionReportCompatibleFields--; |
| 5179 return o; | 5179 return o; |
| 5180 } | 5180 } |
| 5181 | 5181 |
| 5182 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { | 5182 checkPathToConversionReportCompatibleFields(api.PathToConversionReportCompatible
Fields o) { |
| 5183 buildCounterPathToConversionReportCompatibleFields++; | 5183 buildCounterPathToConversionReportCompatibleFields++; |
| 5184 if (buildCounterPathToConversionReportCompatibleFields < 3) { | 5184 if (buildCounterPathToConversionReportCompatibleFields < 3) { |
| 5185 checkUnnamed1410(o.conversionDimensions); | 5185 checkUnnamed2046(o.conversionDimensions); |
| 5186 checkUnnamed1411(o.customFloodlightVariables); | 5186 checkUnnamed2047(o.customFloodlightVariables); |
| 5187 unittest.expect(o.kind, unittest.equals('foo')); | 5187 unittest.expect(o.kind, unittest.equals('foo')); |
| 5188 checkUnnamed1412(o.metrics); | 5188 checkUnnamed2048(o.metrics); |
| 5189 checkUnnamed1413(o.perInteractionDimensions); | 5189 checkUnnamed2049(o.perInteractionDimensions); |
| 5190 } | 5190 } |
| 5191 buildCounterPathToConversionReportCompatibleFields--; | 5191 buildCounterPathToConversionReportCompatibleFields--; |
| 5192 } | 5192 } |
| 5193 | 5193 |
| 5194 buildUnnamed1414() { | 5194 buildUnnamed2050() { |
| 5195 var o = new core.List<core.String>(); | 5195 var o = new core.List<core.String>(); |
| 5196 o.add("foo"); | 5196 o.add("foo"); |
| 5197 o.add("foo"); | 5197 o.add("foo"); |
| 5198 return o; | 5198 return o; |
| 5199 } | 5199 } |
| 5200 | 5200 |
| 5201 checkUnnamed1414(core.List<core.String> o) { | 5201 checkUnnamed2050(core.List<core.String> o) { |
| 5202 unittest.expect(o, unittest.hasLength(2)); | 5202 unittest.expect(o, unittest.hasLength(2)); |
| 5203 unittest.expect(o[0], unittest.equals('foo')); | 5203 unittest.expect(o[0], unittest.equals('foo')); |
| 5204 unittest.expect(o[1], unittest.equals('foo')); | 5204 unittest.expect(o[1], unittest.equals('foo')); |
| 5205 } | 5205 } |
| 5206 | 5206 |
| 5207 core.int buildCounterPlacement = 0; | 5207 core.int buildCounterPlacement = 0; |
| 5208 buildPlacement() { | 5208 buildPlacement() { |
| 5209 var o = new api.Placement(); | 5209 var o = new api.Placement(); |
| 5210 buildCounterPlacement++; | 5210 buildCounterPlacement++; |
| 5211 if (buildCounterPlacement < 3) { | 5211 if (buildCounterPlacement < 3) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 5236 o.placementStrategyId = "foo"; | 5236 o.placementStrategyId = "foo"; |
| 5237 o.pricingSchedule = buildPricingSchedule(); | 5237 o.pricingSchedule = buildPricingSchedule(); |
| 5238 o.primary = true; | 5238 o.primary = true; |
| 5239 o.publisherUpdateInfo = buildLastModifiedInfo(); | 5239 o.publisherUpdateInfo = buildLastModifiedInfo(); |
| 5240 o.siteId = "foo"; | 5240 o.siteId = "foo"; |
| 5241 o.siteIdDimensionValue = buildDimensionValue(); | 5241 o.siteIdDimensionValue = buildDimensionValue(); |
| 5242 o.size = buildSize(); | 5242 o.size = buildSize(); |
| 5243 o.sslRequired = true; | 5243 o.sslRequired = true; |
| 5244 o.status = "foo"; | 5244 o.status = "foo"; |
| 5245 o.subaccountId = "foo"; | 5245 o.subaccountId = "foo"; |
| 5246 o.tagFormats = buildUnnamed1414(); | 5246 o.tagFormats = buildUnnamed2050(); |
| 5247 o.tagSetting = buildTagSetting(); | 5247 o.tagSetting = buildTagSetting(); |
| 5248 } | 5248 } |
| 5249 buildCounterPlacement--; | 5249 buildCounterPlacement--; |
| 5250 return o; | 5250 return o; |
| 5251 } | 5251 } |
| 5252 | 5252 |
| 5253 checkPlacement(api.Placement o) { | 5253 checkPlacement(api.Placement o) { |
| 5254 buildCounterPlacement++; | 5254 buildCounterPlacement++; |
| 5255 if (buildCounterPlacement < 3) { | 5255 if (buildCounterPlacement < 3) { |
| 5256 unittest.expect(o.accountId, unittest.equals('foo')); | 5256 unittest.expect(o.accountId, unittest.equals('foo')); |
| (...skipping 23 matching lines...) Expand all Loading... |
| 5280 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5280 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5281 checkPricingSchedule(o.pricingSchedule); | 5281 checkPricingSchedule(o.pricingSchedule); |
| 5282 unittest.expect(o.primary, unittest.isTrue); | 5282 unittest.expect(o.primary, unittest.isTrue); |
| 5283 checkLastModifiedInfo(o.publisherUpdateInfo); | 5283 checkLastModifiedInfo(o.publisherUpdateInfo); |
| 5284 unittest.expect(o.siteId, unittest.equals('foo')); | 5284 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5285 checkDimensionValue(o.siteIdDimensionValue); | 5285 checkDimensionValue(o.siteIdDimensionValue); |
| 5286 checkSize(o.size); | 5286 checkSize(o.size); |
| 5287 unittest.expect(o.sslRequired, unittest.isTrue); | 5287 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5288 unittest.expect(o.status, unittest.equals('foo')); | 5288 unittest.expect(o.status, unittest.equals('foo')); |
| 5289 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5289 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5290 checkUnnamed1414(o.tagFormats); | 5290 checkUnnamed2050(o.tagFormats); |
| 5291 checkTagSetting(o.tagSetting); | 5291 checkTagSetting(o.tagSetting); |
| 5292 } | 5292 } |
| 5293 buildCounterPlacement--; | 5293 buildCounterPlacement--; |
| 5294 } | 5294 } |
| 5295 | 5295 |
| 5296 core.int buildCounterPlacementAssignment = 0; | 5296 core.int buildCounterPlacementAssignment = 0; |
| 5297 buildPlacementAssignment() { | 5297 buildPlacementAssignment() { |
| 5298 var o = new api.PlacementAssignment(); | 5298 var o = new api.PlacementAssignment(); |
| 5299 buildCounterPlacementAssignment++; | 5299 buildCounterPlacementAssignment++; |
| 5300 if (buildCounterPlacementAssignment < 3) { | 5300 if (buildCounterPlacementAssignment < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 5311 buildCounterPlacementAssignment++; | 5311 buildCounterPlacementAssignment++; |
| 5312 if (buildCounterPlacementAssignment < 3) { | 5312 if (buildCounterPlacementAssignment < 3) { |
| 5313 unittest.expect(o.active, unittest.isTrue); | 5313 unittest.expect(o.active, unittest.isTrue); |
| 5314 unittest.expect(o.placementId, unittest.equals('foo')); | 5314 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5315 checkDimensionValue(o.placementIdDimensionValue); | 5315 checkDimensionValue(o.placementIdDimensionValue); |
| 5316 unittest.expect(o.sslRequired, unittest.isTrue); | 5316 unittest.expect(o.sslRequired, unittest.isTrue); |
| 5317 } | 5317 } |
| 5318 buildCounterPlacementAssignment--; | 5318 buildCounterPlacementAssignment--; |
| 5319 } | 5319 } |
| 5320 | 5320 |
| 5321 buildUnnamed1415() { | 5321 buildUnnamed2051() { |
| 5322 var o = new core.List<core.String>(); | 5322 var o = new core.List<core.String>(); |
| 5323 o.add("foo"); | 5323 o.add("foo"); |
| 5324 o.add("foo"); | 5324 o.add("foo"); |
| 5325 return o; | 5325 return o; |
| 5326 } | 5326 } |
| 5327 | 5327 |
| 5328 checkUnnamed1415(core.List<core.String> o) { | 5328 checkUnnamed2051(core.List<core.String> o) { |
| 5329 unittest.expect(o, unittest.hasLength(2)); | 5329 unittest.expect(o, unittest.hasLength(2)); |
| 5330 unittest.expect(o[0], unittest.equals('foo')); | 5330 unittest.expect(o[0], unittest.equals('foo')); |
| 5331 unittest.expect(o[1], unittest.equals('foo')); | 5331 unittest.expect(o[1], unittest.equals('foo')); |
| 5332 } | 5332 } |
| 5333 | 5333 |
| 5334 core.int buildCounterPlacementGroup = 0; | 5334 core.int buildCounterPlacementGroup = 0; |
| 5335 buildPlacementGroup() { | 5335 buildPlacementGroup() { |
| 5336 var o = new api.PlacementGroup(); | 5336 var o = new api.PlacementGroup(); |
| 5337 buildCounterPlacementGroup++; | 5337 buildCounterPlacementGroup++; |
| 5338 if (buildCounterPlacementGroup < 3) { | 5338 if (buildCounterPlacementGroup < 3) { |
| 5339 o.accountId = "foo"; | 5339 o.accountId = "foo"; |
| 5340 o.advertiserId = "foo"; | 5340 o.advertiserId = "foo"; |
| 5341 o.advertiserIdDimensionValue = buildDimensionValue(); | 5341 o.advertiserIdDimensionValue = buildDimensionValue(); |
| 5342 o.archived = true; | 5342 o.archived = true; |
| 5343 o.campaignId = "foo"; | 5343 o.campaignId = "foo"; |
| 5344 o.campaignIdDimensionValue = buildDimensionValue(); | 5344 o.campaignIdDimensionValue = buildDimensionValue(); |
| 5345 o.childPlacementIds = buildUnnamed1415(); | 5345 o.childPlacementIds = buildUnnamed2051(); |
| 5346 o.comment = "foo"; | 5346 o.comment = "foo"; |
| 5347 o.contentCategoryId = "foo"; | 5347 o.contentCategoryId = "foo"; |
| 5348 o.createInfo = buildLastModifiedInfo(); | 5348 o.createInfo = buildLastModifiedInfo(); |
| 5349 o.directorySiteId = "foo"; | 5349 o.directorySiteId = "foo"; |
| 5350 o.directorySiteIdDimensionValue = buildDimensionValue(); | 5350 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 5351 o.externalId = "foo"; | 5351 o.externalId = "foo"; |
| 5352 o.id = "foo"; | 5352 o.id = "foo"; |
| 5353 o.idDimensionValue = buildDimensionValue(); | 5353 o.idDimensionValue = buildDimensionValue(); |
| 5354 o.kind = "foo"; | 5354 o.kind = "foo"; |
| 5355 o.lastModifiedInfo = buildLastModifiedInfo(); | 5355 o.lastModifiedInfo = buildLastModifiedInfo(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 5369 | 5369 |
| 5370 checkPlacementGroup(api.PlacementGroup o) { | 5370 checkPlacementGroup(api.PlacementGroup o) { |
| 5371 buildCounterPlacementGroup++; | 5371 buildCounterPlacementGroup++; |
| 5372 if (buildCounterPlacementGroup < 3) { | 5372 if (buildCounterPlacementGroup < 3) { |
| 5373 unittest.expect(o.accountId, unittest.equals('foo')); | 5373 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5374 unittest.expect(o.advertiserId, unittest.equals('foo')); | 5374 unittest.expect(o.advertiserId, unittest.equals('foo')); |
| 5375 checkDimensionValue(o.advertiserIdDimensionValue); | 5375 checkDimensionValue(o.advertiserIdDimensionValue); |
| 5376 unittest.expect(o.archived, unittest.isTrue); | 5376 unittest.expect(o.archived, unittest.isTrue); |
| 5377 unittest.expect(o.campaignId, unittest.equals('foo')); | 5377 unittest.expect(o.campaignId, unittest.equals('foo')); |
| 5378 checkDimensionValue(o.campaignIdDimensionValue); | 5378 checkDimensionValue(o.campaignIdDimensionValue); |
| 5379 checkUnnamed1415(o.childPlacementIds); | 5379 checkUnnamed2051(o.childPlacementIds); |
| 5380 unittest.expect(o.comment, unittest.equals('foo')); | 5380 unittest.expect(o.comment, unittest.equals('foo')); |
| 5381 unittest.expect(o.contentCategoryId, unittest.equals('foo')); | 5381 unittest.expect(o.contentCategoryId, unittest.equals('foo')); |
| 5382 checkLastModifiedInfo(o.createInfo); | 5382 checkLastModifiedInfo(o.createInfo); |
| 5383 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 5383 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 5384 checkDimensionValue(o.directorySiteIdDimensionValue); | 5384 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 5385 unittest.expect(o.externalId, unittest.equals('foo')); | 5385 unittest.expect(o.externalId, unittest.equals('foo')); |
| 5386 unittest.expect(o.id, unittest.equals('foo')); | 5386 unittest.expect(o.id, unittest.equals('foo')); |
| 5387 checkDimensionValue(o.idDimensionValue); | 5387 checkDimensionValue(o.idDimensionValue); |
| 5388 unittest.expect(o.kind, unittest.equals('foo')); | 5388 unittest.expect(o.kind, unittest.equals('foo')); |
| 5389 checkLastModifiedInfo(o.lastModifiedInfo); | 5389 checkLastModifiedInfo(o.lastModifiedInfo); |
| 5390 unittest.expect(o.name, unittest.equals('foo')); | 5390 unittest.expect(o.name, unittest.equals('foo')); |
| 5391 unittest.expect(o.placementGroupType, unittest.equals('foo')); | 5391 unittest.expect(o.placementGroupType, unittest.equals('foo')); |
| 5392 unittest.expect(o.placementStrategyId, unittest.equals('foo')); | 5392 unittest.expect(o.placementStrategyId, unittest.equals('foo')); |
| 5393 checkPricingSchedule(o.pricingSchedule); | 5393 checkPricingSchedule(o.pricingSchedule); |
| 5394 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); | 5394 unittest.expect(o.primaryPlacementId, unittest.equals('foo')); |
| 5395 checkDimensionValue(o.primaryPlacementIdDimensionValue); | 5395 checkDimensionValue(o.primaryPlacementIdDimensionValue); |
| 5396 unittest.expect(o.siteId, unittest.equals('foo')); | 5396 unittest.expect(o.siteId, unittest.equals('foo')); |
| 5397 checkDimensionValue(o.siteIdDimensionValue); | 5397 checkDimensionValue(o.siteIdDimensionValue); |
| 5398 unittest.expect(o.subaccountId, unittest.equals('foo')); | 5398 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 5399 } | 5399 } |
| 5400 buildCounterPlacementGroup--; | 5400 buildCounterPlacementGroup--; |
| 5401 } | 5401 } |
| 5402 | 5402 |
| 5403 buildUnnamed1416() { | 5403 buildUnnamed2052() { |
| 5404 var o = new core.List<api.PlacementGroup>(); | 5404 var o = new core.List<api.PlacementGroup>(); |
| 5405 o.add(buildPlacementGroup()); | 5405 o.add(buildPlacementGroup()); |
| 5406 o.add(buildPlacementGroup()); | 5406 o.add(buildPlacementGroup()); |
| 5407 return o; | 5407 return o; |
| 5408 } | 5408 } |
| 5409 | 5409 |
| 5410 checkUnnamed1416(core.List<api.PlacementGroup> o) { | 5410 checkUnnamed2052(core.List<api.PlacementGroup> o) { |
| 5411 unittest.expect(o, unittest.hasLength(2)); | 5411 unittest.expect(o, unittest.hasLength(2)); |
| 5412 checkPlacementGroup(o[0]); | 5412 checkPlacementGroup(o[0]); |
| 5413 checkPlacementGroup(o[1]); | 5413 checkPlacementGroup(o[1]); |
| 5414 } | 5414 } |
| 5415 | 5415 |
| 5416 core.int buildCounterPlacementGroupsListResponse = 0; | 5416 core.int buildCounterPlacementGroupsListResponse = 0; |
| 5417 buildPlacementGroupsListResponse() { | 5417 buildPlacementGroupsListResponse() { |
| 5418 var o = new api.PlacementGroupsListResponse(); | 5418 var o = new api.PlacementGroupsListResponse(); |
| 5419 buildCounterPlacementGroupsListResponse++; | 5419 buildCounterPlacementGroupsListResponse++; |
| 5420 if (buildCounterPlacementGroupsListResponse < 3) { | 5420 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5421 o.kind = "foo"; | 5421 o.kind = "foo"; |
| 5422 o.nextPageToken = "foo"; | 5422 o.nextPageToken = "foo"; |
| 5423 o.placementGroups = buildUnnamed1416(); | 5423 o.placementGroups = buildUnnamed2052(); |
| 5424 } | 5424 } |
| 5425 buildCounterPlacementGroupsListResponse--; | 5425 buildCounterPlacementGroupsListResponse--; |
| 5426 return o; | 5426 return o; |
| 5427 } | 5427 } |
| 5428 | 5428 |
| 5429 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { | 5429 checkPlacementGroupsListResponse(api.PlacementGroupsListResponse o) { |
| 5430 buildCounterPlacementGroupsListResponse++; | 5430 buildCounterPlacementGroupsListResponse++; |
| 5431 if (buildCounterPlacementGroupsListResponse < 3) { | 5431 if (buildCounterPlacementGroupsListResponse < 3) { |
| 5432 unittest.expect(o.kind, unittest.equals('foo')); | 5432 unittest.expect(o.kind, unittest.equals('foo')); |
| 5433 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5433 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5434 checkUnnamed1416(o.placementGroups); | 5434 checkUnnamed2052(o.placementGroups); |
| 5435 } | 5435 } |
| 5436 buildCounterPlacementGroupsListResponse--; | 5436 buildCounterPlacementGroupsListResponse--; |
| 5437 } | 5437 } |
| 5438 | 5438 |
| 5439 buildUnnamed1417() { | 5439 buildUnnamed2053() { |
| 5440 var o = new core.List<api.PlacementStrategy>(); | 5440 var o = new core.List<api.PlacementStrategy>(); |
| 5441 o.add(buildPlacementStrategy()); | 5441 o.add(buildPlacementStrategy()); |
| 5442 o.add(buildPlacementStrategy()); | 5442 o.add(buildPlacementStrategy()); |
| 5443 return o; | 5443 return o; |
| 5444 } | 5444 } |
| 5445 | 5445 |
| 5446 checkUnnamed1417(core.List<api.PlacementStrategy> o) { | 5446 checkUnnamed2053(core.List<api.PlacementStrategy> o) { |
| 5447 unittest.expect(o, unittest.hasLength(2)); | 5447 unittest.expect(o, unittest.hasLength(2)); |
| 5448 checkPlacementStrategy(o[0]); | 5448 checkPlacementStrategy(o[0]); |
| 5449 checkPlacementStrategy(o[1]); | 5449 checkPlacementStrategy(o[1]); |
| 5450 } | 5450 } |
| 5451 | 5451 |
| 5452 core.int buildCounterPlacementStrategiesListResponse = 0; | 5452 core.int buildCounterPlacementStrategiesListResponse = 0; |
| 5453 buildPlacementStrategiesListResponse() { | 5453 buildPlacementStrategiesListResponse() { |
| 5454 var o = new api.PlacementStrategiesListResponse(); | 5454 var o = new api.PlacementStrategiesListResponse(); |
| 5455 buildCounterPlacementStrategiesListResponse++; | 5455 buildCounterPlacementStrategiesListResponse++; |
| 5456 if (buildCounterPlacementStrategiesListResponse < 3) { | 5456 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5457 o.kind = "foo"; | 5457 o.kind = "foo"; |
| 5458 o.nextPageToken = "foo"; | 5458 o.nextPageToken = "foo"; |
| 5459 o.placementStrategies = buildUnnamed1417(); | 5459 o.placementStrategies = buildUnnamed2053(); |
| 5460 } | 5460 } |
| 5461 buildCounterPlacementStrategiesListResponse--; | 5461 buildCounterPlacementStrategiesListResponse--; |
| 5462 return o; | 5462 return o; |
| 5463 } | 5463 } |
| 5464 | 5464 |
| 5465 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { | 5465 checkPlacementStrategiesListResponse(api.PlacementStrategiesListResponse o) { |
| 5466 buildCounterPlacementStrategiesListResponse++; | 5466 buildCounterPlacementStrategiesListResponse++; |
| 5467 if (buildCounterPlacementStrategiesListResponse < 3) { | 5467 if (buildCounterPlacementStrategiesListResponse < 3) { |
| 5468 unittest.expect(o.kind, unittest.equals('foo')); | 5468 unittest.expect(o.kind, unittest.equals('foo')); |
| 5469 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5469 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5470 checkUnnamed1417(o.placementStrategies); | 5470 checkUnnamed2053(o.placementStrategies); |
| 5471 } | 5471 } |
| 5472 buildCounterPlacementStrategiesListResponse--; | 5472 buildCounterPlacementStrategiesListResponse--; |
| 5473 } | 5473 } |
| 5474 | 5474 |
| 5475 core.int buildCounterPlacementStrategy = 0; | 5475 core.int buildCounterPlacementStrategy = 0; |
| 5476 buildPlacementStrategy() { | 5476 buildPlacementStrategy() { |
| 5477 var o = new api.PlacementStrategy(); | 5477 var o = new api.PlacementStrategy(); |
| 5478 buildCounterPlacementStrategy++; | 5478 buildCounterPlacementStrategy++; |
| 5479 if (buildCounterPlacementStrategy < 3) { | 5479 if (buildCounterPlacementStrategy < 3) { |
| 5480 o.accountId = "foo"; | 5480 o.accountId = "foo"; |
| 5481 o.id = "foo"; | 5481 o.id = "foo"; |
| 5482 o.kind = "foo"; | 5482 o.kind = "foo"; |
| 5483 o.name = "foo"; | 5483 o.name = "foo"; |
| 5484 } | 5484 } |
| 5485 buildCounterPlacementStrategy--; | 5485 buildCounterPlacementStrategy--; |
| 5486 return o; | 5486 return o; |
| 5487 } | 5487 } |
| 5488 | 5488 |
| 5489 checkPlacementStrategy(api.PlacementStrategy o) { | 5489 checkPlacementStrategy(api.PlacementStrategy o) { |
| 5490 buildCounterPlacementStrategy++; | 5490 buildCounterPlacementStrategy++; |
| 5491 if (buildCounterPlacementStrategy < 3) { | 5491 if (buildCounterPlacementStrategy < 3) { |
| 5492 unittest.expect(o.accountId, unittest.equals('foo')); | 5492 unittest.expect(o.accountId, unittest.equals('foo')); |
| 5493 unittest.expect(o.id, unittest.equals('foo')); | 5493 unittest.expect(o.id, unittest.equals('foo')); |
| 5494 unittest.expect(o.kind, unittest.equals('foo')); | 5494 unittest.expect(o.kind, unittest.equals('foo')); |
| 5495 unittest.expect(o.name, unittest.equals('foo')); | 5495 unittest.expect(o.name, unittest.equals('foo')); |
| 5496 } | 5496 } |
| 5497 buildCounterPlacementStrategy--; | 5497 buildCounterPlacementStrategy--; |
| 5498 } | 5498 } |
| 5499 | 5499 |
| 5500 buildUnnamed1418() { | 5500 buildUnnamed2054() { |
| 5501 var o = new core.List<api.TagData>(); | 5501 var o = new core.List<api.TagData>(); |
| 5502 o.add(buildTagData()); | 5502 o.add(buildTagData()); |
| 5503 o.add(buildTagData()); | 5503 o.add(buildTagData()); |
| 5504 return o; | 5504 return o; |
| 5505 } | 5505 } |
| 5506 | 5506 |
| 5507 checkUnnamed1418(core.List<api.TagData> o) { | 5507 checkUnnamed2054(core.List<api.TagData> o) { |
| 5508 unittest.expect(o, unittest.hasLength(2)); | 5508 unittest.expect(o, unittest.hasLength(2)); |
| 5509 checkTagData(o[0]); | 5509 checkTagData(o[0]); |
| 5510 checkTagData(o[1]); | 5510 checkTagData(o[1]); |
| 5511 } | 5511 } |
| 5512 | 5512 |
| 5513 core.int buildCounterPlacementTag = 0; | 5513 core.int buildCounterPlacementTag = 0; |
| 5514 buildPlacementTag() { | 5514 buildPlacementTag() { |
| 5515 var o = new api.PlacementTag(); | 5515 var o = new api.PlacementTag(); |
| 5516 buildCounterPlacementTag++; | 5516 buildCounterPlacementTag++; |
| 5517 if (buildCounterPlacementTag < 3) { | 5517 if (buildCounterPlacementTag < 3) { |
| 5518 o.placementId = "foo"; | 5518 o.placementId = "foo"; |
| 5519 o.tagDatas = buildUnnamed1418(); | 5519 o.tagDatas = buildUnnamed2054(); |
| 5520 } | 5520 } |
| 5521 buildCounterPlacementTag--; | 5521 buildCounterPlacementTag--; |
| 5522 return o; | 5522 return o; |
| 5523 } | 5523 } |
| 5524 | 5524 |
| 5525 checkPlacementTag(api.PlacementTag o) { | 5525 checkPlacementTag(api.PlacementTag o) { |
| 5526 buildCounterPlacementTag++; | 5526 buildCounterPlacementTag++; |
| 5527 if (buildCounterPlacementTag < 3) { | 5527 if (buildCounterPlacementTag < 3) { |
| 5528 unittest.expect(o.placementId, unittest.equals('foo')); | 5528 unittest.expect(o.placementId, unittest.equals('foo')); |
| 5529 checkUnnamed1418(o.tagDatas); | 5529 checkUnnamed2054(o.tagDatas); |
| 5530 } | 5530 } |
| 5531 buildCounterPlacementTag--; | 5531 buildCounterPlacementTag--; |
| 5532 } | 5532 } |
| 5533 | 5533 |
| 5534 buildUnnamed1419() { | 5534 buildUnnamed2055() { |
| 5535 var o = new core.List<api.PlacementTag>(); | 5535 var o = new core.List<api.PlacementTag>(); |
| 5536 o.add(buildPlacementTag()); | 5536 o.add(buildPlacementTag()); |
| 5537 o.add(buildPlacementTag()); | 5537 o.add(buildPlacementTag()); |
| 5538 return o; | 5538 return o; |
| 5539 } | 5539 } |
| 5540 | 5540 |
| 5541 checkUnnamed1419(core.List<api.PlacementTag> o) { | 5541 checkUnnamed2055(core.List<api.PlacementTag> o) { |
| 5542 unittest.expect(o, unittest.hasLength(2)); | 5542 unittest.expect(o, unittest.hasLength(2)); |
| 5543 checkPlacementTag(o[0]); | 5543 checkPlacementTag(o[0]); |
| 5544 checkPlacementTag(o[1]); | 5544 checkPlacementTag(o[1]); |
| 5545 } | 5545 } |
| 5546 | 5546 |
| 5547 core.int buildCounterPlacementsGenerateTagsResponse = 0; | 5547 core.int buildCounterPlacementsGenerateTagsResponse = 0; |
| 5548 buildPlacementsGenerateTagsResponse() { | 5548 buildPlacementsGenerateTagsResponse() { |
| 5549 var o = new api.PlacementsGenerateTagsResponse(); | 5549 var o = new api.PlacementsGenerateTagsResponse(); |
| 5550 buildCounterPlacementsGenerateTagsResponse++; | 5550 buildCounterPlacementsGenerateTagsResponse++; |
| 5551 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5551 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5552 o.kind = "foo"; | 5552 o.kind = "foo"; |
| 5553 o.placementTags = buildUnnamed1419(); | 5553 o.placementTags = buildUnnamed2055(); |
| 5554 } | 5554 } |
| 5555 buildCounterPlacementsGenerateTagsResponse--; | 5555 buildCounterPlacementsGenerateTagsResponse--; |
| 5556 return o; | 5556 return o; |
| 5557 } | 5557 } |
| 5558 | 5558 |
| 5559 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { | 5559 checkPlacementsGenerateTagsResponse(api.PlacementsGenerateTagsResponse o) { |
| 5560 buildCounterPlacementsGenerateTagsResponse++; | 5560 buildCounterPlacementsGenerateTagsResponse++; |
| 5561 if (buildCounterPlacementsGenerateTagsResponse < 3) { | 5561 if (buildCounterPlacementsGenerateTagsResponse < 3) { |
| 5562 unittest.expect(o.kind, unittest.equals('foo')); | 5562 unittest.expect(o.kind, unittest.equals('foo')); |
| 5563 checkUnnamed1419(o.placementTags); | 5563 checkUnnamed2055(o.placementTags); |
| 5564 } | 5564 } |
| 5565 buildCounterPlacementsGenerateTagsResponse--; | 5565 buildCounterPlacementsGenerateTagsResponse--; |
| 5566 } | 5566 } |
| 5567 | 5567 |
| 5568 buildUnnamed1420() { | 5568 buildUnnamed2056() { |
| 5569 var o = new core.List<api.Placement>(); | 5569 var o = new core.List<api.Placement>(); |
| 5570 o.add(buildPlacement()); | 5570 o.add(buildPlacement()); |
| 5571 o.add(buildPlacement()); | 5571 o.add(buildPlacement()); |
| 5572 return o; | 5572 return o; |
| 5573 } | 5573 } |
| 5574 | 5574 |
| 5575 checkUnnamed1420(core.List<api.Placement> o) { | 5575 checkUnnamed2056(core.List<api.Placement> o) { |
| 5576 unittest.expect(o, unittest.hasLength(2)); | 5576 unittest.expect(o, unittest.hasLength(2)); |
| 5577 checkPlacement(o[0]); | 5577 checkPlacement(o[0]); |
| 5578 checkPlacement(o[1]); | 5578 checkPlacement(o[1]); |
| 5579 } | 5579 } |
| 5580 | 5580 |
| 5581 core.int buildCounterPlacementsListResponse = 0; | 5581 core.int buildCounterPlacementsListResponse = 0; |
| 5582 buildPlacementsListResponse() { | 5582 buildPlacementsListResponse() { |
| 5583 var o = new api.PlacementsListResponse(); | 5583 var o = new api.PlacementsListResponse(); |
| 5584 buildCounterPlacementsListResponse++; | 5584 buildCounterPlacementsListResponse++; |
| 5585 if (buildCounterPlacementsListResponse < 3) { | 5585 if (buildCounterPlacementsListResponse < 3) { |
| 5586 o.kind = "foo"; | 5586 o.kind = "foo"; |
| 5587 o.nextPageToken = "foo"; | 5587 o.nextPageToken = "foo"; |
| 5588 o.placements = buildUnnamed1420(); | 5588 o.placements = buildUnnamed2056(); |
| 5589 } | 5589 } |
| 5590 buildCounterPlacementsListResponse--; | 5590 buildCounterPlacementsListResponse--; |
| 5591 return o; | 5591 return o; |
| 5592 } | 5592 } |
| 5593 | 5593 |
| 5594 checkPlacementsListResponse(api.PlacementsListResponse o) { | 5594 checkPlacementsListResponse(api.PlacementsListResponse o) { |
| 5595 buildCounterPlacementsListResponse++; | 5595 buildCounterPlacementsListResponse++; |
| 5596 if (buildCounterPlacementsListResponse < 3) { | 5596 if (buildCounterPlacementsListResponse < 3) { |
| 5597 unittest.expect(o.kind, unittest.equals('foo')); | 5597 unittest.expect(o.kind, unittest.equals('foo')); |
| 5598 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5598 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5599 checkUnnamed1420(o.placements); | 5599 checkUnnamed2056(o.placements); |
| 5600 } | 5600 } |
| 5601 buildCounterPlacementsListResponse--; | 5601 buildCounterPlacementsListResponse--; |
| 5602 } | 5602 } |
| 5603 | 5603 |
| 5604 core.int buildCounterPlatformType = 0; | 5604 core.int buildCounterPlatformType = 0; |
| 5605 buildPlatformType() { | 5605 buildPlatformType() { |
| 5606 var o = new api.PlatformType(); | 5606 var o = new api.PlatformType(); |
| 5607 buildCounterPlatformType++; | 5607 buildCounterPlatformType++; |
| 5608 if (buildCounterPlatformType < 3) { | 5608 if (buildCounterPlatformType < 3) { |
| 5609 o.id = "foo"; | 5609 o.id = "foo"; |
| 5610 o.kind = "foo"; | 5610 o.kind = "foo"; |
| 5611 o.name = "foo"; | 5611 o.name = "foo"; |
| 5612 } | 5612 } |
| 5613 buildCounterPlatformType--; | 5613 buildCounterPlatformType--; |
| 5614 return o; | 5614 return o; |
| 5615 } | 5615 } |
| 5616 | 5616 |
| 5617 checkPlatformType(api.PlatformType o) { | 5617 checkPlatformType(api.PlatformType o) { |
| 5618 buildCounterPlatformType++; | 5618 buildCounterPlatformType++; |
| 5619 if (buildCounterPlatformType < 3) { | 5619 if (buildCounterPlatformType < 3) { |
| 5620 unittest.expect(o.id, unittest.equals('foo')); | 5620 unittest.expect(o.id, unittest.equals('foo')); |
| 5621 unittest.expect(o.kind, unittest.equals('foo')); | 5621 unittest.expect(o.kind, unittest.equals('foo')); |
| 5622 unittest.expect(o.name, unittest.equals('foo')); | 5622 unittest.expect(o.name, unittest.equals('foo')); |
| 5623 } | 5623 } |
| 5624 buildCounterPlatformType--; | 5624 buildCounterPlatformType--; |
| 5625 } | 5625 } |
| 5626 | 5626 |
| 5627 buildUnnamed1421() { | 5627 buildUnnamed2057() { |
| 5628 var o = new core.List<api.PlatformType>(); | 5628 var o = new core.List<api.PlatformType>(); |
| 5629 o.add(buildPlatformType()); | 5629 o.add(buildPlatformType()); |
| 5630 o.add(buildPlatformType()); | 5630 o.add(buildPlatformType()); |
| 5631 return o; | 5631 return o; |
| 5632 } | 5632 } |
| 5633 | 5633 |
| 5634 checkUnnamed1421(core.List<api.PlatformType> o) { | 5634 checkUnnamed2057(core.List<api.PlatformType> o) { |
| 5635 unittest.expect(o, unittest.hasLength(2)); | 5635 unittest.expect(o, unittest.hasLength(2)); |
| 5636 checkPlatformType(o[0]); | 5636 checkPlatformType(o[0]); |
| 5637 checkPlatformType(o[1]); | 5637 checkPlatformType(o[1]); |
| 5638 } | 5638 } |
| 5639 | 5639 |
| 5640 core.int buildCounterPlatformTypesListResponse = 0; | 5640 core.int buildCounterPlatformTypesListResponse = 0; |
| 5641 buildPlatformTypesListResponse() { | 5641 buildPlatformTypesListResponse() { |
| 5642 var o = new api.PlatformTypesListResponse(); | 5642 var o = new api.PlatformTypesListResponse(); |
| 5643 buildCounterPlatformTypesListResponse++; | 5643 buildCounterPlatformTypesListResponse++; |
| 5644 if (buildCounterPlatformTypesListResponse < 3) { | 5644 if (buildCounterPlatformTypesListResponse < 3) { |
| 5645 o.kind = "foo"; | 5645 o.kind = "foo"; |
| 5646 o.platformTypes = buildUnnamed1421(); | 5646 o.platformTypes = buildUnnamed2057(); |
| 5647 } | 5647 } |
| 5648 buildCounterPlatformTypesListResponse--; | 5648 buildCounterPlatformTypesListResponse--; |
| 5649 return o; | 5649 return o; |
| 5650 } | 5650 } |
| 5651 | 5651 |
| 5652 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { | 5652 checkPlatformTypesListResponse(api.PlatformTypesListResponse o) { |
| 5653 buildCounterPlatformTypesListResponse++; | 5653 buildCounterPlatformTypesListResponse++; |
| 5654 if (buildCounterPlatformTypesListResponse < 3) { | 5654 if (buildCounterPlatformTypesListResponse < 3) { |
| 5655 unittest.expect(o.kind, unittest.equals('foo')); | 5655 unittest.expect(o.kind, unittest.equals('foo')); |
| 5656 checkUnnamed1421(o.platformTypes); | 5656 checkUnnamed2057(o.platformTypes); |
| 5657 } | 5657 } |
| 5658 buildCounterPlatformTypesListResponse--; | 5658 buildCounterPlatformTypesListResponse--; |
| 5659 } | 5659 } |
| 5660 | 5660 |
| 5661 core.int buildCounterPopupWindowProperties = 0; | 5661 core.int buildCounterPopupWindowProperties = 0; |
| 5662 buildPopupWindowProperties() { | 5662 buildPopupWindowProperties() { |
| 5663 var o = new api.PopupWindowProperties(); | 5663 var o = new api.PopupWindowProperties(); |
| 5664 buildCounterPopupWindowProperties++; | 5664 buildCounterPopupWindowProperties++; |
| 5665 if (buildCounterPopupWindowProperties < 3) { | 5665 if (buildCounterPopupWindowProperties < 3) { |
| 5666 o.dimension = buildSize(); | 5666 o.dimension = buildSize(); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5713 if (buildCounterPostalCode < 3) { | 5713 if (buildCounterPostalCode < 3) { |
| 5714 unittest.expect(o.code, unittest.equals('foo')); | 5714 unittest.expect(o.code, unittest.equals('foo')); |
| 5715 unittest.expect(o.countryCode, unittest.equals('foo')); | 5715 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 5716 unittest.expect(o.countryDartId, unittest.equals('foo')); | 5716 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 5717 unittest.expect(o.id, unittest.equals('foo')); | 5717 unittest.expect(o.id, unittest.equals('foo')); |
| 5718 unittest.expect(o.kind, unittest.equals('foo')); | 5718 unittest.expect(o.kind, unittest.equals('foo')); |
| 5719 } | 5719 } |
| 5720 buildCounterPostalCode--; | 5720 buildCounterPostalCode--; |
| 5721 } | 5721 } |
| 5722 | 5722 |
| 5723 buildUnnamed1422() { | 5723 buildUnnamed2058() { |
| 5724 var o = new core.List<api.PostalCode>(); | 5724 var o = new core.List<api.PostalCode>(); |
| 5725 o.add(buildPostalCode()); | 5725 o.add(buildPostalCode()); |
| 5726 o.add(buildPostalCode()); | 5726 o.add(buildPostalCode()); |
| 5727 return o; | 5727 return o; |
| 5728 } | 5728 } |
| 5729 | 5729 |
| 5730 checkUnnamed1422(core.List<api.PostalCode> o) { | 5730 checkUnnamed2058(core.List<api.PostalCode> o) { |
| 5731 unittest.expect(o, unittest.hasLength(2)); | 5731 unittest.expect(o, unittest.hasLength(2)); |
| 5732 checkPostalCode(o[0]); | 5732 checkPostalCode(o[0]); |
| 5733 checkPostalCode(o[1]); | 5733 checkPostalCode(o[1]); |
| 5734 } | 5734 } |
| 5735 | 5735 |
| 5736 core.int buildCounterPostalCodesListResponse = 0; | 5736 core.int buildCounterPostalCodesListResponse = 0; |
| 5737 buildPostalCodesListResponse() { | 5737 buildPostalCodesListResponse() { |
| 5738 var o = new api.PostalCodesListResponse(); | 5738 var o = new api.PostalCodesListResponse(); |
| 5739 buildCounterPostalCodesListResponse++; | 5739 buildCounterPostalCodesListResponse++; |
| 5740 if (buildCounterPostalCodesListResponse < 3) { | 5740 if (buildCounterPostalCodesListResponse < 3) { |
| 5741 o.kind = "foo"; | 5741 o.kind = "foo"; |
| 5742 o.postalCodes = buildUnnamed1422(); | 5742 o.postalCodes = buildUnnamed2058(); |
| 5743 } | 5743 } |
| 5744 buildCounterPostalCodesListResponse--; | 5744 buildCounterPostalCodesListResponse--; |
| 5745 return o; | 5745 return o; |
| 5746 } | 5746 } |
| 5747 | 5747 |
| 5748 checkPostalCodesListResponse(api.PostalCodesListResponse o) { | 5748 checkPostalCodesListResponse(api.PostalCodesListResponse o) { |
| 5749 buildCounterPostalCodesListResponse++; | 5749 buildCounterPostalCodesListResponse++; |
| 5750 if (buildCounterPostalCodesListResponse < 3) { | 5750 if (buildCounterPostalCodesListResponse < 3) { |
| 5751 unittest.expect(o.kind, unittest.equals('foo')); | 5751 unittest.expect(o.kind, unittest.equals('foo')); |
| 5752 checkUnnamed1422(o.postalCodes); | 5752 checkUnnamed2058(o.postalCodes); |
| 5753 } | 5753 } |
| 5754 buildCounterPostalCodesListResponse--; | 5754 buildCounterPostalCodesListResponse--; |
| 5755 } | 5755 } |
| 5756 | 5756 |
| 5757 buildUnnamed1423() { | 5757 buildUnnamed2059() { |
| 5758 var o = new core.List<api.Flight>(); | 5758 var o = new core.List<api.Flight>(); |
| 5759 o.add(buildFlight()); | 5759 o.add(buildFlight()); |
| 5760 o.add(buildFlight()); | 5760 o.add(buildFlight()); |
| 5761 return o; | 5761 return o; |
| 5762 } | 5762 } |
| 5763 | 5763 |
| 5764 checkUnnamed1423(core.List<api.Flight> o) { | 5764 checkUnnamed2059(core.List<api.Flight> o) { |
| 5765 unittest.expect(o, unittest.hasLength(2)); | 5765 unittest.expect(o, unittest.hasLength(2)); |
| 5766 checkFlight(o[0]); | 5766 checkFlight(o[0]); |
| 5767 checkFlight(o[1]); | 5767 checkFlight(o[1]); |
| 5768 } | 5768 } |
| 5769 | 5769 |
| 5770 core.int buildCounterPricing = 0; | 5770 core.int buildCounterPricing = 0; |
| 5771 buildPricing() { | 5771 buildPricing() { |
| 5772 var o = new api.Pricing(); | 5772 var o = new api.Pricing(); |
| 5773 buildCounterPricing++; | 5773 buildCounterPricing++; |
| 5774 if (buildCounterPricing < 3) { | 5774 if (buildCounterPricing < 3) { |
| 5775 o.capCostType = "foo"; | 5775 o.capCostType = "foo"; |
| 5776 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5776 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5777 o.flights = buildUnnamed1423(); | 5777 o.flights = buildUnnamed2059(); |
| 5778 o.groupType = "foo"; | 5778 o.groupType = "foo"; |
| 5779 o.pricingType = "foo"; | 5779 o.pricingType = "foo"; |
| 5780 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5780 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5781 } | 5781 } |
| 5782 buildCounterPricing--; | 5782 buildCounterPricing--; |
| 5783 return o; | 5783 return o; |
| 5784 } | 5784 } |
| 5785 | 5785 |
| 5786 checkPricing(api.Pricing o) { | 5786 checkPricing(api.Pricing o) { |
| 5787 buildCounterPricing++; | 5787 buildCounterPricing++; |
| 5788 if (buildCounterPricing < 3) { | 5788 if (buildCounterPricing < 3) { |
| 5789 unittest.expect(o.capCostType, unittest.equals('foo')); | 5789 unittest.expect(o.capCostType, unittest.equals('foo')); |
| 5790 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5790 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 5791 checkUnnamed1423(o.flights); | 5791 checkUnnamed2059(o.flights); |
| 5792 unittest.expect(o.groupType, unittest.equals('foo')); | 5792 unittest.expect(o.groupType, unittest.equals('foo')); |
| 5793 unittest.expect(o.pricingType, unittest.equals('foo')); | 5793 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 5794 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5794 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 5795 } | 5795 } |
| 5796 buildCounterPricing--; | 5796 buildCounterPricing--; |
| 5797 } | 5797 } |
| 5798 | 5798 |
| 5799 buildUnnamed1424() { | 5799 buildUnnamed2060() { |
| 5800 var o = new core.List<api.PricingSchedulePricingPeriod>(); | 5800 var o = new core.List<api.PricingSchedulePricingPeriod>(); |
| 5801 o.add(buildPricingSchedulePricingPeriod()); | 5801 o.add(buildPricingSchedulePricingPeriod()); |
| 5802 o.add(buildPricingSchedulePricingPeriod()); | 5802 o.add(buildPricingSchedulePricingPeriod()); |
| 5803 return o; | 5803 return o; |
| 5804 } | 5804 } |
| 5805 | 5805 |
| 5806 checkUnnamed1424(core.List<api.PricingSchedulePricingPeriod> o) { | 5806 checkUnnamed2060(core.List<api.PricingSchedulePricingPeriod> o) { |
| 5807 unittest.expect(o, unittest.hasLength(2)); | 5807 unittest.expect(o, unittest.hasLength(2)); |
| 5808 checkPricingSchedulePricingPeriod(o[0]); | 5808 checkPricingSchedulePricingPeriod(o[0]); |
| 5809 checkPricingSchedulePricingPeriod(o[1]); | 5809 checkPricingSchedulePricingPeriod(o[1]); |
| 5810 } | 5810 } |
| 5811 | 5811 |
| 5812 core.int buildCounterPricingSchedule = 0; | 5812 core.int buildCounterPricingSchedule = 0; |
| 5813 buildPricingSchedule() { | 5813 buildPricingSchedule() { |
| 5814 var o = new api.PricingSchedule(); | 5814 var o = new api.PricingSchedule(); |
| 5815 buildCounterPricingSchedule++; | 5815 buildCounterPricingSchedule++; |
| 5816 if (buildCounterPricingSchedule < 3) { | 5816 if (buildCounterPricingSchedule < 3) { |
| 5817 o.capCostOption = "foo"; | 5817 o.capCostOption = "foo"; |
| 5818 o.disregardOverdelivery = true; | 5818 o.disregardOverdelivery = true; |
| 5819 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5819 o.endDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5820 o.flighted = true; | 5820 o.flighted = true; |
| 5821 o.floodlightActivityId = "foo"; | 5821 o.floodlightActivityId = "foo"; |
| 5822 o.pricingPeriods = buildUnnamed1424(); | 5822 o.pricingPeriods = buildUnnamed2060(); |
| 5823 o.pricingType = "foo"; | 5823 o.pricingType = "foo"; |
| 5824 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5824 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5825 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 5825 o.testingStartDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 5826 } | 5826 } |
| 5827 buildCounterPricingSchedule--; | 5827 buildCounterPricingSchedule--; |
| 5828 return o; | 5828 return o; |
| 5829 } | 5829 } |
| 5830 | 5830 |
| 5831 checkPricingSchedule(api.PricingSchedule o) { | 5831 checkPricingSchedule(api.PricingSchedule o) { |
| 5832 buildCounterPricingSchedule++; | 5832 buildCounterPricingSchedule++; |
| 5833 if (buildCounterPricingSchedule < 3) { | 5833 if (buildCounterPricingSchedule < 3) { |
| 5834 unittest.expect(o.capCostOption, unittest.equals('foo')); | 5834 unittest.expect(o.capCostOption, unittest.equals('foo')); |
| 5835 unittest.expect(o.disregardOverdelivery, unittest.isTrue); | 5835 unittest.expect(o.disregardOverdelivery, unittest.isTrue); |
| 5836 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); | 5836 unittest.expect(o.endDate, unittest.equals(core.DateTime.parse("2002-02-27T0
0:00:00"))); |
| 5837 unittest.expect(o.flighted, unittest.isTrue); | 5837 unittest.expect(o.flighted, unittest.isTrue); |
| 5838 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); | 5838 unittest.expect(o.floodlightActivityId, unittest.equals('foo')); |
| 5839 checkUnnamed1424(o.pricingPeriods); | 5839 checkUnnamed2060(o.pricingPeriods); |
| 5840 unittest.expect(o.pricingType, unittest.equals('foo')); | 5840 unittest.expect(o.pricingType, unittest.equals('foo')); |
| 5841 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 5841 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 5842 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); | 5842 unittest.expect(o.testingStartDate, unittest.equals(core.DateTime.parse("200
2-02-27T00:00:00"))); |
| 5843 } | 5843 } |
| 5844 buildCounterPricingSchedule--; | 5844 buildCounterPricingSchedule--; |
| 5845 } | 5845 } |
| 5846 | 5846 |
| 5847 core.int buildCounterPricingSchedulePricingPeriod = 0; | 5847 core.int buildCounterPricingSchedulePricingPeriod = 0; |
| 5848 buildPricingSchedulePricingPeriod() { | 5848 buildPricingSchedulePricingPeriod() { |
| 5849 var o = new api.PricingSchedulePricingPeriod(); | 5849 var o = new api.PricingSchedulePricingPeriod(); |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5923 unittest.expect(o.targetClicks, unittest.equals('foo')); | 5923 unittest.expect(o.targetClicks, unittest.equals('foo')); |
| 5924 unittest.expect(o.targetConversions, unittest.equals('foo')); | 5924 unittest.expect(o.targetConversions, unittest.equals('foo')); |
| 5925 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); | 5925 unittest.expect(o.targetCpaNanos, unittest.equals('foo')); |
| 5926 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); | 5926 unittest.expect(o.targetCpcNanos, unittest.equals('foo')); |
| 5927 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); | 5927 unittest.expect(o.targetCpmNanos, unittest.equals('foo')); |
| 5928 unittest.expect(o.targetImpressions, unittest.equals('foo')); | 5928 unittest.expect(o.targetImpressions, unittest.equals('foo')); |
| 5929 } | 5929 } |
| 5930 buildCounterProject--; | 5930 buildCounterProject--; |
| 5931 } | 5931 } |
| 5932 | 5932 |
| 5933 buildUnnamed1425() { | 5933 buildUnnamed2061() { |
| 5934 var o = new core.List<api.Project>(); | 5934 var o = new core.List<api.Project>(); |
| 5935 o.add(buildProject()); | 5935 o.add(buildProject()); |
| 5936 o.add(buildProject()); | 5936 o.add(buildProject()); |
| 5937 return o; | 5937 return o; |
| 5938 } | 5938 } |
| 5939 | 5939 |
| 5940 checkUnnamed1425(core.List<api.Project> o) { | 5940 checkUnnamed2061(core.List<api.Project> o) { |
| 5941 unittest.expect(o, unittest.hasLength(2)); | 5941 unittest.expect(o, unittest.hasLength(2)); |
| 5942 checkProject(o[0]); | 5942 checkProject(o[0]); |
| 5943 checkProject(o[1]); | 5943 checkProject(o[1]); |
| 5944 } | 5944 } |
| 5945 | 5945 |
| 5946 core.int buildCounterProjectsListResponse = 0; | 5946 core.int buildCounterProjectsListResponse = 0; |
| 5947 buildProjectsListResponse() { | 5947 buildProjectsListResponse() { |
| 5948 var o = new api.ProjectsListResponse(); | 5948 var o = new api.ProjectsListResponse(); |
| 5949 buildCounterProjectsListResponse++; | 5949 buildCounterProjectsListResponse++; |
| 5950 if (buildCounterProjectsListResponse < 3) { | 5950 if (buildCounterProjectsListResponse < 3) { |
| 5951 o.kind = "foo"; | 5951 o.kind = "foo"; |
| 5952 o.nextPageToken = "foo"; | 5952 o.nextPageToken = "foo"; |
| 5953 o.projects = buildUnnamed1425(); | 5953 o.projects = buildUnnamed2061(); |
| 5954 } | 5954 } |
| 5955 buildCounterProjectsListResponse--; | 5955 buildCounterProjectsListResponse--; |
| 5956 return o; | 5956 return o; |
| 5957 } | 5957 } |
| 5958 | 5958 |
| 5959 checkProjectsListResponse(api.ProjectsListResponse o) { | 5959 checkProjectsListResponse(api.ProjectsListResponse o) { |
| 5960 buildCounterProjectsListResponse++; | 5960 buildCounterProjectsListResponse++; |
| 5961 if (buildCounterProjectsListResponse < 3) { | 5961 if (buildCounterProjectsListResponse < 3) { |
| 5962 unittest.expect(o.kind, unittest.equals('foo')); | 5962 unittest.expect(o.kind, unittest.equals('foo')); |
| 5963 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 5963 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 5964 checkUnnamed1425(o.projects); | 5964 checkUnnamed2061(o.projects); |
| 5965 } | 5965 } |
| 5966 buildCounterProjectsListResponse--; | 5966 buildCounterProjectsListResponse--; |
| 5967 } | 5967 } |
| 5968 | 5968 |
| 5969 buildUnnamed1426() { | 5969 buildUnnamed2062() { |
| 5970 var o = new core.List<api.Dimension>(); | 5970 var o = new core.List<api.Dimension>(); |
| 5971 o.add(buildDimension()); | 5971 o.add(buildDimension()); |
| 5972 o.add(buildDimension()); | 5972 o.add(buildDimension()); |
| 5973 return o; | 5973 return o; |
| 5974 } | 5974 } |
| 5975 | 5975 |
| 5976 checkUnnamed1426(core.List<api.Dimension> o) { | 5976 checkUnnamed2062(core.List<api.Dimension> o) { |
| 5977 unittest.expect(o, unittest.hasLength(2)); | 5977 unittest.expect(o, unittest.hasLength(2)); |
| 5978 checkDimension(o[0]); | 5978 checkDimension(o[0]); |
| 5979 checkDimension(o[1]); | 5979 checkDimension(o[1]); |
| 5980 } | 5980 } |
| 5981 | 5981 |
| 5982 buildUnnamed1427() { | 5982 buildUnnamed2063() { |
| 5983 var o = new core.List<api.Dimension>(); | 5983 var o = new core.List<api.Dimension>(); |
| 5984 o.add(buildDimension()); | 5984 o.add(buildDimension()); |
| 5985 o.add(buildDimension()); | 5985 o.add(buildDimension()); |
| 5986 return o; | 5986 return o; |
| 5987 } | 5987 } |
| 5988 | 5988 |
| 5989 checkUnnamed1427(core.List<api.Dimension> o) { | 5989 checkUnnamed2063(core.List<api.Dimension> o) { |
| 5990 unittest.expect(o, unittest.hasLength(2)); | 5990 unittest.expect(o, unittest.hasLength(2)); |
| 5991 checkDimension(o[0]); | 5991 checkDimension(o[0]); |
| 5992 checkDimension(o[1]); | 5992 checkDimension(o[1]); |
| 5993 } | 5993 } |
| 5994 | 5994 |
| 5995 buildUnnamed1428() { | 5995 buildUnnamed2064() { |
| 5996 var o = new core.List<api.Metric>(); | 5996 var o = new core.List<api.Metric>(); |
| 5997 o.add(buildMetric()); | 5997 o.add(buildMetric()); |
| 5998 o.add(buildMetric()); | 5998 o.add(buildMetric()); |
| 5999 return o; | 5999 return o; |
| 6000 } | 6000 } |
| 6001 | 6001 |
| 6002 checkUnnamed1428(core.List<api.Metric> o) { | 6002 checkUnnamed2064(core.List<api.Metric> o) { |
| 6003 unittest.expect(o, unittest.hasLength(2)); | 6003 unittest.expect(o, unittest.hasLength(2)); |
| 6004 checkMetric(o[0]); | 6004 checkMetric(o[0]); |
| 6005 checkMetric(o[1]); | 6005 checkMetric(o[1]); |
| 6006 } | 6006 } |
| 6007 | 6007 |
| 6008 buildUnnamed1429() { | 6008 buildUnnamed2065() { |
| 6009 var o = new core.List<api.Metric>(); | 6009 var o = new core.List<api.Metric>(); |
| 6010 o.add(buildMetric()); | 6010 o.add(buildMetric()); |
| 6011 o.add(buildMetric()); | 6011 o.add(buildMetric()); |
| 6012 return o; | 6012 return o; |
| 6013 } | 6013 } |
| 6014 | 6014 |
| 6015 checkUnnamed1429(core.List<api.Metric> o) { | 6015 checkUnnamed2065(core.List<api.Metric> o) { |
| 6016 unittest.expect(o, unittest.hasLength(2)); | 6016 unittest.expect(o, unittest.hasLength(2)); |
| 6017 checkMetric(o[0]); | 6017 checkMetric(o[0]); |
| 6018 checkMetric(o[1]); | 6018 checkMetric(o[1]); |
| 6019 } | 6019 } |
| 6020 | 6020 |
| 6021 buildUnnamed1430() { | 6021 buildUnnamed2066() { |
| 6022 var o = new core.List<api.Metric>(); | 6022 var o = new core.List<api.Metric>(); |
| 6023 o.add(buildMetric()); | 6023 o.add(buildMetric()); |
| 6024 o.add(buildMetric()); | 6024 o.add(buildMetric()); |
| 6025 return o; | 6025 return o; |
| 6026 } | 6026 } |
| 6027 | 6027 |
| 6028 checkUnnamed1430(core.List<api.Metric> o) { | 6028 checkUnnamed2066(core.List<api.Metric> o) { |
| 6029 unittest.expect(o, unittest.hasLength(2)); | 6029 unittest.expect(o, unittest.hasLength(2)); |
| 6030 checkMetric(o[0]); | 6030 checkMetric(o[0]); |
| 6031 checkMetric(o[1]); | 6031 checkMetric(o[1]); |
| 6032 } | 6032 } |
| 6033 | 6033 |
| 6034 core.int buildCounterReachReportCompatibleFields = 0; | 6034 core.int buildCounterReachReportCompatibleFields = 0; |
| 6035 buildReachReportCompatibleFields() { | 6035 buildReachReportCompatibleFields() { |
| 6036 var o = new api.ReachReportCompatibleFields(); | 6036 var o = new api.ReachReportCompatibleFields(); |
| 6037 buildCounterReachReportCompatibleFields++; | 6037 buildCounterReachReportCompatibleFields++; |
| 6038 if (buildCounterReachReportCompatibleFields < 3) { | 6038 if (buildCounterReachReportCompatibleFields < 3) { |
| 6039 o.dimensionFilters = buildUnnamed1426(); | 6039 o.dimensionFilters = buildUnnamed2062(); |
| 6040 o.dimensions = buildUnnamed1427(); | 6040 o.dimensions = buildUnnamed2063(); |
| 6041 o.kind = "foo"; | 6041 o.kind = "foo"; |
| 6042 o.metrics = buildUnnamed1428(); | 6042 o.metrics = buildUnnamed2064(); |
| 6043 o.pivotedActivityMetrics = buildUnnamed1429(); | 6043 o.pivotedActivityMetrics = buildUnnamed2065(); |
| 6044 o.reachByFrequencyMetrics = buildUnnamed1430(); | 6044 o.reachByFrequencyMetrics = buildUnnamed2066(); |
| 6045 } | 6045 } |
| 6046 buildCounterReachReportCompatibleFields--; | 6046 buildCounterReachReportCompatibleFields--; |
| 6047 return o; | 6047 return o; |
| 6048 } | 6048 } |
| 6049 | 6049 |
| 6050 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { | 6050 checkReachReportCompatibleFields(api.ReachReportCompatibleFields o) { |
| 6051 buildCounterReachReportCompatibleFields++; | 6051 buildCounterReachReportCompatibleFields++; |
| 6052 if (buildCounterReachReportCompatibleFields < 3) { | 6052 if (buildCounterReachReportCompatibleFields < 3) { |
| 6053 checkUnnamed1426(o.dimensionFilters); | 6053 checkUnnamed2062(o.dimensionFilters); |
| 6054 checkUnnamed1427(o.dimensions); | 6054 checkUnnamed2063(o.dimensions); |
| 6055 unittest.expect(o.kind, unittest.equals('foo')); | 6055 unittest.expect(o.kind, unittest.equals('foo')); |
| 6056 checkUnnamed1428(o.metrics); | 6056 checkUnnamed2064(o.metrics); |
| 6057 checkUnnamed1429(o.pivotedActivityMetrics); | 6057 checkUnnamed2065(o.pivotedActivityMetrics); |
| 6058 checkUnnamed1430(o.reachByFrequencyMetrics); | 6058 checkUnnamed2066(o.reachByFrequencyMetrics); |
| 6059 } | 6059 } |
| 6060 buildCounterReachReportCompatibleFields--; | 6060 buildCounterReachReportCompatibleFields--; |
| 6061 } | 6061 } |
| 6062 | 6062 |
| 6063 core.int buildCounterRecipient = 0; | 6063 core.int buildCounterRecipient = 0; |
| 6064 buildRecipient() { | 6064 buildRecipient() { |
| 6065 var o = new api.Recipient(); | 6065 var o = new api.Recipient(); |
| 6066 buildCounterRecipient++; | 6066 buildCounterRecipient++; |
| 6067 if (buildCounterRecipient < 3) { | 6067 if (buildCounterRecipient < 3) { |
| 6068 o.deliveryType = "foo"; | 6068 o.deliveryType = "foo"; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6105 unittest.expect(o.countryCode, unittest.equals('foo')); | 6105 unittest.expect(o.countryCode, unittest.equals('foo')); |
| 6106 unittest.expect(o.countryDartId, unittest.equals('foo')); | 6106 unittest.expect(o.countryDartId, unittest.equals('foo')); |
| 6107 unittest.expect(o.dartId, unittest.equals('foo')); | 6107 unittest.expect(o.dartId, unittest.equals('foo')); |
| 6108 unittest.expect(o.kind, unittest.equals('foo')); | 6108 unittest.expect(o.kind, unittest.equals('foo')); |
| 6109 unittest.expect(o.name, unittest.equals('foo')); | 6109 unittest.expect(o.name, unittest.equals('foo')); |
| 6110 unittest.expect(o.regionCode, unittest.equals('foo')); | 6110 unittest.expect(o.regionCode, unittest.equals('foo')); |
| 6111 } | 6111 } |
| 6112 buildCounterRegion--; | 6112 buildCounterRegion--; |
| 6113 } | 6113 } |
| 6114 | 6114 |
| 6115 buildUnnamed1431() { | 6115 buildUnnamed2067() { |
| 6116 var o = new core.List<api.Region>(); | 6116 var o = new core.List<api.Region>(); |
| 6117 o.add(buildRegion()); | 6117 o.add(buildRegion()); |
| 6118 o.add(buildRegion()); | 6118 o.add(buildRegion()); |
| 6119 return o; | 6119 return o; |
| 6120 } | 6120 } |
| 6121 | 6121 |
| 6122 checkUnnamed1431(core.List<api.Region> o) { | 6122 checkUnnamed2067(core.List<api.Region> o) { |
| 6123 unittest.expect(o, unittest.hasLength(2)); | 6123 unittest.expect(o, unittest.hasLength(2)); |
| 6124 checkRegion(o[0]); | 6124 checkRegion(o[0]); |
| 6125 checkRegion(o[1]); | 6125 checkRegion(o[1]); |
| 6126 } | 6126 } |
| 6127 | 6127 |
| 6128 core.int buildCounterRegionsListResponse = 0; | 6128 core.int buildCounterRegionsListResponse = 0; |
| 6129 buildRegionsListResponse() { | 6129 buildRegionsListResponse() { |
| 6130 var o = new api.RegionsListResponse(); | 6130 var o = new api.RegionsListResponse(); |
| 6131 buildCounterRegionsListResponse++; | 6131 buildCounterRegionsListResponse++; |
| 6132 if (buildCounterRegionsListResponse < 3) { | 6132 if (buildCounterRegionsListResponse < 3) { |
| 6133 o.kind = "foo"; | 6133 o.kind = "foo"; |
| 6134 o.regions = buildUnnamed1431(); | 6134 o.regions = buildUnnamed2067(); |
| 6135 } | 6135 } |
| 6136 buildCounterRegionsListResponse--; | 6136 buildCounterRegionsListResponse--; |
| 6137 return o; | 6137 return o; |
| 6138 } | 6138 } |
| 6139 | 6139 |
| 6140 checkRegionsListResponse(api.RegionsListResponse o) { | 6140 checkRegionsListResponse(api.RegionsListResponse o) { |
| 6141 buildCounterRegionsListResponse++; | 6141 buildCounterRegionsListResponse++; |
| 6142 if (buildCounterRegionsListResponse < 3) { | 6142 if (buildCounterRegionsListResponse < 3) { |
| 6143 unittest.expect(o.kind, unittest.equals('foo')); | 6143 unittest.expect(o.kind, unittest.equals('foo')); |
| 6144 checkUnnamed1431(o.regions); | 6144 checkUnnamed2067(o.regions); |
| 6145 } | 6145 } |
| 6146 buildCounterRegionsListResponse--; | 6146 buildCounterRegionsListResponse--; |
| 6147 } | 6147 } |
| 6148 | 6148 |
| 6149 core.int buildCounterRemarketingList = 0; | 6149 core.int buildCounterRemarketingList = 0; |
| 6150 buildRemarketingList() { | 6150 buildRemarketingList() { |
| 6151 var o = new api.RemarketingList(); | 6151 var o = new api.RemarketingList(); |
| 6152 buildCounterRemarketingList++; | 6152 buildCounterRemarketingList++; |
| 6153 if (buildCounterRemarketingList < 3) { | 6153 if (buildCounterRemarketingList < 3) { |
| 6154 o.accountId = "foo"; | 6154 o.accountId = "foo"; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 6182 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 6182 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 6183 checkListPopulationRule(o.listPopulationRule); | 6183 checkListPopulationRule(o.listPopulationRule); |
| 6184 unittest.expect(o.listSize, unittest.equals('foo')); | 6184 unittest.expect(o.listSize, unittest.equals('foo')); |
| 6185 unittest.expect(o.listSource, unittest.equals('foo')); | 6185 unittest.expect(o.listSource, unittest.equals('foo')); |
| 6186 unittest.expect(o.name, unittest.equals('foo')); | 6186 unittest.expect(o.name, unittest.equals('foo')); |
| 6187 unittest.expect(o.subaccountId, unittest.equals('foo')); | 6187 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 6188 } | 6188 } |
| 6189 buildCounterRemarketingList--; | 6189 buildCounterRemarketingList--; |
| 6190 } | 6190 } |
| 6191 | 6191 |
| 6192 buildUnnamed1432() { | 6192 buildUnnamed2068() { |
| 6193 var o = new core.List<core.String>(); | 6193 var o = new core.List<core.String>(); |
| 6194 o.add("foo"); | 6194 o.add("foo"); |
| 6195 o.add("foo"); | 6195 o.add("foo"); |
| 6196 return o; | 6196 return o; |
| 6197 } | 6197 } |
| 6198 | 6198 |
| 6199 checkUnnamed1432(core.List<core.String> o) { | 6199 checkUnnamed2068(core.List<core.String> o) { |
| 6200 unittest.expect(o, unittest.hasLength(2)); | 6200 unittest.expect(o, unittest.hasLength(2)); |
| 6201 unittest.expect(o[0], unittest.equals('foo')); | 6201 unittest.expect(o[0], unittest.equals('foo')); |
| 6202 unittest.expect(o[1], unittest.equals('foo')); | 6202 unittest.expect(o[1], unittest.equals('foo')); |
| 6203 } | 6203 } |
| 6204 | 6204 |
| 6205 buildUnnamed1433() { | 6205 buildUnnamed2069() { |
| 6206 var o = new core.List<core.String>(); | 6206 var o = new core.List<core.String>(); |
| 6207 o.add("foo"); | 6207 o.add("foo"); |
| 6208 o.add("foo"); | 6208 o.add("foo"); |
| 6209 return o; | 6209 return o; |
| 6210 } | 6210 } |
| 6211 | 6211 |
| 6212 checkUnnamed1433(core.List<core.String> o) { | 6212 checkUnnamed2069(core.List<core.String> o) { |
| 6213 unittest.expect(o, unittest.hasLength(2)); | 6213 unittest.expect(o, unittest.hasLength(2)); |
| 6214 unittest.expect(o[0], unittest.equals('foo')); | 6214 unittest.expect(o[0], unittest.equals('foo')); |
| 6215 unittest.expect(o[1], unittest.equals('foo')); | 6215 unittest.expect(o[1], unittest.equals('foo')); |
| 6216 } | 6216 } |
| 6217 | 6217 |
| 6218 core.int buildCounterRemarketingListShare = 0; | 6218 core.int buildCounterRemarketingListShare = 0; |
| 6219 buildRemarketingListShare() { | 6219 buildRemarketingListShare() { |
| 6220 var o = new api.RemarketingListShare(); | 6220 var o = new api.RemarketingListShare(); |
| 6221 buildCounterRemarketingListShare++; | 6221 buildCounterRemarketingListShare++; |
| 6222 if (buildCounterRemarketingListShare < 3) { | 6222 if (buildCounterRemarketingListShare < 3) { |
| 6223 o.kind = "foo"; | 6223 o.kind = "foo"; |
| 6224 o.remarketingListId = "foo"; | 6224 o.remarketingListId = "foo"; |
| 6225 o.sharedAccountIds = buildUnnamed1432(); | 6225 o.sharedAccountIds = buildUnnamed2068(); |
| 6226 o.sharedAdvertiserIds = buildUnnamed1433(); | 6226 o.sharedAdvertiserIds = buildUnnamed2069(); |
| 6227 } | 6227 } |
| 6228 buildCounterRemarketingListShare--; | 6228 buildCounterRemarketingListShare--; |
| 6229 return o; | 6229 return o; |
| 6230 } | 6230 } |
| 6231 | 6231 |
| 6232 checkRemarketingListShare(api.RemarketingListShare o) { | 6232 checkRemarketingListShare(api.RemarketingListShare o) { |
| 6233 buildCounterRemarketingListShare++; | 6233 buildCounterRemarketingListShare++; |
| 6234 if (buildCounterRemarketingListShare < 3) { | 6234 if (buildCounterRemarketingListShare < 3) { |
| 6235 unittest.expect(o.kind, unittest.equals('foo')); | 6235 unittest.expect(o.kind, unittest.equals('foo')); |
| 6236 unittest.expect(o.remarketingListId, unittest.equals('foo')); | 6236 unittest.expect(o.remarketingListId, unittest.equals('foo')); |
| 6237 checkUnnamed1432(o.sharedAccountIds); | 6237 checkUnnamed2068(o.sharedAccountIds); |
| 6238 checkUnnamed1433(o.sharedAdvertiserIds); | 6238 checkUnnamed2069(o.sharedAdvertiserIds); |
| 6239 } | 6239 } |
| 6240 buildCounterRemarketingListShare--; | 6240 buildCounterRemarketingListShare--; |
| 6241 } | 6241 } |
| 6242 | 6242 |
| 6243 buildUnnamed1434() { | 6243 buildUnnamed2070() { |
| 6244 var o = new core.List<api.RemarketingList>(); | 6244 var o = new core.List<api.RemarketingList>(); |
| 6245 o.add(buildRemarketingList()); | 6245 o.add(buildRemarketingList()); |
| 6246 o.add(buildRemarketingList()); | 6246 o.add(buildRemarketingList()); |
| 6247 return o; | 6247 return o; |
| 6248 } | 6248 } |
| 6249 | 6249 |
| 6250 checkUnnamed1434(core.List<api.RemarketingList> o) { | 6250 checkUnnamed2070(core.List<api.RemarketingList> o) { |
| 6251 unittest.expect(o, unittest.hasLength(2)); | 6251 unittest.expect(o, unittest.hasLength(2)); |
| 6252 checkRemarketingList(o[0]); | 6252 checkRemarketingList(o[0]); |
| 6253 checkRemarketingList(o[1]); | 6253 checkRemarketingList(o[1]); |
| 6254 } | 6254 } |
| 6255 | 6255 |
| 6256 core.int buildCounterRemarketingListsListResponse = 0; | 6256 core.int buildCounterRemarketingListsListResponse = 0; |
| 6257 buildRemarketingListsListResponse() { | 6257 buildRemarketingListsListResponse() { |
| 6258 var o = new api.RemarketingListsListResponse(); | 6258 var o = new api.RemarketingListsListResponse(); |
| 6259 buildCounterRemarketingListsListResponse++; | 6259 buildCounterRemarketingListsListResponse++; |
| 6260 if (buildCounterRemarketingListsListResponse < 3) { | 6260 if (buildCounterRemarketingListsListResponse < 3) { |
| 6261 o.kind = "foo"; | 6261 o.kind = "foo"; |
| 6262 o.nextPageToken = "foo"; | 6262 o.nextPageToken = "foo"; |
| 6263 o.remarketingLists = buildUnnamed1434(); | 6263 o.remarketingLists = buildUnnamed2070(); |
| 6264 } | 6264 } |
| 6265 buildCounterRemarketingListsListResponse--; | 6265 buildCounterRemarketingListsListResponse--; |
| 6266 return o; | 6266 return o; |
| 6267 } | 6267 } |
| 6268 | 6268 |
| 6269 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { | 6269 checkRemarketingListsListResponse(api.RemarketingListsListResponse o) { |
| 6270 buildCounterRemarketingListsListResponse++; | 6270 buildCounterRemarketingListsListResponse++; |
| 6271 if (buildCounterRemarketingListsListResponse < 3) { | 6271 if (buildCounterRemarketingListsListResponse < 3) { |
| 6272 unittest.expect(o.kind, unittest.equals('foo')); | 6272 unittest.expect(o.kind, unittest.equals('foo')); |
| 6273 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 6273 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 6274 checkUnnamed1434(o.remarketingLists); | 6274 checkUnnamed2070(o.remarketingLists); |
| 6275 } | 6275 } |
| 6276 buildCounterRemarketingListsListResponse--; | 6276 buildCounterRemarketingListsListResponse--; |
| 6277 } | 6277 } |
| 6278 | 6278 |
| 6279 buildUnnamed1435() { | 6279 buildUnnamed2071() { |
| 6280 var o = new core.List<api.DimensionValue>(); | 6280 var o = new core.List<api.DimensionValue>(); |
| 6281 o.add(buildDimensionValue()); | 6281 o.add(buildDimensionValue()); |
| 6282 o.add(buildDimensionValue()); | 6282 o.add(buildDimensionValue()); |
| 6283 return o; | 6283 return o; |
| 6284 } | 6284 } |
| 6285 | 6285 |
| 6286 checkUnnamed1435(core.List<api.DimensionValue> o) { | 6286 checkUnnamed2071(core.List<api.DimensionValue> o) { |
| 6287 unittest.expect(o, unittest.hasLength(2)); | 6287 unittest.expect(o, unittest.hasLength(2)); |
| 6288 checkDimensionValue(o[0]); | 6288 checkDimensionValue(o[0]); |
| 6289 checkDimensionValue(o[1]); | 6289 checkDimensionValue(o[1]); |
| 6290 } | 6290 } |
| 6291 | 6291 |
| 6292 buildUnnamed1436() { | 6292 buildUnnamed2072() { |
| 6293 var o = new core.List<api.SortedDimension>(); | 6293 var o = new core.List<api.SortedDimension>(); |
| 6294 o.add(buildSortedDimension()); | 6294 o.add(buildSortedDimension()); |
| 6295 o.add(buildSortedDimension()); | 6295 o.add(buildSortedDimension()); |
| 6296 return o; | 6296 return o; |
| 6297 } | 6297 } |
| 6298 | 6298 |
| 6299 checkUnnamed1436(core.List<api.SortedDimension> o) { | 6299 checkUnnamed2072(core.List<api.SortedDimension> o) { |
| 6300 unittest.expect(o, unittest.hasLength(2)); | 6300 unittest.expect(o, unittest.hasLength(2)); |
| 6301 checkSortedDimension(o[0]); | 6301 checkSortedDimension(o[0]); |
| 6302 checkSortedDimension(o[1]); | 6302 checkSortedDimension(o[1]); |
| 6303 } | 6303 } |
| 6304 | 6304 |
| 6305 buildUnnamed1437() { | 6305 buildUnnamed2073() { |
| 6306 var o = new core.List<core.String>(); | 6306 var o = new core.List<core.String>(); |
| 6307 o.add("foo"); | 6307 o.add("foo"); |
| 6308 o.add("foo"); | 6308 o.add("foo"); |
| 6309 return o; | 6309 return o; |
| 6310 } | 6310 } |
| 6311 | 6311 |
| 6312 checkUnnamed1437(core.List<core.String> o) { | 6312 checkUnnamed2073(core.List<core.String> o) { |
| 6313 unittest.expect(o, unittest.hasLength(2)); | 6313 unittest.expect(o, unittest.hasLength(2)); |
| 6314 unittest.expect(o[0], unittest.equals('foo')); | 6314 unittest.expect(o[0], unittest.equals('foo')); |
| 6315 unittest.expect(o[1], unittest.equals('foo')); | 6315 unittest.expect(o[1], unittest.equals('foo')); |
| 6316 } | 6316 } |
| 6317 | 6317 |
| 6318 core.int buildCounterReportCriteria = 0; | 6318 core.int buildCounterReportCriteria = 0; |
| 6319 buildReportCriteria() { | 6319 buildReportCriteria() { |
| 6320 var o = new api.ReportCriteria(); | 6320 var o = new api.ReportCriteria(); |
| 6321 buildCounterReportCriteria++; | 6321 buildCounterReportCriteria++; |
| 6322 if (buildCounterReportCriteria < 3) { | 6322 if (buildCounterReportCriteria < 3) { |
| 6323 o.activities = buildActivities(); | 6323 o.activities = buildActivities(); |
| 6324 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6324 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6325 o.dateRange = buildDateRange(); | 6325 o.dateRange = buildDateRange(); |
| 6326 o.dimensionFilters = buildUnnamed1435(); | 6326 o.dimensionFilters = buildUnnamed2071(); |
| 6327 o.dimensions = buildUnnamed1436(); | 6327 o.dimensions = buildUnnamed2072(); |
| 6328 o.metricNames = buildUnnamed1437(); | 6328 o.metricNames = buildUnnamed2073(); |
| 6329 } | 6329 } |
| 6330 buildCounterReportCriteria--; | 6330 buildCounterReportCriteria--; |
| 6331 return o; | 6331 return o; |
| 6332 } | 6332 } |
| 6333 | 6333 |
| 6334 checkReportCriteria(api.ReportCriteria o) { | 6334 checkReportCriteria(api.ReportCriteria o) { |
| 6335 buildCounterReportCriteria++; | 6335 buildCounterReportCriteria++; |
| 6336 if (buildCounterReportCriteria < 3) { | 6336 if (buildCounterReportCriteria < 3) { |
| 6337 checkActivities(o.activities); | 6337 checkActivities(o.activities); |
| 6338 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6338 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6339 checkDateRange(o.dateRange); | 6339 checkDateRange(o.dateRange); |
| 6340 checkUnnamed1435(o.dimensionFilters); | 6340 checkUnnamed2071(o.dimensionFilters); |
| 6341 checkUnnamed1436(o.dimensions); | 6341 checkUnnamed2072(o.dimensions); |
| 6342 checkUnnamed1437(o.metricNames); | 6342 checkUnnamed2073(o.metricNames); |
| 6343 } | 6343 } |
| 6344 buildCounterReportCriteria--; | 6344 buildCounterReportCriteria--; |
| 6345 } | 6345 } |
| 6346 | 6346 |
| 6347 buildUnnamed1438() { | 6347 buildUnnamed2074() { |
| 6348 var o = new core.List<api.SortedDimension>(); | 6348 var o = new core.List<api.SortedDimension>(); |
| 6349 o.add(buildSortedDimension()); | 6349 o.add(buildSortedDimension()); |
| 6350 o.add(buildSortedDimension()); | 6350 o.add(buildSortedDimension()); |
| 6351 return o; | 6351 return o; |
| 6352 } | 6352 } |
| 6353 | 6353 |
| 6354 checkUnnamed1438(core.List<api.SortedDimension> o) { | 6354 checkUnnamed2074(core.List<api.SortedDimension> o) { |
| 6355 unittest.expect(o, unittest.hasLength(2)); | 6355 unittest.expect(o, unittest.hasLength(2)); |
| 6356 checkSortedDimension(o[0]); | 6356 checkSortedDimension(o[0]); |
| 6357 checkSortedDimension(o[1]); | 6357 checkSortedDimension(o[1]); |
| 6358 } | 6358 } |
| 6359 | 6359 |
| 6360 buildUnnamed1439() { | 6360 buildUnnamed2075() { |
| 6361 var o = new core.List<api.DimensionValue>(); | 6361 var o = new core.List<api.DimensionValue>(); |
| 6362 o.add(buildDimensionValue()); | 6362 o.add(buildDimensionValue()); |
| 6363 o.add(buildDimensionValue()); | 6363 o.add(buildDimensionValue()); |
| 6364 return o; | 6364 return o; |
| 6365 } | 6365 } |
| 6366 | 6366 |
| 6367 checkUnnamed1439(core.List<api.DimensionValue> o) { | 6367 checkUnnamed2075(core.List<api.DimensionValue> o) { |
| 6368 unittest.expect(o, unittest.hasLength(2)); | 6368 unittest.expect(o, unittest.hasLength(2)); |
| 6369 checkDimensionValue(o[0]); | 6369 checkDimensionValue(o[0]); |
| 6370 checkDimensionValue(o[1]); | 6370 checkDimensionValue(o[1]); |
| 6371 } | 6371 } |
| 6372 | 6372 |
| 6373 buildUnnamed1440() { | 6373 buildUnnamed2076() { |
| 6374 var o = new core.List<core.String>(); | 6374 var o = new core.List<core.String>(); |
| 6375 o.add("foo"); | 6375 o.add("foo"); |
| 6376 o.add("foo"); | 6376 o.add("foo"); |
| 6377 return o; | 6377 return o; |
| 6378 } | 6378 } |
| 6379 | 6379 |
| 6380 checkUnnamed1440(core.List<core.String> o) { | 6380 checkUnnamed2076(core.List<core.String> o) { |
| 6381 unittest.expect(o, unittest.hasLength(2)); | 6381 unittest.expect(o, unittest.hasLength(2)); |
| 6382 unittest.expect(o[0], unittest.equals('foo')); | 6382 unittest.expect(o[0], unittest.equals('foo')); |
| 6383 unittest.expect(o[1], unittest.equals('foo')); | 6383 unittest.expect(o[1], unittest.equals('foo')); |
| 6384 } | 6384 } |
| 6385 | 6385 |
| 6386 buildUnnamed1441() { | 6386 buildUnnamed2077() { |
| 6387 var o = new core.List<core.String>(); | 6387 var o = new core.List<core.String>(); |
| 6388 o.add("foo"); | 6388 o.add("foo"); |
| 6389 o.add("foo"); | 6389 o.add("foo"); |
| 6390 return o; | 6390 return o; |
| 6391 } | 6391 } |
| 6392 | 6392 |
| 6393 checkUnnamed1441(core.List<core.String> o) { | 6393 checkUnnamed2077(core.List<core.String> o) { |
| 6394 unittest.expect(o, unittest.hasLength(2)); | 6394 unittest.expect(o, unittest.hasLength(2)); |
| 6395 unittest.expect(o[0], unittest.equals('foo')); | 6395 unittest.expect(o[0], unittest.equals('foo')); |
| 6396 unittest.expect(o[1], unittest.equals('foo')); | 6396 unittest.expect(o[1], unittest.equals('foo')); |
| 6397 } | 6397 } |
| 6398 | 6398 |
| 6399 core.int buildCounterReportCrossDimensionReachCriteria = 0; | 6399 core.int buildCounterReportCrossDimensionReachCriteria = 0; |
| 6400 buildReportCrossDimensionReachCriteria() { | 6400 buildReportCrossDimensionReachCriteria() { |
| 6401 var o = new api.ReportCrossDimensionReachCriteria(); | 6401 var o = new api.ReportCrossDimensionReachCriteria(); |
| 6402 buildCounterReportCrossDimensionReachCriteria++; | 6402 buildCounterReportCrossDimensionReachCriteria++; |
| 6403 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6403 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6404 o.breakdown = buildUnnamed1438(); | 6404 o.breakdown = buildUnnamed2074(); |
| 6405 o.dateRange = buildDateRange(); | 6405 o.dateRange = buildDateRange(); |
| 6406 o.dimension = "foo"; | 6406 o.dimension = "foo"; |
| 6407 o.dimensionFilters = buildUnnamed1439(); | 6407 o.dimensionFilters = buildUnnamed2075(); |
| 6408 o.metricNames = buildUnnamed1440(); | 6408 o.metricNames = buildUnnamed2076(); |
| 6409 o.overlapMetricNames = buildUnnamed1441(); | 6409 o.overlapMetricNames = buildUnnamed2077(); |
| 6410 o.pivoted = true; | 6410 o.pivoted = true; |
| 6411 } | 6411 } |
| 6412 buildCounterReportCrossDimensionReachCriteria--; | 6412 buildCounterReportCrossDimensionReachCriteria--; |
| 6413 return o; | 6413 return o; |
| 6414 } | 6414 } |
| 6415 | 6415 |
| 6416 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ | 6416 checkReportCrossDimensionReachCriteria(api.ReportCrossDimensionReachCriteria o)
{ |
| 6417 buildCounterReportCrossDimensionReachCriteria++; | 6417 buildCounterReportCrossDimensionReachCriteria++; |
| 6418 if (buildCounterReportCrossDimensionReachCriteria < 3) { | 6418 if (buildCounterReportCrossDimensionReachCriteria < 3) { |
| 6419 checkUnnamed1438(o.breakdown); | 6419 checkUnnamed2074(o.breakdown); |
| 6420 checkDateRange(o.dateRange); | 6420 checkDateRange(o.dateRange); |
| 6421 unittest.expect(o.dimension, unittest.equals('foo')); | 6421 unittest.expect(o.dimension, unittest.equals('foo')); |
| 6422 checkUnnamed1439(o.dimensionFilters); | 6422 checkUnnamed2075(o.dimensionFilters); |
| 6423 checkUnnamed1440(o.metricNames); | 6423 checkUnnamed2076(o.metricNames); |
| 6424 checkUnnamed1441(o.overlapMetricNames); | 6424 checkUnnamed2077(o.overlapMetricNames); |
| 6425 unittest.expect(o.pivoted, unittest.isTrue); | 6425 unittest.expect(o.pivoted, unittest.isTrue); |
| 6426 } | 6426 } |
| 6427 buildCounterReportCrossDimensionReachCriteria--; | 6427 buildCounterReportCrossDimensionReachCriteria--; |
| 6428 } | 6428 } |
| 6429 | 6429 |
| 6430 buildUnnamed1442() { | 6430 buildUnnamed2078() { |
| 6431 var o = new core.List<api.Recipient>(); | 6431 var o = new core.List<api.Recipient>(); |
| 6432 o.add(buildRecipient()); | 6432 o.add(buildRecipient()); |
| 6433 o.add(buildRecipient()); | 6433 o.add(buildRecipient()); |
| 6434 return o; | 6434 return o; |
| 6435 } | 6435 } |
| 6436 | 6436 |
| 6437 checkUnnamed1442(core.List<api.Recipient> o) { | 6437 checkUnnamed2078(core.List<api.Recipient> o) { |
| 6438 unittest.expect(o, unittest.hasLength(2)); | 6438 unittest.expect(o, unittest.hasLength(2)); |
| 6439 checkRecipient(o[0]); | 6439 checkRecipient(o[0]); |
| 6440 checkRecipient(o[1]); | 6440 checkRecipient(o[1]); |
| 6441 } | 6441 } |
| 6442 | 6442 |
| 6443 core.int buildCounterReportDelivery = 0; | 6443 core.int buildCounterReportDelivery = 0; |
| 6444 buildReportDelivery() { | 6444 buildReportDelivery() { |
| 6445 var o = new api.ReportDelivery(); | 6445 var o = new api.ReportDelivery(); |
| 6446 buildCounterReportDelivery++; | 6446 buildCounterReportDelivery++; |
| 6447 if (buildCounterReportDelivery < 3) { | 6447 if (buildCounterReportDelivery < 3) { |
| 6448 o.emailOwner = true; | 6448 o.emailOwner = true; |
| 6449 o.emailOwnerDeliveryType = "foo"; | 6449 o.emailOwnerDeliveryType = "foo"; |
| 6450 o.message = "foo"; | 6450 o.message = "foo"; |
| 6451 o.recipients = buildUnnamed1442(); | 6451 o.recipients = buildUnnamed2078(); |
| 6452 } | 6452 } |
| 6453 buildCounterReportDelivery--; | 6453 buildCounterReportDelivery--; |
| 6454 return o; | 6454 return o; |
| 6455 } | 6455 } |
| 6456 | 6456 |
| 6457 checkReportDelivery(api.ReportDelivery o) { | 6457 checkReportDelivery(api.ReportDelivery o) { |
| 6458 buildCounterReportDelivery++; | 6458 buildCounterReportDelivery++; |
| 6459 if (buildCounterReportDelivery < 3) { | 6459 if (buildCounterReportDelivery < 3) { |
| 6460 unittest.expect(o.emailOwner, unittest.isTrue); | 6460 unittest.expect(o.emailOwner, unittest.isTrue); |
| 6461 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); | 6461 unittest.expect(o.emailOwnerDeliveryType, unittest.equals('foo')); |
| 6462 unittest.expect(o.message, unittest.equals('foo')); | 6462 unittest.expect(o.message, unittest.equals('foo')); |
| 6463 checkUnnamed1442(o.recipients); | 6463 checkUnnamed2078(o.recipients); |
| 6464 } | 6464 } |
| 6465 buildCounterReportDelivery--; | 6465 buildCounterReportDelivery--; |
| 6466 } | 6466 } |
| 6467 | 6467 |
| 6468 buildUnnamed1443() { | 6468 buildUnnamed2079() { |
| 6469 var o = new core.List<api.DimensionValue>(); | 6469 var o = new core.List<api.DimensionValue>(); |
| 6470 o.add(buildDimensionValue()); | 6470 o.add(buildDimensionValue()); |
| 6471 o.add(buildDimensionValue()); | 6471 o.add(buildDimensionValue()); |
| 6472 return o; | 6472 return o; |
| 6473 } | 6473 } |
| 6474 | 6474 |
| 6475 checkUnnamed1443(core.List<api.DimensionValue> o) { | 6475 checkUnnamed2079(core.List<api.DimensionValue> o) { |
| 6476 unittest.expect(o, unittest.hasLength(2)); | 6476 unittest.expect(o, unittest.hasLength(2)); |
| 6477 checkDimensionValue(o[0]); | 6477 checkDimensionValue(o[0]); |
| 6478 checkDimensionValue(o[1]); | 6478 checkDimensionValue(o[1]); |
| 6479 } | 6479 } |
| 6480 | 6480 |
| 6481 buildUnnamed1444() { | 6481 buildUnnamed2080() { |
| 6482 var o = new core.List<api.DimensionValue>(); | 6482 var o = new core.List<api.DimensionValue>(); |
| 6483 o.add(buildDimensionValue()); | 6483 o.add(buildDimensionValue()); |
| 6484 o.add(buildDimensionValue()); | 6484 o.add(buildDimensionValue()); |
| 6485 return o; | 6485 return o; |
| 6486 } | 6486 } |
| 6487 | 6487 |
| 6488 checkUnnamed1444(core.List<api.DimensionValue> o) { | 6488 checkUnnamed2080(core.List<api.DimensionValue> o) { |
| 6489 unittest.expect(o, unittest.hasLength(2)); | 6489 unittest.expect(o, unittest.hasLength(2)); |
| 6490 checkDimensionValue(o[0]); | 6490 checkDimensionValue(o[0]); |
| 6491 checkDimensionValue(o[1]); | 6491 checkDimensionValue(o[1]); |
| 6492 } | 6492 } |
| 6493 | 6493 |
| 6494 buildUnnamed1445() { | 6494 buildUnnamed2081() { |
| 6495 var o = new core.List<api.SortedDimension>(); | 6495 var o = new core.List<api.SortedDimension>(); |
| 6496 o.add(buildSortedDimension()); | 6496 o.add(buildSortedDimension()); |
| 6497 o.add(buildSortedDimension()); | 6497 o.add(buildSortedDimension()); |
| 6498 return o; | 6498 return o; |
| 6499 } | 6499 } |
| 6500 | 6500 |
| 6501 checkUnnamed1445(core.List<api.SortedDimension> o) { | 6501 checkUnnamed2081(core.List<api.SortedDimension> o) { |
| 6502 unittest.expect(o, unittest.hasLength(2)); | 6502 unittest.expect(o, unittest.hasLength(2)); |
| 6503 checkSortedDimension(o[0]); | 6503 checkSortedDimension(o[0]); |
| 6504 checkSortedDimension(o[1]); | 6504 checkSortedDimension(o[1]); |
| 6505 } | 6505 } |
| 6506 | 6506 |
| 6507 buildUnnamed1446() { | 6507 buildUnnamed2082() { |
| 6508 var o = new core.List<core.String>(); | 6508 var o = new core.List<core.String>(); |
| 6509 o.add("foo"); | 6509 o.add("foo"); |
| 6510 o.add("foo"); | 6510 o.add("foo"); |
| 6511 return o; | 6511 return o; |
| 6512 } | 6512 } |
| 6513 | 6513 |
| 6514 checkUnnamed1446(core.List<core.String> o) { | 6514 checkUnnamed2082(core.List<core.String> o) { |
| 6515 unittest.expect(o, unittest.hasLength(2)); | 6515 unittest.expect(o, unittest.hasLength(2)); |
| 6516 unittest.expect(o[0], unittest.equals('foo')); | 6516 unittest.expect(o[0], unittest.equals('foo')); |
| 6517 unittest.expect(o[1], unittest.equals('foo')); | 6517 unittest.expect(o[1], unittest.equals('foo')); |
| 6518 } | 6518 } |
| 6519 | 6519 |
| 6520 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; | 6520 core.int buildCounterReportFloodlightCriteriaReportProperties = 0; |
| 6521 buildReportFloodlightCriteriaReportProperties() { | 6521 buildReportFloodlightCriteriaReportProperties() { |
| 6522 var o = new api.ReportFloodlightCriteriaReportProperties(); | 6522 var o = new api.ReportFloodlightCriteriaReportProperties(); |
| 6523 buildCounterReportFloodlightCriteriaReportProperties++; | 6523 buildCounterReportFloodlightCriteriaReportProperties++; |
| 6524 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { | 6524 if (buildCounterReportFloodlightCriteriaReportProperties < 3) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 6538 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); | 6538 unittest.expect(o.includeUnattributedIPConversions, unittest.isTrue); |
| 6539 } | 6539 } |
| 6540 buildCounterReportFloodlightCriteriaReportProperties--; | 6540 buildCounterReportFloodlightCriteriaReportProperties--; |
| 6541 } | 6541 } |
| 6542 | 6542 |
| 6543 core.int buildCounterReportFloodlightCriteria = 0; | 6543 core.int buildCounterReportFloodlightCriteria = 0; |
| 6544 buildReportFloodlightCriteria() { | 6544 buildReportFloodlightCriteria() { |
| 6545 var o = new api.ReportFloodlightCriteria(); | 6545 var o = new api.ReportFloodlightCriteria(); |
| 6546 buildCounterReportFloodlightCriteria++; | 6546 buildCounterReportFloodlightCriteria++; |
| 6547 if (buildCounterReportFloodlightCriteria < 3) { | 6547 if (buildCounterReportFloodlightCriteria < 3) { |
| 6548 o.customRichMediaEvents = buildUnnamed1443(); | 6548 o.customRichMediaEvents = buildUnnamed2079(); |
| 6549 o.dateRange = buildDateRange(); | 6549 o.dateRange = buildDateRange(); |
| 6550 o.dimensionFilters = buildUnnamed1444(); | 6550 o.dimensionFilters = buildUnnamed2080(); |
| 6551 o.dimensions = buildUnnamed1445(); | 6551 o.dimensions = buildUnnamed2081(); |
| 6552 o.floodlightConfigId = buildDimensionValue(); | 6552 o.floodlightConfigId = buildDimensionValue(); |
| 6553 o.metricNames = buildUnnamed1446(); | 6553 o.metricNames = buildUnnamed2082(); |
| 6554 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); | 6554 o.reportProperties = buildReportFloodlightCriteriaReportProperties(); |
| 6555 } | 6555 } |
| 6556 buildCounterReportFloodlightCriteria--; | 6556 buildCounterReportFloodlightCriteria--; |
| 6557 return o; | 6557 return o; |
| 6558 } | 6558 } |
| 6559 | 6559 |
| 6560 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { | 6560 checkReportFloodlightCriteria(api.ReportFloodlightCriteria o) { |
| 6561 buildCounterReportFloodlightCriteria++; | 6561 buildCounterReportFloodlightCriteria++; |
| 6562 if (buildCounterReportFloodlightCriteria < 3) { | 6562 if (buildCounterReportFloodlightCriteria < 3) { |
| 6563 checkUnnamed1443(o.customRichMediaEvents); | 6563 checkUnnamed2079(o.customRichMediaEvents); |
| 6564 checkDateRange(o.dateRange); | 6564 checkDateRange(o.dateRange); |
| 6565 checkUnnamed1444(o.dimensionFilters); | 6565 checkUnnamed2080(o.dimensionFilters); |
| 6566 checkUnnamed1445(o.dimensions); | 6566 checkUnnamed2081(o.dimensions); |
| 6567 checkDimensionValue(o.floodlightConfigId); | 6567 checkDimensionValue(o.floodlightConfigId); |
| 6568 checkUnnamed1446(o.metricNames); | 6568 checkUnnamed2082(o.metricNames); |
| 6569 checkReportFloodlightCriteriaReportProperties(o.reportProperties); | 6569 checkReportFloodlightCriteriaReportProperties(o.reportProperties); |
| 6570 } | 6570 } |
| 6571 buildCounterReportFloodlightCriteria--; | 6571 buildCounterReportFloodlightCriteria--; |
| 6572 } | 6572 } |
| 6573 | 6573 |
| 6574 buildUnnamed1447() { | 6574 buildUnnamed2083() { |
| 6575 var o = new core.List<api.DimensionValue>(); | 6575 var o = new core.List<api.DimensionValue>(); |
| 6576 o.add(buildDimensionValue()); | 6576 o.add(buildDimensionValue()); |
| 6577 o.add(buildDimensionValue()); | 6577 o.add(buildDimensionValue()); |
| 6578 return o; | 6578 return o; |
| 6579 } | 6579 } |
| 6580 | 6580 |
| 6581 checkUnnamed1447(core.List<api.DimensionValue> o) { | 6581 checkUnnamed2083(core.List<api.DimensionValue> o) { |
| 6582 unittest.expect(o, unittest.hasLength(2)); | 6582 unittest.expect(o, unittest.hasLength(2)); |
| 6583 checkDimensionValue(o[0]); | 6583 checkDimensionValue(o[0]); |
| 6584 checkDimensionValue(o[1]); | 6584 checkDimensionValue(o[1]); |
| 6585 } | 6585 } |
| 6586 | 6586 |
| 6587 buildUnnamed1448() { | 6587 buildUnnamed2084() { |
| 6588 var o = new core.List<api.SortedDimension>(); | 6588 var o = new core.List<api.SortedDimension>(); |
| 6589 o.add(buildSortedDimension()); | 6589 o.add(buildSortedDimension()); |
| 6590 o.add(buildSortedDimension()); | 6590 o.add(buildSortedDimension()); |
| 6591 return o; | 6591 return o; |
| 6592 } | 6592 } |
| 6593 | 6593 |
| 6594 checkUnnamed1448(core.List<api.SortedDimension> o) { | 6594 checkUnnamed2084(core.List<api.SortedDimension> o) { |
| 6595 unittest.expect(o, unittest.hasLength(2)); | 6595 unittest.expect(o, unittest.hasLength(2)); |
| 6596 checkSortedDimension(o[0]); | 6596 checkSortedDimension(o[0]); |
| 6597 checkSortedDimension(o[1]); | 6597 checkSortedDimension(o[1]); |
| 6598 } | 6598 } |
| 6599 | 6599 |
| 6600 buildUnnamed1449() { | 6600 buildUnnamed2085() { |
| 6601 var o = new core.List<api.SortedDimension>(); | 6601 var o = new core.List<api.SortedDimension>(); |
| 6602 o.add(buildSortedDimension()); | 6602 o.add(buildSortedDimension()); |
| 6603 o.add(buildSortedDimension()); | 6603 o.add(buildSortedDimension()); |
| 6604 return o; | 6604 return o; |
| 6605 } | 6605 } |
| 6606 | 6606 |
| 6607 checkUnnamed1449(core.List<api.SortedDimension> o) { | 6607 checkUnnamed2085(core.List<api.SortedDimension> o) { |
| 6608 unittest.expect(o, unittest.hasLength(2)); | 6608 unittest.expect(o, unittest.hasLength(2)); |
| 6609 checkSortedDimension(o[0]); | 6609 checkSortedDimension(o[0]); |
| 6610 checkSortedDimension(o[1]); | 6610 checkSortedDimension(o[1]); |
| 6611 } | 6611 } |
| 6612 | 6612 |
| 6613 buildUnnamed1450() { | 6613 buildUnnamed2086() { |
| 6614 var o = new core.List<api.DimensionValue>(); | 6614 var o = new core.List<api.DimensionValue>(); |
| 6615 o.add(buildDimensionValue()); | 6615 o.add(buildDimensionValue()); |
| 6616 o.add(buildDimensionValue()); | 6616 o.add(buildDimensionValue()); |
| 6617 return o; | 6617 return o; |
| 6618 } | 6618 } |
| 6619 | 6619 |
| 6620 checkUnnamed1450(core.List<api.DimensionValue> o) { | 6620 checkUnnamed2086(core.List<api.DimensionValue> o) { |
| 6621 unittest.expect(o, unittest.hasLength(2)); | 6621 unittest.expect(o, unittest.hasLength(2)); |
| 6622 checkDimensionValue(o[0]); | 6622 checkDimensionValue(o[0]); |
| 6623 checkDimensionValue(o[1]); | 6623 checkDimensionValue(o[1]); |
| 6624 } | 6624 } |
| 6625 | 6625 |
| 6626 buildUnnamed1451() { | 6626 buildUnnamed2087() { |
| 6627 var o = new core.List<core.String>(); | 6627 var o = new core.List<core.String>(); |
| 6628 o.add("foo"); | 6628 o.add("foo"); |
| 6629 o.add("foo"); | 6629 o.add("foo"); |
| 6630 return o; | 6630 return o; |
| 6631 } | 6631 } |
| 6632 | 6632 |
| 6633 checkUnnamed1451(core.List<core.String> o) { | 6633 checkUnnamed2087(core.List<core.String> o) { |
| 6634 unittest.expect(o, unittest.hasLength(2)); | 6634 unittest.expect(o, unittest.hasLength(2)); |
| 6635 unittest.expect(o[0], unittest.equals('foo')); | 6635 unittest.expect(o[0], unittest.equals('foo')); |
| 6636 unittest.expect(o[1], unittest.equals('foo')); | 6636 unittest.expect(o[1], unittest.equals('foo')); |
| 6637 } | 6637 } |
| 6638 | 6638 |
| 6639 buildUnnamed1452() { | 6639 buildUnnamed2088() { |
| 6640 var o = new core.List<api.SortedDimension>(); | 6640 var o = new core.List<api.SortedDimension>(); |
| 6641 o.add(buildSortedDimension()); | 6641 o.add(buildSortedDimension()); |
| 6642 o.add(buildSortedDimension()); | 6642 o.add(buildSortedDimension()); |
| 6643 return o; | 6643 return o; |
| 6644 } | 6644 } |
| 6645 | 6645 |
| 6646 checkUnnamed1452(core.List<api.SortedDimension> o) { | 6646 checkUnnamed2088(core.List<api.SortedDimension> o) { |
| 6647 unittest.expect(o, unittest.hasLength(2)); | 6647 unittest.expect(o, unittest.hasLength(2)); |
| 6648 checkSortedDimension(o[0]); | 6648 checkSortedDimension(o[0]); |
| 6649 checkSortedDimension(o[1]); | 6649 checkSortedDimension(o[1]); |
| 6650 } | 6650 } |
| 6651 | 6651 |
| 6652 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; | 6652 core.int buildCounterReportPathToConversionCriteriaReportProperties = 0; |
| 6653 buildReportPathToConversionCriteriaReportProperties() { | 6653 buildReportPathToConversionCriteriaReportProperties() { |
| 6654 var o = new api.ReportPathToConversionCriteriaReportProperties(); | 6654 var o = new api.ReportPathToConversionCriteriaReportProperties(); |
| 6655 buildCounterReportPathToConversionCriteriaReportProperties++; | 6655 buildCounterReportPathToConversionCriteriaReportProperties++; |
| 6656 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { | 6656 if (buildCounterReportPathToConversionCriteriaReportProperties < 3) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 6682 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); | 6682 unittest.expect(o.pivotOnInteractionPath, unittest.isTrue); |
| 6683 } | 6683 } |
| 6684 buildCounterReportPathToConversionCriteriaReportProperties--; | 6684 buildCounterReportPathToConversionCriteriaReportProperties--; |
| 6685 } | 6685 } |
| 6686 | 6686 |
| 6687 core.int buildCounterReportPathToConversionCriteria = 0; | 6687 core.int buildCounterReportPathToConversionCriteria = 0; |
| 6688 buildReportPathToConversionCriteria() { | 6688 buildReportPathToConversionCriteria() { |
| 6689 var o = new api.ReportPathToConversionCriteria(); | 6689 var o = new api.ReportPathToConversionCriteria(); |
| 6690 buildCounterReportPathToConversionCriteria++; | 6690 buildCounterReportPathToConversionCriteria++; |
| 6691 if (buildCounterReportPathToConversionCriteria < 3) { | 6691 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6692 o.activityFilters = buildUnnamed1447(); | 6692 o.activityFilters = buildUnnamed2083(); |
| 6693 o.conversionDimensions = buildUnnamed1448(); | 6693 o.conversionDimensions = buildUnnamed2084(); |
| 6694 o.customFloodlightVariables = buildUnnamed1449(); | 6694 o.customFloodlightVariables = buildUnnamed2085(); |
| 6695 o.customRichMediaEvents = buildUnnamed1450(); | 6695 o.customRichMediaEvents = buildUnnamed2086(); |
| 6696 o.dateRange = buildDateRange(); | 6696 o.dateRange = buildDateRange(); |
| 6697 o.floodlightConfigId = buildDimensionValue(); | 6697 o.floodlightConfigId = buildDimensionValue(); |
| 6698 o.metricNames = buildUnnamed1451(); | 6698 o.metricNames = buildUnnamed2087(); |
| 6699 o.perInteractionDimensions = buildUnnamed1452(); | 6699 o.perInteractionDimensions = buildUnnamed2088(); |
| 6700 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); | 6700 o.reportProperties = buildReportPathToConversionCriteriaReportProperties(); |
| 6701 } | 6701 } |
| 6702 buildCounterReportPathToConversionCriteria--; | 6702 buildCounterReportPathToConversionCriteria--; |
| 6703 return o; | 6703 return o; |
| 6704 } | 6704 } |
| 6705 | 6705 |
| 6706 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { | 6706 checkReportPathToConversionCriteria(api.ReportPathToConversionCriteria o) { |
| 6707 buildCounterReportPathToConversionCriteria++; | 6707 buildCounterReportPathToConversionCriteria++; |
| 6708 if (buildCounterReportPathToConversionCriteria < 3) { | 6708 if (buildCounterReportPathToConversionCriteria < 3) { |
| 6709 checkUnnamed1447(o.activityFilters); | 6709 checkUnnamed2083(o.activityFilters); |
| 6710 checkUnnamed1448(o.conversionDimensions); | 6710 checkUnnamed2084(o.conversionDimensions); |
| 6711 checkUnnamed1449(o.customFloodlightVariables); | 6711 checkUnnamed2085(o.customFloodlightVariables); |
| 6712 checkUnnamed1450(o.customRichMediaEvents); | 6712 checkUnnamed2086(o.customRichMediaEvents); |
| 6713 checkDateRange(o.dateRange); | 6713 checkDateRange(o.dateRange); |
| 6714 checkDimensionValue(o.floodlightConfigId); | 6714 checkDimensionValue(o.floodlightConfigId); |
| 6715 checkUnnamed1451(o.metricNames); | 6715 checkUnnamed2087(o.metricNames); |
| 6716 checkUnnamed1452(o.perInteractionDimensions); | 6716 checkUnnamed2088(o.perInteractionDimensions); |
| 6717 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); | 6717 checkReportPathToConversionCriteriaReportProperties(o.reportProperties); |
| 6718 } | 6718 } |
| 6719 buildCounterReportPathToConversionCriteria--; | 6719 buildCounterReportPathToConversionCriteria--; |
| 6720 } | 6720 } |
| 6721 | 6721 |
| 6722 buildUnnamed1453() { | 6722 buildUnnamed2089() { |
| 6723 var o = new core.List<api.DimensionValue>(); | 6723 var o = new core.List<api.DimensionValue>(); |
| 6724 o.add(buildDimensionValue()); | 6724 o.add(buildDimensionValue()); |
| 6725 o.add(buildDimensionValue()); | 6725 o.add(buildDimensionValue()); |
| 6726 return o; | 6726 return o; |
| 6727 } | 6727 } |
| 6728 | 6728 |
| 6729 checkUnnamed1453(core.List<api.DimensionValue> o) { | 6729 checkUnnamed2089(core.List<api.DimensionValue> o) { |
| 6730 unittest.expect(o, unittest.hasLength(2)); | 6730 unittest.expect(o, unittest.hasLength(2)); |
| 6731 checkDimensionValue(o[0]); | 6731 checkDimensionValue(o[0]); |
| 6732 checkDimensionValue(o[1]); | 6732 checkDimensionValue(o[1]); |
| 6733 } | 6733 } |
| 6734 | 6734 |
| 6735 buildUnnamed1454() { | 6735 buildUnnamed2090() { |
| 6736 var o = new core.List<api.SortedDimension>(); | 6736 var o = new core.List<api.SortedDimension>(); |
| 6737 o.add(buildSortedDimension()); | 6737 o.add(buildSortedDimension()); |
| 6738 o.add(buildSortedDimension()); | 6738 o.add(buildSortedDimension()); |
| 6739 return o; | 6739 return o; |
| 6740 } | 6740 } |
| 6741 | 6741 |
| 6742 checkUnnamed1454(core.List<api.SortedDimension> o) { | 6742 checkUnnamed2090(core.List<api.SortedDimension> o) { |
| 6743 unittest.expect(o, unittest.hasLength(2)); | 6743 unittest.expect(o, unittest.hasLength(2)); |
| 6744 checkSortedDimension(o[0]); | 6744 checkSortedDimension(o[0]); |
| 6745 checkSortedDimension(o[1]); | 6745 checkSortedDimension(o[1]); |
| 6746 } | 6746 } |
| 6747 | 6747 |
| 6748 buildUnnamed1455() { | 6748 buildUnnamed2091() { |
| 6749 var o = new core.List<core.String>(); | 6749 var o = new core.List<core.String>(); |
| 6750 o.add("foo"); | 6750 o.add("foo"); |
| 6751 o.add("foo"); | 6751 o.add("foo"); |
| 6752 return o; | 6752 return o; |
| 6753 } | 6753 } |
| 6754 | 6754 |
| 6755 checkUnnamed1455(core.List<core.String> o) { | 6755 checkUnnamed2091(core.List<core.String> o) { |
| 6756 unittest.expect(o, unittest.hasLength(2)); | 6756 unittest.expect(o, unittest.hasLength(2)); |
| 6757 unittest.expect(o[0], unittest.equals('foo')); | 6757 unittest.expect(o[0], unittest.equals('foo')); |
| 6758 unittest.expect(o[1], unittest.equals('foo')); | 6758 unittest.expect(o[1], unittest.equals('foo')); |
| 6759 } | 6759 } |
| 6760 | 6760 |
| 6761 buildUnnamed1456() { | 6761 buildUnnamed2092() { |
| 6762 var o = new core.List<core.String>(); | 6762 var o = new core.List<core.String>(); |
| 6763 o.add("foo"); | 6763 o.add("foo"); |
| 6764 o.add("foo"); | 6764 o.add("foo"); |
| 6765 return o; | 6765 return o; |
| 6766 } | 6766 } |
| 6767 | 6767 |
| 6768 checkUnnamed1456(core.List<core.String> o) { | 6768 checkUnnamed2092(core.List<core.String> o) { |
| 6769 unittest.expect(o, unittest.hasLength(2)); | 6769 unittest.expect(o, unittest.hasLength(2)); |
| 6770 unittest.expect(o[0], unittest.equals('foo')); | 6770 unittest.expect(o[0], unittest.equals('foo')); |
| 6771 unittest.expect(o[1], unittest.equals('foo')); | 6771 unittest.expect(o[1], unittest.equals('foo')); |
| 6772 } | 6772 } |
| 6773 | 6773 |
| 6774 core.int buildCounterReportReachCriteria = 0; | 6774 core.int buildCounterReportReachCriteria = 0; |
| 6775 buildReportReachCriteria() { | 6775 buildReportReachCriteria() { |
| 6776 var o = new api.ReportReachCriteria(); | 6776 var o = new api.ReportReachCriteria(); |
| 6777 buildCounterReportReachCriteria++; | 6777 buildCounterReportReachCriteria++; |
| 6778 if (buildCounterReportReachCriteria < 3) { | 6778 if (buildCounterReportReachCriteria < 3) { |
| 6779 o.activities = buildActivities(); | 6779 o.activities = buildActivities(); |
| 6780 o.customRichMediaEvents = buildCustomRichMediaEvents(); | 6780 o.customRichMediaEvents = buildCustomRichMediaEvents(); |
| 6781 o.dateRange = buildDateRange(); | 6781 o.dateRange = buildDateRange(); |
| 6782 o.dimensionFilters = buildUnnamed1453(); | 6782 o.dimensionFilters = buildUnnamed2089(); |
| 6783 o.dimensions = buildUnnamed1454(); | 6783 o.dimensions = buildUnnamed2090(); |
| 6784 o.enableAllDimensionCombinations = true; | 6784 o.enableAllDimensionCombinations = true; |
| 6785 o.metricNames = buildUnnamed1455(); | 6785 o.metricNames = buildUnnamed2091(); |
| 6786 o.reachByFrequencyMetricNames = buildUnnamed1456(); | 6786 o.reachByFrequencyMetricNames = buildUnnamed2092(); |
| 6787 } | 6787 } |
| 6788 buildCounterReportReachCriteria--; | 6788 buildCounterReportReachCriteria--; |
| 6789 return o; | 6789 return o; |
| 6790 } | 6790 } |
| 6791 | 6791 |
| 6792 checkReportReachCriteria(api.ReportReachCriteria o) { | 6792 checkReportReachCriteria(api.ReportReachCriteria o) { |
| 6793 buildCounterReportReachCriteria++; | 6793 buildCounterReportReachCriteria++; |
| 6794 if (buildCounterReportReachCriteria < 3) { | 6794 if (buildCounterReportReachCriteria < 3) { |
| 6795 checkActivities(o.activities); | 6795 checkActivities(o.activities); |
| 6796 checkCustomRichMediaEvents(o.customRichMediaEvents); | 6796 checkCustomRichMediaEvents(o.customRichMediaEvents); |
| 6797 checkDateRange(o.dateRange); | 6797 checkDateRange(o.dateRange); |
| 6798 checkUnnamed1453(o.dimensionFilters); | 6798 checkUnnamed2089(o.dimensionFilters); |
| 6799 checkUnnamed1454(o.dimensions); | 6799 checkUnnamed2090(o.dimensions); |
| 6800 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); | 6800 unittest.expect(o.enableAllDimensionCombinations, unittest.isTrue); |
| 6801 checkUnnamed1455(o.metricNames); | 6801 checkUnnamed2091(o.metricNames); |
| 6802 checkUnnamed1456(o.reachByFrequencyMetricNames); | 6802 checkUnnamed2092(o.reachByFrequencyMetricNames); |
| 6803 } | 6803 } |
| 6804 buildCounterReportReachCriteria--; | 6804 buildCounterReportReachCriteria--; |
| 6805 } | 6805 } |
| 6806 | 6806 |
| 6807 buildUnnamed1457() { | 6807 buildUnnamed2093() { |
| 6808 var o = new core.List<core.String>(); | 6808 var o = new core.List<core.String>(); |
| 6809 o.add("foo"); | 6809 o.add("foo"); |
| 6810 o.add("foo"); | 6810 o.add("foo"); |
| 6811 return o; | 6811 return o; |
| 6812 } | 6812 } |
| 6813 | 6813 |
| 6814 checkUnnamed1457(core.List<core.String> o) { | 6814 checkUnnamed2093(core.List<core.String> o) { |
| 6815 unittest.expect(o, unittest.hasLength(2)); | 6815 unittest.expect(o, unittest.hasLength(2)); |
| 6816 unittest.expect(o[0], unittest.equals('foo')); | 6816 unittest.expect(o[0], unittest.equals('foo')); |
| 6817 unittest.expect(o[1], unittest.equals('foo')); | 6817 unittest.expect(o[1], unittest.equals('foo')); |
| 6818 } | 6818 } |
| 6819 | 6819 |
| 6820 core.int buildCounterReportSchedule = 0; | 6820 core.int buildCounterReportSchedule = 0; |
| 6821 buildReportSchedule() { | 6821 buildReportSchedule() { |
| 6822 var o = new api.ReportSchedule(); | 6822 var o = new api.ReportSchedule(); |
| 6823 buildCounterReportSchedule++; | 6823 buildCounterReportSchedule++; |
| 6824 if (buildCounterReportSchedule < 3) { | 6824 if (buildCounterReportSchedule < 3) { |
| 6825 o.active = true; | 6825 o.active = true; |
| 6826 o.every = 42; | 6826 o.every = 42; |
| 6827 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6827 o.expirationDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6828 o.repeats = "foo"; | 6828 o.repeats = "foo"; |
| 6829 o.repeatsOnWeekDays = buildUnnamed1457(); | 6829 o.repeatsOnWeekDays = buildUnnamed2093(); |
| 6830 o.runsOnDayOfMonth = "foo"; | 6830 o.runsOnDayOfMonth = "foo"; |
| 6831 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); | 6831 o.startDate = core.DateTime.parse("2002-02-27T14:01:02Z"); |
| 6832 } | 6832 } |
| 6833 buildCounterReportSchedule--; | 6833 buildCounterReportSchedule--; |
| 6834 return o; | 6834 return o; |
| 6835 } | 6835 } |
| 6836 | 6836 |
| 6837 checkReportSchedule(api.ReportSchedule o) { | 6837 checkReportSchedule(api.ReportSchedule o) { |
| 6838 buildCounterReportSchedule++; | 6838 buildCounterReportSchedule++; |
| 6839 if (buildCounterReportSchedule < 3) { | 6839 if (buildCounterReportSchedule < 3) { |
| 6840 unittest.expect(o.active, unittest.isTrue); | 6840 unittest.expect(o.active, unittest.isTrue); |
| 6841 unittest.expect(o.every, unittest.equals(42)); | 6841 unittest.expect(o.every, unittest.equals(42)); |
| 6842 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); | 6842 unittest.expect(o.expirationDate, unittest.equals(core.DateTime.parse("2002-
02-27T00:00:00"))); |
| 6843 unittest.expect(o.repeats, unittest.equals('foo')); | 6843 unittest.expect(o.repeats, unittest.equals('foo')); |
| 6844 checkUnnamed1457(o.repeatsOnWeekDays); | 6844 checkUnnamed2093(o.repeatsOnWeekDays); |
| 6845 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); | 6845 unittest.expect(o.runsOnDayOfMonth, unittest.equals('foo')); |
| 6846 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); | 6846 unittest.expect(o.startDate, unittest.equals(core.DateTime.parse("2002-02-27
T00:00:00"))); |
| 6847 } | 6847 } |
| 6848 buildCounterReportSchedule--; | 6848 buildCounterReportSchedule--; |
| 6849 } | 6849 } |
| 6850 | 6850 |
| 6851 core.int buildCounterReport = 0; | 6851 core.int buildCounterReport = 0; |
| 6852 buildReport() { | 6852 buildReport() { |
| 6853 var o = new api.Report(); | 6853 var o = new api.Report(); |
| 6854 buildCounterReport++; | 6854 buildCounterReport++; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6894 unittest.expect(o.ownerProfileId, unittest.equals('foo')); | 6894 unittest.expect(o.ownerProfileId, unittest.equals('foo')); |
| 6895 checkReportPathToConversionCriteria(o.pathToConversionCriteria); | 6895 checkReportPathToConversionCriteria(o.pathToConversionCriteria); |
| 6896 checkReportReachCriteria(o.reachCriteria); | 6896 checkReportReachCriteria(o.reachCriteria); |
| 6897 checkReportSchedule(o.schedule); | 6897 checkReportSchedule(o.schedule); |
| 6898 unittest.expect(o.subAccountId, unittest.equals('foo')); | 6898 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 6899 unittest.expect(o.type, unittest.equals('foo')); | 6899 unittest.expect(o.type, unittest.equals('foo')); |
| 6900 } | 6900 } |
| 6901 buildCounterReport--; | 6901 buildCounterReport--; |
| 6902 } | 6902 } |
| 6903 | 6903 |
| 6904 buildUnnamed1458() { | 6904 buildUnnamed2094() { |
| 6905 var o = new core.List<api.Dimension>(); | 6905 var o = new core.List<api.Dimension>(); |
| 6906 o.add(buildDimension()); | 6906 o.add(buildDimension()); |
| 6907 o.add(buildDimension()); | 6907 o.add(buildDimension()); |
| 6908 return o; | 6908 return o; |
| 6909 } | 6909 } |
| 6910 | 6910 |
| 6911 checkUnnamed1458(core.List<api.Dimension> o) { | 6911 checkUnnamed2094(core.List<api.Dimension> o) { |
| 6912 unittest.expect(o, unittest.hasLength(2)); | 6912 unittest.expect(o, unittest.hasLength(2)); |
| 6913 checkDimension(o[0]); | 6913 checkDimension(o[0]); |
| 6914 checkDimension(o[1]); | 6914 checkDimension(o[1]); |
| 6915 } | 6915 } |
| 6916 | 6916 |
| 6917 buildUnnamed1459() { | 6917 buildUnnamed2095() { |
| 6918 var o = new core.List<api.Dimension>(); | 6918 var o = new core.List<api.Dimension>(); |
| 6919 o.add(buildDimension()); | 6919 o.add(buildDimension()); |
| 6920 o.add(buildDimension()); | 6920 o.add(buildDimension()); |
| 6921 return o; | 6921 return o; |
| 6922 } | 6922 } |
| 6923 | 6923 |
| 6924 checkUnnamed1459(core.List<api.Dimension> o) { | 6924 checkUnnamed2095(core.List<api.Dimension> o) { |
| 6925 unittest.expect(o, unittest.hasLength(2)); | 6925 unittest.expect(o, unittest.hasLength(2)); |
| 6926 checkDimension(o[0]); | 6926 checkDimension(o[0]); |
| 6927 checkDimension(o[1]); | 6927 checkDimension(o[1]); |
| 6928 } | 6928 } |
| 6929 | 6929 |
| 6930 buildUnnamed1460() { | 6930 buildUnnamed2096() { |
| 6931 var o = new core.List<api.Metric>(); | 6931 var o = new core.List<api.Metric>(); |
| 6932 o.add(buildMetric()); | 6932 o.add(buildMetric()); |
| 6933 o.add(buildMetric()); | 6933 o.add(buildMetric()); |
| 6934 return o; | 6934 return o; |
| 6935 } | 6935 } |
| 6936 | 6936 |
| 6937 checkUnnamed1460(core.List<api.Metric> o) { | 6937 checkUnnamed2096(core.List<api.Metric> o) { |
| 6938 unittest.expect(o, unittest.hasLength(2)); | 6938 unittest.expect(o, unittest.hasLength(2)); |
| 6939 checkMetric(o[0]); | 6939 checkMetric(o[0]); |
| 6940 checkMetric(o[1]); | 6940 checkMetric(o[1]); |
| 6941 } | 6941 } |
| 6942 | 6942 |
| 6943 buildUnnamed1461() { | 6943 buildUnnamed2097() { |
| 6944 var o = new core.List<api.Metric>(); | 6944 var o = new core.List<api.Metric>(); |
| 6945 o.add(buildMetric()); | 6945 o.add(buildMetric()); |
| 6946 o.add(buildMetric()); | 6946 o.add(buildMetric()); |
| 6947 return o; | 6947 return o; |
| 6948 } | 6948 } |
| 6949 | 6949 |
| 6950 checkUnnamed1461(core.List<api.Metric> o) { | 6950 checkUnnamed2097(core.List<api.Metric> o) { |
| 6951 unittest.expect(o, unittest.hasLength(2)); | 6951 unittest.expect(o, unittest.hasLength(2)); |
| 6952 checkMetric(o[0]); | 6952 checkMetric(o[0]); |
| 6953 checkMetric(o[1]); | 6953 checkMetric(o[1]); |
| 6954 } | 6954 } |
| 6955 | 6955 |
| 6956 core.int buildCounterReportCompatibleFields = 0; | 6956 core.int buildCounterReportCompatibleFields = 0; |
| 6957 buildReportCompatibleFields() { | 6957 buildReportCompatibleFields() { |
| 6958 var o = new api.ReportCompatibleFields(); | 6958 var o = new api.ReportCompatibleFields(); |
| 6959 buildCounterReportCompatibleFields++; | 6959 buildCounterReportCompatibleFields++; |
| 6960 if (buildCounterReportCompatibleFields < 3) { | 6960 if (buildCounterReportCompatibleFields < 3) { |
| 6961 o.dimensionFilters = buildUnnamed1458(); | 6961 o.dimensionFilters = buildUnnamed2094(); |
| 6962 o.dimensions = buildUnnamed1459(); | 6962 o.dimensions = buildUnnamed2095(); |
| 6963 o.kind = "foo"; | 6963 o.kind = "foo"; |
| 6964 o.metrics = buildUnnamed1460(); | 6964 o.metrics = buildUnnamed2096(); |
| 6965 o.pivotedActivityMetrics = buildUnnamed1461(); | 6965 o.pivotedActivityMetrics = buildUnnamed2097(); |
| 6966 } | 6966 } |
| 6967 buildCounterReportCompatibleFields--; | 6967 buildCounterReportCompatibleFields--; |
| 6968 return o; | 6968 return o; |
| 6969 } | 6969 } |
| 6970 | 6970 |
| 6971 checkReportCompatibleFields(api.ReportCompatibleFields o) { | 6971 checkReportCompatibleFields(api.ReportCompatibleFields o) { |
| 6972 buildCounterReportCompatibleFields++; | 6972 buildCounterReportCompatibleFields++; |
| 6973 if (buildCounterReportCompatibleFields < 3) { | 6973 if (buildCounterReportCompatibleFields < 3) { |
| 6974 checkUnnamed1458(o.dimensionFilters); | 6974 checkUnnamed2094(o.dimensionFilters); |
| 6975 checkUnnamed1459(o.dimensions); | 6975 checkUnnamed2095(o.dimensions); |
| 6976 unittest.expect(o.kind, unittest.equals('foo')); | 6976 unittest.expect(o.kind, unittest.equals('foo')); |
| 6977 checkUnnamed1460(o.metrics); | 6977 checkUnnamed2096(o.metrics); |
| 6978 checkUnnamed1461(o.pivotedActivityMetrics); | 6978 checkUnnamed2097(o.pivotedActivityMetrics); |
| 6979 } | 6979 } |
| 6980 buildCounterReportCompatibleFields--; | 6980 buildCounterReportCompatibleFields--; |
| 6981 } | 6981 } |
| 6982 | 6982 |
| 6983 buildUnnamed1462() { | 6983 buildUnnamed2098() { |
| 6984 var o = new core.List<api.Report>(); | 6984 var o = new core.List<api.Report>(); |
| 6985 o.add(buildReport()); | 6985 o.add(buildReport()); |
| 6986 o.add(buildReport()); | 6986 o.add(buildReport()); |
| 6987 return o; | 6987 return o; |
| 6988 } | 6988 } |
| 6989 | 6989 |
| 6990 checkUnnamed1462(core.List<api.Report> o) { | 6990 checkUnnamed2098(core.List<api.Report> o) { |
| 6991 unittest.expect(o, unittest.hasLength(2)); | 6991 unittest.expect(o, unittest.hasLength(2)); |
| 6992 checkReport(o[0]); | 6992 checkReport(o[0]); |
| 6993 checkReport(o[1]); | 6993 checkReport(o[1]); |
| 6994 } | 6994 } |
| 6995 | 6995 |
| 6996 core.int buildCounterReportList = 0; | 6996 core.int buildCounterReportList = 0; |
| 6997 buildReportList() { | 6997 buildReportList() { |
| 6998 var o = new api.ReportList(); | 6998 var o = new api.ReportList(); |
| 6999 buildCounterReportList++; | 6999 buildCounterReportList++; |
| 7000 if (buildCounterReportList < 3) { | 7000 if (buildCounterReportList < 3) { |
| 7001 o.etag = "foo"; | 7001 o.etag = "foo"; |
| 7002 o.items = buildUnnamed1462(); | 7002 o.items = buildUnnamed2098(); |
| 7003 o.kind = "foo"; | 7003 o.kind = "foo"; |
| 7004 o.nextPageToken = "foo"; | 7004 o.nextPageToken = "foo"; |
| 7005 } | 7005 } |
| 7006 buildCounterReportList--; | 7006 buildCounterReportList--; |
| 7007 return o; | 7007 return o; |
| 7008 } | 7008 } |
| 7009 | 7009 |
| 7010 checkReportList(api.ReportList o) { | 7010 checkReportList(api.ReportList o) { |
| 7011 buildCounterReportList++; | 7011 buildCounterReportList++; |
| 7012 if (buildCounterReportList < 3) { | 7012 if (buildCounterReportList < 3) { |
| 7013 unittest.expect(o.etag, unittest.equals('foo')); | 7013 unittest.expect(o.etag, unittest.equals('foo')); |
| 7014 checkUnnamed1462(o.items); | 7014 checkUnnamed2098(o.items); |
| 7015 unittest.expect(o.kind, unittest.equals('foo')); | 7015 unittest.expect(o.kind, unittest.equals('foo')); |
| 7016 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7016 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7017 } | 7017 } |
| 7018 buildCounterReportList--; | 7018 buildCounterReportList--; |
| 7019 } | 7019 } |
| 7020 | 7020 |
| 7021 core.int buildCounterReportsConfiguration = 0; | 7021 core.int buildCounterReportsConfiguration = 0; |
| 7022 buildReportsConfiguration() { | 7022 buildReportsConfiguration() { |
| 7023 var o = new api.ReportsConfiguration(); | 7023 var o = new api.ReportsConfiguration(); |
| 7024 buildCounterReportsConfiguration++; | 7024 buildCounterReportsConfiguration++; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7057 checkRichMediaExitOverride(api.RichMediaExitOverride o) { | 7057 checkRichMediaExitOverride(api.RichMediaExitOverride o) { |
| 7058 buildCounterRichMediaExitOverride++; | 7058 buildCounterRichMediaExitOverride++; |
| 7059 if (buildCounterRichMediaExitOverride < 3) { | 7059 if (buildCounterRichMediaExitOverride < 3) { |
| 7060 unittest.expect(o.customExitUrl, unittest.equals('foo')); | 7060 unittest.expect(o.customExitUrl, unittest.equals('foo')); |
| 7061 unittest.expect(o.exitId, unittest.equals('foo')); | 7061 unittest.expect(o.exitId, unittest.equals('foo')); |
| 7062 unittest.expect(o.useCustomExitUrl, unittest.isTrue); | 7062 unittest.expect(o.useCustomExitUrl, unittest.isTrue); |
| 7063 } | 7063 } |
| 7064 buildCounterRichMediaExitOverride--; | 7064 buildCounterRichMediaExitOverride--; |
| 7065 } | 7065 } |
| 7066 | 7066 |
| 7067 buildUnnamed1463() { | 7067 buildUnnamed2099() { |
| 7068 var o = new core.List<api.SiteContact>(); | 7068 var o = new core.List<api.SiteContact>(); |
| 7069 o.add(buildSiteContact()); | 7069 o.add(buildSiteContact()); |
| 7070 o.add(buildSiteContact()); | 7070 o.add(buildSiteContact()); |
| 7071 return o; | 7071 return o; |
| 7072 } | 7072 } |
| 7073 | 7073 |
| 7074 checkUnnamed1463(core.List<api.SiteContact> o) { | 7074 checkUnnamed2099(core.List<api.SiteContact> o) { |
| 7075 unittest.expect(o, unittest.hasLength(2)); | 7075 unittest.expect(o, unittest.hasLength(2)); |
| 7076 checkSiteContact(o[0]); | 7076 checkSiteContact(o[0]); |
| 7077 checkSiteContact(o[1]); | 7077 checkSiteContact(o[1]); |
| 7078 } | 7078 } |
| 7079 | 7079 |
| 7080 core.int buildCounterSite = 0; | 7080 core.int buildCounterSite = 0; |
| 7081 buildSite() { | 7081 buildSite() { |
| 7082 var o = new api.Site(); | 7082 var o = new api.Site(); |
| 7083 buildCounterSite++; | 7083 buildCounterSite++; |
| 7084 if (buildCounterSite < 3) { | 7084 if (buildCounterSite < 3) { |
| 7085 o.accountId = "foo"; | 7085 o.accountId = "foo"; |
| 7086 o.approved = true; | 7086 o.approved = true; |
| 7087 o.directorySiteId = "foo"; | 7087 o.directorySiteId = "foo"; |
| 7088 o.directorySiteIdDimensionValue = buildDimensionValue(); | 7088 o.directorySiteIdDimensionValue = buildDimensionValue(); |
| 7089 o.id = "foo"; | 7089 o.id = "foo"; |
| 7090 o.idDimensionValue = buildDimensionValue(); | 7090 o.idDimensionValue = buildDimensionValue(); |
| 7091 o.keyName = "foo"; | 7091 o.keyName = "foo"; |
| 7092 o.kind = "foo"; | 7092 o.kind = "foo"; |
| 7093 o.name = "foo"; | 7093 o.name = "foo"; |
| 7094 o.siteContacts = buildUnnamed1463(); | 7094 o.siteContacts = buildUnnamed2099(); |
| 7095 o.siteSettings = buildSiteSettings(); | 7095 o.siteSettings = buildSiteSettings(); |
| 7096 o.subaccountId = "foo"; | 7096 o.subaccountId = "foo"; |
| 7097 } | 7097 } |
| 7098 buildCounterSite--; | 7098 buildCounterSite--; |
| 7099 return o; | 7099 return o; |
| 7100 } | 7100 } |
| 7101 | 7101 |
| 7102 checkSite(api.Site o) { | 7102 checkSite(api.Site o) { |
| 7103 buildCounterSite++; | 7103 buildCounterSite++; |
| 7104 if (buildCounterSite < 3) { | 7104 if (buildCounterSite < 3) { |
| 7105 unittest.expect(o.accountId, unittest.equals('foo')); | 7105 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7106 unittest.expect(o.approved, unittest.isTrue); | 7106 unittest.expect(o.approved, unittest.isTrue); |
| 7107 unittest.expect(o.directorySiteId, unittest.equals('foo')); | 7107 unittest.expect(o.directorySiteId, unittest.equals('foo')); |
| 7108 checkDimensionValue(o.directorySiteIdDimensionValue); | 7108 checkDimensionValue(o.directorySiteIdDimensionValue); |
| 7109 unittest.expect(o.id, unittest.equals('foo')); | 7109 unittest.expect(o.id, unittest.equals('foo')); |
| 7110 checkDimensionValue(o.idDimensionValue); | 7110 checkDimensionValue(o.idDimensionValue); |
| 7111 unittest.expect(o.keyName, unittest.equals('foo')); | 7111 unittest.expect(o.keyName, unittest.equals('foo')); |
| 7112 unittest.expect(o.kind, unittest.equals('foo')); | 7112 unittest.expect(o.kind, unittest.equals('foo')); |
| 7113 unittest.expect(o.name, unittest.equals('foo')); | 7113 unittest.expect(o.name, unittest.equals('foo')); |
| 7114 checkUnnamed1463(o.siteContacts); | 7114 checkUnnamed2099(o.siteContacts); |
| 7115 checkSiteSettings(o.siteSettings); | 7115 checkSiteSettings(o.siteSettings); |
| 7116 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7116 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7117 } | 7117 } |
| 7118 buildCounterSite--; | 7118 buildCounterSite--; |
| 7119 } | 7119 } |
| 7120 | 7120 |
| 7121 core.int buildCounterSiteContact = 0; | 7121 core.int buildCounterSiteContact = 0; |
| 7122 buildSiteContact() { | 7122 buildSiteContact() { |
| 7123 var o = new api.SiteContact(); | 7123 var o = new api.SiteContact(); |
| 7124 buildCounterSiteContact++; | 7124 buildCounterSiteContact++; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7173 unittest.expect(o.activeViewOptOut, unittest.isTrue); | 7173 unittest.expect(o.activeViewOptOut, unittest.isTrue); |
| 7174 checkCreativeSettings(o.creativeSettings); | 7174 checkCreativeSettings(o.creativeSettings); |
| 7175 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); | 7175 unittest.expect(o.disableBrandSafeAds, unittest.isTrue); |
| 7176 unittest.expect(o.disableNewCookie, unittest.isTrue); | 7176 unittest.expect(o.disableNewCookie, unittest.isTrue); |
| 7177 checkLookbackConfiguration(o.lookbackConfiguration); | 7177 checkLookbackConfiguration(o.lookbackConfiguration); |
| 7178 checkTagSetting(o.tagSetting); | 7178 checkTagSetting(o.tagSetting); |
| 7179 } | 7179 } |
| 7180 buildCounterSiteSettings--; | 7180 buildCounterSiteSettings--; |
| 7181 } | 7181 } |
| 7182 | 7182 |
| 7183 buildUnnamed1464() { | 7183 buildUnnamed2100() { |
| 7184 var o = new core.List<api.Site>(); | 7184 var o = new core.List<api.Site>(); |
| 7185 o.add(buildSite()); | 7185 o.add(buildSite()); |
| 7186 o.add(buildSite()); | 7186 o.add(buildSite()); |
| 7187 return o; | 7187 return o; |
| 7188 } | 7188 } |
| 7189 | 7189 |
| 7190 checkUnnamed1464(core.List<api.Site> o) { | 7190 checkUnnamed2100(core.List<api.Site> o) { |
| 7191 unittest.expect(o, unittest.hasLength(2)); | 7191 unittest.expect(o, unittest.hasLength(2)); |
| 7192 checkSite(o[0]); | 7192 checkSite(o[0]); |
| 7193 checkSite(o[1]); | 7193 checkSite(o[1]); |
| 7194 } | 7194 } |
| 7195 | 7195 |
| 7196 core.int buildCounterSitesListResponse = 0; | 7196 core.int buildCounterSitesListResponse = 0; |
| 7197 buildSitesListResponse() { | 7197 buildSitesListResponse() { |
| 7198 var o = new api.SitesListResponse(); | 7198 var o = new api.SitesListResponse(); |
| 7199 buildCounterSitesListResponse++; | 7199 buildCounterSitesListResponse++; |
| 7200 if (buildCounterSitesListResponse < 3) { | 7200 if (buildCounterSitesListResponse < 3) { |
| 7201 o.kind = "foo"; | 7201 o.kind = "foo"; |
| 7202 o.nextPageToken = "foo"; | 7202 o.nextPageToken = "foo"; |
| 7203 o.sites = buildUnnamed1464(); | 7203 o.sites = buildUnnamed2100(); |
| 7204 } | 7204 } |
| 7205 buildCounterSitesListResponse--; | 7205 buildCounterSitesListResponse--; |
| 7206 return o; | 7206 return o; |
| 7207 } | 7207 } |
| 7208 | 7208 |
| 7209 checkSitesListResponse(api.SitesListResponse o) { | 7209 checkSitesListResponse(api.SitesListResponse o) { |
| 7210 buildCounterSitesListResponse++; | 7210 buildCounterSitesListResponse++; |
| 7211 if (buildCounterSitesListResponse < 3) { | 7211 if (buildCounterSitesListResponse < 3) { |
| 7212 unittest.expect(o.kind, unittest.equals('foo')); | 7212 unittest.expect(o.kind, unittest.equals('foo')); |
| 7213 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7213 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7214 checkUnnamed1464(o.sites); | 7214 checkUnnamed2100(o.sites); |
| 7215 } | 7215 } |
| 7216 buildCounterSitesListResponse--; | 7216 buildCounterSitesListResponse--; |
| 7217 } | 7217 } |
| 7218 | 7218 |
| 7219 core.int buildCounterSize = 0; | 7219 core.int buildCounterSize = 0; |
| 7220 buildSize() { | 7220 buildSize() { |
| 7221 var o = new api.Size(); | 7221 var o = new api.Size(); |
| 7222 buildCounterSize++; | 7222 buildCounterSize++; |
| 7223 if (buildCounterSize < 3) { | 7223 if (buildCounterSize < 3) { |
| 7224 o.height = 42; | 7224 o.height = 42; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 7236 if (buildCounterSize < 3) { | 7236 if (buildCounterSize < 3) { |
| 7237 unittest.expect(o.height, unittest.equals(42)); | 7237 unittest.expect(o.height, unittest.equals(42)); |
| 7238 unittest.expect(o.iab, unittest.isTrue); | 7238 unittest.expect(o.iab, unittest.isTrue); |
| 7239 unittest.expect(o.id, unittest.equals('foo')); | 7239 unittest.expect(o.id, unittest.equals('foo')); |
| 7240 unittest.expect(o.kind, unittest.equals('foo')); | 7240 unittest.expect(o.kind, unittest.equals('foo')); |
| 7241 unittest.expect(o.width, unittest.equals(42)); | 7241 unittest.expect(o.width, unittest.equals(42)); |
| 7242 } | 7242 } |
| 7243 buildCounterSize--; | 7243 buildCounterSize--; |
| 7244 } | 7244 } |
| 7245 | 7245 |
| 7246 buildUnnamed1465() { | 7246 buildUnnamed2101() { |
| 7247 var o = new core.List<api.Size>(); | 7247 var o = new core.List<api.Size>(); |
| 7248 o.add(buildSize()); | 7248 o.add(buildSize()); |
| 7249 o.add(buildSize()); | 7249 o.add(buildSize()); |
| 7250 return o; | 7250 return o; |
| 7251 } | 7251 } |
| 7252 | 7252 |
| 7253 checkUnnamed1465(core.List<api.Size> o) { | 7253 checkUnnamed2101(core.List<api.Size> o) { |
| 7254 unittest.expect(o, unittest.hasLength(2)); | 7254 unittest.expect(o, unittest.hasLength(2)); |
| 7255 checkSize(o[0]); | 7255 checkSize(o[0]); |
| 7256 checkSize(o[1]); | 7256 checkSize(o[1]); |
| 7257 } | 7257 } |
| 7258 | 7258 |
| 7259 core.int buildCounterSizesListResponse = 0; | 7259 core.int buildCounterSizesListResponse = 0; |
| 7260 buildSizesListResponse() { | 7260 buildSizesListResponse() { |
| 7261 var o = new api.SizesListResponse(); | 7261 var o = new api.SizesListResponse(); |
| 7262 buildCounterSizesListResponse++; | 7262 buildCounterSizesListResponse++; |
| 7263 if (buildCounterSizesListResponse < 3) { | 7263 if (buildCounterSizesListResponse < 3) { |
| 7264 o.kind = "foo"; | 7264 o.kind = "foo"; |
| 7265 o.sizes = buildUnnamed1465(); | 7265 o.sizes = buildUnnamed2101(); |
| 7266 } | 7266 } |
| 7267 buildCounterSizesListResponse--; | 7267 buildCounterSizesListResponse--; |
| 7268 return o; | 7268 return o; |
| 7269 } | 7269 } |
| 7270 | 7270 |
| 7271 checkSizesListResponse(api.SizesListResponse o) { | 7271 checkSizesListResponse(api.SizesListResponse o) { |
| 7272 buildCounterSizesListResponse++; | 7272 buildCounterSizesListResponse++; |
| 7273 if (buildCounterSizesListResponse < 3) { | 7273 if (buildCounterSizesListResponse < 3) { |
| 7274 unittest.expect(o.kind, unittest.equals('foo')); | 7274 unittest.expect(o.kind, unittest.equals('foo')); |
| 7275 checkUnnamed1465(o.sizes); | 7275 checkUnnamed2101(o.sizes); |
| 7276 } | 7276 } |
| 7277 buildCounterSizesListResponse--; | 7277 buildCounterSizesListResponse--; |
| 7278 } | 7278 } |
| 7279 | 7279 |
| 7280 core.int buildCounterSortedDimension = 0; | 7280 core.int buildCounterSortedDimension = 0; |
| 7281 buildSortedDimension() { | 7281 buildSortedDimension() { |
| 7282 var o = new api.SortedDimension(); | 7282 var o = new api.SortedDimension(); |
| 7283 buildCounterSortedDimension++; | 7283 buildCounterSortedDimension++; |
| 7284 if (buildCounterSortedDimension < 3) { | 7284 if (buildCounterSortedDimension < 3) { |
| 7285 o.kind = "foo"; | 7285 o.kind = "foo"; |
| 7286 o.name = "foo"; | 7286 o.name = "foo"; |
| 7287 o.sortOrder = "foo"; | 7287 o.sortOrder = "foo"; |
| 7288 } | 7288 } |
| 7289 buildCounterSortedDimension--; | 7289 buildCounterSortedDimension--; |
| 7290 return o; | 7290 return o; |
| 7291 } | 7291 } |
| 7292 | 7292 |
| 7293 checkSortedDimension(api.SortedDimension o) { | 7293 checkSortedDimension(api.SortedDimension o) { |
| 7294 buildCounterSortedDimension++; | 7294 buildCounterSortedDimension++; |
| 7295 if (buildCounterSortedDimension < 3) { | 7295 if (buildCounterSortedDimension < 3) { |
| 7296 unittest.expect(o.kind, unittest.equals('foo')); | 7296 unittest.expect(o.kind, unittest.equals('foo')); |
| 7297 unittest.expect(o.name, unittest.equals('foo')); | 7297 unittest.expect(o.name, unittest.equals('foo')); |
| 7298 unittest.expect(o.sortOrder, unittest.equals('foo')); | 7298 unittest.expect(o.sortOrder, unittest.equals('foo')); |
| 7299 } | 7299 } |
| 7300 buildCounterSortedDimension--; | 7300 buildCounterSortedDimension--; |
| 7301 } | 7301 } |
| 7302 | 7302 |
| 7303 buildUnnamed1466() { | 7303 buildUnnamed2102() { |
| 7304 var o = new core.List<core.String>(); | 7304 var o = new core.List<core.String>(); |
| 7305 o.add("foo"); | 7305 o.add("foo"); |
| 7306 o.add("foo"); | 7306 o.add("foo"); |
| 7307 return o; | 7307 return o; |
| 7308 } | 7308 } |
| 7309 | 7309 |
| 7310 checkUnnamed1466(core.List<core.String> o) { | 7310 checkUnnamed2102(core.List<core.String> o) { |
| 7311 unittest.expect(o, unittest.hasLength(2)); | 7311 unittest.expect(o, unittest.hasLength(2)); |
| 7312 unittest.expect(o[0], unittest.equals('foo')); | 7312 unittest.expect(o[0], unittest.equals('foo')); |
| 7313 unittest.expect(o[1], unittest.equals('foo')); | 7313 unittest.expect(o[1], unittest.equals('foo')); |
| 7314 } | 7314 } |
| 7315 | 7315 |
| 7316 core.int buildCounterSubaccount = 0; | 7316 core.int buildCounterSubaccount = 0; |
| 7317 buildSubaccount() { | 7317 buildSubaccount() { |
| 7318 var o = new api.Subaccount(); | 7318 var o = new api.Subaccount(); |
| 7319 buildCounterSubaccount++; | 7319 buildCounterSubaccount++; |
| 7320 if (buildCounterSubaccount < 3) { | 7320 if (buildCounterSubaccount < 3) { |
| 7321 o.accountId = "foo"; | 7321 o.accountId = "foo"; |
| 7322 o.availablePermissionIds = buildUnnamed1466(); | 7322 o.availablePermissionIds = buildUnnamed2102(); |
| 7323 o.id = "foo"; | 7323 o.id = "foo"; |
| 7324 o.kind = "foo"; | 7324 o.kind = "foo"; |
| 7325 o.name = "foo"; | 7325 o.name = "foo"; |
| 7326 } | 7326 } |
| 7327 buildCounterSubaccount--; | 7327 buildCounterSubaccount--; |
| 7328 return o; | 7328 return o; |
| 7329 } | 7329 } |
| 7330 | 7330 |
| 7331 checkSubaccount(api.Subaccount o) { | 7331 checkSubaccount(api.Subaccount o) { |
| 7332 buildCounterSubaccount++; | 7332 buildCounterSubaccount++; |
| 7333 if (buildCounterSubaccount < 3) { | 7333 if (buildCounterSubaccount < 3) { |
| 7334 unittest.expect(o.accountId, unittest.equals('foo')); | 7334 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7335 checkUnnamed1466(o.availablePermissionIds); | 7335 checkUnnamed2102(o.availablePermissionIds); |
| 7336 unittest.expect(o.id, unittest.equals('foo')); | 7336 unittest.expect(o.id, unittest.equals('foo')); |
| 7337 unittest.expect(o.kind, unittest.equals('foo')); | 7337 unittest.expect(o.kind, unittest.equals('foo')); |
| 7338 unittest.expect(o.name, unittest.equals('foo')); | 7338 unittest.expect(o.name, unittest.equals('foo')); |
| 7339 } | 7339 } |
| 7340 buildCounterSubaccount--; | 7340 buildCounterSubaccount--; |
| 7341 } | 7341 } |
| 7342 | 7342 |
| 7343 buildUnnamed1467() { | 7343 buildUnnamed2103() { |
| 7344 var o = new core.List<api.Subaccount>(); | 7344 var o = new core.List<api.Subaccount>(); |
| 7345 o.add(buildSubaccount()); | 7345 o.add(buildSubaccount()); |
| 7346 o.add(buildSubaccount()); | 7346 o.add(buildSubaccount()); |
| 7347 return o; | 7347 return o; |
| 7348 } | 7348 } |
| 7349 | 7349 |
| 7350 checkUnnamed1467(core.List<api.Subaccount> o) { | 7350 checkUnnamed2103(core.List<api.Subaccount> o) { |
| 7351 unittest.expect(o, unittest.hasLength(2)); | 7351 unittest.expect(o, unittest.hasLength(2)); |
| 7352 checkSubaccount(o[0]); | 7352 checkSubaccount(o[0]); |
| 7353 checkSubaccount(o[1]); | 7353 checkSubaccount(o[1]); |
| 7354 } | 7354 } |
| 7355 | 7355 |
| 7356 core.int buildCounterSubaccountsListResponse = 0; | 7356 core.int buildCounterSubaccountsListResponse = 0; |
| 7357 buildSubaccountsListResponse() { | 7357 buildSubaccountsListResponse() { |
| 7358 var o = new api.SubaccountsListResponse(); | 7358 var o = new api.SubaccountsListResponse(); |
| 7359 buildCounterSubaccountsListResponse++; | 7359 buildCounterSubaccountsListResponse++; |
| 7360 if (buildCounterSubaccountsListResponse < 3) { | 7360 if (buildCounterSubaccountsListResponse < 3) { |
| 7361 o.kind = "foo"; | 7361 o.kind = "foo"; |
| 7362 o.nextPageToken = "foo"; | 7362 o.nextPageToken = "foo"; |
| 7363 o.subaccounts = buildUnnamed1467(); | 7363 o.subaccounts = buildUnnamed2103(); |
| 7364 } | 7364 } |
| 7365 buildCounterSubaccountsListResponse--; | 7365 buildCounterSubaccountsListResponse--; |
| 7366 return o; | 7366 return o; |
| 7367 } | 7367 } |
| 7368 | 7368 |
| 7369 checkSubaccountsListResponse(api.SubaccountsListResponse o) { | 7369 checkSubaccountsListResponse(api.SubaccountsListResponse o) { |
| 7370 buildCounterSubaccountsListResponse++; | 7370 buildCounterSubaccountsListResponse++; |
| 7371 if (buildCounterSubaccountsListResponse < 3) { | 7371 if (buildCounterSubaccountsListResponse < 3) { |
| 7372 unittest.expect(o.kind, unittest.equals('foo')); | 7372 unittest.expect(o.kind, unittest.equals('foo')); |
| 7373 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7373 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7374 checkUnnamed1467(o.subaccounts); | 7374 checkUnnamed2103(o.subaccounts); |
| 7375 } | 7375 } |
| 7376 buildCounterSubaccountsListResponse--; | 7376 buildCounterSubaccountsListResponse--; |
| 7377 } | 7377 } |
| 7378 | 7378 |
| 7379 core.int buildCounterTagData = 0; | 7379 core.int buildCounterTagData = 0; |
| 7380 buildTagData() { | 7380 buildTagData() { |
| 7381 var o = new api.TagData(); | 7381 var o = new api.TagData(); |
| 7382 buildCounterTagData++; | 7382 buildCounterTagData++; |
| 7383 if (buildCounterTagData < 3) { | 7383 if (buildCounterTagData < 3) { |
| 7384 o.adId = "foo"; | 7384 o.adId = "foo"; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7504 unittest.expect(o.kind, unittest.equals('foo')); | 7504 unittest.expect(o.kind, unittest.equals('foo')); |
| 7505 unittest.expect(o.lifeSpan, unittest.equals('foo')); | 7505 unittest.expect(o.lifeSpan, unittest.equals('foo')); |
| 7506 unittest.expect(o.listSize, unittest.equals('foo')); | 7506 unittest.expect(o.listSize, unittest.equals('foo')); |
| 7507 unittest.expect(o.listSource, unittest.equals('foo')); | 7507 unittest.expect(o.listSource, unittest.equals('foo')); |
| 7508 unittest.expect(o.name, unittest.equals('foo')); | 7508 unittest.expect(o.name, unittest.equals('foo')); |
| 7509 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7509 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7510 } | 7510 } |
| 7511 buildCounterTargetableRemarketingList--; | 7511 buildCounterTargetableRemarketingList--; |
| 7512 } | 7512 } |
| 7513 | 7513 |
| 7514 buildUnnamed1468() { | 7514 buildUnnamed2104() { |
| 7515 var o = new core.List<api.TargetableRemarketingList>(); | 7515 var o = new core.List<api.TargetableRemarketingList>(); |
| 7516 o.add(buildTargetableRemarketingList()); | 7516 o.add(buildTargetableRemarketingList()); |
| 7517 o.add(buildTargetableRemarketingList()); | 7517 o.add(buildTargetableRemarketingList()); |
| 7518 return o; | 7518 return o; |
| 7519 } | 7519 } |
| 7520 | 7520 |
| 7521 checkUnnamed1468(core.List<api.TargetableRemarketingList> o) { | 7521 checkUnnamed2104(core.List<api.TargetableRemarketingList> o) { |
| 7522 unittest.expect(o, unittest.hasLength(2)); | 7522 unittest.expect(o, unittest.hasLength(2)); |
| 7523 checkTargetableRemarketingList(o[0]); | 7523 checkTargetableRemarketingList(o[0]); |
| 7524 checkTargetableRemarketingList(o[1]); | 7524 checkTargetableRemarketingList(o[1]); |
| 7525 } | 7525 } |
| 7526 | 7526 |
| 7527 core.int buildCounterTargetableRemarketingListsListResponse = 0; | 7527 core.int buildCounterTargetableRemarketingListsListResponse = 0; |
| 7528 buildTargetableRemarketingListsListResponse() { | 7528 buildTargetableRemarketingListsListResponse() { |
| 7529 var o = new api.TargetableRemarketingListsListResponse(); | 7529 var o = new api.TargetableRemarketingListsListResponse(); |
| 7530 buildCounterTargetableRemarketingListsListResponse++; | 7530 buildCounterTargetableRemarketingListsListResponse++; |
| 7531 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7531 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7532 o.kind = "foo"; | 7532 o.kind = "foo"; |
| 7533 o.nextPageToken = "foo"; | 7533 o.nextPageToken = "foo"; |
| 7534 o.targetableRemarketingLists = buildUnnamed1468(); | 7534 o.targetableRemarketingLists = buildUnnamed2104(); |
| 7535 } | 7535 } |
| 7536 buildCounterTargetableRemarketingListsListResponse--; | 7536 buildCounterTargetableRemarketingListsListResponse--; |
| 7537 return o; | 7537 return o; |
| 7538 } | 7538 } |
| 7539 | 7539 |
| 7540 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { | 7540 checkTargetableRemarketingListsListResponse(api.TargetableRemarketingListsListRe
sponse o) { |
| 7541 buildCounterTargetableRemarketingListsListResponse++; | 7541 buildCounterTargetableRemarketingListsListResponse++; |
| 7542 if (buildCounterTargetableRemarketingListsListResponse < 3) { | 7542 if (buildCounterTargetableRemarketingListsListResponse < 3) { |
| 7543 unittest.expect(o.kind, unittest.equals('foo')); | 7543 unittest.expect(o.kind, unittest.equals('foo')); |
| 7544 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7544 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7545 checkUnnamed1468(o.targetableRemarketingLists); | 7545 checkUnnamed2104(o.targetableRemarketingLists); |
| 7546 } | 7546 } |
| 7547 buildCounterTargetableRemarketingListsListResponse--; | 7547 buildCounterTargetableRemarketingListsListResponse--; |
| 7548 } | 7548 } |
| 7549 | 7549 |
| 7550 buildUnnamed1469() { | 7550 buildUnnamed2105() { |
| 7551 var o = new core.List<api.Browser>(); | 7551 var o = new core.List<api.Browser>(); |
| 7552 o.add(buildBrowser()); | 7552 o.add(buildBrowser()); |
| 7553 o.add(buildBrowser()); | 7553 o.add(buildBrowser()); |
| 7554 return o; | 7554 return o; |
| 7555 } | 7555 } |
| 7556 | 7556 |
| 7557 checkUnnamed1469(core.List<api.Browser> o) { | 7557 checkUnnamed2105(core.List<api.Browser> o) { |
| 7558 unittest.expect(o, unittest.hasLength(2)); | 7558 unittest.expect(o, unittest.hasLength(2)); |
| 7559 checkBrowser(o[0]); | 7559 checkBrowser(o[0]); |
| 7560 checkBrowser(o[1]); | 7560 checkBrowser(o[1]); |
| 7561 } | 7561 } |
| 7562 | 7562 |
| 7563 buildUnnamed1470() { | 7563 buildUnnamed2106() { |
| 7564 var o = new core.List<api.ConnectionType>(); | 7564 var o = new core.List<api.ConnectionType>(); |
| 7565 o.add(buildConnectionType()); | 7565 o.add(buildConnectionType()); |
| 7566 o.add(buildConnectionType()); | 7566 o.add(buildConnectionType()); |
| 7567 return o; | 7567 return o; |
| 7568 } | 7568 } |
| 7569 | 7569 |
| 7570 checkUnnamed1470(core.List<api.ConnectionType> o) { | 7570 checkUnnamed2106(core.List<api.ConnectionType> o) { |
| 7571 unittest.expect(o, unittest.hasLength(2)); | 7571 unittest.expect(o, unittest.hasLength(2)); |
| 7572 checkConnectionType(o[0]); | 7572 checkConnectionType(o[0]); |
| 7573 checkConnectionType(o[1]); | 7573 checkConnectionType(o[1]); |
| 7574 } | 7574 } |
| 7575 | 7575 |
| 7576 buildUnnamed1471() { | 7576 buildUnnamed2107() { |
| 7577 var o = new core.List<api.MobileCarrier>(); | 7577 var o = new core.List<api.MobileCarrier>(); |
| 7578 o.add(buildMobileCarrier()); | 7578 o.add(buildMobileCarrier()); |
| 7579 o.add(buildMobileCarrier()); | 7579 o.add(buildMobileCarrier()); |
| 7580 return o; | 7580 return o; |
| 7581 } | 7581 } |
| 7582 | 7582 |
| 7583 checkUnnamed1471(core.List<api.MobileCarrier> o) { | 7583 checkUnnamed2107(core.List<api.MobileCarrier> o) { |
| 7584 unittest.expect(o, unittest.hasLength(2)); | 7584 unittest.expect(o, unittest.hasLength(2)); |
| 7585 checkMobileCarrier(o[0]); | 7585 checkMobileCarrier(o[0]); |
| 7586 checkMobileCarrier(o[1]); | 7586 checkMobileCarrier(o[1]); |
| 7587 } | 7587 } |
| 7588 | 7588 |
| 7589 buildUnnamed1472() { | 7589 buildUnnamed2108() { |
| 7590 var o = new core.List<api.OperatingSystemVersion>(); | 7590 var o = new core.List<api.OperatingSystemVersion>(); |
| 7591 o.add(buildOperatingSystemVersion()); | 7591 o.add(buildOperatingSystemVersion()); |
| 7592 o.add(buildOperatingSystemVersion()); | 7592 o.add(buildOperatingSystemVersion()); |
| 7593 return o; | 7593 return o; |
| 7594 } | 7594 } |
| 7595 | 7595 |
| 7596 checkUnnamed1472(core.List<api.OperatingSystemVersion> o) { | 7596 checkUnnamed2108(core.List<api.OperatingSystemVersion> o) { |
| 7597 unittest.expect(o, unittest.hasLength(2)); | 7597 unittest.expect(o, unittest.hasLength(2)); |
| 7598 checkOperatingSystemVersion(o[0]); | 7598 checkOperatingSystemVersion(o[0]); |
| 7599 checkOperatingSystemVersion(o[1]); | 7599 checkOperatingSystemVersion(o[1]); |
| 7600 } | 7600 } |
| 7601 | 7601 |
| 7602 buildUnnamed1473() { | 7602 buildUnnamed2109() { |
| 7603 var o = new core.List<api.OperatingSystem>(); | 7603 var o = new core.List<api.OperatingSystem>(); |
| 7604 o.add(buildOperatingSystem()); | 7604 o.add(buildOperatingSystem()); |
| 7605 o.add(buildOperatingSystem()); | 7605 o.add(buildOperatingSystem()); |
| 7606 return o; | 7606 return o; |
| 7607 } | 7607 } |
| 7608 | 7608 |
| 7609 checkUnnamed1473(core.List<api.OperatingSystem> o) { | 7609 checkUnnamed2109(core.List<api.OperatingSystem> o) { |
| 7610 unittest.expect(o, unittest.hasLength(2)); | 7610 unittest.expect(o, unittest.hasLength(2)); |
| 7611 checkOperatingSystem(o[0]); | 7611 checkOperatingSystem(o[0]); |
| 7612 checkOperatingSystem(o[1]); | 7612 checkOperatingSystem(o[1]); |
| 7613 } | 7613 } |
| 7614 | 7614 |
| 7615 buildUnnamed1474() { | 7615 buildUnnamed2110() { |
| 7616 var o = new core.List<api.PlatformType>(); | 7616 var o = new core.List<api.PlatformType>(); |
| 7617 o.add(buildPlatformType()); | 7617 o.add(buildPlatformType()); |
| 7618 o.add(buildPlatformType()); | 7618 o.add(buildPlatformType()); |
| 7619 return o; | 7619 return o; |
| 7620 } | 7620 } |
| 7621 | 7621 |
| 7622 checkUnnamed1474(core.List<api.PlatformType> o) { | 7622 checkUnnamed2110(core.List<api.PlatformType> o) { |
| 7623 unittest.expect(o, unittest.hasLength(2)); | 7623 unittest.expect(o, unittest.hasLength(2)); |
| 7624 checkPlatformType(o[0]); | 7624 checkPlatformType(o[0]); |
| 7625 checkPlatformType(o[1]); | 7625 checkPlatformType(o[1]); |
| 7626 } | 7626 } |
| 7627 | 7627 |
| 7628 core.int buildCounterTechnologyTargeting = 0; | 7628 core.int buildCounterTechnologyTargeting = 0; |
| 7629 buildTechnologyTargeting() { | 7629 buildTechnologyTargeting() { |
| 7630 var o = new api.TechnologyTargeting(); | 7630 var o = new api.TechnologyTargeting(); |
| 7631 buildCounterTechnologyTargeting++; | 7631 buildCounterTechnologyTargeting++; |
| 7632 if (buildCounterTechnologyTargeting < 3) { | 7632 if (buildCounterTechnologyTargeting < 3) { |
| 7633 o.browsers = buildUnnamed1469(); | 7633 o.browsers = buildUnnamed2105(); |
| 7634 o.connectionTypes = buildUnnamed1470(); | 7634 o.connectionTypes = buildUnnamed2106(); |
| 7635 o.mobileCarriers = buildUnnamed1471(); | 7635 o.mobileCarriers = buildUnnamed2107(); |
| 7636 o.operatingSystemVersions = buildUnnamed1472(); | 7636 o.operatingSystemVersions = buildUnnamed2108(); |
| 7637 o.operatingSystems = buildUnnamed1473(); | 7637 o.operatingSystems = buildUnnamed2109(); |
| 7638 o.platformTypes = buildUnnamed1474(); | 7638 o.platformTypes = buildUnnamed2110(); |
| 7639 } | 7639 } |
| 7640 buildCounterTechnologyTargeting--; | 7640 buildCounterTechnologyTargeting--; |
| 7641 return o; | 7641 return o; |
| 7642 } | 7642 } |
| 7643 | 7643 |
| 7644 checkTechnologyTargeting(api.TechnologyTargeting o) { | 7644 checkTechnologyTargeting(api.TechnologyTargeting o) { |
| 7645 buildCounterTechnologyTargeting++; | 7645 buildCounterTechnologyTargeting++; |
| 7646 if (buildCounterTechnologyTargeting < 3) { | 7646 if (buildCounterTechnologyTargeting < 3) { |
| 7647 checkUnnamed1469(o.browsers); | 7647 checkUnnamed2105(o.browsers); |
| 7648 checkUnnamed1470(o.connectionTypes); | 7648 checkUnnamed2106(o.connectionTypes); |
| 7649 checkUnnamed1471(o.mobileCarriers); | 7649 checkUnnamed2107(o.mobileCarriers); |
| 7650 checkUnnamed1472(o.operatingSystemVersions); | 7650 checkUnnamed2108(o.operatingSystemVersions); |
| 7651 checkUnnamed1473(o.operatingSystems); | 7651 checkUnnamed2109(o.operatingSystems); |
| 7652 checkUnnamed1474(o.platformTypes); | 7652 checkUnnamed2110(o.platformTypes); |
| 7653 } | 7653 } |
| 7654 buildCounterTechnologyTargeting--; | 7654 buildCounterTechnologyTargeting--; |
| 7655 } | 7655 } |
| 7656 | 7656 |
| 7657 core.int buildCounterThirdPartyAuthenticationToken = 0; | 7657 core.int buildCounterThirdPartyAuthenticationToken = 0; |
| 7658 buildThirdPartyAuthenticationToken() { | 7658 buildThirdPartyAuthenticationToken() { |
| 7659 var o = new api.ThirdPartyAuthenticationToken(); | 7659 var o = new api.ThirdPartyAuthenticationToken(); |
| 7660 buildCounterThirdPartyAuthenticationToken++; | 7660 buildCounterThirdPartyAuthenticationToken++; |
| 7661 if (buildCounterThirdPartyAuthenticationToken < 3) { | 7661 if (buildCounterThirdPartyAuthenticationToken < 3) { |
| 7662 o.name = "foo"; | 7662 o.name = "foo"; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7745 unittest.expect(o.etag, unittest.equals('foo')); | 7745 unittest.expect(o.etag, unittest.equals('foo')); |
| 7746 unittest.expect(o.kind, unittest.equals('foo')); | 7746 unittest.expect(o.kind, unittest.equals('foo')); |
| 7747 unittest.expect(o.profileId, unittest.equals('foo')); | 7747 unittest.expect(o.profileId, unittest.equals('foo')); |
| 7748 unittest.expect(o.subAccountId, unittest.equals('foo')); | 7748 unittest.expect(o.subAccountId, unittest.equals('foo')); |
| 7749 unittest.expect(o.subAccountName, unittest.equals('foo')); | 7749 unittest.expect(o.subAccountName, unittest.equals('foo')); |
| 7750 unittest.expect(o.userName, unittest.equals('foo')); | 7750 unittest.expect(o.userName, unittest.equals('foo')); |
| 7751 } | 7751 } |
| 7752 buildCounterUserProfile--; | 7752 buildCounterUserProfile--; |
| 7753 } | 7753 } |
| 7754 | 7754 |
| 7755 buildUnnamed1475() { | 7755 buildUnnamed2111() { |
| 7756 var o = new core.List<api.UserProfile>(); | 7756 var o = new core.List<api.UserProfile>(); |
| 7757 o.add(buildUserProfile()); | 7757 o.add(buildUserProfile()); |
| 7758 o.add(buildUserProfile()); | 7758 o.add(buildUserProfile()); |
| 7759 return o; | 7759 return o; |
| 7760 } | 7760 } |
| 7761 | 7761 |
| 7762 checkUnnamed1475(core.List<api.UserProfile> o) { | 7762 checkUnnamed2111(core.List<api.UserProfile> o) { |
| 7763 unittest.expect(o, unittest.hasLength(2)); | 7763 unittest.expect(o, unittest.hasLength(2)); |
| 7764 checkUserProfile(o[0]); | 7764 checkUserProfile(o[0]); |
| 7765 checkUserProfile(o[1]); | 7765 checkUserProfile(o[1]); |
| 7766 } | 7766 } |
| 7767 | 7767 |
| 7768 core.int buildCounterUserProfileList = 0; | 7768 core.int buildCounterUserProfileList = 0; |
| 7769 buildUserProfileList() { | 7769 buildUserProfileList() { |
| 7770 var o = new api.UserProfileList(); | 7770 var o = new api.UserProfileList(); |
| 7771 buildCounterUserProfileList++; | 7771 buildCounterUserProfileList++; |
| 7772 if (buildCounterUserProfileList < 3) { | 7772 if (buildCounterUserProfileList < 3) { |
| 7773 o.etag = "foo"; | 7773 o.etag = "foo"; |
| 7774 o.items = buildUnnamed1475(); | 7774 o.items = buildUnnamed2111(); |
| 7775 o.kind = "foo"; | 7775 o.kind = "foo"; |
| 7776 } | 7776 } |
| 7777 buildCounterUserProfileList--; | 7777 buildCounterUserProfileList--; |
| 7778 return o; | 7778 return o; |
| 7779 } | 7779 } |
| 7780 | 7780 |
| 7781 checkUserProfileList(api.UserProfileList o) { | 7781 checkUserProfileList(api.UserProfileList o) { |
| 7782 buildCounterUserProfileList++; | 7782 buildCounterUserProfileList++; |
| 7783 if (buildCounterUserProfileList < 3) { | 7783 if (buildCounterUserProfileList < 3) { |
| 7784 unittest.expect(o.etag, unittest.equals('foo')); | 7784 unittest.expect(o.etag, unittest.equals('foo')); |
| 7785 checkUnnamed1475(o.items); | 7785 checkUnnamed2111(o.items); |
| 7786 unittest.expect(o.kind, unittest.equals('foo')); | 7786 unittest.expect(o.kind, unittest.equals('foo')); |
| 7787 } | 7787 } |
| 7788 buildCounterUserProfileList--; | 7788 buildCounterUserProfileList--; |
| 7789 } | 7789 } |
| 7790 | 7790 |
| 7791 buildUnnamed1476() { | 7791 buildUnnamed2112() { |
| 7792 var o = new core.List<api.UserRolePermission>(); | 7792 var o = new core.List<api.UserRolePermission>(); |
| 7793 o.add(buildUserRolePermission()); | 7793 o.add(buildUserRolePermission()); |
| 7794 o.add(buildUserRolePermission()); | 7794 o.add(buildUserRolePermission()); |
| 7795 return o; | 7795 return o; |
| 7796 } | 7796 } |
| 7797 | 7797 |
| 7798 checkUnnamed1476(core.List<api.UserRolePermission> o) { | 7798 checkUnnamed2112(core.List<api.UserRolePermission> o) { |
| 7799 unittest.expect(o, unittest.hasLength(2)); | 7799 unittest.expect(o, unittest.hasLength(2)); |
| 7800 checkUserRolePermission(o[0]); | 7800 checkUserRolePermission(o[0]); |
| 7801 checkUserRolePermission(o[1]); | 7801 checkUserRolePermission(o[1]); |
| 7802 } | 7802 } |
| 7803 | 7803 |
| 7804 core.int buildCounterUserRole = 0; | 7804 core.int buildCounterUserRole = 0; |
| 7805 buildUserRole() { | 7805 buildUserRole() { |
| 7806 var o = new api.UserRole(); | 7806 var o = new api.UserRole(); |
| 7807 buildCounterUserRole++; | 7807 buildCounterUserRole++; |
| 7808 if (buildCounterUserRole < 3) { | 7808 if (buildCounterUserRole < 3) { |
| 7809 o.accountId = "foo"; | 7809 o.accountId = "foo"; |
| 7810 o.defaultUserRole = true; | 7810 o.defaultUserRole = true; |
| 7811 o.id = "foo"; | 7811 o.id = "foo"; |
| 7812 o.kind = "foo"; | 7812 o.kind = "foo"; |
| 7813 o.name = "foo"; | 7813 o.name = "foo"; |
| 7814 o.parentUserRoleId = "foo"; | 7814 o.parentUserRoleId = "foo"; |
| 7815 o.permissions = buildUnnamed1476(); | 7815 o.permissions = buildUnnamed2112(); |
| 7816 o.subaccountId = "foo"; | 7816 o.subaccountId = "foo"; |
| 7817 } | 7817 } |
| 7818 buildCounterUserRole--; | 7818 buildCounterUserRole--; |
| 7819 return o; | 7819 return o; |
| 7820 } | 7820 } |
| 7821 | 7821 |
| 7822 checkUserRole(api.UserRole o) { | 7822 checkUserRole(api.UserRole o) { |
| 7823 buildCounterUserRole++; | 7823 buildCounterUserRole++; |
| 7824 if (buildCounterUserRole < 3) { | 7824 if (buildCounterUserRole < 3) { |
| 7825 unittest.expect(o.accountId, unittest.equals('foo')); | 7825 unittest.expect(o.accountId, unittest.equals('foo')); |
| 7826 unittest.expect(o.defaultUserRole, unittest.isTrue); | 7826 unittest.expect(o.defaultUserRole, unittest.isTrue); |
| 7827 unittest.expect(o.id, unittest.equals('foo')); | 7827 unittest.expect(o.id, unittest.equals('foo')); |
| 7828 unittest.expect(o.kind, unittest.equals('foo')); | 7828 unittest.expect(o.kind, unittest.equals('foo')); |
| 7829 unittest.expect(o.name, unittest.equals('foo')); | 7829 unittest.expect(o.name, unittest.equals('foo')); |
| 7830 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); | 7830 unittest.expect(o.parentUserRoleId, unittest.equals('foo')); |
| 7831 checkUnnamed1476(o.permissions); | 7831 checkUnnamed2112(o.permissions); |
| 7832 unittest.expect(o.subaccountId, unittest.equals('foo')); | 7832 unittest.expect(o.subaccountId, unittest.equals('foo')); |
| 7833 } | 7833 } |
| 7834 buildCounterUserRole--; | 7834 buildCounterUserRole--; |
| 7835 } | 7835 } |
| 7836 | 7836 |
| 7837 core.int buildCounterUserRolePermission = 0; | 7837 core.int buildCounterUserRolePermission = 0; |
| 7838 buildUserRolePermission() { | 7838 buildUserRolePermission() { |
| 7839 var o = new api.UserRolePermission(); | 7839 var o = new api.UserRolePermission(); |
| 7840 buildCounterUserRolePermission++; | 7840 buildCounterUserRolePermission++; |
| 7841 if (buildCounterUserRolePermission < 3) { | 7841 if (buildCounterUserRolePermission < 3) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7877 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { | 7877 checkUserRolePermissionGroup(api.UserRolePermissionGroup o) { |
| 7878 buildCounterUserRolePermissionGroup++; | 7878 buildCounterUserRolePermissionGroup++; |
| 7879 if (buildCounterUserRolePermissionGroup < 3) { | 7879 if (buildCounterUserRolePermissionGroup < 3) { |
| 7880 unittest.expect(o.id, unittest.equals('foo')); | 7880 unittest.expect(o.id, unittest.equals('foo')); |
| 7881 unittest.expect(o.kind, unittest.equals('foo')); | 7881 unittest.expect(o.kind, unittest.equals('foo')); |
| 7882 unittest.expect(o.name, unittest.equals('foo')); | 7882 unittest.expect(o.name, unittest.equals('foo')); |
| 7883 } | 7883 } |
| 7884 buildCounterUserRolePermissionGroup--; | 7884 buildCounterUserRolePermissionGroup--; |
| 7885 } | 7885 } |
| 7886 | 7886 |
| 7887 buildUnnamed1477() { | 7887 buildUnnamed2113() { |
| 7888 var o = new core.List<api.UserRolePermissionGroup>(); | 7888 var o = new core.List<api.UserRolePermissionGroup>(); |
| 7889 o.add(buildUserRolePermissionGroup()); | 7889 o.add(buildUserRolePermissionGroup()); |
| 7890 o.add(buildUserRolePermissionGroup()); | 7890 o.add(buildUserRolePermissionGroup()); |
| 7891 return o; | 7891 return o; |
| 7892 } | 7892 } |
| 7893 | 7893 |
| 7894 checkUnnamed1477(core.List<api.UserRolePermissionGroup> o) { | 7894 checkUnnamed2113(core.List<api.UserRolePermissionGroup> o) { |
| 7895 unittest.expect(o, unittest.hasLength(2)); | 7895 unittest.expect(o, unittest.hasLength(2)); |
| 7896 checkUserRolePermissionGroup(o[0]); | 7896 checkUserRolePermissionGroup(o[0]); |
| 7897 checkUserRolePermissionGroup(o[1]); | 7897 checkUserRolePermissionGroup(o[1]); |
| 7898 } | 7898 } |
| 7899 | 7899 |
| 7900 core.int buildCounterUserRolePermissionGroupsListResponse = 0; | 7900 core.int buildCounterUserRolePermissionGroupsListResponse = 0; |
| 7901 buildUserRolePermissionGroupsListResponse() { | 7901 buildUserRolePermissionGroupsListResponse() { |
| 7902 var o = new api.UserRolePermissionGroupsListResponse(); | 7902 var o = new api.UserRolePermissionGroupsListResponse(); |
| 7903 buildCounterUserRolePermissionGroupsListResponse++; | 7903 buildCounterUserRolePermissionGroupsListResponse++; |
| 7904 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7904 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 7905 o.kind = "foo"; | 7905 o.kind = "foo"; |
| 7906 o.userRolePermissionGroups = buildUnnamed1477(); | 7906 o.userRolePermissionGroups = buildUnnamed2113(); |
| 7907 } | 7907 } |
| 7908 buildCounterUserRolePermissionGroupsListResponse--; | 7908 buildCounterUserRolePermissionGroupsListResponse--; |
| 7909 return o; | 7909 return o; |
| 7910 } | 7910 } |
| 7911 | 7911 |
| 7912 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { | 7912 checkUserRolePermissionGroupsListResponse(api.UserRolePermissionGroupsListRespon
se o) { |
| 7913 buildCounterUserRolePermissionGroupsListResponse++; | 7913 buildCounterUserRolePermissionGroupsListResponse++; |
| 7914 if (buildCounterUserRolePermissionGroupsListResponse < 3) { | 7914 if (buildCounterUserRolePermissionGroupsListResponse < 3) { |
| 7915 unittest.expect(o.kind, unittest.equals('foo')); | 7915 unittest.expect(o.kind, unittest.equals('foo')); |
| 7916 checkUnnamed1477(o.userRolePermissionGroups); | 7916 checkUnnamed2113(o.userRolePermissionGroups); |
| 7917 } | 7917 } |
| 7918 buildCounterUserRolePermissionGroupsListResponse--; | 7918 buildCounterUserRolePermissionGroupsListResponse--; |
| 7919 } | 7919 } |
| 7920 | 7920 |
| 7921 buildUnnamed1478() { | 7921 buildUnnamed2114() { |
| 7922 var o = new core.List<api.UserRolePermission>(); | 7922 var o = new core.List<api.UserRolePermission>(); |
| 7923 o.add(buildUserRolePermission()); | 7923 o.add(buildUserRolePermission()); |
| 7924 o.add(buildUserRolePermission()); | 7924 o.add(buildUserRolePermission()); |
| 7925 return o; | 7925 return o; |
| 7926 } | 7926 } |
| 7927 | 7927 |
| 7928 checkUnnamed1478(core.List<api.UserRolePermission> o) { | 7928 checkUnnamed2114(core.List<api.UserRolePermission> o) { |
| 7929 unittest.expect(o, unittest.hasLength(2)); | 7929 unittest.expect(o, unittest.hasLength(2)); |
| 7930 checkUserRolePermission(o[0]); | 7930 checkUserRolePermission(o[0]); |
| 7931 checkUserRolePermission(o[1]); | 7931 checkUserRolePermission(o[1]); |
| 7932 } | 7932 } |
| 7933 | 7933 |
| 7934 core.int buildCounterUserRolePermissionsListResponse = 0; | 7934 core.int buildCounterUserRolePermissionsListResponse = 0; |
| 7935 buildUserRolePermissionsListResponse() { | 7935 buildUserRolePermissionsListResponse() { |
| 7936 var o = new api.UserRolePermissionsListResponse(); | 7936 var o = new api.UserRolePermissionsListResponse(); |
| 7937 buildCounterUserRolePermissionsListResponse++; | 7937 buildCounterUserRolePermissionsListResponse++; |
| 7938 if (buildCounterUserRolePermissionsListResponse < 3) { | 7938 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 7939 o.kind = "foo"; | 7939 o.kind = "foo"; |
| 7940 o.userRolePermissions = buildUnnamed1478(); | 7940 o.userRolePermissions = buildUnnamed2114(); |
| 7941 } | 7941 } |
| 7942 buildCounterUserRolePermissionsListResponse--; | 7942 buildCounterUserRolePermissionsListResponse--; |
| 7943 return o; | 7943 return o; |
| 7944 } | 7944 } |
| 7945 | 7945 |
| 7946 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { | 7946 checkUserRolePermissionsListResponse(api.UserRolePermissionsListResponse o) { |
| 7947 buildCounterUserRolePermissionsListResponse++; | 7947 buildCounterUserRolePermissionsListResponse++; |
| 7948 if (buildCounterUserRolePermissionsListResponse < 3) { | 7948 if (buildCounterUserRolePermissionsListResponse < 3) { |
| 7949 unittest.expect(o.kind, unittest.equals('foo')); | 7949 unittest.expect(o.kind, unittest.equals('foo')); |
| 7950 checkUnnamed1478(o.userRolePermissions); | 7950 checkUnnamed2114(o.userRolePermissions); |
| 7951 } | 7951 } |
| 7952 buildCounterUserRolePermissionsListResponse--; | 7952 buildCounterUserRolePermissionsListResponse--; |
| 7953 } | 7953 } |
| 7954 | 7954 |
| 7955 buildUnnamed1479() { | 7955 buildUnnamed2115() { |
| 7956 var o = new core.List<api.UserRole>(); | 7956 var o = new core.List<api.UserRole>(); |
| 7957 o.add(buildUserRole()); | 7957 o.add(buildUserRole()); |
| 7958 o.add(buildUserRole()); | 7958 o.add(buildUserRole()); |
| 7959 return o; | 7959 return o; |
| 7960 } | 7960 } |
| 7961 | 7961 |
| 7962 checkUnnamed1479(core.List<api.UserRole> o) { | 7962 checkUnnamed2115(core.List<api.UserRole> o) { |
| 7963 unittest.expect(o, unittest.hasLength(2)); | 7963 unittest.expect(o, unittest.hasLength(2)); |
| 7964 checkUserRole(o[0]); | 7964 checkUserRole(o[0]); |
| 7965 checkUserRole(o[1]); | 7965 checkUserRole(o[1]); |
| 7966 } | 7966 } |
| 7967 | 7967 |
| 7968 core.int buildCounterUserRolesListResponse = 0; | 7968 core.int buildCounterUserRolesListResponse = 0; |
| 7969 buildUserRolesListResponse() { | 7969 buildUserRolesListResponse() { |
| 7970 var o = new api.UserRolesListResponse(); | 7970 var o = new api.UserRolesListResponse(); |
| 7971 buildCounterUserRolesListResponse++; | 7971 buildCounterUserRolesListResponse++; |
| 7972 if (buildCounterUserRolesListResponse < 3) { | 7972 if (buildCounterUserRolesListResponse < 3) { |
| 7973 o.kind = "foo"; | 7973 o.kind = "foo"; |
| 7974 o.nextPageToken = "foo"; | 7974 o.nextPageToken = "foo"; |
| 7975 o.userRoles = buildUnnamed1479(); | 7975 o.userRoles = buildUnnamed2115(); |
| 7976 } | 7976 } |
| 7977 buildCounterUserRolesListResponse--; | 7977 buildCounterUserRolesListResponse--; |
| 7978 return o; | 7978 return o; |
| 7979 } | 7979 } |
| 7980 | 7980 |
| 7981 checkUserRolesListResponse(api.UserRolesListResponse o) { | 7981 checkUserRolesListResponse(api.UserRolesListResponse o) { |
| 7982 buildCounterUserRolesListResponse++; | 7982 buildCounterUserRolesListResponse++; |
| 7983 if (buildCounterUserRolesListResponse < 3) { | 7983 if (buildCounterUserRolesListResponse < 3) { |
| 7984 unittest.expect(o.kind, unittest.equals('foo')); | 7984 unittest.expect(o.kind, unittest.equals('foo')); |
| 7985 unittest.expect(o.nextPageToken, unittest.equals('foo')); | 7985 unittest.expect(o.nextPageToken, unittest.equals('foo')); |
| 7986 checkUnnamed1479(o.userRoles); | 7986 checkUnnamed2115(o.userRoles); |
| 7987 } | 7987 } |
| 7988 buildCounterUserRolesListResponse--; | 7988 buildCounterUserRolesListResponse--; |
| 7989 } | 7989 } |
| 7990 | 7990 |
| 7991 buildUnnamed1480() { | 7991 buildUnnamed2116() { |
| 7992 var o = new core.List<core.String>(); | 7992 var o = new core.List<core.String>(); |
| 7993 o.add("foo"); | 7993 o.add("foo"); |
| 7994 o.add("foo"); | 7994 o.add("foo"); |
| 7995 return o; | 7995 return o; |
| 7996 } | 7996 } |
| 7997 | 7997 |
| 7998 checkUnnamed1480(core.List<core.String> o) { | 7998 checkUnnamed2116(core.List<core.String> o) { |
| 7999 unittest.expect(o, unittest.hasLength(2)); | 7999 unittest.expect(o, unittest.hasLength(2)); |
| 8000 unittest.expect(o[0], unittest.equals('foo')); | 8000 unittest.expect(o[0], unittest.equals('foo')); |
| 8001 unittest.expect(o[1], unittest.equals('foo')); | 8001 unittest.expect(o[1], unittest.equals('foo')); |
| 8002 } | 8002 } |
| 8003 | 8003 |
| 8004 buildUnnamed1481() { | 8004 buildUnnamed2117() { |
| 8005 var o = new core.List<core.String>(); | 8005 var o = new core.List<core.String>(); |
| 8006 o.add("foo"); | 8006 o.add("foo"); |
| 8007 o.add("foo"); | 8007 o.add("foo"); |
| 8008 return o; | 8008 return o; |
| 8009 } | 8009 } |
| 8010 | 8010 |
| 8011 checkUnnamed1481(core.List<core.String> o) { | 8011 checkUnnamed2117(core.List<core.String> o) { |
| 8012 unittest.expect(o, unittest.hasLength(2)); | 8012 unittest.expect(o, unittest.hasLength(2)); |
| 8013 unittest.expect(o[0], unittest.equals('foo')); | 8013 unittest.expect(o[0], unittest.equals('foo')); |
| 8014 unittest.expect(o[1], unittest.equals('foo')); | 8014 unittest.expect(o[1], unittest.equals('foo')); |
| 8015 } | 8015 } |
| 8016 | 8016 |
| 8017 buildUnnamed1482() { | 8017 buildUnnamed2118() { |
| 8018 var o = new core.List<core.String>(); | 8018 var o = new core.List<core.String>(); |
| 8019 o.add("foo"); | 8019 o.add("foo"); |
| 8020 o.add("foo"); | 8020 o.add("foo"); |
| 8021 return o; | 8021 return o; |
| 8022 } | 8022 } |
| 8023 | 8023 |
| 8024 checkUnnamed1482(core.List<core.String> o) { | 8024 checkUnnamed2118(core.List<core.String> o) { |
| 8025 unittest.expect(o, unittest.hasLength(2)); | 8025 unittest.expect(o, unittest.hasLength(2)); |
| 8026 unittest.expect(o[0], unittest.equals('foo')); | 8026 unittest.expect(o[0], unittest.equals('foo')); |
| 8027 unittest.expect(o[1], unittest.equals('foo')); | 8027 unittest.expect(o[1], unittest.equals('foo')); |
| 8028 } | 8028 } |
| 8029 | 8029 |
| 8030 buildUnnamed1483() { | 8030 buildUnnamed2119() { |
| 8031 var o = new core.List<core.String>(); | 8031 var o = new core.List<core.String>(); |
| 8032 o.add("foo"); | 8032 o.add("foo"); |
| 8033 o.add("foo"); | 8033 o.add("foo"); |
| 8034 return o; | 8034 return o; |
| 8035 } | 8035 } |
| 8036 | 8036 |
| 8037 checkUnnamed1483(core.List<core.String> o) { | 8037 checkUnnamed2119(core.List<core.String> o) { |
| 8038 unittest.expect(o, unittest.hasLength(2)); | 8038 unittest.expect(o, unittest.hasLength(2)); |
| 8039 unittest.expect(o[0], unittest.equals('foo')); | 8039 unittest.expect(o[0], unittest.equals('foo')); |
| 8040 unittest.expect(o[1], unittest.equals('foo')); | 8040 unittest.expect(o[1], unittest.equals('foo')); |
| 8041 } | 8041 } |
| 8042 | 8042 |
| 8043 buildUnnamed1484() { | 8043 buildUnnamed2120() { |
| 8044 var o = new core.List<core.String>(); | 8044 var o = new core.List<core.String>(); |
| 8045 o.add("foo"); | 8045 o.add("foo"); |
| 8046 o.add("foo"); | 8046 o.add("foo"); |
| 8047 return o; | 8047 return o; |
| 8048 } | 8048 } |
| 8049 | 8049 |
| 8050 checkUnnamed1484(core.List<core.String> o) { | 8050 checkUnnamed2120(core.List<core.String> o) { |
| 8051 unittest.expect(o, unittest.hasLength(2)); | 8051 unittest.expect(o, unittest.hasLength(2)); |
| 8052 unittest.expect(o[0], unittest.equals('foo')); | 8052 unittest.expect(o[0], unittest.equals('foo')); |
| 8053 unittest.expect(o[1], unittest.equals('foo')); | 8053 unittest.expect(o[1], unittest.equals('foo')); |
| 8054 } | 8054 } |
| 8055 | 8055 |
| 8056 buildUnnamed1485() { | 8056 buildUnnamed2121() { |
| 8057 var o = new core.List<core.String>(); | 8057 var o = new core.List<core.String>(); |
| 8058 o.add("foo"); | 8058 o.add("foo"); |
| 8059 o.add("foo"); | 8059 o.add("foo"); |
| 8060 return o; | 8060 return o; |
| 8061 } | 8061 } |
| 8062 | 8062 |
| 8063 checkUnnamed1485(core.List<core.String> o) { | 8063 checkUnnamed2121(core.List<core.String> o) { |
| 8064 unittest.expect(o, unittest.hasLength(2)); | 8064 unittest.expect(o, unittest.hasLength(2)); |
| 8065 unittest.expect(o[0], unittest.equals('foo')); | 8065 unittest.expect(o[0], unittest.equals('foo')); |
| 8066 unittest.expect(o[1], unittest.equals('foo')); | 8066 unittest.expect(o[1], unittest.equals('foo')); |
| 8067 } | 8067 } |
| 8068 | 8068 |
| 8069 buildUnnamed1486() { | 8069 buildUnnamed2122() { |
| 8070 var o = new core.List<core.String>(); | 8070 var o = new core.List<core.String>(); |
| 8071 o.add("foo"); | 8071 o.add("foo"); |
| 8072 o.add("foo"); | 8072 o.add("foo"); |
| 8073 return o; | 8073 return o; |
| 8074 } | 8074 } |
| 8075 | 8075 |
| 8076 checkUnnamed1486(core.List<core.String> o) { | 8076 checkUnnamed2122(core.List<core.String> o) { |
| 8077 unittest.expect(o, unittest.hasLength(2)); | 8077 unittest.expect(o, unittest.hasLength(2)); |
| 8078 unittest.expect(o[0], unittest.equals('foo')); | 8078 unittest.expect(o[0], unittest.equals('foo')); |
| 8079 unittest.expect(o[1], unittest.equals('foo')); | 8079 unittest.expect(o[1], unittest.equals('foo')); |
| 8080 } | 8080 } |
| 8081 | 8081 |
| 8082 buildUnnamed1487() { | 8082 buildUnnamed2123() { |
| 8083 var o = new core.List<core.String>(); | 8083 var o = new core.List<core.String>(); |
| 8084 o.add("foo"); | 8084 o.add("foo"); |
| 8085 o.add("foo"); | 8085 o.add("foo"); |
| 8086 return o; | 8086 return o; |
| 8087 } | 8087 } |
| 8088 | 8088 |
| 8089 checkUnnamed1487(core.List<core.String> o) { | 8089 checkUnnamed2123(core.List<core.String> o) { |
| 8090 unittest.expect(o, unittest.hasLength(2)); | 8090 unittest.expect(o, unittest.hasLength(2)); |
| 8091 unittest.expect(o[0], unittest.equals('foo')); | 8091 unittest.expect(o[0], unittest.equals('foo')); |
| 8092 unittest.expect(o[1], unittest.equals('foo')); | 8092 unittest.expect(o[1], unittest.equals('foo')); |
| 8093 } | 8093 } |
| 8094 | 8094 |
| 8095 buildUnnamed1488() { | 8095 buildUnnamed2124() { |
| 8096 var o = new core.List<core.String>(); | 8096 var o = new core.List<core.String>(); |
| 8097 o.add("foo"); | 8097 o.add("foo"); |
| 8098 o.add("foo"); | 8098 o.add("foo"); |
| 8099 return o; | 8099 return o; |
| 8100 } | 8100 } |
| 8101 | 8101 |
| 8102 checkUnnamed1488(core.List<core.String> o) { | 8102 checkUnnamed2124(core.List<core.String> o) { |
| 8103 unittest.expect(o, unittest.hasLength(2)); | 8103 unittest.expect(o, unittest.hasLength(2)); |
| 8104 unittest.expect(o[0], unittest.equals('foo')); | 8104 unittest.expect(o[0], unittest.equals('foo')); |
| 8105 unittest.expect(o[1], unittest.equals('foo')); | 8105 unittest.expect(o[1], unittest.equals('foo')); |
| 8106 } | 8106 } |
| 8107 | 8107 |
| 8108 buildUnnamed1489() { | 8108 buildUnnamed2125() { |
| 8109 var o = new core.List<core.String>(); | 8109 var o = new core.List<core.String>(); |
| 8110 o.add("foo"); | 8110 o.add("foo"); |
| 8111 o.add("foo"); | 8111 o.add("foo"); |
| 8112 return o; | 8112 return o; |
| 8113 } | 8113 } |
| 8114 | 8114 |
| 8115 checkUnnamed1489(core.List<core.String> o) { | 8115 checkUnnamed2125(core.List<core.String> o) { |
| 8116 unittest.expect(o, unittest.hasLength(2)); | 8116 unittest.expect(o, unittest.hasLength(2)); |
| 8117 unittest.expect(o[0], unittest.equals('foo')); | 8117 unittest.expect(o[0], unittest.equals('foo')); |
| 8118 unittest.expect(o[1], unittest.equals('foo')); | 8118 unittest.expect(o[1], unittest.equals('foo')); |
| 8119 } | 8119 } |
| 8120 | 8120 |
| 8121 buildUnnamed1490() { | 8121 buildUnnamed2126() { |
| 8122 var o = new core.List<core.String>(); | 8122 var o = new core.List<core.String>(); |
| 8123 o.add("foo"); | 8123 o.add("foo"); |
| 8124 o.add("foo"); | 8124 o.add("foo"); |
| 8125 return o; | 8125 return o; |
| 8126 } | 8126 } |
| 8127 | 8127 |
| 8128 checkUnnamed1490(core.List<core.String> o) { | 8128 checkUnnamed2126(core.List<core.String> o) { |
| 8129 unittest.expect(o, unittest.hasLength(2)); | 8129 unittest.expect(o, unittest.hasLength(2)); |
| 8130 unittest.expect(o[0], unittest.equals('foo')); | 8130 unittest.expect(o[0], unittest.equals('foo')); |
| 8131 unittest.expect(o[1], unittest.equals('foo')); | 8131 unittest.expect(o[1], unittest.equals('foo')); |
| 8132 } | 8132 } |
| 8133 | 8133 |
| 8134 buildUnnamed1491() { | 8134 buildUnnamed2127() { |
| 8135 var o = new core.List<core.String>(); | 8135 var o = new core.List<core.String>(); |
| 8136 o.add("foo"); | 8136 o.add("foo"); |
| 8137 o.add("foo"); | 8137 o.add("foo"); |
| 8138 return o; | 8138 return o; |
| 8139 } | 8139 } |
| 8140 | 8140 |
| 8141 checkUnnamed1491(core.List<core.String> o) { | 8141 checkUnnamed2127(core.List<core.String> o) { |
| 8142 unittest.expect(o, unittest.hasLength(2)); | 8142 unittest.expect(o, unittest.hasLength(2)); |
| 8143 unittest.expect(o[0], unittest.equals('foo')); | 8143 unittest.expect(o[0], unittest.equals('foo')); |
| 8144 unittest.expect(o[1], unittest.equals('foo')); | 8144 unittest.expect(o[1], unittest.equals('foo')); |
| 8145 } | 8145 } |
| 8146 | 8146 |
| 8147 buildUnnamed1492() { | 8147 buildUnnamed2128() { |
| 8148 var o = new core.List<core.String>(); | 8148 var o = new core.List<core.String>(); |
| 8149 o.add("foo"); | 8149 o.add("foo"); |
| 8150 o.add("foo"); | 8150 o.add("foo"); |
| 8151 return o; | 8151 return o; |
| 8152 } | 8152 } |
| 8153 | 8153 |
| 8154 checkUnnamed1492(core.List<core.String> o) { | 8154 checkUnnamed2128(core.List<core.String> o) { |
| 8155 unittest.expect(o, unittest.hasLength(2)); | 8155 unittest.expect(o, unittest.hasLength(2)); |
| 8156 unittest.expect(o[0], unittest.equals('foo')); | 8156 unittest.expect(o[0], unittest.equals('foo')); |
| 8157 unittest.expect(o[1], unittest.equals('foo')); | 8157 unittest.expect(o[1], unittest.equals('foo')); |
| 8158 } | 8158 } |
| 8159 | 8159 |
| 8160 buildUnnamed1493() { | 8160 buildUnnamed2129() { |
| 8161 var o = new core.List<core.String>(); | 8161 var o = new core.List<core.String>(); |
| 8162 o.add("foo"); | 8162 o.add("foo"); |
| 8163 o.add("foo"); | 8163 o.add("foo"); |
| 8164 return o; | 8164 return o; |
| 8165 } | 8165 } |
| 8166 | 8166 |
| 8167 checkUnnamed1493(core.List<core.String> o) { | 8167 checkUnnamed2129(core.List<core.String> o) { |
| 8168 unittest.expect(o, unittest.hasLength(2)); | 8168 unittest.expect(o, unittest.hasLength(2)); |
| 8169 unittest.expect(o[0], unittest.equals('foo')); | 8169 unittest.expect(o[0], unittest.equals('foo')); |
| 8170 unittest.expect(o[1], unittest.equals('foo')); | 8170 unittest.expect(o[1], unittest.equals('foo')); |
| 8171 } | 8171 } |
| 8172 | 8172 |
| 8173 buildUnnamed1494() { | 8173 buildUnnamed2130() { |
| 8174 var o = new core.List<core.String>(); | 8174 var o = new core.List<core.String>(); |
| 8175 o.add("foo"); | 8175 o.add("foo"); |
| 8176 o.add("foo"); | 8176 o.add("foo"); |
| 8177 return o; | 8177 return o; |
| 8178 } | 8178 } |
| 8179 | 8179 |
| 8180 checkUnnamed1494(core.List<core.String> o) { | 8180 checkUnnamed2130(core.List<core.String> o) { |
| 8181 unittest.expect(o, unittest.hasLength(2)); | 8181 unittest.expect(o, unittest.hasLength(2)); |
| 8182 unittest.expect(o[0], unittest.equals('foo')); | 8182 unittest.expect(o[0], unittest.equals('foo')); |
| 8183 unittest.expect(o[1], unittest.equals('foo')); | 8183 unittest.expect(o[1], unittest.equals('foo')); |
| 8184 } | 8184 } |
| 8185 | 8185 |
| 8186 buildUnnamed1495() { | 8186 buildUnnamed2131() { |
| 8187 var o = new core.List<core.String>(); | 8187 var o = new core.List<core.String>(); |
| 8188 o.add("foo"); | 8188 o.add("foo"); |
| 8189 o.add("foo"); | 8189 o.add("foo"); |
| 8190 return o; | 8190 return o; |
| 8191 } | 8191 } |
| 8192 | 8192 |
| 8193 checkUnnamed1495(core.List<core.String> o) { | 8193 checkUnnamed2131(core.List<core.String> o) { |
| 8194 unittest.expect(o, unittest.hasLength(2)); | 8194 unittest.expect(o, unittest.hasLength(2)); |
| 8195 unittest.expect(o[0], unittest.equals('foo')); | 8195 unittest.expect(o[0], unittest.equals('foo')); |
| 8196 unittest.expect(o[1], unittest.equals('foo')); | 8196 unittest.expect(o[1], unittest.equals('foo')); |
| 8197 } | 8197 } |
| 8198 | 8198 |
| 8199 buildUnnamed1496() { | 8199 buildUnnamed2132() { |
| 8200 var o = new core.List<core.String>(); | 8200 var o = new core.List<core.String>(); |
| 8201 o.add("foo"); | 8201 o.add("foo"); |
| 8202 o.add("foo"); | 8202 o.add("foo"); |
| 8203 return o; | 8203 return o; |
| 8204 } | 8204 } |
| 8205 | 8205 |
| 8206 checkUnnamed1496(core.List<core.String> o) { | 8206 checkUnnamed2132(core.List<core.String> o) { |
| 8207 unittest.expect(o, unittest.hasLength(2)); | 8207 unittest.expect(o, unittest.hasLength(2)); |
| 8208 unittest.expect(o[0], unittest.equals('foo')); | 8208 unittest.expect(o[0], unittest.equals('foo')); |
| 8209 unittest.expect(o[1], unittest.equals('foo')); | 8209 unittest.expect(o[1], unittest.equals('foo')); |
| 8210 } | 8210 } |
| 8211 | 8211 |
| 8212 buildUnnamed1497() { | 8212 buildUnnamed2133() { |
| 8213 var o = new core.List<core.String>(); | 8213 var o = new core.List<core.String>(); |
| 8214 o.add("foo"); | 8214 o.add("foo"); |
| 8215 o.add("foo"); | 8215 o.add("foo"); |
| 8216 return o; | 8216 return o; |
| 8217 } | 8217 } |
| 8218 | 8218 |
| 8219 checkUnnamed1497(core.List<core.String> o) { | 8219 checkUnnamed2133(core.List<core.String> o) { |
| 8220 unittest.expect(o, unittest.hasLength(2)); | 8220 unittest.expect(o, unittest.hasLength(2)); |
| 8221 unittest.expect(o[0], unittest.equals('foo')); | 8221 unittest.expect(o[0], unittest.equals('foo')); |
| 8222 unittest.expect(o[1], unittest.equals('foo')); | 8222 unittest.expect(o[1], unittest.equals('foo')); |
| 8223 } | 8223 } |
| 8224 | 8224 |
| 8225 buildUnnamed1498() { | 8225 buildUnnamed2134() { |
| 8226 var o = new core.List<core.String>(); | 8226 var o = new core.List<core.String>(); |
| 8227 o.add("foo"); | 8227 o.add("foo"); |
| 8228 o.add("foo"); | 8228 o.add("foo"); |
| 8229 return o; | 8229 return o; |
| 8230 } | 8230 } |
| 8231 | 8231 |
| 8232 checkUnnamed1498(core.List<core.String> o) { | 8232 checkUnnamed2134(core.List<core.String> o) { |
| 8233 unittest.expect(o, unittest.hasLength(2)); | 8233 unittest.expect(o, unittest.hasLength(2)); |
| 8234 unittest.expect(o[0], unittest.equals('foo')); | 8234 unittest.expect(o[0], unittest.equals('foo')); |
| 8235 unittest.expect(o[1], unittest.equals('foo')); | 8235 unittest.expect(o[1], unittest.equals('foo')); |
| 8236 } | 8236 } |
| 8237 | 8237 |
| 8238 buildUnnamed1499() { | 8238 buildUnnamed2135() { |
| 8239 var o = new core.List<core.String>(); | 8239 var o = new core.List<core.String>(); |
| 8240 o.add("foo"); | 8240 o.add("foo"); |
| 8241 o.add("foo"); | 8241 o.add("foo"); |
| 8242 return o; | 8242 return o; |
| 8243 } | 8243 } |
| 8244 | 8244 |
| 8245 checkUnnamed1499(core.List<core.String> o) { | 8245 checkUnnamed2135(core.List<core.String> o) { |
| 8246 unittest.expect(o, unittest.hasLength(2)); | 8246 unittest.expect(o, unittest.hasLength(2)); |
| 8247 unittest.expect(o[0], unittest.equals('foo')); | 8247 unittest.expect(o[0], unittest.equals('foo')); |
| 8248 unittest.expect(o[1], unittest.equals('foo')); | 8248 unittest.expect(o[1], unittest.equals('foo')); |
| 8249 } | 8249 } |
| 8250 | 8250 |
| 8251 buildUnnamed1500() { | 8251 buildUnnamed2136() { |
| 8252 var o = new core.List<core.String>(); | 8252 var o = new core.List<core.String>(); |
| 8253 o.add("foo"); | 8253 o.add("foo"); |
| 8254 o.add("foo"); | 8254 o.add("foo"); |
| 8255 return o; | 8255 return o; |
| 8256 } | 8256 } |
| 8257 | 8257 |
| 8258 checkUnnamed1500(core.List<core.String> o) { | 8258 checkUnnamed2136(core.List<core.String> o) { |
| 8259 unittest.expect(o, unittest.hasLength(2)); | 8259 unittest.expect(o, unittest.hasLength(2)); |
| 8260 unittest.expect(o[0], unittest.equals('foo')); | 8260 unittest.expect(o[0], unittest.equals('foo')); |
| 8261 unittest.expect(o[1], unittest.equals('foo')); | 8261 unittest.expect(o[1], unittest.equals('foo')); |
| 8262 } | 8262 } |
| 8263 | 8263 |
| 8264 buildUnnamed1501() { | 8264 buildUnnamed2137() { |
| 8265 var o = new core.List<core.String>(); | 8265 var o = new core.List<core.String>(); |
| 8266 o.add("foo"); | 8266 o.add("foo"); |
| 8267 o.add("foo"); | 8267 o.add("foo"); |
| 8268 return o; | 8268 return o; |
| 8269 } | 8269 } |
| 8270 | 8270 |
| 8271 checkUnnamed1501(core.List<core.String> o) { | 8271 checkUnnamed2137(core.List<core.String> o) { |
| 8272 unittest.expect(o, unittest.hasLength(2)); | 8272 unittest.expect(o, unittest.hasLength(2)); |
| 8273 unittest.expect(o[0], unittest.equals('foo')); | 8273 unittest.expect(o[0], unittest.equals('foo')); |
| 8274 unittest.expect(o[1], unittest.equals('foo')); | 8274 unittest.expect(o[1], unittest.equals('foo')); |
| 8275 } | 8275 } |
| 8276 | 8276 |
| 8277 buildUnnamed1502() { | 8277 buildUnnamed2138() { |
| 8278 var o = new core.List<core.String>(); | 8278 var o = new core.List<core.String>(); |
| 8279 o.add("foo"); | 8279 o.add("foo"); |
| 8280 o.add("foo"); | 8280 o.add("foo"); |
| 8281 return o; | 8281 return o; |
| 8282 } | 8282 } |
| 8283 | 8283 |
| 8284 checkUnnamed1502(core.List<core.String> o) { | 8284 checkUnnamed2138(core.List<core.String> o) { |
| 8285 unittest.expect(o, unittest.hasLength(2)); | 8285 unittest.expect(o, unittest.hasLength(2)); |
| 8286 unittest.expect(o[0], unittest.equals('foo')); | 8286 unittest.expect(o[0], unittest.equals('foo')); |
| 8287 unittest.expect(o[1], unittest.equals('foo')); | 8287 unittest.expect(o[1], unittest.equals('foo')); |
| 8288 } | 8288 } |
| 8289 | 8289 |
| 8290 buildUnnamed1503() { | 8290 buildUnnamed2139() { |
| 8291 var o = new core.List<core.String>(); | 8291 var o = new core.List<core.String>(); |
| 8292 o.add("foo"); | 8292 o.add("foo"); |
| 8293 o.add("foo"); | 8293 o.add("foo"); |
| 8294 return o; | 8294 return o; |
| 8295 } | 8295 } |
| 8296 | 8296 |
| 8297 checkUnnamed1503(core.List<core.String> o) { | 8297 checkUnnamed2139(core.List<core.String> o) { |
| 8298 unittest.expect(o, unittest.hasLength(2)); | 8298 unittest.expect(o, unittest.hasLength(2)); |
| 8299 unittest.expect(o[0], unittest.equals('foo')); | 8299 unittest.expect(o[0], unittest.equals('foo')); |
| 8300 unittest.expect(o[1], unittest.equals('foo')); | 8300 unittest.expect(o[1], unittest.equals('foo')); |
| 8301 } | 8301 } |
| 8302 | 8302 |
| 8303 buildUnnamed1504() { | 8303 buildUnnamed2140() { |
| 8304 var o = new core.List<core.String>(); | 8304 var o = new core.List<core.String>(); |
| 8305 o.add("foo"); | 8305 o.add("foo"); |
| 8306 o.add("foo"); | 8306 o.add("foo"); |
| 8307 return o; | 8307 return o; |
| 8308 } | 8308 } |
| 8309 | 8309 |
| 8310 checkUnnamed1504(core.List<core.String> o) { | 8310 checkUnnamed2140(core.List<core.String> o) { |
| 8311 unittest.expect(o, unittest.hasLength(2)); | 8311 unittest.expect(o, unittest.hasLength(2)); |
| 8312 unittest.expect(o[0], unittest.equals('foo')); | 8312 unittest.expect(o[0], unittest.equals('foo')); |
| 8313 unittest.expect(o[1], unittest.equals('foo')); | 8313 unittest.expect(o[1], unittest.equals('foo')); |
| 8314 } | 8314 } |
| 8315 | 8315 |
| 8316 buildUnnamed1505() { | 8316 buildUnnamed2141() { |
| 8317 var o = new core.List<core.String>(); | 8317 var o = new core.List<core.String>(); |
| 8318 o.add("foo"); | 8318 o.add("foo"); |
| 8319 o.add("foo"); | 8319 o.add("foo"); |
| 8320 return o; | 8320 return o; |
| 8321 } | 8321 } |
| 8322 | 8322 |
| 8323 checkUnnamed1505(core.List<core.String> o) { | 8323 checkUnnamed2141(core.List<core.String> o) { |
| 8324 unittest.expect(o, unittest.hasLength(2)); | 8324 unittest.expect(o, unittest.hasLength(2)); |
| 8325 unittest.expect(o[0], unittest.equals('foo')); | 8325 unittest.expect(o[0], unittest.equals('foo')); |
| 8326 unittest.expect(o[1], unittest.equals('foo')); | 8326 unittest.expect(o[1], unittest.equals('foo')); |
| 8327 } | 8327 } |
| 8328 | 8328 |
| 8329 buildUnnamed1506() { | 8329 buildUnnamed2142() { |
| 8330 var o = new core.List<core.String>(); | 8330 var o = new core.List<core.String>(); |
| 8331 o.add("foo"); | 8331 o.add("foo"); |
| 8332 o.add("foo"); | 8332 o.add("foo"); |
| 8333 return o; | 8333 return o; |
| 8334 } | 8334 } |
| 8335 | 8335 |
| 8336 checkUnnamed1506(core.List<core.String> o) { | 8336 checkUnnamed2142(core.List<core.String> o) { |
| 8337 unittest.expect(o, unittest.hasLength(2)); | 8337 unittest.expect(o, unittest.hasLength(2)); |
| 8338 unittest.expect(o[0], unittest.equals('foo')); | 8338 unittest.expect(o[0], unittest.equals('foo')); |
| 8339 unittest.expect(o[1], unittest.equals('foo')); | 8339 unittest.expect(o[1], unittest.equals('foo')); |
| 8340 } | 8340 } |
| 8341 | 8341 |
| 8342 buildUnnamed1507() { | 8342 buildUnnamed2143() { |
| 8343 var o = new core.List<core.String>(); | 8343 var o = new core.List<core.String>(); |
| 8344 o.add("foo"); | 8344 o.add("foo"); |
| 8345 o.add("foo"); | 8345 o.add("foo"); |
| 8346 return o; | 8346 return o; |
| 8347 } | 8347 } |
| 8348 | 8348 |
| 8349 checkUnnamed1507(core.List<core.String> o) { | 8349 checkUnnamed2143(core.List<core.String> o) { |
| 8350 unittest.expect(o, unittest.hasLength(2)); | 8350 unittest.expect(o, unittest.hasLength(2)); |
| 8351 unittest.expect(o[0], unittest.equals('foo')); | 8351 unittest.expect(o[0], unittest.equals('foo')); |
| 8352 unittest.expect(o[1], unittest.equals('foo')); | 8352 unittest.expect(o[1], unittest.equals('foo')); |
| 8353 } | 8353 } |
| 8354 | 8354 |
| 8355 buildUnnamed1508() { | 8355 buildUnnamed2144() { |
| 8356 var o = new core.List<core.String>(); | 8356 var o = new core.List<core.String>(); |
| 8357 o.add("foo"); | 8357 o.add("foo"); |
| 8358 o.add("foo"); | 8358 o.add("foo"); |
| 8359 return o; | 8359 return o; |
| 8360 } | 8360 } |
| 8361 | 8361 |
| 8362 checkUnnamed1508(core.List<core.String> o) { | 8362 checkUnnamed2144(core.List<core.String> o) { |
| 8363 unittest.expect(o, unittest.hasLength(2)); | 8363 unittest.expect(o, unittest.hasLength(2)); |
| 8364 unittest.expect(o[0], unittest.equals('foo')); | 8364 unittest.expect(o[0], unittest.equals('foo')); |
| 8365 unittest.expect(o[1], unittest.equals('foo')); | 8365 unittest.expect(o[1], unittest.equals('foo')); |
| 8366 } | 8366 } |
| 8367 | 8367 |
| 8368 buildUnnamed1509() { | 8368 buildUnnamed2145() { |
| 8369 var o = new core.List<core.String>(); | 8369 var o = new core.List<core.String>(); |
| 8370 o.add("foo"); | 8370 o.add("foo"); |
| 8371 o.add("foo"); | 8371 o.add("foo"); |
| 8372 return o; | 8372 return o; |
| 8373 } | 8373 } |
| 8374 | 8374 |
| 8375 checkUnnamed1509(core.List<core.String> o) { | 8375 checkUnnamed2145(core.List<core.String> o) { |
| 8376 unittest.expect(o, unittest.hasLength(2)); | 8376 unittest.expect(o, unittest.hasLength(2)); |
| 8377 unittest.expect(o[0], unittest.equals('foo')); | 8377 unittest.expect(o[0], unittest.equals('foo')); |
| 8378 unittest.expect(o[1], unittest.equals('foo')); | 8378 unittest.expect(o[1], unittest.equals('foo')); |
| 8379 } | 8379 } |
| 8380 | 8380 |
| 8381 buildUnnamed1510() { | 8381 buildUnnamed2146() { |
| 8382 var o = new core.List<core.String>(); | 8382 var o = new core.List<core.String>(); |
| 8383 o.add("foo"); | 8383 o.add("foo"); |
| 8384 o.add("foo"); | 8384 o.add("foo"); |
| 8385 return o; | 8385 return o; |
| 8386 } | 8386 } |
| 8387 | 8387 |
| 8388 checkUnnamed1510(core.List<core.String> o) { | 8388 checkUnnamed2146(core.List<core.String> o) { |
| 8389 unittest.expect(o, unittest.hasLength(2)); | 8389 unittest.expect(o, unittest.hasLength(2)); |
| 8390 unittest.expect(o[0], unittest.equals('foo')); | 8390 unittest.expect(o[0], unittest.equals('foo')); |
| 8391 unittest.expect(o[1], unittest.equals('foo')); | 8391 unittest.expect(o[1], unittest.equals('foo')); |
| 8392 } | 8392 } |
| 8393 | 8393 |
| 8394 buildUnnamed1511() { | 8394 buildUnnamed2147() { |
| 8395 var o = new core.List<core.String>(); | 8395 var o = new core.List<core.String>(); |
| 8396 o.add("foo"); | 8396 o.add("foo"); |
| 8397 o.add("foo"); | 8397 o.add("foo"); |
| 8398 return o; | 8398 return o; |
| 8399 } | 8399 } |
| 8400 | 8400 |
| 8401 checkUnnamed1511(core.List<core.String> o) { | 8401 checkUnnamed2147(core.List<core.String> o) { |
| 8402 unittest.expect(o, unittest.hasLength(2)); | 8402 unittest.expect(o, unittest.hasLength(2)); |
| 8403 unittest.expect(o[0], unittest.equals('foo')); | 8403 unittest.expect(o[0], unittest.equals('foo')); |
| 8404 unittest.expect(o[1], unittest.equals('foo')); | 8404 unittest.expect(o[1], unittest.equals('foo')); |
| 8405 } | 8405 } |
| 8406 | 8406 |
| 8407 buildUnnamed1512() { | 8407 buildUnnamed2148() { |
| 8408 var o = new core.List<core.String>(); | 8408 var o = new core.List<core.String>(); |
| 8409 o.add("foo"); | 8409 o.add("foo"); |
| 8410 o.add("foo"); | 8410 o.add("foo"); |
| 8411 return o; | 8411 return o; |
| 8412 } | 8412 } |
| 8413 | 8413 |
| 8414 checkUnnamed1512(core.List<core.String> o) { | 8414 checkUnnamed2148(core.List<core.String> o) { |
| 8415 unittest.expect(o, unittest.hasLength(2)); | 8415 unittest.expect(o, unittest.hasLength(2)); |
| 8416 unittest.expect(o[0], unittest.equals('foo')); | 8416 unittest.expect(o[0], unittest.equals('foo')); |
| 8417 unittest.expect(o[1], unittest.equals('foo')); | 8417 unittest.expect(o[1], unittest.equals('foo')); |
| 8418 } | 8418 } |
| 8419 | 8419 |
| 8420 buildUnnamed1513() { | 8420 buildUnnamed2149() { |
| 8421 var o = new core.List<core.String>(); | 8421 var o = new core.List<core.String>(); |
| 8422 o.add("foo"); | 8422 o.add("foo"); |
| 8423 o.add("foo"); | 8423 o.add("foo"); |
| 8424 return o; | 8424 return o; |
| 8425 } | 8425 } |
| 8426 | 8426 |
| 8427 checkUnnamed1513(core.List<core.String> o) { | 8427 checkUnnamed2149(core.List<core.String> o) { |
| 8428 unittest.expect(o, unittest.hasLength(2)); | 8428 unittest.expect(o, unittest.hasLength(2)); |
| 8429 unittest.expect(o[0], unittest.equals('foo')); | 8429 unittest.expect(o[0], unittest.equals('foo')); |
| 8430 unittest.expect(o[1], unittest.equals('foo')); | 8430 unittest.expect(o[1], unittest.equals('foo')); |
| 8431 } | 8431 } |
| 8432 | 8432 |
| 8433 buildUnnamed1514() { | 8433 buildUnnamed2150() { |
| 8434 var o = new core.List<core.String>(); | 8434 var o = new core.List<core.String>(); |
| 8435 o.add("foo"); | 8435 o.add("foo"); |
| 8436 o.add("foo"); | 8436 o.add("foo"); |
| 8437 return o; | 8437 return o; |
| 8438 } | 8438 } |
| 8439 | 8439 |
| 8440 checkUnnamed1514(core.List<core.String> o) { | 8440 checkUnnamed2150(core.List<core.String> o) { |
| 8441 unittest.expect(o, unittest.hasLength(2)); | 8441 unittest.expect(o, unittest.hasLength(2)); |
| 8442 unittest.expect(o[0], unittest.equals('foo')); | 8442 unittest.expect(o[0], unittest.equals('foo')); |
| 8443 unittest.expect(o[1], unittest.equals('foo')); | 8443 unittest.expect(o[1], unittest.equals('foo')); |
| 8444 } | 8444 } |
| 8445 | 8445 |
| 8446 buildUnnamed1515() { | 8446 buildUnnamed2151() { |
| 8447 var o = new core.List<core.String>(); | 8447 var o = new core.List<core.String>(); |
| 8448 o.add("foo"); | 8448 o.add("foo"); |
| 8449 o.add("foo"); | 8449 o.add("foo"); |
| 8450 return o; | 8450 return o; |
| 8451 } | 8451 } |
| 8452 | 8452 |
| 8453 checkUnnamed1515(core.List<core.String> o) { | 8453 checkUnnamed2151(core.List<core.String> o) { |
| 8454 unittest.expect(o, unittest.hasLength(2)); | 8454 unittest.expect(o, unittest.hasLength(2)); |
| 8455 unittest.expect(o[0], unittest.equals('foo')); | 8455 unittest.expect(o[0], unittest.equals('foo')); |
| 8456 unittest.expect(o[1], unittest.equals('foo')); | 8456 unittest.expect(o[1], unittest.equals('foo')); |
| 8457 } | 8457 } |
| 8458 | 8458 |
| 8459 buildUnnamed1516() { | 8459 buildUnnamed2152() { |
| 8460 var o = new core.List<core.String>(); | 8460 var o = new core.List<core.String>(); |
| 8461 o.add("foo"); | 8461 o.add("foo"); |
| 8462 o.add("foo"); | 8462 o.add("foo"); |
| 8463 return o; | 8463 return o; |
| 8464 } | 8464 } |
| 8465 | 8465 |
| 8466 checkUnnamed1516(core.List<core.String> o) { | 8466 checkUnnamed2152(core.List<core.String> o) { |
| 8467 unittest.expect(o, unittest.hasLength(2)); | 8467 unittest.expect(o, unittest.hasLength(2)); |
| 8468 unittest.expect(o[0], unittest.equals('foo')); | 8468 unittest.expect(o[0], unittest.equals('foo')); |
| 8469 unittest.expect(o[1], unittest.equals('foo')); | 8469 unittest.expect(o[1], unittest.equals('foo')); |
| 8470 } | 8470 } |
| 8471 | 8471 |
| 8472 buildUnnamed1517() { | 8472 buildUnnamed2153() { |
| 8473 var o = new core.List<core.String>(); | 8473 var o = new core.List<core.String>(); |
| 8474 o.add("foo"); | 8474 o.add("foo"); |
| 8475 o.add("foo"); | 8475 o.add("foo"); |
| 8476 return o; | 8476 return o; |
| 8477 } | 8477 } |
| 8478 | 8478 |
| 8479 checkUnnamed1517(core.List<core.String> o) { | 8479 checkUnnamed2153(core.List<core.String> o) { |
| 8480 unittest.expect(o, unittest.hasLength(2)); | 8480 unittest.expect(o, unittest.hasLength(2)); |
| 8481 unittest.expect(o[0], unittest.equals('foo')); | 8481 unittest.expect(o[0], unittest.equals('foo')); |
| 8482 unittest.expect(o[1], unittest.equals('foo')); | 8482 unittest.expect(o[1], unittest.equals('foo')); |
| 8483 } | 8483 } |
| 8484 | 8484 |
| 8485 buildUnnamed1518() { | 8485 buildUnnamed2154() { |
| 8486 var o = new core.List<core.String>(); | 8486 var o = new core.List<core.String>(); |
| 8487 o.add("foo"); | 8487 o.add("foo"); |
| 8488 o.add("foo"); | 8488 o.add("foo"); |
| 8489 return o; | 8489 return o; |
| 8490 } | 8490 } |
| 8491 | 8491 |
| 8492 checkUnnamed1518(core.List<core.String> o) { | 8492 checkUnnamed2154(core.List<core.String> o) { |
| 8493 unittest.expect(o, unittest.hasLength(2)); | 8493 unittest.expect(o, unittest.hasLength(2)); |
| 8494 unittest.expect(o[0], unittest.equals('foo')); | 8494 unittest.expect(o[0], unittest.equals('foo')); |
| 8495 unittest.expect(o[1], unittest.equals('foo')); | 8495 unittest.expect(o[1], unittest.equals('foo')); |
| 8496 } | 8496 } |
| 8497 | 8497 |
| 8498 buildUnnamed1519() { | 8498 buildUnnamed2155() { |
| 8499 var o = new core.List<core.String>(); | 8499 var o = new core.List<core.String>(); |
| 8500 o.add("foo"); | 8500 o.add("foo"); |
| 8501 o.add("foo"); | 8501 o.add("foo"); |
| 8502 return o; | 8502 return o; |
| 8503 } | 8503 } |
| 8504 | 8504 |
| 8505 checkUnnamed1519(core.List<core.String> o) { | 8505 checkUnnamed2155(core.List<core.String> o) { |
| 8506 unittest.expect(o, unittest.hasLength(2)); | 8506 unittest.expect(o, unittest.hasLength(2)); |
| 8507 unittest.expect(o[0], unittest.equals('foo')); | 8507 unittest.expect(o[0], unittest.equals('foo')); |
| 8508 unittest.expect(o[1], unittest.equals('foo')); | 8508 unittest.expect(o[1], unittest.equals('foo')); |
| 8509 } | 8509 } |
| 8510 | 8510 |
| 8511 buildUnnamed1520() { | 8511 buildUnnamed2156() { |
| 8512 var o = new core.List<core.String>(); | 8512 var o = new core.List<core.String>(); |
| 8513 o.add("foo"); | 8513 o.add("foo"); |
| 8514 o.add("foo"); | 8514 o.add("foo"); |
| 8515 return o; | 8515 return o; |
| 8516 } | 8516 } |
| 8517 | 8517 |
| 8518 checkUnnamed1520(core.List<core.String> o) { | 8518 checkUnnamed2156(core.List<core.String> o) { |
| 8519 unittest.expect(o, unittest.hasLength(2)); | 8519 unittest.expect(o, unittest.hasLength(2)); |
| 8520 unittest.expect(o[0], unittest.equals('foo')); | 8520 unittest.expect(o[0], unittest.equals('foo')); |
| 8521 unittest.expect(o[1], unittest.equals('foo')); | 8521 unittest.expect(o[1], unittest.equals('foo')); |
| 8522 } | 8522 } |
| 8523 | 8523 |
| 8524 buildUnnamed1521() { | 8524 buildUnnamed2157() { |
| 8525 var o = new core.List<core.String>(); | 8525 var o = new core.List<core.String>(); |
| 8526 o.add("foo"); | 8526 o.add("foo"); |
| 8527 o.add("foo"); | 8527 o.add("foo"); |
| 8528 return o; | 8528 return o; |
| 8529 } | 8529 } |
| 8530 | 8530 |
| 8531 checkUnnamed1521(core.List<core.String> o) { | 8531 checkUnnamed2157(core.List<core.String> o) { |
| 8532 unittest.expect(o, unittest.hasLength(2)); | 8532 unittest.expect(o, unittest.hasLength(2)); |
| 8533 unittest.expect(o[0], unittest.equals('foo')); | 8533 unittest.expect(o[0], unittest.equals('foo')); |
| 8534 unittest.expect(o[1], unittest.equals('foo')); | 8534 unittest.expect(o[1], unittest.equals('foo')); |
| 8535 } | 8535 } |
| 8536 | 8536 |
| 8537 buildUnnamed1522() { | 8537 buildUnnamed2158() { |
| 8538 var o = new core.List<core.String>(); | 8538 var o = new core.List<core.String>(); |
| 8539 o.add("foo"); | 8539 o.add("foo"); |
| 8540 o.add("foo"); | 8540 o.add("foo"); |
| 8541 return o; | 8541 return o; |
| 8542 } | 8542 } |
| 8543 | 8543 |
| 8544 checkUnnamed1522(core.List<core.String> o) { | 8544 checkUnnamed2158(core.List<core.String> o) { |
| 8545 unittest.expect(o, unittest.hasLength(2)); | 8545 unittest.expect(o, unittest.hasLength(2)); |
| 8546 unittest.expect(o[0], unittest.equals('foo')); | 8546 unittest.expect(o[0], unittest.equals('foo')); |
| 8547 unittest.expect(o[1], unittest.equals('foo')); | 8547 unittest.expect(o[1], unittest.equals('foo')); |
| 8548 } | 8548 } |
| 8549 | 8549 |
| 8550 buildUnnamed1523() { | 8550 buildUnnamed2159() { |
| 8551 var o = new core.List<core.String>(); | 8551 var o = new core.List<core.String>(); |
| 8552 o.add("foo"); | 8552 o.add("foo"); |
| 8553 o.add("foo"); | 8553 o.add("foo"); |
| 8554 return o; | 8554 return o; |
| 8555 } | 8555 } |
| 8556 | 8556 |
| 8557 checkUnnamed1523(core.List<core.String> o) { | 8557 checkUnnamed2159(core.List<core.String> o) { |
| 8558 unittest.expect(o, unittest.hasLength(2)); | 8558 unittest.expect(o, unittest.hasLength(2)); |
| 8559 unittest.expect(o[0], unittest.equals('foo')); | 8559 unittest.expect(o[0], unittest.equals('foo')); |
| 8560 unittest.expect(o[1], unittest.equals('foo')); | 8560 unittest.expect(o[1], unittest.equals('foo')); |
| 8561 } | 8561 } |
| 8562 | 8562 |
| 8563 buildUnnamed1524() { | 8563 buildUnnamed2160() { |
| 8564 var o = new core.List<core.String>(); | 8564 var o = new core.List<core.String>(); |
| 8565 o.add("foo"); | 8565 o.add("foo"); |
| 8566 o.add("foo"); | 8566 o.add("foo"); |
| 8567 return o; | 8567 return o; |
| 8568 } | 8568 } |
| 8569 | 8569 |
| 8570 checkUnnamed1524(core.List<core.String> o) { | 8570 checkUnnamed2160(core.List<core.String> o) { |
| 8571 unittest.expect(o, unittest.hasLength(2)); | 8571 unittest.expect(o, unittest.hasLength(2)); |
| 8572 unittest.expect(o[0], unittest.equals('foo')); | 8572 unittest.expect(o[0], unittest.equals('foo')); |
| 8573 unittest.expect(o[1], unittest.equals('foo')); | 8573 unittest.expect(o[1], unittest.equals('foo')); |
| 8574 } | 8574 } |
| 8575 | 8575 |
| 8576 buildUnnamed1525() { | 8576 buildUnnamed2161() { |
| 8577 var o = new core.List<core.String>(); | 8577 var o = new core.List<core.String>(); |
| 8578 o.add("foo"); | 8578 o.add("foo"); |
| 8579 o.add("foo"); | 8579 o.add("foo"); |
| 8580 return o; | 8580 return o; |
| 8581 } | 8581 } |
| 8582 | 8582 |
| 8583 checkUnnamed1525(core.List<core.String> o) { | 8583 checkUnnamed2161(core.List<core.String> o) { |
| 8584 unittest.expect(o, unittest.hasLength(2)); | 8584 unittest.expect(o, unittest.hasLength(2)); |
| 8585 unittest.expect(o[0], unittest.equals('foo')); | 8585 unittest.expect(o[0], unittest.equals('foo')); |
| 8586 unittest.expect(o[1], unittest.equals('foo')); | 8586 unittest.expect(o[1], unittest.equals('foo')); |
| 8587 } | 8587 } |
| 8588 | 8588 |
| 8589 buildUnnamed1526() { | 8589 buildUnnamed2162() { |
| 8590 var o = new core.List<core.String>(); | 8590 var o = new core.List<core.String>(); |
| 8591 o.add("foo"); | 8591 o.add("foo"); |
| 8592 o.add("foo"); | 8592 o.add("foo"); |
| 8593 return o; | 8593 return o; |
| 8594 } | 8594 } |
| 8595 | 8595 |
| 8596 checkUnnamed1526(core.List<core.String> o) { | 8596 checkUnnamed2162(core.List<core.String> o) { |
| 8597 unittest.expect(o, unittest.hasLength(2)); | 8597 unittest.expect(o, unittest.hasLength(2)); |
| 8598 unittest.expect(o[0], unittest.equals('foo')); | 8598 unittest.expect(o[0], unittest.equals('foo')); |
| 8599 unittest.expect(o[1], unittest.equals('foo')); | 8599 unittest.expect(o[1], unittest.equals('foo')); |
| 8600 } | 8600 } |
| 8601 | 8601 |
| 8602 buildUnnamed1527() { | 8602 buildUnnamed2163() { |
| 8603 var o = new core.List<core.String>(); | 8603 var o = new core.List<core.String>(); |
| 8604 o.add("foo"); | 8604 o.add("foo"); |
| 8605 o.add("foo"); | 8605 o.add("foo"); |
| 8606 return o; | 8606 return o; |
| 8607 } | 8607 } |
| 8608 | 8608 |
| 8609 checkUnnamed1527(core.List<core.String> o) { | 8609 checkUnnamed2163(core.List<core.String> o) { |
| 8610 unittest.expect(o, unittest.hasLength(2)); | 8610 unittest.expect(o, unittest.hasLength(2)); |
| 8611 unittest.expect(o[0], unittest.equals('foo')); | 8611 unittest.expect(o[0], unittest.equals('foo')); |
| 8612 unittest.expect(o[1], unittest.equals('foo')); | 8612 unittest.expect(o[1], unittest.equals('foo')); |
| 8613 } | 8613 } |
| 8614 | 8614 |
| 8615 buildUnnamed1528() { | 8615 buildUnnamed2164() { |
| 8616 var o = new core.List<core.String>(); | 8616 var o = new core.List<core.String>(); |
| 8617 o.add("foo"); | 8617 o.add("foo"); |
| 8618 o.add("foo"); | 8618 o.add("foo"); |
| 8619 return o; | 8619 return o; |
| 8620 } | 8620 } |
| 8621 | 8621 |
| 8622 checkUnnamed1528(core.List<core.String> o) { | 8622 checkUnnamed2164(core.List<core.String> o) { |
| 8623 unittest.expect(o, unittest.hasLength(2)); | 8623 unittest.expect(o, unittest.hasLength(2)); |
| 8624 unittest.expect(o[0], unittest.equals('foo')); | 8624 unittest.expect(o[0], unittest.equals('foo')); |
| 8625 unittest.expect(o[1], unittest.equals('foo')); | 8625 unittest.expect(o[1], unittest.equals('foo')); |
| 8626 } | 8626 } |
| 8627 | 8627 |
| 8628 buildUnnamed1529() { | 8628 buildUnnamed2165() { |
| 8629 var o = new core.List<core.String>(); | 8629 var o = new core.List<core.String>(); |
| 8630 o.add("foo"); | 8630 o.add("foo"); |
| 8631 o.add("foo"); | 8631 o.add("foo"); |
| 8632 return o; | 8632 return o; |
| 8633 } | 8633 } |
| 8634 | 8634 |
| 8635 checkUnnamed1529(core.List<core.String> o) { | 8635 checkUnnamed2165(core.List<core.String> o) { |
| 8636 unittest.expect(o, unittest.hasLength(2)); | 8636 unittest.expect(o, unittest.hasLength(2)); |
| 8637 unittest.expect(o[0], unittest.equals('foo')); | 8637 unittest.expect(o[0], unittest.equals('foo')); |
| 8638 unittest.expect(o[1], unittest.equals('foo')); | 8638 unittest.expect(o[1], unittest.equals('foo')); |
| 8639 } | 8639 } |
| 8640 | 8640 |
| 8641 buildUnnamed1530() { | 8641 buildUnnamed2166() { |
| 8642 var o = new core.List<core.String>(); | 8642 var o = new core.List<core.String>(); |
| 8643 o.add("foo"); | 8643 o.add("foo"); |
| 8644 o.add("foo"); | 8644 o.add("foo"); |
| 8645 return o; | 8645 return o; |
| 8646 } | 8646 } |
| 8647 | 8647 |
| 8648 checkUnnamed1530(core.List<core.String> o) { | 8648 checkUnnamed2166(core.List<core.String> o) { |
| 8649 unittest.expect(o, unittest.hasLength(2)); | 8649 unittest.expect(o, unittest.hasLength(2)); |
| 8650 unittest.expect(o[0], unittest.equals('foo')); | 8650 unittest.expect(o[0], unittest.equals('foo')); |
| 8651 unittest.expect(o[1], unittest.equals('foo')); | 8651 unittest.expect(o[1], unittest.equals('foo')); |
| 8652 } | 8652 } |
| 8653 | 8653 |
| 8654 buildUnnamed1531() { | 8654 buildUnnamed2167() { |
| 8655 var o = new core.List<core.String>(); | 8655 var o = new core.List<core.String>(); |
| 8656 o.add("foo"); | 8656 o.add("foo"); |
| 8657 o.add("foo"); | 8657 o.add("foo"); |
| 8658 return o; | 8658 return o; |
| 8659 } | 8659 } |
| 8660 | 8660 |
| 8661 checkUnnamed1531(core.List<core.String> o) { | 8661 checkUnnamed2167(core.List<core.String> o) { |
| 8662 unittest.expect(o, unittest.hasLength(2)); | 8662 unittest.expect(o, unittest.hasLength(2)); |
| 8663 unittest.expect(o[0], unittest.equals('foo')); | 8663 unittest.expect(o[0], unittest.equals('foo')); |
| 8664 unittest.expect(o[1], unittest.equals('foo')); | 8664 unittest.expect(o[1], unittest.equals('foo')); |
| 8665 } | 8665 } |
| 8666 | 8666 |
| 8667 buildUnnamed1532() { | 8667 buildUnnamed2168() { |
| 8668 var o = new core.List<core.String>(); | 8668 var o = new core.List<core.String>(); |
| 8669 o.add("foo"); | 8669 o.add("foo"); |
| 8670 o.add("foo"); | 8670 o.add("foo"); |
| 8671 return o; | 8671 return o; |
| 8672 } | 8672 } |
| 8673 | 8673 |
| 8674 checkUnnamed1532(core.List<core.String> o) { | 8674 checkUnnamed2168(core.List<core.String> o) { |
| 8675 unittest.expect(o, unittest.hasLength(2)); | 8675 unittest.expect(o, unittest.hasLength(2)); |
| 8676 unittest.expect(o[0], unittest.equals('foo')); | 8676 unittest.expect(o[0], unittest.equals('foo')); |
| 8677 unittest.expect(o[1], unittest.equals('foo')); | 8677 unittest.expect(o[1], unittest.equals('foo')); |
| 8678 } | 8678 } |
| 8679 | 8679 |
| 8680 buildUnnamed1533() { | 8680 buildUnnamed2169() { |
| 8681 var o = new core.List<core.String>(); | 8681 var o = new core.List<core.String>(); |
| 8682 o.add("foo"); | 8682 o.add("foo"); |
| 8683 o.add("foo"); | 8683 o.add("foo"); |
| 8684 return o; | 8684 return o; |
| 8685 } | 8685 } |
| 8686 | 8686 |
| 8687 checkUnnamed1533(core.List<core.String> o) { | 8687 checkUnnamed2169(core.List<core.String> o) { |
| 8688 unittest.expect(o, unittest.hasLength(2)); | 8688 unittest.expect(o, unittest.hasLength(2)); |
| 8689 unittest.expect(o[0], unittest.equals('foo')); | 8689 unittest.expect(o[0], unittest.equals('foo')); |
| 8690 unittest.expect(o[1], unittest.equals('foo')); | 8690 unittest.expect(o[1], unittest.equals('foo')); |
| 8691 } | 8691 } |
| 8692 | 8692 |
| 8693 buildUnnamed1534() { | 8693 buildUnnamed2170() { |
| 8694 var o = new core.List<core.String>(); | 8694 var o = new core.List<core.String>(); |
| 8695 o.add("foo"); | 8695 o.add("foo"); |
| 8696 o.add("foo"); | 8696 o.add("foo"); |
| 8697 return o; | 8697 return o; |
| 8698 } | 8698 } |
| 8699 | 8699 |
| 8700 checkUnnamed1534(core.List<core.String> o) { | 8700 checkUnnamed2170(core.List<core.String> o) { |
| 8701 unittest.expect(o, unittest.hasLength(2)); | 8701 unittest.expect(o, unittest.hasLength(2)); |
| 8702 unittest.expect(o[0], unittest.equals('foo')); | 8702 unittest.expect(o[0], unittest.equals('foo')); |
| 8703 unittest.expect(o[1], unittest.equals('foo')); | 8703 unittest.expect(o[1], unittest.equals('foo')); |
| 8704 } | 8704 } |
| 8705 | 8705 |
| 8706 buildUnnamed1535() { | 8706 buildUnnamed2171() { |
| 8707 var o = new core.List<core.String>(); | 8707 var o = new core.List<core.String>(); |
| 8708 o.add("foo"); | 8708 o.add("foo"); |
| 8709 o.add("foo"); | 8709 o.add("foo"); |
| 8710 return o; | 8710 return o; |
| 8711 } | 8711 } |
| 8712 | 8712 |
| 8713 checkUnnamed1535(core.List<core.String> o) { | 8713 checkUnnamed2171(core.List<core.String> o) { |
| 8714 unittest.expect(o, unittest.hasLength(2)); | 8714 unittest.expect(o, unittest.hasLength(2)); |
| 8715 unittest.expect(o[0], unittest.equals('foo')); | 8715 unittest.expect(o[0], unittest.equals('foo')); |
| 8716 unittest.expect(o[1], unittest.equals('foo')); | 8716 unittest.expect(o[1], unittest.equals('foo')); |
| 8717 } | 8717 } |
| 8718 | 8718 |
| 8719 buildUnnamed1536() { | 8719 buildUnnamed2172() { |
| 8720 var o = new core.List<core.String>(); | 8720 var o = new core.List<core.String>(); |
| 8721 o.add("foo"); | 8721 o.add("foo"); |
| 8722 o.add("foo"); | 8722 o.add("foo"); |
| 8723 return o; | 8723 return o; |
| 8724 } | 8724 } |
| 8725 | 8725 |
| 8726 checkUnnamed1536(core.List<core.String> o) { | 8726 checkUnnamed2172(core.List<core.String> o) { |
| 8727 unittest.expect(o, unittest.hasLength(2)); | 8727 unittest.expect(o, unittest.hasLength(2)); |
| 8728 unittest.expect(o[0], unittest.equals('foo')); | 8728 unittest.expect(o[0], unittest.equals('foo')); |
| 8729 unittest.expect(o[1], unittest.equals('foo')); | 8729 unittest.expect(o[1], unittest.equals('foo')); |
| 8730 } | 8730 } |
| 8731 | 8731 |
| 8732 buildUnnamed1537() { | 8732 buildUnnamed2173() { |
| 8733 var o = new core.List<core.String>(); | 8733 var o = new core.List<core.String>(); |
| 8734 o.add("foo"); | 8734 o.add("foo"); |
| 8735 o.add("foo"); | 8735 o.add("foo"); |
| 8736 return o; | 8736 return o; |
| 8737 } | 8737 } |
| 8738 | 8738 |
| 8739 checkUnnamed1537(core.List<core.String> o) { | 8739 checkUnnamed2173(core.List<core.String> o) { |
| 8740 unittest.expect(o, unittest.hasLength(2)); | 8740 unittest.expect(o, unittest.hasLength(2)); |
| 8741 unittest.expect(o[0], unittest.equals('foo')); | 8741 unittest.expect(o[0], unittest.equals('foo')); |
| 8742 unittest.expect(o[1], unittest.equals('foo')); | 8742 unittest.expect(o[1], unittest.equals('foo')); |
| 8743 } | 8743 } |
| 8744 | 8744 |
| 8745 buildUnnamed1538() { | 8745 buildUnnamed2174() { |
| 8746 var o = new core.List<core.String>(); | 8746 var o = new core.List<core.String>(); |
| 8747 o.add("foo"); | 8747 o.add("foo"); |
| 8748 o.add("foo"); | 8748 o.add("foo"); |
| 8749 return o; | 8749 return o; |
| 8750 } | 8750 } |
| 8751 | 8751 |
| 8752 checkUnnamed1538(core.List<core.String> o) { | 8752 checkUnnamed2174(core.List<core.String> o) { |
| 8753 unittest.expect(o, unittest.hasLength(2)); | 8753 unittest.expect(o, unittest.hasLength(2)); |
| 8754 unittest.expect(o[0], unittest.equals('foo')); | 8754 unittest.expect(o[0], unittest.equals('foo')); |
| 8755 unittest.expect(o[1], unittest.equals('foo')); | 8755 unittest.expect(o[1], unittest.equals('foo')); |
| 8756 } | 8756 } |
| 8757 | 8757 |
| 8758 buildUnnamed1539() { | 8758 buildUnnamed2175() { |
| 8759 var o = new core.List<core.String>(); | 8759 var o = new core.List<core.String>(); |
| 8760 o.add("foo"); | 8760 o.add("foo"); |
| 8761 o.add("foo"); | 8761 o.add("foo"); |
| 8762 return o; | 8762 return o; |
| 8763 } | 8763 } |
| 8764 | 8764 |
| 8765 checkUnnamed1539(core.List<core.String> o) { | 8765 checkUnnamed2175(core.List<core.String> o) { |
| 8766 unittest.expect(o, unittest.hasLength(2)); | 8766 unittest.expect(o, unittest.hasLength(2)); |
| 8767 unittest.expect(o[0], unittest.equals('foo')); | 8767 unittest.expect(o[0], unittest.equals('foo')); |
| 8768 unittest.expect(o[1], unittest.equals('foo')); | 8768 unittest.expect(o[1], unittest.equals('foo')); |
| 8769 } | 8769 } |
| 8770 | 8770 |
| 8771 buildUnnamed1540() { | 8771 buildUnnamed2176() { |
| 8772 var o = new core.List<core.String>(); | 8772 var o = new core.List<core.String>(); |
| 8773 o.add("foo"); | 8773 o.add("foo"); |
| 8774 o.add("foo"); | 8774 o.add("foo"); |
| 8775 return o; | 8775 return o; |
| 8776 } | 8776 } |
| 8777 | 8777 |
| 8778 checkUnnamed1540(core.List<core.String> o) { | 8778 checkUnnamed2176(core.List<core.String> o) { |
| 8779 unittest.expect(o, unittest.hasLength(2)); | 8779 unittest.expect(o, unittest.hasLength(2)); |
| 8780 unittest.expect(o[0], unittest.equals('foo')); | 8780 unittest.expect(o[0], unittest.equals('foo')); |
| 8781 unittest.expect(o[1], unittest.equals('foo')); | 8781 unittest.expect(o[1], unittest.equals('foo')); |
| 8782 } | 8782 } |
| 8783 | 8783 |
| 8784 buildUnnamed1541() { | 8784 buildUnnamed2177() { |
| 8785 var o = new core.List<core.String>(); | 8785 var o = new core.List<core.String>(); |
| 8786 o.add("foo"); | 8786 o.add("foo"); |
| 8787 o.add("foo"); | 8787 o.add("foo"); |
| 8788 return o; | 8788 return o; |
| 8789 } | 8789 } |
| 8790 | 8790 |
| 8791 checkUnnamed1541(core.List<core.String> o) { | 8791 checkUnnamed2177(core.List<core.String> o) { |
| 8792 unittest.expect(o, unittest.hasLength(2)); | 8792 unittest.expect(o, unittest.hasLength(2)); |
| 8793 unittest.expect(o[0], unittest.equals('foo')); | 8793 unittest.expect(o[0], unittest.equals('foo')); |
| 8794 unittest.expect(o[1], unittest.equals('foo')); | 8794 unittest.expect(o[1], unittest.equals('foo')); |
| 8795 } | 8795 } |
| 8796 | 8796 |
| 8797 buildUnnamed1542() { | 8797 buildUnnamed2178() { |
| 8798 var o = new core.List<core.String>(); | 8798 var o = new core.List<core.String>(); |
| 8799 o.add("foo"); | 8799 o.add("foo"); |
| 8800 o.add("foo"); | 8800 o.add("foo"); |
| 8801 return o; | 8801 return o; |
| 8802 } | 8802 } |
| 8803 | 8803 |
| 8804 checkUnnamed1542(core.List<core.String> o) { | 8804 checkUnnamed2178(core.List<core.String> o) { |
| 8805 unittest.expect(o, unittest.hasLength(2)); | 8805 unittest.expect(o, unittest.hasLength(2)); |
| 8806 unittest.expect(o[0], unittest.equals('foo')); | 8806 unittest.expect(o[0], unittest.equals('foo')); |
| 8807 unittest.expect(o[1], unittest.equals('foo')); | 8807 unittest.expect(o[1], unittest.equals('foo')); |
| 8808 } | 8808 } |
| 8809 | 8809 |
| 8810 buildUnnamed1543() { | 8810 buildUnnamed2179() { |
| 8811 var o = new core.List<core.String>(); | 8811 var o = new core.List<core.String>(); |
| 8812 o.add("foo"); | 8812 o.add("foo"); |
| 8813 o.add("foo"); | 8813 o.add("foo"); |
| 8814 return o; | 8814 return o; |
| 8815 } | 8815 } |
| 8816 | 8816 |
| 8817 checkUnnamed1543(core.List<core.String> o) { | 8817 checkUnnamed2179(core.List<core.String> o) { |
| 8818 unittest.expect(o, unittest.hasLength(2)); | 8818 unittest.expect(o, unittest.hasLength(2)); |
| 8819 unittest.expect(o[0], unittest.equals('foo')); | 8819 unittest.expect(o[0], unittest.equals('foo')); |
| 8820 unittest.expect(o[1], unittest.equals('foo')); | 8820 unittest.expect(o[1], unittest.equals('foo')); |
| 8821 } | 8821 } |
| 8822 | 8822 |
| 8823 buildUnnamed1544() { | 8823 buildUnnamed2180() { |
| 8824 var o = new core.List<core.String>(); | 8824 var o = new core.List<core.String>(); |
| 8825 o.add("foo"); | 8825 o.add("foo"); |
| 8826 o.add("foo"); | 8826 o.add("foo"); |
| 8827 return o; | 8827 return o; |
| 8828 } | 8828 } |
| 8829 | 8829 |
| 8830 checkUnnamed1544(core.List<core.String> o) { | 8830 checkUnnamed2180(core.List<core.String> o) { |
| 8831 unittest.expect(o, unittest.hasLength(2)); | 8831 unittest.expect(o, unittest.hasLength(2)); |
| 8832 unittest.expect(o[0], unittest.equals('foo')); | 8832 unittest.expect(o[0], unittest.equals('foo')); |
| 8833 unittest.expect(o[1], unittest.equals('foo')); | 8833 unittest.expect(o[1], unittest.equals('foo')); |
| 8834 } | 8834 } |
| 8835 | 8835 |
| 8836 buildUnnamed1545() { | 8836 buildUnnamed2181() { |
| 8837 var o = new core.List<core.String>(); | 8837 var o = new core.List<core.String>(); |
| 8838 o.add("foo"); | 8838 o.add("foo"); |
| 8839 o.add("foo"); | 8839 o.add("foo"); |
| 8840 return o; | 8840 return o; |
| 8841 } | 8841 } |
| 8842 | 8842 |
| 8843 checkUnnamed1545(core.List<core.String> o) { | 8843 checkUnnamed2181(core.List<core.String> o) { |
| 8844 unittest.expect(o, unittest.hasLength(2)); | 8844 unittest.expect(o, unittest.hasLength(2)); |
| 8845 unittest.expect(o[0], unittest.equals('foo')); | 8845 unittest.expect(o[0], unittest.equals('foo')); |
| 8846 unittest.expect(o[1], unittest.equals('foo')); | 8846 unittest.expect(o[1], unittest.equals('foo')); |
| 8847 } | 8847 } |
| 8848 | 8848 |
| 8849 buildUnnamed1546() { | 8849 buildUnnamed2182() { |
| 8850 var o = new core.List<core.String>(); | 8850 var o = new core.List<core.String>(); |
| 8851 o.add("foo"); | 8851 o.add("foo"); |
| 8852 o.add("foo"); | 8852 o.add("foo"); |
| 8853 return o; | 8853 return o; |
| 8854 } | 8854 } |
| 8855 | 8855 |
| 8856 checkUnnamed1546(core.List<core.String> o) { | 8856 checkUnnamed2182(core.List<core.String> o) { |
| 8857 unittest.expect(o, unittest.hasLength(2)); | 8857 unittest.expect(o, unittest.hasLength(2)); |
| 8858 unittest.expect(o[0], unittest.equals('foo')); | 8858 unittest.expect(o[0], unittest.equals('foo')); |
| 8859 unittest.expect(o[1], unittest.equals('foo')); | 8859 unittest.expect(o[1], unittest.equals('foo')); |
| 8860 } | 8860 } |
| 8861 | 8861 |
| 8862 buildUnnamed1547() { | 8862 buildUnnamed2183() { |
| 8863 var o = new core.List<core.String>(); | 8863 var o = new core.List<core.String>(); |
| 8864 o.add("foo"); | 8864 o.add("foo"); |
| 8865 o.add("foo"); | 8865 o.add("foo"); |
| 8866 return o; | 8866 return o; |
| 8867 } | 8867 } |
| 8868 | 8868 |
| 8869 checkUnnamed1547(core.List<core.String> o) { | 8869 checkUnnamed2183(core.List<core.String> o) { |
| 8870 unittest.expect(o, unittest.hasLength(2)); | 8870 unittest.expect(o, unittest.hasLength(2)); |
| 8871 unittest.expect(o[0], unittest.equals('foo')); | 8871 unittest.expect(o[0], unittest.equals('foo')); |
| 8872 unittest.expect(o[1], unittest.equals('foo')); | 8872 unittest.expect(o[1], unittest.equals('foo')); |
| 8873 } | 8873 } |
| 8874 | 8874 |
| 8875 buildUnnamed1548() { | 8875 buildUnnamed2184() { |
| 8876 var o = new core.List<core.String>(); | 8876 var o = new core.List<core.String>(); |
| 8877 o.add("foo"); | 8877 o.add("foo"); |
| 8878 o.add("foo"); | 8878 o.add("foo"); |
| 8879 return o; | 8879 return o; |
| 8880 } | 8880 } |
| 8881 | 8881 |
| 8882 checkUnnamed1548(core.List<core.String> o) { | 8882 checkUnnamed2184(core.List<core.String> o) { |
| 8883 unittest.expect(o, unittest.hasLength(2)); | 8883 unittest.expect(o, unittest.hasLength(2)); |
| 8884 unittest.expect(o[0], unittest.equals('foo')); | 8884 unittest.expect(o[0], unittest.equals('foo')); |
| 8885 unittest.expect(o[1], unittest.equals('foo')); | 8885 unittest.expect(o[1], unittest.equals('foo')); |
| 8886 } | 8886 } |
| 8887 | 8887 |
| 8888 buildUnnamed1549() { | 8888 buildUnnamed2185() { |
| 8889 var o = new core.List<core.String>(); | 8889 var o = new core.List<core.String>(); |
| 8890 o.add("foo"); | 8890 o.add("foo"); |
| 8891 o.add("foo"); | 8891 o.add("foo"); |
| 8892 return o; | 8892 return o; |
| 8893 } | 8893 } |
| 8894 | 8894 |
| 8895 checkUnnamed1549(core.List<core.String> o) { | 8895 checkUnnamed2185(core.List<core.String> o) { |
| 8896 unittest.expect(o, unittest.hasLength(2)); | 8896 unittest.expect(o, unittest.hasLength(2)); |
| 8897 unittest.expect(o[0], unittest.equals('foo')); | 8897 unittest.expect(o[0], unittest.equals('foo')); |
| 8898 unittest.expect(o[1], unittest.equals('foo')); | 8898 unittest.expect(o[1], unittest.equals('foo')); |
| 8899 } | 8899 } |
| 8900 | 8900 |
| 8901 buildUnnamed1550() { | 8901 buildUnnamed2186() { |
| 8902 var o = new core.List<core.String>(); | 8902 var o = new core.List<core.String>(); |
| 8903 o.add("foo"); | 8903 o.add("foo"); |
| 8904 o.add("foo"); | 8904 o.add("foo"); |
| 8905 return o; | 8905 return o; |
| 8906 } | 8906 } |
| 8907 | 8907 |
| 8908 checkUnnamed1550(core.List<core.String> o) { | 8908 checkUnnamed2186(core.List<core.String> o) { |
| 8909 unittest.expect(o, unittest.hasLength(2)); | 8909 unittest.expect(o, unittest.hasLength(2)); |
| 8910 unittest.expect(o[0], unittest.equals('foo')); | 8910 unittest.expect(o[0], unittest.equals('foo')); |
| 8911 unittest.expect(o[1], unittest.equals('foo')); | 8911 unittest.expect(o[1], unittest.equals('foo')); |
| 8912 } | 8912 } |
| 8913 | 8913 |
| 8914 buildUnnamed1551() { | 8914 buildUnnamed2187() { |
| 8915 var o = new core.List<core.String>(); | 8915 var o = new core.List<core.String>(); |
| 8916 o.add("foo"); | 8916 o.add("foo"); |
| 8917 o.add("foo"); | 8917 o.add("foo"); |
| 8918 return o; | 8918 return o; |
| 8919 } | 8919 } |
| 8920 | 8920 |
| 8921 checkUnnamed1551(core.List<core.String> o) { | 8921 checkUnnamed2187(core.List<core.String> o) { |
| 8922 unittest.expect(o, unittest.hasLength(2)); | 8922 unittest.expect(o, unittest.hasLength(2)); |
| 8923 unittest.expect(o[0], unittest.equals('foo')); | 8923 unittest.expect(o[0], unittest.equals('foo')); |
| 8924 unittest.expect(o[1], unittest.equals('foo')); | 8924 unittest.expect(o[1], unittest.equals('foo')); |
| 8925 } | 8925 } |
| 8926 | 8926 |
| 8927 buildUnnamed1552() { | 8927 buildUnnamed2188() { |
| 8928 var o = new core.List<core.String>(); | 8928 var o = new core.List<core.String>(); |
| 8929 o.add("foo"); | 8929 o.add("foo"); |
| 8930 o.add("foo"); | 8930 o.add("foo"); |
| 8931 return o; | 8931 return o; |
| 8932 } | 8932 } |
| 8933 | 8933 |
| 8934 checkUnnamed1552(core.List<core.String> o) { | 8934 checkUnnamed2188(core.List<core.String> o) { |
| 8935 unittest.expect(o, unittest.hasLength(2)); | 8935 unittest.expect(o, unittest.hasLength(2)); |
| 8936 unittest.expect(o[0], unittest.equals('foo')); | 8936 unittest.expect(o[0], unittest.equals('foo')); |
| 8937 unittest.expect(o[1], unittest.equals('foo')); | 8937 unittest.expect(o[1], unittest.equals('foo')); |
| 8938 } | 8938 } |
| 8939 | 8939 |
| 8940 buildUnnamed1553() { | 8940 buildUnnamed2189() { |
| 8941 var o = new core.List<core.String>(); | 8941 var o = new core.List<core.String>(); |
| 8942 o.add("foo"); | 8942 o.add("foo"); |
| 8943 o.add("foo"); | 8943 o.add("foo"); |
| 8944 return o; | 8944 return o; |
| 8945 } | 8945 } |
| 8946 | 8946 |
| 8947 checkUnnamed1553(core.List<core.String> o) { | 8947 checkUnnamed2189(core.List<core.String> o) { |
| 8948 unittest.expect(o, unittest.hasLength(2)); | 8948 unittest.expect(o, unittest.hasLength(2)); |
| 8949 unittest.expect(o[0], unittest.equals('foo')); | 8949 unittest.expect(o[0], unittest.equals('foo')); |
| 8950 unittest.expect(o[1], unittest.equals('foo')); | 8950 unittest.expect(o[1], unittest.equals('foo')); |
| 8951 } | 8951 } |
| 8952 | 8952 |
| 8953 buildUnnamed1554() { | 8953 buildUnnamed2190() { |
| 8954 var o = new core.List<core.String>(); | 8954 var o = new core.List<core.String>(); |
| 8955 o.add("foo"); | 8955 o.add("foo"); |
| 8956 o.add("foo"); | 8956 o.add("foo"); |
| 8957 return o; | 8957 return o; |
| 8958 } | 8958 } |
| 8959 | 8959 |
| 8960 checkUnnamed1554(core.List<core.String> o) { | 8960 checkUnnamed2190(core.List<core.String> o) { |
| 8961 unittest.expect(o, unittest.hasLength(2)); | 8961 unittest.expect(o, unittest.hasLength(2)); |
| 8962 unittest.expect(o[0], unittest.equals('foo')); | 8962 unittest.expect(o[0], unittest.equals('foo')); |
| 8963 unittest.expect(o[1], unittest.equals('foo')); | 8963 unittest.expect(o[1], unittest.equals('foo')); |
| 8964 } | 8964 } |
| 8965 | 8965 |
| 8966 buildUnnamed1555() { | 8966 buildUnnamed2191() { |
| 8967 var o = new core.List<core.String>(); | 8967 var o = new core.List<core.String>(); |
| 8968 o.add("foo"); | 8968 o.add("foo"); |
| 8969 o.add("foo"); | 8969 o.add("foo"); |
| 8970 return o; | 8970 return o; |
| 8971 } | 8971 } |
| 8972 | 8972 |
| 8973 checkUnnamed1555(core.List<core.String> o) { | 8973 checkUnnamed2191(core.List<core.String> o) { |
| 8974 unittest.expect(o, unittest.hasLength(2)); | 8974 unittest.expect(o, unittest.hasLength(2)); |
| 8975 unittest.expect(o[0], unittest.equals('foo')); | 8975 unittest.expect(o[0], unittest.equals('foo')); |
| 8976 unittest.expect(o[1], unittest.equals('foo')); | 8976 unittest.expect(o[1], unittest.equals('foo')); |
| 8977 } | 8977 } |
| 8978 | 8978 |
| 8979 buildUnnamed1556() { | 8979 buildUnnamed2192() { |
| 8980 var o = new core.List<core.String>(); | 8980 var o = new core.List<core.String>(); |
| 8981 o.add("foo"); | 8981 o.add("foo"); |
| 8982 o.add("foo"); | 8982 o.add("foo"); |
| 8983 return o; | 8983 return o; |
| 8984 } | 8984 } |
| 8985 | 8985 |
| 8986 checkUnnamed1556(core.List<core.String> o) { | 8986 checkUnnamed2192(core.List<core.String> o) { |
| 8987 unittest.expect(o, unittest.hasLength(2)); | 8987 unittest.expect(o, unittest.hasLength(2)); |
| 8988 unittest.expect(o[0], unittest.equals('foo')); | 8988 unittest.expect(o[0], unittest.equals('foo')); |
| 8989 unittest.expect(o[1], unittest.equals('foo')); | 8989 unittest.expect(o[1], unittest.equals('foo')); |
| 8990 } | 8990 } |
| 8991 | 8991 |
| 8992 buildUnnamed1557() { | 8992 buildUnnamed2193() { |
| 8993 var o = new core.List<core.String>(); | 8993 var o = new core.List<core.String>(); |
| 8994 o.add("foo"); | 8994 o.add("foo"); |
| 8995 o.add("foo"); | 8995 o.add("foo"); |
| 8996 return o; | 8996 return o; |
| 8997 } | 8997 } |
| 8998 | 8998 |
| 8999 checkUnnamed1557(core.List<core.String> o) { | 8999 checkUnnamed2193(core.List<core.String> o) { |
| 9000 unittest.expect(o, unittest.hasLength(2)); | 9000 unittest.expect(o, unittest.hasLength(2)); |
| 9001 unittest.expect(o[0], unittest.equals('foo')); | 9001 unittest.expect(o[0], unittest.equals('foo')); |
| 9002 unittest.expect(o[1], unittest.equals('foo')); | 9002 unittest.expect(o[1], unittest.equals('foo')); |
| 9003 } | 9003 } |
| 9004 | 9004 |
| 9005 buildUnnamed1558() { | 9005 buildUnnamed2194() { |
| 9006 var o = new core.List<core.String>(); | 9006 var o = new core.List<core.String>(); |
| 9007 o.add("foo"); | 9007 o.add("foo"); |
| 9008 o.add("foo"); | 9008 o.add("foo"); |
| 9009 return o; | 9009 return o; |
| 9010 } | 9010 } |
| 9011 | 9011 |
| 9012 checkUnnamed1558(core.List<core.String> o) { | 9012 checkUnnamed2194(core.List<core.String> o) { |
| 9013 unittest.expect(o, unittest.hasLength(2)); | 9013 unittest.expect(o, unittest.hasLength(2)); |
| 9014 unittest.expect(o[0], unittest.equals('foo')); | 9014 unittest.expect(o[0], unittest.equals('foo')); |
| 9015 unittest.expect(o[1], unittest.equals('foo')); | 9015 unittest.expect(o[1], unittest.equals('foo')); |
| 9016 } | 9016 } |
| 9017 | 9017 |
| 9018 buildUnnamed1559() { | 9018 buildUnnamed2195() { |
| 9019 var o = new core.List<core.String>(); | 9019 var o = new core.List<core.String>(); |
| 9020 o.add("foo"); | 9020 o.add("foo"); |
| 9021 o.add("foo"); | 9021 o.add("foo"); |
| 9022 return o; | 9022 return o; |
| 9023 } | 9023 } |
| 9024 | 9024 |
| 9025 checkUnnamed1559(core.List<core.String> o) { | 9025 checkUnnamed2195(core.List<core.String> o) { |
| 9026 unittest.expect(o, unittest.hasLength(2)); | 9026 unittest.expect(o, unittest.hasLength(2)); |
| 9027 unittest.expect(o[0], unittest.equals('foo')); | 9027 unittest.expect(o[0], unittest.equals('foo')); |
| 9028 unittest.expect(o[1], unittest.equals('foo')); | 9028 unittest.expect(o[1], unittest.equals('foo')); |
| 9029 } | 9029 } |
| 9030 | 9030 |
| 9031 buildUnnamed1560() { | 9031 buildUnnamed2196() { |
| 9032 var o = new core.List<core.String>(); | 9032 var o = new core.List<core.String>(); |
| 9033 o.add("foo"); | 9033 o.add("foo"); |
| 9034 o.add("foo"); | 9034 o.add("foo"); |
| 9035 return o; | 9035 return o; |
| 9036 } | 9036 } |
| 9037 | 9037 |
| 9038 checkUnnamed1560(core.List<core.String> o) { | 9038 checkUnnamed2196(core.List<core.String> o) { |
| 9039 unittest.expect(o, unittest.hasLength(2)); | 9039 unittest.expect(o, unittest.hasLength(2)); |
| 9040 unittest.expect(o[0], unittest.equals('foo')); | 9040 unittest.expect(o[0], unittest.equals('foo')); |
| 9041 unittest.expect(o[1], unittest.equals('foo')); | 9041 unittest.expect(o[1], unittest.equals('foo')); |
| 9042 } | 9042 } |
| 9043 | 9043 |
| 9044 buildUnnamed1561() { | 9044 buildUnnamed2197() { |
| 9045 var o = new core.List<core.String>(); | 9045 var o = new core.List<core.String>(); |
| 9046 o.add("foo"); | 9046 o.add("foo"); |
| 9047 o.add("foo"); | 9047 o.add("foo"); |
| 9048 return o; | 9048 return o; |
| 9049 } | 9049 } |
| 9050 | 9050 |
| 9051 checkUnnamed1561(core.List<core.String> o) { | 9051 checkUnnamed2197(core.List<core.String> o) { |
| 9052 unittest.expect(o, unittest.hasLength(2)); | 9052 unittest.expect(o, unittest.hasLength(2)); |
| 9053 unittest.expect(o[0], unittest.equals('foo')); | 9053 unittest.expect(o[0], unittest.equals('foo')); |
| 9054 unittest.expect(o[1], unittest.equals('foo')); | 9054 unittest.expect(o[1], unittest.equals('foo')); |
| 9055 } | 9055 } |
| 9056 | 9056 |
| 9057 buildUnnamed1562() { | 9057 buildUnnamed2198() { |
| 9058 var o = new core.List<core.String>(); | 9058 var o = new core.List<core.String>(); |
| 9059 o.add("foo"); | 9059 o.add("foo"); |
| 9060 o.add("foo"); | 9060 o.add("foo"); |
| 9061 return o; | 9061 return o; |
| 9062 } | 9062 } |
| 9063 | 9063 |
| 9064 checkUnnamed1562(core.List<core.String> o) { | 9064 checkUnnamed2198(core.List<core.String> o) { |
| 9065 unittest.expect(o, unittest.hasLength(2)); | 9065 unittest.expect(o, unittest.hasLength(2)); |
| 9066 unittest.expect(o[0], unittest.equals('foo')); | 9066 unittest.expect(o[0], unittest.equals('foo')); |
| 9067 unittest.expect(o[1], unittest.equals('foo')); | 9067 unittest.expect(o[1], unittest.equals('foo')); |
| 9068 } | 9068 } |
| 9069 | 9069 |
| 9070 buildUnnamed1563() { | 9070 buildUnnamed2199() { |
| 9071 var o = new core.List<core.String>(); | 9071 var o = new core.List<core.String>(); |
| 9072 o.add("foo"); | 9072 o.add("foo"); |
| 9073 o.add("foo"); | 9073 o.add("foo"); |
| 9074 return o; | 9074 return o; |
| 9075 } | 9075 } |
| 9076 | 9076 |
| 9077 checkUnnamed1563(core.List<core.String> o) { | 9077 checkUnnamed2199(core.List<core.String> o) { |
| 9078 unittest.expect(o, unittest.hasLength(2)); | 9078 unittest.expect(o, unittest.hasLength(2)); |
| 9079 unittest.expect(o[0], unittest.equals('foo')); | 9079 unittest.expect(o[0], unittest.equals('foo')); |
| 9080 unittest.expect(o[1], unittest.equals('foo')); | 9080 unittest.expect(o[1], unittest.equals('foo')); |
| 9081 } | 9081 } |
| 9082 | 9082 |
| 9083 buildUnnamed1564() { | 9083 buildUnnamed2200() { |
| 9084 var o = new core.List<core.String>(); | 9084 var o = new core.List<core.String>(); |
| 9085 o.add("foo"); | 9085 o.add("foo"); |
| 9086 o.add("foo"); | 9086 o.add("foo"); |
| 9087 return o; | 9087 return o; |
| 9088 } | 9088 } |
| 9089 | 9089 |
| 9090 checkUnnamed1564(core.List<core.String> o) { | 9090 checkUnnamed2200(core.List<core.String> o) { |
| 9091 unittest.expect(o, unittest.hasLength(2)); | 9091 unittest.expect(o, unittest.hasLength(2)); |
| 9092 unittest.expect(o[0], unittest.equals('foo')); | 9092 unittest.expect(o[0], unittest.equals('foo')); |
| 9093 unittest.expect(o[1], unittest.equals('foo')); | 9093 unittest.expect(o[1], unittest.equals('foo')); |
| 9094 } | 9094 } |
| 9095 | 9095 |
| 9096 buildUnnamed1565() { | 9096 buildUnnamed2201() { |
| 9097 var o = new core.List<core.String>(); | 9097 var o = new core.List<core.String>(); |
| 9098 o.add("foo"); | 9098 o.add("foo"); |
| 9099 o.add("foo"); | 9099 o.add("foo"); |
| 9100 return o; | 9100 return o; |
| 9101 } | 9101 } |
| 9102 | 9102 |
| 9103 checkUnnamed1565(core.List<core.String> o) { | 9103 checkUnnamed2201(core.List<core.String> o) { |
| 9104 unittest.expect(o, unittest.hasLength(2)); | 9104 unittest.expect(o, unittest.hasLength(2)); |
| 9105 unittest.expect(o[0], unittest.equals('foo')); | 9105 unittest.expect(o[0], unittest.equals('foo')); |
| 9106 unittest.expect(o[1], unittest.equals('foo')); | 9106 unittest.expect(o[1], unittest.equals('foo')); |
| 9107 } | 9107 } |
| 9108 | 9108 |
| 9109 | 9109 |
| 9110 main() { | 9110 main() { |
| 9111 unittest.group("obj-schema-Account", () { | 9111 unittest.group("obj-schema-Account", () { |
| 9112 unittest.test("to-json--from-json", () { | 9112 unittest.test("to-json--from-json", () { |
| 9113 var o = buildAccount(); | 9113 var o = buildAccount(); |
| 9114 var od = new api.Account.fromJson(o.toJson()); | 9114 var od = new api.Account.fromJson(o.toJson()); |
| 9115 checkAccount(od); | 9115 checkAccount(od); |
| 9116 }); | 9116 }); |
| (...skipping 2131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11248 checkAccountUserProfile(response); | 11248 checkAccountUserProfile(response); |
| 11249 }))); | 11249 }))); |
| 11250 }); | 11250 }); |
| 11251 | 11251 |
| 11252 unittest.test("method--list", () { | 11252 unittest.test("method--list", () { |
| 11253 | 11253 |
| 11254 var mock = new HttpServerMock(); | 11254 var mock = new HttpServerMock(); |
| 11255 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; | 11255 api.AccountUserProfilesResourceApi res = new api.DfareportingApi(mock).acc
ountUserProfiles; |
| 11256 var arg_profileId = "foo"; | 11256 var arg_profileId = "foo"; |
| 11257 var arg_active = true; | 11257 var arg_active = true; |
| 11258 var arg_ids = buildUnnamed1480(); | 11258 var arg_ids = buildUnnamed2116(); |
| 11259 var arg_maxResults = 42; | 11259 var arg_maxResults = 42; |
| 11260 var arg_pageToken = "foo"; | 11260 var arg_pageToken = "foo"; |
| 11261 var arg_searchString = "foo"; | 11261 var arg_searchString = "foo"; |
| 11262 var arg_sortField = "foo"; | 11262 var arg_sortField = "foo"; |
| 11263 var arg_sortOrder = "foo"; | 11263 var arg_sortOrder = "foo"; |
| 11264 var arg_subaccountId = "foo"; | 11264 var arg_subaccountId = "foo"; |
| 11265 var arg_userRoleId = "foo"; | 11265 var arg_userRoleId = "foo"; |
| 11266 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11266 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11267 var path = (req.url).path; | 11267 var path = (req.url).path; |
| 11268 var pathOffset = 0; | 11268 var pathOffset = 0; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11496 checkAccount(response); | 11496 checkAccount(response); |
| 11497 }))); | 11497 }))); |
| 11498 }); | 11498 }); |
| 11499 | 11499 |
| 11500 unittest.test("method--list", () { | 11500 unittest.test("method--list", () { |
| 11501 | 11501 |
| 11502 var mock = new HttpServerMock(); | 11502 var mock = new HttpServerMock(); |
| 11503 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; | 11503 api.AccountsResourceApi res = new api.DfareportingApi(mock).accounts; |
| 11504 var arg_profileId = "foo"; | 11504 var arg_profileId = "foo"; |
| 11505 var arg_active = true; | 11505 var arg_active = true; |
| 11506 var arg_ids = buildUnnamed1481(); | 11506 var arg_ids = buildUnnamed2117(); |
| 11507 var arg_maxResults = 42; | 11507 var arg_maxResults = 42; |
| 11508 var arg_pageToken = "foo"; | 11508 var arg_pageToken = "foo"; |
| 11509 var arg_searchString = "foo"; | 11509 var arg_searchString = "foo"; |
| 11510 var arg_sortField = "foo"; | 11510 var arg_sortField = "foo"; |
| 11511 var arg_sortOrder = "foo"; | 11511 var arg_sortOrder = "foo"; |
| 11512 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11512 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11513 var path = (req.url).path; | 11513 var path = (req.url).path; |
| 11514 var pathOffset = 0; | 11514 var pathOffset = 0; |
| 11515 var index; | 11515 var index; |
| 11516 var subPart; | 11516 var subPart; |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11799 }); | 11799 }); |
| 11800 | 11800 |
| 11801 unittest.test("method--list", () { | 11801 unittest.test("method--list", () { |
| 11802 | 11802 |
| 11803 var mock = new HttpServerMock(); | 11803 var mock = new HttpServerMock(); |
| 11804 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; | 11804 api.AdsResourceApi res = new api.DfareportingApi(mock).ads; |
| 11805 var arg_profileId = "foo"; | 11805 var arg_profileId = "foo"; |
| 11806 var arg_active = true; | 11806 var arg_active = true; |
| 11807 var arg_advertiserId = "foo"; | 11807 var arg_advertiserId = "foo"; |
| 11808 var arg_archived = true; | 11808 var arg_archived = true; |
| 11809 var arg_audienceSegmentIds = buildUnnamed1482(); | 11809 var arg_audienceSegmentIds = buildUnnamed2118(); |
| 11810 var arg_campaignIds = buildUnnamed1483(); | 11810 var arg_campaignIds = buildUnnamed2119(); |
| 11811 var arg_compatibility = "foo"; | 11811 var arg_compatibility = "foo"; |
| 11812 var arg_creativeIds = buildUnnamed1484(); | 11812 var arg_creativeIds = buildUnnamed2120(); |
| 11813 var arg_creativeOptimizationConfigurationIds = buildUnnamed1485(); | 11813 var arg_creativeOptimizationConfigurationIds = buildUnnamed2121(); |
| 11814 var arg_creativeType = "foo"; | 11814 var arg_creativeType = "foo"; |
| 11815 var arg_dynamicClickTracker = true; | 11815 var arg_dynamicClickTracker = true; |
| 11816 var arg_ids = buildUnnamed1486(); | 11816 var arg_ids = buildUnnamed2122(); |
| 11817 var arg_landingPageIds = buildUnnamed1487(); | 11817 var arg_landingPageIds = buildUnnamed2123(); |
| 11818 var arg_maxResults = 42; | 11818 var arg_maxResults = 42; |
| 11819 var arg_overriddenEventTagId = "foo"; | 11819 var arg_overriddenEventTagId = "foo"; |
| 11820 var arg_pageToken = "foo"; | 11820 var arg_pageToken = "foo"; |
| 11821 var arg_placementIds = buildUnnamed1488(); | 11821 var arg_placementIds = buildUnnamed2124(); |
| 11822 var arg_remarketingListIds = buildUnnamed1489(); | 11822 var arg_remarketingListIds = buildUnnamed2125(); |
| 11823 var arg_searchString = "foo"; | 11823 var arg_searchString = "foo"; |
| 11824 var arg_sizeIds = buildUnnamed1490(); | 11824 var arg_sizeIds = buildUnnamed2126(); |
| 11825 var arg_sortField = "foo"; | 11825 var arg_sortField = "foo"; |
| 11826 var arg_sortOrder = "foo"; | 11826 var arg_sortOrder = "foo"; |
| 11827 var arg_sslCompliant = true; | 11827 var arg_sslCompliant = true; |
| 11828 var arg_sslRequired = true; | 11828 var arg_sslRequired = true; |
| 11829 var arg_type = buildUnnamed1491(); | 11829 var arg_type = buildUnnamed2127(); |
| 11830 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 11830 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 11831 var path = (req.url).path; | 11831 var path = (req.url).path; |
| 11832 var pathOffset = 0; | 11832 var pathOffset = 0; |
| 11833 var index; | 11833 var index; |
| 11834 var subPart; | 11834 var subPart; |
| 11835 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 11835 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 11836 pathOffset += 1; | 11836 pathOffset += 1; |
| 11837 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 11837 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| 11838 pathOffset += 18; | 11838 pathOffset += 18; |
| 11839 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 11839 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12186 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { | 12186 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiserGroup response) { |
| 12187 checkAdvertiserGroup(response); | 12187 checkAdvertiserGroup(response); |
| 12188 }))); | 12188 }))); |
| 12189 }); | 12189 }); |
| 12190 | 12190 |
| 12191 unittest.test("method--list", () { | 12191 unittest.test("method--list", () { |
| 12192 | 12192 |
| 12193 var mock = new HttpServerMock(); | 12193 var mock = new HttpServerMock(); |
| 12194 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; | 12194 api.AdvertiserGroupsResourceApi res = new api.DfareportingApi(mock).advert
iserGroups; |
| 12195 var arg_profileId = "foo"; | 12195 var arg_profileId = "foo"; |
| 12196 var arg_ids = buildUnnamed1492(); | 12196 var arg_ids = buildUnnamed2128(); |
| 12197 var arg_maxResults = 42; | 12197 var arg_maxResults = 42; |
| 12198 var arg_pageToken = "foo"; | 12198 var arg_pageToken = "foo"; |
| 12199 var arg_searchString = "foo"; | 12199 var arg_searchString = "foo"; |
| 12200 var arg_sortField = "foo"; | 12200 var arg_sortField = "foo"; |
| 12201 var arg_sortOrder = "foo"; | 12201 var arg_sortOrder = "foo"; |
| 12202 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12202 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 12203 var path = (req.url).path; | 12203 var path = (req.url).path; |
| 12204 var pathOffset = 0; | 12204 var pathOffset = 0; |
| 12205 var index; | 12205 var index; |
| 12206 var subPart; | 12206 var subPart; |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12485 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { | 12485 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Adv
ertiser response) { |
| 12486 checkAdvertiser(response); | 12486 checkAdvertiser(response); |
| 12487 }))); | 12487 }))); |
| 12488 }); | 12488 }); |
| 12489 | 12489 |
| 12490 unittest.test("method--list", () { | 12490 unittest.test("method--list", () { |
| 12491 | 12491 |
| 12492 var mock = new HttpServerMock(); | 12492 var mock = new HttpServerMock(); |
| 12493 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; | 12493 api.AdvertisersResourceApi res = new api.DfareportingApi(mock).advertisers
; |
| 12494 var arg_profileId = "foo"; | 12494 var arg_profileId = "foo"; |
| 12495 var arg_advertiserGroupIds = buildUnnamed1493(); | 12495 var arg_advertiserGroupIds = buildUnnamed2129(); |
| 12496 var arg_floodlightConfigurationIds = buildUnnamed1494(); | 12496 var arg_floodlightConfigurationIds = buildUnnamed2130(); |
| 12497 var arg_ids = buildUnnamed1495(); | 12497 var arg_ids = buildUnnamed2131(); |
| 12498 var arg_includeAdvertisersWithoutGroupsOnly = true; | 12498 var arg_includeAdvertisersWithoutGroupsOnly = true; |
| 12499 var arg_maxResults = 42; | 12499 var arg_maxResults = 42; |
| 12500 var arg_onlyParent = true; | 12500 var arg_onlyParent = true; |
| 12501 var arg_pageToken = "foo"; | 12501 var arg_pageToken = "foo"; |
| 12502 var arg_searchString = "foo"; | 12502 var arg_searchString = "foo"; |
| 12503 var arg_sortField = "foo"; | 12503 var arg_sortField = "foo"; |
| 12504 var arg_sortOrder = "foo"; | 12504 var arg_sortOrder = "foo"; |
| 12505 var arg_status = "foo"; | 12505 var arg_status = "foo"; |
| 12506 var arg_subaccountId = "foo"; | 12506 var arg_subaccountId = "foo"; |
| 12507 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 12507 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12993 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { | 12993 res.insert(arg_request, arg_profileId, arg_defaultLandingPageName, arg_def
aultLandingPageUrl).then(unittest.expectAsync(((api.Campaign response) { |
| 12994 checkCampaign(response); | 12994 checkCampaign(response); |
| 12995 }))); | 12995 }))); |
| 12996 }); | 12996 }); |
| 12997 | 12997 |
| 12998 unittest.test("method--list", () { | 12998 unittest.test("method--list", () { |
| 12999 | 12999 |
| 13000 var mock = new HttpServerMock(); | 13000 var mock = new HttpServerMock(); |
| 13001 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; | 13001 api.CampaignsResourceApi res = new api.DfareportingApi(mock).campaigns; |
| 13002 var arg_profileId = "foo"; | 13002 var arg_profileId = "foo"; |
| 13003 var arg_advertiserGroupIds = buildUnnamed1496(); | 13003 var arg_advertiserGroupIds = buildUnnamed2132(); |
| 13004 var arg_advertiserIds = buildUnnamed1497(); | 13004 var arg_advertiserIds = buildUnnamed2133(); |
| 13005 var arg_archived = true; | 13005 var arg_archived = true; |
| 13006 var arg_atLeastOneOptimizationActivity = true; | 13006 var arg_atLeastOneOptimizationActivity = true; |
| 13007 var arg_excludedIds = buildUnnamed1498(); | 13007 var arg_excludedIds = buildUnnamed2134(); |
| 13008 var arg_ids = buildUnnamed1499(); | 13008 var arg_ids = buildUnnamed2135(); |
| 13009 var arg_maxResults = 42; | 13009 var arg_maxResults = 42; |
| 13010 var arg_overriddenEventTagId = "foo"; | 13010 var arg_overriddenEventTagId = "foo"; |
| 13011 var arg_pageToken = "foo"; | 13011 var arg_pageToken = "foo"; |
| 13012 var arg_searchString = "foo"; | 13012 var arg_searchString = "foo"; |
| 13013 var arg_sortField = "foo"; | 13013 var arg_sortField = "foo"; |
| 13014 var arg_sortOrder = "foo"; | 13014 var arg_sortOrder = "foo"; |
| 13015 var arg_subaccountId = "foo"; | 13015 var arg_subaccountId = "foo"; |
| 13016 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13016 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13017 var path = (req.url).path; | 13017 var path = (req.url).path; |
| 13018 var pathOffset = 0; | 13018 var pathOffset = 0; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13250 checkChangeLog(response); | 13250 checkChangeLog(response); |
| 13251 }))); | 13251 }))); |
| 13252 }); | 13252 }); |
| 13253 | 13253 |
| 13254 unittest.test("method--list", () { | 13254 unittest.test("method--list", () { |
| 13255 | 13255 |
| 13256 var mock = new HttpServerMock(); | 13256 var mock = new HttpServerMock(); |
| 13257 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; | 13257 api.ChangeLogsResourceApi res = new api.DfareportingApi(mock).changeLogs; |
| 13258 var arg_profileId = "foo"; | 13258 var arg_profileId = "foo"; |
| 13259 var arg_action = "foo"; | 13259 var arg_action = "foo"; |
| 13260 var arg_ids = buildUnnamed1500(); | 13260 var arg_ids = buildUnnamed2136(); |
| 13261 var arg_maxChangeTime = "foo"; | 13261 var arg_maxChangeTime = "foo"; |
| 13262 var arg_maxResults = 42; | 13262 var arg_maxResults = 42; |
| 13263 var arg_minChangeTime = "foo"; | 13263 var arg_minChangeTime = "foo"; |
| 13264 var arg_objectIds = buildUnnamed1501(); | 13264 var arg_objectIds = buildUnnamed2137(); |
| 13265 var arg_objectType = "foo"; | 13265 var arg_objectType = "foo"; |
| 13266 var arg_pageToken = "foo"; | 13266 var arg_pageToken = "foo"; |
| 13267 var arg_searchString = "foo"; | 13267 var arg_searchString = "foo"; |
| 13268 var arg_userProfileIds = buildUnnamed1502(); | 13268 var arg_userProfileIds = buildUnnamed2138(); |
| 13269 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13269 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13270 var path = (req.url).path; | 13270 var path = (req.url).path; |
| 13271 var pathOffset = 0; | 13271 var pathOffset = 0; |
| 13272 var index; | 13272 var index; |
| 13273 var subPart; | 13273 var subPart; |
| 13274 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13274 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13275 pathOffset += 1; | 13275 pathOffset += 1; |
| 13276 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 13276 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| 13277 pathOffset += 18; | 13277 pathOffset += 18; |
| 13278 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13278 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13326 | 13326 |
| 13327 }); | 13327 }); |
| 13328 | 13328 |
| 13329 | 13329 |
| 13330 unittest.group("resource-CitiesResourceApi", () { | 13330 unittest.group("resource-CitiesResourceApi", () { |
| 13331 unittest.test("method--list", () { | 13331 unittest.test("method--list", () { |
| 13332 | 13332 |
| 13333 var mock = new HttpServerMock(); | 13333 var mock = new HttpServerMock(); |
| 13334 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; | 13334 api.CitiesResourceApi res = new api.DfareportingApi(mock).cities; |
| 13335 var arg_profileId = "foo"; | 13335 var arg_profileId = "foo"; |
| 13336 var arg_countryDartIds = buildUnnamed1503(); | 13336 var arg_countryDartIds = buildUnnamed2139(); |
| 13337 var arg_dartIds = buildUnnamed1504(); | 13337 var arg_dartIds = buildUnnamed2140(); |
| 13338 var arg_namePrefix = "foo"; | 13338 var arg_namePrefix = "foo"; |
| 13339 var arg_regionDartIds = buildUnnamed1505(); | 13339 var arg_regionDartIds = buildUnnamed2141(); |
| 13340 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13340 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13341 var path = (req.url).path; | 13341 var path = (req.url).path; |
| 13342 var pathOffset = 0; | 13342 var pathOffset = 0; |
| 13343 var index; | 13343 var index; |
| 13344 var subPart; | 13344 var subPart; |
| 13345 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 13345 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 13346 pathOffset += 1; | 13346 pathOffset += 1; |
| 13347 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 13347 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| 13348 pathOffset += 18; | 13348 pathOffset += 18; |
| 13349 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 13349 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13674 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { | 13674 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Con
tentCategory response) { |
| 13675 checkContentCategory(response); | 13675 checkContentCategory(response); |
| 13676 }))); | 13676 }))); |
| 13677 }); | 13677 }); |
| 13678 | 13678 |
| 13679 unittest.test("method--list", () { | 13679 unittest.test("method--list", () { |
| 13680 | 13680 |
| 13681 var mock = new HttpServerMock(); | 13681 var mock = new HttpServerMock(); |
| 13682 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; | 13682 api.ContentCategoriesResourceApi res = new api.DfareportingApi(mock).conte
ntCategories; |
| 13683 var arg_profileId = "foo"; | 13683 var arg_profileId = "foo"; |
| 13684 var arg_ids = buildUnnamed1506(); | 13684 var arg_ids = buildUnnamed2142(); |
| 13685 var arg_maxResults = 42; | 13685 var arg_maxResults = 42; |
| 13686 var arg_pageToken = "foo"; | 13686 var arg_pageToken = "foo"; |
| 13687 var arg_searchString = "foo"; | 13687 var arg_searchString = "foo"; |
| 13688 var arg_sortField = "foo"; | 13688 var arg_sortField = "foo"; |
| 13689 var arg_sortOrder = "foo"; | 13689 var arg_sortOrder = "foo"; |
| 13690 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 13690 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 13691 var path = (req.url).path; | 13691 var path = (req.url).path; |
| 13692 var pathOffset = 0; | 13692 var pathOffset = 0; |
| 13693 var index; | 13693 var index; |
| 13694 var subPart; | 13694 var subPart; |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14238 checkCreativeFieldValue(response); | 14238 checkCreativeFieldValue(response); |
| 14239 }))); | 14239 }))); |
| 14240 }); | 14240 }); |
| 14241 | 14241 |
| 14242 unittest.test("method--list", () { | 14242 unittest.test("method--list", () { |
| 14243 | 14243 |
| 14244 var mock = new HttpServerMock(); | 14244 var mock = new HttpServerMock(); |
| 14245 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; | 14245 api.CreativeFieldValuesResourceApi res = new api.DfareportingApi(mock).cre
ativeFieldValues; |
| 14246 var arg_profileId = "foo"; | 14246 var arg_profileId = "foo"; |
| 14247 var arg_creativeFieldId = "foo"; | 14247 var arg_creativeFieldId = "foo"; |
| 14248 var arg_ids = buildUnnamed1507(); | 14248 var arg_ids = buildUnnamed2143(); |
| 14249 var arg_maxResults = 42; | 14249 var arg_maxResults = 42; |
| 14250 var arg_pageToken = "foo"; | 14250 var arg_pageToken = "foo"; |
| 14251 var arg_searchString = "foo"; | 14251 var arg_searchString = "foo"; |
| 14252 var arg_sortField = "foo"; | 14252 var arg_sortField = "foo"; |
| 14253 var arg_sortOrder = "foo"; | 14253 var arg_sortOrder = "foo"; |
| 14254 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14254 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14255 var path = (req.url).path; | 14255 var path = (req.url).path; |
| 14256 var pathOffset = 0; | 14256 var pathOffset = 0; |
| 14257 var index; | 14257 var index; |
| 14258 var subPart; | 14258 var subPart; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14615 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { | 14615 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeField response) { |
| 14616 checkCreativeField(response); | 14616 checkCreativeField(response); |
| 14617 }))); | 14617 }))); |
| 14618 }); | 14618 }); |
| 14619 | 14619 |
| 14620 unittest.test("method--list", () { | 14620 unittest.test("method--list", () { |
| 14621 | 14621 |
| 14622 var mock = new HttpServerMock(); | 14622 var mock = new HttpServerMock(); |
| 14623 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; | 14623 api.CreativeFieldsResourceApi res = new api.DfareportingApi(mock).creative
Fields; |
| 14624 var arg_profileId = "foo"; | 14624 var arg_profileId = "foo"; |
| 14625 var arg_advertiserIds = buildUnnamed1508(); | 14625 var arg_advertiserIds = buildUnnamed2144(); |
| 14626 var arg_ids = buildUnnamed1509(); | 14626 var arg_ids = buildUnnamed2145(); |
| 14627 var arg_maxResults = 42; | 14627 var arg_maxResults = 42; |
| 14628 var arg_pageToken = "foo"; | 14628 var arg_pageToken = "foo"; |
| 14629 var arg_searchString = "foo"; | 14629 var arg_searchString = "foo"; |
| 14630 var arg_sortField = "foo"; | 14630 var arg_sortField = "foo"; |
| 14631 var arg_sortOrder = "foo"; | 14631 var arg_sortOrder = "foo"; |
| 14632 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14632 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14633 var path = (req.url).path; | 14633 var path = (req.url).path; |
| 14634 var pathOffset = 0; | 14634 var pathOffset = 0; |
| 14635 var index; | 14635 var index; |
| 14636 var subPart; | 14636 var subPart; |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 14916 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { | 14916 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Cre
ativeGroup response) { |
| 14917 checkCreativeGroup(response); | 14917 checkCreativeGroup(response); |
| 14918 }))); | 14918 }))); |
| 14919 }); | 14919 }); |
| 14920 | 14920 |
| 14921 unittest.test("method--list", () { | 14921 unittest.test("method--list", () { |
| 14922 | 14922 |
| 14923 var mock = new HttpServerMock(); | 14923 var mock = new HttpServerMock(); |
| 14924 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; | 14924 api.CreativeGroupsResourceApi res = new api.DfareportingApi(mock).creative
Groups; |
| 14925 var arg_profileId = "foo"; | 14925 var arg_profileId = "foo"; |
| 14926 var arg_advertiserIds = buildUnnamed1510(); | 14926 var arg_advertiserIds = buildUnnamed2146(); |
| 14927 var arg_groupNumber = 42; | 14927 var arg_groupNumber = 42; |
| 14928 var arg_ids = buildUnnamed1511(); | 14928 var arg_ids = buildUnnamed2147(); |
| 14929 var arg_maxResults = 42; | 14929 var arg_maxResults = 42; |
| 14930 var arg_pageToken = "foo"; | 14930 var arg_pageToken = "foo"; |
| 14931 var arg_searchString = "foo"; | 14931 var arg_searchString = "foo"; |
| 14932 var arg_sortField = "foo"; | 14932 var arg_sortField = "foo"; |
| 14933 var arg_sortOrder = "foo"; | 14933 var arg_sortOrder = "foo"; |
| 14934 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 14934 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 14935 var path = (req.url).path; | 14935 var path = (req.url).path; |
| 14936 var pathOffset = 0; | 14936 var pathOffset = 0; |
| 14937 var index; | 14937 var index; |
| 14938 var subPart; | 14938 var subPart; |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15223 | 15223 |
| 15224 unittest.test("method--list", () { | 15224 unittest.test("method--list", () { |
| 15225 | 15225 |
| 15226 var mock = new HttpServerMock(); | 15226 var mock = new HttpServerMock(); |
| 15227 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; | 15227 api.CreativesResourceApi res = new api.DfareportingApi(mock).creatives; |
| 15228 var arg_profileId = "foo"; | 15228 var arg_profileId = "foo"; |
| 15229 var arg_active = true; | 15229 var arg_active = true; |
| 15230 var arg_advertiserId = "foo"; | 15230 var arg_advertiserId = "foo"; |
| 15231 var arg_archived = true; | 15231 var arg_archived = true; |
| 15232 var arg_campaignId = "foo"; | 15232 var arg_campaignId = "foo"; |
| 15233 var arg_companionCreativeIds = buildUnnamed1512(); | 15233 var arg_companionCreativeIds = buildUnnamed2148(); |
| 15234 var arg_creativeFieldIds = buildUnnamed1513(); | 15234 var arg_creativeFieldIds = buildUnnamed2149(); |
| 15235 var arg_ids = buildUnnamed1514(); | 15235 var arg_ids = buildUnnamed2150(); |
| 15236 var arg_maxResults = 42; | 15236 var arg_maxResults = 42; |
| 15237 var arg_pageToken = "foo"; | 15237 var arg_pageToken = "foo"; |
| 15238 var arg_renderingIds = buildUnnamed1515(); | 15238 var arg_renderingIds = buildUnnamed2151(); |
| 15239 var arg_searchString = "foo"; | 15239 var arg_searchString = "foo"; |
| 15240 var arg_sizeIds = buildUnnamed1516(); | 15240 var arg_sizeIds = buildUnnamed2152(); |
| 15241 var arg_sortField = "foo"; | 15241 var arg_sortField = "foo"; |
| 15242 var arg_sortOrder = "foo"; | 15242 var arg_sortOrder = "foo"; |
| 15243 var arg_studioCreativeId = "foo"; | 15243 var arg_studioCreativeId = "foo"; |
| 15244 var arg_types = buildUnnamed1517(); | 15244 var arg_types = buildUnnamed2153(); |
| 15245 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15245 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15246 var path = (req.url).path; | 15246 var path = (req.url).path; |
| 15247 var pathOffset = 0; | 15247 var pathOffset = 0; |
| 15248 var index; | 15248 var index; |
| 15249 var subPart; | 15249 var subPart; |
| 15250 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 15250 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 15251 pathOffset += 1; | 15251 pathOffset += 1; |
| 15252 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 15252 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| 15253 pathOffset += 18; | 15253 pathOffset += 18; |
| 15254 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 15254 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15546 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { | 15546 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.DirectorySi
teContact response) { |
| 15547 checkDirectorySiteContact(response); | 15547 checkDirectorySiteContact(response); |
| 15548 }))); | 15548 }))); |
| 15549 }); | 15549 }); |
| 15550 | 15550 |
| 15551 unittest.test("method--list", () { | 15551 unittest.test("method--list", () { |
| 15552 | 15552 |
| 15553 var mock = new HttpServerMock(); | 15553 var mock = new HttpServerMock(); |
| 15554 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; | 15554 api.DirectorySiteContactsResourceApi res = new api.DfareportingApi(mock).d
irectorySiteContacts; |
| 15555 var arg_profileId = "foo"; | 15555 var arg_profileId = "foo"; |
| 15556 var arg_directorySiteIds = buildUnnamed1518(); | 15556 var arg_directorySiteIds = buildUnnamed2154(); |
| 15557 var arg_ids = buildUnnamed1519(); | 15557 var arg_ids = buildUnnamed2155(); |
| 15558 var arg_maxResults = 42; | 15558 var arg_maxResults = 42; |
| 15559 var arg_pageToken = "foo"; | 15559 var arg_pageToken = "foo"; |
| 15560 var arg_searchString = "foo"; | 15560 var arg_searchString = "foo"; |
| 15561 var arg_sortField = "foo"; | 15561 var arg_sortField = "foo"; |
| 15562 var arg_sortOrder = "foo"; | 15562 var arg_sortOrder = "foo"; |
| 15563 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15563 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15564 var path = (req.url).path; | 15564 var path = (req.url).path; |
| 15565 var pathOffset = 0; | 15565 var pathOffset = 0; |
| 15566 var index; | 15566 var index; |
| 15567 var subPart; | 15567 var subPart; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15737 | 15737 |
| 15738 var mock = new HttpServerMock(); | 15738 var mock = new HttpServerMock(); |
| 15739 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; | 15739 api.DirectorySitesResourceApi res = new api.DfareportingApi(mock).director
ySites; |
| 15740 var arg_profileId = "foo"; | 15740 var arg_profileId = "foo"; |
| 15741 var arg_acceptsInStreamVideoPlacements = true; | 15741 var arg_acceptsInStreamVideoPlacements = true; |
| 15742 var arg_acceptsInterstitialPlacements = true; | 15742 var arg_acceptsInterstitialPlacements = true; |
| 15743 var arg_acceptsPublisherPaidPlacements = true; | 15743 var arg_acceptsPublisherPaidPlacements = true; |
| 15744 var arg_active = true; | 15744 var arg_active = true; |
| 15745 var arg_countryId = "foo"; | 15745 var arg_countryId = "foo"; |
| 15746 var arg_dfpNetworkCode = "foo"; | 15746 var arg_dfpNetworkCode = "foo"; |
| 15747 var arg_ids = buildUnnamed1520(); | 15747 var arg_ids = buildUnnamed2156(); |
| 15748 var arg_maxResults = 42; | 15748 var arg_maxResults = 42; |
| 15749 var arg_pageToken = "foo"; | 15749 var arg_pageToken = "foo"; |
| 15750 var arg_parentId = "foo"; | 15750 var arg_parentId = "foo"; |
| 15751 var arg_searchString = "foo"; | 15751 var arg_searchString = "foo"; |
| 15752 var arg_sortField = "foo"; | 15752 var arg_sortField = "foo"; |
| 15753 var arg_sortOrder = "foo"; | 15753 var arg_sortOrder = "foo"; |
| 15754 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 15754 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 15755 var path = (req.url).path; | 15755 var path = (req.url).path; |
| 15756 var pathOffset = 0; | 15756 var pathOffset = 0; |
| 15757 var index; | 15757 var index; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15988 unittest.test("method--list", () { | 15988 unittest.test("method--list", () { |
| 15989 | 15989 |
| 15990 var mock = new HttpServerMock(); | 15990 var mock = new HttpServerMock(); |
| 15991 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; | 15991 api.EventTagsResourceApi res = new api.DfareportingApi(mock).eventTags; |
| 15992 var arg_profileId = "foo"; | 15992 var arg_profileId = "foo"; |
| 15993 var arg_adId = "foo"; | 15993 var arg_adId = "foo"; |
| 15994 var arg_advertiserId = "foo"; | 15994 var arg_advertiserId = "foo"; |
| 15995 var arg_campaignId = "foo"; | 15995 var arg_campaignId = "foo"; |
| 15996 var arg_definitionsOnly = true; | 15996 var arg_definitionsOnly = true; |
| 15997 var arg_enabled = true; | 15997 var arg_enabled = true; |
| 15998 var arg_eventTagTypes = buildUnnamed1521(); | 15998 var arg_eventTagTypes = buildUnnamed2157(); |
| 15999 var arg_ids = buildUnnamed1522(); | 15999 var arg_ids = buildUnnamed2158(); |
| 16000 var arg_searchString = "foo"; | 16000 var arg_searchString = "foo"; |
| 16001 var arg_sortField = "foo"; | 16001 var arg_sortField = "foo"; |
| 16002 var arg_sortOrder = "foo"; | 16002 var arg_sortOrder = "foo"; |
| 16003 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16003 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16004 var path = (req.url).path; | 16004 var path = (req.url).path; |
| 16005 var pathOffset = 0; | 16005 var pathOffset = 0; |
| 16006 var index; | 16006 var index; |
| 16007 var subPart; | 16007 var subPart; |
| 16008 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 16008 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 16009 pathOffset += 1; | 16009 pathOffset += 1; |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16527 checkFloodlightActivity(response); | 16527 checkFloodlightActivity(response); |
| 16528 }))); | 16528 }))); |
| 16529 }); | 16529 }); |
| 16530 | 16530 |
| 16531 unittest.test("method--list", () { | 16531 unittest.test("method--list", () { |
| 16532 | 16532 |
| 16533 var mock = new HttpServerMock(); | 16533 var mock = new HttpServerMock(); |
| 16534 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; | 16534 api.FloodlightActivitiesResourceApi res = new api.DfareportingApi(mock).fl
oodlightActivities; |
| 16535 var arg_profileId = "foo"; | 16535 var arg_profileId = "foo"; |
| 16536 var arg_advertiserId = "foo"; | 16536 var arg_advertiserId = "foo"; |
| 16537 var arg_floodlightActivityGroupIds = buildUnnamed1523(); | 16537 var arg_floodlightActivityGroupIds = buildUnnamed2159(); |
| 16538 var arg_floodlightActivityGroupName = "foo"; | 16538 var arg_floodlightActivityGroupName = "foo"; |
| 16539 var arg_floodlightActivityGroupTagString = "foo"; | 16539 var arg_floodlightActivityGroupTagString = "foo"; |
| 16540 var arg_floodlightActivityGroupType = "foo"; | 16540 var arg_floodlightActivityGroupType = "foo"; |
| 16541 var arg_floodlightConfigurationId = "foo"; | 16541 var arg_floodlightConfigurationId = "foo"; |
| 16542 var arg_ids = buildUnnamed1524(); | 16542 var arg_ids = buildUnnamed2160(); |
| 16543 var arg_maxResults = 42; | 16543 var arg_maxResults = 42; |
| 16544 var arg_pageToken = "foo"; | 16544 var arg_pageToken = "foo"; |
| 16545 var arg_searchString = "foo"; | 16545 var arg_searchString = "foo"; |
| 16546 var arg_sortField = "foo"; | 16546 var arg_sortField = "foo"; |
| 16547 var arg_sortOrder = "foo"; | 16547 var arg_sortOrder = "foo"; |
| 16548 var arg_tagString = "foo"; | 16548 var arg_tagString = "foo"; |
| 16549 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16549 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16550 var path = (req.url).path; | 16550 var path = (req.url).path; |
| 16551 var pathOffset = 0; | 16551 var pathOffset = 0; |
| 16552 var index; | 16552 var index; |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 16896 }))); | 16896 }))); |
| 16897 }); | 16897 }); |
| 16898 | 16898 |
| 16899 unittest.test("method--list", () { | 16899 unittest.test("method--list", () { |
| 16900 | 16900 |
| 16901 var mock = new HttpServerMock(); | 16901 var mock = new HttpServerMock(); |
| 16902 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; | 16902 api.FloodlightActivityGroupsResourceApi res = new api.DfareportingApi(mock
).floodlightActivityGroups; |
| 16903 var arg_profileId = "foo"; | 16903 var arg_profileId = "foo"; |
| 16904 var arg_advertiserId = "foo"; | 16904 var arg_advertiserId = "foo"; |
| 16905 var arg_floodlightConfigurationId = "foo"; | 16905 var arg_floodlightConfigurationId = "foo"; |
| 16906 var arg_ids = buildUnnamed1525(); | 16906 var arg_ids = buildUnnamed2161(); |
| 16907 var arg_maxResults = 42; | 16907 var arg_maxResults = 42; |
| 16908 var arg_pageToken = "foo"; | 16908 var arg_pageToken = "foo"; |
| 16909 var arg_searchString = "foo"; | 16909 var arg_searchString = "foo"; |
| 16910 var arg_sortField = "foo"; | 16910 var arg_sortField = "foo"; |
| 16911 var arg_sortOrder = "foo"; | 16911 var arg_sortOrder = "foo"; |
| 16912 var arg_type = "foo"; | 16912 var arg_type = "foo"; |
| 16913 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 16913 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 16914 var path = (req.url).path; | 16914 var path = (req.url).path; |
| 16915 var pathOffset = 0; | 16915 var pathOffset = 0; |
| 16916 var index; | 16916 var index; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17142 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { | 17142 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.FloodlightC
onfiguration response) { |
| 17143 checkFloodlightConfiguration(response); | 17143 checkFloodlightConfiguration(response); |
| 17144 }))); | 17144 }))); |
| 17145 }); | 17145 }); |
| 17146 | 17146 |
| 17147 unittest.test("method--list", () { | 17147 unittest.test("method--list", () { |
| 17148 | 17148 |
| 17149 var mock = new HttpServerMock(); | 17149 var mock = new HttpServerMock(); |
| 17150 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; | 17150 api.FloodlightConfigurationsResourceApi res = new api.DfareportingApi(mock
).floodlightConfigurations; |
| 17151 var arg_profileId = "foo"; | 17151 var arg_profileId = "foo"; |
| 17152 var arg_ids = buildUnnamed1526(); | 17152 var arg_ids = buildUnnamed2162(); |
| 17153 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17153 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17154 var path = (req.url).path; | 17154 var path = (req.url).path; |
| 17155 var pathOffset = 0; | 17155 var pathOffset = 0; |
| 17156 var index; | 17156 var index; |
| 17157 var subPart; | 17157 var subPart; |
| 17158 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17158 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17159 pathOffset += 1; | 17159 pathOffset += 1; |
| 17160 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 17160 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| 17161 pathOffset += 18; | 17161 pathOffset += 18; |
| 17162 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 17162 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 17383 checkInventoryItem(response); | 17383 checkInventoryItem(response); |
| 17384 }))); | 17384 }))); |
| 17385 }); | 17385 }); |
| 17386 | 17386 |
| 17387 unittest.test("method--list", () { | 17387 unittest.test("method--list", () { |
| 17388 | 17388 |
| 17389 var mock = new HttpServerMock(); | 17389 var mock = new HttpServerMock(); |
| 17390 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; | 17390 api.InventoryItemsResourceApi res = new api.DfareportingApi(mock).inventor
yItems; |
| 17391 var arg_profileId = "foo"; | 17391 var arg_profileId = "foo"; |
| 17392 var arg_projectId = "foo"; | 17392 var arg_projectId = "foo"; |
| 17393 var arg_ids = buildUnnamed1527(); | 17393 var arg_ids = buildUnnamed2163(); |
| 17394 var arg_inPlan = true; | 17394 var arg_inPlan = true; |
| 17395 var arg_maxResults = 42; | 17395 var arg_maxResults = 42; |
| 17396 var arg_orderId = buildUnnamed1528(); | 17396 var arg_orderId = buildUnnamed2164(); |
| 17397 var arg_pageToken = "foo"; | 17397 var arg_pageToken = "foo"; |
| 17398 var arg_siteId = buildUnnamed1529(); | 17398 var arg_siteId = buildUnnamed2165(); |
| 17399 var arg_sortField = "foo"; | 17399 var arg_sortField = "foo"; |
| 17400 var arg_sortOrder = "foo"; | 17400 var arg_sortOrder = "foo"; |
| 17401 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 17401 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 17402 var path = (req.url).path; | 17402 var path = (req.url).path; |
| 17403 var pathOffset = 0; | 17403 var pathOffset = 0; |
| 17404 var index; | 17404 var index; |
| 17405 var subPart; | 17405 var subPart; |
| 17406 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 17406 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 17407 pathOffset += 1; | 17407 pathOffset += 1; |
| 17408 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 17408 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| (...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18319 }))); | 18319 }))); |
| 18320 }); | 18320 }); |
| 18321 | 18321 |
| 18322 unittest.test("method--list", () { | 18322 unittest.test("method--list", () { |
| 18323 | 18323 |
| 18324 var mock = new HttpServerMock(); | 18324 var mock = new HttpServerMock(); |
| 18325 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; | 18325 api.OrderDocumentsResourceApi res = new api.DfareportingApi(mock).orderDoc
uments; |
| 18326 var arg_profileId = "foo"; | 18326 var arg_profileId = "foo"; |
| 18327 var arg_projectId = "foo"; | 18327 var arg_projectId = "foo"; |
| 18328 var arg_approved = true; | 18328 var arg_approved = true; |
| 18329 var arg_ids = buildUnnamed1530(); | 18329 var arg_ids = buildUnnamed2166(); |
| 18330 var arg_maxResults = 42; | 18330 var arg_maxResults = 42; |
| 18331 var arg_orderId = buildUnnamed1531(); | 18331 var arg_orderId = buildUnnamed2167(); |
| 18332 var arg_pageToken = "foo"; | 18332 var arg_pageToken = "foo"; |
| 18333 var arg_searchString = "foo"; | 18333 var arg_searchString = "foo"; |
| 18334 var arg_siteId = buildUnnamed1532(); | 18334 var arg_siteId = buildUnnamed2168(); |
| 18335 var arg_sortField = "foo"; | 18335 var arg_sortField = "foo"; |
| 18336 var arg_sortOrder = "foo"; | 18336 var arg_sortOrder = "foo"; |
| 18337 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18337 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18338 var path = (req.url).path; | 18338 var path = (req.url).path; |
| 18339 var pathOffset = 0; | 18339 var pathOffset = 0; |
| 18340 var index; | 18340 var index; |
| 18341 var subPart; | 18341 var subPart; |
| 18342 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18342 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18343 pathOffset += 1; | 18343 pathOffset += 1; |
| 18344 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 18344 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18466 checkOrder(response); | 18466 checkOrder(response); |
| 18467 }))); | 18467 }))); |
| 18468 }); | 18468 }); |
| 18469 | 18469 |
| 18470 unittest.test("method--list", () { | 18470 unittest.test("method--list", () { |
| 18471 | 18471 |
| 18472 var mock = new HttpServerMock(); | 18472 var mock = new HttpServerMock(); |
| 18473 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; | 18473 api.OrdersResourceApi res = new api.DfareportingApi(mock).orders; |
| 18474 var arg_profileId = "foo"; | 18474 var arg_profileId = "foo"; |
| 18475 var arg_projectId = "foo"; | 18475 var arg_projectId = "foo"; |
| 18476 var arg_ids = buildUnnamed1533(); | 18476 var arg_ids = buildUnnamed2169(); |
| 18477 var arg_maxResults = 42; | 18477 var arg_maxResults = 42; |
| 18478 var arg_pageToken = "foo"; | 18478 var arg_pageToken = "foo"; |
| 18479 var arg_searchString = "foo"; | 18479 var arg_searchString = "foo"; |
| 18480 var arg_siteId = buildUnnamed1534(); | 18480 var arg_siteId = buildUnnamed2170(); |
| 18481 var arg_sortField = "foo"; | 18481 var arg_sortField = "foo"; |
| 18482 var arg_sortOrder = "foo"; | 18482 var arg_sortOrder = "foo"; |
| 18483 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18483 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18484 var path = (req.url).path; | 18484 var path = (req.url).path; |
| 18485 var pathOffset = 0; | 18485 var pathOffset = 0; |
| 18486 var index; | 18486 var index; |
| 18487 var subPart; | 18487 var subPart; |
| 18488 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18488 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18489 pathOffset += 1; | 18489 pathOffset += 1; |
| 18490 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 18490 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 18658 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { | 18658 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementGroup response) { |
| 18659 checkPlacementGroup(response); | 18659 checkPlacementGroup(response); |
| 18660 }))); | 18660 }))); |
| 18661 }); | 18661 }); |
| 18662 | 18662 |
| 18663 unittest.test("method--list", () { | 18663 unittest.test("method--list", () { |
| 18664 | 18664 |
| 18665 var mock = new HttpServerMock(); | 18665 var mock = new HttpServerMock(); |
| 18666 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; | 18666 api.PlacementGroupsResourceApi res = new api.DfareportingApi(mock).placeme
ntGroups; |
| 18667 var arg_profileId = "foo"; | 18667 var arg_profileId = "foo"; |
| 18668 var arg_advertiserIds = buildUnnamed1535(); | 18668 var arg_advertiserIds = buildUnnamed2171(); |
| 18669 var arg_archived = true; | 18669 var arg_archived = true; |
| 18670 var arg_campaignIds = buildUnnamed1536(); | 18670 var arg_campaignIds = buildUnnamed2172(); |
| 18671 var arg_contentCategoryIds = buildUnnamed1537(); | 18671 var arg_contentCategoryIds = buildUnnamed2173(); |
| 18672 var arg_directorySiteIds = buildUnnamed1538(); | 18672 var arg_directorySiteIds = buildUnnamed2174(); |
| 18673 var arg_ids = buildUnnamed1539(); | 18673 var arg_ids = buildUnnamed2175(); |
| 18674 var arg_maxEndDate = "foo"; | 18674 var arg_maxEndDate = "foo"; |
| 18675 var arg_maxResults = 42; | 18675 var arg_maxResults = 42; |
| 18676 var arg_maxStartDate = "foo"; | 18676 var arg_maxStartDate = "foo"; |
| 18677 var arg_minEndDate = "foo"; | 18677 var arg_minEndDate = "foo"; |
| 18678 var arg_minStartDate = "foo"; | 18678 var arg_minStartDate = "foo"; |
| 18679 var arg_pageToken = "foo"; | 18679 var arg_pageToken = "foo"; |
| 18680 var arg_placementGroupType = "foo"; | 18680 var arg_placementGroupType = "foo"; |
| 18681 var arg_placementStrategyIds = buildUnnamed1540(); | 18681 var arg_placementStrategyIds = buildUnnamed2176(); |
| 18682 var arg_pricingTypes = buildUnnamed1541(); | 18682 var arg_pricingTypes = buildUnnamed2177(); |
| 18683 var arg_searchString = "foo"; | 18683 var arg_searchString = "foo"; |
| 18684 var arg_siteIds = buildUnnamed1542(); | 18684 var arg_siteIds = buildUnnamed2178(); |
| 18685 var arg_sortField = "foo"; | 18685 var arg_sortField = "foo"; |
| 18686 var arg_sortOrder = "foo"; | 18686 var arg_sortOrder = "foo"; |
| 18687 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 18687 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 18688 var path = (req.url).path; | 18688 var path = (req.url).path; |
| 18689 var pathOffset = 0; | 18689 var pathOffset = 0; |
| 18690 var index; | 18690 var index; |
| 18691 var subPart; | 18691 var subPart; |
| 18692 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 18692 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 18693 pathOffset += 1; | 18693 pathOffset += 1; |
| 18694 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 18694 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19038 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { | 19038 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cementStrategy response) { |
| 19039 checkPlacementStrategy(response); | 19039 checkPlacementStrategy(response); |
| 19040 }))); | 19040 }))); |
| 19041 }); | 19041 }); |
| 19042 | 19042 |
| 19043 unittest.test("method--list", () { | 19043 unittest.test("method--list", () { |
| 19044 | 19044 |
| 19045 var mock = new HttpServerMock(); | 19045 var mock = new HttpServerMock(); |
| 19046 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; | 19046 api.PlacementStrategiesResourceApi res = new api.DfareportingApi(mock).pla
cementStrategies; |
| 19047 var arg_profileId = "foo"; | 19047 var arg_profileId = "foo"; |
| 19048 var arg_ids = buildUnnamed1543(); | 19048 var arg_ids = buildUnnamed2179(); |
| 19049 var arg_maxResults = 42; | 19049 var arg_maxResults = 42; |
| 19050 var arg_pageToken = "foo"; | 19050 var arg_pageToken = "foo"; |
| 19051 var arg_searchString = "foo"; | 19051 var arg_searchString = "foo"; |
| 19052 var arg_sortField = "foo"; | 19052 var arg_sortField = "foo"; |
| 19053 var arg_sortOrder = "foo"; | 19053 var arg_sortOrder = "foo"; |
| 19054 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19054 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19055 var path = (req.url).path; | 19055 var path = (req.url).path; |
| 19056 var pathOffset = 0; | 19056 var pathOffset = 0; |
| 19057 var index; | 19057 var index; |
| 19058 var subPart; | 19058 var subPart; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19224 }); | 19224 }); |
| 19225 | 19225 |
| 19226 | 19226 |
| 19227 unittest.group("resource-PlacementsResourceApi", () { | 19227 unittest.group("resource-PlacementsResourceApi", () { |
| 19228 unittest.test("method--generatetags", () { | 19228 unittest.test("method--generatetags", () { |
| 19229 | 19229 |
| 19230 var mock = new HttpServerMock(); | 19230 var mock = new HttpServerMock(); |
| 19231 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19231 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19232 var arg_profileId = "foo"; | 19232 var arg_profileId = "foo"; |
| 19233 var arg_campaignId = "foo"; | 19233 var arg_campaignId = "foo"; |
| 19234 var arg_placementIds = buildUnnamed1544(); | 19234 var arg_placementIds = buildUnnamed2180(); |
| 19235 var arg_tagFormats = buildUnnamed1545(); | 19235 var arg_tagFormats = buildUnnamed2181(); |
| 19236 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19236 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19237 var path = (req.url).path; | 19237 var path = (req.url).path; |
| 19238 var pathOffset = 0; | 19238 var pathOffset = 0; |
| 19239 var index; | 19239 var index; |
| 19240 var subPart; | 19240 var subPart; |
| 19241 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19241 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19242 pathOffset += 1; | 19242 pathOffset += 1; |
| 19243 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 19243 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| 19244 pathOffset += 18; | 19244 pathOffset += 18; |
| 19245 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 19245 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19396 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { | 19396 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Pla
cement response) { |
| 19397 checkPlacement(response); | 19397 checkPlacement(response); |
| 19398 }))); | 19398 }))); |
| 19399 }); | 19399 }); |
| 19400 | 19400 |
| 19401 unittest.test("method--list", () { | 19401 unittest.test("method--list", () { |
| 19402 | 19402 |
| 19403 var mock = new HttpServerMock(); | 19403 var mock = new HttpServerMock(); |
| 19404 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; | 19404 api.PlacementsResourceApi res = new api.DfareportingApi(mock).placements; |
| 19405 var arg_profileId = "foo"; | 19405 var arg_profileId = "foo"; |
| 19406 var arg_advertiserIds = buildUnnamed1546(); | 19406 var arg_advertiserIds = buildUnnamed2182(); |
| 19407 var arg_archived = true; | 19407 var arg_archived = true; |
| 19408 var arg_campaignIds = buildUnnamed1547(); | 19408 var arg_campaignIds = buildUnnamed2183(); |
| 19409 var arg_compatibilities = buildUnnamed1548(); | 19409 var arg_compatibilities = buildUnnamed2184(); |
| 19410 var arg_contentCategoryIds = buildUnnamed1549(); | 19410 var arg_contentCategoryIds = buildUnnamed2185(); |
| 19411 var arg_directorySiteIds = buildUnnamed1550(); | 19411 var arg_directorySiteIds = buildUnnamed2186(); |
| 19412 var arg_groupIds = buildUnnamed1551(); | 19412 var arg_groupIds = buildUnnamed2187(); |
| 19413 var arg_ids = buildUnnamed1552(); | 19413 var arg_ids = buildUnnamed2188(); |
| 19414 var arg_maxEndDate = "foo"; | 19414 var arg_maxEndDate = "foo"; |
| 19415 var arg_maxResults = 42; | 19415 var arg_maxResults = 42; |
| 19416 var arg_maxStartDate = "foo"; | 19416 var arg_maxStartDate = "foo"; |
| 19417 var arg_minEndDate = "foo"; | 19417 var arg_minEndDate = "foo"; |
| 19418 var arg_minStartDate = "foo"; | 19418 var arg_minStartDate = "foo"; |
| 19419 var arg_pageToken = "foo"; | 19419 var arg_pageToken = "foo"; |
| 19420 var arg_paymentSource = "foo"; | 19420 var arg_paymentSource = "foo"; |
| 19421 var arg_placementStrategyIds = buildUnnamed1553(); | 19421 var arg_placementStrategyIds = buildUnnamed2189(); |
| 19422 var arg_pricingTypes = buildUnnamed1554(); | 19422 var arg_pricingTypes = buildUnnamed2190(); |
| 19423 var arg_searchString = "foo"; | 19423 var arg_searchString = "foo"; |
| 19424 var arg_siteIds = buildUnnamed1555(); | 19424 var arg_siteIds = buildUnnamed2191(); |
| 19425 var arg_sizeIds = buildUnnamed1556(); | 19425 var arg_sizeIds = buildUnnamed2192(); |
| 19426 var arg_sortField = "foo"; | 19426 var arg_sortField = "foo"; |
| 19427 var arg_sortOrder = "foo"; | 19427 var arg_sortOrder = "foo"; |
| 19428 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19428 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19429 var path = (req.url).path; | 19429 var path = (req.url).path; |
| 19430 var pathOffset = 0; | 19430 var pathOffset = 0; |
| 19431 var index; | 19431 var index; |
| 19432 var subPart; | 19432 var subPart; |
| 19433 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 19433 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 19434 pathOffset += 1; | 19434 pathOffset += 1; |
| 19435 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 19435 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 19898 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { | 19898 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.Project res
ponse) { |
| 19899 checkProject(response); | 19899 checkProject(response); |
| 19900 }))); | 19900 }))); |
| 19901 }); | 19901 }); |
| 19902 | 19902 |
| 19903 unittest.test("method--list", () { | 19903 unittest.test("method--list", () { |
| 19904 | 19904 |
| 19905 var mock = new HttpServerMock(); | 19905 var mock = new HttpServerMock(); |
| 19906 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; | 19906 api.ProjectsResourceApi res = new api.DfareportingApi(mock).projects; |
| 19907 var arg_profileId = "foo"; | 19907 var arg_profileId = "foo"; |
| 19908 var arg_advertiserIds = buildUnnamed1557(); | 19908 var arg_advertiserIds = buildUnnamed2193(); |
| 19909 var arg_ids = buildUnnamed1558(); | 19909 var arg_ids = buildUnnamed2194(); |
| 19910 var arg_maxResults = 42; | 19910 var arg_maxResults = 42; |
| 19911 var arg_pageToken = "foo"; | 19911 var arg_pageToken = "foo"; |
| 19912 var arg_searchString = "foo"; | 19912 var arg_searchString = "foo"; |
| 19913 var arg_sortField = "foo"; | 19913 var arg_sortField = "foo"; |
| 19914 var arg_sortOrder = "foo"; | 19914 var arg_sortOrder = "foo"; |
| 19915 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 19915 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 19916 var path = (req.url).path; | 19916 var path = (req.url).path; |
| 19917 var pathOffset = 0; | 19917 var pathOffset = 0; |
| 19918 var index; | 19918 var index; |
| 19919 var subPart; | 19919 var subPart; |
| (...skipping 1327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21247 unittest.test("method--list", () { | 21247 unittest.test("method--list", () { |
| 21248 | 21248 |
| 21249 var mock = new HttpServerMock(); | 21249 var mock = new HttpServerMock(); |
| 21250 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; | 21250 api.SitesResourceApi res = new api.DfareportingApi(mock).sites; |
| 21251 var arg_profileId = "foo"; | 21251 var arg_profileId = "foo"; |
| 21252 var arg_acceptsInStreamVideoPlacements = true; | 21252 var arg_acceptsInStreamVideoPlacements = true; |
| 21253 var arg_acceptsInterstitialPlacements = true; | 21253 var arg_acceptsInterstitialPlacements = true; |
| 21254 var arg_acceptsPublisherPaidPlacements = true; | 21254 var arg_acceptsPublisherPaidPlacements = true; |
| 21255 var arg_adWordsSite = true; | 21255 var arg_adWordsSite = true; |
| 21256 var arg_approved = true; | 21256 var arg_approved = true; |
| 21257 var arg_campaignIds = buildUnnamed1559(); | 21257 var arg_campaignIds = buildUnnamed2195(); |
| 21258 var arg_directorySiteIds = buildUnnamed1560(); | 21258 var arg_directorySiteIds = buildUnnamed2196(); |
| 21259 var arg_ids = buildUnnamed1561(); | 21259 var arg_ids = buildUnnamed2197(); |
| 21260 var arg_maxResults = 42; | 21260 var arg_maxResults = 42; |
| 21261 var arg_pageToken = "foo"; | 21261 var arg_pageToken = "foo"; |
| 21262 var arg_searchString = "foo"; | 21262 var arg_searchString = "foo"; |
| 21263 var arg_sortField = "foo"; | 21263 var arg_sortField = "foo"; |
| 21264 var arg_sortOrder = "foo"; | 21264 var arg_sortOrder = "foo"; |
| 21265 var arg_subaccountId = "foo"; | 21265 var arg_subaccountId = "foo"; |
| 21266 var arg_unmappedSite = true; | 21266 var arg_unmappedSite = true; |
| 21267 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21267 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21268 var path = (req.url).path; | 21268 var path = (req.url).path; |
| 21269 var pathOffset = 0; | 21269 var pathOffset = 0; |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21561 }))); | 21561 }))); |
| 21562 }); | 21562 }); |
| 21563 | 21563 |
| 21564 unittest.test("method--list", () { | 21564 unittest.test("method--list", () { |
| 21565 | 21565 |
| 21566 var mock = new HttpServerMock(); | 21566 var mock = new HttpServerMock(); |
| 21567 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; | 21567 api.SizesResourceApi res = new api.DfareportingApi(mock).sizes; |
| 21568 var arg_profileId = "foo"; | 21568 var arg_profileId = "foo"; |
| 21569 var arg_height = 42; | 21569 var arg_height = 42; |
| 21570 var arg_iabStandard = true; | 21570 var arg_iabStandard = true; |
| 21571 var arg_ids = buildUnnamed1562(); | 21571 var arg_ids = buildUnnamed2198(); |
| 21572 var arg_width = 42; | 21572 var arg_width = 42; |
| 21573 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21573 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21574 var path = (req.url).path; | 21574 var path = (req.url).path; |
| 21575 var pathOffset = 0; | 21575 var pathOffset = 0; |
| 21576 var index; | 21576 var index; |
| 21577 var subPart; | 21577 var subPart; |
| 21578 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 21578 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 21579 pathOffset += 1; | 21579 pathOffset += 1; |
| 21580 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 21580 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| 21581 pathOffset += 18; | 21581 pathOffset += 18; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 21738 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { | 21738 res.insert(arg_request, arg_profileId).then(unittest.expectAsync(((api.Sub
account response) { |
| 21739 checkSubaccount(response); | 21739 checkSubaccount(response); |
| 21740 }))); | 21740 }))); |
| 21741 }); | 21741 }); |
| 21742 | 21742 |
| 21743 unittest.test("method--list", () { | 21743 unittest.test("method--list", () { |
| 21744 | 21744 |
| 21745 var mock = new HttpServerMock(); | 21745 var mock = new HttpServerMock(); |
| 21746 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; | 21746 api.SubaccountsResourceApi res = new api.DfareportingApi(mock).subaccounts
; |
| 21747 var arg_profileId = "foo"; | 21747 var arg_profileId = "foo"; |
| 21748 var arg_ids = buildUnnamed1563(); | 21748 var arg_ids = buildUnnamed2199(); |
| 21749 var arg_maxResults = 42; | 21749 var arg_maxResults = 42; |
| 21750 var arg_pageToken = "foo"; | 21750 var arg_pageToken = "foo"; |
| 21751 var arg_searchString = "foo"; | 21751 var arg_searchString = "foo"; |
| 21752 var arg_sortField = "foo"; | 21752 var arg_sortField = "foo"; |
| 21753 var arg_sortOrder = "foo"; | 21753 var arg_sortOrder = "foo"; |
| 21754 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 21754 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 21755 var path = (req.url).path; | 21755 var path = (req.url).path; |
| 21756 var pathOffset = 0; | 21756 var pathOffset = 0; |
| 21757 var index; | 21757 var index; |
| 21758 var subPart; | 21758 var subPart; |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22320 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { | 22320 res.get(arg_profileId, arg_id).then(unittest.expectAsync(((api.UserRolePer
mission response) { |
| 22321 checkUserRolePermission(response); | 22321 checkUserRolePermission(response); |
| 22322 }))); | 22322 }))); |
| 22323 }); | 22323 }); |
| 22324 | 22324 |
| 22325 unittest.test("method--list", () { | 22325 unittest.test("method--list", () { |
| 22326 | 22326 |
| 22327 var mock = new HttpServerMock(); | 22327 var mock = new HttpServerMock(); |
| 22328 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; | 22328 api.UserRolePermissionsResourceApi res = new api.DfareportingApi(mock).use
rRolePermissions; |
| 22329 var arg_profileId = "foo"; | 22329 var arg_profileId = "foo"; |
| 22330 var arg_ids = buildUnnamed1564(); | 22330 var arg_ids = buildUnnamed2200(); |
| 22331 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22331 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22332 var path = (req.url).path; | 22332 var path = (req.url).path; |
| 22333 var pathOffset = 0; | 22333 var pathOffset = 0; |
| 22334 var index; | 22334 var index; |
| 22335 var subPart; | 22335 var subPart; |
| 22336 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); | 22336 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ
als("/")); |
| 22337 pathOffset += 1; | 22337 pathOffset += 1; |
| 22338 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); | 22338 unittest.expect(path.substring(pathOffset, pathOffset + 18), unittest.eq
uals("dfareporting/v2.2/")); |
| 22339 pathOffset += 18; | 22339 pathOffset += 18; |
| 22340 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); | 22340 unittest.expect(path.substring(pathOffset, pathOffset + 13), unittest.eq
uals("userprofiles/")); |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22549 checkUserRole(response); | 22549 checkUserRole(response); |
| 22550 }))); | 22550 }))); |
| 22551 }); | 22551 }); |
| 22552 | 22552 |
| 22553 unittest.test("method--list", () { | 22553 unittest.test("method--list", () { |
| 22554 | 22554 |
| 22555 var mock = new HttpServerMock(); | 22555 var mock = new HttpServerMock(); |
| 22556 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; | 22556 api.UserRolesResourceApi res = new api.DfareportingApi(mock).userRoles; |
| 22557 var arg_profileId = "foo"; | 22557 var arg_profileId = "foo"; |
| 22558 var arg_accountUserRoleOnly = true; | 22558 var arg_accountUserRoleOnly = true; |
| 22559 var arg_ids = buildUnnamed1565(); | 22559 var arg_ids = buildUnnamed2201(); |
| 22560 var arg_maxResults = 42; | 22560 var arg_maxResults = 42; |
| 22561 var arg_pageToken = "foo"; | 22561 var arg_pageToken = "foo"; |
| 22562 var arg_searchString = "foo"; | 22562 var arg_searchString = "foo"; |
| 22563 var arg_sortField = "foo"; | 22563 var arg_sortField = "foo"; |
| 22564 var arg_sortOrder = "foo"; | 22564 var arg_sortOrder = "foo"; |
| 22565 var arg_subaccountId = "foo"; | 22565 var arg_subaccountId = "foo"; |
| 22566 mock.register(unittest.expectAsync((http.BaseRequest req, json) { | 22566 mock.register(unittest.expectAsync((http.BaseRequest req, json) { |
| 22567 var path = (req.url).path; | 22567 var path = (req.url).path; |
| 22568 var pathOffset = 0; | 22568 var pathOffset = 0; |
| 22569 var index; | 22569 var index; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 22733 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { | 22733 res.update(arg_request, arg_profileId).then(unittest.expectAsync(((api.Use
rRole response) { |
| 22734 checkUserRole(response); | 22734 checkUserRole(response); |
| 22735 }))); | 22735 }))); |
| 22736 }); | 22736 }); |
| 22737 | 22737 |
| 22738 }); | 22738 }); |
| 22739 | 22739 |
| 22740 | 22740 |
| 22741 } | 22741 } |
| 22742 | 22742 |
| OLD | NEW |