| OLD | NEW |
| 1 library googleapis.analytics.v3.test; | 1 library googleapis.analytics.v3.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:test/test.dart' as unittest; | 10 import 'package:test/test.dart' as unittest; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 checkAccountChildLink(api.AccountChildLink o) { | 66 checkAccountChildLink(api.AccountChildLink o) { |
| 67 buildCounterAccountChildLink++; | 67 buildCounterAccountChildLink++; |
| 68 if (buildCounterAccountChildLink < 3) { | 68 if (buildCounterAccountChildLink < 3) { |
| 69 unittest.expect(o.href, unittest.equals('foo')); | 69 unittest.expect(o.href, unittest.equals('foo')); |
| 70 unittest.expect(o.type, unittest.equals('foo')); | 70 unittest.expect(o.type, unittest.equals('foo')); |
| 71 } | 71 } |
| 72 buildCounterAccountChildLink--; | 72 buildCounterAccountChildLink--; |
| 73 } | 73 } |
| 74 | 74 |
| 75 buildUnnamed983() { | 75 buildUnnamed999() { |
| 76 var o = new core.List<core.String>(); | 76 var o = new core.List<core.String>(); |
| 77 o.add("foo"); | 77 o.add("foo"); |
| 78 o.add("foo"); | 78 o.add("foo"); |
| 79 return o; | 79 return o; |
| 80 } | 80 } |
| 81 | 81 |
| 82 checkUnnamed983(core.List<core.String> o) { | 82 checkUnnamed999(core.List<core.String> o) { |
| 83 unittest.expect(o, unittest.hasLength(2)); | 83 unittest.expect(o, unittest.hasLength(2)); |
| 84 unittest.expect(o[0], unittest.equals('foo')); | 84 unittest.expect(o[0], unittest.equals('foo')); |
| 85 unittest.expect(o[1], unittest.equals('foo')); | 85 unittest.expect(o[1], unittest.equals('foo')); |
| 86 } | 86 } |
| 87 | 87 |
| 88 core.int buildCounterAccountPermissions = 0; | 88 core.int buildCounterAccountPermissions = 0; |
| 89 buildAccountPermissions() { | 89 buildAccountPermissions() { |
| 90 var o = new api.AccountPermissions(); | 90 var o = new api.AccountPermissions(); |
| 91 buildCounterAccountPermissions++; | 91 buildCounterAccountPermissions++; |
| 92 if (buildCounterAccountPermissions < 3) { | 92 if (buildCounterAccountPermissions < 3) { |
| 93 o.effective = buildUnnamed983(); | 93 o.effective = buildUnnamed999(); |
| 94 } | 94 } |
| 95 buildCounterAccountPermissions--; | 95 buildCounterAccountPermissions--; |
| 96 return o; | 96 return o; |
| 97 } | 97 } |
| 98 | 98 |
| 99 checkAccountPermissions(api.AccountPermissions o) { | 99 checkAccountPermissions(api.AccountPermissions o) { |
| 100 buildCounterAccountPermissions++; | 100 buildCounterAccountPermissions++; |
| 101 if (buildCounterAccountPermissions < 3) { | 101 if (buildCounterAccountPermissions < 3) { |
| 102 checkUnnamed983(o.effective); | 102 checkUnnamed999(o.effective); |
| 103 } | 103 } |
| 104 buildCounterAccountPermissions--; | 104 buildCounterAccountPermissions--; |
| 105 } | 105 } |
| 106 | 106 |
| 107 core.int buildCounterAccount = 0; | 107 core.int buildCounterAccount = 0; |
| 108 buildAccount() { | 108 buildAccount() { |
| 109 var o = new api.Account(); | 109 var o = new api.Account(); |
| 110 buildCounterAccount++; | 110 buildCounterAccount++; |
| 111 if (buildCounterAccount < 3) { | 111 if (buildCounterAccount < 3) { |
| 112 o.childLink = buildAccountChildLink(); | 112 o.childLink = buildAccountChildLink(); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 buildCounterAccountRef++; | 157 buildCounterAccountRef++; |
| 158 if (buildCounterAccountRef < 3) { | 158 if (buildCounterAccountRef < 3) { |
| 159 unittest.expect(o.href, unittest.equals('foo')); | 159 unittest.expect(o.href, unittest.equals('foo')); |
| 160 unittest.expect(o.id, unittest.equals('foo')); | 160 unittest.expect(o.id, unittest.equals('foo')); |
| 161 unittest.expect(o.kind, unittest.equals('foo')); | 161 unittest.expect(o.kind, unittest.equals('foo')); |
| 162 unittest.expect(o.name, unittest.equals('foo')); | 162 unittest.expect(o.name, unittest.equals('foo')); |
| 163 } | 163 } |
| 164 buildCounterAccountRef--; | 164 buildCounterAccountRef--; |
| 165 } | 165 } |
| 166 | 166 |
| 167 buildUnnamed984() { | 167 buildUnnamed1000() { |
| 168 var o = new core.List<api.AccountSummary>(); | 168 var o = new core.List<api.AccountSummary>(); |
| 169 o.add(buildAccountSummary()); | 169 o.add(buildAccountSummary()); |
| 170 o.add(buildAccountSummary()); | 170 o.add(buildAccountSummary()); |
| 171 return o; | 171 return o; |
| 172 } | 172 } |
| 173 | 173 |
| 174 checkUnnamed984(core.List<api.AccountSummary> o) { | 174 checkUnnamed1000(core.List<api.AccountSummary> o) { |
| 175 unittest.expect(o, unittest.hasLength(2)); | 175 unittest.expect(o, unittest.hasLength(2)); |
| 176 checkAccountSummary(o[0]); | 176 checkAccountSummary(o[0]); |
| 177 checkAccountSummary(o[1]); | 177 checkAccountSummary(o[1]); |
| 178 } | 178 } |
| 179 | 179 |
| 180 core.int buildCounterAccountSummaries = 0; | 180 core.int buildCounterAccountSummaries = 0; |
| 181 buildAccountSummaries() { | 181 buildAccountSummaries() { |
| 182 var o = new api.AccountSummaries(); | 182 var o = new api.AccountSummaries(); |
| 183 buildCounterAccountSummaries++; | 183 buildCounterAccountSummaries++; |
| 184 if (buildCounterAccountSummaries < 3) { | 184 if (buildCounterAccountSummaries < 3) { |
| 185 o.items = buildUnnamed984(); | 185 o.items = buildUnnamed1000(); |
| 186 o.itemsPerPage = 42; | 186 o.itemsPerPage = 42; |
| 187 o.kind = "foo"; | 187 o.kind = "foo"; |
| 188 o.nextLink = "foo"; | 188 o.nextLink = "foo"; |
| 189 o.previousLink = "foo"; | 189 o.previousLink = "foo"; |
| 190 o.startIndex = 42; | 190 o.startIndex = 42; |
| 191 o.totalResults = 42; | 191 o.totalResults = 42; |
| 192 o.username = "foo"; | 192 o.username = "foo"; |
| 193 } | 193 } |
| 194 buildCounterAccountSummaries--; | 194 buildCounterAccountSummaries--; |
| 195 return o; | 195 return o; |
| 196 } | 196 } |
| 197 | 197 |
| 198 checkAccountSummaries(api.AccountSummaries o) { | 198 checkAccountSummaries(api.AccountSummaries o) { |
| 199 buildCounterAccountSummaries++; | 199 buildCounterAccountSummaries++; |
| 200 if (buildCounterAccountSummaries < 3) { | 200 if (buildCounterAccountSummaries < 3) { |
| 201 checkUnnamed984(o.items); | 201 checkUnnamed1000(o.items); |
| 202 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 202 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 203 unittest.expect(o.kind, unittest.equals('foo')); | 203 unittest.expect(o.kind, unittest.equals('foo')); |
| 204 unittest.expect(o.nextLink, unittest.equals('foo')); | 204 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 205 unittest.expect(o.previousLink, unittest.equals('foo')); | 205 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 206 unittest.expect(o.startIndex, unittest.equals(42)); | 206 unittest.expect(o.startIndex, unittest.equals(42)); |
| 207 unittest.expect(o.totalResults, unittest.equals(42)); | 207 unittest.expect(o.totalResults, unittest.equals(42)); |
| 208 unittest.expect(o.username, unittest.equals('foo')); | 208 unittest.expect(o.username, unittest.equals('foo')); |
| 209 } | 209 } |
| 210 buildCounterAccountSummaries--; | 210 buildCounterAccountSummaries--; |
| 211 } | 211 } |
| 212 | 212 |
| 213 buildUnnamed985() { | 213 buildUnnamed1001() { |
| 214 var o = new core.List<api.WebPropertySummary>(); | 214 var o = new core.List<api.WebPropertySummary>(); |
| 215 o.add(buildWebPropertySummary()); | 215 o.add(buildWebPropertySummary()); |
| 216 o.add(buildWebPropertySummary()); | 216 o.add(buildWebPropertySummary()); |
| 217 return o; | 217 return o; |
| 218 } | 218 } |
| 219 | 219 |
| 220 checkUnnamed985(core.List<api.WebPropertySummary> o) { | 220 checkUnnamed1001(core.List<api.WebPropertySummary> o) { |
| 221 unittest.expect(o, unittest.hasLength(2)); | 221 unittest.expect(o, unittest.hasLength(2)); |
| 222 checkWebPropertySummary(o[0]); | 222 checkWebPropertySummary(o[0]); |
| 223 checkWebPropertySummary(o[1]); | 223 checkWebPropertySummary(o[1]); |
| 224 } | 224 } |
| 225 | 225 |
| 226 core.int buildCounterAccountSummary = 0; | 226 core.int buildCounterAccountSummary = 0; |
| 227 buildAccountSummary() { | 227 buildAccountSummary() { |
| 228 var o = new api.AccountSummary(); | 228 var o = new api.AccountSummary(); |
| 229 buildCounterAccountSummary++; | 229 buildCounterAccountSummary++; |
| 230 if (buildCounterAccountSummary < 3) { | 230 if (buildCounterAccountSummary < 3) { |
| 231 o.id = "foo"; | 231 o.id = "foo"; |
| 232 o.kind = "foo"; | 232 o.kind = "foo"; |
| 233 o.name = "foo"; | 233 o.name = "foo"; |
| 234 o.starred = true; | 234 o.starred = true; |
| 235 o.webProperties = buildUnnamed985(); | 235 o.webProperties = buildUnnamed1001(); |
| 236 } | 236 } |
| 237 buildCounterAccountSummary--; | 237 buildCounterAccountSummary--; |
| 238 return o; | 238 return o; |
| 239 } | 239 } |
| 240 | 240 |
| 241 checkAccountSummary(api.AccountSummary o) { | 241 checkAccountSummary(api.AccountSummary o) { |
| 242 buildCounterAccountSummary++; | 242 buildCounterAccountSummary++; |
| 243 if (buildCounterAccountSummary < 3) { | 243 if (buildCounterAccountSummary < 3) { |
| 244 unittest.expect(o.id, unittest.equals('foo')); | 244 unittest.expect(o.id, unittest.equals('foo')); |
| 245 unittest.expect(o.kind, unittest.equals('foo')); | 245 unittest.expect(o.kind, unittest.equals('foo')); |
| 246 unittest.expect(o.name, unittest.equals('foo')); | 246 unittest.expect(o.name, unittest.equals('foo')); |
| 247 unittest.expect(o.starred, unittest.isTrue); | 247 unittest.expect(o.starred, unittest.isTrue); |
| 248 checkUnnamed985(o.webProperties); | 248 checkUnnamed1001(o.webProperties); |
| 249 } | 249 } |
| 250 buildCounterAccountSummary--; | 250 buildCounterAccountSummary--; |
| 251 } | 251 } |
| 252 | 252 |
| 253 core.int buildCounterAccountTicket = 0; | 253 core.int buildCounterAccountTicket = 0; |
| 254 buildAccountTicket() { | 254 buildAccountTicket() { |
| 255 var o = new api.AccountTicket(); | 255 var o = new api.AccountTicket(); |
| 256 buildCounterAccountTicket++; | 256 buildCounterAccountTicket++; |
| 257 if (buildCounterAccountTicket < 3) { | 257 if (buildCounterAccountTicket < 3) { |
| 258 o.account = buildAccount(); | 258 o.account = buildAccount(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 272 checkAccount(o.account); | 272 checkAccount(o.account); |
| 273 unittest.expect(o.id, unittest.equals('foo')); | 273 unittest.expect(o.id, unittest.equals('foo')); |
| 274 unittest.expect(o.kind, unittest.equals('foo')); | 274 unittest.expect(o.kind, unittest.equals('foo')); |
| 275 checkProfile(o.profile); | 275 checkProfile(o.profile); |
| 276 unittest.expect(o.redirectUri, unittest.equals('foo')); | 276 unittest.expect(o.redirectUri, unittest.equals('foo')); |
| 277 checkWebproperty(o.webproperty); | 277 checkWebproperty(o.webproperty); |
| 278 } | 278 } |
| 279 buildCounterAccountTicket--; | 279 buildCounterAccountTicket--; |
| 280 } | 280 } |
| 281 | 281 |
| 282 buildUnnamed986() { | 282 buildUnnamed1002() { |
| 283 var o = new core.List<api.Account>(); | 283 var o = new core.List<api.Account>(); |
| 284 o.add(buildAccount()); | 284 o.add(buildAccount()); |
| 285 o.add(buildAccount()); | 285 o.add(buildAccount()); |
| 286 return o; | 286 return o; |
| 287 } | 287 } |
| 288 | 288 |
| 289 checkUnnamed986(core.List<api.Account> o) { | 289 checkUnnamed1002(core.List<api.Account> o) { |
| 290 unittest.expect(o, unittest.hasLength(2)); | 290 unittest.expect(o, unittest.hasLength(2)); |
| 291 checkAccount(o[0]); | 291 checkAccount(o[0]); |
| 292 checkAccount(o[1]); | 292 checkAccount(o[1]); |
| 293 } | 293 } |
| 294 | 294 |
| 295 core.int buildCounterAccounts = 0; | 295 core.int buildCounterAccounts = 0; |
| 296 buildAccounts() { | 296 buildAccounts() { |
| 297 var o = new api.Accounts(); | 297 var o = new api.Accounts(); |
| 298 buildCounterAccounts++; | 298 buildCounterAccounts++; |
| 299 if (buildCounterAccounts < 3) { | 299 if (buildCounterAccounts < 3) { |
| 300 o.items = buildUnnamed986(); | 300 o.items = buildUnnamed1002(); |
| 301 o.itemsPerPage = 42; | 301 o.itemsPerPage = 42; |
| 302 o.kind = "foo"; | 302 o.kind = "foo"; |
| 303 o.nextLink = "foo"; | 303 o.nextLink = "foo"; |
| 304 o.previousLink = "foo"; | 304 o.previousLink = "foo"; |
| 305 o.startIndex = 42; | 305 o.startIndex = 42; |
| 306 o.totalResults = 42; | 306 o.totalResults = 42; |
| 307 o.username = "foo"; | 307 o.username = "foo"; |
| 308 } | 308 } |
| 309 buildCounterAccounts--; | 309 buildCounterAccounts--; |
| 310 return o; | 310 return o; |
| 311 } | 311 } |
| 312 | 312 |
| 313 checkAccounts(api.Accounts o) { | 313 checkAccounts(api.Accounts o) { |
| 314 buildCounterAccounts++; | 314 buildCounterAccounts++; |
| 315 if (buildCounterAccounts < 3) { | 315 if (buildCounterAccounts < 3) { |
| 316 checkUnnamed986(o.items); | 316 checkUnnamed1002(o.items); |
| 317 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 317 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 318 unittest.expect(o.kind, unittest.equals('foo')); | 318 unittest.expect(o.kind, unittest.equals('foo')); |
| 319 unittest.expect(o.nextLink, unittest.equals('foo')); | 319 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 320 unittest.expect(o.previousLink, unittest.equals('foo')); | 320 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 321 unittest.expect(o.startIndex, unittest.equals(42)); | 321 unittest.expect(o.startIndex, unittest.equals(42)); |
| 322 unittest.expect(o.totalResults, unittest.equals(42)); | 322 unittest.expect(o.totalResults, unittest.equals(42)); |
| 323 unittest.expect(o.username, unittest.equals('foo')); | 323 unittest.expect(o.username, unittest.equals('foo')); |
| 324 } | 324 } |
| 325 buildCounterAccounts--; | 325 buildCounterAccounts--; |
| 326 } | 326 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 341 checkAdWordsAccount(api.AdWordsAccount o) { | 341 checkAdWordsAccount(api.AdWordsAccount o) { |
| 342 buildCounterAdWordsAccount++; | 342 buildCounterAdWordsAccount++; |
| 343 if (buildCounterAdWordsAccount < 3) { | 343 if (buildCounterAdWordsAccount < 3) { |
| 344 unittest.expect(o.autoTaggingEnabled, unittest.isTrue); | 344 unittest.expect(o.autoTaggingEnabled, unittest.isTrue); |
| 345 unittest.expect(o.customerId, unittest.equals('foo')); | 345 unittest.expect(o.customerId, unittest.equals('foo')); |
| 346 unittest.expect(o.kind, unittest.equals('foo')); | 346 unittest.expect(o.kind, unittest.equals('foo')); |
| 347 } | 347 } |
| 348 buildCounterAdWordsAccount--; | 348 buildCounterAdWordsAccount--; |
| 349 } | 349 } |
| 350 | 350 |
| 351 buildUnnamed987() { | 351 buildUnnamed1003() { |
| 352 var o = new core.List<core.String>(); | 352 var o = new core.List<core.String>(); |
| 353 o.add("foo"); | 353 o.add("foo"); |
| 354 o.add("foo"); | 354 o.add("foo"); |
| 355 return o; | 355 return o; |
| 356 } | 356 } |
| 357 | 357 |
| 358 checkUnnamed987(core.List<core.String> o) { | 358 checkUnnamed1003(core.List<core.String> o) { |
| 359 unittest.expect(o, unittest.hasLength(2)); | 359 unittest.expect(o, unittest.hasLength(2)); |
| 360 unittest.expect(o[0], unittest.equals('foo')); | 360 unittest.expect(o[0], unittest.equals('foo')); |
| 361 unittest.expect(o[1], unittest.equals('foo')); | 361 unittest.expect(o[1], unittest.equals('foo')); |
| 362 } | 362 } |
| 363 | 363 |
| 364 core.int buildCounterAnalyticsDataimportDeleteUploadDataRequest = 0; | 364 core.int buildCounterAnalyticsDataimportDeleteUploadDataRequest = 0; |
| 365 buildAnalyticsDataimportDeleteUploadDataRequest() { | 365 buildAnalyticsDataimportDeleteUploadDataRequest() { |
| 366 var o = new api.AnalyticsDataimportDeleteUploadDataRequest(); | 366 var o = new api.AnalyticsDataimportDeleteUploadDataRequest(); |
| 367 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; | 367 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; |
| 368 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { | 368 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { |
| 369 o.customDataImportUids = buildUnnamed987(); | 369 o.customDataImportUids = buildUnnamed1003(); |
| 370 } | 370 } |
| 371 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; | 371 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; |
| 372 return o; | 372 return o; |
| 373 } | 373 } |
| 374 | 374 |
| 375 checkAnalyticsDataimportDeleteUploadDataRequest(api.AnalyticsDataimportDeleteUpl
oadDataRequest o) { | 375 checkAnalyticsDataimportDeleteUploadDataRequest(api.AnalyticsDataimportDeleteUpl
oadDataRequest o) { |
| 376 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; | 376 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; |
| 377 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { | 377 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { |
| 378 checkUnnamed987(o.customDataImportUids); | 378 checkUnnamed1003(o.customDataImportUids); |
| 379 } | 379 } |
| 380 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; | 380 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; |
| 381 } | 381 } |
| 382 | 382 |
| 383 buildUnnamed988() { | 383 buildUnnamed1004() { |
| 384 var o = new core.Map<core.String, core.String>(); | 384 var o = new core.Map<core.String, core.String>(); |
| 385 o["x"] = "foo"; | 385 o["x"] = "foo"; |
| 386 o["y"] = "foo"; | 386 o["y"] = "foo"; |
| 387 return o; | 387 return o; |
| 388 } | 388 } |
| 389 | 389 |
| 390 checkUnnamed988(core.Map<core.String, core.String> o) { | 390 checkUnnamed1004(core.Map<core.String, core.String> o) { |
| 391 unittest.expect(o, unittest.hasLength(2)); | 391 unittest.expect(o, unittest.hasLength(2)); |
| 392 unittest.expect(o["x"], unittest.equals('foo')); | 392 unittest.expect(o["x"], unittest.equals('foo')); |
| 393 unittest.expect(o["y"], unittest.equals('foo')); | 393 unittest.expect(o["y"], unittest.equals('foo')); |
| 394 } | 394 } |
| 395 | 395 |
| 396 core.int buildCounterColumn = 0; | 396 core.int buildCounterColumn = 0; |
| 397 buildColumn() { | 397 buildColumn() { |
| 398 var o = new api.Column(); | 398 var o = new api.Column(); |
| 399 buildCounterColumn++; | 399 buildCounterColumn++; |
| 400 if (buildCounterColumn < 3) { | 400 if (buildCounterColumn < 3) { |
| 401 o.attributes = buildUnnamed988(); | 401 o.attributes = buildUnnamed1004(); |
| 402 o.id = "foo"; | 402 o.id = "foo"; |
| 403 o.kind = "foo"; | 403 o.kind = "foo"; |
| 404 } | 404 } |
| 405 buildCounterColumn--; | 405 buildCounterColumn--; |
| 406 return o; | 406 return o; |
| 407 } | 407 } |
| 408 | 408 |
| 409 checkColumn(api.Column o) { | 409 checkColumn(api.Column o) { |
| 410 buildCounterColumn++; | 410 buildCounterColumn++; |
| 411 if (buildCounterColumn < 3) { | 411 if (buildCounterColumn < 3) { |
| 412 checkUnnamed988(o.attributes); | 412 checkUnnamed1004(o.attributes); |
| 413 unittest.expect(o.id, unittest.equals('foo')); | 413 unittest.expect(o.id, unittest.equals('foo')); |
| 414 unittest.expect(o.kind, unittest.equals('foo')); | 414 unittest.expect(o.kind, unittest.equals('foo')); |
| 415 } | 415 } |
| 416 buildCounterColumn--; | 416 buildCounterColumn--; |
| 417 } | 417 } |
| 418 | 418 |
| 419 buildUnnamed989() { | 419 buildUnnamed1005() { |
| 420 var o = new core.List<core.String>(); | 420 var o = new core.List<core.String>(); |
| 421 o.add("foo"); | 421 o.add("foo"); |
| 422 o.add("foo"); | 422 o.add("foo"); |
| 423 return o; | 423 return o; |
| 424 } | 424 } |
| 425 | 425 |
| 426 checkUnnamed989(core.List<core.String> o) { | 426 checkUnnamed1005(core.List<core.String> o) { |
| 427 unittest.expect(o, unittest.hasLength(2)); | 427 unittest.expect(o, unittest.hasLength(2)); |
| 428 unittest.expect(o[0], unittest.equals('foo')); | 428 unittest.expect(o[0], unittest.equals('foo')); |
| 429 unittest.expect(o[1], unittest.equals('foo')); | 429 unittest.expect(o[1], unittest.equals('foo')); |
| 430 } | 430 } |
| 431 | 431 |
| 432 buildUnnamed990() { | 432 buildUnnamed1006() { |
| 433 var o = new core.List<api.Column>(); | 433 var o = new core.List<api.Column>(); |
| 434 o.add(buildColumn()); | 434 o.add(buildColumn()); |
| 435 o.add(buildColumn()); | 435 o.add(buildColumn()); |
| 436 return o; | 436 return o; |
| 437 } | 437 } |
| 438 | 438 |
| 439 checkUnnamed990(core.List<api.Column> o) { | 439 checkUnnamed1006(core.List<api.Column> o) { |
| 440 unittest.expect(o, unittest.hasLength(2)); | 440 unittest.expect(o, unittest.hasLength(2)); |
| 441 checkColumn(o[0]); | 441 checkColumn(o[0]); |
| 442 checkColumn(o[1]); | 442 checkColumn(o[1]); |
| 443 } | 443 } |
| 444 | 444 |
| 445 core.int buildCounterColumns = 0; | 445 core.int buildCounterColumns = 0; |
| 446 buildColumns() { | 446 buildColumns() { |
| 447 var o = new api.Columns(); | 447 var o = new api.Columns(); |
| 448 buildCounterColumns++; | 448 buildCounterColumns++; |
| 449 if (buildCounterColumns < 3) { | 449 if (buildCounterColumns < 3) { |
| 450 o.attributeNames = buildUnnamed989(); | 450 o.attributeNames = buildUnnamed1005(); |
| 451 o.etag = "foo"; | 451 o.etag = "foo"; |
| 452 o.items = buildUnnamed990(); | 452 o.items = buildUnnamed1006(); |
| 453 o.kind = "foo"; | 453 o.kind = "foo"; |
| 454 o.totalResults = 42; | 454 o.totalResults = 42; |
| 455 } | 455 } |
| 456 buildCounterColumns--; | 456 buildCounterColumns--; |
| 457 return o; | 457 return o; |
| 458 } | 458 } |
| 459 | 459 |
| 460 checkColumns(api.Columns o) { | 460 checkColumns(api.Columns o) { |
| 461 buildCounterColumns++; | 461 buildCounterColumns++; |
| 462 if (buildCounterColumns < 3) { | 462 if (buildCounterColumns < 3) { |
| 463 checkUnnamed989(o.attributeNames); | 463 checkUnnamed1005(o.attributeNames); |
| 464 unittest.expect(o.etag, unittest.equals('foo')); | 464 unittest.expect(o.etag, unittest.equals('foo')); |
| 465 checkUnnamed990(o.items); | 465 checkUnnamed1006(o.items); |
| 466 unittest.expect(o.kind, unittest.equals('foo')); | 466 unittest.expect(o.kind, unittest.equals('foo')); |
| 467 unittest.expect(o.totalResults, unittest.equals(42)); | 467 unittest.expect(o.totalResults, unittest.equals(42)); |
| 468 } | 468 } |
| 469 buildCounterColumns--; | 469 buildCounterColumns--; |
| 470 } | 470 } |
| 471 | 471 |
| 472 core.int buildCounterCustomDataSourceChildLink = 0; | 472 core.int buildCounterCustomDataSourceChildLink = 0; |
| 473 buildCustomDataSourceChildLink() { | 473 buildCustomDataSourceChildLink() { |
| 474 var o = new api.CustomDataSourceChildLink(); | 474 var o = new api.CustomDataSourceChildLink(); |
| 475 buildCounterCustomDataSourceChildLink++; | 475 buildCounterCustomDataSourceChildLink++; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 504 | 504 |
| 505 checkCustomDataSourceParentLink(api.CustomDataSourceParentLink o) { | 505 checkCustomDataSourceParentLink(api.CustomDataSourceParentLink o) { |
| 506 buildCounterCustomDataSourceParentLink++; | 506 buildCounterCustomDataSourceParentLink++; |
| 507 if (buildCounterCustomDataSourceParentLink < 3) { | 507 if (buildCounterCustomDataSourceParentLink < 3) { |
| 508 unittest.expect(o.href, unittest.equals('foo')); | 508 unittest.expect(o.href, unittest.equals('foo')); |
| 509 unittest.expect(o.type, unittest.equals('foo')); | 509 unittest.expect(o.type, unittest.equals('foo')); |
| 510 } | 510 } |
| 511 buildCounterCustomDataSourceParentLink--; | 511 buildCounterCustomDataSourceParentLink--; |
| 512 } | 512 } |
| 513 | 513 |
| 514 buildUnnamed991() { | 514 buildUnnamed1007() { |
| 515 var o = new core.List<core.String>(); | 515 var o = new core.List<core.String>(); |
| 516 o.add("foo"); | 516 o.add("foo"); |
| 517 o.add("foo"); | 517 o.add("foo"); |
| 518 return o; | 518 return o; |
| 519 } | 519 } |
| 520 | 520 |
| 521 checkUnnamed991(core.List<core.String> o) { | 521 checkUnnamed1007(core.List<core.String> o) { |
| 522 unittest.expect(o, unittest.hasLength(2)); | 522 unittest.expect(o, unittest.hasLength(2)); |
| 523 unittest.expect(o[0], unittest.equals('foo')); | 523 unittest.expect(o[0], unittest.equals('foo')); |
| 524 unittest.expect(o[1], unittest.equals('foo')); | 524 unittest.expect(o[1], unittest.equals('foo')); |
| 525 } |
| 526 |
| 527 buildUnnamed1008() { |
| 528 var o = new core.List<core.String>(); |
| 529 o.add("foo"); |
| 530 o.add("foo"); |
| 531 return o; |
| 532 } |
| 533 |
| 534 checkUnnamed1008(core.List<core.String> o) { |
| 535 unittest.expect(o, unittest.hasLength(2)); |
| 536 unittest.expect(o[0], unittest.equals('foo')); |
| 537 unittest.expect(o[1], unittest.equals('foo')); |
| 525 } | 538 } |
| 526 | 539 |
| 527 core.int buildCounterCustomDataSource = 0; | 540 core.int buildCounterCustomDataSource = 0; |
| 528 buildCustomDataSource() { | 541 buildCustomDataSource() { |
| 529 var o = new api.CustomDataSource(); | 542 var o = new api.CustomDataSource(); |
| 530 buildCounterCustomDataSource++; | 543 buildCounterCustomDataSource++; |
| 531 if (buildCounterCustomDataSource < 3) { | 544 if (buildCounterCustomDataSource < 3) { |
| 532 o.accountId = "foo"; | 545 o.accountId = "foo"; |
| 533 o.childLink = buildCustomDataSourceChildLink(); | 546 o.childLink = buildCustomDataSourceChildLink(); |
| 534 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 547 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| 535 o.description = "foo"; | 548 o.description = "foo"; |
| 536 o.id = "foo"; | 549 o.id = "foo"; |
| 537 o.importBehavior = "foo"; | 550 o.importBehavior = "foo"; |
| 538 o.kind = "foo"; | 551 o.kind = "foo"; |
| 539 o.name = "foo"; | 552 o.name = "foo"; |
| 540 o.parentLink = buildCustomDataSourceParentLink(); | 553 o.parentLink = buildCustomDataSourceParentLink(); |
| 541 o.profilesLinked = buildUnnamed991(); | 554 o.profilesLinked = buildUnnamed1007(); |
| 555 o.schema = buildUnnamed1008(); |
| 542 o.selfLink = "foo"; | 556 o.selfLink = "foo"; |
| 543 o.type = "foo"; | 557 o.type = "foo"; |
| 544 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 558 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 545 o.uploadType = "foo"; | 559 o.uploadType = "foo"; |
| 546 o.webPropertyId = "foo"; | 560 o.webPropertyId = "foo"; |
| 547 } | 561 } |
| 548 buildCounterCustomDataSource--; | 562 buildCounterCustomDataSource--; |
| 549 return o; | 563 return o; |
| 550 } | 564 } |
| 551 | 565 |
| 552 checkCustomDataSource(api.CustomDataSource o) { | 566 checkCustomDataSource(api.CustomDataSource o) { |
| 553 buildCounterCustomDataSource++; | 567 buildCounterCustomDataSource++; |
| 554 if (buildCounterCustomDataSource < 3) { | 568 if (buildCounterCustomDataSource < 3) { |
| 555 unittest.expect(o.accountId, unittest.equals('foo')); | 569 unittest.expect(o.accountId, unittest.equals('foo')); |
| 556 checkCustomDataSourceChildLink(o.childLink); | 570 checkCustomDataSourceChildLink(o.childLink); |
| 557 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 571 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 558 unittest.expect(o.description, unittest.equals('foo')); | 572 unittest.expect(o.description, unittest.equals('foo')); |
| 559 unittest.expect(o.id, unittest.equals('foo')); | 573 unittest.expect(o.id, unittest.equals('foo')); |
| 560 unittest.expect(o.importBehavior, unittest.equals('foo')); | 574 unittest.expect(o.importBehavior, unittest.equals('foo')); |
| 561 unittest.expect(o.kind, unittest.equals('foo')); | 575 unittest.expect(o.kind, unittest.equals('foo')); |
| 562 unittest.expect(o.name, unittest.equals('foo')); | 576 unittest.expect(o.name, unittest.equals('foo')); |
| 563 checkCustomDataSourceParentLink(o.parentLink); | 577 checkCustomDataSourceParentLink(o.parentLink); |
| 564 checkUnnamed991(o.profilesLinked); | 578 checkUnnamed1007(o.profilesLinked); |
| 579 checkUnnamed1008(o.schema); |
| 565 unittest.expect(o.selfLink, unittest.equals('foo')); | 580 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 566 unittest.expect(o.type, unittest.equals('foo')); | 581 unittest.expect(o.type, unittest.equals('foo')); |
| 567 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 582 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 568 unittest.expect(o.uploadType, unittest.equals('foo')); | 583 unittest.expect(o.uploadType, unittest.equals('foo')); |
| 569 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 584 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 570 } | 585 } |
| 571 buildCounterCustomDataSource--; | 586 buildCounterCustomDataSource--; |
| 572 } | 587 } |
| 573 | 588 |
| 574 buildUnnamed992() { | 589 buildUnnamed1009() { |
| 575 var o = new core.List<api.CustomDataSource>(); | 590 var o = new core.List<api.CustomDataSource>(); |
| 576 o.add(buildCustomDataSource()); | 591 o.add(buildCustomDataSource()); |
| 577 o.add(buildCustomDataSource()); | 592 o.add(buildCustomDataSource()); |
| 578 return o; | 593 return o; |
| 579 } | 594 } |
| 580 | 595 |
| 581 checkUnnamed992(core.List<api.CustomDataSource> o) { | 596 checkUnnamed1009(core.List<api.CustomDataSource> o) { |
| 582 unittest.expect(o, unittest.hasLength(2)); | 597 unittest.expect(o, unittest.hasLength(2)); |
| 583 checkCustomDataSource(o[0]); | 598 checkCustomDataSource(o[0]); |
| 584 checkCustomDataSource(o[1]); | 599 checkCustomDataSource(o[1]); |
| 585 } | 600 } |
| 586 | 601 |
| 587 core.int buildCounterCustomDataSources = 0; | 602 core.int buildCounterCustomDataSources = 0; |
| 588 buildCustomDataSources() { | 603 buildCustomDataSources() { |
| 589 var o = new api.CustomDataSources(); | 604 var o = new api.CustomDataSources(); |
| 590 buildCounterCustomDataSources++; | 605 buildCounterCustomDataSources++; |
| 591 if (buildCounterCustomDataSources < 3) { | 606 if (buildCounterCustomDataSources < 3) { |
| 592 o.items = buildUnnamed992(); | 607 o.items = buildUnnamed1009(); |
| 593 o.itemsPerPage = 42; | 608 o.itemsPerPage = 42; |
| 594 o.kind = "foo"; | 609 o.kind = "foo"; |
| 595 o.nextLink = "foo"; | 610 o.nextLink = "foo"; |
| 596 o.previousLink = "foo"; | 611 o.previousLink = "foo"; |
| 597 o.startIndex = 42; | 612 o.startIndex = 42; |
| 598 o.totalResults = 42; | 613 o.totalResults = 42; |
| 599 o.username = "foo"; | 614 o.username = "foo"; |
| 600 } | 615 } |
| 601 buildCounterCustomDataSources--; | 616 buildCounterCustomDataSources--; |
| 602 return o; | 617 return o; |
| 603 } | 618 } |
| 604 | 619 |
| 605 checkCustomDataSources(api.CustomDataSources o) { | 620 checkCustomDataSources(api.CustomDataSources o) { |
| 606 buildCounterCustomDataSources++; | 621 buildCounterCustomDataSources++; |
| 607 if (buildCounterCustomDataSources < 3) { | 622 if (buildCounterCustomDataSources < 3) { |
| 608 checkUnnamed992(o.items); | 623 checkUnnamed1009(o.items); |
| 609 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 624 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 610 unittest.expect(o.kind, unittest.equals('foo')); | 625 unittest.expect(o.kind, unittest.equals('foo')); |
| 611 unittest.expect(o.nextLink, unittest.equals('foo')); | 626 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 612 unittest.expect(o.previousLink, unittest.equals('foo')); | 627 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 613 unittest.expect(o.startIndex, unittest.equals(42)); | 628 unittest.expect(o.startIndex, unittest.equals(42)); |
| 614 unittest.expect(o.totalResults, unittest.equals(42)); | 629 unittest.expect(o.totalResults, unittest.equals(42)); |
| 615 unittest.expect(o.username, unittest.equals('foo')); | 630 unittest.expect(o.username, unittest.equals('foo')); |
| 616 } | 631 } |
| 617 buildCounterCustomDataSources--; | 632 buildCounterCustomDataSources--; |
| 618 } | 633 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 unittest.expect(o.name, unittest.equals('foo')); | 687 unittest.expect(o.name, unittest.equals('foo')); |
| 673 checkCustomDimensionParentLink(o.parentLink); | 688 checkCustomDimensionParentLink(o.parentLink); |
| 674 unittest.expect(o.scope, unittest.equals('foo')); | 689 unittest.expect(o.scope, unittest.equals('foo')); |
| 675 unittest.expect(o.selfLink, unittest.equals('foo')); | 690 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 676 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 691 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 677 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 692 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 678 } | 693 } |
| 679 buildCounterCustomDimension--; | 694 buildCounterCustomDimension--; |
| 680 } | 695 } |
| 681 | 696 |
| 682 buildUnnamed993() { | 697 buildUnnamed1010() { |
| 683 var o = new core.List<api.CustomDimension>(); | 698 var o = new core.List<api.CustomDimension>(); |
| 684 o.add(buildCustomDimension()); | 699 o.add(buildCustomDimension()); |
| 685 o.add(buildCustomDimension()); | 700 o.add(buildCustomDimension()); |
| 686 return o; | 701 return o; |
| 687 } | 702 } |
| 688 | 703 |
| 689 checkUnnamed993(core.List<api.CustomDimension> o) { | 704 checkUnnamed1010(core.List<api.CustomDimension> o) { |
| 690 unittest.expect(o, unittest.hasLength(2)); | 705 unittest.expect(o, unittest.hasLength(2)); |
| 691 checkCustomDimension(o[0]); | 706 checkCustomDimension(o[0]); |
| 692 checkCustomDimension(o[1]); | 707 checkCustomDimension(o[1]); |
| 693 } | 708 } |
| 694 | 709 |
| 695 core.int buildCounterCustomDimensions = 0; | 710 core.int buildCounterCustomDimensions = 0; |
| 696 buildCustomDimensions() { | 711 buildCustomDimensions() { |
| 697 var o = new api.CustomDimensions(); | 712 var o = new api.CustomDimensions(); |
| 698 buildCounterCustomDimensions++; | 713 buildCounterCustomDimensions++; |
| 699 if (buildCounterCustomDimensions < 3) { | 714 if (buildCounterCustomDimensions < 3) { |
| 700 o.items = buildUnnamed993(); | 715 o.items = buildUnnamed1010(); |
| 701 o.itemsPerPage = 42; | 716 o.itemsPerPage = 42; |
| 702 o.kind = "foo"; | 717 o.kind = "foo"; |
| 703 o.nextLink = "foo"; | 718 o.nextLink = "foo"; |
| 704 o.previousLink = "foo"; | 719 o.previousLink = "foo"; |
| 705 o.startIndex = 42; | 720 o.startIndex = 42; |
| 706 o.totalResults = 42; | 721 o.totalResults = 42; |
| 707 o.username = "foo"; | 722 o.username = "foo"; |
| 708 } | 723 } |
| 709 buildCounterCustomDimensions--; | 724 buildCounterCustomDimensions--; |
| 710 return o; | 725 return o; |
| 711 } | 726 } |
| 712 | 727 |
| 713 checkCustomDimensions(api.CustomDimensions o) { | 728 checkCustomDimensions(api.CustomDimensions o) { |
| 714 buildCounterCustomDimensions++; | 729 buildCounterCustomDimensions++; |
| 715 if (buildCounterCustomDimensions < 3) { | 730 if (buildCounterCustomDimensions < 3) { |
| 716 checkUnnamed993(o.items); | 731 checkUnnamed1010(o.items); |
| 717 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 732 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 718 unittest.expect(o.kind, unittest.equals('foo')); | 733 unittest.expect(o.kind, unittest.equals('foo')); |
| 719 unittest.expect(o.nextLink, unittest.equals('foo')); | 734 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 720 unittest.expect(o.previousLink, unittest.equals('foo')); | 735 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 721 unittest.expect(o.startIndex, unittest.equals(42)); | 736 unittest.expect(o.startIndex, unittest.equals(42)); |
| 722 unittest.expect(o.totalResults, unittest.equals(42)); | 737 unittest.expect(o.totalResults, unittest.equals(42)); |
| 723 unittest.expect(o.username, unittest.equals('foo')); | 738 unittest.expect(o.username, unittest.equals('foo')); |
| 724 } | 739 } |
| 725 buildCounterCustomDimensions--; | 740 buildCounterCustomDimensions--; |
| 726 } | 741 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 checkCustomMetricParentLink(o.parentLink); | 801 checkCustomMetricParentLink(o.parentLink); |
| 787 unittest.expect(o.scope, unittest.equals('foo')); | 802 unittest.expect(o.scope, unittest.equals('foo')); |
| 788 unittest.expect(o.selfLink, unittest.equals('foo')); | 803 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 789 unittest.expect(o.type, unittest.equals('foo')); | 804 unittest.expect(o.type, unittest.equals('foo')); |
| 790 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 805 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 791 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 806 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 792 } | 807 } |
| 793 buildCounterCustomMetric--; | 808 buildCounterCustomMetric--; |
| 794 } | 809 } |
| 795 | 810 |
| 796 buildUnnamed994() { | 811 buildUnnamed1011() { |
| 797 var o = new core.List<api.CustomMetric>(); | 812 var o = new core.List<api.CustomMetric>(); |
| 798 o.add(buildCustomMetric()); | 813 o.add(buildCustomMetric()); |
| 799 o.add(buildCustomMetric()); | 814 o.add(buildCustomMetric()); |
| 800 return o; | 815 return o; |
| 801 } | 816 } |
| 802 | 817 |
| 803 checkUnnamed994(core.List<api.CustomMetric> o) { | 818 checkUnnamed1011(core.List<api.CustomMetric> o) { |
| 804 unittest.expect(o, unittest.hasLength(2)); | 819 unittest.expect(o, unittest.hasLength(2)); |
| 805 checkCustomMetric(o[0]); | 820 checkCustomMetric(o[0]); |
| 806 checkCustomMetric(o[1]); | 821 checkCustomMetric(o[1]); |
| 807 } | 822 } |
| 808 | 823 |
| 809 core.int buildCounterCustomMetrics = 0; | 824 core.int buildCounterCustomMetrics = 0; |
| 810 buildCustomMetrics() { | 825 buildCustomMetrics() { |
| 811 var o = new api.CustomMetrics(); | 826 var o = new api.CustomMetrics(); |
| 812 buildCounterCustomMetrics++; | 827 buildCounterCustomMetrics++; |
| 813 if (buildCounterCustomMetrics < 3) { | 828 if (buildCounterCustomMetrics < 3) { |
| 814 o.items = buildUnnamed994(); | 829 o.items = buildUnnamed1011(); |
| 815 o.itemsPerPage = 42; | 830 o.itemsPerPage = 42; |
| 816 o.kind = "foo"; | 831 o.kind = "foo"; |
| 817 o.nextLink = "foo"; | 832 o.nextLink = "foo"; |
| 818 o.previousLink = "foo"; | 833 o.previousLink = "foo"; |
| 819 o.startIndex = 42; | 834 o.startIndex = 42; |
| 820 o.totalResults = 42; | 835 o.totalResults = 42; |
| 821 o.username = "foo"; | 836 o.username = "foo"; |
| 822 } | 837 } |
| 823 buildCounterCustomMetrics--; | 838 buildCounterCustomMetrics--; |
| 824 return o; | 839 return o; |
| 825 } | 840 } |
| 826 | 841 |
| 827 checkCustomMetrics(api.CustomMetrics o) { | 842 checkCustomMetrics(api.CustomMetrics o) { |
| 828 buildCounterCustomMetrics++; | 843 buildCounterCustomMetrics++; |
| 829 if (buildCounterCustomMetrics < 3) { | 844 if (buildCounterCustomMetrics < 3) { |
| 830 checkUnnamed994(o.items); | 845 checkUnnamed1011(o.items); |
| 831 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 846 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 832 unittest.expect(o.kind, unittest.equals('foo')); | 847 unittest.expect(o.kind, unittest.equals('foo')); |
| 833 unittest.expect(o.nextLink, unittest.equals('foo')); | 848 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 834 unittest.expect(o.previousLink, unittest.equals('foo')); | 849 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 835 unittest.expect(o.startIndex, unittest.equals(42)); | 850 unittest.expect(o.startIndex, unittest.equals(42)); |
| 836 unittest.expect(o.totalResults, unittest.equals(42)); | 851 unittest.expect(o.totalResults, unittest.equals(42)); |
| 837 unittest.expect(o.username, unittest.equals('foo')); | 852 unittest.expect(o.username, unittest.equals('foo')); |
| 838 } | 853 } |
| 839 buildCounterCustomMetrics--; | 854 buildCounterCustomMetrics--; |
| 840 } | 855 } |
| 841 | 856 |
| 842 buildUnnamed995() { | 857 buildUnnamed1012() { |
| 843 var o = new core.List<api.AdWordsAccount>(); | 858 var o = new core.List<api.AdWordsAccount>(); |
| 844 o.add(buildAdWordsAccount()); | 859 o.add(buildAdWordsAccount()); |
| 845 o.add(buildAdWordsAccount()); | 860 o.add(buildAdWordsAccount()); |
| 846 return o; | 861 return o; |
| 847 } | 862 } |
| 848 | 863 |
| 849 checkUnnamed995(core.List<api.AdWordsAccount> o) { | 864 checkUnnamed1012(core.List<api.AdWordsAccount> o) { |
| 850 unittest.expect(o, unittest.hasLength(2)); | 865 unittest.expect(o, unittest.hasLength(2)); |
| 851 checkAdWordsAccount(o[0]); | 866 checkAdWordsAccount(o[0]); |
| 852 checkAdWordsAccount(o[1]); | 867 checkAdWordsAccount(o[1]); |
| 853 } | 868 } |
| 854 | 869 |
| 855 core.int buildCounterEntityAdWordsLinkEntity = 0; | 870 core.int buildCounterEntityAdWordsLinkEntity = 0; |
| 856 buildEntityAdWordsLinkEntity() { | 871 buildEntityAdWordsLinkEntity() { |
| 857 var o = new api.EntityAdWordsLinkEntity(); | 872 var o = new api.EntityAdWordsLinkEntity(); |
| 858 buildCounterEntityAdWordsLinkEntity++; | 873 buildCounterEntityAdWordsLinkEntity++; |
| 859 if (buildCounterEntityAdWordsLinkEntity < 3) { | 874 if (buildCounterEntityAdWordsLinkEntity < 3) { |
| 860 o.webPropertyRef = buildWebPropertyRef(); | 875 o.webPropertyRef = buildWebPropertyRef(); |
| 861 } | 876 } |
| 862 buildCounterEntityAdWordsLinkEntity--; | 877 buildCounterEntityAdWordsLinkEntity--; |
| 863 return o; | 878 return o; |
| 864 } | 879 } |
| 865 | 880 |
| 866 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { | 881 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { |
| 867 buildCounterEntityAdWordsLinkEntity++; | 882 buildCounterEntityAdWordsLinkEntity++; |
| 868 if (buildCounterEntityAdWordsLinkEntity < 3) { | 883 if (buildCounterEntityAdWordsLinkEntity < 3) { |
| 869 checkWebPropertyRef(o.webPropertyRef); | 884 checkWebPropertyRef(o.webPropertyRef); |
| 870 } | 885 } |
| 871 buildCounterEntityAdWordsLinkEntity--; | 886 buildCounterEntityAdWordsLinkEntity--; |
| 872 } | 887 } |
| 873 | 888 |
| 874 buildUnnamed996() { | 889 buildUnnamed1013() { |
| 875 var o = new core.List<core.String>(); | 890 var o = new core.List<core.String>(); |
| 876 o.add("foo"); | 891 o.add("foo"); |
| 877 o.add("foo"); | 892 o.add("foo"); |
| 878 return o; | 893 return o; |
| 879 } | 894 } |
| 880 | 895 |
| 881 checkUnnamed996(core.List<core.String> o) { | 896 checkUnnamed1013(core.List<core.String> o) { |
| 882 unittest.expect(o, unittest.hasLength(2)); | 897 unittest.expect(o, unittest.hasLength(2)); |
| 883 unittest.expect(o[0], unittest.equals('foo')); | 898 unittest.expect(o[0], unittest.equals('foo')); |
| 884 unittest.expect(o[1], unittest.equals('foo')); | 899 unittest.expect(o[1], unittest.equals('foo')); |
| 885 } | 900 } |
| 886 | 901 |
| 887 core.int buildCounterEntityAdWordsLink = 0; | 902 core.int buildCounterEntityAdWordsLink = 0; |
| 888 buildEntityAdWordsLink() { | 903 buildEntityAdWordsLink() { |
| 889 var o = new api.EntityAdWordsLink(); | 904 var o = new api.EntityAdWordsLink(); |
| 890 buildCounterEntityAdWordsLink++; | 905 buildCounterEntityAdWordsLink++; |
| 891 if (buildCounterEntityAdWordsLink < 3) { | 906 if (buildCounterEntityAdWordsLink < 3) { |
| 892 o.adWordsAccounts = buildUnnamed995(); | 907 o.adWordsAccounts = buildUnnamed1012(); |
| 893 o.entity = buildEntityAdWordsLinkEntity(); | 908 o.entity = buildEntityAdWordsLinkEntity(); |
| 894 o.id = "foo"; | 909 o.id = "foo"; |
| 895 o.kind = "foo"; | 910 o.kind = "foo"; |
| 896 o.name = "foo"; | 911 o.name = "foo"; |
| 897 o.profileIds = buildUnnamed996(); | 912 o.profileIds = buildUnnamed1013(); |
| 898 o.selfLink = "foo"; | 913 o.selfLink = "foo"; |
| 899 } | 914 } |
| 900 buildCounterEntityAdWordsLink--; | 915 buildCounterEntityAdWordsLink--; |
| 901 return o; | 916 return o; |
| 902 } | 917 } |
| 903 | 918 |
| 904 checkEntityAdWordsLink(api.EntityAdWordsLink o) { | 919 checkEntityAdWordsLink(api.EntityAdWordsLink o) { |
| 905 buildCounterEntityAdWordsLink++; | 920 buildCounterEntityAdWordsLink++; |
| 906 if (buildCounterEntityAdWordsLink < 3) { | 921 if (buildCounterEntityAdWordsLink < 3) { |
| 907 checkUnnamed995(o.adWordsAccounts); | 922 checkUnnamed1012(o.adWordsAccounts); |
| 908 checkEntityAdWordsLinkEntity(o.entity); | 923 checkEntityAdWordsLinkEntity(o.entity); |
| 909 unittest.expect(o.id, unittest.equals('foo')); | 924 unittest.expect(o.id, unittest.equals('foo')); |
| 910 unittest.expect(o.kind, unittest.equals('foo')); | 925 unittest.expect(o.kind, unittest.equals('foo')); |
| 911 unittest.expect(o.name, unittest.equals('foo')); | 926 unittest.expect(o.name, unittest.equals('foo')); |
| 912 checkUnnamed996(o.profileIds); | 927 checkUnnamed1013(o.profileIds); |
| 913 unittest.expect(o.selfLink, unittest.equals('foo')); | 928 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 914 } | 929 } |
| 915 buildCounterEntityAdWordsLink--; | 930 buildCounterEntityAdWordsLink--; |
| 916 } | 931 } |
| 917 | 932 |
| 918 buildUnnamed997() { | 933 buildUnnamed1014() { |
| 919 var o = new core.List<api.EntityAdWordsLink>(); | 934 var o = new core.List<api.EntityAdWordsLink>(); |
| 920 o.add(buildEntityAdWordsLink()); | 935 o.add(buildEntityAdWordsLink()); |
| 921 o.add(buildEntityAdWordsLink()); | 936 o.add(buildEntityAdWordsLink()); |
| 922 return o; | 937 return o; |
| 923 } | 938 } |
| 924 | 939 |
| 925 checkUnnamed997(core.List<api.EntityAdWordsLink> o) { | 940 checkUnnamed1014(core.List<api.EntityAdWordsLink> o) { |
| 926 unittest.expect(o, unittest.hasLength(2)); | 941 unittest.expect(o, unittest.hasLength(2)); |
| 927 checkEntityAdWordsLink(o[0]); | 942 checkEntityAdWordsLink(o[0]); |
| 928 checkEntityAdWordsLink(o[1]); | 943 checkEntityAdWordsLink(o[1]); |
| 929 } | 944 } |
| 930 | 945 |
| 931 core.int buildCounterEntityAdWordsLinks = 0; | 946 core.int buildCounterEntityAdWordsLinks = 0; |
| 932 buildEntityAdWordsLinks() { | 947 buildEntityAdWordsLinks() { |
| 933 var o = new api.EntityAdWordsLinks(); | 948 var o = new api.EntityAdWordsLinks(); |
| 934 buildCounterEntityAdWordsLinks++; | 949 buildCounterEntityAdWordsLinks++; |
| 935 if (buildCounterEntityAdWordsLinks < 3) { | 950 if (buildCounterEntityAdWordsLinks < 3) { |
| 936 o.items = buildUnnamed997(); | 951 o.items = buildUnnamed1014(); |
| 937 o.itemsPerPage = 42; | 952 o.itemsPerPage = 42; |
| 938 o.kind = "foo"; | 953 o.kind = "foo"; |
| 939 o.nextLink = "foo"; | 954 o.nextLink = "foo"; |
| 940 o.previousLink = "foo"; | 955 o.previousLink = "foo"; |
| 941 o.startIndex = 42; | 956 o.startIndex = 42; |
| 942 o.totalResults = 42; | 957 o.totalResults = 42; |
| 943 } | 958 } |
| 944 buildCounterEntityAdWordsLinks--; | 959 buildCounterEntityAdWordsLinks--; |
| 945 return o; | 960 return o; |
| 946 } | 961 } |
| 947 | 962 |
| 948 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { | 963 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { |
| 949 buildCounterEntityAdWordsLinks++; | 964 buildCounterEntityAdWordsLinks++; |
| 950 if (buildCounterEntityAdWordsLinks < 3) { | 965 if (buildCounterEntityAdWordsLinks < 3) { |
| 951 checkUnnamed997(o.items); | 966 checkUnnamed1014(o.items); |
| 952 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 967 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 953 unittest.expect(o.kind, unittest.equals('foo')); | 968 unittest.expect(o.kind, unittest.equals('foo')); |
| 954 unittest.expect(o.nextLink, unittest.equals('foo')); | 969 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 955 unittest.expect(o.previousLink, unittest.equals('foo')); | 970 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 956 unittest.expect(o.startIndex, unittest.equals(42)); | 971 unittest.expect(o.startIndex, unittest.equals(42)); |
| 957 unittest.expect(o.totalResults, unittest.equals(42)); | 972 unittest.expect(o.totalResults, unittest.equals(42)); |
| 958 } | 973 } |
| 959 buildCounterEntityAdWordsLinks--; | 974 buildCounterEntityAdWordsLinks--; |
| 960 } | 975 } |
| 961 | 976 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 975 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { | 990 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { |
| 976 buildCounterEntityUserLinkEntity++; | 991 buildCounterEntityUserLinkEntity++; |
| 977 if (buildCounterEntityUserLinkEntity < 3) { | 992 if (buildCounterEntityUserLinkEntity < 3) { |
| 978 checkAccountRef(o.accountRef); | 993 checkAccountRef(o.accountRef); |
| 979 checkProfileRef(o.profileRef); | 994 checkProfileRef(o.profileRef); |
| 980 checkWebPropertyRef(o.webPropertyRef); | 995 checkWebPropertyRef(o.webPropertyRef); |
| 981 } | 996 } |
| 982 buildCounterEntityUserLinkEntity--; | 997 buildCounterEntityUserLinkEntity--; |
| 983 } | 998 } |
| 984 | 999 |
| 985 buildUnnamed998() { | 1000 buildUnnamed1015() { |
| 986 var o = new core.List<core.String>(); | 1001 var o = new core.List<core.String>(); |
| 987 o.add("foo"); | 1002 o.add("foo"); |
| 988 o.add("foo"); | 1003 o.add("foo"); |
| 989 return o; | 1004 return o; |
| 990 } | 1005 } |
| 991 | 1006 |
| 992 checkUnnamed998(core.List<core.String> o) { | 1007 checkUnnamed1015(core.List<core.String> o) { |
| 993 unittest.expect(o, unittest.hasLength(2)); | 1008 unittest.expect(o, unittest.hasLength(2)); |
| 994 unittest.expect(o[0], unittest.equals('foo')); | 1009 unittest.expect(o[0], unittest.equals('foo')); |
| 995 unittest.expect(o[1], unittest.equals('foo')); | 1010 unittest.expect(o[1], unittest.equals('foo')); |
| 996 } | 1011 } |
| 997 | 1012 |
| 998 buildUnnamed999() { | 1013 buildUnnamed1016() { |
| 999 var o = new core.List<core.String>(); | 1014 var o = new core.List<core.String>(); |
| 1000 o.add("foo"); | 1015 o.add("foo"); |
| 1001 o.add("foo"); | 1016 o.add("foo"); |
| 1002 return o; | 1017 return o; |
| 1003 } | 1018 } |
| 1004 | 1019 |
| 1005 checkUnnamed999(core.List<core.String> o) { | 1020 checkUnnamed1016(core.List<core.String> o) { |
| 1006 unittest.expect(o, unittest.hasLength(2)); | 1021 unittest.expect(o, unittest.hasLength(2)); |
| 1007 unittest.expect(o[0], unittest.equals('foo')); | 1022 unittest.expect(o[0], unittest.equals('foo')); |
| 1008 unittest.expect(o[1], unittest.equals('foo')); | 1023 unittest.expect(o[1], unittest.equals('foo')); |
| 1009 } | 1024 } |
| 1010 | 1025 |
| 1011 core.int buildCounterEntityUserLinkPermissions = 0; | 1026 core.int buildCounterEntityUserLinkPermissions = 0; |
| 1012 buildEntityUserLinkPermissions() { | 1027 buildEntityUserLinkPermissions() { |
| 1013 var o = new api.EntityUserLinkPermissions(); | 1028 var o = new api.EntityUserLinkPermissions(); |
| 1014 buildCounterEntityUserLinkPermissions++; | 1029 buildCounterEntityUserLinkPermissions++; |
| 1015 if (buildCounterEntityUserLinkPermissions < 3) { | 1030 if (buildCounterEntityUserLinkPermissions < 3) { |
| 1016 o.effective = buildUnnamed998(); | 1031 o.effective = buildUnnamed1015(); |
| 1017 o.local = buildUnnamed999(); | 1032 o.local = buildUnnamed1016(); |
| 1018 } | 1033 } |
| 1019 buildCounterEntityUserLinkPermissions--; | 1034 buildCounterEntityUserLinkPermissions--; |
| 1020 return o; | 1035 return o; |
| 1021 } | 1036 } |
| 1022 | 1037 |
| 1023 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { | 1038 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { |
| 1024 buildCounterEntityUserLinkPermissions++; | 1039 buildCounterEntityUserLinkPermissions++; |
| 1025 if (buildCounterEntityUserLinkPermissions < 3) { | 1040 if (buildCounterEntityUserLinkPermissions < 3) { |
| 1026 checkUnnamed998(o.effective); | 1041 checkUnnamed1015(o.effective); |
| 1027 checkUnnamed999(o.local); | 1042 checkUnnamed1016(o.local); |
| 1028 } | 1043 } |
| 1029 buildCounterEntityUserLinkPermissions--; | 1044 buildCounterEntityUserLinkPermissions--; |
| 1030 } | 1045 } |
| 1031 | 1046 |
| 1032 core.int buildCounterEntityUserLink = 0; | 1047 core.int buildCounterEntityUserLink = 0; |
| 1033 buildEntityUserLink() { | 1048 buildEntityUserLink() { |
| 1034 var o = new api.EntityUserLink(); | 1049 var o = new api.EntityUserLink(); |
| 1035 buildCounterEntityUserLink++; | 1050 buildCounterEntityUserLink++; |
| 1036 if (buildCounterEntityUserLink < 3) { | 1051 if (buildCounterEntityUserLink < 3) { |
| 1037 o.entity = buildEntityUserLinkEntity(); | 1052 o.entity = buildEntityUserLinkEntity(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1051 checkEntityUserLinkEntity(o.entity); | 1066 checkEntityUserLinkEntity(o.entity); |
| 1052 unittest.expect(o.id, unittest.equals('foo')); | 1067 unittest.expect(o.id, unittest.equals('foo')); |
| 1053 unittest.expect(o.kind, unittest.equals('foo')); | 1068 unittest.expect(o.kind, unittest.equals('foo')); |
| 1054 checkEntityUserLinkPermissions(o.permissions); | 1069 checkEntityUserLinkPermissions(o.permissions); |
| 1055 unittest.expect(o.selfLink, unittest.equals('foo')); | 1070 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1056 checkUserRef(o.userRef); | 1071 checkUserRef(o.userRef); |
| 1057 } | 1072 } |
| 1058 buildCounterEntityUserLink--; | 1073 buildCounterEntityUserLink--; |
| 1059 } | 1074 } |
| 1060 | 1075 |
| 1061 buildUnnamed1000() { | 1076 buildUnnamed1017() { |
| 1062 var o = new core.List<api.EntityUserLink>(); | 1077 var o = new core.List<api.EntityUserLink>(); |
| 1063 o.add(buildEntityUserLink()); | 1078 o.add(buildEntityUserLink()); |
| 1064 o.add(buildEntityUserLink()); | 1079 o.add(buildEntityUserLink()); |
| 1065 return o; | 1080 return o; |
| 1066 } | 1081 } |
| 1067 | 1082 |
| 1068 checkUnnamed1000(core.List<api.EntityUserLink> o) { | 1083 checkUnnamed1017(core.List<api.EntityUserLink> o) { |
| 1069 unittest.expect(o, unittest.hasLength(2)); | 1084 unittest.expect(o, unittest.hasLength(2)); |
| 1070 checkEntityUserLink(o[0]); | 1085 checkEntityUserLink(o[0]); |
| 1071 checkEntityUserLink(o[1]); | 1086 checkEntityUserLink(o[1]); |
| 1072 } | 1087 } |
| 1073 | 1088 |
| 1074 core.int buildCounterEntityUserLinks = 0; | 1089 core.int buildCounterEntityUserLinks = 0; |
| 1075 buildEntityUserLinks() { | 1090 buildEntityUserLinks() { |
| 1076 var o = new api.EntityUserLinks(); | 1091 var o = new api.EntityUserLinks(); |
| 1077 buildCounterEntityUserLinks++; | 1092 buildCounterEntityUserLinks++; |
| 1078 if (buildCounterEntityUserLinks < 3) { | 1093 if (buildCounterEntityUserLinks < 3) { |
| 1079 o.items = buildUnnamed1000(); | 1094 o.items = buildUnnamed1017(); |
| 1080 o.itemsPerPage = 42; | 1095 o.itemsPerPage = 42; |
| 1081 o.kind = "foo"; | 1096 o.kind = "foo"; |
| 1082 o.nextLink = "foo"; | 1097 o.nextLink = "foo"; |
| 1083 o.previousLink = "foo"; | 1098 o.previousLink = "foo"; |
| 1084 o.startIndex = 42; | 1099 o.startIndex = 42; |
| 1085 o.totalResults = 42; | 1100 o.totalResults = 42; |
| 1086 } | 1101 } |
| 1087 buildCounterEntityUserLinks--; | 1102 buildCounterEntityUserLinks--; |
| 1088 return o; | 1103 return o; |
| 1089 } | 1104 } |
| 1090 | 1105 |
| 1091 checkEntityUserLinks(api.EntityUserLinks o) { | 1106 checkEntityUserLinks(api.EntityUserLinks o) { |
| 1092 buildCounterEntityUserLinks++; | 1107 buildCounterEntityUserLinks++; |
| 1093 if (buildCounterEntityUserLinks < 3) { | 1108 if (buildCounterEntityUserLinks < 3) { |
| 1094 checkUnnamed1000(o.items); | 1109 checkUnnamed1017(o.items); |
| 1095 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1110 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1096 unittest.expect(o.kind, unittest.equals('foo')); | 1111 unittest.expect(o.kind, unittest.equals('foo')); |
| 1097 unittest.expect(o.nextLink, unittest.equals('foo')); | 1112 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1098 unittest.expect(o.previousLink, unittest.equals('foo')); | 1113 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1099 unittest.expect(o.startIndex, unittest.equals(42)); | 1114 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1100 unittest.expect(o.totalResults, unittest.equals(42)); | 1115 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1101 } | 1116 } |
| 1102 buildCounterEntityUserLinks--; | 1117 buildCounterEntityUserLinks--; |
| 1103 } | 1118 } |
| 1104 | 1119 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 if (buildCounterExperimentVariations < 3) { | 1158 if (buildCounterExperimentVariations < 3) { |
| 1144 unittest.expect(o.name, unittest.equals('foo')); | 1159 unittest.expect(o.name, unittest.equals('foo')); |
| 1145 unittest.expect(o.status, unittest.equals('foo')); | 1160 unittest.expect(o.status, unittest.equals('foo')); |
| 1146 unittest.expect(o.url, unittest.equals('foo')); | 1161 unittest.expect(o.url, unittest.equals('foo')); |
| 1147 unittest.expect(o.weight, unittest.equals(42.0)); | 1162 unittest.expect(o.weight, unittest.equals(42.0)); |
| 1148 unittest.expect(o.won, unittest.isTrue); | 1163 unittest.expect(o.won, unittest.isTrue); |
| 1149 } | 1164 } |
| 1150 buildCounterExperimentVariations--; | 1165 buildCounterExperimentVariations--; |
| 1151 } | 1166 } |
| 1152 | 1167 |
| 1153 buildUnnamed1001() { | 1168 buildUnnamed1018() { |
| 1154 var o = new core.List<api.ExperimentVariations>(); | 1169 var o = new core.List<api.ExperimentVariations>(); |
| 1155 o.add(buildExperimentVariations()); | 1170 o.add(buildExperimentVariations()); |
| 1156 o.add(buildExperimentVariations()); | 1171 o.add(buildExperimentVariations()); |
| 1157 return o; | 1172 return o; |
| 1158 } | 1173 } |
| 1159 | 1174 |
| 1160 checkUnnamed1001(core.List<api.ExperimentVariations> o) { | 1175 checkUnnamed1018(core.List<api.ExperimentVariations> o) { |
| 1161 unittest.expect(o, unittest.hasLength(2)); | 1176 unittest.expect(o, unittest.hasLength(2)); |
| 1162 checkExperimentVariations(o[0]); | 1177 checkExperimentVariations(o[0]); |
| 1163 checkExperimentVariations(o[1]); | 1178 checkExperimentVariations(o[1]); |
| 1164 } | 1179 } |
| 1165 | 1180 |
| 1166 core.int buildCounterExperiment = 0; | 1181 core.int buildCounterExperiment = 0; |
| 1167 buildExperiment() { | 1182 buildExperiment() { |
| 1168 var o = new api.Experiment(); | 1183 var o = new api.Experiment(); |
| 1169 buildCounterExperiment++; | 1184 buildCounterExperiment++; |
| 1170 if (buildCounterExperiment < 3) { | 1185 if (buildCounterExperiment < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1185 o.profileId = "foo"; | 1200 o.profileId = "foo"; |
| 1186 o.reasonExperimentEnded = "foo"; | 1201 o.reasonExperimentEnded = "foo"; |
| 1187 o.rewriteVariationUrlsAsOriginal = true; | 1202 o.rewriteVariationUrlsAsOriginal = true; |
| 1188 o.selfLink = "foo"; | 1203 o.selfLink = "foo"; |
| 1189 o.servingFramework = "foo"; | 1204 o.servingFramework = "foo"; |
| 1190 o.snippet = "foo"; | 1205 o.snippet = "foo"; |
| 1191 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 1206 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 1192 o.status = "foo"; | 1207 o.status = "foo"; |
| 1193 o.trafficCoverage = 42.0; | 1208 o.trafficCoverage = 42.0; |
| 1194 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 1209 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 1195 o.variations = buildUnnamed1001(); | 1210 o.variations = buildUnnamed1018(); |
| 1196 o.webPropertyId = "foo"; | 1211 o.webPropertyId = "foo"; |
| 1197 o.winnerConfidenceLevel = 42.0; | 1212 o.winnerConfidenceLevel = 42.0; |
| 1198 o.winnerFound = true; | 1213 o.winnerFound = true; |
| 1199 } | 1214 } |
| 1200 buildCounterExperiment--; | 1215 buildCounterExperiment--; |
| 1201 return o; | 1216 return o; |
| 1202 } | 1217 } |
| 1203 | 1218 |
| 1204 checkExperiment(api.Experiment o) { | 1219 checkExperiment(api.Experiment o) { |
| 1205 buildCounterExperiment++; | 1220 buildCounterExperiment++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 1221 unittest.expect(o.profileId, unittest.equals('foo')); | 1236 unittest.expect(o.profileId, unittest.equals('foo')); |
| 1222 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); | 1237 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); |
| 1223 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); | 1238 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); |
| 1224 unittest.expect(o.selfLink, unittest.equals('foo')); | 1239 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1225 unittest.expect(o.servingFramework, unittest.equals('foo')); | 1240 unittest.expect(o.servingFramework, unittest.equals('foo')); |
| 1226 unittest.expect(o.snippet, unittest.equals('foo')); | 1241 unittest.expect(o.snippet, unittest.equals('foo')); |
| 1227 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 1242 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 1228 unittest.expect(o.status, unittest.equals('foo')); | 1243 unittest.expect(o.status, unittest.equals('foo')); |
| 1229 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); | 1244 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); |
| 1230 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 1245 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 1231 checkUnnamed1001(o.variations); | 1246 checkUnnamed1018(o.variations); |
| 1232 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1247 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 1233 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); | 1248 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); |
| 1234 unittest.expect(o.winnerFound, unittest.isTrue); | 1249 unittest.expect(o.winnerFound, unittest.isTrue); |
| 1235 } | 1250 } |
| 1236 buildCounterExperiment--; | 1251 buildCounterExperiment--; |
| 1237 } | 1252 } |
| 1238 | 1253 |
| 1239 buildUnnamed1002() { | 1254 buildUnnamed1019() { |
| 1240 var o = new core.List<api.Experiment>(); | 1255 var o = new core.List<api.Experiment>(); |
| 1241 o.add(buildExperiment()); | 1256 o.add(buildExperiment()); |
| 1242 o.add(buildExperiment()); | 1257 o.add(buildExperiment()); |
| 1243 return o; | 1258 return o; |
| 1244 } | 1259 } |
| 1245 | 1260 |
| 1246 checkUnnamed1002(core.List<api.Experiment> o) { | 1261 checkUnnamed1019(core.List<api.Experiment> o) { |
| 1247 unittest.expect(o, unittest.hasLength(2)); | 1262 unittest.expect(o, unittest.hasLength(2)); |
| 1248 checkExperiment(o[0]); | 1263 checkExperiment(o[0]); |
| 1249 checkExperiment(o[1]); | 1264 checkExperiment(o[1]); |
| 1250 } | 1265 } |
| 1251 | 1266 |
| 1252 core.int buildCounterExperiments = 0; | 1267 core.int buildCounterExperiments = 0; |
| 1253 buildExperiments() { | 1268 buildExperiments() { |
| 1254 var o = new api.Experiments(); | 1269 var o = new api.Experiments(); |
| 1255 buildCounterExperiments++; | 1270 buildCounterExperiments++; |
| 1256 if (buildCounterExperiments < 3) { | 1271 if (buildCounterExperiments < 3) { |
| 1257 o.items = buildUnnamed1002(); | 1272 o.items = buildUnnamed1019(); |
| 1258 o.itemsPerPage = 42; | 1273 o.itemsPerPage = 42; |
| 1259 o.kind = "foo"; | 1274 o.kind = "foo"; |
| 1260 o.nextLink = "foo"; | 1275 o.nextLink = "foo"; |
| 1261 o.previousLink = "foo"; | 1276 o.previousLink = "foo"; |
| 1262 o.startIndex = 42; | 1277 o.startIndex = 42; |
| 1263 o.totalResults = 42; | 1278 o.totalResults = 42; |
| 1264 o.username = "foo"; | 1279 o.username = "foo"; |
| 1265 } | 1280 } |
| 1266 buildCounterExperiments--; | 1281 buildCounterExperiments--; |
| 1267 return o; | 1282 return o; |
| 1268 } | 1283 } |
| 1269 | 1284 |
| 1270 checkExperiments(api.Experiments o) { | 1285 checkExperiments(api.Experiments o) { |
| 1271 buildCounterExperiments++; | 1286 buildCounterExperiments++; |
| 1272 if (buildCounterExperiments < 3) { | 1287 if (buildCounterExperiments < 3) { |
| 1273 checkUnnamed1002(o.items); | 1288 checkUnnamed1019(o.items); |
| 1274 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1289 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1275 unittest.expect(o.kind, unittest.equals('foo')); | 1290 unittest.expect(o.kind, unittest.equals('foo')); |
| 1276 unittest.expect(o.nextLink, unittest.equals('foo')); | 1291 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1277 unittest.expect(o.previousLink, unittest.equals('foo')); | 1292 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1278 unittest.expect(o.startIndex, unittest.equals(42)); | 1293 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1279 unittest.expect(o.totalResults, unittest.equals(42)); | 1294 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1280 unittest.expect(o.username, unittest.equals('foo')); | 1295 unittest.expect(o.username, unittest.equals('foo')); |
| 1281 } | 1296 } |
| 1282 buildCounterExperiments--; | 1297 buildCounterExperiments--; |
| 1283 } | 1298 } |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1511 if (buildCounterFilterRef < 3) { | 1526 if (buildCounterFilterRef < 3) { |
| 1512 unittest.expect(o.accountId, unittest.equals('foo')); | 1527 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1513 unittest.expect(o.href, unittest.equals('foo')); | 1528 unittest.expect(o.href, unittest.equals('foo')); |
| 1514 unittest.expect(o.id, unittest.equals('foo')); | 1529 unittest.expect(o.id, unittest.equals('foo')); |
| 1515 unittest.expect(o.kind, unittest.equals('foo')); | 1530 unittest.expect(o.kind, unittest.equals('foo')); |
| 1516 unittest.expect(o.name, unittest.equals('foo')); | 1531 unittest.expect(o.name, unittest.equals('foo')); |
| 1517 } | 1532 } |
| 1518 buildCounterFilterRef--; | 1533 buildCounterFilterRef--; |
| 1519 } | 1534 } |
| 1520 | 1535 |
| 1521 buildUnnamed1003() { | 1536 buildUnnamed1020() { |
| 1522 var o = new core.List<api.Filter>(); | 1537 var o = new core.List<api.Filter>(); |
| 1523 o.add(buildFilter()); | 1538 o.add(buildFilter()); |
| 1524 o.add(buildFilter()); | 1539 o.add(buildFilter()); |
| 1525 return o; | 1540 return o; |
| 1526 } | 1541 } |
| 1527 | 1542 |
| 1528 checkUnnamed1003(core.List<api.Filter> o) { | 1543 checkUnnamed1020(core.List<api.Filter> o) { |
| 1529 unittest.expect(o, unittest.hasLength(2)); | 1544 unittest.expect(o, unittest.hasLength(2)); |
| 1530 checkFilter(o[0]); | 1545 checkFilter(o[0]); |
| 1531 checkFilter(o[1]); | 1546 checkFilter(o[1]); |
| 1532 } | 1547 } |
| 1533 | 1548 |
| 1534 core.int buildCounterFilters = 0; | 1549 core.int buildCounterFilters = 0; |
| 1535 buildFilters() { | 1550 buildFilters() { |
| 1536 var o = new api.Filters(); | 1551 var o = new api.Filters(); |
| 1537 buildCounterFilters++; | 1552 buildCounterFilters++; |
| 1538 if (buildCounterFilters < 3) { | 1553 if (buildCounterFilters < 3) { |
| 1539 o.items = buildUnnamed1003(); | 1554 o.items = buildUnnamed1020(); |
| 1540 o.itemsPerPage = 42; | 1555 o.itemsPerPage = 42; |
| 1541 o.kind = "foo"; | 1556 o.kind = "foo"; |
| 1542 o.nextLink = "foo"; | 1557 o.nextLink = "foo"; |
| 1543 o.previousLink = "foo"; | 1558 o.previousLink = "foo"; |
| 1544 o.startIndex = 42; | 1559 o.startIndex = 42; |
| 1545 o.totalResults = 42; | 1560 o.totalResults = 42; |
| 1546 o.username = "foo"; | 1561 o.username = "foo"; |
| 1547 } | 1562 } |
| 1548 buildCounterFilters--; | 1563 buildCounterFilters--; |
| 1549 return o; | 1564 return o; |
| 1550 } | 1565 } |
| 1551 | 1566 |
| 1552 checkFilters(api.Filters o) { | 1567 checkFilters(api.Filters o) { |
| 1553 buildCounterFilters++; | 1568 buildCounterFilters++; |
| 1554 if (buildCounterFilters < 3) { | 1569 if (buildCounterFilters < 3) { |
| 1555 checkUnnamed1003(o.items); | 1570 checkUnnamed1020(o.items); |
| 1556 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1571 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1557 unittest.expect(o.kind, unittest.equals('foo')); | 1572 unittest.expect(o.kind, unittest.equals('foo')); |
| 1558 unittest.expect(o.nextLink, unittest.equals('foo')); | 1573 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1559 unittest.expect(o.previousLink, unittest.equals('foo')); | 1574 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1560 unittest.expect(o.startIndex, unittest.equals(42)); | 1575 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1561 unittest.expect(o.totalResults, unittest.equals(42)); | 1576 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1562 unittest.expect(o.username, unittest.equals('foo')); | 1577 unittest.expect(o.username, unittest.equals('foo')); |
| 1563 } | 1578 } |
| 1564 buildCounterFilters--; | 1579 buildCounterFilters--; |
| 1565 } | 1580 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1580 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { | 1595 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { |
| 1581 buildCounterGaDataColumnHeaders++; | 1596 buildCounterGaDataColumnHeaders++; |
| 1582 if (buildCounterGaDataColumnHeaders < 3) { | 1597 if (buildCounterGaDataColumnHeaders < 3) { |
| 1583 unittest.expect(o.columnType, unittest.equals('foo')); | 1598 unittest.expect(o.columnType, unittest.equals('foo')); |
| 1584 unittest.expect(o.dataType, unittest.equals('foo')); | 1599 unittest.expect(o.dataType, unittest.equals('foo')); |
| 1585 unittest.expect(o.name, unittest.equals('foo')); | 1600 unittest.expect(o.name, unittest.equals('foo')); |
| 1586 } | 1601 } |
| 1587 buildCounterGaDataColumnHeaders--; | 1602 buildCounterGaDataColumnHeaders--; |
| 1588 } | 1603 } |
| 1589 | 1604 |
| 1590 buildUnnamed1004() { | 1605 buildUnnamed1021() { |
| 1591 var o = new core.List<api.GaDataColumnHeaders>(); | 1606 var o = new core.List<api.GaDataColumnHeaders>(); |
| 1592 o.add(buildGaDataColumnHeaders()); | 1607 o.add(buildGaDataColumnHeaders()); |
| 1593 o.add(buildGaDataColumnHeaders()); | 1608 o.add(buildGaDataColumnHeaders()); |
| 1594 return o; | 1609 return o; |
| 1595 } | 1610 } |
| 1596 | 1611 |
| 1597 checkUnnamed1004(core.List<api.GaDataColumnHeaders> o) { | 1612 checkUnnamed1021(core.List<api.GaDataColumnHeaders> o) { |
| 1598 unittest.expect(o, unittest.hasLength(2)); | 1613 unittest.expect(o, unittest.hasLength(2)); |
| 1599 checkGaDataColumnHeaders(o[0]); | 1614 checkGaDataColumnHeaders(o[0]); |
| 1600 checkGaDataColumnHeaders(o[1]); | 1615 checkGaDataColumnHeaders(o[1]); |
| 1601 } | 1616 } |
| 1602 | 1617 |
| 1603 core.int buildCounterGaDataDataTableCols = 0; | 1618 core.int buildCounterGaDataDataTableCols = 0; |
| 1604 buildGaDataDataTableCols() { | 1619 buildGaDataDataTableCols() { |
| 1605 var o = new api.GaDataDataTableCols(); | 1620 var o = new api.GaDataDataTableCols(); |
| 1606 buildCounterGaDataDataTableCols++; | 1621 buildCounterGaDataDataTableCols++; |
| 1607 if (buildCounterGaDataDataTableCols < 3) { | 1622 if (buildCounterGaDataDataTableCols < 3) { |
| 1608 o.id = "foo"; | 1623 o.id = "foo"; |
| 1609 o.label = "foo"; | 1624 o.label = "foo"; |
| 1610 o.type = "foo"; | 1625 o.type = "foo"; |
| 1611 } | 1626 } |
| 1612 buildCounterGaDataDataTableCols--; | 1627 buildCounterGaDataDataTableCols--; |
| 1613 return o; | 1628 return o; |
| 1614 } | 1629 } |
| 1615 | 1630 |
| 1616 checkGaDataDataTableCols(api.GaDataDataTableCols o) { | 1631 checkGaDataDataTableCols(api.GaDataDataTableCols o) { |
| 1617 buildCounterGaDataDataTableCols++; | 1632 buildCounterGaDataDataTableCols++; |
| 1618 if (buildCounterGaDataDataTableCols < 3) { | 1633 if (buildCounterGaDataDataTableCols < 3) { |
| 1619 unittest.expect(o.id, unittest.equals('foo')); | 1634 unittest.expect(o.id, unittest.equals('foo')); |
| 1620 unittest.expect(o.label, unittest.equals('foo')); | 1635 unittest.expect(o.label, unittest.equals('foo')); |
| 1621 unittest.expect(o.type, unittest.equals('foo')); | 1636 unittest.expect(o.type, unittest.equals('foo')); |
| 1622 } | 1637 } |
| 1623 buildCounterGaDataDataTableCols--; | 1638 buildCounterGaDataDataTableCols--; |
| 1624 } | 1639 } |
| 1625 | 1640 |
| 1626 buildUnnamed1005() { | 1641 buildUnnamed1022() { |
| 1627 var o = new core.List<api.GaDataDataTableCols>(); | 1642 var o = new core.List<api.GaDataDataTableCols>(); |
| 1628 o.add(buildGaDataDataTableCols()); | 1643 o.add(buildGaDataDataTableCols()); |
| 1629 o.add(buildGaDataDataTableCols()); | 1644 o.add(buildGaDataDataTableCols()); |
| 1630 return o; | 1645 return o; |
| 1631 } | 1646 } |
| 1632 | 1647 |
| 1633 checkUnnamed1005(core.List<api.GaDataDataTableCols> o) { | 1648 checkUnnamed1022(core.List<api.GaDataDataTableCols> o) { |
| 1634 unittest.expect(o, unittest.hasLength(2)); | 1649 unittest.expect(o, unittest.hasLength(2)); |
| 1635 checkGaDataDataTableCols(o[0]); | 1650 checkGaDataDataTableCols(o[0]); |
| 1636 checkGaDataDataTableCols(o[1]); | 1651 checkGaDataDataTableCols(o[1]); |
| 1637 } | 1652 } |
| 1638 | 1653 |
| 1639 core.int buildCounterGaDataDataTableRowsC = 0; | 1654 core.int buildCounterGaDataDataTableRowsC = 0; |
| 1640 buildGaDataDataTableRowsC() { | 1655 buildGaDataDataTableRowsC() { |
| 1641 var o = new api.GaDataDataTableRowsC(); | 1656 var o = new api.GaDataDataTableRowsC(); |
| 1642 buildCounterGaDataDataTableRowsC++; | 1657 buildCounterGaDataDataTableRowsC++; |
| 1643 if (buildCounterGaDataDataTableRowsC < 3) { | 1658 if (buildCounterGaDataDataTableRowsC < 3) { |
| 1644 o.v = "foo"; | 1659 o.v = "foo"; |
| 1645 } | 1660 } |
| 1646 buildCounterGaDataDataTableRowsC--; | 1661 buildCounterGaDataDataTableRowsC--; |
| 1647 return o; | 1662 return o; |
| 1648 } | 1663 } |
| 1649 | 1664 |
| 1650 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { | 1665 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { |
| 1651 buildCounterGaDataDataTableRowsC++; | 1666 buildCounterGaDataDataTableRowsC++; |
| 1652 if (buildCounterGaDataDataTableRowsC < 3) { | 1667 if (buildCounterGaDataDataTableRowsC < 3) { |
| 1653 unittest.expect(o.v, unittest.equals('foo')); | 1668 unittest.expect(o.v, unittest.equals('foo')); |
| 1654 } | 1669 } |
| 1655 buildCounterGaDataDataTableRowsC--; | 1670 buildCounterGaDataDataTableRowsC--; |
| 1656 } | 1671 } |
| 1657 | 1672 |
| 1658 buildUnnamed1006() { | 1673 buildUnnamed1023() { |
| 1659 var o = new core.List<api.GaDataDataTableRowsC>(); | 1674 var o = new core.List<api.GaDataDataTableRowsC>(); |
| 1660 o.add(buildGaDataDataTableRowsC()); | 1675 o.add(buildGaDataDataTableRowsC()); |
| 1661 o.add(buildGaDataDataTableRowsC()); | 1676 o.add(buildGaDataDataTableRowsC()); |
| 1662 return o; | 1677 return o; |
| 1663 } | 1678 } |
| 1664 | 1679 |
| 1665 checkUnnamed1006(core.List<api.GaDataDataTableRowsC> o) { | 1680 checkUnnamed1023(core.List<api.GaDataDataTableRowsC> o) { |
| 1666 unittest.expect(o, unittest.hasLength(2)); | 1681 unittest.expect(o, unittest.hasLength(2)); |
| 1667 checkGaDataDataTableRowsC(o[0]); | 1682 checkGaDataDataTableRowsC(o[0]); |
| 1668 checkGaDataDataTableRowsC(o[1]); | 1683 checkGaDataDataTableRowsC(o[1]); |
| 1669 } | 1684 } |
| 1670 | 1685 |
| 1671 core.int buildCounterGaDataDataTableRows = 0; | 1686 core.int buildCounterGaDataDataTableRows = 0; |
| 1672 buildGaDataDataTableRows() { | 1687 buildGaDataDataTableRows() { |
| 1673 var o = new api.GaDataDataTableRows(); | 1688 var o = new api.GaDataDataTableRows(); |
| 1674 buildCounterGaDataDataTableRows++; | 1689 buildCounterGaDataDataTableRows++; |
| 1675 if (buildCounterGaDataDataTableRows < 3) { | 1690 if (buildCounterGaDataDataTableRows < 3) { |
| 1676 o.c = buildUnnamed1006(); | 1691 o.c = buildUnnamed1023(); |
| 1677 } | 1692 } |
| 1678 buildCounterGaDataDataTableRows--; | 1693 buildCounterGaDataDataTableRows--; |
| 1679 return o; | 1694 return o; |
| 1680 } | 1695 } |
| 1681 | 1696 |
| 1682 checkGaDataDataTableRows(api.GaDataDataTableRows o) { | 1697 checkGaDataDataTableRows(api.GaDataDataTableRows o) { |
| 1683 buildCounterGaDataDataTableRows++; | 1698 buildCounterGaDataDataTableRows++; |
| 1684 if (buildCounterGaDataDataTableRows < 3) { | 1699 if (buildCounterGaDataDataTableRows < 3) { |
| 1685 checkUnnamed1006(o.c); | 1700 checkUnnamed1023(o.c); |
| 1686 } | 1701 } |
| 1687 buildCounterGaDataDataTableRows--; | 1702 buildCounterGaDataDataTableRows--; |
| 1688 } | 1703 } |
| 1689 | 1704 |
| 1690 buildUnnamed1007() { | 1705 buildUnnamed1024() { |
| 1691 var o = new core.List<api.GaDataDataTableRows>(); | 1706 var o = new core.List<api.GaDataDataTableRows>(); |
| 1692 o.add(buildGaDataDataTableRows()); | 1707 o.add(buildGaDataDataTableRows()); |
| 1693 o.add(buildGaDataDataTableRows()); | 1708 o.add(buildGaDataDataTableRows()); |
| 1694 return o; | 1709 return o; |
| 1695 } | 1710 } |
| 1696 | 1711 |
| 1697 checkUnnamed1007(core.List<api.GaDataDataTableRows> o) { | 1712 checkUnnamed1024(core.List<api.GaDataDataTableRows> o) { |
| 1698 unittest.expect(o, unittest.hasLength(2)); | 1713 unittest.expect(o, unittest.hasLength(2)); |
| 1699 checkGaDataDataTableRows(o[0]); | 1714 checkGaDataDataTableRows(o[0]); |
| 1700 checkGaDataDataTableRows(o[1]); | 1715 checkGaDataDataTableRows(o[1]); |
| 1701 } | 1716 } |
| 1702 | 1717 |
| 1703 core.int buildCounterGaDataDataTable = 0; | 1718 core.int buildCounterGaDataDataTable = 0; |
| 1704 buildGaDataDataTable() { | 1719 buildGaDataDataTable() { |
| 1705 var o = new api.GaDataDataTable(); | 1720 var o = new api.GaDataDataTable(); |
| 1706 buildCounterGaDataDataTable++; | 1721 buildCounterGaDataDataTable++; |
| 1707 if (buildCounterGaDataDataTable < 3) { | 1722 if (buildCounterGaDataDataTable < 3) { |
| 1708 o.cols = buildUnnamed1005(); | 1723 o.cols = buildUnnamed1022(); |
| 1709 o.rows = buildUnnamed1007(); | 1724 o.rows = buildUnnamed1024(); |
| 1710 } | 1725 } |
| 1711 buildCounterGaDataDataTable--; | 1726 buildCounterGaDataDataTable--; |
| 1712 return o; | 1727 return o; |
| 1713 } | 1728 } |
| 1714 | 1729 |
| 1715 checkGaDataDataTable(api.GaDataDataTable o) { | 1730 checkGaDataDataTable(api.GaDataDataTable o) { |
| 1716 buildCounterGaDataDataTable++; | 1731 buildCounterGaDataDataTable++; |
| 1717 if (buildCounterGaDataDataTable < 3) { | 1732 if (buildCounterGaDataDataTable < 3) { |
| 1718 checkUnnamed1005(o.cols); | 1733 checkUnnamed1022(o.cols); |
| 1719 checkUnnamed1007(o.rows); | 1734 checkUnnamed1024(o.rows); |
| 1720 } | 1735 } |
| 1721 buildCounterGaDataDataTable--; | 1736 buildCounterGaDataDataTable--; |
| 1722 } | 1737 } |
| 1723 | 1738 |
| 1724 core.int buildCounterGaDataProfileInfo = 0; | 1739 core.int buildCounterGaDataProfileInfo = 0; |
| 1725 buildGaDataProfileInfo() { | 1740 buildGaDataProfileInfo() { |
| 1726 var o = new api.GaDataProfileInfo(); | 1741 var o = new api.GaDataProfileInfo(); |
| 1727 buildCounterGaDataProfileInfo++; | 1742 buildCounterGaDataProfileInfo++; |
| 1728 if (buildCounterGaDataProfileInfo < 3) { | 1743 if (buildCounterGaDataProfileInfo < 3) { |
| 1729 o.accountId = "foo"; | 1744 o.accountId = "foo"; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1743 unittest.expect(o.accountId, unittest.equals('foo')); | 1758 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1744 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 1759 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 1745 unittest.expect(o.profileId, unittest.equals('foo')); | 1760 unittest.expect(o.profileId, unittest.equals('foo')); |
| 1746 unittest.expect(o.profileName, unittest.equals('foo')); | 1761 unittest.expect(o.profileName, unittest.equals('foo')); |
| 1747 unittest.expect(o.tableId, unittest.equals('foo')); | 1762 unittest.expect(o.tableId, unittest.equals('foo')); |
| 1748 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1763 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 1749 } | 1764 } |
| 1750 buildCounterGaDataProfileInfo--; | 1765 buildCounterGaDataProfileInfo--; |
| 1751 } | 1766 } |
| 1752 | 1767 |
| 1753 buildUnnamed1008() { | 1768 buildUnnamed1025() { |
| 1754 var o = new core.List<core.String>(); | 1769 var o = new core.List<core.String>(); |
| 1755 o.add("foo"); | 1770 o.add("foo"); |
| 1756 o.add("foo"); | 1771 o.add("foo"); |
| 1757 return o; | 1772 return o; |
| 1758 } | 1773 } |
| 1759 | 1774 |
| 1760 checkUnnamed1008(core.List<core.String> o) { | 1775 checkUnnamed1025(core.List<core.String> o) { |
| 1761 unittest.expect(o, unittest.hasLength(2)); | 1776 unittest.expect(o, unittest.hasLength(2)); |
| 1762 unittest.expect(o[0], unittest.equals('foo')); | 1777 unittest.expect(o[0], unittest.equals('foo')); |
| 1763 unittest.expect(o[1], unittest.equals('foo')); | 1778 unittest.expect(o[1], unittest.equals('foo')); |
| 1764 } | 1779 } |
| 1765 | 1780 |
| 1766 buildUnnamed1009() { | 1781 buildUnnamed1026() { |
| 1767 var o = new core.List<core.String>(); | 1782 var o = new core.List<core.String>(); |
| 1768 o.add("foo"); | 1783 o.add("foo"); |
| 1769 o.add("foo"); | 1784 o.add("foo"); |
| 1770 return o; | 1785 return o; |
| 1771 } | 1786 } |
| 1772 | 1787 |
| 1773 checkUnnamed1009(core.List<core.String> o) { | 1788 checkUnnamed1026(core.List<core.String> o) { |
| 1774 unittest.expect(o, unittest.hasLength(2)); | 1789 unittest.expect(o, unittest.hasLength(2)); |
| 1775 unittest.expect(o[0], unittest.equals('foo')); | 1790 unittest.expect(o[0], unittest.equals('foo')); |
| 1776 unittest.expect(o[1], unittest.equals('foo')); | 1791 unittest.expect(o[1], unittest.equals('foo')); |
| 1777 } | 1792 } |
| 1778 | 1793 |
| 1779 core.int buildCounterGaDataQuery = 0; | 1794 core.int buildCounterGaDataQuery = 0; |
| 1780 buildGaDataQuery() { | 1795 buildGaDataQuery() { |
| 1781 var o = new api.GaDataQuery(); | 1796 var o = new api.GaDataQuery(); |
| 1782 buildCounterGaDataQuery++; | 1797 buildCounterGaDataQuery++; |
| 1783 if (buildCounterGaDataQuery < 3) { | 1798 if (buildCounterGaDataQuery < 3) { |
| 1784 o.dimensions = "foo"; | 1799 o.dimensions = "foo"; |
| 1785 o.end_date = "foo"; | 1800 o.end_date = "foo"; |
| 1786 o.filters = "foo"; | 1801 o.filters = "foo"; |
| 1787 o.ids = "foo"; | 1802 o.ids = "foo"; |
| 1788 o.max_results = 42; | 1803 o.max_results = 42; |
| 1789 o.metrics = buildUnnamed1008(); | 1804 o.metrics = buildUnnamed1025(); |
| 1790 o.samplingLevel = "foo"; | 1805 o.samplingLevel = "foo"; |
| 1791 o.segment = "foo"; | 1806 o.segment = "foo"; |
| 1792 o.sort = buildUnnamed1009(); | 1807 o.sort = buildUnnamed1026(); |
| 1793 o.start_date = "foo"; | 1808 o.start_date = "foo"; |
| 1794 o.start_index = 42; | 1809 o.start_index = 42; |
| 1795 } | 1810 } |
| 1796 buildCounterGaDataQuery--; | 1811 buildCounterGaDataQuery--; |
| 1797 return o; | 1812 return o; |
| 1798 } | 1813 } |
| 1799 | 1814 |
| 1800 checkGaDataQuery(api.GaDataQuery o) { | 1815 checkGaDataQuery(api.GaDataQuery o) { |
| 1801 buildCounterGaDataQuery++; | 1816 buildCounterGaDataQuery++; |
| 1802 if (buildCounterGaDataQuery < 3) { | 1817 if (buildCounterGaDataQuery < 3) { |
| 1803 unittest.expect(o.dimensions, unittest.equals('foo')); | 1818 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 1804 unittest.expect(o.end_date, unittest.equals('foo')); | 1819 unittest.expect(o.end_date, unittest.equals('foo')); |
| 1805 unittest.expect(o.filters, unittest.equals('foo')); | 1820 unittest.expect(o.filters, unittest.equals('foo')); |
| 1806 unittest.expect(o.ids, unittest.equals('foo')); | 1821 unittest.expect(o.ids, unittest.equals('foo')); |
| 1807 unittest.expect(o.max_results, unittest.equals(42)); | 1822 unittest.expect(o.max_results, unittest.equals(42)); |
| 1808 checkUnnamed1008(o.metrics); | 1823 checkUnnamed1025(o.metrics); |
| 1809 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 1824 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
| 1810 unittest.expect(o.segment, unittest.equals('foo')); | 1825 unittest.expect(o.segment, unittest.equals('foo')); |
| 1811 checkUnnamed1009(o.sort); | 1826 checkUnnamed1026(o.sort); |
| 1812 unittest.expect(o.start_date, unittest.equals('foo')); | 1827 unittest.expect(o.start_date, unittest.equals('foo')); |
| 1813 unittest.expect(o.start_index, unittest.equals(42)); | 1828 unittest.expect(o.start_index, unittest.equals(42)); |
| 1814 } | 1829 } |
| 1815 buildCounterGaDataQuery--; | 1830 buildCounterGaDataQuery--; |
| 1816 } | 1831 } |
| 1817 | 1832 |
| 1818 buildUnnamed1010() { | 1833 buildUnnamed1027() { |
| 1819 var o = new core.List<core.String>(); | 1834 var o = new core.List<core.String>(); |
| 1820 o.add("foo"); | 1835 o.add("foo"); |
| 1821 o.add("foo"); | 1836 o.add("foo"); |
| 1822 return o; | 1837 return o; |
| 1823 } | 1838 } |
| 1824 | 1839 |
| 1825 checkUnnamed1010(core.List<core.String> o) { | 1840 checkUnnamed1027(core.List<core.String> o) { |
| 1826 unittest.expect(o, unittest.hasLength(2)); | 1841 unittest.expect(o, unittest.hasLength(2)); |
| 1827 unittest.expect(o[0], unittest.equals('foo')); | 1842 unittest.expect(o[0], unittest.equals('foo')); |
| 1828 unittest.expect(o[1], unittest.equals('foo')); | 1843 unittest.expect(o[1], unittest.equals('foo')); |
| 1829 } | 1844 } |
| 1830 | 1845 |
| 1831 buildUnnamed1011() { | 1846 buildUnnamed1028() { |
| 1832 var o = new core.List<core.List<core.String>>(); | 1847 var o = new core.List<core.List<core.String>>(); |
| 1833 o.add(buildUnnamed1010()); | 1848 o.add(buildUnnamed1027()); |
| 1834 o.add(buildUnnamed1010()); | 1849 o.add(buildUnnamed1027()); |
| 1835 return o; | 1850 return o; |
| 1836 } | 1851 } |
| 1837 | 1852 |
| 1838 checkUnnamed1011(core.List<core.List<core.String>> o) { | 1853 checkUnnamed1028(core.List<core.List<core.String>> o) { |
| 1839 unittest.expect(o, unittest.hasLength(2)); | 1854 unittest.expect(o, unittest.hasLength(2)); |
| 1840 checkUnnamed1010(o[0]); | 1855 checkUnnamed1027(o[0]); |
| 1841 checkUnnamed1010(o[1]); | 1856 checkUnnamed1027(o[1]); |
| 1842 } | 1857 } |
| 1843 | 1858 |
| 1844 buildUnnamed1012() { | 1859 buildUnnamed1029() { |
| 1845 var o = new core.Map<core.String, core.String>(); | 1860 var o = new core.Map<core.String, core.String>(); |
| 1846 o["x"] = "foo"; | 1861 o["x"] = "foo"; |
| 1847 o["y"] = "foo"; | 1862 o["y"] = "foo"; |
| 1848 return o; | 1863 return o; |
| 1849 } | 1864 } |
| 1850 | 1865 |
| 1851 checkUnnamed1012(core.Map<core.String, core.String> o) { | 1866 checkUnnamed1029(core.Map<core.String, core.String> o) { |
| 1852 unittest.expect(o, unittest.hasLength(2)); | 1867 unittest.expect(o, unittest.hasLength(2)); |
| 1853 unittest.expect(o["x"], unittest.equals('foo')); | 1868 unittest.expect(o["x"], unittest.equals('foo')); |
| 1854 unittest.expect(o["y"], unittest.equals('foo')); | 1869 unittest.expect(o["y"], unittest.equals('foo')); |
| 1855 } | 1870 } |
| 1856 | 1871 |
| 1857 core.int buildCounterGaData = 0; | 1872 core.int buildCounterGaData = 0; |
| 1858 buildGaData() { | 1873 buildGaData() { |
| 1859 var o = new api.GaData(); | 1874 var o = new api.GaData(); |
| 1860 buildCounterGaData++; | 1875 buildCounterGaData++; |
| 1861 if (buildCounterGaData < 3) { | 1876 if (buildCounterGaData < 3) { |
| 1862 o.columnHeaders = buildUnnamed1004(); | 1877 o.columnHeaders = buildUnnamed1021(); |
| 1863 o.containsSampledData = true; | 1878 o.containsSampledData = true; |
| 1864 o.dataLastRefreshed = "foo"; | 1879 o.dataLastRefreshed = "foo"; |
| 1865 o.dataTable = buildGaDataDataTable(); | 1880 o.dataTable = buildGaDataDataTable(); |
| 1866 o.id = "foo"; | 1881 o.id = "foo"; |
| 1867 o.itemsPerPage = 42; | 1882 o.itemsPerPage = 42; |
| 1868 o.kind = "foo"; | 1883 o.kind = "foo"; |
| 1869 o.nextLink = "foo"; | 1884 o.nextLink = "foo"; |
| 1870 o.previousLink = "foo"; | 1885 o.previousLink = "foo"; |
| 1871 o.profileInfo = buildGaDataProfileInfo(); | 1886 o.profileInfo = buildGaDataProfileInfo(); |
| 1872 o.query = buildGaDataQuery(); | 1887 o.query = buildGaDataQuery(); |
| 1873 o.rows = buildUnnamed1011(); | 1888 o.rows = buildUnnamed1028(); |
| 1874 o.sampleSize = "foo"; | 1889 o.sampleSize = "foo"; |
| 1875 o.sampleSpace = "foo"; | 1890 o.sampleSpace = "foo"; |
| 1876 o.selfLink = "foo"; | 1891 o.selfLink = "foo"; |
| 1877 o.totalResults = 42; | 1892 o.totalResults = 42; |
| 1878 o.totalsForAllResults = buildUnnamed1012(); | 1893 o.totalsForAllResults = buildUnnamed1029(); |
| 1879 } | 1894 } |
| 1880 buildCounterGaData--; | 1895 buildCounterGaData--; |
| 1881 return o; | 1896 return o; |
| 1882 } | 1897 } |
| 1883 | 1898 |
| 1884 checkGaData(api.GaData o) { | 1899 checkGaData(api.GaData o) { |
| 1885 buildCounterGaData++; | 1900 buildCounterGaData++; |
| 1886 if (buildCounterGaData < 3) { | 1901 if (buildCounterGaData < 3) { |
| 1887 checkUnnamed1004(o.columnHeaders); | 1902 checkUnnamed1021(o.columnHeaders); |
| 1888 unittest.expect(o.containsSampledData, unittest.isTrue); | 1903 unittest.expect(o.containsSampledData, unittest.isTrue); |
| 1889 unittest.expect(o.dataLastRefreshed, unittest.equals('foo')); | 1904 unittest.expect(o.dataLastRefreshed, unittest.equals('foo')); |
| 1890 checkGaDataDataTable(o.dataTable); | 1905 checkGaDataDataTable(o.dataTable); |
| 1891 unittest.expect(o.id, unittest.equals('foo')); | 1906 unittest.expect(o.id, unittest.equals('foo')); |
| 1892 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1907 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1893 unittest.expect(o.kind, unittest.equals('foo')); | 1908 unittest.expect(o.kind, unittest.equals('foo')); |
| 1894 unittest.expect(o.nextLink, unittest.equals('foo')); | 1909 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1895 unittest.expect(o.previousLink, unittest.equals('foo')); | 1910 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1896 checkGaDataProfileInfo(o.profileInfo); | 1911 checkGaDataProfileInfo(o.profileInfo); |
| 1897 checkGaDataQuery(o.query); | 1912 checkGaDataQuery(o.query); |
| 1898 checkUnnamed1011(o.rows); | 1913 checkUnnamed1028(o.rows); |
| 1899 unittest.expect(o.sampleSize, unittest.equals('foo')); | 1914 unittest.expect(o.sampleSize, unittest.equals('foo')); |
| 1900 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 1915 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
| 1901 unittest.expect(o.selfLink, unittest.equals('foo')); | 1916 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1902 unittest.expect(o.totalResults, unittest.equals(42)); | 1917 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1903 checkUnnamed1012(o.totalsForAllResults); | 1918 checkUnnamed1029(o.totalsForAllResults); |
| 1904 } | 1919 } |
| 1905 buildCounterGaData--; | 1920 buildCounterGaData--; |
| 1906 } | 1921 } |
| 1907 | 1922 |
| 1908 core.int buildCounterGoalEventDetailsEventConditions = 0; | 1923 core.int buildCounterGoalEventDetailsEventConditions = 0; |
| 1909 buildGoalEventDetailsEventConditions() { | 1924 buildGoalEventDetailsEventConditions() { |
| 1910 var o = new api.GoalEventDetailsEventConditions(); | 1925 var o = new api.GoalEventDetailsEventConditions(); |
| 1911 buildCounterGoalEventDetailsEventConditions++; | 1926 buildCounterGoalEventDetailsEventConditions++; |
| 1912 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1927 if (buildCounterGoalEventDetailsEventConditions < 3) { |
| 1913 o.comparisonType = "foo"; | 1928 o.comparisonType = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 1925 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1940 if (buildCounterGoalEventDetailsEventConditions < 3) { |
| 1926 unittest.expect(o.comparisonType, unittest.equals('foo')); | 1941 unittest.expect(o.comparisonType, unittest.equals('foo')); |
| 1927 unittest.expect(o.comparisonValue, unittest.equals('foo')); | 1942 unittest.expect(o.comparisonValue, unittest.equals('foo')); |
| 1928 unittest.expect(o.expression, unittest.equals('foo')); | 1943 unittest.expect(o.expression, unittest.equals('foo')); |
| 1929 unittest.expect(o.matchType, unittest.equals('foo')); | 1944 unittest.expect(o.matchType, unittest.equals('foo')); |
| 1930 unittest.expect(o.type, unittest.equals('foo')); | 1945 unittest.expect(o.type, unittest.equals('foo')); |
| 1931 } | 1946 } |
| 1932 buildCounterGoalEventDetailsEventConditions--; | 1947 buildCounterGoalEventDetailsEventConditions--; |
| 1933 } | 1948 } |
| 1934 | 1949 |
| 1935 buildUnnamed1013() { | 1950 buildUnnamed1030() { |
| 1936 var o = new core.List<api.GoalEventDetailsEventConditions>(); | 1951 var o = new core.List<api.GoalEventDetailsEventConditions>(); |
| 1937 o.add(buildGoalEventDetailsEventConditions()); | 1952 o.add(buildGoalEventDetailsEventConditions()); |
| 1938 o.add(buildGoalEventDetailsEventConditions()); | 1953 o.add(buildGoalEventDetailsEventConditions()); |
| 1939 return o; | 1954 return o; |
| 1940 } | 1955 } |
| 1941 | 1956 |
| 1942 checkUnnamed1013(core.List<api.GoalEventDetailsEventConditions> o) { | 1957 checkUnnamed1030(core.List<api.GoalEventDetailsEventConditions> o) { |
| 1943 unittest.expect(o, unittest.hasLength(2)); | 1958 unittest.expect(o, unittest.hasLength(2)); |
| 1944 checkGoalEventDetailsEventConditions(o[0]); | 1959 checkGoalEventDetailsEventConditions(o[0]); |
| 1945 checkGoalEventDetailsEventConditions(o[1]); | 1960 checkGoalEventDetailsEventConditions(o[1]); |
| 1946 } | 1961 } |
| 1947 | 1962 |
| 1948 core.int buildCounterGoalEventDetails = 0; | 1963 core.int buildCounterGoalEventDetails = 0; |
| 1949 buildGoalEventDetails() { | 1964 buildGoalEventDetails() { |
| 1950 var o = new api.GoalEventDetails(); | 1965 var o = new api.GoalEventDetails(); |
| 1951 buildCounterGoalEventDetails++; | 1966 buildCounterGoalEventDetails++; |
| 1952 if (buildCounterGoalEventDetails < 3) { | 1967 if (buildCounterGoalEventDetails < 3) { |
| 1953 o.eventConditions = buildUnnamed1013(); | 1968 o.eventConditions = buildUnnamed1030(); |
| 1954 o.useEventValue = true; | 1969 o.useEventValue = true; |
| 1955 } | 1970 } |
| 1956 buildCounterGoalEventDetails--; | 1971 buildCounterGoalEventDetails--; |
| 1957 return o; | 1972 return o; |
| 1958 } | 1973 } |
| 1959 | 1974 |
| 1960 checkGoalEventDetails(api.GoalEventDetails o) { | 1975 checkGoalEventDetails(api.GoalEventDetails o) { |
| 1961 buildCounterGoalEventDetails++; | 1976 buildCounterGoalEventDetails++; |
| 1962 if (buildCounterGoalEventDetails < 3) { | 1977 if (buildCounterGoalEventDetails < 3) { |
| 1963 checkUnnamed1013(o.eventConditions); | 1978 checkUnnamed1030(o.eventConditions); |
| 1964 unittest.expect(o.useEventValue, unittest.isTrue); | 1979 unittest.expect(o.useEventValue, unittest.isTrue); |
| 1965 } | 1980 } |
| 1966 buildCounterGoalEventDetails--; | 1981 buildCounterGoalEventDetails--; |
| 1967 } | 1982 } |
| 1968 | 1983 |
| 1969 core.int buildCounterGoalParentLink = 0; | 1984 core.int buildCounterGoalParentLink = 0; |
| 1970 buildGoalParentLink() { | 1985 buildGoalParentLink() { |
| 1971 var o = new api.GoalParentLink(); | 1986 var o = new api.GoalParentLink(); |
| 1972 buildCounterGoalParentLink++; | 1987 buildCounterGoalParentLink++; |
| 1973 if (buildCounterGoalParentLink < 3) { | 1988 if (buildCounterGoalParentLink < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 2003 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { | 2018 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { |
| 2004 buildCounterGoalUrlDestinationDetailsSteps++; | 2019 buildCounterGoalUrlDestinationDetailsSteps++; |
| 2005 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { | 2020 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { |
| 2006 unittest.expect(o.name, unittest.equals('foo')); | 2021 unittest.expect(o.name, unittest.equals('foo')); |
| 2007 unittest.expect(o.number, unittest.equals(42)); | 2022 unittest.expect(o.number, unittest.equals(42)); |
| 2008 unittest.expect(o.url, unittest.equals('foo')); | 2023 unittest.expect(o.url, unittest.equals('foo')); |
| 2009 } | 2024 } |
| 2010 buildCounterGoalUrlDestinationDetailsSteps--; | 2025 buildCounterGoalUrlDestinationDetailsSteps--; |
| 2011 } | 2026 } |
| 2012 | 2027 |
| 2013 buildUnnamed1014() { | 2028 buildUnnamed1031() { |
| 2014 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); | 2029 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); |
| 2015 o.add(buildGoalUrlDestinationDetailsSteps()); | 2030 o.add(buildGoalUrlDestinationDetailsSteps()); |
| 2016 o.add(buildGoalUrlDestinationDetailsSteps()); | 2031 o.add(buildGoalUrlDestinationDetailsSteps()); |
| 2017 return o; | 2032 return o; |
| 2018 } | 2033 } |
| 2019 | 2034 |
| 2020 checkUnnamed1014(core.List<api.GoalUrlDestinationDetailsSteps> o) { | 2035 checkUnnamed1031(core.List<api.GoalUrlDestinationDetailsSteps> o) { |
| 2021 unittest.expect(o, unittest.hasLength(2)); | 2036 unittest.expect(o, unittest.hasLength(2)); |
| 2022 checkGoalUrlDestinationDetailsSteps(o[0]); | 2037 checkGoalUrlDestinationDetailsSteps(o[0]); |
| 2023 checkGoalUrlDestinationDetailsSteps(o[1]); | 2038 checkGoalUrlDestinationDetailsSteps(o[1]); |
| 2024 } | 2039 } |
| 2025 | 2040 |
| 2026 core.int buildCounterGoalUrlDestinationDetails = 0; | 2041 core.int buildCounterGoalUrlDestinationDetails = 0; |
| 2027 buildGoalUrlDestinationDetails() { | 2042 buildGoalUrlDestinationDetails() { |
| 2028 var o = new api.GoalUrlDestinationDetails(); | 2043 var o = new api.GoalUrlDestinationDetails(); |
| 2029 buildCounterGoalUrlDestinationDetails++; | 2044 buildCounterGoalUrlDestinationDetails++; |
| 2030 if (buildCounterGoalUrlDestinationDetails < 3) { | 2045 if (buildCounterGoalUrlDestinationDetails < 3) { |
| 2031 o.caseSensitive = true; | 2046 o.caseSensitive = true; |
| 2032 o.firstStepRequired = true; | 2047 o.firstStepRequired = true; |
| 2033 o.matchType = "foo"; | 2048 o.matchType = "foo"; |
| 2034 o.steps = buildUnnamed1014(); | 2049 o.steps = buildUnnamed1031(); |
| 2035 o.url = "foo"; | 2050 o.url = "foo"; |
| 2036 } | 2051 } |
| 2037 buildCounterGoalUrlDestinationDetails--; | 2052 buildCounterGoalUrlDestinationDetails--; |
| 2038 return o; | 2053 return o; |
| 2039 } | 2054 } |
| 2040 | 2055 |
| 2041 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { | 2056 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { |
| 2042 buildCounterGoalUrlDestinationDetails++; | 2057 buildCounterGoalUrlDestinationDetails++; |
| 2043 if (buildCounterGoalUrlDestinationDetails < 3) { | 2058 if (buildCounterGoalUrlDestinationDetails < 3) { |
| 2044 unittest.expect(o.caseSensitive, unittest.isTrue); | 2059 unittest.expect(o.caseSensitive, unittest.isTrue); |
| 2045 unittest.expect(o.firstStepRequired, unittest.isTrue); | 2060 unittest.expect(o.firstStepRequired, unittest.isTrue); |
| 2046 unittest.expect(o.matchType, unittest.equals('foo')); | 2061 unittest.expect(o.matchType, unittest.equals('foo')); |
| 2047 checkUnnamed1014(o.steps); | 2062 checkUnnamed1031(o.steps); |
| 2048 unittest.expect(o.url, unittest.equals('foo')); | 2063 unittest.expect(o.url, unittest.equals('foo')); |
| 2049 } | 2064 } |
| 2050 buildCounterGoalUrlDestinationDetails--; | 2065 buildCounterGoalUrlDestinationDetails--; |
| 2051 } | 2066 } |
| 2052 | 2067 |
| 2053 core.int buildCounterGoalVisitNumPagesDetails = 0; | 2068 core.int buildCounterGoalVisitNumPagesDetails = 0; |
| 2054 buildGoalVisitNumPagesDetails() { | 2069 buildGoalVisitNumPagesDetails() { |
| 2055 var o = new api.GoalVisitNumPagesDetails(); | 2070 var o = new api.GoalVisitNumPagesDetails(); |
| 2056 buildCounterGoalVisitNumPagesDetails++; | 2071 buildCounterGoalVisitNumPagesDetails++; |
| 2057 if (buildCounterGoalVisitNumPagesDetails < 3) { | 2072 if (buildCounterGoalVisitNumPagesDetails < 3) { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2138 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2153 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2139 checkGoalUrlDestinationDetails(o.urlDestinationDetails); | 2154 checkGoalUrlDestinationDetails(o.urlDestinationDetails); |
| 2140 unittest.expect(o.value, unittest.equals(42.0)); | 2155 unittest.expect(o.value, unittest.equals(42.0)); |
| 2141 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); | 2156 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); |
| 2142 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); | 2157 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); |
| 2143 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2158 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2144 } | 2159 } |
| 2145 buildCounterGoal--; | 2160 buildCounterGoal--; |
| 2146 } | 2161 } |
| 2147 | 2162 |
| 2148 buildUnnamed1015() { | 2163 buildUnnamed1032() { |
| 2149 var o = new core.List<api.Goal>(); | 2164 var o = new core.List<api.Goal>(); |
| 2150 o.add(buildGoal()); | 2165 o.add(buildGoal()); |
| 2151 o.add(buildGoal()); | 2166 o.add(buildGoal()); |
| 2152 return o; | 2167 return o; |
| 2153 } | 2168 } |
| 2154 | 2169 |
| 2155 checkUnnamed1015(core.List<api.Goal> o) { | 2170 checkUnnamed1032(core.List<api.Goal> o) { |
| 2156 unittest.expect(o, unittest.hasLength(2)); | 2171 unittest.expect(o, unittest.hasLength(2)); |
| 2157 checkGoal(o[0]); | 2172 checkGoal(o[0]); |
| 2158 checkGoal(o[1]); | 2173 checkGoal(o[1]); |
| 2159 } | 2174 } |
| 2160 | 2175 |
| 2161 core.int buildCounterGoals = 0; | 2176 core.int buildCounterGoals = 0; |
| 2162 buildGoals() { | 2177 buildGoals() { |
| 2163 var o = new api.Goals(); | 2178 var o = new api.Goals(); |
| 2164 buildCounterGoals++; | 2179 buildCounterGoals++; |
| 2165 if (buildCounterGoals < 3) { | 2180 if (buildCounterGoals < 3) { |
| 2166 o.items = buildUnnamed1015(); | 2181 o.items = buildUnnamed1032(); |
| 2167 o.itemsPerPage = 42; | 2182 o.itemsPerPage = 42; |
| 2168 o.kind = "foo"; | 2183 o.kind = "foo"; |
| 2169 o.nextLink = "foo"; | 2184 o.nextLink = "foo"; |
| 2170 o.previousLink = "foo"; | 2185 o.previousLink = "foo"; |
| 2171 o.startIndex = 42; | 2186 o.startIndex = 42; |
| 2172 o.totalResults = 42; | 2187 o.totalResults = 42; |
| 2173 o.username = "foo"; | 2188 o.username = "foo"; |
| 2174 } | 2189 } |
| 2175 buildCounterGoals--; | 2190 buildCounterGoals--; |
| 2176 return o; | 2191 return o; |
| 2177 } | 2192 } |
| 2178 | 2193 |
| 2179 checkGoals(api.Goals o) { | 2194 checkGoals(api.Goals o) { |
| 2180 buildCounterGoals++; | 2195 buildCounterGoals++; |
| 2181 if (buildCounterGoals < 3) { | 2196 if (buildCounterGoals < 3) { |
| 2182 checkUnnamed1015(o.items); | 2197 checkUnnamed1032(o.items); |
| 2183 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2198 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2184 unittest.expect(o.kind, unittest.equals('foo')); | 2199 unittest.expect(o.kind, unittest.equals('foo')); |
| 2185 unittest.expect(o.nextLink, unittest.equals('foo')); | 2200 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2186 unittest.expect(o.previousLink, unittest.equals('foo')); | 2201 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2187 unittest.expect(o.startIndex, unittest.equals(42)); | 2202 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2188 unittest.expect(o.totalResults, unittest.equals(42)); | 2203 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2189 unittest.expect(o.username, unittest.equals('foo')); | 2204 unittest.expect(o.username, unittest.equals('foo')); |
| 2190 } | 2205 } |
| 2191 buildCounterGoals--; | 2206 buildCounterGoals--; |
| 2192 } | 2207 } |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2271 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { | 2286 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { |
| 2272 buildCounterMcfDataColumnHeaders++; | 2287 buildCounterMcfDataColumnHeaders++; |
| 2273 if (buildCounterMcfDataColumnHeaders < 3) { | 2288 if (buildCounterMcfDataColumnHeaders < 3) { |
| 2274 unittest.expect(o.columnType, unittest.equals('foo')); | 2289 unittest.expect(o.columnType, unittest.equals('foo')); |
| 2275 unittest.expect(o.dataType, unittest.equals('foo')); | 2290 unittest.expect(o.dataType, unittest.equals('foo')); |
| 2276 unittest.expect(o.name, unittest.equals('foo')); | 2291 unittest.expect(o.name, unittest.equals('foo')); |
| 2277 } | 2292 } |
| 2278 buildCounterMcfDataColumnHeaders--; | 2293 buildCounterMcfDataColumnHeaders--; |
| 2279 } | 2294 } |
| 2280 | 2295 |
| 2281 buildUnnamed1016() { | 2296 buildUnnamed1033() { |
| 2282 var o = new core.List<api.McfDataColumnHeaders>(); | 2297 var o = new core.List<api.McfDataColumnHeaders>(); |
| 2283 o.add(buildMcfDataColumnHeaders()); | 2298 o.add(buildMcfDataColumnHeaders()); |
| 2284 o.add(buildMcfDataColumnHeaders()); | 2299 o.add(buildMcfDataColumnHeaders()); |
| 2285 return o; | 2300 return o; |
| 2286 } | 2301 } |
| 2287 | 2302 |
| 2288 checkUnnamed1016(core.List<api.McfDataColumnHeaders> o) { | 2303 checkUnnamed1033(core.List<api.McfDataColumnHeaders> o) { |
| 2289 unittest.expect(o, unittest.hasLength(2)); | 2304 unittest.expect(o, unittest.hasLength(2)); |
| 2290 checkMcfDataColumnHeaders(o[0]); | 2305 checkMcfDataColumnHeaders(o[0]); |
| 2291 checkMcfDataColumnHeaders(o[1]); | 2306 checkMcfDataColumnHeaders(o[1]); |
| 2292 } | 2307 } |
| 2293 | 2308 |
| 2294 core.int buildCounterMcfDataProfileInfo = 0; | 2309 core.int buildCounterMcfDataProfileInfo = 0; |
| 2295 buildMcfDataProfileInfo() { | 2310 buildMcfDataProfileInfo() { |
| 2296 var o = new api.McfDataProfileInfo(); | 2311 var o = new api.McfDataProfileInfo(); |
| 2297 buildCounterMcfDataProfileInfo++; | 2312 buildCounterMcfDataProfileInfo++; |
| 2298 if (buildCounterMcfDataProfileInfo < 3) { | 2313 if (buildCounterMcfDataProfileInfo < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2313 unittest.expect(o.accountId, unittest.equals('foo')); | 2328 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2314 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2329 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 2315 unittest.expect(o.profileId, unittest.equals('foo')); | 2330 unittest.expect(o.profileId, unittest.equals('foo')); |
| 2316 unittest.expect(o.profileName, unittest.equals('foo')); | 2331 unittest.expect(o.profileName, unittest.equals('foo')); |
| 2317 unittest.expect(o.tableId, unittest.equals('foo')); | 2332 unittest.expect(o.tableId, unittest.equals('foo')); |
| 2318 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2333 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2319 } | 2334 } |
| 2320 buildCounterMcfDataProfileInfo--; | 2335 buildCounterMcfDataProfileInfo--; |
| 2321 } | 2336 } |
| 2322 | 2337 |
| 2323 buildUnnamed1017() { | 2338 buildUnnamed1034() { |
| 2324 var o = new core.List<core.String>(); | 2339 var o = new core.List<core.String>(); |
| 2325 o.add("foo"); | 2340 o.add("foo"); |
| 2326 o.add("foo"); | 2341 o.add("foo"); |
| 2327 return o; | 2342 return o; |
| 2328 } | 2343 } |
| 2329 | 2344 |
| 2330 checkUnnamed1017(core.List<core.String> o) { | 2345 checkUnnamed1034(core.List<core.String> o) { |
| 2331 unittest.expect(o, unittest.hasLength(2)); | 2346 unittest.expect(o, unittest.hasLength(2)); |
| 2332 unittest.expect(o[0], unittest.equals('foo')); | 2347 unittest.expect(o[0], unittest.equals('foo')); |
| 2333 unittest.expect(o[1], unittest.equals('foo')); | 2348 unittest.expect(o[1], unittest.equals('foo')); |
| 2334 } | 2349 } |
| 2335 | 2350 |
| 2336 buildUnnamed1018() { | 2351 buildUnnamed1035() { |
| 2337 var o = new core.List<core.String>(); | 2352 var o = new core.List<core.String>(); |
| 2338 o.add("foo"); | 2353 o.add("foo"); |
| 2339 o.add("foo"); | 2354 o.add("foo"); |
| 2340 return o; | 2355 return o; |
| 2341 } | 2356 } |
| 2342 | 2357 |
| 2343 checkUnnamed1018(core.List<core.String> o) { | 2358 checkUnnamed1035(core.List<core.String> o) { |
| 2344 unittest.expect(o, unittest.hasLength(2)); | 2359 unittest.expect(o, unittest.hasLength(2)); |
| 2345 unittest.expect(o[0], unittest.equals('foo')); | 2360 unittest.expect(o[0], unittest.equals('foo')); |
| 2346 unittest.expect(o[1], unittest.equals('foo')); | 2361 unittest.expect(o[1], unittest.equals('foo')); |
| 2347 } | 2362 } |
| 2348 | 2363 |
| 2349 core.int buildCounterMcfDataQuery = 0; | 2364 core.int buildCounterMcfDataQuery = 0; |
| 2350 buildMcfDataQuery() { | 2365 buildMcfDataQuery() { |
| 2351 var o = new api.McfDataQuery(); | 2366 var o = new api.McfDataQuery(); |
| 2352 buildCounterMcfDataQuery++; | 2367 buildCounterMcfDataQuery++; |
| 2353 if (buildCounterMcfDataQuery < 3) { | 2368 if (buildCounterMcfDataQuery < 3) { |
| 2354 o.dimensions = "foo"; | 2369 o.dimensions = "foo"; |
| 2355 o.end_date = "foo"; | 2370 o.end_date = "foo"; |
| 2356 o.filters = "foo"; | 2371 o.filters = "foo"; |
| 2357 o.ids = "foo"; | 2372 o.ids = "foo"; |
| 2358 o.max_results = 42; | 2373 o.max_results = 42; |
| 2359 o.metrics = buildUnnamed1017(); | 2374 o.metrics = buildUnnamed1034(); |
| 2360 o.samplingLevel = "foo"; | 2375 o.samplingLevel = "foo"; |
| 2361 o.segment = "foo"; | 2376 o.segment = "foo"; |
| 2362 o.sort = buildUnnamed1018(); | 2377 o.sort = buildUnnamed1035(); |
| 2363 o.start_date = "foo"; | 2378 o.start_date = "foo"; |
| 2364 o.start_index = 42; | 2379 o.start_index = 42; |
| 2365 } | 2380 } |
| 2366 buildCounterMcfDataQuery--; | 2381 buildCounterMcfDataQuery--; |
| 2367 return o; | 2382 return o; |
| 2368 } | 2383 } |
| 2369 | 2384 |
| 2370 checkMcfDataQuery(api.McfDataQuery o) { | 2385 checkMcfDataQuery(api.McfDataQuery o) { |
| 2371 buildCounterMcfDataQuery++; | 2386 buildCounterMcfDataQuery++; |
| 2372 if (buildCounterMcfDataQuery < 3) { | 2387 if (buildCounterMcfDataQuery < 3) { |
| 2373 unittest.expect(o.dimensions, unittest.equals('foo')); | 2388 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 2374 unittest.expect(o.end_date, unittest.equals('foo')); | 2389 unittest.expect(o.end_date, unittest.equals('foo')); |
| 2375 unittest.expect(o.filters, unittest.equals('foo')); | 2390 unittest.expect(o.filters, unittest.equals('foo')); |
| 2376 unittest.expect(o.ids, unittest.equals('foo')); | 2391 unittest.expect(o.ids, unittest.equals('foo')); |
| 2377 unittest.expect(o.max_results, unittest.equals(42)); | 2392 unittest.expect(o.max_results, unittest.equals(42)); |
| 2378 checkUnnamed1017(o.metrics); | 2393 checkUnnamed1034(o.metrics); |
| 2379 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 2394 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
| 2380 unittest.expect(o.segment, unittest.equals('foo')); | 2395 unittest.expect(o.segment, unittest.equals('foo')); |
| 2381 checkUnnamed1018(o.sort); | 2396 checkUnnamed1035(o.sort); |
| 2382 unittest.expect(o.start_date, unittest.equals('foo')); | 2397 unittest.expect(o.start_date, unittest.equals('foo')); |
| 2383 unittest.expect(o.start_index, unittest.equals(42)); | 2398 unittest.expect(o.start_index, unittest.equals(42)); |
| 2384 } | 2399 } |
| 2385 buildCounterMcfDataQuery--; | 2400 buildCounterMcfDataQuery--; |
| 2386 } | 2401 } |
| 2387 | 2402 |
| 2388 core.int buildCounterMcfDataRowsConversionPathValue = 0; | 2403 core.int buildCounterMcfDataRowsConversionPathValue = 0; |
| 2389 buildMcfDataRowsConversionPathValue() { | 2404 buildMcfDataRowsConversionPathValue() { |
| 2390 var o = new api.McfDataRowsConversionPathValue(); | 2405 var o = new api.McfDataRowsConversionPathValue(); |
| 2391 buildCounterMcfDataRowsConversionPathValue++; | 2406 buildCounterMcfDataRowsConversionPathValue++; |
| 2392 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2407 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
| 2393 o.interactionType = "foo"; | 2408 o.interactionType = "foo"; |
| 2394 o.nodeValue = "foo"; | 2409 o.nodeValue = "foo"; |
| 2395 } | 2410 } |
| 2396 buildCounterMcfDataRowsConversionPathValue--; | 2411 buildCounterMcfDataRowsConversionPathValue--; |
| 2397 return o; | 2412 return o; |
| 2398 } | 2413 } |
| 2399 | 2414 |
| 2400 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { | 2415 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { |
| 2401 buildCounterMcfDataRowsConversionPathValue++; | 2416 buildCounterMcfDataRowsConversionPathValue++; |
| 2402 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2417 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
| 2403 unittest.expect(o.interactionType, unittest.equals('foo')); | 2418 unittest.expect(o.interactionType, unittest.equals('foo')); |
| 2404 unittest.expect(o.nodeValue, unittest.equals('foo')); | 2419 unittest.expect(o.nodeValue, unittest.equals('foo')); |
| 2405 } | 2420 } |
| 2406 buildCounterMcfDataRowsConversionPathValue--; | 2421 buildCounterMcfDataRowsConversionPathValue--; |
| 2407 } | 2422 } |
| 2408 | 2423 |
| 2409 buildUnnamed1019() { | 2424 buildUnnamed1036() { |
| 2410 var o = new core.List<api.McfDataRowsConversionPathValue>(); | 2425 var o = new core.List<api.McfDataRowsConversionPathValue>(); |
| 2411 o.add(buildMcfDataRowsConversionPathValue()); | 2426 o.add(buildMcfDataRowsConversionPathValue()); |
| 2412 o.add(buildMcfDataRowsConversionPathValue()); | 2427 o.add(buildMcfDataRowsConversionPathValue()); |
| 2413 return o; | 2428 return o; |
| 2414 } | 2429 } |
| 2415 | 2430 |
| 2416 checkUnnamed1019(core.List<api.McfDataRowsConversionPathValue> o) { | 2431 checkUnnamed1036(core.List<api.McfDataRowsConversionPathValue> o) { |
| 2417 unittest.expect(o, unittest.hasLength(2)); | 2432 unittest.expect(o, unittest.hasLength(2)); |
| 2418 checkMcfDataRowsConversionPathValue(o[0]); | 2433 checkMcfDataRowsConversionPathValue(o[0]); |
| 2419 checkMcfDataRowsConversionPathValue(o[1]); | 2434 checkMcfDataRowsConversionPathValue(o[1]); |
| 2420 } | 2435 } |
| 2421 | 2436 |
| 2422 core.int buildCounterMcfDataRows = 0; | 2437 core.int buildCounterMcfDataRows = 0; |
| 2423 buildMcfDataRows() { | 2438 buildMcfDataRows() { |
| 2424 var o = new api.McfDataRows(); | 2439 var o = new api.McfDataRows(); |
| 2425 buildCounterMcfDataRows++; | 2440 buildCounterMcfDataRows++; |
| 2426 if (buildCounterMcfDataRows < 3) { | 2441 if (buildCounterMcfDataRows < 3) { |
| 2427 o.conversionPathValue = buildUnnamed1019(); | 2442 o.conversionPathValue = buildUnnamed1036(); |
| 2428 o.primitiveValue = "foo"; | 2443 o.primitiveValue = "foo"; |
| 2429 } | 2444 } |
| 2430 buildCounterMcfDataRows--; | 2445 buildCounterMcfDataRows--; |
| 2431 return o; | 2446 return o; |
| 2432 } | 2447 } |
| 2433 | 2448 |
| 2434 checkMcfDataRows(api.McfDataRows o) { | 2449 checkMcfDataRows(api.McfDataRows o) { |
| 2435 buildCounterMcfDataRows++; | 2450 buildCounterMcfDataRows++; |
| 2436 if (buildCounterMcfDataRows < 3) { | 2451 if (buildCounterMcfDataRows < 3) { |
| 2437 checkUnnamed1019(o.conversionPathValue); | 2452 checkUnnamed1036(o.conversionPathValue); |
| 2438 unittest.expect(o.primitiveValue, unittest.equals('foo')); | 2453 unittest.expect(o.primitiveValue, unittest.equals('foo')); |
| 2439 } | 2454 } |
| 2440 buildCounterMcfDataRows--; | 2455 buildCounterMcfDataRows--; |
| 2441 } | 2456 } |
| 2442 | 2457 |
| 2443 buildUnnamed1020() { | 2458 buildUnnamed1037() { |
| 2444 var o = new core.List<api.McfDataRows>(); | 2459 var o = new core.List<api.McfDataRows>(); |
| 2445 o.add(buildMcfDataRows()); | 2460 o.add(buildMcfDataRows()); |
| 2446 o.add(buildMcfDataRows()); | 2461 o.add(buildMcfDataRows()); |
| 2447 return o; | 2462 return o; |
| 2448 } | 2463 } |
| 2449 | 2464 |
| 2450 checkUnnamed1020(core.List<api.McfDataRows> o) { | 2465 checkUnnamed1037(core.List<api.McfDataRows> o) { |
| 2451 unittest.expect(o, unittest.hasLength(2)); | 2466 unittest.expect(o, unittest.hasLength(2)); |
| 2452 checkMcfDataRows(o[0]); | 2467 checkMcfDataRows(o[0]); |
| 2453 checkMcfDataRows(o[1]); | 2468 checkMcfDataRows(o[1]); |
| 2454 } | 2469 } |
| 2455 | 2470 |
| 2456 buildUnnamed1021() { | 2471 buildUnnamed1038() { |
| 2457 var o = new core.List<core.List<api.McfDataRows>>(); | 2472 var o = new core.List<core.List<api.McfDataRows>>(); |
| 2458 o.add(buildUnnamed1020()); | 2473 o.add(buildUnnamed1037()); |
| 2459 o.add(buildUnnamed1020()); | 2474 o.add(buildUnnamed1037()); |
| 2460 return o; | 2475 return o; |
| 2461 } | 2476 } |
| 2462 | 2477 |
| 2463 checkUnnamed1021(core.List<core.List<api.McfDataRows>> o) { | 2478 checkUnnamed1038(core.List<core.List<api.McfDataRows>> o) { |
| 2464 unittest.expect(o, unittest.hasLength(2)); | 2479 unittest.expect(o, unittest.hasLength(2)); |
| 2465 checkUnnamed1020(o[0]); | 2480 checkUnnamed1037(o[0]); |
| 2466 checkUnnamed1020(o[1]); | 2481 checkUnnamed1037(o[1]); |
| 2467 } | 2482 } |
| 2468 | 2483 |
| 2469 buildUnnamed1022() { | 2484 buildUnnamed1039() { |
| 2470 var o = new core.Map<core.String, core.String>(); | 2485 var o = new core.Map<core.String, core.String>(); |
| 2471 o["x"] = "foo"; | 2486 o["x"] = "foo"; |
| 2472 o["y"] = "foo"; | 2487 o["y"] = "foo"; |
| 2473 return o; | 2488 return o; |
| 2474 } | 2489 } |
| 2475 | 2490 |
| 2476 checkUnnamed1022(core.Map<core.String, core.String> o) { | 2491 checkUnnamed1039(core.Map<core.String, core.String> o) { |
| 2477 unittest.expect(o, unittest.hasLength(2)); | 2492 unittest.expect(o, unittest.hasLength(2)); |
| 2478 unittest.expect(o["x"], unittest.equals('foo')); | 2493 unittest.expect(o["x"], unittest.equals('foo')); |
| 2479 unittest.expect(o["y"], unittest.equals('foo')); | 2494 unittest.expect(o["y"], unittest.equals('foo')); |
| 2480 } | 2495 } |
| 2481 | 2496 |
| 2482 core.int buildCounterMcfData = 0; | 2497 core.int buildCounterMcfData = 0; |
| 2483 buildMcfData() { | 2498 buildMcfData() { |
| 2484 var o = new api.McfData(); | 2499 var o = new api.McfData(); |
| 2485 buildCounterMcfData++; | 2500 buildCounterMcfData++; |
| 2486 if (buildCounterMcfData < 3) { | 2501 if (buildCounterMcfData < 3) { |
| 2487 o.columnHeaders = buildUnnamed1016(); | 2502 o.columnHeaders = buildUnnamed1033(); |
| 2488 o.containsSampledData = true; | 2503 o.containsSampledData = true; |
| 2489 o.id = "foo"; | 2504 o.id = "foo"; |
| 2490 o.itemsPerPage = 42; | 2505 o.itemsPerPage = 42; |
| 2491 o.kind = "foo"; | 2506 o.kind = "foo"; |
| 2492 o.nextLink = "foo"; | 2507 o.nextLink = "foo"; |
| 2493 o.previousLink = "foo"; | 2508 o.previousLink = "foo"; |
| 2494 o.profileInfo = buildMcfDataProfileInfo(); | 2509 o.profileInfo = buildMcfDataProfileInfo(); |
| 2495 o.query = buildMcfDataQuery(); | 2510 o.query = buildMcfDataQuery(); |
| 2496 o.rows = buildUnnamed1021(); | 2511 o.rows = buildUnnamed1038(); |
| 2497 o.sampleSize = "foo"; | 2512 o.sampleSize = "foo"; |
| 2498 o.sampleSpace = "foo"; | 2513 o.sampleSpace = "foo"; |
| 2499 o.selfLink = "foo"; | 2514 o.selfLink = "foo"; |
| 2500 o.totalResults = 42; | 2515 o.totalResults = 42; |
| 2501 o.totalsForAllResults = buildUnnamed1022(); | 2516 o.totalsForAllResults = buildUnnamed1039(); |
| 2502 } | 2517 } |
| 2503 buildCounterMcfData--; | 2518 buildCounterMcfData--; |
| 2504 return o; | 2519 return o; |
| 2505 } | 2520 } |
| 2506 | 2521 |
| 2507 checkMcfData(api.McfData o) { | 2522 checkMcfData(api.McfData o) { |
| 2508 buildCounterMcfData++; | 2523 buildCounterMcfData++; |
| 2509 if (buildCounterMcfData < 3) { | 2524 if (buildCounterMcfData < 3) { |
| 2510 checkUnnamed1016(o.columnHeaders); | 2525 checkUnnamed1033(o.columnHeaders); |
| 2511 unittest.expect(o.containsSampledData, unittest.isTrue); | 2526 unittest.expect(o.containsSampledData, unittest.isTrue); |
| 2512 unittest.expect(o.id, unittest.equals('foo')); | 2527 unittest.expect(o.id, unittest.equals('foo')); |
| 2513 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2528 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2514 unittest.expect(o.kind, unittest.equals('foo')); | 2529 unittest.expect(o.kind, unittest.equals('foo')); |
| 2515 unittest.expect(o.nextLink, unittest.equals('foo')); | 2530 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2516 unittest.expect(o.previousLink, unittest.equals('foo')); | 2531 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2517 checkMcfDataProfileInfo(o.profileInfo); | 2532 checkMcfDataProfileInfo(o.profileInfo); |
| 2518 checkMcfDataQuery(o.query); | 2533 checkMcfDataQuery(o.query); |
| 2519 checkUnnamed1021(o.rows); | 2534 checkUnnamed1038(o.rows); |
| 2520 unittest.expect(o.sampleSize, unittest.equals('foo')); | 2535 unittest.expect(o.sampleSize, unittest.equals('foo')); |
| 2521 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 2536 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
| 2522 unittest.expect(o.selfLink, unittest.equals('foo')); | 2537 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2523 unittest.expect(o.totalResults, unittest.equals(42)); | 2538 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2524 checkUnnamed1022(o.totalsForAllResults); | 2539 checkUnnamed1039(o.totalsForAllResults); |
| 2525 } | 2540 } |
| 2526 buildCounterMcfData--; | 2541 buildCounterMcfData--; |
| 2527 } | 2542 } |
| 2528 | 2543 |
| 2529 core.int buildCounterProfileChildLink = 0; | 2544 core.int buildCounterProfileChildLink = 0; |
| 2530 buildProfileChildLink() { | 2545 buildProfileChildLink() { |
| 2531 var o = new api.ProfileChildLink(); | 2546 var o = new api.ProfileChildLink(); |
| 2532 buildCounterProfileChildLink++; | 2547 buildCounterProfileChildLink++; |
| 2533 if (buildCounterProfileChildLink < 3) { | 2548 if (buildCounterProfileChildLink < 3) { |
| 2534 o.href = "foo"; | 2549 o.href = "foo"; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 2561 | 2576 |
| 2562 checkProfileParentLink(api.ProfileParentLink o) { | 2577 checkProfileParentLink(api.ProfileParentLink o) { |
| 2563 buildCounterProfileParentLink++; | 2578 buildCounterProfileParentLink++; |
| 2564 if (buildCounterProfileParentLink < 3) { | 2579 if (buildCounterProfileParentLink < 3) { |
| 2565 unittest.expect(o.href, unittest.equals('foo')); | 2580 unittest.expect(o.href, unittest.equals('foo')); |
| 2566 unittest.expect(o.type, unittest.equals('foo')); | 2581 unittest.expect(o.type, unittest.equals('foo')); |
| 2567 } | 2582 } |
| 2568 buildCounterProfileParentLink--; | 2583 buildCounterProfileParentLink--; |
| 2569 } | 2584 } |
| 2570 | 2585 |
| 2571 buildUnnamed1023() { | 2586 buildUnnamed1040() { |
| 2572 var o = new core.List<core.String>(); | 2587 var o = new core.List<core.String>(); |
| 2573 o.add("foo"); | 2588 o.add("foo"); |
| 2574 o.add("foo"); | 2589 o.add("foo"); |
| 2575 return o; | 2590 return o; |
| 2576 } | 2591 } |
| 2577 | 2592 |
| 2578 checkUnnamed1023(core.List<core.String> o) { | 2593 checkUnnamed1040(core.List<core.String> o) { |
| 2579 unittest.expect(o, unittest.hasLength(2)); | 2594 unittest.expect(o, unittest.hasLength(2)); |
| 2580 unittest.expect(o[0], unittest.equals('foo')); | 2595 unittest.expect(o[0], unittest.equals('foo')); |
| 2581 unittest.expect(o[1], unittest.equals('foo')); | 2596 unittest.expect(o[1], unittest.equals('foo')); |
| 2582 } | 2597 } |
| 2583 | 2598 |
| 2584 core.int buildCounterProfilePermissions = 0; | 2599 core.int buildCounterProfilePermissions = 0; |
| 2585 buildProfilePermissions() { | 2600 buildProfilePermissions() { |
| 2586 var o = new api.ProfilePermissions(); | 2601 var o = new api.ProfilePermissions(); |
| 2587 buildCounterProfilePermissions++; | 2602 buildCounterProfilePermissions++; |
| 2588 if (buildCounterProfilePermissions < 3) { | 2603 if (buildCounterProfilePermissions < 3) { |
| 2589 o.effective = buildUnnamed1023(); | 2604 o.effective = buildUnnamed1040(); |
| 2590 } | 2605 } |
| 2591 buildCounterProfilePermissions--; | 2606 buildCounterProfilePermissions--; |
| 2592 return o; | 2607 return o; |
| 2593 } | 2608 } |
| 2594 | 2609 |
| 2595 checkProfilePermissions(api.ProfilePermissions o) { | 2610 checkProfilePermissions(api.ProfilePermissions o) { |
| 2596 buildCounterProfilePermissions++; | 2611 buildCounterProfilePermissions++; |
| 2597 if (buildCounterProfilePermissions < 3) { | 2612 if (buildCounterProfilePermissions < 3) { |
| 2598 checkUnnamed1023(o.effective); | 2613 checkUnnamed1040(o.effective); |
| 2599 } | 2614 } |
| 2600 buildCounterProfilePermissions--; | 2615 buildCounterProfilePermissions--; |
| 2601 } | 2616 } |
| 2602 | 2617 |
| 2603 core.int buildCounterProfile = 0; | 2618 core.int buildCounterProfile = 0; |
| 2604 buildProfile() { | 2619 buildProfile() { |
| 2605 var o = new api.Profile(); | 2620 var o = new api.Profile(); |
| 2606 buildCounterProfile++; | 2621 buildCounterProfile++; |
| 2607 if (buildCounterProfile < 3) { | 2622 if (buildCounterProfile < 3) { |
| 2608 o.accountId = "foo"; | 2623 o.accountId = "foo"; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2691 checkFilterRef(o.filterRef); | 2706 checkFilterRef(o.filterRef); |
| 2692 unittest.expect(o.id, unittest.equals('foo')); | 2707 unittest.expect(o.id, unittest.equals('foo')); |
| 2693 unittest.expect(o.kind, unittest.equals('foo')); | 2708 unittest.expect(o.kind, unittest.equals('foo')); |
| 2694 checkProfileRef(o.profileRef); | 2709 checkProfileRef(o.profileRef); |
| 2695 unittest.expect(o.rank, unittest.equals(42)); | 2710 unittest.expect(o.rank, unittest.equals(42)); |
| 2696 unittest.expect(o.selfLink, unittest.equals('foo')); | 2711 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2697 } | 2712 } |
| 2698 buildCounterProfileFilterLink--; | 2713 buildCounterProfileFilterLink--; |
| 2699 } | 2714 } |
| 2700 | 2715 |
| 2701 buildUnnamed1024() { | 2716 buildUnnamed1041() { |
| 2702 var o = new core.List<api.ProfileFilterLink>(); | 2717 var o = new core.List<api.ProfileFilterLink>(); |
| 2703 o.add(buildProfileFilterLink()); | 2718 o.add(buildProfileFilterLink()); |
| 2704 o.add(buildProfileFilterLink()); | 2719 o.add(buildProfileFilterLink()); |
| 2705 return o; | 2720 return o; |
| 2706 } | 2721 } |
| 2707 | 2722 |
| 2708 checkUnnamed1024(core.List<api.ProfileFilterLink> o) { | 2723 checkUnnamed1041(core.List<api.ProfileFilterLink> o) { |
| 2709 unittest.expect(o, unittest.hasLength(2)); | 2724 unittest.expect(o, unittest.hasLength(2)); |
| 2710 checkProfileFilterLink(o[0]); | 2725 checkProfileFilterLink(o[0]); |
| 2711 checkProfileFilterLink(o[1]); | 2726 checkProfileFilterLink(o[1]); |
| 2712 } | 2727 } |
| 2713 | 2728 |
| 2714 core.int buildCounterProfileFilterLinks = 0; | 2729 core.int buildCounterProfileFilterLinks = 0; |
| 2715 buildProfileFilterLinks() { | 2730 buildProfileFilterLinks() { |
| 2716 var o = new api.ProfileFilterLinks(); | 2731 var o = new api.ProfileFilterLinks(); |
| 2717 buildCounterProfileFilterLinks++; | 2732 buildCounterProfileFilterLinks++; |
| 2718 if (buildCounterProfileFilterLinks < 3) { | 2733 if (buildCounterProfileFilterLinks < 3) { |
| 2719 o.items = buildUnnamed1024(); | 2734 o.items = buildUnnamed1041(); |
| 2720 o.itemsPerPage = 42; | 2735 o.itemsPerPage = 42; |
| 2721 o.kind = "foo"; | 2736 o.kind = "foo"; |
| 2722 o.nextLink = "foo"; | 2737 o.nextLink = "foo"; |
| 2723 o.previousLink = "foo"; | 2738 o.previousLink = "foo"; |
| 2724 o.startIndex = 42; | 2739 o.startIndex = 42; |
| 2725 o.totalResults = 42; | 2740 o.totalResults = 42; |
| 2726 o.username = "foo"; | 2741 o.username = "foo"; |
| 2727 } | 2742 } |
| 2728 buildCounterProfileFilterLinks--; | 2743 buildCounterProfileFilterLinks--; |
| 2729 return o; | 2744 return o; |
| 2730 } | 2745 } |
| 2731 | 2746 |
| 2732 checkProfileFilterLinks(api.ProfileFilterLinks o) { | 2747 checkProfileFilterLinks(api.ProfileFilterLinks o) { |
| 2733 buildCounterProfileFilterLinks++; | 2748 buildCounterProfileFilterLinks++; |
| 2734 if (buildCounterProfileFilterLinks < 3) { | 2749 if (buildCounterProfileFilterLinks < 3) { |
| 2735 checkUnnamed1024(o.items); | 2750 checkUnnamed1041(o.items); |
| 2736 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2751 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2737 unittest.expect(o.kind, unittest.equals('foo')); | 2752 unittest.expect(o.kind, unittest.equals('foo')); |
| 2738 unittest.expect(o.nextLink, unittest.equals('foo')); | 2753 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2739 unittest.expect(o.previousLink, unittest.equals('foo')); | 2754 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2740 unittest.expect(o.startIndex, unittest.equals(42)); | 2755 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2741 unittest.expect(o.totalResults, unittest.equals(42)); | 2756 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2742 unittest.expect(o.username, unittest.equals('foo')); | 2757 unittest.expect(o.username, unittest.equals('foo')); |
| 2743 } | 2758 } |
| 2744 buildCounterProfileFilterLinks--; | 2759 buildCounterProfileFilterLinks--; |
| 2745 } | 2760 } |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2795 if (buildCounterProfileSummary < 3) { | 2810 if (buildCounterProfileSummary < 3) { |
| 2796 unittest.expect(o.id, unittest.equals('foo')); | 2811 unittest.expect(o.id, unittest.equals('foo')); |
| 2797 unittest.expect(o.kind, unittest.equals('foo')); | 2812 unittest.expect(o.kind, unittest.equals('foo')); |
| 2798 unittest.expect(o.name, unittest.equals('foo')); | 2813 unittest.expect(o.name, unittest.equals('foo')); |
| 2799 unittest.expect(o.starred, unittest.isTrue); | 2814 unittest.expect(o.starred, unittest.isTrue); |
| 2800 unittest.expect(o.type, unittest.equals('foo')); | 2815 unittest.expect(o.type, unittest.equals('foo')); |
| 2801 } | 2816 } |
| 2802 buildCounterProfileSummary--; | 2817 buildCounterProfileSummary--; |
| 2803 } | 2818 } |
| 2804 | 2819 |
| 2805 buildUnnamed1025() { | 2820 buildUnnamed1042() { |
| 2806 var o = new core.List<api.Profile>(); | 2821 var o = new core.List<api.Profile>(); |
| 2807 o.add(buildProfile()); | 2822 o.add(buildProfile()); |
| 2808 o.add(buildProfile()); | 2823 o.add(buildProfile()); |
| 2809 return o; | 2824 return o; |
| 2810 } | 2825 } |
| 2811 | 2826 |
| 2812 checkUnnamed1025(core.List<api.Profile> o) { | 2827 checkUnnamed1042(core.List<api.Profile> o) { |
| 2813 unittest.expect(o, unittest.hasLength(2)); | 2828 unittest.expect(o, unittest.hasLength(2)); |
| 2814 checkProfile(o[0]); | 2829 checkProfile(o[0]); |
| 2815 checkProfile(o[1]); | 2830 checkProfile(o[1]); |
| 2816 } | 2831 } |
| 2817 | 2832 |
| 2818 core.int buildCounterProfiles = 0; | 2833 core.int buildCounterProfiles = 0; |
| 2819 buildProfiles() { | 2834 buildProfiles() { |
| 2820 var o = new api.Profiles(); | 2835 var o = new api.Profiles(); |
| 2821 buildCounterProfiles++; | 2836 buildCounterProfiles++; |
| 2822 if (buildCounterProfiles < 3) { | 2837 if (buildCounterProfiles < 3) { |
| 2823 o.items = buildUnnamed1025(); | 2838 o.items = buildUnnamed1042(); |
| 2824 o.itemsPerPage = 42; | 2839 o.itemsPerPage = 42; |
| 2825 o.kind = "foo"; | 2840 o.kind = "foo"; |
| 2826 o.nextLink = "foo"; | 2841 o.nextLink = "foo"; |
| 2827 o.previousLink = "foo"; | 2842 o.previousLink = "foo"; |
| 2828 o.startIndex = 42; | 2843 o.startIndex = 42; |
| 2829 o.totalResults = 42; | 2844 o.totalResults = 42; |
| 2830 o.username = "foo"; | 2845 o.username = "foo"; |
| 2831 } | 2846 } |
| 2832 buildCounterProfiles--; | 2847 buildCounterProfiles--; |
| 2833 return o; | 2848 return o; |
| 2834 } | 2849 } |
| 2835 | 2850 |
| 2836 checkProfiles(api.Profiles o) { | 2851 checkProfiles(api.Profiles o) { |
| 2837 buildCounterProfiles++; | 2852 buildCounterProfiles++; |
| 2838 if (buildCounterProfiles < 3) { | 2853 if (buildCounterProfiles < 3) { |
| 2839 checkUnnamed1025(o.items); | 2854 checkUnnamed1042(o.items); |
| 2840 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2855 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2841 unittest.expect(o.kind, unittest.equals('foo')); | 2856 unittest.expect(o.kind, unittest.equals('foo')); |
| 2842 unittest.expect(o.nextLink, unittest.equals('foo')); | 2857 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2843 unittest.expect(o.previousLink, unittest.equals('foo')); | 2858 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2844 unittest.expect(o.startIndex, unittest.equals(42)); | 2859 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2845 unittest.expect(o.totalResults, unittest.equals(42)); | 2860 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2846 unittest.expect(o.username, unittest.equals('foo')); | 2861 unittest.expect(o.username, unittest.equals('foo')); |
| 2847 } | 2862 } |
| 2848 buildCounterProfiles--; | 2863 buildCounterProfiles--; |
| 2849 } | 2864 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2864 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { | 2879 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { |
| 2865 buildCounterRealtimeDataColumnHeaders++; | 2880 buildCounterRealtimeDataColumnHeaders++; |
| 2866 if (buildCounterRealtimeDataColumnHeaders < 3) { | 2881 if (buildCounterRealtimeDataColumnHeaders < 3) { |
| 2867 unittest.expect(o.columnType, unittest.equals('foo')); | 2882 unittest.expect(o.columnType, unittest.equals('foo')); |
| 2868 unittest.expect(o.dataType, unittest.equals('foo')); | 2883 unittest.expect(o.dataType, unittest.equals('foo')); |
| 2869 unittest.expect(o.name, unittest.equals('foo')); | 2884 unittest.expect(o.name, unittest.equals('foo')); |
| 2870 } | 2885 } |
| 2871 buildCounterRealtimeDataColumnHeaders--; | 2886 buildCounterRealtimeDataColumnHeaders--; |
| 2872 } | 2887 } |
| 2873 | 2888 |
| 2874 buildUnnamed1026() { | 2889 buildUnnamed1043() { |
| 2875 var o = new core.List<api.RealtimeDataColumnHeaders>(); | 2890 var o = new core.List<api.RealtimeDataColumnHeaders>(); |
| 2876 o.add(buildRealtimeDataColumnHeaders()); | 2891 o.add(buildRealtimeDataColumnHeaders()); |
| 2877 o.add(buildRealtimeDataColumnHeaders()); | 2892 o.add(buildRealtimeDataColumnHeaders()); |
| 2878 return o; | 2893 return o; |
| 2879 } | 2894 } |
| 2880 | 2895 |
| 2881 checkUnnamed1026(core.List<api.RealtimeDataColumnHeaders> o) { | 2896 checkUnnamed1043(core.List<api.RealtimeDataColumnHeaders> o) { |
| 2882 unittest.expect(o, unittest.hasLength(2)); | 2897 unittest.expect(o, unittest.hasLength(2)); |
| 2883 checkRealtimeDataColumnHeaders(o[0]); | 2898 checkRealtimeDataColumnHeaders(o[0]); |
| 2884 checkRealtimeDataColumnHeaders(o[1]); | 2899 checkRealtimeDataColumnHeaders(o[1]); |
| 2885 } | 2900 } |
| 2886 | 2901 |
| 2887 core.int buildCounterRealtimeDataProfileInfo = 0; | 2902 core.int buildCounterRealtimeDataProfileInfo = 0; |
| 2888 buildRealtimeDataProfileInfo() { | 2903 buildRealtimeDataProfileInfo() { |
| 2889 var o = new api.RealtimeDataProfileInfo(); | 2904 var o = new api.RealtimeDataProfileInfo(); |
| 2890 buildCounterRealtimeDataProfileInfo++; | 2905 buildCounterRealtimeDataProfileInfo++; |
| 2891 if (buildCounterRealtimeDataProfileInfo < 3) { | 2906 if (buildCounterRealtimeDataProfileInfo < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2906 unittest.expect(o.accountId, unittest.equals('foo')); | 2921 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2907 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2922 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 2908 unittest.expect(o.profileId, unittest.equals('foo')); | 2923 unittest.expect(o.profileId, unittest.equals('foo')); |
| 2909 unittest.expect(o.profileName, unittest.equals('foo')); | 2924 unittest.expect(o.profileName, unittest.equals('foo')); |
| 2910 unittest.expect(o.tableId, unittest.equals('foo')); | 2925 unittest.expect(o.tableId, unittest.equals('foo')); |
| 2911 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2926 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2912 } | 2927 } |
| 2913 buildCounterRealtimeDataProfileInfo--; | 2928 buildCounterRealtimeDataProfileInfo--; |
| 2914 } | 2929 } |
| 2915 | 2930 |
| 2916 buildUnnamed1027() { | 2931 buildUnnamed1044() { |
| 2917 var o = new core.List<core.String>(); | 2932 var o = new core.List<core.String>(); |
| 2918 o.add("foo"); | 2933 o.add("foo"); |
| 2919 o.add("foo"); | 2934 o.add("foo"); |
| 2920 return o; | 2935 return o; |
| 2921 } | 2936 } |
| 2922 | 2937 |
| 2923 checkUnnamed1027(core.List<core.String> o) { | 2938 checkUnnamed1044(core.List<core.String> o) { |
| 2924 unittest.expect(o, unittest.hasLength(2)); | 2939 unittest.expect(o, unittest.hasLength(2)); |
| 2925 unittest.expect(o[0], unittest.equals('foo')); | 2940 unittest.expect(o[0], unittest.equals('foo')); |
| 2926 unittest.expect(o[1], unittest.equals('foo')); | 2941 unittest.expect(o[1], unittest.equals('foo')); |
| 2927 } | 2942 } |
| 2928 | 2943 |
| 2929 buildUnnamed1028() { | 2944 buildUnnamed1045() { |
| 2930 var o = new core.List<core.String>(); | 2945 var o = new core.List<core.String>(); |
| 2931 o.add("foo"); | 2946 o.add("foo"); |
| 2932 o.add("foo"); | 2947 o.add("foo"); |
| 2933 return o; | 2948 return o; |
| 2934 } | 2949 } |
| 2935 | 2950 |
| 2936 checkUnnamed1028(core.List<core.String> o) { | 2951 checkUnnamed1045(core.List<core.String> o) { |
| 2937 unittest.expect(o, unittest.hasLength(2)); | 2952 unittest.expect(o, unittest.hasLength(2)); |
| 2938 unittest.expect(o[0], unittest.equals('foo')); | 2953 unittest.expect(o[0], unittest.equals('foo')); |
| 2939 unittest.expect(o[1], unittest.equals('foo')); | 2954 unittest.expect(o[1], unittest.equals('foo')); |
| 2940 } | 2955 } |
| 2941 | 2956 |
| 2942 core.int buildCounterRealtimeDataQuery = 0; | 2957 core.int buildCounterRealtimeDataQuery = 0; |
| 2943 buildRealtimeDataQuery() { | 2958 buildRealtimeDataQuery() { |
| 2944 var o = new api.RealtimeDataQuery(); | 2959 var o = new api.RealtimeDataQuery(); |
| 2945 buildCounterRealtimeDataQuery++; | 2960 buildCounterRealtimeDataQuery++; |
| 2946 if (buildCounterRealtimeDataQuery < 3) { | 2961 if (buildCounterRealtimeDataQuery < 3) { |
| 2947 o.dimensions = "foo"; | 2962 o.dimensions = "foo"; |
| 2948 o.filters = "foo"; | 2963 o.filters = "foo"; |
| 2949 o.ids = "foo"; | 2964 o.ids = "foo"; |
| 2950 o.max_results = 42; | 2965 o.max_results = 42; |
| 2951 o.metrics = buildUnnamed1027(); | 2966 o.metrics = buildUnnamed1044(); |
| 2952 o.sort = buildUnnamed1028(); | 2967 o.sort = buildUnnamed1045(); |
| 2953 } | 2968 } |
| 2954 buildCounterRealtimeDataQuery--; | 2969 buildCounterRealtimeDataQuery--; |
| 2955 return o; | 2970 return o; |
| 2956 } | 2971 } |
| 2957 | 2972 |
| 2958 checkRealtimeDataQuery(api.RealtimeDataQuery o) { | 2973 checkRealtimeDataQuery(api.RealtimeDataQuery o) { |
| 2959 buildCounterRealtimeDataQuery++; | 2974 buildCounterRealtimeDataQuery++; |
| 2960 if (buildCounterRealtimeDataQuery < 3) { | 2975 if (buildCounterRealtimeDataQuery < 3) { |
| 2961 unittest.expect(o.dimensions, unittest.equals('foo')); | 2976 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 2962 unittest.expect(o.filters, unittest.equals('foo')); | 2977 unittest.expect(o.filters, unittest.equals('foo')); |
| 2963 unittest.expect(o.ids, unittest.equals('foo')); | 2978 unittest.expect(o.ids, unittest.equals('foo')); |
| 2964 unittest.expect(o.max_results, unittest.equals(42)); | 2979 unittest.expect(o.max_results, unittest.equals(42)); |
| 2965 checkUnnamed1027(o.metrics); | 2980 checkUnnamed1044(o.metrics); |
| 2966 checkUnnamed1028(o.sort); | 2981 checkUnnamed1045(o.sort); |
| 2967 } | 2982 } |
| 2968 buildCounterRealtimeDataQuery--; | 2983 buildCounterRealtimeDataQuery--; |
| 2969 } | 2984 } |
| 2970 | 2985 |
| 2971 buildUnnamed1029() { | 2986 buildUnnamed1046() { |
| 2972 var o = new core.List<core.String>(); | 2987 var o = new core.List<core.String>(); |
| 2973 o.add("foo"); | 2988 o.add("foo"); |
| 2974 o.add("foo"); | 2989 o.add("foo"); |
| 2975 return o; | 2990 return o; |
| 2976 } | 2991 } |
| 2977 | 2992 |
| 2978 checkUnnamed1029(core.List<core.String> o) { | 2993 checkUnnamed1046(core.List<core.String> o) { |
| 2979 unittest.expect(o, unittest.hasLength(2)); | 2994 unittest.expect(o, unittest.hasLength(2)); |
| 2980 unittest.expect(o[0], unittest.equals('foo')); | 2995 unittest.expect(o[0], unittest.equals('foo')); |
| 2981 unittest.expect(o[1], unittest.equals('foo')); | 2996 unittest.expect(o[1], unittest.equals('foo')); |
| 2982 } | 2997 } |
| 2983 | 2998 |
| 2984 buildUnnamed1030() { | 2999 buildUnnamed1047() { |
| 2985 var o = new core.List<core.List<core.String>>(); | 3000 var o = new core.List<core.List<core.String>>(); |
| 2986 o.add(buildUnnamed1029()); | 3001 o.add(buildUnnamed1046()); |
| 2987 o.add(buildUnnamed1029()); | 3002 o.add(buildUnnamed1046()); |
| 2988 return o; | 3003 return o; |
| 2989 } | 3004 } |
| 2990 | 3005 |
| 2991 checkUnnamed1030(core.List<core.List<core.String>> o) { | 3006 checkUnnamed1047(core.List<core.List<core.String>> o) { |
| 2992 unittest.expect(o, unittest.hasLength(2)); | 3007 unittest.expect(o, unittest.hasLength(2)); |
| 2993 checkUnnamed1029(o[0]); | 3008 checkUnnamed1046(o[0]); |
| 2994 checkUnnamed1029(o[1]); | 3009 checkUnnamed1046(o[1]); |
| 2995 } | 3010 } |
| 2996 | 3011 |
| 2997 buildUnnamed1031() { | 3012 buildUnnamed1048() { |
| 2998 var o = new core.Map<core.String, core.String>(); | 3013 var o = new core.Map<core.String, core.String>(); |
| 2999 o["x"] = "foo"; | 3014 o["x"] = "foo"; |
| 3000 o["y"] = "foo"; | 3015 o["y"] = "foo"; |
| 3001 return o; | 3016 return o; |
| 3002 } | 3017 } |
| 3003 | 3018 |
| 3004 checkUnnamed1031(core.Map<core.String, core.String> o) { | 3019 checkUnnamed1048(core.Map<core.String, core.String> o) { |
| 3005 unittest.expect(o, unittest.hasLength(2)); | 3020 unittest.expect(o, unittest.hasLength(2)); |
| 3006 unittest.expect(o["x"], unittest.equals('foo')); | 3021 unittest.expect(o["x"], unittest.equals('foo')); |
| 3007 unittest.expect(o["y"], unittest.equals('foo')); | 3022 unittest.expect(o["y"], unittest.equals('foo')); |
| 3008 } | 3023 } |
| 3009 | 3024 |
| 3010 core.int buildCounterRealtimeData = 0; | 3025 core.int buildCounterRealtimeData = 0; |
| 3011 buildRealtimeData() { | 3026 buildRealtimeData() { |
| 3012 var o = new api.RealtimeData(); | 3027 var o = new api.RealtimeData(); |
| 3013 buildCounterRealtimeData++; | 3028 buildCounterRealtimeData++; |
| 3014 if (buildCounterRealtimeData < 3) { | 3029 if (buildCounterRealtimeData < 3) { |
| 3015 o.columnHeaders = buildUnnamed1026(); | 3030 o.columnHeaders = buildUnnamed1043(); |
| 3016 o.id = "foo"; | 3031 o.id = "foo"; |
| 3017 o.kind = "foo"; | 3032 o.kind = "foo"; |
| 3018 o.profileInfo = buildRealtimeDataProfileInfo(); | 3033 o.profileInfo = buildRealtimeDataProfileInfo(); |
| 3019 o.query = buildRealtimeDataQuery(); | 3034 o.query = buildRealtimeDataQuery(); |
| 3020 o.rows = buildUnnamed1030(); | 3035 o.rows = buildUnnamed1047(); |
| 3021 o.selfLink = "foo"; | 3036 o.selfLink = "foo"; |
| 3022 o.totalResults = 42; | 3037 o.totalResults = 42; |
| 3023 o.totalsForAllResults = buildUnnamed1031(); | 3038 o.totalsForAllResults = buildUnnamed1048(); |
| 3024 } | 3039 } |
| 3025 buildCounterRealtimeData--; | 3040 buildCounterRealtimeData--; |
| 3026 return o; | 3041 return o; |
| 3027 } | 3042 } |
| 3028 | 3043 |
| 3029 checkRealtimeData(api.RealtimeData o) { | 3044 checkRealtimeData(api.RealtimeData o) { |
| 3030 buildCounterRealtimeData++; | 3045 buildCounterRealtimeData++; |
| 3031 if (buildCounterRealtimeData < 3) { | 3046 if (buildCounterRealtimeData < 3) { |
| 3032 checkUnnamed1026(o.columnHeaders); | 3047 checkUnnamed1043(o.columnHeaders); |
| 3033 unittest.expect(o.id, unittest.equals('foo')); | 3048 unittest.expect(o.id, unittest.equals('foo')); |
| 3034 unittest.expect(o.kind, unittest.equals('foo')); | 3049 unittest.expect(o.kind, unittest.equals('foo')); |
| 3035 checkRealtimeDataProfileInfo(o.profileInfo); | 3050 checkRealtimeDataProfileInfo(o.profileInfo); |
| 3036 checkRealtimeDataQuery(o.query); | 3051 checkRealtimeDataQuery(o.query); |
| 3037 checkUnnamed1030(o.rows); | 3052 checkUnnamed1047(o.rows); |
| 3038 unittest.expect(o.selfLink, unittest.equals('foo')); | 3053 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3039 unittest.expect(o.totalResults, unittest.equals(42)); | 3054 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3040 checkUnnamed1031(o.totalsForAllResults); | 3055 checkUnnamed1048(o.totalsForAllResults); |
| 3041 } | 3056 } |
| 3042 buildCounterRealtimeData--; | 3057 buildCounterRealtimeData--; |
| 3043 } | 3058 } |
| 3044 | 3059 |
| 3045 core.int buildCounterRemarketingAudienceAudienceDefinition = 0; | 3060 core.int buildCounterRemarketingAudienceAudienceDefinition = 0; |
| 3046 buildRemarketingAudienceAudienceDefinition() { | 3061 buildRemarketingAudienceAudienceDefinition() { |
| 3047 var o = new api.RemarketingAudienceAudienceDefinition(); | 3062 var o = new api.RemarketingAudienceAudienceDefinition(); |
| 3048 buildCounterRemarketingAudienceAudienceDefinition++; | 3063 buildCounterRemarketingAudienceAudienceDefinition++; |
| 3049 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { | 3064 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { |
| 3050 o.includeConditions = buildIncludeConditions(); | 3065 o.includeConditions = buildIncludeConditions(); |
| 3051 } | 3066 } |
| 3052 buildCounterRemarketingAudienceAudienceDefinition--; | 3067 buildCounterRemarketingAudienceAudienceDefinition--; |
| 3053 return o; | 3068 return o; |
| 3054 } | 3069 } |
| 3055 | 3070 |
| 3056 checkRemarketingAudienceAudienceDefinition(api.RemarketingAudienceAudienceDefini
tion o) { | 3071 checkRemarketingAudienceAudienceDefinition(api.RemarketingAudienceAudienceDefini
tion o) { |
| 3057 buildCounterRemarketingAudienceAudienceDefinition++; | 3072 buildCounterRemarketingAudienceAudienceDefinition++; |
| 3058 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { | 3073 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { |
| 3059 checkIncludeConditions(o.includeConditions); | 3074 checkIncludeConditions(o.includeConditions); |
| 3060 } | 3075 } |
| 3061 buildCounterRemarketingAudienceAudienceDefinition--; | 3076 buildCounterRemarketingAudienceAudienceDefinition--; |
| 3062 } | 3077 } |
| 3063 | 3078 |
| 3064 buildUnnamed1032() { | 3079 buildUnnamed1049() { |
| 3065 var o = new core.List<api.LinkedForeignAccount>(); | 3080 var o = new core.List<api.LinkedForeignAccount>(); |
| 3066 o.add(buildLinkedForeignAccount()); | 3081 o.add(buildLinkedForeignAccount()); |
| 3067 o.add(buildLinkedForeignAccount()); | 3082 o.add(buildLinkedForeignAccount()); |
| 3068 return o; | 3083 return o; |
| 3069 } | 3084 } |
| 3070 | 3085 |
| 3071 checkUnnamed1032(core.List<api.LinkedForeignAccount> o) { | 3086 checkUnnamed1049(core.List<api.LinkedForeignAccount> o) { |
| 3072 unittest.expect(o, unittest.hasLength(2)); | 3087 unittest.expect(o, unittest.hasLength(2)); |
| 3073 checkLinkedForeignAccount(o[0]); | 3088 checkLinkedForeignAccount(o[0]); |
| 3074 checkLinkedForeignAccount(o[1]); | 3089 checkLinkedForeignAccount(o[1]); |
| 3075 } | 3090 } |
| 3076 | 3091 |
| 3077 buildUnnamed1033() { | 3092 buildUnnamed1050() { |
| 3078 var o = new core.List<core.String>(); | 3093 var o = new core.List<core.String>(); |
| 3079 o.add("foo"); | 3094 o.add("foo"); |
| 3080 o.add("foo"); | 3095 o.add("foo"); |
| 3081 return o; | 3096 return o; |
| 3082 } | 3097 } |
| 3083 | 3098 |
| 3084 checkUnnamed1033(core.List<core.String> o) { | 3099 checkUnnamed1050(core.List<core.String> o) { |
| 3085 unittest.expect(o, unittest.hasLength(2)); | 3100 unittest.expect(o, unittest.hasLength(2)); |
| 3086 unittest.expect(o[0], unittest.equals('foo')); | 3101 unittest.expect(o[0], unittest.equals('foo')); |
| 3087 unittest.expect(o[1], unittest.equals('foo')); | 3102 unittest.expect(o[1], unittest.equals('foo')); |
| 3088 } | 3103 } |
| 3089 | 3104 |
| 3090 core.int buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeCondi
tions = 0; | 3105 core.int buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeCondi
tions = 0; |
| 3091 buildRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions() { | 3106 buildRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions() { |
| 3092 var o = new api.RemarketingAudienceStateBasedAudienceDefinitionExcludeConditio
ns(); | 3107 var o = new api.RemarketingAudienceStateBasedAudienceDefinitionExcludeConditio
ns(); |
| 3093 buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions++
; | 3108 buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions++
; |
| 3094 if (buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditio
ns < 3) { | 3109 if (buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditio
ns < 3) { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3135 buildCounterRemarketingAudience++; | 3150 buildCounterRemarketingAudience++; |
| 3136 if (buildCounterRemarketingAudience < 3) { | 3151 if (buildCounterRemarketingAudience < 3) { |
| 3137 o.accountId = "foo"; | 3152 o.accountId = "foo"; |
| 3138 o.audienceDefinition = buildRemarketingAudienceAudienceDefinition(); | 3153 o.audienceDefinition = buildRemarketingAudienceAudienceDefinition(); |
| 3139 o.audienceType = "foo"; | 3154 o.audienceType = "foo"; |
| 3140 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 3155 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| 3141 o.description = "foo"; | 3156 o.description = "foo"; |
| 3142 o.id = "foo"; | 3157 o.id = "foo"; |
| 3143 o.internalWebPropertyId = "foo"; | 3158 o.internalWebPropertyId = "foo"; |
| 3144 o.kind = "foo"; | 3159 o.kind = "foo"; |
| 3145 o.linkedAdAccounts = buildUnnamed1032(); | 3160 o.linkedAdAccounts = buildUnnamed1049(); |
| 3146 o.linkedViews = buildUnnamed1033(); | 3161 o.linkedViews = buildUnnamed1050(); |
| 3147 o.name = "foo"; | 3162 o.name = "foo"; |
| 3148 o.stateBasedAudienceDefinition = buildRemarketingAudienceStateBasedAudienceD
efinition(); | 3163 o.stateBasedAudienceDefinition = buildRemarketingAudienceStateBasedAudienceD
efinition(); |
| 3149 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 3164 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 3150 o.webPropertyId = "foo"; | 3165 o.webPropertyId = "foo"; |
| 3151 } | 3166 } |
| 3152 buildCounterRemarketingAudience--; | 3167 buildCounterRemarketingAudience--; |
| 3153 return o; | 3168 return o; |
| 3154 } | 3169 } |
| 3155 | 3170 |
| 3156 checkRemarketingAudience(api.RemarketingAudience o) { | 3171 checkRemarketingAudience(api.RemarketingAudience o) { |
| 3157 buildCounterRemarketingAudience++; | 3172 buildCounterRemarketingAudience++; |
| 3158 if (buildCounterRemarketingAudience < 3) { | 3173 if (buildCounterRemarketingAudience < 3) { |
| 3159 unittest.expect(o.accountId, unittest.equals('foo')); | 3174 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3160 checkRemarketingAudienceAudienceDefinition(o.audienceDefinition); | 3175 checkRemarketingAudienceAudienceDefinition(o.audienceDefinition); |
| 3161 unittest.expect(o.audienceType, unittest.equals('foo')); | 3176 unittest.expect(o.audienceType, unittest.equals('foo')); |
| 3162 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3177 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3163 unittest.expect(o.description, unittest.equals('foo')); | 3178 unittest.expect(o.description, unittest.equals('foo')); |
| 3164 unittest.expect(o.id, unittest.equals('foo')); | 3179 unittest.expect(o.id, unittest.equals('foo')); |
| 3165 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3180 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3166 unittest.expect(o.kind, unittest.equals('foo')); | 3181 unittest.expect(o.kind, unittest.equals('foo')); |
| 3167 checkUnnamed1032(o.linkedAdAccounts); | 3182 checkUnnamed1049(o.linkedAdAccounts); |
| 3168 checkUnnamed1033(o.linkedViews); | 3183 checkUnnamed1050(o.linkedViews); |
| 3169 unittest.expect(o.name, unittest.equals('foo')); | 3184 unittest.expect(o.name, unittest.equals('foo')); |
| 3170 checkRemarketingAudienceStateBasedAudienceDefinition(o.stateBasedAudienceDef
inition); | 3185 checkRemarketingAudienceStateBasedAudienceDefinition(o.stateBasedAudienceDef
inition); |
| 3171 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3186 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3172 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 3187 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 3173 } | 3188 } |
| 3174 buildCounterRemarketingAudience--; | 3189 buildCounterRemarketingAudience--; |
| 3175 } | 3190 } |
| 3176 | 3191 |
| 3177 buildUnnamed1034() { | 3192 buildUnnamed1051() { |
| 3178 var o = new core.List<api.RemarketingAudience>(); | 3193 var o = new core.List<api.RemarketingAudience>(); |
| 3179 o.add(buildRemarketingAudience()); | 3194 o.add(buildRemarketingAudience()); |
| 3180 o.add(buildRemarketingAudience()); | 3195 o.add(buildRemarketingAudience()); |
| 3181 return o; | 3196 return o; |
| 3182 } | 3197 } |
| 3183 | 3198 |
| 3184 checkUnnamed1034(core.List<api.RemarketingAudience> o) { | 3199 checkUnnamed1051(core.List<api.RemarketingAudience> o) { |
| 3185 unittest.expect(o, unittest.hasLength(2)); | 3200 unittest.expect(o, unittest.hasLength(2)); |
| 3186 checkRemarketingAudience(o[0]); | 3201 checkRemarketingAudience(o[0]); |
| 3187 checkRemarketingAudience(o[1]); | 3202 checkRemarketingAudience(o[1]); |
| 3188 } | 3203 } |
| 3189 | 3204 |
| 3190 core.int buildCounterRemarketingAudiences = 0; | 3205 core.int buildCounterRemarketingAudiences = 0; |
| 3191 buildRemarketingAudiences() { | 3206 buildRemarketingAudiences() { |
| 3192 var o = new api.RemarketingAudiences(); | 3207 var o = new api.RemarketingAudiences(); |
| 3193 buildCounterRemarketingAudiences++; | 3208 buildCounterRemarketingAudiences++; |
| 3194 if (buildCounterRemarketingAudiences < 3) { | 3209 if (buildCounterRemarketingAudiences < 3) { |
| 3195 o.items = buildUnnamed1034(); | 3210 o.items = buildUnnamed1051(); |
| 3196 o.itemsPerPage = 42; | 3211 o.itemsPerPage = 42; |
| 3197 o.kind = "foo"; | 3212 o.kind = "foo"; |
| 3198 o.nextLink = "foo"; | 3213 o.nextLink = "foo"; |
| 3199 o.previousLink = "foo"; | 3214 o.previousLink = "foo"; |
| 3200 o.startIndex = 42; | 3215 o.startIndex = 42; |
| 3201 o.totalResults = 42; | 3216 o.totalResults = 42; |
| 3202 o.username = "foo"; | 3217 o.username = "foo"; |
| 3203 } | 3218 } |
| 3204 buildCounterRemarketingAudiences--; | 3219 buildCounterRemarketingAudiences--; |
| 3205 return o; | 3220 return o; |
| 3206 } | 3221 } |
| 3207 | 3222 |
| 3208 checkRemarketingAudiences(api.RemarketingAudiences o) { | 3223 checkRemarketingAudiences(api.RemarketingAudiences o) { |
| 3209 buildCounterRemarketingAudiences++; | 3224 buildCounterRemarketingAudiences++; |
| 3210 if (buildCounterRemarketingAudiences < 3) { | 3225 if (buildCounterRemarketingAudiences < 3) { |
| 3211 checkUnnamed1034(o.items); | 3226 checkUnnamed1051(o.items); |
| 3212 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3227 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3213 unittest.expect(o.kind, unittest.equals('foo')); | 3228 unittest.expect(o.kind, unittest.equals('foo')); |
| 3214 unittest.expect(o.nextLink, unittest.equals('foo')); | 3229 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3215 unittest.expect(o.previousLink, unittest.equals('foo')); | 3230 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3216 unittest.expect(o.startIndex, unittest.equals(42)); | 3231 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3217 unittest.expect(o.totalResults, unittest.equals(42)); | 3232 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3218 unittest.expect(o.username, unittest.equals('foo')); | 3233 unittest.expect(o.username, unittest.equals('foo')); |
| 3219 } | 3234 } |
| 3220 buildCounterRemarketingAudiences--; | 3235 buildCounterRemarketingAudiences--; |
| 3221 } | 3236 } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 3248 unittest.expect(o.kind, unittest.equals('foo')); | 3263 unittest.expect(o.kind, unittest.equals('foo')); |
| 3249 unittest.expect(o.name, unittest.equals('foo')); | 3264 unittest.expect(o.name, unittest.equals('foo')); |
| 3250 unittest.expect(o.segmentId, unittest.equals('foo')); | 3265 unittest.expect(o.segmentId, unittest.equals('foo')); |
| 3251 unittest.expect(o.selfLink, unittest.equals('foo')); | 3266 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3252 unittest.expect(o.type, unittest.equals('foo')); | 3267 unittest.expect(o.type, unittest.equals('foo')); |
| 3253 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3268 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3254 } | 3269 } |
| 3255 buildCounterSegment--; | 3270 buildCounterSegment--; |
| 3256 } | 3271 } |
| 3257 | 3272 |
| 3258 buildUnnamed1035() { | 3273 buildUnnamed1052() { |
| 3259 var o = new core.List<api.Segment>(); | 3274 var o = new core.List<api.Segment>(); |
| 3260 o.add(buildSegment()); | 3275 o.add(buildSegment()); |
| 3261 o.add(buildSegment()); | 3276 o.add(buildSegment()); |
| 3262 return o; | 3277 return o; |
| 3263 } | 3278 } |
| 3264 | 3279 |
| 3265 checkUnnamed1035(core.List<api.Segment> o) { | 3280 checkUnnamed1052(core.List<api.Segment> o) { |
| 3266 unittest.expect(o, unittest.hasLength(2)); | 3281 unittest.expect(o, unittest.hasLength(2)); |
| 3267 checkSegment(o[0]); | 3282 checkSegment(o[0]); |
| 3268 checkSegment(o[1]); | 3283 checkSegment(o[1]); |
| 3269 } | 3284 } |
| 3270 | 3285 |
| 3271 core.int buildCounterSegments = 0; | 3286 core.int buildCounterSegments = 0; |
| 3272 buildSegments() { | 3287 buildSegments() { |
| 3273 var o = new api.Segments(); | 3288 var o = new api.Segments(); |
| 3274 buildCounterSegments++; | 3289 buildCounterSegments++; |
| 3275 if (buildCounterSegments < 3) { | 3290 if (buildCounterSegments < 3) { |
| 3276 o.items = buildUnnamed1035(); | 3291 o.items = buildUnnamed1052(); |
| 3277 o.itemsPerPage = 42; | 3292 o.itemsPerPage = 42; |
| 3278 o.kind = "foo"; | 3293 o.kind = "foo"; |
| 3279 o.nextLink = "foo"; | 3294 o.nextLink = "foo"; |
| 3280 o.previousLink = "foo"; | 3295 o.previousLink = "foo"; |
| 3281 o.startIndex = 42; | 3296 o.startIndex = 42; |
| 3282 o.totalResults = 42; | 3297 o.totalResults = 42; |
| 3283 o.username = "foo"; | 3298 o.username = "foo"; |
| 3284 } | 3299 } |
| 3285 buildCounterSegments--; | 3300 buildCounterSegments--; |
| 3286 return o; | 3301 return o; |
| 3287 } | 3302 } |
| 3288 | 3303 |
| 3289 checkSegments(api.Segments o) { | 3304 checkSegments(api.Segments o) { |
| 3290 buildCounterSegments++; | 3305 buildCounterSegments++; |
| 3291 if (buildCounterSegments < 3) { | 3306 if (buildCounterSegments < 3) { |
| 3292 checkUnnamed1035(o.items); | 3307 checkUnnamed1052(o.items); |
| 3293 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3308 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3294 unittest.expect(o.kind, unittest.equals('foo')); | 3309 unittest.expect(o.kind, unittest.equals('foo')); |
| 3295 unittest.expect(o.nextLink, unittest.equals('foo')); | 3310 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3296 unittest.expect(o.previousLink, unittest.equals('foo')); | 3311 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3297 unittest.expect(o.startIndex, unittest.equals(42)); | 3312 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3298 unittest.expect(o.totalResults, unittest.equals(42)); | 3313 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3299 unittest.expect(o.username, unittest.equals('foo')); | 3314 unittest.expect(o.username, unittest.equals('foo')); |
| 3300 } | 3315 } |
| 3301 buildCounterSegments--; | 3316 buildCounterSegments--; |
| 3302 } | 3317 } |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3389 unittest.expect(o.selfLink, unittest.equals('foo')); | 3404 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3390 unittest.expect(o.start_date, unittest.equals('foo')); | 3405 unittest.expect(o.start_date, unittest.equals('foo')); |
| 3391 unittest.expect(o.status, unittest.equals('foo')); | 3406 unittest.expect(o.status, unittest.equals('foo')); |
| 3392 unittest.expect(o.title, unittest.equals('foo')); | 3407 unittest.expect(o.title, unittest.equals('foo')); |
| 3393 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3408 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3394 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 3409 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 3395 } | 3410 } |
| 3396 buildCounterUnsampledReport--; | 3411 buildCounterUnsampledReport--; |
| 3397 } | 3412 } |
| 3398 | 3413 |
| 3399 buildUnnamed1036() { | 3414 buildUnnamed1053() { |
| 3400 var o = new core.List<api.UnsampledReport>(); | 3415 var o = new core.List<api.UnsampledReport>(); |
| 3401 o.add(buildUnsampledReport()); | 3416 o.add(buildUnsampledReport()); |
| 3402 o.add(buildUnsampledReport()); | 3417 o.add(buildUnsampledReport()); |
| 3403 return o; | 3418 return o; |
| 3404 } | 3419 } |
| 3405 | 3420 |
| 3406 checkUnnamed1036(core.List<api.UnsampledReport> o) { | 3421 checkUnnamed1053(core.List<api.UnsampledReport> o) { |
| 3407 unittest.expect(o, unittest.hasLength(2)); | 3422 unittest.expect(o, unittest.hasLength(2)); |
| 3408 checkUnsampledReport(o[0]); | 3423 checkUnsampledReport(o[0]); |
| 3409 checkUnsampledReport(o[1]); | 3424 checkUnsampledReport(o[1]); |
| 3410 } | 3425 } |
| 3411 | 3426 |
| 3412 core.int buildCounterUnsampledReports = 0; | 3427 core.int buildCounterUnsampledReports = 0; |
| 3413 buildUnsampledReports() { | 3428 buildUnsampledReports() { |
| 3414 var o = new api.UnsampledReports(); | 3429 var o = new api.UnsampledReports(); |
| 3415 buildCounterUnsampledReports++; | 3430 buildCounterUnsampledReports++; |
| 3416 if (buildCounterUnsampledReports < 3) { | 3431 if (buildCounterUnsampledReports < 3) { |
| 3417 o.items = buildUnnamed1036(); | 3432 o.items = buildUnnamed1053(); |
| 3418 o.itemsPerPage = 42; | 3433 o.itemsPerPage = 42; |
| 3419 o.kind = "foo"; | 3434 o.kind = "foo"; |
| 3420 o.nextLink = "foo"; | 3435 o.nextLink = "foo"; |
| 3421 o.previousLink = "foo"; | 3436 o.previousLink = "foo"; |
| 3422 o.startIndex = 42; | 3437 o.startIndex = 42; |
| 3423 o.totalResults = 42; | 3438 o.totalResults = 42; |
| 3424 o.username = "foo"; | 3439 o.username = "foo"; |
| 3425 } | 3440 } |
| 3426 buildCounterUnsampledReports--; | 3441 buildCounterUnsampledReports--; |
| 3427 return o; | 3442 return o; |
| 3428 } | 3443 } |
| 3429 | 3444 |
| 3430 checkUnsampledReports(api.UnsampledReports o) { | 3445 checkUnsampledReports(api.UnsampledReports o) { |
| 3431 buildCounterUnsampledReports++; | 3446 buildCounterUnsampledReports++; |
| 3432 if (buildCounterUnsampledReports < 3) { | 3447 if (buildCounterUnsampledReports < 3) { |
| 3433 checkUnnamed1036(o.items); | 3448 checkUnnamed1053(o.items); |
| 3434 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3449 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3435 unittest.expect(o.kind, unittest.equals('foo')); | 3450 unittest.expect(o.kind, unittest.equals('foo')); |
| 3436 unittest.expect(o.nextLink, unittest.equals('foo')); | 3451 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3437 unittest.expect(o.previousLink, unittest.equals('foo')); | 3452 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3438 unittest.expect(o.startIndex, unittest.equals(42)); | 3453 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3439 unittest.expect(o.totalResults, unittest.equals(42)); | 3454 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3440 unittest.expect(o.username, unittest.equals('foo')); | 3455 unittest.expect(o.username, unittest.equals('foo')); |
| 3441 } | 3456 } |
| 3442 buildCounterUnsampledReports--; | 3457 buildCounterUnsampledReports--; |
| 3443 } | 3458 } |
| 3444 | 3459 |
| 3445 buildUnnamed1037() { | 3460 buildUnnamed1054() { |
| 3446 var o = new core.List<core.String>(); | 3461 var o = new core.List<core.String>(); |
| 3447 o.add("foo"); | 3462 o.add("foo"); |
| 3448 o.add("foo"); | 3463 o.add("foo"); |
| 3449 return o; | 3464 return o; |
| 3450 } | 3465 } |
| 3451 | 3466 |
| 3452 checkUnnamed1037(core.List<core.String> o) { | 3467 checkUnnamed1054(core.List<core.String> o) { |
| 3453 unittest.expect(o, unittest.hasLength(2)); | 3468 unittest.expect(o, unittest.hasLength(2)); |
| 3454 unittest.expect(o[0], unittest.equals('foo')); | 3469 unittest.expect(o[0], unittest.equals('foo')); |
| 3455 unittest.expect(o[1], unittest.equals('foo')); | 3470 unittest.expect(o[1], unittest.equals('foo')); |
| 3456 } | 3471 } |
| 3457 | 3472 |
| 3458 core.int buildCounterUpload = 0; | 3473 core.int buildCounterUpload = 0; |
| 3459 buildUpload() { | 3474 buildUpload() { |
| 3460 var o = new api.Upload(); | 3475 var o = new api.Upload(); |
| 3461 buildCounterUpload++; | 3476 buildCounterUpload++; |
| 3462 if (buildCounterUpload < 3) { | 3477 if (buildCounterUpload < 3) { |
| 3463 o.accountId = "foo"; | 3478 o.accountId = "foo"; |
| 3464 o.customDataSourceId = "foo"; | 3479 o.customDataSourceId = "foo"; |
| 3465 o.errors = buildUnnamed1037(); | 3480 o.errors = buildUnnamed1054(); |
| 3466 o.id = "foo"; | 3481 o.id = "foo"; |
| 3467 o.kind = "foo"; | 3482 o.kind = "foo"; |
| 3468 o.status = "foo"; | 3483 o.status = "foo"; |
| 3484 o.uploadTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 3469 } | 3485 } |
| 3470 buildCounterUpload--; | 3486 buildCounterUpload--; |
| 3471 return o; | 3487 return o; |
| 3472 } | 3488 } |
| 3473 | 3489 |
| 3474 checkUpload(api.Upload o) { | 3490 checkUpload(api.Upload o) { |
| 3475 buildCounterUpload++; | 3491 buildCounterUpload++; |
| 3476 if (buildCounterUpload < 3) { | 3492 if (buildCounterUpload < 3) { |
| 3477 unittest.expect(o.accountId, unittest.equals('foo')); | 3493 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3478 unittest.expect(o.customDataSourceId, unittest.equals('foo')); | 3494 unittest.expect(o.customDataSourceId, unittest.equals('foo')); |
| 3479 checkUnnamed1037(o.errors); | 3495 checkUnnamed1054(o.errors); |
| 3480 unittest.expect(o.id, unittest.equals('foo')); | 3496 unittest.expect(o.id, unittest.equals('foo')); |
| 3481 unittest.expect(o.kind, unittest.equals('foo')); | 3497 unittest.expect(o.kind, unittest.equals('foo')); |
| 3482 unittest.expect(o.status, unittest.equals('foo')); | 3498 unittest.expect(o.status, unittest.equals('foo')); |
| 3499 unittest.expect(o.uploadTime, unittest.equals(core.DateTime.parse("2002-02-2
7T14:01:02"))); |
| 3483 } | 3500 } |
| 3484 buildCounterUpload--; | 3501 buildCounterUpload--; |
| 3485 } | 3502 } |
| 3486 | 3503 |
| 3487 buildUnnamed1038() { | 3504 buildUnnamed1055() { |
| 3488 var o = new core.List<api.Upload>(); | 3505 var o = new core.List<api.Upload>(); |
| 3489 o.add(buildUpload()); | 3506 o.add(buildUpload()); |
| 3490 o.add(buildUpload()); | 3507 o.add(buildUpload()); |
| 3491 return o; | 3508 return o; |
| 3492 } | 3509 } |
| 3493 | 3510 |
| 3494 checkUnnamed1038(core.List<api.Upload> o) { | 3511 checkUnnamed1055(core.List<api.Upload> o) { |
| 3495 unittest.expect(o, unittest.hasLength(2)); | 3512 unittest.expect(o, unittest.hasLength(2)); |
| 3496 checkUpload(o[0]); | 3513 checkUpload(o[0]); |
| 3497 checkUpload(o[1]); | 3514 checkUpload(o[1]); |
| 3498 } | 3515 } |
| 3499 | 3516 |
| 3500 core.int buildCounterUploads = 0; | 3517 core.int buildCounterUploads = 0; |
| 3501 buildUploads() { | 3518 buildUploads() { |
| 3502 var o = new api.Uploads(); | 3519 var o = new api.Uploads(); |
| 3503 buildCounterUploads++; | 3520 buildCounterUploads++; |
| 3504 if (buildCounterUploads < 3) { | 3521 if (buildCounterUploads < 3) { |
| 3505 o.items = buildUnnamed1038(); | 3522 o.items = buildUnnamed1055(); |
| 3506 o.itemsPerPage = 42; | 3523 o.itemsPerPage = 42; |
| 3507 o.kind = "foo"; | 3524 o.kind = "foo"; |
| 3508 o.nextLink = "foo"; | 3525 o.nextLink = "foo"; |
| 3509 o.previousLink = "foo"; | 3526 o.previousLink = "foo"; |
| 3510 o.startIndex = 42; | 3527 o.startIndex = 42; |
| 3511 o.totalResults = 42; | 3528 o.totalResults = 42; |
| 3512 } | 3529 } |
| 3513 buildCounterUploads--; | 3530 buildCounterUploads--; |
| 3514 return o; | 3531 return o; |
| 3515 } | 3532 } |
| 3516 | 3533 |
| 3517 checkUploads(api.Uploads o) { | 3534 checkUploads(api.Uploads o) { |
| 3518 buildCounterUploads++; | 3535 buildCounterUploads++; |
| 3519 if (buildCounterUploads < 3) { | 3536 if (buildCounterUploads < 3) { |
| 3520 checkUnnamed1038(o.items); | 3537 checkUnnamed1055(o.items); |
| 3521 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3538 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3522 unittest.expect(o.kind, unittest.equals('foo')); | 3539 unittest.expect(o.kind, unittest.equals('foo')); |
| 3523 unittest.expect(o.nextLink, unittest.equals('foo')); | 3540 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3524 unittest.expect(o.previousLink, unittest.equals('foo')); | 3541 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3525 unittest.expect(o.startIndex, unittest.equals(42)); | 3542 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3526 unittest.expect(o.totalResults, unittest.equals(42)); | 3543 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3527 } | 3544 } |
| 3528 buildCounterUploads--; | 3545 buildCounterUploads--; |
| 3529 } | 3546 } |
| 3530 | 3547 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3573 unittest.expect(o.accountId, unittest.equals('foo')); | 3590 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3574 unittest.expect(o.href, unittest.equals('foo')); | 3591 unittest.expect(o.href, unittest.equals('foo')); |
| 3575 unittest.expect(o.id, unittest.equals('foo')); | 3592 unittest.expect(o.id, unittest.equals('foo')); |
| 3576 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3593 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3577 unittest.expect(o.kind, unittest.equals('foo')); | 3594 unittest.expect(o.kind, unittest.equals('foo')); |
| 3578 unittest.expect(o.name, unittest.equals('foo')); | 3595 unittest.expect(o.name, unittest.equals('foo')); |
| 3579 } | 3596 } |
| 3580 buildCounterWebPropertyRef--; | 3597 buildCounterWebPropertyRef--; |
| 3581 } | 3598 } |
| 3582 | 3599 |
| 3583 buildUnnamed1039() { | 3600 buildUnnamed1056() { |
| 3584 var o = new core.List<api.ProfileSummary>(); | 3601 var o = new core.List<api.ProfileSummary>(); |
| 3585 o.add(buildProfileSummary()); | 3602 o.add(buildProfileSummary()); |
| 3586 o.add(buildProfileSummary()); | 3603 o.add(buildProfileSummary()); |
| 3587 return o; | 3604 return o; |
| 3588 } | 3605 } |
| 3589 | 3606 |
| 3590 checkUnnamed1039(core.List<api.ProfileSummary> o) { | 3607 checkUnnamed1056(core.List<api.ProfileSummary> o) { |
| 3591 unittest.expect(o, unittest.hasLength(2)); | 3608 unittest.expect(o, unittest.hasLength(2)); |
| 3592 checkProfileSummary(o[0]); | 3609 checkProfileSummary(o[0]); |
| 3593 checkProfileSummary(o[1]); | 3610 checkProfileSummary(o[1]); |
| 3594 } | 3611 } |
| 3595 | 3612 |
| 3596 core.int buildCounterWebPropertySummary = 0; | 3613 core.int buildCounterWebPropertySummary = 0; |
| 3597 buildWebPropertySummary() { | 3614 buildWebPropertySummary() { |
| 3598 var o = new api.WebPropertySummary(); | 3615 var o = new api.WebPropertySummary(); |
| 3599 buildCounterWebPropertySummary++; | 3616 buildCounterWebPropertySummary++; |
| 3600 if (buildCounterWebPropertySummary < 3) { | 3617 if (buildCounterWebPropertySummary < 3) { |
| 3601 o.id = "foo"; | 3618 o.id = "foo"; |
| 3602 o.internalWebPropertyId = "foo"; | 3619 o.internalWebPropertyId = "foo"; |
| 3603 o.kind = "foo"; | 3620 o.kind = "foo"; |
| 3604 o.level = "foo"; | 3621 o.level = "foo"; |
| 3605 o.name = "foo"; | 3622 o.name = "foo"; |
| 3606 o.profiles = buildUnnamed1039(); | 3623 o.profiles = buildUnnamed1056(); |
| 3607 o.starred = true; | 3624 o.starred = true; |
| 3608 o.websiteUrl = "foo"; | 3625 o.websiteUrl = "foo"; |
| 3609 } | 3626 } |
| 3610 buildCounterWebPropertySummary--; | 3627 buildCounterWebPropertySummary--; |
| 3611 return o; | 3628 return o; |
| 3612 } | 3629 } |
| 3613 | 3630 |
| 3614 checkWebPropertySummary(api.WebPropertySummary o) { | 3631 checkWebPropertySummary(api.WebPropertySummary o) { |
| 3615 buildCounterWebPropertySummary++; | 3632 buildCounterWebPropertySummary++; |
| 3616 if (buildCounterWebPropertySummary < 3) { | 3633 if (buildCounterWebPropertySummary < 3) { |
| 3617 unittest.expect(o.id, unittest.equals('foo')); | 3634 unittest.expect(o.id, unittest.equals('foo')); |
| 3618 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3635 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3619 unittest.expect(o.kind, unittest.equals('foo')); | 3636 unittest.expect(o.kind, unittest.equals('foo')); |
| 3620 unittest.expect(o.level, unittest.equals('foo')); | 3637 unittest.expect(o.level, unittest.equals('foo')); |
| 3621 unittest.expect(o.name, unittest.equals('foo')); | 3638 unittest.expect(o.name, unittest.equals('foo')); |
| 3622 checkUnnamed1039(o.profiles); | 3639 checkUnnamed1056(o.profiles); |
| 3623 unittest.expect(o.starred, unittest.isTrue); | 3640 unittest.expect(o.starred, unittest.isTrue); |
| 3624 unittest.expect(o.websiteUrl, unittest.equals('foo')); | 3641 unittest.expect(o.websiteUrl, unittest.equals('foo')); |
| 3625 } | 3642 } |
| 3626 buildCounterWebPropertySummary--; | 3643 buildCounterWebPropertySummary--; |
| 3627 } | 3644 } |
| 3628 | 3645 |
| 3629 buildUnnamed1040() { | 3646 buildUnnamed1057() { |
| 3630 var o = new core.List<api.Webproperty>(); | 3647 var o = new core.List<api.Webproperty>(); |
| 3631 o.add(buildWebproperty()); | 3648 o.add(buildWebproperty()); |
| 3632 o.add(buildWebproperty()); | 3649 o.add(buildWebproperty()); |
| 3633 return o; | 3650 return o; |
| 3634 } | 3651 } |
| 3635 | 3652 |
| 3636 checkUnnamed1040(core.List<api.Webproperty> o) { | 3653 checkUnnamed1057(core.List<api.Webproperty> o) { |
| 3637 unittest.expect(o, unittest.hasLength(2)); | 3654 unittest.expect(o, unittest.hasLength(2)); |
| 3638 checkWebproperty(o[0]); | 3655 checkWebproperty(o[0]); |
| 3639 checkWebproperty(o[1]); | 3656 checkWebproperty(o[1]); |
| 3640 } | 3657 } |
| 3641 | 3658 |
| 3642 core.int buildCounterWebproperties = 0; | 3659 core.int buildCounterWebproperties = 0; |
| 3643 buildWebproperties() { | 3660 buildWebproperties() { |
| 3644 var o = new api.Webproperties(); | 3661 var o = new api.Webproperties(); |
| 3645 buildCounterWebproperties++; | 3662 buildCounterWebproperties++; |
| 3646 if (buildCounterWebproperties < 3) { | 3663 if (buildCounterWebproperties < 3) { |
| 3647 o.items = buildUnnamed1040(); | 3664 o.items = buildUnnamed1057(); |
| 3648 o.itemsPerPage = 42; | 3665 o.itemsPerPage = 42; |
| 3649 o.kind = "foo"; | 3666 o.kind = "foo"; |
| 3650 o.nextLink = "foo"; | 3667 o.nextLink = "foo"; |
| 3651 o.previousLink = "foo"; | 3668 o.previousLink = "foo"; |
| 3652 o.startIndex = 42; | 3669 o.startIndex = 42; |
| 3653 o.totalResults = 42; | 3670 o.totalResults = 42; |
| 3654 o.username = "foo"; | 3671 o.username = "foo"; |
| 3655 } | 3672 } |
| 3656 buildCounterWebproperties--; | 3673 buildCounterWebproperties--; |
| 3657 return o; | 3674 return o; |
| 3658 } | 3675 } |
| 3659 | 3676 |
| 3660 checkWebproperties(api.Webproperties o) { | 3677 checkWebproperties(api.Webproperties o) { |
| 3661 buildCounterWebproperties++; | 3678 buildCounterWebproperties++; |
| 3662 if (buildCounterWebproperties < 3) { | 3679 if (buildCounterWebproperties < 3) { |
| 3663 checkUnnamed1040(o.items); | 3680 checkUnnamed1057(o.items); |
| 3664 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3681 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3665 unittest.expect(o.kind, unittest.equals('foo')); | 3682 unittest.expect(o.kind, unittest.equals('foo')); |
| 3666 unittest.expect(o.nextLink, unittest.equals('foo')); | 3683 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3667 unittest.expect(o.previousLink, unittest.equals('foo')); | 3684 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3668 unittest.expect(o.startIndex, unittest.equals(42)); | 3685 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3669 unittest.expect(o.totalResults, unittest.equals(42)); | 3686 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3670 unittest.expect(o.username, unittest.equals('foo')); | 3687 unittest.expect(o.username, unittest.equals('foo')); |
| 3671 } | 3688 } |
| 3672 buildCounterWebproperties--; | 3689 buildCounterWebproperties--; |
| 3673 } | 3690 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3707 | 3724 |
| 3708 checkWebpropertyParentLink(api.WebpropertyParentLink o) { | 3725 checkWebpropertyParentLink(api.WebpropertyParentLink o) { |
| 3709 buildCounterWebpropertyParentLink++; | 3726 buildCounterWebpropertyParentLink++; |
| 3710 if (buildCounterWebpropertyParentLink < 3) { | 3727 if (buildCounterWebpropertyParentLink < 3) { |
| 3711 unittest.expect(o.href, unittest.equals('foo')); | 3728 unittest.expect(o.href, unittest.equals('foo')); |
| 3712 unittest.expect(o.type, unittest.equals('foo')); | 3729 unittest.expect(o.type, unittest.equals('foo')); |
| 3713 } | 3730 } |
| 3714 buildCounterWebpropertyParentLink--; | 3731 buildCounterWebpropertyParentLink--; |
| 3715 } | 3732 } |
| 3716 | 3733 |
| 3717 buildUnnamed1041() { | 3734 buildUnnamed1058() { |
| 3718 var o = new core.List<core.String>(); | 3735 var o = new core.List<core.String>(); |
| 3719 o.add("foo"); | 3736 o.add("foo"); |
| 3720 o.add("foo"); | 3737 o.add("foo"); |
| 3721 return o; | 3738 return o; |
| 3722 } | 3739 } |
| 3723 | 3740 |
| 3724 checkUnnamed1041(core.List<core.String> o) { | 3741 checkUnnamed1058(core.List<core.String> o) { |
| 3725 unittest.expect(o, unittest.hasLength(2)); | 3742 unittest.expect(o, unittest.hasLength(2)); |
| 3726 unittest.expect(o[0], unittest.equals('foo')); | 3743 unittest.expect(o[0], unittest.equals('foo')); |
| 3727 unittest.expect(o[1], unittest.equals('foo')); | 3744 unittest.expect(o[1], unittest.equals('foo')); |
| 3728 } | 3745 } |
| 3729 | 3746 |
| 3730 core.int buildCounterWebpropertyPermissions = 0; | 3747 core.int buildCounterWebpropertyPermissions = 0; |
| 3731 buildWebpropertyPermissions() { | 3748 buildWebpropertyPermissions() { |
| 3732 var o = new api.WebpropertyPermissions(); | 3749 var o = new api.WebpropertyPermissions(); |
| 3733 buildCounterWebpropertyPermissions++; | 3750 buildCounterWebpropertyPermissions++; |
| 3734 if (buildCounterWebpropertyPermissions < 3) { | 3751 if (buildCounterWebpropertyPermissions < 3) { |
| 3735 o.effective = buildUnnamed1041(); | 3752 o.effective = buildUnnamed1058(); |
| 3736 } | 3753 } |
| 3737 buildCounterWebpropertyPermissions--; | 3754 buildCounterWebpropertyPermissions--; |
| 3738 return o; | 3755 return o; |
| 3739 } | 3756 } |
| 3740 | 3757 |
| 3741 checkWebpropertyPermissions(api.WebpropertyPermissions o) { | 3758 checkWebpropertyPermissions(api.WebpropertyPermissions o) { |
| 3742 buildCounterWebpropertyPermissions++; | 3759 buildCounterWebpropertyPermissions++; |
| 3743 if (buildCounterWebpropertyPermissions < 3) { | 3760 if (buildCounterWebpropertyPermissions < 3) { |
| 3744 checkUnnamed1041(o.effective); | 3761 checkUnnamed1058(o.effective); |
| 3745 } | 3762 } |
| 3746 buildCounterWebpropertyPermissions--; | 3763 buildCounterWebpropertyPermissions--; |
| 3747 } | 3764 } |
| 3748 | 3765 |
| 3749 core.int buildCounterWebproperty = 0; | 3766 core.int buildCounterWebproperty = 0; |
| 3750 buildWebproperty() { | 3767 buildWebproperty() { |
| 3751 var o = new api.Webproperty(); | 3768 var o = new api.Webproperty(); |
| 3752 buildCounterWebproperty++; | 3769 buildCounterWebproperty++; |
| 3753 if (buildCounterWebproperty < 3) { | 3770 if (buildCounterWebproperty < 3) { |
| 3754 o.accountId = "foo"; | 3771 o.accountId = "foo"; |
| (...skipping 6683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10438 res.createAccountTicket(arg_request).then(unittest.expectAsync1(((api.Acco
untTicket response) { | 10455 res.createAccountTicket(arg_request).then(unittest.expectAsync1(((api.Acco
untTicket response) { |
| 10439 checkAccountTicket(response); | 10456 checkAccountTicket(response); |
| 10440 }))); | 10457 }))); |
| 10441 }); | 10458 }); |
| 10442 | 10459 |
| 10443 }); | 10460 }); |
| 10444 | 10461 |
| 10445 | 10462 |
| 10446 } | 10463 } |
| 10447 | 10464 |
| OLD | NEW |