| 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:unittest/unittest.dart' as unittest; | 10 import 'package:unittest/unittest.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 buildUnnamed1088() { | 75 buildUnnamed1114() { |
| 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 checkUnnamed1088(core.List<core.String> o) { | 82 checkUnnamed1114(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 = buildUnnamed1088(); | 93 o.effective = buildUnnamed1114(); |
| 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 checkUnnamed1088(o.effective); | 102 checkUnnamed1114(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 buildUnnamed1089() { | 167 buildUnnamed1115() { |
| 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 checkUnnamed1089(core.List<api.AccountSummary> o) { | 174 checkUnnamed1115(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 = buildUnnamed1089(); | 185 o.items = buildUnnamed1115(); |
| 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 checkUnnamed1089(o.items); | 201 checkUnnamed1115(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 buildUnnamed1090() { | 213 buildUnnamed1116() { |
| 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 checkUnnamed1090(core.List<api.WebPropertySummary> o) { | 220 checkUnnamed1116(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 = buildUnnamed1090(); | 235 o.webProperties = buildUnnamed1116(); |
| 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 checkUnnamed1090(o.webProperties); | 248 checkUnnamed1116(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 buildUnnamed1091() { | 282 buildUnnamed1117() { |
| 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 checkUnnamed1091(core.List<api.Account> o) { | 289 checkUnnamed1117(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 = buildUnnamed1091(); | 300 o.items = buildUnnamed1117(); |
| 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 checkUnnamed1091(o.items); | 316 checkUnnamed1117(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 buildUnnamed1092() { | 351 buildUnnamed1118() { |
| 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 checkUnnamed1092(core.List<core.String> o) { | 358 checkUnnamed1118(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 = buildUnnamed1092(); | 369 o.customDataImportUids = buildUnnamed1118(); |
| 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 checkUnnamed1092(o.customDataImportUids); | 378 checkUnnamed1118(o.customDataImportUids); |
| 379 } | 379 } |
| 380 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; | 380 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; |
| 381 } | 381 } |
| 382 | 382 |
| 383 buildUnnamed1093() { | 383 buildUnnamed1119() { |
| 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 checkUnnamed1093(core.Map<core.String, core.String> o) { | 390 checkUnnamed1119(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 = buildUnnamed1093(); | 401 o.attributes = buildUnnamed1119(); |
| 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 checkUnnamed1093(o.attributes); | 412 checkUnnamed1119(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 buildUnnamed1094() { | 419 buildUnnamed1120() { |
| 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 checkUnnamed1094(core.List<core.String> o) { | 426 checkUnnamed1120(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 buildUnnamed1095() { | 432 buildUnnamed1121() { |
| 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 checkUnnamed1095(core.List<api.Column> o) { | 439 checkUnnamed1121(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 = buildUnnamed1094(); | 450 o.attributeNames = buildUnnamed1120(); |
| 451 o.etag = "foo"; | 451 o.etag = "foo"; |
| 452 o.items = buildUnnamed1095(); | 452 o.items = buildUnnamed1121(); |
| 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 checkUnnamed1094(o.attributeNames); | 463 checkUnnamed1120(o.attributeNames); |
| 464 unittest.expect(o.etag, unittest.equals('foo')); | 464 unittest.expect(o.etag, unittest.equals('foo')); |
| 465 checkUnnamed1095(o.items); | 465 checkUnnamed1121(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 buildUnnamed1096() { | 514 buildUnnamed1122() { |
| 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 checkUnnamed1096(core.List<core.String> o) { | 521 checkUnnamed1122(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 } | 525 } |
| 526 | 526 |
| 527 core.int buildCounterCustomDataSource = 0; | 527 core.int buildCounterCustomDataSource = 0; |
| 528 buildCustomDataSource() { | 528 buildCustomDataSource() { |
| 529 var o = new api.CustomDataSource(); | 529 var o = new api.CustomDataSource(); |
| 530 buildCounterCustomDataSource++; | 530 buildCounterCustomDataSource++; |
| 531 if (buildCounterCustomDataSource < 3) { | 531 if (buildCounterCustomDataSource < 3) { |
| 532 o.accountId = "foo"; | 532 o.accountId = "foo"; |
| 533 o.childLink = buildCustomDataSourceChildLink(); | 533 o.childLink = buildCustomDataSourceChildLink(); |
| 534 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 534 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| 535 o.description = "foo"; | 535 o.description = "foo"; |
| 536 o.id = "foo"; | 536 o.id = "foo"; |
| 537 o.importBehavior = "foo"; | 537 o.importBehavior = "foo"; |
| 538 o.kind = "foo"; | 538 o.kind = "foo"; |
| 539 o.name = "foo"; | 539 o.name = "foo"; |
| 540 o.parentLink = buildCustomDataSourceParentLink(); | 540 o.parentLink = buildCustomDataSourceParentLink(); |
| 541 o.profilesLinked = buildUnnamed1096(); | 541 o.profilesLinked = buildUnnamed1122(); |
| 542 o.selfLink = "foo"; | 542 o.selfLink = "foo"; |
| 543 o.type = "foo"; | 543 o.type = "foo"; |
| 544 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 544 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 545 o.uploadType = "foo"; | 545 o.uploadType = "foo"; |
| 546 o.webPropertyId = "foo"; | 546 o.webPropertyId = "foo"; |
| 547 } | 547 } |
| 548 buildCounterCustomDataSource--; | 548 buildCounterCustomDataSource--; |
| 549 return o; | 549 return o; |
| 550 } | 550 } |
| 551 | 551 |
| 552 checkCustomDataSource(api.CustomDataSource o) { | 552 checkCustomDataSource(api.CustomDataSource o) { |
| 553 buildCounterCustomDataSource++; | 553 buildCounterCustomDataSource++; |
| 554 if (buildCounterCustomDataSource < 3) { | 554 if (buildCounterCustomDataSource < 3) { |
| 555 unittest.expect(o.accountId, unittest.equals('foo')); | 555 unittest.expect(o.accountId, unittest.equals('foo')); |
| 556 checkCustomDataSourceChildLink(o.childLink); | 556 checkCustomDataSourceChildLink(o.childLink); |
| 557 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 557 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 558 unittest.expect(o.description, unittest.equals('foo')); | 558 unittest.expect(o.description, unittest.equals('foo')); |
| 559 unittest.expect(o.id, unittest.equals('foo')); | 559 unittest.expect(o.id, unittest.equals('foo')); |
| 560 unittest.expect(o.importBehavior, unittest.equals('foo')); | 560 unittest.expect(o.importBehavior, unittest.equals('foo')); |
| 561 unittest.expect(o.kind, unittest.equals('foo')); | 561 unittest.expect(o.kind, unittest.equals('foo')); |
| 562 unittest.expect(o.name, unittest.equals('foo')); | 562 unittest.expect(o.name, unittest.equals('foo')); |
| 563 checkCustomDataSourceParentLink(o.parentLink); | 563 checkCustomDataSourceParentLink(o.parentLink); |
| 564 checkUnnamed1096(o.profilesLinked); | 564 checkUnnamed1122(o.profilesLinked); |
| 565 unittest.expect(o.selfLink, unittest.equals('foo')); | 565 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 566 unittest.expect(o.type, unittest.equals('foo')); | 566 unittest.expect(o.type, unittest.equals('foo')); |
| 567 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 567 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 568 unittest.expect(o.uploadType, unittest.equals('foo')); | 568 unittest.expect(o.uploadType, unittest.equals('foo')); |
| 569 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 569 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 570 } | 570 } |
| 571 buildCounterCustomDataSource--; | 571 buildCounterCustomDataSource--; |
| 572 } | 572 } |
| 573 | 573 |
| 574 buildUnnamed1097() { | 574 buildUnnamed1123() { |
| 575 var o = new core.List<api.CustomDataSource>(); | 575 var o = new core.List<api.CustomDataSource>(); |
| 576 o.add(buildCustomDataSource()); | 576 o.add(buildCustomDataSource()); |
| 577 o.add(buildCustomDataSource()); | 577 o.add(buildCustomDataSource()); |
| 578 return o; | 578 return o; |
| 579 } | 579 } |
| 580 | 580 |
| 581 checkUnnamed1097(core.List<api.CustomDataSource> o) { | 581 checkUnnamed1123(core.List<api.CustomDataSource> o) { |
| 582 unittest.expect(o, unittest.hasLength(2)); | 582 unittest.expect(o, unittest.hasLength(2)); |
| 583 checkCustomDataSource(o[0]); | 583 checkCustomDataSource(o[0]); |
| 584 checkCustomDataSource(o[1]); | 584 checkCustomDataSource(o[1]); |
| 585 } | 585 } |
| 586 | 586 |
| 587 core.int buildCounterCustomDataSources = 0; | 587 core.int buildCounterCustomDataSources = 0; |
| 588 buildCustomDataSources() { | 588 buildCustomDataSources() { |
| 589 var o = new api.CustomDataSources(); | 589 var o = new api.CustomDataSources(); |
| 590 buildCounterCustomDataSources++; | 590 buildCounterCustomDataSources++; |
| 591 if (buildCounterCustomDataSources < 3) { | 591 if (buildCounterCustomDataSources < 3) { |
| 592 o.items = buildUnnamed1097(); | 592 o.items = buildUnnamed1123(); |
| 593 o.itemsPerPage = 42; | 593 o.itemsPerPage = 42; |
| 594 o.kind = "foo"; | 594 o.kind = "foo"; |
| 595 o.nextLink = "foo"; | 595 o.nextLink = "foo"; |
| 596 o.previousLink = "foo"; | 596 o.previousLink = "foo"; |
| 597 o.startIndex = 42; | 597 o.startIndex = 42; |
| 598 o.totalResults = 42; | 598 o.totalResults = 42; |
| 599 o.username = "foo"; | 599 o.username = "foo"; |
| 600 } | 600 } |
| 601 buildCounterCustomDataSources--; | 601 buildCounterCustomDataSources--; |
| 602 return o; | 602 return o; |
| 603 } | 603 } |
| 604 | 604 |
| 605 checkCustomDataSources(api.CustomDataSources o) { | 605 checkCustomDataSources(api.CustomDataSources o) { |
| 606 buildCounterCustomDataSources++; | 606 buildCounterCustomDataSources++; |
| 607 if (buildCounterCustomDataSources < 3) { | 607 if (buildCounterCustomDataSources < 3) { |
| 608 checkUnnamed1097(o.items); | 608 checkUnnamed1123(o.items); |
| 609 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 609 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 610 unittest.expect(o.kind, unittest.equals('foo')); | 610 unittest.expect(o.kind, unittest.equals('foo')); |
| 611 unittest.expect(o.nextLink, unittest.equals('foo')); | 611 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 612 unittest.expect(o.previousLink, unittest.equals('foo')); | 612 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 613 unittest.expect(o.startIndex, unittest.equals(42)); | 613 unittest.expect(o.startIndex, unittest.equals(42)); |
| 614 unittest.expect(o.totalResults, unittest.equals(42)); | 614 unittest.expect(o.totalResults, unittest.equals(42)); |
| 615 unittest.expect(o.username, unittest.equals('foo')); | 615 unittest.expect(o.username, unittest.equals('foo')); |
| 616 } | 616 } |
| 617 buildCounterCustomDataSources--; | 617 buildCounterCustomDataSources--; |
| 618 } | 618 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 unittest.expect(o.name, unittest.equals('foo')); | 672 unittest.expect(o.name, unittest.equals('foo')); |
| 673 checkCustomDimensionParentLink(o.parentLink); | 673 checkCustomDimensionParentLink(o.parentLink); |
| 674 unittest.expect(o.scope, unittest.equals('foo')); | 674 unittest.expect(o.scope, unittest.equals('foo')); |
| 675 unittest.expect(o.selfLink, unittest.equals('foo')); | 675 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 676 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 676 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 677 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 677 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 678 } | 678 } |
| 679 buildCounterCustomDimension--; | 679 buildCounterCustomDimension--; |
| 680 } | 680 } |
| 681 | 681 |
| 682 buildUnnamed1098() { | 682 buildUnnamed1124() { |
| 683 var o = new core.List<api.CustomDimension>(); | 683 var o = new core.List<api.CustomDimension>(); |
| 684 o.add(buildCustomDimension()); | 684 o.add(buildCustomDimension()); |
| 685 o.add(buildCustomDimension()); | 685 o.add(buildCustomDimension()); |
| 686 return o; | 686 return o; |
| 687 } | 687 } |
| 688 | 688 |
| 689 checkUnnamed1098(core.List<api.CustomDimension> o) { | 689 checkUnnamed1124(core.List<api.CustomDimension> o) { |
| 690 unittest.expect(o, unittest.hasLength(2)); | 690 unittest.expect(o, unittest.hasLength(2)); |
| 691 checkCustomDimension(o[0]); | 691 checkCustomDimension(o[0]); |
| 692 checkCustomDimension(o[1]); | 692 checkCustomDimension(o[1]); |
| 693 } | 693 } |
| 694 | 694 |
| 695 core.int buildCounterCustomDimensions = 0; | 695 core.int buildCounterCustomDimensions = 0; |
| 696 buildCustomDimensions() { | 696 buildCustomDimensions() { |
| 697 var o = new api.CustomDimensions(); | 697 var o = new api.CustomDimensions(); |
| 698 buildCounterCustomDimensions++; | 698 buildCounterCustomDimensions++; |
| 699 if (buildCounterCustomDimensions < 3) { | 699 if (buildCounterCustomDimensions < 3) { |
| 700 o.items = buildUnnamed1098(); | 700 o.items = buildUnnamed1124(); |
| 701 o.itemsPerPage = 42; | 701 o.itemsPerPage = 42; |
| 702 o.kind = "foo"; | 702 o.kind = "foo"; |
| 703 o.nextLink = "foo"; | 703 o.nextLink = "foo"; |
| 704 o.previousLink = "foo"; | 704 o.previousLink = "foo"; |
| 705 o.startIndex = 42; | 705 o.startIndex = 42; |
| 706 o.totalResults = 42; | 706 o.totalResults = 42; |
| 707 o.username = "foo"; | 707 o.username = "foo"; |
| 708 } | 708 } |
| 709 buildCounterCustomDimensions--; | 709 buildCounterCustomDimensions--; |
| 710 return o; | 710 return o; |
| 711 } | 711 } |
| 712 | 712 |
| 713 checkCustomDimensions(api.CustomDimensions o) { | 713 checkCustomDimensions(api.CustomDimensions o) { |
| 714 buildCounterCustomDimensions++; | 714 buildCounterCustomDimensions++; |
| 715 if (buildCounterCustomDimensions < 3) { | 715 if (buildCounterCustomDimensions < 3) { |
| 716 checkUnnamed1098(o.items); | 716 checkUnnamed1124(o.items); |
| 717 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 717 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 718 unittest.expect(o.kind, unittest.equals('foo')); | 718 unittest.expect(o.kind, unittest.equals('foo')); |
| 719 unittest.expect(o.nextLink, unittest.equals('foo')); | 719 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 720 unittest.expect(o.previousLink, unittest.equals('foo')); | 720 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 721 unittest.expect(o.startIndex, unittest.equals(42)); | 721 unittest.expect(o.startIndex, unittest.equals(42)); |
| 722 unittest.expect(o.totalResults, unittest.equals(42)); | 722 unittest.expect(o.totalResults, unittest.equals(42)); |
| 723 unittest.expect(o.username, unittest.equals('foo')); | 723 unittest.expect(o.username, unittest.equals('foo')); |
| 724 } | 724 } |
| 725 buildCounterCustomDimensions--; | 725 buildCounterCustomDimensions--; |
| 726 } | 726 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 checkCustomMetricParentLink(o.parentLink); | 786 checkCustomMetricParentLink(o.parentLink); |
| 787 unittest.expect(o.scope, unittest.equals('foo')); | 787 unittest.expect(o.scope, unittest.equals('foo')); |
| 788 unittest.expect(o.selfLink, unittest.equals('foo')); | 788 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 789 unittest.expect(o.type, unittest.equals('foo')); | 789 unittest.expect(o.type, unittest.equals('foo')); |
| 790 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 790 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 791 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 791 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 792 } | 792 } |
| 793 buildCounterCustomMetric--; | 793 buildCounterCustomMetric--; |
| 794 } | 794 } |
| 795 | 795 |
| 796 buildUnnamed1099() { | 796 buildUnnamed1125() { |
| 797 var o = new core.List<api.CustomMetric>(); | 797 var o = new core.List<api.CustomMetric>(); |
| 798 o.add(buildCustomMetric()); | 798 o.add(buildCustomMetric()); |
| 799 o.add(buildCustomMetric()); | 799 o.add(buildCustomMetric()); |
| 800 return o; | 800 return o; |
| 801 } | 801 } |
| 802 | 802 |
| 803 checkUnnamed1099(core.List<api.CustomMetric> o) { | 803 checkUnnamed1125(core.List<api.CustomMetric> o) { |
| 804 unittest.expect(o, unittest.hasLength(2)); | 804 unittest.expect(o, unittest.hasLength(2)); |
| 805 checkCustomMetric(o[0]); | 805 checkCustomMetric(o[0]); |
| 806 checkCustomMetric(o[1]); | 806 checkCustomMetric(o[1]); |
| 807 } | 807 } |
| 808 | 808 |
| 809 core.int buildCounterCustomMetrics = 0; | 809 core.int buildCounterCustomMetrics = 0; |
| 810 buildCustomMetrics() { | 810 buildCustomMetrics() { |
| 811 var o = new api.CustomMetrics(); | 811 var o = new api.CustomMetrics(); |
| 812 buildCounterCustomMetrics++; | 812 buildCounterCustomMetrics++; |
| 813 if (buildCounterCustomMetrics < 3) { | 813 if (buildCounterCustomMetrics < 3) { |
| 814 o.items = buildUnnamed1099(); | 814 o.items = buildUnnamed1125(); |
| 815 o.itemsPerPage = 42; | 815 o.itemsPerPage = 42; |
| 816 o.kind = "foo"; | 816 o.kind = "foo"; |
| 817 o.nextLink = "foo"; | 817 o.nextLink = "foo"; |
| 818 o.previousLink = "foo"; | 818 o.previousLink = "foo"; |
| 819 o.startIndex = 42; | 819 o.startIndex = 42; |
| 820 o.totalResults = 42; | 820 o.totalResults = 42; |
| 821 o.username = "foo"; | 821 o.username = "foo"; |
| 822 } | 822 } |
| 823 buildCounterCustomMetrics--; | 823 buildCounterCustomMetrics--; |
| 824 return o; | 824 return o; |
| 825 } | 825 } |
| 826 | 826 |
| 827 checkCustomMetrics(api.CustomMetrics o) { | 827 checkCustomMetrics(api.CustomMetrics o) { |
| 828 buildCounterCustomMetrics++; | 828 buildCounterCustomMetrics++; |
| 829 if (buildCounterCustomMetrics < 3) { | 829 if (buildCounterCustomMetrics < 3) { |
| 830 checkUnnamed1099(o.items); | 830 checkUnnamed1125(o.items); |
| 831 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 831 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 832 unittest.expect(o.kind, unittest.equals('foo')); | 832 unittest.expect(o.kind, unittest.equals('foo')); |
| 833 unittest.expect(o.nextLink, unittest.equals('foo')); | 833 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 834 unittest.expect(o.previousLink, unittest.equals('foo')); | 834 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 835 unittest.expect(o.startIndex, unittest.equals(42)); | 835 unittest.expect(o.startIndex, unittest.equals(42)); |
| 836 unittest.expect(o.totalResults, unittest.equals(42)); | 836 unittest.expect(o.totalResults, unittest.equals(42)); |
| 837 unittest.expect(o.username, unittest.equals('foo')); | 837 unittest.expect(o.username, unittest.equals('foo')); |
| 838 } | 838 } |
| 839 buildCounterCustomMetrics--; | 839 buildCounterCustomMetrics--; |
| 840 } | 840 } |
| 841 | 841 |
| 842 buildUnnamed1100() { | 842 buildUnnamed1126() { |
| 843 var o = new core.List<api.AdWordsAccount>(); | 843 var o = new core.List<api.AdWordsAccount>(); |
| 844 o.add(buildAdWordsAccount()); | 844 o.add(buildAdWordsAccount()); |
| 845 o.add(buildAdWordsAccount()); | 845 o.add(buildAdWordsAccount()); |
| 846 return o; | 846 return o; |
| 847 } | 847 } |
| 848 | 848 |
| 849 checkUnnamed1100(core.List<api.AdWordsAccount> o) { | 849 checkUnnamed1126(core.List<api.AdWordsAccount> o) { |
| 850 unittest.expect(o, unittest.hasLength(2)); | 850 unittest.expect(o, unittest.hasLength(2)); |
| 851 checkAdWordsAccount(o[0]); | 851 checkAdWordsAccount(o[0]); |
| 852 checkAdWordsAccount(o[1]); | 852 checkAdWordsAccount(o[1]); |
| 853 } | 853 } |
| 854 | 854 |
| 855 core.int buildCounterEntityAdWordsLinkEntity = 0; | 855 core.int buildCounterEntityAdWordsLinkEntity = 0; |
| 856 buildEntityAdWordsLinkEntity() { | 856 buildEntityAdWordsLinkEntity() { |
| 857 var o = new api.EntityAdWordsLinkEntity(); | 857 var o = new api.EntityAdWordsLinkEntity(); |
| 858 buildCounterEntityAdWordsLinkEntity++; | 858 buildCounterEntityAdWordsLinkEntity++; |
| 859 if (buildCounterEntityAdWordsLinkEntity < 3) { | 859 if (buildCounterEntityAdWordsLinkEntity < 3) { |
| 860 o.webPropertyRef = buildWebPropertyRef(); | 860 o.webPropertyRef = buildWebPropertyRef(); |
| 861 } | 861 } |
| 862 buildCounterEntityAdWordsLinkEntity--; | 862 buildCounterEntityAdWordsLinkEntity--; |
| 863 return o; | 863 return o; |
| 864 } | 864 } |
| 865 | 865 |
| 866 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { | 866 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { |
| 867 buildCounterEntityAdWordsLinkEntity++; | 867 buildCounterEntityAdWordsLinkEntity++; |
| 868 if (buildCounterEntityAdWordsLinkEntity < 3) { | 868 if (buildCounterEntityAdWordsLinkEntity < 3) { |
| 869 checkWebPropertyRef(o.webPropertyRef); | 869 checkWebPropertyRef(o.webPropertyRef); |
| 870 } | 870 } |
| 871 buildCounterEntityAdWordsLinkEntity--; | 871 buildCounterEntityAdWordsLinkEntity--; |
| 872 } | 872 } |
| 873 | 873 |
| 874 buildUnnamed1101() { | 874 buildUnnamed1127() { |
| 875 var o = new core.List<core.String>(); | 875 var o = new core.List<core.String>(); |
| 876 o.add("foo"); | 876 o.add("foo"); |
| 877 o.add("foo"); | 877 o.add("foo"); |
| 878 return o; | 878 return o; |
| 879 } | 879 } |
| 880 | 880 |
| 881 checkUnnamed1101(core.List<core.String> o) { | 881 checkUnnamed1127(core.List<core.String> o) { |
| 882 unittest.expect(o, unittest.hasLength(2)); | 882 unittest.expect(o, unittest.hasLength(2)); |
| 883 unittest.expect(o[0], unittest.equals('foo')); | 883 unittest.expect(o[0], unittest.equals('foo')); |
| 884 unittest.expect(o[1], unittest.equals('foo')); | 884 unittest.expect(o[1], unittest.equals('foo')); |
| 885 } | 885 } |
| 886 | 886 |
| 887 core.int buildCounterEntityAdWordsLink = 0; | 887 core.int buildCounterEntityAdWordsLink = 0; |
| 888 buildEntityAdWordsLink() { | 888 buildEntityAdWordsLink() { |
| 889 var o = new api.EntityAdWordsLink(); | 889 var o = new api.EntityAdWordsLink(); |
| 890 buildCounterEntityAdWordsLink++; | 890 buildCounterEntityAdWordsLink++; |
| 891 if (buildCounterEntityAdWordsLink < 3) { | 891 if (buildCounterEntityAdWordsLink < 3) { |
| 892 o.adWordsAccounts = buildUnnamed1100(); | 892 o.adWordsAccounts = buildUnnamed1126(); |
| 893 o.entity = buildEntityAdWordsLinkEntity(); | 893 o.entity = buildEntityAdWordsLinkEntity(); |
| 894 o.id = "foo"; | 894 o.id = "foo"; |
| 895 o.kind = "foo"; | 895 o.kind = "foo"; |
| 896 o.name = "foo"; | 896 o.name = "foo"; |
| 897 o.profileIds = buildUnnamed1101(); | 897 o.profileIds = buildUnnamed1127(); |
| 898 o.selfLink = "foo"; | 898 o.selfLink = "foo"; |
| 899 } | 899 } |
| 900 buildCounterEntityAdWordsLink--; | 900 buildCounterEntityAdWordsLink--; |
| 901 return o; | 901 return o; |
| 902 } | 902 } |
| 903 | 903 |
| 904 checkEntityAdWordsLink(api.EntityAdWordsLink o) { | 904 checkEntityAdWordsLink(api.EntityAdWordsLink o) { |
| 905 buildCounterEntityAdWordsLink++; | 905 buildCounterEntityAdWordsLink++; |
| 906 if (buildCounterEntityAdWordsLink < 3) { | 906 if (buildCounterEntityAdWordsLink < 3) { |
| 907 checkUnnamed1100(o.adWordsAccounts); | 907 checkUnnamed1126(o.adWordsAccounts); |
| 908 checkEntityAdWordsLinkEntity(o.entity); | 908 checkEntityAdWordsLinkEntity(o.entity); |
| 909 unittest.expect(o.id, unittest.equals('foo')); | 909 unittest.expect(o.id, unittest.equals('foo')); |
| 910 unittest.expect(o.kind, unittest.equals('foo')); | 910 unittest.expect(o.kind, unittest.equals('foo')); |
| 911 unittest.expect(o.name, unittest.equals('foo')); | 911 unittest.expect(o.name, unittest.equals('foo')); |
| 912 checkUnnamed1101(o.profileIds); | 912 checkUnnamed1127(o.profileIds); |
| 913 unittest.expect(o.selfLink, unittest.equals('foo')); | 913 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 914 } | 914 } |
| 915 buildCounterEntityAdWordsLink--; | 915 buildCounterEntityAdWordsLink--; |
| 916 } | 916 } |
| 917 | 917 |
| 918 buildUnnamed1102() { | 918 buildUnnamed1128() { |
| 919 var o = new core.List<api.EntityAdWordsLink>(); | 919 var o = new core.List<api.EntityAdWordsLink>(); |
| 920 o.add(buildEntityAdWordsLink()); | 920 o.add(buildEntityAdWordsLink()); |
| 921 o.add(buildEntityAdWordsLink()); | 921 o.add(buildEntityAdWordsLink()); |
| 922 return o; | 922 return o; |
| 923 } | 923 } |
| 924 | 924 |
| 925 checkUnnamed1102(core.List<api.EntityAdWordsLink> o) { | 925 checkUnnamed1128(core.List<api.EntityAdWordsLink> o) { |
| 926 unittest.expect(o, unittest.hasLength(2)); | 926 unittest.expect(o, unittest.hasLength(2)); |
| 927 checkEntityAdWordsLink(o[0]); | 927 checkEntityAdWordsLink(o[0]); |
| 928 checkEntityAdWordsLink(o[1]); | 928 checkEntityAdWordsLink(o[1]); |
| 929 } | 929 } |
| 930 | 930 |
| 931 core.int buildCounterEntityAdWordsLinks = 0; | 931 core.int buildCounterEntityAdWordsLinks = 0; |
| 932 buildEntityAdWordsLinks() { | 932 buildEntityAdWordsLinks() { |
| 933 var o = new api.EntityAdWordsLinks(); | 933 var o = new api.EntityAdWordsLinks(); |
| 934 buildCounterEntityAdWordsLinks++; | 934 buildCounterEntityAdWordsLinks++; |
| 935 if (buildCounterEntityAdWordsLinks < 3) { | 935 if (buildCounterEntityAdWordsLinks < 3) { |
| 936 o.items = buildUnnamed1102(); | 936 o.items = buildUnnamed1128(); |
| 937 o.itemsPerPage = 42; | 937 o.itemsPerPage = 42; |
| 938 o.kind = "foo"; | 938 o.kind = "foo"; |
| 939 o.nextLink = "foo"; | 939 o.nextLink = "foo"; |
| 940 o.previousLink = "foo"; | 940 o.previousLink = "foo"; |
| 941 o.startIndex = 42; | 941 o.startIndex = 42; |
| 942 o.totalResults = 42; | 942 o.totalResults = 42; |
| 943 } | 943 } |
| 944 buildCounterEntityAdWordsLinks--; | 944 buildCounterEntityAdWordsLinks--; |
| 945 return o; | 945 return o; |
| 946 } | 946 } |
| 947 | 947 |
| 948 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { | 948 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { |
| 949 buildCounterEntityAdWordsLinks++; | 949 buildCounterEntityAdWordsLinks++; |
| 950 if (buildCounterEntityAdWordsLinks < 3) { | 950 if (buildCounterEntityAdWordsLinks < 3) { |
| 951 checkUnnamed1102(o.items); | 951 checkUnnamed1128(o.items); |
| 952 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 952 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 953 unittest.expect(o.kind, unittest.equals('foo')); | 953 unittest.expect(o.kind, unittest.equals('foo')); |
| 954 unittest.expect(o.nextLink, unittest.equals('foo')); | 954 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 955 unittest.expect(o.previousLink, unittest.equals('foo')); | 955 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 956 unittest.expect(o.startIndex, unittest.equals(42)); | 956 unittest.expect(o.startIndex, unittest.equals(42)); |
| 957 unittest.expect(o.totalResults, unittest.equals(42)); | 957 unittest.expect(o.totalResults, unittest.equals(42)); |
| 958 } | 958 } |
| 959 buildCounterEntityAdWordsLinks--; | 959 buildCounterEntityAdWordsLinks--; |
| 960 } | 960 } |
| 961 | 961 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 975 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { | 975 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { |
| 976 buildCounterEntityUserLinkEntity++; | 976 buildCounterEntityUserLinkEntity++; |
| 977 if (buildCounterEntityUserLinkEntity < 3) { | 977 if (buildCounterEntityUserLinkEntity < 3) { |
| 978 checkAccountRef(o.accountRef); | 978 checkAccountRef(o.accountRef); |
| 979 checkProfileRef(o.profileRef); | 979 checkProfileRef(o.profileRef); |
| 980 checkWebPropertyRef(o.webPropertyRef); | 980 checkWebPropertyRef(o.webPropertyRef); |
| 981 } | 981 } |
| 982 buildCounterEntityUserLinkEntity--; | 982 buildCounterEntityUserLinkEntity--; |
| 983 } | 983 } |
| 984 | 984 |
| 985 buildUnnamed1103() { | 985 buildUnnamed1129() { |
| 986 var o = new core.List<core.String>(); | 986 var o = new core.List<core.String>(); |
| 987 o.add("foo"); | 987 o.add("foo"); |
| 988 o.add("foo"); | 988 o.add("foo"); |
| 989 return o; | 989 return o; |
| 990 } | 990 } |
| 991 | 991 |
| 992 checkUnnamed1103(core.List<core.String> o) { | 992 checkUnnamed1129(core.List<core.String> o) { |
| 993 unittest.expect(o, unittest.hasLength(2)); | 993 unittest.expect(o, unittest.hasLength(2)); |
| 994 unittest.expect(o[0], unittest.equals('foo')); | 994 unittest.expect(o[0], unittest.equals('foo')); |
| 995 unittest.expect(o[1], unittest.equals('foo')); | 995 unittest.expect(o[1], unittest.equals('foo')); |
| 996 } | 996 } |
| 997 | 997 |
| 998 buildUnnamed1104() { | 998 buildUnnamed1130() { |
| 999 var o = new core.List<core.String>(); | 999 var o = new core.List<core.String>(); |
| 1000 o.add("foo"); | 1000 o.add("foo"); |
| 1001 o.add("foo"); | 1001 o.add("foo"); |
| 1002 return o; | 1002 return o; |
| 1003 } | 1003 } |
| 1004 | 1004 |
| 1005 checkUnnamed1104(core.List<core.String> o) { | 1005 checkUnnamed1130(core.List<core.String> o) { |
| 1006 unittest.expect(o, unittest.hasLength(2)); | 1006 unittest.expect(o, unittest.hasLength(2)); |
| 1007 unittest.expect(o[0], unittest.equals('foo')); | 1007 unittest.expect(o[0], unittest.equals('foo')); |
| 1008 unittest.expect(o[1], unittest.equals('foo')); | 1008 unittest.expect(o[1], unittest.equals('foo')); |
| 1009 } | 1009 } |
| 1010 | 1010 |
| 1011 core.int buildCounterEntityUserLinkPermissions = 0; | 1011 core.int buildCounterEntityUserLinkPermissions = 0; |
| 1012 buildEntityUserLinkPermissions() { | 1012 buildEntityUserLinkPermissions() { |
| 1013 var o = new api.EntityUserLinkPermissions(); | 1013 var o = new api.EntityUserLinkPermissions(); |
| 1014 buildCounterEntityUserLinkPermissions++; | 1014 buildCounterEntityUserLinkPermissions++; |
| 1015 if (buildCounterEntityUserLinkPermissions < 3) { | 1015 if (buildCounterEntityUserLinkPermissions < 3) { |
| 1016 o.effective = buildUnnamed1103(); | 1016 o.effective = buildUnnamed1129(); |
| 1017 o.local = buildUnnamed1104(); | 1017 o.local = buildUnnamed1130(); |
| 1018 } | 1018 } |
| 1019 buildCounterEntityUserLinkPermissions--; | 1019 buildCounterEntityUserLinkPermissions--; |
| 1020 return o; | 1020 return o; |
| 1021 } | 1021 } |
| 1022 | 1022 |
| 1023 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { | 1023 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { |
| 1024 buildCounterEntityUserLinkPermissions++; | 1024 buildCounterEntityUserLinkPermissions++; |
| 1025 if (buildCounterEntityUserLinkPermissions < 3) { | 1025 if (buildCounterEntityUserLinkPermissions < 3) { |
| 1026 checkUnnamed1103(o.effective); | 1026 checkUnnamed1129(o.effective); |
| 1027 checkUnnamed1104(o.local); | 1027 checkUnnamed1130(o.local); |
| 1028 } | 1028 } |
| 1029 buildCounterEntityUserLinkPermissions--; | 1029 buildCounterEntityUserLinkPermissions--; |
| 1030 } | 1030 } |
| 1031 | 1031 |
| 1032 core.int buildCounterEntityUserLink = 0; | 1032 core.int buildCounterEntityUserLink = 0; |
| 1033 buildEntityUserLink() { | 1033 buildEntityUserLink() { |
| 1034 var o = new api.EntityUserLink(); | 1034 var o = new api.EntityUserLink(); |
| 1035 buildCounterEntityUserLink++; | 1035 buildCounterEntityUserLink++; |
| 1036 if (buildCounterEntityUserLink < 3) { | 1036 if (buildCounterEntityUserLink < 3) { |
| 1037 o.entity = buildEntityUserLinkEntity(); | 1037 o.entity = buildEntityUserLinkEntity(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1051 checkEntityUserLinkEntity(o.entity); | 1051 checkEntityUserLinkEntity(o.entity); |
| 1052 unittest.expect(o.id, unittest.equals('foo')); | 1052 unittest.expect(o.id, unittest.equals('foo')); |
| 1053 unittest.expect(o.kind, unittest.equals('foo')); | 1053 unittest.expect(o.kind, unittest.equals('foo')); |
| 1054 checkEntityUserLinkPermissions(o.permissions); | 1054 checkEntityUserLinkPermissions(o.permissions); |
| 1055 unittest.expect(o.selfLink, unittest.equals('foo')); | 1055 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1056 checkUserRef(o.userRef); | 1056 checkUserRef(o.userRef); |
| 1057 } | 1057 } |
| 1058 buildCounterEntityUserLink--; | 1058 buildCounterEntityUserLink--; |
| 1059 } | 1059 } |
| 1060 | 1060 |
| 1061 buildUnnamed1105() { | 1061 buildUnnamed1131() { |
| 1062 var o = new core.List<api.EntityUserLink>(); | 1062 var o = new core.List<api.EntityUserLink>(); |
| 1063 o.add(buildEntityUserLink()); | 1063 o.add(buildEntityUserLink()); |
| 1064 o.add(buildEntityUserLink()); | 1064 o.add(buildEntityUserLink()); |
| 1065 return o; | 1065 return o; |
| 1066 } | 1066 } |
| 1067 | 1067 |
| 1068 checkUnnamed1105(core.List<api.EntityUserLink> o) { | 1068 checkUnnamed1131(core.List<api.EntityUserLink> o) { |
| 1069 unittest.expect(o, unittest.hasLength(2)); | 1069 unittest.expect(o, unittest.hasLength(2)); |
| 1070 checkEntityUserLink(o[0]); | 1070 checkEntityUserLink(o[0]); |
| 1071 checkEntityUserLink(o[1]); | 1071 checkEntityUserLink(o[1]); |
| 1072 } | 1072 } |
| 1073 | 1073 |
| 1074 core.int buildCounterEntityUserLinks = 0; | 1074 core.int buildCounterEntityUserLinks = 0; |
| 1075 buildEntityUserLinks() { | 1075 buildEntityUserLinks() { |
| 1076 var o = new api.EntityUserLinks(); | 1076 var o = new api.EntityUserLinks(); |
| 1077 buildCounterEntityUserLinks++; | 1077 buildCounterEntityUserLinks++; |
| 1078 if (buildCounterEntityUserLinks < 3) { | 1078 if (buildCounterEntityUserLinks < 3) { |
| 1079 o.items = buildUnnamed1105(); | 1079 o.items = buildUnnamed1131(); |
| 1080 o.itemsPerPage = 42; | 1080 o.itemsPerPage = 42; |
| 1081 o.kind = "foo"; | 1081 o.kind = "foo"; |
| 1082 o.nextLink = "foo"; | 1082 o.nextLink = "foo"; |
| 1083 o.previousLink = "foo"; | 1083 o.previousLink = "foo"; |
| 1084 o.startIndex = 42; | 1084 o.startIndex = 42; |
| 1085 o.totalResults = 42; | 1085 o.totalResults = 42; |
| 1086 } | 1086 } |
| 1087 buildCounterEntityUserLinks--; | 1087 buildCounterEntityUserLinks--; |
| 1088 return o; | 1088 return o; |
| 1089 } | 1089 } |
| 1090 | 1090 |
| 1091 checkEntityUserLinks(api.EntityUserLinks o) { | 1091 checkEntityUserLinks(api.EntityUserLinks o) { |
| 1092 buildCounterEntityUserLinks++; | 1092 buildCounterEntityUserLinks++; |
| 1093 if (buildCounterEntityUserLinks < 3) { | 1093 if (buildCounterEntityUserLinks < 3) { |
| 1094 checkUnnamed1105(o.items); | 1094 checkUnnamed1131(o.items); |
| 1095 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1095 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1096 unittest.expect(o.kind, unittest.equals('foo')); | 1096 unittest.expect(o.kind, unittest.equals('foo')); |
| 1097 unittest.expect(o.nextLink, unittest.equals('foo')); | 1097 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1098 unittest.expect(o.previousLink, unittest.equals('foo')); | 1098 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1099 unittest.expect(o.startIndex, unittest.equals(42)); | 1099 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1100 unittest.expect(o.totalResults, unittest.equals(42)); | 1100 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1101 } | 1101 } |
| 1102 buildCounterEntityUserLinks--; | 1102 buildCounterEntityUserLinks--; |
| 1103 } | 1103 } |
| 1104 | 1104 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 if (buildCounterExperimentVariations < 3) { | 1143 if (buildCounterExperimentVariations < 3) { |
| 1144 unittest.expect(o.name, unittest.equals('foo')); | 1144 unittest.expect(o.name, unittest.equals('foo')); |
| 1145 unittest.expect(o.status, unittest.equals('foo')); | 1145 unittest.expect(o.status, unittest.equals('foo')); |
| 1146 unittest.expect(o.url, unittest.equals('foo')); | 1146 unittest.expect(o.url, unittest.equals('foo')); |
| 1147 unittest.expect(o.weight, unittest.equals(42.0)); | 1147 unittest.expect(o.weight, unittest.equals(42.0)); |
| 1148 unittest.expect(o.won, unittest.isTrue); | 1148 unittest.expect(o.won, unittest.isTrue); |
| 1149 } | 1149 } |
| 1150 buildCounterExperimentVariations--; | 1150 buildCounterExperimentVariations--; |
| 1151 } | 1151 } |
| 1152 | 1152 |
| 1153 buildUnnamed1106() { | 1153 buildUnnamed1132() { |
| 1154 var o = new core.List<api.ExperimentVariations>(); | 1154 var o = new core.List<api.ExperimentVariations>(); |
| 1155 o.add(buildExperimentVariations()); | 1155 o.add(buildExperimentVariations()); |
| 1156 o.add(buildExperimentVariations()); | 1156 o.add(buildExperimentVariations()); |
| 1157 return o; | 1157 return o; |
| 1158 } | 1158 } |
| 1159 | 1159 |
| 1160 checkUnnamed1106(core.List<api.ExperimentVariations> o) { | 1160 checkUnnamed1132(core.List<api.ExperimentVariations> o) { |
| 1161 unittest.expect(o, unittest.hasLength(2)); | 1161 unittest.expect(o, unittest.hasLength(2)); |
| 1162 checkExperimentVariations(o[0]); | 1162 checkExperimentVariations(o[0]); |
| 1163 checkExperimentVariations(o[1]); | 1163 checkExperimentVariations(o[1]); |
| 1164 } | 1164 } |
| 1165 | 1165 |
| 1166 core.int buildCounterExperiment = 0; | 1166 core.int buildCounterExperiment = 0; |
| 1167 buildExperiment() { | 1167 buildExperiment() { |
| 1168 var o = new api.Experiment(); | 1168 var o = new api.Experiment(); |
| 1169 buildCounterExperiment++; | 1169 buildCounterExperiment++; |
| 1170 if (buildCounterExperiment < 3) { | 1170 if (buildCounterExperiment < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1185 o.profileId = "foo"; | 1185 o.profileId = "foo"; |
| 1186 o.reasonExperimentEnded = "foo"; | 1186 o.reasonExperimentEnded = "foo"; |
| 1187 o.rewriteVariationUrlsAsOriginal = true; | 1187 o.rewriteVariationUrlsAsOriginal = true; |
| 1188 o.selfLink = "foo"; | 1188 o.selfLink = "foo"; |
| 1189 o.servingFramework = "foo"; | 1189 o.servingFramework = "foo"; |
| 1190 o.snippet = "foo"; | 1190 o.snippet = "foo"; |
| 1191 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 1191 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 1192 o.status = "foo"; | 1192 o.status = "foo"; |
| 1193 o.trafficCoverage = 42.0; | 1193 o.trafficCoverage = 42.0; |
| 1194 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 1194 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 1195 o.variations = buildUnnamed1106(); | 1195 o.variations = buildUnnamed1132(); |
| 1196 o.webPropertyId = "foo"; | 1196 o.webPropertyId = "foo"; |
| 1197 o.winnerConfidenceLevel = 42.0; | 1197 o.winnerConfidenceLevel = 42.0; |
| 1198 o.winnerFound = true; | 1198 o.winnerFound = true; |
| 1199 } | 1199 } |
| 1200 buildCounterExperiment--; | 1200 buildCounterExperiment--; |
| 1201 return o; | 1201 return o; |
| 1202 } | 1202 } |
| 1203 | 1203 |
| 1204 checkExperiment(api.Experiment o) { | 1204 checkExperiment(api.Experiment o) { |
| 1205 buildCounterExperiment++; | 1205 buildCounterExperiment++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 1221 unittest.expect(o.profileId, unittest.equals('foo')); | 1221 unittest.expect(o.profileId, unittest.equals('foo')); |
| 1222 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); | 1222 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); |
| 1223 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); | 1223 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); |
| 1224 unittest.expect(o.selfLink, unittest.equals('foo')); | 1224 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1225 unittest.expect(o.servingFramework, unittest.equals('foo')); | 1225 unittest.expect(o.servingFramework, unittest.equals('foo')); |
| 1226 unittest.expect(o.snippet, unittest.equals('foo')); | 1226 unittest.expect(o.snippet, unittest.equals('foo')); |
| 1227 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 1227 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 1228 unittest.expect(o.status, unittest.equals('foo')); | 1228 unittest.expect(o.status, unittest.equals('foo')); |
| 1229 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); | 1229 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); |
| 1230 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 1230 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 1231 checkUnnamed1106(o.variations); | 1231 checkUnnamed1132(o.variations); |
| 1232 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1232 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 1233 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); | 1233 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); |
| 1234 unittest.expect(o.winnerFound, unittest.isTrue); | 1234 unittest.expect(o.winnerFound, unittest.isTrue); |
| 1235 } | 1235 } |
| 1236 buildCounterExperiment--; | 1236 buildCounterExperiment--; |
| 1237 } | 1237 } |
| 1238 | 1238 |
| 1239 buildUnnamed1107() { | 1239 buildUnnamed1133() { |
| 1240 var o = new core.List<api.Experiment>(); | 1240 var o = new core.List<api.Experiment>(); |
| 1241 o.add(buildExperiment()); | 1241 o.add(buildExperiment()); |
| 1242 o.add(buildExperiment()); | 1242 o.add(buildExperiment()); |
| 1243 return o; | 1243 return o; |
| 1244 } | 1244 } |
| 1245 | 1245 |
| 1246 checkUnnamed1107(core.List<api.Experiment> o) { | 1246 checkUnnamed1133(core.List<api.Experiment> o) { |
| 1247 unittest.expect(o, unittest.hasLength(2)); | 1247 unittest.expect(o, unittest.hasLength(2)); |
| 1248 checkExperiment(o[0]); | 1248 checkExperiment(o[0]); |
| 1249 checkExperiment(o[1]); | 1249 checkExperiment(o[1]); |
| 1250 } | 1250 } |
| 1251 | 1251 |
| 1252 core.int buildCounterExperiments = 0; | 1252 core.int buildCounterExperiments = 0; |
| 1253 buildExperiments() { | 1253 buildExperiments() { |
| 1254 var o = new api.Experiments(); | 1254 var o = new api.Experiments(); |
| 1255 buildCounterExperiments++; | 1255 buildCounterExperiments++; |
| 1256 if (buildCounterExperiments < 3) { | 1256 if (buildCounterExperiments < 3) { |
| 1257 o.items = buildUnnamed1107(); | 1257 o.items = buildUnnamed1133(); |
| 1258 o.itemsPerPage = 42; | 1258 o.itemsPerPage = 42; |
| 1259 o.kind = "foo"; | 1259 o.kind = "foo"; |
| 1260 o.nextLink = "foo"; | 1260 o.nextLink = "foo"; |
| 1261 o.previousLink = "foo"; | 1261 o.previousLink = "foo"; |
| 1262 o.startIndex = 42; | 1262 o.startIndex = 42; |
| 1263 o.totalResults = 42; | 1263 o.totalResults = 42; |
| 1264 o.username = "foo"; | 1264 o.username = "foo"; |
| 1265 } | 1265 } |
| 1266 buildCounterExperiments--; | 1266 buildCounterExperiments--; |
| 1267 return o; | 1267 return o; |
| 1268 } | 1268 } |
| 1269 | 1269 |
| 1270 checkExperiments(api.Experiments o) { | 1270 checkExperiments(api.Experiments o) { |
| 1271 buildCounterExperiments++; | 1271 buildCounterExperiments++; |
| 1272 if (buildCounterExperiments < 3) { | 1272 if (buildCounterExperiments < 3) { |
| 1273 checkUnnamed1107(o.items); | 1273 checkUnnamed1133(o.items); |
| 1274 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1274 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1275 unittest.expect(o.kind, unittest.equals('foo')); | 1275 unittest.expect(o.kind, unittest.equals('foo')); |
| 1276 unittest.expect(o.nextLink, unittest.equals('foo')); | 1276 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1277 unittest.expect(o.previousLink, unittest.equals('foo')); | 1277 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1278 unittest.expect(o.startIndex, unittest.equals(42)); | 1278 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1279 unittest.expect(o.totalResults, unittest.equals(42)); | 1279 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1280 unittest.expect(o.username, unittest.equals('foo')); | 1280 unittest.expect(o.username, unittest.equals('foo')); |
| 1281 } | 1281 } |
| 1282 buildCounterExperiments--; | 1282 buildCounterExperiments--; |
| 1283 } | 1283 } |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1511 if (buildCounterFilterRef < 3) { | 1511 if (buildCounterFilterRef < 3) { |
| 1512 unittest.expect(o.accountId, unittest.equals('foo')); | 1512 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1513 unittest.expect(o.href, unittest.equals('foo')); | 1513 unittest.expect(o.href, unittest.equals('foo')); |
| 1514 unittest.expect(o.id, unittest.equals('foo')); | 1514 unittest.expect(o.id, unittest.equals('foo')); |
| 1515 unittest.expect(o.kind, unittest.equals('foo')); | 1515 unittest.expect(o.kind, unittest.equals('foo')); |
| 1516 unittest.expect(o.name, unittest.equals('foo')); | 1516 unittest.expect(o.name, unittest.equals('foo')); |
| 1517 } | 1517 } |
| 1518 buildCounterFilterRef--; | 1518 buildCounterFilterRef--; |
| 1519 } | 1519 } |
| 1520 | 1520 |
| 1521 buildUnnamed1108() { | 1521 buildUnnamed1134() { |
| 1522 var o = new core.List<api.Filter>(); | 1522 var o = new core.List<api.Filter>(); |
| 1523 o.add(buildFilter()); | 1523 o.add(buildFilter()); |
| 1524 o.add(buildFilter()); | 1524 o.add(buildFilter()); |
| 1525 return o; | 1525 return o; |
| 1526 } | 1526 } |
| 1527 | 1527 |
| 1528 checkUnnamed1108(core.List<api.Filter> o) { | 1528 checkUnnamed1134(core.List<api.Filter> o) { |
| 1529 unittest.expect(o, unittest.hasLength(2)); | 1529 unittest.expect(o, unittest.hasLength(2)); |
| 1530 checkFilter(o[0]); | 1530 checkFilter(o[0]); |
| 1531 checkFilter(o[1]); | 1531 checkFilter(o[1]); |
| 1532 } | 1532 } |
| 1533 | 1533 |
| 1534 core.int buildCounterFilters = 0; | 1534 core.int buildCounterFilters = 0; |
| 1535 buildFilters() { | 1535 buildFilters() { |
| 1536 var o = new api.Filters(); | 1536 var o = new api.Filters(); |
| 1537 buildCounterFilters++; | 1537 buildCounterFilters++; |
| 1538 if (buildCounterFilters < 3) { | 1538 if (buildCounterFilters < 3) { |
| 1539 o.items = buildUnnamed1108(); | 1539 o.items = buildUnnamed1134(); |
| 1540 o.itemsPerPage = 42; | 1540 o.itemsPerPage = 42; |
| 1541 o.kind = "foo"; | 1541 o.kind = "foo"; |
| 1542 o.nextLink = "foo"; | 1542 o.nextLink = "foo"; |
| 1543 o.previousLink = "foo"; | 1543 o.previousLink = "foo"; |
| 1544 o.startIndex = 42; | 1544 o.startIndex = 42; |
| 1545 o.totalResults = 42; | 1545 o.totalResults = 42; |
| 1546 o.username = "foo"; | 1546 o.username = "foo"; |
| 1547 } | 1547 } |
| 1548 buildCounterFilters--; | 1548 buildCounterFilters--; |
| 1549 return o; | 1549 return o; |
| 1550 } | 1550 } |
| 1551 | 1551 |
| 1552 checkFilters(api.Filters o) { | 1552 checkFilters(api.Filters o) { |
| 1553 buildCounterFilters++; | 1553 buildCounterFilters++; |
| 1554 if (buildCounterFilters < 3) { | 1554 if (buildCounterFilters < 3) { |
| 1555 checkUnnamed1108(o.items); | 1555 checkUnnamed1134(o.items); |
| 1556 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1556 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1557 unittest.expect(o.kind, unittest.equals('foo')); | 1557 unittest.expect(o.kind, unittest.equals('foo')); |
| 1558 unittest.expect(o.nextLink, unittest.equals('foo')); | 1558 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1559 unittest.expect(o.previousLink, unittest.equals('foo')); | 1559 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1560 unittest.expect(o.startIndex, unittest.equals(42)); | 1560 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1561 unittest.expect(o.totalResults, unittest.equals(42)); | 1561 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1562 unittest.expect(o.username, unittest.equals('foo')); | 1562 unittest.expect(o.username, unittest.equals('foo')); |
| 1563 } | 1563 } |
| 1564 buildCounterFilters--; | 1564 buildCounterFilters--; |
| 1565 } | 1565 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1580 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { | 1580 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { |
| 1581 buildCounterGaDataColumnHeaders++; | 1581 buildCounterGaDataColumnHeaders++; |
| 1582 if (buildCounterGaDataColumnHeaders < 3) { | 1582 if (buildCounterGaDataColumnHeaders < 3) { |
| 1583 unittest.expect(o.columnType, unittest.equals('foo')); | 1583 unittest.expect(o.columnType, unittest.equals('foo')); |
| 1584 unittest.expect(o.dataType, unittest.equals('foo')); | 1584 unittest.expect(o.dataType, unittest.equals('foo')); |
| 1585 unittest.expect(o.name, unittest.equals('foo')); | 1585 unittest.expect(o.name, unittest.equals('foo')); |
| 1586 } | 1586 } |
| 1587 buildCounterGaDataColumnHeaders--; | 1587 buildCounterGaDataColumnHeaders--; |
| 1588 } | 1588 } |
| 1589 | 1589 |
| 1590 buildUnnamed1109() { | 1590 buildUnnamed1135() { |
| 1591 var o = new core.List<api.GaDataColumnHeaders>(); | 1591 var o = new core.List<api.GaDataColumnHeaders>(); |
| 1592 o.add(buildGaDataColumnHeaders()); | 1592 o.add(buildGaDataColumnHeaders()); |
| 1593 o.add(buildGaDataColumnHeaders()); | 1593 o.add(buildGaDataColumnHeaders()); |
| 1594 return o; | 1594 return o; |
| 1595 } | 1595 } |
| 1596 | 1596 |
| 1597 checkUnnamed1109(core.List<api.GaDataColumnHeaders> o) { | 1597 checkUnnamed1135(core.List<api.GaDataColumnHeaders> o) { |
| 1598 unittest.expect(o, unittest.hasLength(2)); | 1598 unittest.expect(o, unittest.hasLength(2)); |
| 1599 checkGaDataColumnHeaders(o[0]); | 1599 checkGaDataColumnHeaders(o[0]); |
| 1600 checkGaDataColumnHeaders(o[1]); | 1600 checkGaDataColumnHeaders(o[1]); |
| 1601 } | 1601 } |
| 1602 | 1602 |
| 1603 core.int buildCounterGaDataDataTableCols = 0; | 1603 core.int buildCounterGaDataDataTableCols = 0; |
| 1604 buildGaDataDataTableCols() { | 1604 buildGaDataDataTableCols() { |
| 1605 var o = new api.GaDataDataTableCols(); | 1605 var o = new api.GaDataDataTableCols(); |
| 1606 buildCounterGaDataDataTableCols++; | 1606 buildCounterGaDataDataTableCols++; |
| 1607 if (buildCounterGaDataDataTableCols < 3) { | 1607 if (buildCounterGaDataDataTableCols < 3) { |
| 1608 o.id = "foo"; | 1608 o.id = "foo"; |
| 1609 o.label = "foo"; | 1609 o.label = "foo"; |
| 1610 o.type = "foo"; | 1610 o.type = "foo"; |
| 1611 } | 1611 } |
| 1612 buildCounterGaDataDataTableCols--; | 1612 buildCounterGaDataDataTableCols--; |
| 1613 return o; | 1613 return o; |
| 1614 } | 1614 } |
| 1615 | 1615 |
| 1616 checkGaDataDataTableCols(api.GaDataDataTableCols o) { | 1616 checkGaDataDataTableCols(api.GaDataDataTableCols o) { |
| 1617 buildCounterGaDataDataTableCols++; | 1617 buildCounterGaDataDataTableCols++; |
| 1618 if (buildCounterGaDataDataTableCols < 3) { | 1618 if (buildCounterGaDataDataTableCols < 3) { |
| 1619 unittest.expect(o.id, unittest.equals('foo')); | 1619 unittest.expect(o.id, unittest.equals('foo')); |
| 1620 unittest.expect(o.label, unittest.equals('foo')); | 1620 unittest.expect(o.label, unittest.equals('foo')); |
| 1621 unittest.expect(o.type, unittest.equals('foo')); | 1621 unittest.expect(o.type, unittest.equals('foo')); |
| 1622 } | 1622 } |
| 1623 buildCounterGaDataDataTableCols--; | 1623 buildCounterGaDataDataTableCols--; |
| 1624 } | 1624 } |
| 1625 | 1625 |
| 1626 buildUnnamed1110() { | 1626 buildUnnamed1136() { |
| 1627 var o = new core.List<api.GaDataDataTableCols>(); | 1627 var o = new core.List<api.GaDataDataTableCols>(); |
| 1628 o.add(buildGaDataDataTableCols()); | 1628 o.add(buildGaDataDataTableCols()); |
| 1629 o.add(buildGaDataDataTableCols()); | 1629 o.add(buildGaDataDataTableCols()); |
| 1630 return o; | 1630 return o; |
| 1631 } | 1631 } |
| 1632 | 1632 |
| 1633 checkUnnamed1110(core.List<api.GaDataDataTableCols> o) { | 1633 checkUnnamed1136(core.List<api.GaDataDataTableCols> o) { |
| 1634 unittest.expect(o, unittest.hasLength(2)); | 1634 unittest.expect(o, unittest.hasLength(2)); |
| 1635 checkGaDataDataTableCols(o[0]); | 1635 checkGaDataDataTableCols(o[0]); |
| 1636 checkGaDataDataTableCols(o[1]); | 1636 checkGaDataDataTableCols(o[1]); |
| 1637 } | 1637 } |
| 1638 | 1638 |
| 1639 core.int buildCounterGaDataDataTableRowsC = 0; | 1639 core.int buildCounterGaDataDataTableRowsC = 0; |
| 1640 buildGaDataDataTableRowsC() { | 1640 buildGaDataDataTableRowsC() { |
| 1641 var o = new api.GaDataDataTableRowsC(); | 1641 var o = new api.GaDataDataTableRowsC(); |
| 1642 buildCounterGaDataDataTableRowsC++; | 1642 buildCounterGaDataDataTableRowsC++; |
| 1643 if (buildCounterGaDataDataTableRowsC < 3) { | 1643 if (buildCounterGaDataDataTableRowsC < 3) { |
| 1644 o.v = "foo"; | 1644 o.v = "foo"; |
| 1645 } | 1645 } |
| 1646 buildCounterGaDataDataTableRowsC--; | 1646 buildCounterGaDataDataTableRowsC--; |
| 1647 return o; | 1647 return o; |
| 1648 } | 1648 } |
| 1649 | 1649 |
| 1650 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { | 1650 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { |
| 1651 buildCounterGaDataDataTableRowsC++; | 1651 buildCounterGaDataDataTableRowsC++; |
| 1652 if (buildCounterGaDataDataTableRowsC < 3) { | 1652 if (buildCounterGaDataDataTableRowsC < 3) { |
| 1653 unittest.expect(o.v, unittest.equals('foo')); | 1653 unittest.expect(o.v, unittest.equals('foo')); |
| 1654 } | 1654 } |
| 1655 buildCounterGaDataDataTableRowsC--; | 1655 buildCounterGaDataDataTableRowsC--; |
| 1656 } | 1656 } |
| 1657 | 1657 |
| 1658 buildUnnamed1111() { | 1658 buildUnnamed1137() { |
| 1659 var o = new core.List<api.GaDataDataTableRowsC>(); | 1659 var o = new core.List<api.GaDataDataTableRowsC>(); |
| 1660 o.add(buildGaDataDataTableRowsC()); | 1660 o.add(buildGaDataDataTableRowsC()); |
| 1661 o.add(buildGaDataDataTableRowsC()); | 1661 o.add(buildGaDataDataTableRowsC()); |
| 1662 return o; | 1662 return o; |
| 1663 } | 1663 } |
| 1664 | 1664 |
| 1665 checkUnnamed1111(core.List<api.GaDataDataTableRowsC> o) { | 1665 checkUnnamed1137(core.List<api.GaDataDataTableRowsC> o) { |
| 1666 unittest.expect(o, unittest.hasLength(2)); | 1666 unittest.expect(o, unittest.hasLength(2)); |
| 1667 checkGaDataDataTableRowsC(o[0]); | 1667 checkGaDataDataTableRowsC(o[0]); |
| 1668 checkGaDataDataTableRowsC(o[1]); | 1668 checkGaDataDataTableRowsC(o[1]); |
| 1669 } | 1669 } |
| 1670 | 1670 |
| 1671 core.int buildCounterGaDataDataTableRows = 0; | 1671 core.int buildCounterGaDataDataTableRows = 0; |
| 1672 buildGaDataDataTableRows() { | 1672 buildGaDataDataTableRows() { |
| 1673 var o = new api.GaDataDataTableRows(); | 1673 var o = new api.GaDataDataTableRows(); |
| 1674 buildCounterGaDataDataTableRows++; | 1674 buildCounterGaDataDataTableRows++; |
| 1675 if (buildCounterGaDataDataTableRows < 3) { | 1675 if (buildCounterGaDataDataTableRows < 3) { |
| 1676 o.c = buildUnnamed1111(); | 1676 o.c = buildUnnamed1137(); |
| 1677 } | 1677 } |
| 1678 buildCounterGaDataDataTableRows--; | 1678 buildCounterGaDataDataTableRows--; |
| 1679 return o; | 1679 return o; |
| 1680 } | 1680 } |
| 1681 | 1681 |
| 1682 checkGaDataDataTableRows(api.GaDataDataTableRows o) { | 1682 checkGaDataDataTableRows(api.GaDataDataTableRows o) { |
| 1683 buildCounterGaDataDataTableRows++; | 1683 buildCounterGaDataDataTableRows++; |
| 1684 if (buildCounterGaDataDataTableRows < 3) { | 1684 if (buildCounterGaDataDataTableRows < 3) { |
| 1685 checkUnnamed1111(o.c); | 1685 checkUnnamed1137(o.c); |
| 1686 } | 1686 } |
| 1687 buildCounterGaDataDataTableRows--; | 1687 buildCounterGaDataDataTableRows--; |
| 1688 } | 1688 } |
| 1689 | 1689 |
| 1690 buildUnnamed1112() { | 1690 buildUnnamed1138() { |
| 1691 var o = new core.List<api.GaDataDataTableRows>(); | 1691 var o = new core.List<api.GaDataDataTableRows>(); |
| 1692 o.add(buildGaDataDataTableRows()); | 1692 o.add(buildGaDataDataTableRows()); |
| 1693 o.add(buildGaDataDataTableRows()); | 1693 o.add(buildGaDataDataTableRows()); |
| 1694 return o; | 1694 return o; |
| 1695 } | 1695 } |
| 1696 | 1696 |
| 1697 checkUnnamed1112(core.List<api.GaDataDataTableRows> o) { | 1697 checkUnnamed1138(core.List<api.GaDataDataTableRows> o) { |
| 1698 unittest.expect(o, unittest.hasLength(2)); | 1698 unittest.expect(o, unittest.hasLength(2)); |
| 1699 checkGaDataDataTableRows(o[0]); | 1699 checkGaDataDataTableRows(o[0]); |
| 1700 checkGaDataDataTableRows(o[1]); | 1700 checkGaDataDataTableRows(o[1]); |
| 1701 } | 1701 } |
| 1702 | 1702 |
| 1703 core.int buildCounterGaDataDataTable = 0; | 1703 core.int buildCounterGaDataDataTable = 0; |
| 1704 buildGaDataDataTable() { | 1704 buildGaDataDataTable() { |
| 1705 var o = new api.GaDataDataTable(); | 1705 var o = new api.GaDataDataTable(); |
| 1706 buildCounterGaDataDataTable++; | 1706 buildCounterGaDataDataTable++; |
| 1707 if (buildCounterGaDataDataTable < 3) { | 1707 if (buildCounterGaDataDataTable < 3) { |
| 1708 o.cols = buildUnnamed1110(); | 1708 o.cols = buildUnnamed1136(); |
| 1709 o.rows = buildUnnamed1112(); | 1709 o.rows = buildUnnamed1138(); |
| 1710 } | 1710 } |
| 1711 buildCounterGaDataDataTable--; | 1711 buildCounterGaDataDataTable--; |
| 1712 return o; | 1712 return o; |
| 1713 } | 1713 } |
| 1714 | 1714 |
| 1715 checkGaDataDataTable(api.GaDataDataTable o) { | 1715 checkGaDataDataTable(api.GaDataDataTable o) { |
| 1716 buildCounterGaDataDataTable++; | 1716 buildCounterGaDataDataTable++; |
| 1717 if (buildCounterGaDataDataTable < 3) { | 1717 if (buildCounterGaDataDataTable < 3) { |
| 1718 checkUnnamed1110(o.cols); | 1718 checkUnnamed1136(o.cols); |
| 1719 checkUnnamed1112(o.rows); | 1719 checkUnnamed1138(o.rows); |
| 1720 } | 1720 } |
| 1721 buildCounterGaDataDataTable--; | 1721 buildCounterGaDataDataTable--; |
| 1722 } | 1722 } |
| 1723 | 1723 |
| 1724 core.int buildCounterGaDataProfileInfo = 0; | 1724 core.int buildCounterGaDataProfileInfo = 0; |
| 1725 buildGaDataProfileInfo() { | 1725 buildGaDataProfileInfo() { |
| 1726 var o = new api.GaDataProfileInfo(); | 1726 var o = new api.GaDataProfileInfo(); |
| 1727 buildCounterGaDataProfileInfo++; | 1727 buildCounterGaDataProfileInfo++; |
| 1728 if (buildCounterGaDataProfileInfo < 3) { | 1728 if (buildCounterGaDataProfileInfo < 3) { |
| 1729 o.accountId = "foo"; | 1729 o.accountId = "foo"; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1743 unittest.expect(o.accountId, unittest.equals('foo')); | 1743 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1744 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 1744 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 1745 unittest.expect(o.profileId, unittest.equals('foo')); | 1745 unittest.expect(o.profileId, unittest.equals('foo')); |
| 1746 unittest.expect(o.profileName, unittest.equals('foo')); | 1746 unittest.expect(o.profileName, unittest.equals('foo')); |
| 1747 unittest.expect(o.tableId, unittest.equals('foo')); | 1747 unittest.expect(o.tableId, unittest.equals('foo')); |
| 1748 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1748 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 1749 } | 1749 } |
| 1750 buildCounterGaDataProfileInfo--; | 1750 buildCounterGaDataProfileInfo--; |
| 1751 } | 1751 } |
| 1752 | 1752 |
| 1753 buildUnnamed1113() { | 1753 buildUnnamed1139() { |
| 1754 var o = new core.List<core.String>(); | 1754 var o = new core.List<core.String>(); |
| 1755 o.add("foo"); | 1755 o.add("foo"); |
| 1756 o.add("foo"); | 1756 o.add("foo"); |
| 1757 return o; | 1757 return o; |
| 1758 } | 1758 } |
| 1759 | 1759 |
| 1760 checkUnnamed1113(core.List<core.String> o) { | 1760 checkUnnamed1139(core.List<core.String> o) { |
| 1761 unittest.expect(o, unittest.hasLength(2)); | 1761 unittest.expect(o, unittest.hasLength(2)); |
| 1762 unittest.expect(o[0], unittest.equals('foo')); | 1762 unittest.expect(o[0], unittest.equals('foo')); |
| 1763 unittest.expect(o[1], unittest.equals('foo')); | 1763 unittest.expect(o[1], unittest.equals('foo')); |
| 1764 } | 1764 } |
| 1765 | 1765 |
| 1766 buildUnnamed1114() { | 1766 buildUnnamed1140() { |
| 1767 var o = new core.List<core.String>(); | 1767 var o = new core.List<core.String>(); |
| 1768 o.add("foo"); | 1768 o.add("foo"); |
| 1769 o.add("foo"); | 1769 o.add("foo"); |
| 1770 return o; | 1770 return o; |
| 1771 } | 1771 } |
| 1772 | 1772 |
| 1773 checkUnnamed1114(core.List<core.String> o) { | 1773 checkUnnamed1140(core.List<core.String> o) { |
| 1774 unittest.expect(o, unittest.hasLength(2)); | 1774 unittest.expect(o, unittest.hasLength(2)); |
| 1775 unittest.expect(o[0], unittest.equals('foo')); | 1775 unittest.expect(o[0], unittest.equals('foo')); |
| 1776 unittest.expect(o[1], unittest.equals('foo')); | 1776 unittest.expect(o[1], unittest.equals('foo')); |
| 1777 } | 1777 } |
| 1778 | 1778 |
| 1779 core.int buildCounterGaDataQuery = 0; | 1779 core.int buildCounterGaDataQuery = 0; |
| 1780 buildGaDataQuery() { | 1780 buildGaDataQuery() { |
| 1781 var o = new api.GaDataQuery(); | 1781 var o = new api.GaDataQuery(); |
| 1782 buildCounterGaDataQuery++; | 1782 buildCounterGaDataQuery++; |
| 1783 if (buildCounterGaDataQuery < 3) { | 1783 if (buildCounterGaDataQuery < 3) { |
| 1784 o.dimensions = "foo"; | 1784 o.dimensions = "foo"; |
| 1785 o.end_date = "foo"; | 1785 o.end_date = "foo"; |
| 1786 o.filters = "foo"; | 1786 o.filters = "foo"; |
| 1787 o.ids = "foo"; | 1787 o.ids = "foo"; |
| 1788 o.max_results = 42; | 1788 o.max_results = 42; |
| 1789 o.metrics = buildUnnamed1113(); | 1789 o.metrics = buildUnnamed1139(); |
| 1790 o.samplingLevel = "foo"; | 1790 o.samplingLevel = "foo"; |
| 1791 o.segment = "foo"; | 1791 o.segment = "foo"; |
| 1792 o.sort = buildUnnamed1114(); | 1792 o.sort = buildUnnamed1140(); |
| 1793 o.start_date = "foo"; | 1793 o.start_date = "foo"; |
| 1794 o.start_index = 42; | 1794 o.start_index = 42; |
| 1795 } | 1795 } |
| 1796 buildCounterGaDataQuery--; | 1796 buildCounterGaDataQuery--; |
| 1797 return o; | 1797 return o; |
| 1798 } | 1798 } |
| 1799 | 1799 |
| 1800 checkGaDataQuery(api.GaDataQuery o) { | 1800 checkGaDataQuery(api.GaDataQuery o) { |
| 1801 buildCounterGaDataQuery++; | 1801 buildCounterGaDataQuery++; |
| 1802 if (buildCounterGaDataQuery < 3) { | 1802 if (buildCounterGaDataQuery < 3) { |
| 1803 unittest.expect(o.dimensions, unittest.equals('foo')); | 1803 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 1804 unittest.expect(o.end_date, unittest.equals('foo')); | 1804 unittest.expect(o.end_date, unittest.equals('foo')); |
| 1805 unittest.expect(o.filters, unittest.equals('foo')); | 1805 unittest.expect(o.filters, unittest.equals('foo')); |
| 1806 unittest.expect(o.ids, unittest.equals('foo')); | 1806 unittest.expect(o.ids, unittest.equals('foo')); |
| 1807 unittest.expect(o.max_results, unittest.equals(42)); | 1807 unittest.expect(o.max_results, unittest.equals(42)); |
| 1808 checkUnnamed1113(o.metrics); | 1808 checkUnnamed1139(o.metrics); |
| 1809 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 1809 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
| 1810 unittest.expect(o.segment, unittest.equals('foo')); | 1810 unittest.expect(o.segment, unittest.equals('foo')); |
| 1811 checkUnnamed1114(o.sort); | 1811 checkUnnamed1140(o.sort); |
| 1812 unittest.expect(o.start_date, unittest.equals('foo')); | 1812 unittest.expect(o.start_date, unittest.equals('foo')); |
| 1813 unittest.expect(o.start_index, unittest.equals(42)); | 1813 unittest.expect(o.start_index, unittest.equals(42)); |
| 1814 } | 1814 } |
| 1815 buildCounterGaDataQuery--; | 1815 buildCounterGaDataQuery--; |
| 1816 } | 1816 } |
| 1817 | 1817 |
| 1818 buildUnnamed1115() { | 1818 buildUnnamed1141() { |
| 1819 var o = new core.List<core.String>(); | 1819 var o = new core.List<core.String>(); |
| 1820 o.add("foo"); | 1820 o.add("foo"); |
| 1821 o.add("foo"); | 1821 o.add("foo"); |
| 1822 return o; | 1822 return o; |
| 1823 } | 1823 } |
| 1824 | 1824 |
| 1825 checkUnnamed1115(core.List<core.String> o) { | 1825 checkUnnamed1141(core.List<core.String> o) { |
| 1826 unittest.expect(o, unittest.hasLength(2)); | 1826 unittest.expect(o, unittest.hasLength(2)); |
| 1827 unittest.expect(o[0], unittest.equals('foo')); | 1827 unittest.expect(o[0], unittest.equals('foo')); |
| 1828 unittest.expect(o[1], unittest.equals('foo')); | 1828 unittest.expect(o[1], unittest.equals('foo')); |
| 1829 } | 1829 } |
| 1830 | 1830 |
| 1831 buildUnnamed1116() { | 1831 buildUnnamed1142() { |
| 1832 var o = new core.List<core.List<core.String>>(); | 1832 var o = new core.List<core.List<core.String>>(); |
| 1833 o.add(buildUnnamed1115()); | 1833 o.add(buildUnnamed1141()); |
| 1834 o.add(buildUnnamed1115()); | 1834 o.add(buildUnnamed1141()); |
| 1835 return o; | 1835 return o; |
| 1836 } | 1836 } |
| 1837 | 1837 |
| 1838 checkUnnamed1116(core.List<core.List<core.String>> o) { | 1838 checkUnnamed1142(core.List<core.List<core.String>> o) { |
| 1839 unittest.expect(o, unittest.hasLength(2)); | 1839 unittest.expect(o, unittest.hasLength(2)); |
| 1840 checkUnnamed1115(o[0]); | 1840 checkUnnamed1141(o[0]); |
| 1841 checkUnnamed1115(o[1]); | 1841 checkUnnamed1141(o[1]); |
| 1842 } | 1842 } |
| 1843 | 1843 |
| 1844 buildUnnamed1117() { | 1844 buildUnnamed1143() { |
| 1845 var o = new core.Map<core.String, core.String>(); | 1845 var o = new core.Map<core.String, core.String>(); |
| 1846 o["x"] = "foo"; | 1846 o["x"] = "foo"; |
| 1847 o["y"] = "foo"; | 1847 o["y"] = "foo"; |
| 1848 return o; | 1848 return o; |
| 1849 } | 1849 } |
| 1850 | 1850 |
| 1851 checkUnnamed1117(core.Map<core.String, core.String> o) { | 1851 checkUnnamed1143(core.Map<core.String, core.String> o) { |
| 1852 unittest.expect(o, unittest.hasLength(2)); | 1852 unittest.expect(o, unittest.hasLength(2)); |
| 1853 unittest.expect(o["x"], unittest.equals('foo')); | 1853 unittest.expect(o["x"], unittest.equals('foo')); |
| 1854 unittest.expect(o["y"], unittest.equals('foo')); | 1854 unittest.expect(o["y"], unittest.equals('foo')); |
| 1855 } | 1855 } |
| 1856 | 1856 |
| 1857 core.int buildCounterGaData = 0; | 1857 core.int buildCounterGaData = 0; |
| 1858 buildGaData() { | 1858 buildGaData() { |
| 1859 var o = new api.GaData(); | 1859 var o = new api.GaData(); |
| 1860 buildCounterGaData++; | 1860 buildCounterGaData++; |
| 1861 if (buildCounterGaData < 3) { | 1861 if (buildCounterGaData < 3) { |
| 1862 o.columnHeaders = buildUnnamed1109(); | 1862 o.columnHeaders = buildUnnamed1135(); |
| 1863 o.containsSampledData = true; | 1863 o.containsSampledData = true; |
| 1864 o.dataLastRefreshed = "foo"; |
| 1864 o.dataTable = buildGaDataDataTable(); | 1865 o.dataTable = buildGaDataDataTable(); |
| 1865 o.id = "foo"; | 1866 o.id = "foo"; |
| 1866 o.itemsPerPage = 42; | 1867 o.itemsPerPage = 42; |
| 1867 o.kind = "foo"; | 1868 o.kind = "foo"; |
| 1868 o.nextLink = "foo"; | 1869 o.nextLink = "foo"; |
| 1869 o.previousLink = "foo"; | 1870 o.previousLink = "foo"; |
| 1870 o.profileInfo = buildGaDataProfileInfo(); | 1871 o.profileInfo = buildGaDataProfileInfo(); |
| 1871 o.query = buildGaDataQuery(); | 1872 o.query = buildGaDataQuery(); |
| 1872 o.rows = buildUnnamed1116(); | 1873 o.rows = buildUnnamed1142(); |
| 1873 o.sampleSize = "foo"; | 1874 o.sampleSize = "foo"; |
| 1874 o.sampleSpace = "foo"; | 1875 o.sampleSpace = "foo"; |
| 1875 o.selfLink = "foo"; | 1876 o.selfLink = "foo"; |
| 1876 o.totalResults = 42; | 1877 o.totalResults = 42; |
| 1877 o.totalsForAllResults = buildUnnamed1117(); | 1878 o.totalsForAllResults = buildUnnamed1143(); |
| 1878 } | 1879 } |
| 1879 buildCounterGaData--; | 1880 buildCounterGaData--; |
| 1880 return o; | 1881 return o; |
| 1881 } | 1882 } |
| 1882 | 1883 |
| 1883 checkGaData(api.GaData o) { | 1884 checkGaData(api.GaData o) { |
| 1884 buildCounterGaData++; | 1885 buildCounterGaData++; |
| 1885 if (buildCounterGaData < 3) { | 1886 if (buildCounterGaData < 3) { |
| 1886 checkUnnamed1109(o.columnHeaders); | 1887 checkUnnamed1135(o.columnHeaders); |
| 1887 unittest.expect(o.containsSampledData, unittest.isTrue); | 1888 unittest.expect(o.containsSampledData, unittest.isTrue); |
| 1889 unittest.expect(o.dataLastRefreshed, unittest.equals('foo')); |
| 1888 checkGaDataDataTable(o.dataTable); | 1890 checkGaDataDataTable(o.dataTable); |
| 1889 unittest.expect(o.id, unittest.equals('foo')); | 1891 unittest.expect(o.id, unittest.equals('foo')); |
| 1890 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1892 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1891 unittest.expect(o.kind, unittest.equals('foo')); | 1893 unittest.expect(o.kind, unittest.equals('foo')); |
| 1892 unittest.expect(o.nextLink, unittest.equals('foo')); | 1894 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1893 unittest.expect(o.previousLink, unittest.equals('foo')); | 1895 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1894 checkGaDataProfileInfo(o.profileInfo); | 1896 checkGaDataProfileInfo(o.profileInfo); |
| 1895 checkGaDataQuery(o.query); | 1897 checkGaDataQuery(o.query); |
| 1896 checkUnnamed1116(o.rows); | 1898 checkUnnamed1142(o.rows); |
| 1897 unittest.expect(o.sampleSize, unittest.equals('foo')); | 1899 unittest.expect(o.sampleSize, unittest.equals('foo')); |
| 1898 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 1900 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
| 1899 unittest.expect(o.selfLink, unittest.equals('foo')); | 1901 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1900 unittest.expect(o.totalResults, unittest.equals(42)); | 1902 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1901 checkUnnamed1117(o.totalsForAllResults); | 1903 checkUnnamed1143(o.totalsForAllResults); |
| 1902 } | 1904 } |
| 1903 buildCounterGaData--; | 1905 buildCounterGaData--; |
| 1904 } | 1906 } |
| 1905 | 1907 |
| 1906 core.int buildCounterGoalEventDetailsEventConditions = 0; | 1908 core.int buildCounterGoalEventDetailsEventConditions = 0; |
| 1907 buildGoalEventDetailsEventConditions() { | 1909 buildGoalEventDetailsEventConditions() { |
| 1908 var o = new api.GoalEventDetailsEventConditions(); | 1910 var o = new api.GoalEventDetailsEventConditions(); |
| 1909 buildCounterGoalEventDetailsEventConditions++; | 1911 buildCounterGoalEventDetailsEventConditions++; |
| 1910 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1912 if (buildCounterGoalEventDetailsEventConditions < 3) { |
| 1911 o.comparisonType = "foo"; | 1913 o.comparisonType = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 1923 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1925 if (buildCounterGoalEventDetailsEventConditions < 3) { |
| 1924 unittest.expect(o.comparisonType, unittest.equals('foo')); | 1926 unittest.expect(o.comparisonType, unittest.equals('foo')); |
| 1925 unittest.expect(o.comparisonValue, unittest.equals('foo')); | 1927 unittest.expect(o.comparisonValue, unittest.equals('foo')); |
| 1926 unittest.expect(o.expression, unittest.equals('foo')); | 1928 unittest.expect(o.expression, unittest.equals('foo')); |
| 1927 unittest.expect(o.matchType, unittest.equals('foo')); | 1929 unittest.expect(o.matchType, unittest.equals('foo')); |
| 1928 unittest.expect(o.type, unittest.equals('foo')); | 1930 unittest.expect(o.type, unittest.equals('foo')); |
| 1929 } | 1931 } |
| 1930 buildCounterGoalEventDetailsEventConditions--; | 1932 buildCounterGoalEventDetailsEventConditions--; |
| 1931 } | 1933 } |
| 1932 | 1934 |
| 1933 buildUnnamed1118() { | 1935 buildUnnamed1144() { |
| 1934 var o = new core.List<api.GoalEventDetailsEventConditions>(); | 1936 var o = new core.List<api.GoalEventDetailsEventConditions>(); |
| 1935 o.add(buildGoalEventDetailsEventConditions()); | 1937 o.add(buildGoalEventDetailsEventConditions()); |
| 1936 o.add(buildGoalEventDetailsEventConditions()); | 1938 o.add(buildGoalEventDetailsEventConditions()); |
| 1937 return o; | 1939 return o; |
| 1938 } | 1940 } |
| 1939 | 1941 |
| 1940 checkUnnamed1118(core.List<api.GoalEventDetailsEventConditions> o) { | 1942 checkUnnamed1144(core.List<api.GoalEventDetailsEventConditions> o) { |
| 1941 unittest.expect(o, unittest.hasLength(2)); | 1943 unittest.expect(o, unittest.hasLength(2)); |
| 1942 checkGoalEventDetailsEventConditions(o[0]); | 1944 checkGoalEventDetailsEventConditions(o[0]); |
| 1943 checkGoalEventDetailsEventConditions(o[1]); | 1945 checkGoalEventDetailsEventConditions(o[1]); |
| 1944 } | 1946 } |
| 1945 | 1947 |
| 1946 core.int buildCounterGoalEventDetails = 0; | 1948 core.int buildCounterGoalEventDetails = 0; |
| 1947 buildGoalEventDetails() { | 1949 buildGoalEventDetails() { |
| 1948 var o = new api.GoalEventDetails(); | 1950 var o = new api.GoalEventDetails(); |
| 1949 buildCounterGoalEventDetails++; | 1951 buildCounterGoalEventDetails++; |
| 1950 if (buildCounterGoalEventDetails < 3) { | 1952 if (buildCounterGoalEventDetails < 3) { |
| 1951 o.eventConditions = buildUnnamed1118(); | 1953 o.eventConditions = buildUnnamed1144(); |
| 1952 o.useEventValue = true; | 1954 o.useEventValue = true; |
| 1953 } | 1955 } |
| 1954 buildCounterGoalEventDetails--; | 1956 buildCounterGoalEventDetails--; |
| 1955 return o; | 1957 return o; |
| 1956 } | 1958 } |
| 1957 | 1959 |
| 1958 checkGoalEventDetails(api.GoalEventDetails o) { | 1960 checkGoalEventDetails(api.GoalEventDetails o) { |
| 1959 buildCounterGoalEventDetails++; | 1961 buildCounterGoalEventDetails++; |
| 1960 if (buildCounterGoalEventDetails < 3) { | 1962 if (buildCounterGoalEventDetails < 3) { |
| 1961 checkUnnamed1118(o.eventConditions); | 1963 checkUnnamed1144(o.eventConditions); |
| 1962 unittest.expect(o.useEventValue, unittest.isTrue); | 1964 unittest.expect(o.useEventValue, unittest.isTrue); |
| 1963 } | 1965 } |
| 1964 buildCounterGoalEventDetails--; | 1966 buildCounterGoalEventDetails--; |
| 1965 } | 1967 } |
| 1966 | 1968 |
| 1967 core.int buildCounterGoalParentLink = 0; | 1969 core.int buildCounterGoalParentLink = 0; |
| 1968 buildGoalParentLink() { | 1970 buildGoalParentLink() { |
| 1969 var o = new api.GoalParentLink(); | 1971 var o = new api.GoalParentLink(); |
| 1970 buildCounterGoalParentLink++; | 1972 buildCounterGoalParentLink++; |
| 1971 if (buildCounterGoalParentLink < 3) { | 1973 if (buildCounterGoalParentLink < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 2001 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { | 2003 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { |
| 2002 buildCounterGoalUrlDestinationDetailsSteps++; | 2004 buildCounterGoalUrlDestinationDetailsSteps++; |
| 2003 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { | 2005 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { |
| 2004 unittest.expect(o.name, unittest.equals('foo')); | 2006 unittest.expect(o.name, unittest.equals('foo')); |
| 2005 unittest.expect(o.number, unittest.equals(42)); | 2007 unittest.expect(o.number, unittest.equals(42)); |
| 2006 unittest.expect(o.url, unittest.equals('foo')); | 2008 unittest.expect(o.url, unittest.equals('foo')); |
| 2007 } | 2009 } |
| 2008 buildCounterGoalUrlDestinationDetailsSteps--; | 2010 buildCounterGoalUrlDestinationDetailsSteps--; |
| 2009 } | 2011 } |
| 2010 | 2012 |
| 2011 buildUnnamed1119() { | 2013 buildUnnamed1145() { |
| 2012 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); | 2014 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); |
| 2013 o.add(buildGoalUrlDestinationDetailsSteps()); | 2015 o.add(buildGoalUrlDestinationDetailsSteps()); |
| 2014 o.add(buildGoalUrlDestinationDetailsSteps()); | 2016 o.add(buildGoalUrlDestinationDetailsSteps()); |
| 2015 return o; | 2017 return o; |
| 2016 } | 2018 } |
| 2017 | 2019 |
| 2018 checkUnnamed1119(core.List<api.GoalUrlDestinationDetailsSteps> o) { | 2020 checkUnnamed1145(core.List<api.GoalUrlDestinationDetailsSteps> o) { |
| 2019 unittest.expect(o, unittest.hasLength(2)); | 2021 unittest.expect(o, unittest.hasLength(2)); |
| 2020 checkGoalUrlDestinationDetailsSteps(o[0]); | 2022 checkGoalUrlDestinationDetailsSteps(o[0]); |
| 2021 checkGoalUrlDestinationDetailsSteps(o[1]); | 2023 checkGoalUrlDestinationDetailsSteps(o[1]); |
| 2022 } | 2024 } |
| 2023 | 2025 |
| 2024 core.int buildCounterGoalUrlDestinationDetails = 0; | 2026 core.int buildCounterGoalUrlDestinationDetails = 0; |
| 2025 buildGoalUrlDestinationDetails() { | 2027 buildGoalUrlDestinationDetails() { |
| 2026 var o = new api.GoalUrlDestinationDetails(); | 2028 var o = new api.GoalUrlDestinationDetails(); |
| 2027 buildCounterGoalUrlDestinationDetails++; | 2029 buildCounterGoalUrlDestinationDetails++; |
| 2028 if (buildCounterGoalUrlDestinationDetails < 3) { | 2030 if (buildCounterGoalUrlDestinationDetails < 3) { |
| 2029 o.caseSensitive = true; | 2031 o.caseSensitive = true; |
| 2030 o.firstStepRequired = true; | 2032 o.firstStepRequired = true; |
| 2031 o.matchType = "foo"; | 2033 o.matchType = "foo"; |
| 2032 o.steps = buildUnnamed1119(); | 2034 o.steps = buildUnnamed1145(); |
| 2033 o.url = "foo"; | 2035 o.url = "foo"; |
| 2034 } | 2036 } |
| 2035 buildCounterGoalUrlDestinationDetails--; | 2037 buildCounterGoalUrlDestinationDetails--; |
| 2036 return o; | 2038 return o; |
| 2037 } | 2039 } |
| 2038 | 2040 |
| 2039 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { | 2041 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { |
| 2040 buildCounterGoalUrlDestinationDetails++; | 2042 buildCounterGoalUrlDestinationDetails++; |
| 2041 if (buildCounterGoalUrlDestinationDetails < 3) { | 2043 if (buildCounterGoalUrlDestinationDetails < 3) { |
| 2042 unittest.expect(o.caseSensitive, unittest.isTrue); | 2044 unittest.expect(o.caseSensitive, unittest.isTrue); |
| 2043 unittest.expect(o.firstStepRequired, unittest.isTrue); | 2045 unittest.expect(o.firstStepRequired, unittest.isTrue); |
| 2044 unittest.expect(o.matchType, unittest.equals('foo')); | 2046 unittest.expect(o.matchType, unittest.equals('foo')); |
| 2045 checkUnnamed1119(o.steps); | 2047 checkUnnamed1145(o.steps); |
| 2046 unittest.expect(o.url, unittest.equals('foo')); | 2048 unittest.expect(o.url, unittest.equals('foo')); |
| 2047 } | 2049 } |
| 2048 buildCounterGoalUrlDestinationDetails--; | 2050 buildCounterGoalUrlDestinationDetails--; |
| 2049 } | 2051 } |
| 2050 | 2052 |
| 2051 core.int buildCounterGoalVisitNumPagesDetails = 0; | 2053 core.int buildCounterGoalVisitNumPagesDetails = 0; |
| 2052 buildGoalVisitNumPagesDetails() { | 2054 buildGoalVisitNumPagesDetails() { |
| 2053 var o = new api.GoalVisitNumPagesDetails(); | 2055 var o = new api.GoalVisitNumPagesDetails(); |
| 2054 buildCounterGoalVisitNumPagesDetails++; | 2056 buildCounterGoalVisitNumPagesDetails++; |
| 2055 if (buildCounterGoalVisitNumPagesDetails < 3) { | 2057 if (buildCounterGoalVisitNumPagesDetails < 3) { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2136 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2138 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2137 checkGoalUrlDestinationDetails(o.urlDestinationDetails); | 2139 checkGoalUrlDestinationDetails(o.urlDestinationDetails); |
| 2138 unittest.expect(o.value, unittest.equals(42.0)); | 2140 unittest.expect(o.value, unittest.equals(42.0)); |
| 2139 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); | 2141 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); |
| 2140 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); | 2142 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); |
| 2141 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2143 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2142 } | 2144 } |
| 2143 buildCounterGoal--; | 2145 buildCounterGoal--; |
| 2144 } | 2146 } |
| 2145 | 2147 |
| 2146 buildUnnamed1120() { | 2148 buildUnnamed1146() { |
| 2147 var o = new core.List<api.Goal>(); | 2149 var o = new core.List<api.Goal>(); |
| 2148 o.add(buildGoal()); | 2150 o.add(buildGoal()); |
| 2149 o.add(buildGoal()); | 2151 o.add(buildGoal()); |
| 2150 return o; | 2152 return o; |
| 2151 } | 2153 } |
| 2152 | 2154 |
| 2153 checkUnnamed1120(core.List<api.Goal> o) { | 2155 checkUnnamed1146(core.List<api.Goal> o) { |
| 2154 unittest.expect(o, unittest.hasLength(2)); | 2156 unittest.expect(o, unittest.hasLength(2)); |
| 2155 checkGoal(o[0]); | 2157 checkGoal(o[0]); |
| 2156 checkGoal(o[1]); | 2158 checkGoal(o[1]); |
| 2157 } | 2159 } |
| 2158 | 2160 |
| 2159 core.int buildCounterGoals = 0; | 2161 core.int buildCounterGoals = 0; |
| 2160 buildGoals() { | 2162 buildGoals() { |
| 2161 var o = new api.Goals(); | 2163 var o = new api.Goals(); |
| 2162 buildCounterGoals++; | 2164 buildCounterGoals++; |
| 2163 if (buildCounterGoals < 3) { | 2165 if (buildCounterGoals < 3) { |
| 2164 o.items = buildUnnamed1120(); | 2166 o.items = buildUnnamed1146(); |
| 2165 o.itemsPerPage = 42; | 2167 o.itemsPerPage = 42; |
| 2166 o.kind = "foo"; | 2168 o.kind = "foo"; |
| 2167 o.nextLink = "foo"; | 2169 o.nextLink = "foo"; |
| 2168 o.previousLink = "foo"; | 2170 o.previousLink = "foo"; |
| 2169 o.startIndex = 42; | 2171 o.startIndex = 42; |
| 2170 o.totalResults = 42; | 2172 o.totalResults = 42; |
| 2171 o.username = "foo"; | 2173 o.username = "foo"; |
| 2172 } | 2174 } |
| 2173 buildCounterGoals--; | 2175 buildCounterGoals--; |
| 2174 return o; | 2176 return o; |
| 2175 } | 2177 } |
| 2176 | 2178 |
| 2177 checkGoals(api.Goals o) { | 2179 checkGoals(api.Goals o) { |
| 2178 buildCounterGoals++; | 2180 buildCounterGoals++; |
| 2179 if (buildCounterGoals < 3) { | 2181 if (buildCounterGoals < 3) { |
| 2180 checkUnnamed1120(o.items); | 2182 checkUnnamed1146(o.items); |
| 2181 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2183 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2182 unittest.expect(o.kind, unittest.equals('foo')); | 2184 unittest.expect(o.kind, unittest.equals('foo')); |
| 2183 unittest.expect(o.nextLink, unittest.equals('foo')); | 2185 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2184 unittest.expect(o.previousLink, unittest.equals('foo')); | 2186 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2185 unittest.expect(o.startIndex, unittest.equals(42)); | 2187 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2186 unittest.expect(o.totalResults, unittest.equals(42)); | 2188 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2187 unittest.expect(o.username, unittest.equals('foo')); | 2189 unittest.expect(o.username, unittest.equals('foo')); |
| 2188 } | 2190 } |
| 2189 buildCounterGoals--; | 2191 buildCounterGoals--; |
| 2190 } | 2192 } |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2269 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { | 2271 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { |
| 2270 buildCounterMcfDataColumnHeaders++; | 2272 buildCounterMcfDataColumnHeaders++; |
| 2271 if (buildCounterMcfDataColumnHeaders < 3) { | 2273 if (buildCounterMcfDataColumnHeaders < 3) { |
| 2272 unittest.expect(o.columnType, unittest.equals('foo')); | 2274 unittest.expect(o.columnType, unittest.equals('foo')); |
| 2273 unittest.expect(o.dataType, unittest.equals('foo')); | 2275 unittest.expect(o.dataType, unittest.equals('foo')); |
| 2274 unittest.expect(o.name, unittest.equals('foo')); | 2276 unittest.expect(o.name, unittest.equals('foo')); |
| 2275 } | 2277 } |
| 2276 buildCounterMcfDataColumnHeaders--; | 2278 buildCounterMcfDataColumnHeaders--; |
| 2277 } | 2279 } |
| 2278 | 2280 |
| 2279 buildUnnamed1121() { | 2281 buildUnnamed1147() { |
| 2280 var o = new core.List<api.McfDataColumnHeaders>(); | 2282 var o = new core.List<api.McfDataColumnHeaders>(); |
| 2281 o.add(buildMcfDataColumnHeaders()); | 2283 o.add(buildMcfDataColumnHeaders()); |
| 2282 o.add(buildMcfDataColumnHeaders()); | 2284 o.add(buildMcfDataColumnHeaders()); |
| 2283 return o; | 2285 return o; |
| 2284 } | 2286 } |
| 2285 | 2287 |
| 2286 checkUnnamed1121(core.List<api.McfDataColumnHeaders> o) { | 2288 checkUnnamed1147(core.List<api.McfDataColumnHeaders> o) { |
| 2287 unittest.expect(o, unittest.hasLength(2)); | 2289 unittest.expect(o, unittest.hasLength(2)); |
| 2288 checkMcfDataColumnHeaders(o[0]); | 2290 checkMcfDataColumnHeaders(o[0]); |
| 2289 checkMcfDataColumnHeaders(o[1]); | 2291 checkMcfDataColumnHeaders(o[1]); |
| 2290 } | 2292 } |
| 2291 | 2293 |
| 2292 core.int buildCounterMcfDataProfileInfo = 0; | 2294 core.int buildCounterMcfDataProfileInfo = 0; |
| 2293 buildMcfDataProfileInfo() { | 2295 buildMcfDataProfileInfo() { |
| 2294 var o = new api.McfDataProfileInfo(); | 2296 var o = new api.McfDataProfileInfo(); |
| 2295 buildCounterMcfDataProfileInfo++; | 2297 buildCounterMcfDataProfileInfo++; |
| 2296 if (buildCounterMcfDataProfileInfo < 3) { | 2298 if (buildCounterMcfDataProfileInfo < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2311 unittest.expect(o.accountId, unittest.equals('foo')); | 2313 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2312 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2314 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 2313 unittest.expect(o.profileId, unittest.equals('foo')); | 2315 unittest.expect(o.profileId, unittest.equals('foo')); |
| 2314 unittest.expect(o.profileName, unittest.equals('foo')); | 2316 unittest.expect(o.profileName, unittest.equals('foo')); |
| 2315 unittest.expect(o.tableId, unittest.equals('foo')); | 2317 unittest.expect(o.tableId, unittest.equals('foo')); |
| 2316 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2318 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2317 } | 2319 } |
| 2318 buildCounterMcfDataProfileInfo--; | 2320 buildCounterMcfDataProfileInfo--; |
| 2319 } | 2321 } |
| 2320 | 2322 |
| 2321 buildUnnamed1122() { | 2323 buildUnnamed1148() { |
| 2322 var o = new core.List<core.String>(); | 2324 var o = new core.List<core.String>(); |
| 2323 o.add("foo"); | 2325 o.add("foo"); |
| 2324 o.add("foo"); | 2326 o.add("foo"); |
| 2325 return o; | 2327 return o; |
| 2326 } | 2328 } |
| 2327 | 2329 |
| 2328 checkUnnamed1122(core.List<core.String> o) { | 2330 checkUnnamed1148(core.List<core.String> o) { |
| 2329 unittest.expect(o, unittest.hasLength(2)); | 2331 unittest.expect(o, unittest.hasLength(2)); |
| 2330 unittest.expect(o[0], unittest.equals('foo')); | 2332 unittest.expect(o[0], unittest.equals('foo')); |
| 2331 unittest.expect(o[1], unittest.equals('foo')); | 2333 unittest.expect(o[1], unittest.equals('foo')); |
| 2332 } | 2334 } |
| 2333 | 2335 |
| 2334 buildUnnamed1123() { | 2336 buildUnnamed1149() { |
| 2335 var o = new core.List<core.String>(); | 2337 var o = new core.List<core.String>(); |
| 2336 o.add("foo"); | 2338 o.add("foo"); |
| 2337 o.add("foo"); | 2339 o.add("foo"); |
| 2338 return o; | 2340 return o; |
| 2339 } | 2341 } |
| 2340 | 2342 |
| 2341 checkUnnamed1123(core.List<core.String> o) { | 2343 checkUnnamed1149(core.List<core.String> o) { |
| 2342 unittest.expect(o, unittest.hasLength(2)); | 2344 unittest.expect(o, unittest.hasLength(2)); |
| 2343 unittest.expect(o[0], unittest.equals('foo')); | 2345 unittest.expect(o[0], unittest.equals('foo')); |
| 2344 unittest.expect(o[1], unittest.equals('foo')); | 2346 unittest.expect(o[1], unittest.equals('foo')); |
| 2345 } | 2347 } |
| 2346 | 2348 |
| 2347 core.int buildCounterMcfDataQuery = 0; | 2349 core.int buildCounterMcfDataQuery = 0; |
| 2348 buildMcfDataQuery() { | 2350 buildMcfDataQuery() { |
| 2349 var o = new api.McfDataQuery(); | 2351 var o = new api.McfDataQuery(); |
| 2350 buildCounterMcfDataQuery++; | 2352 buildCounterMcfDataQuery++; |
| 2351 if (buildCounterMcfDataQuery < 3) { | 2353 if (buildCounterMcfDataQuery < 3) { |
| 2352 o.dimensions = "foo"; | 2354 o.dimensions = "foo"; |
| 2353 o.end_date = "foo"; | 2355 o.end_date = "foo"; |
| 2354 o.filters = "foo"; | 2356 o.filters = "foo"; |
| 2355 o.ids = "foo"; | 2357 o.ids = "foo"; |
| 2356 o.max_results = 42; | 2358 o.max_results = 42; |
| 2357 o.metrics = buildUnnamed1122(); | 2359 o.metrics = buildUnnamed1148(); |
| 2358 o.samplingLevel = "foo"; | 2360 o.samplingLevel = "foo"; |
| 2359 o.segment = "foo"; | 2361 o.segment = "foo"; |
| 2360 o.sort = buildUnnamed1123(); | 2362 o.sort = buildUnnamed1149(); |
| 2361 o.start_date = "foo"; | 2363 o.start_date = "foo"; |
| 2362 o.start_index = 42; | 2364 o.start_index = 42; |
| 2363 } | 2365 } |
| 2364 buildCounterMcfDataQuery--; | 2366 buildCounterMcfDataQuery--; |
| 2365 return o; | 2367 return o; |
| 2366 } | 2368 } |
| 2367 | 2369 |
| 2368 checkMcfDataQuery(api.McfDataQuery o) { | 2370 checkMcfDataQuery(api.McfDataQuery o) { |
| 2369 buildCounterMcfDataQuery++; | 2371 buildCounterMcfDataQuery++; |
| 2370 if (buildCounterMcfDataQuery < 3) { | 2372 if (buildCounterMcfDataQuery < 3) { |
| 2371 unittest.expect(o.dimensions, unittest.equals('foo')); | 2373 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 2372 unittest.expect(o.end_date, unittest.equals('foo')); | 2374 unittest.expect(o.end_date, unittest.equals('foo')); |
| 2373 unittest.expect(o.filters, unittest.equals('foo')); | 2375 unittest.expect(o.filters, unittest.equals('foo')); |
| 2374 unittest.expect(o.ids, unittest.equals('foo')); | 2376 unittest.expect(o.ids, unittest.equals('foo')); |
| 2375 unittest.expect(o.max_results, unittest.equals(42)); | 2377 unittest.expect(o.max_results, unittest.equals(42)); |
| 2376 checkUnnamed1122(o.metrics); | 2378 checkUnnamed1148(o.metrics); |
| 2377 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 2379 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
| 2378 unittest.expect(o.segment, unittest.equals('foo')); | 2380 unittest.expect(o.segment, unittest.equals('foo')); |
| 2379 checkUnnamed1123(o.sort); | 2381 checkUnnamed1149(o.sort); |
| 2380 unittest.expect(o.start_date, unittest.equals('foo')); | 2382 unittest.expect(o.start_date, unittest.equals('foo')); |
| 2381 unittest.expect(o.start_index, unittest.equals(42)); | 2383 unittest.expect(o.start_index, unittest.equals(42)); |
| 2382 } | 2384 } |
| 2383 buildCounterMcfDataQuery--; | 2385 buildCounterMcfDataQuery--; |
| 2384 } | 2386 } |
| 2385 | 2387 |
| 2386 core.int buildCounterMcfDataRowsConversionPathValue = 0; | 2388 core.int buildCounterMcfDataRowsConversionPathValue = 0; |
| 2387 buildMcfDataRowsConversionPathValue() { | 2389 buildMcfDataRowsConversionPathValue() { |
| 2388 var o = new api.McfDataRowsConversionPathValue(); | 2390 var o = new api.McfDataRowsConversionPathValue(); |
| 2389 buildCounterMcfDataRowsConversionPathValue++; | 2391 buildCounterMcfDataRowsConversionPathValue++; |
| 2390 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2392 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
| 2391 o.interactionType = "foo"; | 2393 o.interactionType = "foo"; |
| 2392 o.nodeValue = "foo"; | 2394 o.nodeValue = "foo"; |
| 2393 } | 2395 } |
| 2394 buildCounterMcfDataRowsConversionPathValue--; | 2396 buildCounterMcfDataRowsConversionPathValue--; |
| 2395 return o; | 2397 return o; |
| 2396 } | 2398 } |
| 2397 | 2399 |
| 2398 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { | 2400 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { |
| 2399 buildCounterMcfDataRowsConversionPathValue++; | 2401 buildCounterMcfDataRowsConversionPathValue++; |
| 2400 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2402 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
| 2401 unittest.expect(o.interactionType, unittest.equals('foo')); | 2403 unittest.expect(o.interactionType, unittest.equals('foo')); |
| 2402 unittest.expect(o.nodeValue, unittest.equals('foo')); | 2404 unittest.expect(o.nodeValue, unittest.equals('foo')); |
| 2403 } | 2405 } |
| 2404 buildCounterMcfDataRowsConversionPathValue--; | 2406 buildCounterMcfDataRowsConversionPathValue--; |
| 2405 } | 2407 } |
| 2406 | 2408 |
| 2407 buildUnnamed1124() { | 2409 buildUnnamed1150() { |
| 2408 var o = new core.List<api.McfDataRowsConversionPathValue>(); | 2410 var o = new core.List<api.McfDataRowsConversionPathValue>(); |
| 2409 o.add(buildMcfDataRowsConversionPathValue()); | 2411 o.add(buildMcfDataRowsConversionPathValue()); |
| 2410 o.add(buildMcfDataRowsConversionPathValue()); | 2412 o.add(buildMcfDataRowsConversionPathValue()); |
| 2411 return o; | 2413 return o; |
| 2412 } | 2414 } |
| 2413 | 2415 |
| 2414 checkUnnamed1124(core.List<api.McfDataRowsConversionPathValue> o) { | 2416 checkUnnamed1150(core.List<api.McfDataRowsConversionPathValue> o) { |
| 2415 unittest.expect(o, unittest.hasLength(2)); | 2417 unittest.expect(o, unittest.hasLength(2)); |
| 2416 checkMcfDataRowsConversionPathValue(o[0]); | 2418 checkMcfDataRowsConversionPathValue(o[0]); |
| 2417 checkMcfDataRowsConversionPathValue(o[1]); | 2419 checkMcfDataRowsConversionPathValue(o[1]); |
| 2418 } | 2420 } |
| 2419 | 2421 |
| 2420 core.int buildCounterMcfDataRows = 0; | 2422 core.int buildCounterMcfDataRows = 0; |
| 2421 buildMcfDataRows() { | 2423 buildMcfDataRows() { |
| 2422 var o = new api.McfDataRows(); | 2424 var o = new api.McfDataRows(); |
| 2423 buildCounterMcfDataRows++; | 2425 buildCounterMcfDataRows++; |
| 2424 if (buildCounterMcfDataRows < 3) { | 2426 if (buildCounterMcfDataRows < 3) { |
| 2425 o.conversionPathValue = buildUnnamed1124(); | 2427 o.conversionPathValue = buildUnnamed1150(); |
| 2426 o.primitiveValue = "foo"; | 2428 o.primitiveValue = "foo"; |
| 2427 } | 2429 } |
| 2428 buildCounterMcfDataRows--; | 2430 buildCounterMcfDataRows--; |
| 2429 return o; | 2431 return o; |
| 2430 } | 2432 } |
| 2431 | 2433 |
| 2432 checkMcfDataRows(api.McfDataRows o) { | 2434 checkMcfDataRows(api.McfDataRows o) { |
| 2433 buildCounterMcfDataRows++; | 2435 buildCounterMcfDataRows++; |
| 2434 if (buildCounterMcfDataRows < 3) { | 2436 if (buildCounterMcfDataRows < 3) { |
| 2435 checkUnnamed1124(o.conversionPathValue); | 2437 checkUnnamed1150(o.conversionPathValue); |
| 2436 unittest.expect(o.primitiveValue, unittest.equals('foo')); | 2438 unittest.expect(o.primitiveValue, unittest.equals('foo')); |
| 2437 } | 2439 } |
| 2438 buildCounterMcfDataRows--; | 2440 buildCounterMcfDataRows--; |
| 2439 } | 2441 } |
| 2440 | 2442 |
| 2441 buildUnnamed1125() { | 2443 buildUnnamed1151() { |
| 2442 var o = new core.List<api.McfDataRows>(); | 2444 var o = new core.List<api.McfDataRows>(); |
| 2443 o.add(buildMcfDataRows()); | 2445 o.add(buildMcfDataRows()); |
| 2444 o.add(buildMcfDataRows()); | 2446 o.add(buildMcfDataRows()); |
| 2445 return o; | 2447 return o; |
| 2446 } | 2448 } |
| 2447 | 2449 |
| 2448 checkUnnamed1125(core.List<api.McfDataRows> o) { | 2450 checkUnnamed1151(core.List<api.McfDataRows> o) { |
| 2449 unittest.expect(o, unittest.hasLength(2)); | 2451 unittest.expect(o, unittest.hasLength(2)); |
| 2450 checkMcfDataRows(o[0]); | 2452 checkMcfDataRows(o[0]); |
| 2451 checkMcfDataRows(o[1]); | 2453 checkMcfDataRows(o[1]); |
| 2452 } | 2454 } |
| 2453 | 2455 |
| 2454 buildUnnamed1126() { | 2456 buildUnnamed1152() { |
| 2455 var o = new core.List<core.List<api.McfDataRows>>(); | 2457 var o = new core.List<core.List<api.McfDataRows>>(); |
| 2456 o.add(buildUnnamed1125()); | 2458 o.add(buildUnnamed1151()); |
| 2457 o.add(buildUnnamed1125()); | 2459 o.add(buildUnnamed1151()); |
| 2458 return o; | 2460 return o; |
| 2459 } | 2461 } |
| 2460 | 2462 |
| 2461 checkUnnamed1126(core.List<core.List<api.McfDataRows>> o) { | 2463 checkUnnamed1152(core.List<core.List<api.McfDataRows>> o) { |
| 2462 unittest.expect(o, unittest.hasLength(2)); | 2464 unittest.expect(o, unittest.hasLength(2)); |
| 2463 checkUnnamed1125(o[0]); | 2465 checkUnnamed1151(o[0]); |
| 2464 checkUnnamed1125(o[1]); | 2466 checkUnnamed1151(o[1]); |
| 2465 } | 2467 } |
| 2466 | 2468 |
| 2467 buildUnnamed1127() { | 2469 buildUnnamed1153() { |
| 2468 var o = new core.Map<core.String, core.String>(); | 2470 var o = new core.Map<core.String, core.String>(); |
| 2469 o["x"] = "foo"; | 2471 o["x"] = "foo"; |
| 2470 o["y"] = "foo"; | 2472 o["y"] = "foo"; |
| 2471 return o; | 2473 return o; |
| 2472 } | 2474 } |
| 2473 | 2475 |
| 2474 checkUnnamed1127(core.Map<core.String, core.String> o) { | 2476 checkUnnamed1153(core.Map<core.String, core.String> o) { |
| 2475 unittest.expect(o, unittest.hasLength(2)); | 2477 unittest.expect(o, unittest.hasLength(2)); |
| 2476 unittest.expect(o["x"], unittest.equals('foo')); | 2478 unittest.expect(o["x"], unittest.equals('foo')); |
| 2477 unittest.expect(o["y"], unittest.equals('foo')); | 2479 unittest.expect(o["y"], unittest.equals('foo')); |
| 2478 } | 2480 } |
| 2479 | 2481 |
| 2480 core.int buildCounterMcfData = 0; | 2482 core.int buildCounterMcfData = 0; |
| 2481 buildMcfData() { | 2483 buildMcfData() { |
| 2482 var o = new api.McfData(); | 2484 var o = new api.McfData(); |
| 2483 buildCounterMcfData++; | 2485 buildCounterMcfData++; |
| 2484 if (buildCounterMcfData < 3) { | 2486 if (buildCounterMcfData < 3) { |
| 2485 o.columnHeaders = buildUnnamed1121(); | 2487 o.columnHeaders = buildUnnamed1147(); |
| 2486 o.containsSampledData = true; | 2488 o.containsSampledData = true; |
| 2487 o.id = "foo"; | 2489 o.id = "foo"; |
| 2488 o.itemsPerPage = 42; | 2490 o.itemsPerPage = 42; |
| 2489 o.kind = "foo"; | 2491 o.kind = "foo"; |
| 2490 o.nextLink = "foo"; | 2492 o.nextLink = "foo"; |
| 2491 o.previousLink = "foo"; | 2493 o.previousLink = "foo"; |
| 2492 o.profileInfo = buildMcfDataProfileInfo(); | 2494 o.profileInfo = buildMcfDataProfileInfo(); |
| 2493 o.query = buildMcfDataQuery(); | 2495 o.query = buildMcfDataQuery(); |
| 2494 o.rows = buildUnnamed1126(); | 2496 o.rows = buildUnnamed1152(); |
| 2495 o.sampleSize = "foo"; | 2497 o.sampleSize = "foo"; |
| 2496 o.sampleSpace = "foo"; | 2498 o.sampleSpace = "foo"; |
| 2497 o.selfLink = "foo"; | 2499 o.selfLink = "foo"; |
| 2498 o.totalResults = 42; | 2500 o.totalResults = 42; |
| 2499 o.totalsForAllResults = buildUnnamed1127(); | 2501 o.totalsForAllResults = buildUnnamed1153(); |
| 2500 } | 2502 } |
| 2501 buildCounterMcfData--; | 2503 buildCounterMcfData--; |
| 2502 return o; | 2504 return o; |
| 2503 } | 2505 } |
| 2504 | 2506 |
| 2505 checkMcfData(api.McfData o) { | 2507 checkMcfData(api.McfData o) { |
| 2506 buildCounterMcfData++; | 2508 buildCounterMcfData++; |
| 2507 if (buildCounterMcfData < 3) { | 2509 if (buildCounterMcfData < 3) { |
| 2508 checkUnnamed1121(o.columnHeaders); | 2510 checkUnnamed1147(o.columnHeaders); |
| 2509 unittest.expect(o.containsSampledData, unittest.isTrue); | 2511 unittest.expect(o.containsSampledData, unittest.isTrue); |
| 2510 unittest.expect(o.id, unittest.equals('foo')); | 2512 unittest.expect(o.id, unittest.equals('foo')); |
| 2511 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2513 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2512 unittest.expect(o.kind, unittest.equals('foo')); | 2514 unittest.expect(o.kind, unittest.equals('foo')); |
| 2513 unittest.expect(o.nextLink, unittest.equals('foo')); | 2515 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2514 unittest.expect(o.previousLink, unittest.equals('foo')); | 2516 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2515 checkMcfDataProfileInfo(o.profileInfo); | 2517 checkMcfDataProfileInfo(o.profileInfo); |
| 2516 checkMcfDataQuery(o.query); | 2518 checkMcfDataQuery(o.query); |
| 2517 checkUnnamed1126(o.rows); | 2519 checkUnnamed1152(o.rows); |
| 2518 unittest.expect(o.sampleSize, unittest.equals('foo')); | 2520 unittest.expect(o.sampleSize, unittest.equals('foo')); |
| 2519 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 2521 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
| 2520 unittest.expect(o.selfLink, unittest.equals('foo')); | 2522 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2521 unittest.expect(o.totalResults, unittest.equals(42)); | 2523 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2522 checkUnnamed1127(o.totalsForAllResults); | 2524 checkUnnamed1153(o.totalsForAllResults); |
| 2523 } | 2525 } |
| 2524 buildCounterMcfData--; | 2526 buildCounterMcfData--; |
| 2525 } | 2527 } |
| 2526 | 2528 |
| 2527 core.int buildCounterProfileChildLink = 0; | 2529 core.int buildCounterProfileChildLink = 0; |
| 2528 buildProfileChildLink() { | 2530 buildProfileChildLink() { |
| 2529 var o = new api.ProfileChildLink(); | 2531 var o = new api.ProfileChildLink(); |
| 2530 buildCounterProfileChildLink++; | 2532 buildCounterProfileChildLink++; |
| 2531 if (buildCounterProfileChildLink < 3) { | 2533 if (buildCounterProfileChildLink < 3) { |
| 2532 o.href = "foo"; | 2534 o.href = "foo"; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 2559 | 2561 |
| 2560 checkProfileParentLink(api.ProfileParentLink o) { | 2562 checkProfileParentLink(api.ProfileParentLink o) { |
| 2561 buildCounterProfileParentLink++; | 2563 buildCounterProfileParentLink++; |
| 2562 if (buildCounterProfileParentLink < 3) { | 2564 if (buildCounterProfileParentLink < 3) { |
| 2563 unittest.expect(o.href, unittest.equals('foo')); | 2565 unittest.expect(o.href, unittest.equals('foo')); |
| 2564 unittest.expect(o.type, unittest.equals('foo')); | 2566 unittest.expect(o.type, unittest.equals('foo')); |
| 2565 } | 2567 } |
| 2566 buildCounterProfileParentLink--; | 2568 buildCounterProfileParentLink--; |
| 2567 } | 2569 } |
| 2568 | 2570 |
| 2569 buildUnnamed1128() { | 2571 buildUnnamed1154() { |
| 2570 var o = new core.List<core.String>(); | 2572 var o = new core.List<core.String>(); |
| 2571 o.add("foo"); | 2573 o.add("foo"); |
| 2572 o.add("foo"); | 2574 o.add("foo"); |
| 2573 return o; | 2575 return o; |
| 2574 } | 2576 } |
| 2575 | 2577 |
| 2576 checkUnnamed1128(core.List<core.String> o) { | 2578 checkUnnamed1154(core.List<core.String> o) { |
| 2577 unittest.expect(o, unittest.hasLength(2)); | 2579 unittest.expect(o, unittest.hasLength(2)); |
| 2578 unittest.expect(o[0], unittest.equals('foo')); | 2580 unittest.expect(o[0], unittest.equals('foo')); |
| 2579 unittest.expect(o[1], unittest.equals('foo')); | 2581 unittest.expect(o[1], unittest.equals('foo')); |
| 2580 } | 2582 } |
| 2581 | 2583 |
| 2582 core.int buildCounterProfilePermissions = 0; | 2584 core.int buildCounterProfilePermissions = 0; |
| 2583 buildProfilePermissions() { | 2585 buildProfilePermissions() { |
| 2584 var o = new api.ProfilePermissions(); | 2586 var o = new api.ProfilePermissions(); |
| 2585 buildCounterProfilePermissions++; | 2587 buildCounterProfilePermissions++; |
| 2586 if (buildCounterProfilePermissions < 3) { | 2588 if (buildCounterProfilePermissions < 3) { |
| 2587 o.effective = buildUnnamed1128(); | 2589 o.effective = buildUnnamed1154(); |
| 2588 } | 2590 } |
| 2589 buildCounterProfilePermissions--; | 2591 buildCounterProfilePermissions--; |
| 2590 return o; | 2592 return o; |
| 2591 } | 2593 } |
| 2592 | 2594 |
| 2593 checkProfilePermissions(api.ProfilePermissions o) { | 2595 checkProfilePermissions(api.ProfilePermissions o) { |
| 2594 buildCounterProfilePermissions++; | 2596 buildCounterProfilePermissions++; |
| 2595 if (buildCounterProfilePermissions < 3) { | 2597 if (buildCounterProfilePermissions < 3) { |
| 2596 checkUnnamed1128(o.effective); | 2598 checkUnnamed1154(o.effective); |
| 2597 } | 2599 } |
| 2598 buildCounterProfilePermissions--; | 2600 buildCounterProfilePermissions--; |
| 2599 } | 2601 } |
| 2600 | 2602 |
| 2601 core.int buildCounterProfile = 0; | 2603 core.int buildCounterProfile = 0; |
| 2602 buildProfile() { | 2604 buildProfile() { |
| 2603 var o = new api.Profile(); | 2605 var o = new api.Profile(); |
| 2604 buildCounterProfile++; | 2606 buildCounterProfile++; |
| 2605 if (buildCounterProfile < 3) { | 2607 if (buildCounterProfile < 3) { |
| 2606 o.accountId = "foo"; | 2608 o.accountId = "foo"; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2689 checkFilterRef(o.filterRef); | 2691 checkFilterRef(o.filterRef); |
| 2690 unittest.expect(o.id, unittest.equals('foo')); | 2692 unittest.expect(o.id, unittest.equals('foo')); |
| 2691 unittest.expect(o.kind, unittest.equals('foo')); | 2693 unittest.expect(o.kind, unittest.equals('foo')); |
| 2692 checkProfileRef(o.profileRef); | 2694 checkProfileRef(o.profileRef); |
| 2693 unittest.expect(o.rank, unittest.equals(42)); | 2695 unittest.expect(o.rank, unittest.equals(42)); |
| 2694 unittest.expect(o.selfLink, unittest.equals('foo')); | 2696 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2695 } | 2697 } |
| 2696 buildCounterProfileFilterLink--; | 2698 buildCounterProfileFilterLink--; |
| 2697 } | 2699 } |
| 2698 | 2700 |
| 2699 buildUnnamed1129() { | 2701 buildUnnamed1155() { |
| 2700 var o = new core.List<api.ProfileFilterLink>(); | 2702 var o = new core.List<api.ProfileFilterLink>(); |
| 2701 o.add(buildProfileFilterLink()); | 2703 o.add(buildProfileFilterLink()); |
| 2702 o.add(buildProfileFilterLink()); | 2704 o.add(buildProfileFilterLink()); |
| 2703 return o; | 2705 return o; |
| 2704 } | 2706 } |
| 2705 | 2707 |
| 2706 checkUnnamed1129(core.List<api.ProfileFilterLink> o) { | 2708 checkUnnamed1155(core.List<api.ProfileFilterLink> o) { |
| 2707 unittest.expect(o, unittest.hasLength(2)); | 2709 unittest.expect(o, unittest.hasLength(2)); |
| 2708 checkProfileFilterLink(o[0]); | 2710 checkProfileFilterLink(o[0]); |
| 2709 checkProfileFilterLink(o[1]); | 2711 checkProfileFilterLink(o[1]); |
| 2710 } | 2712 } |
| 2711 | 2713 |
| 2712 core.int buildCounterProfileFilterLinks = 0; | 2714 core.int buildCounterProfileFilterLinks = 0; |
| 2713 buildProfileFilterLinks() { | 2715 buildProfileFilterLinks() { |
| 2714 var o = new api.ProfileFilterLinks(); | 2716 var o = new api.ProfileFilterLinks(); |
| 2715 buildCounterProfileFilterLinks++; | 2717 buildCounterProfileFilterLinks++; |
| 2716 if (buildCounterProfileFilterLinks < 3) { | 2718 if (buildCounterProfileFilterLinks < 3) { |
| 2717 o.items = buildUnnamed1129(); | 2719 o.items = buildUnnamed1155(); |
| 2718 o.itemsPerPage = 42; | 2720 o.itemsPerPage = 42; |
| 2719 o.kind = "foo"; | 2721 o.kind = "foo"; |
| 2720 o.nextLink = "foo"; | 2722 o.nextLink = "foo"; |
| 2721 o.previousLink = "foo"; | 2723 o.previousLink = "foo"; |
| 2722 o.startIndex = 42; | 2724 o.startIndex = 42; |
| 2723 o.totalResults = 42; | 2725 o.totalResults = 42; |
| 2724 o.username = "foo"; | 2726 o.username = "foo"; |
| 2725 } | 2727 } |
| 2726 buildCounterProfileFilterLinks--; | 2728 buildCounterProfileFilterLinks--; |
| 2727 return o; | 2729 return o; |
| 2728 } | 2730 } |
| 2729 | 2731 |
| 2730 checkProfileFilterLinks(api.ProfileFilterLinks o) { | 2732 checkProfileFilterLinks(api.ProfileFilterLinks o) { |
| 2731 buildCounterProfileFilterLinks++; | 2733 buildCounterProfileFilterLinks++; |
| 2732 if (buildCounterProfileFilterLinks < 3) { | 2734 if (buildCounterProfileFilterLinks < 3) { |
| 2733 checkUnnamed1129(o.items); | 2735 checkUnnamed1155(o.items); |
| 2734 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2736 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2735 unittest.expect(o.kind, unittest.equals('foo')); | 2737 unittest.expect(o.kind, unittest.equals('foo')); |
| 2736 unittest.expect(o.nextLink, unittest.equals('foo')); | 2738 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2737 unittest.expect(o.previousLink, unittest.equals('foo')); | 2739 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2738 unittest.expect(o.startIndex, unittest.equals(42)); | 2740 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2739 unittest.expect(o.totalResults, unittest.equals(42)); | 2741 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2740 unittest.expect(o.username, unittest.equals('foo')); | 2742 unittest.expect(o.username, unittest.equals('foo')); |
| 2741 } | 2743 } |
| 2742 buildCounterProfileFilterLinks--; | 2744 buildCounterProfileFilterLinks--; |
| 2743 } | 2745 } |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2793 if (buildCounterProfileSummary < 3) { | 2795 if (buildCounterProfileSummary < 3) { |
| 2794 unittest.expect(o.id, unittest.equals('foo')); | 2796 unittest.expect(o.id, unittest.equals('foo')); |
| 2795 unittest.expect(o.kind, unittest.equals('foo')); | 2797 unittest.expect(o.kind, unittest.equals('foo')); |
| 2796 unittest.expect(o.name, unittest.equals('foo')); | 2798 unittest.expect(o.name, unittest.equals('foo')); |
| 2797 unittest.expect(o.starred, unittest.isTrue); | 2799 unittest.expect(o.starred, unittest.isTrue); |
| 2798 unittest.expect(o.type, unittest.equals('foo')); | 2800 unittest.expect(o.type, unittest.equals('foo')); |
| 2799 } | 2801 } |
| 2800 buildCounterProfileSummary--; | 2802 buildCounterProfileSummary--; |
| 2801 } | 2803 } |
| 2802 | 2804 |
| 2803 buildUnnamed1130() { | 2805 buildUnnamed1156() { |
| 2804 var o = new core.List<api.Profile>(); | 2806 var o = new core.List<api.Profile>(); |
| 2805 o.add(buildProfile()); | 2807 o.add(buildProfile()); |
| 2806 o.add(buildProfile()); | 2808 o.add(buildProfile()); |
| 2807 return o; | 2809 return o; |
| 2808 } | 2810 } |
| 2809 | 2811 |
| 2810 checkUnnamed1130(core.List<api.Profile> o) { | 2812 checkUnnamed1156(core.List<api.Profile> o) { |
| 2811 unittest.expect(o, unittest.hasLength(2)); | 2813 unittest.expect(o, unittest.hasLength(2)); |
| 2812 checkProfile(o[0]); | 2814 checkProfile(o[0]); |
| 2813 checkProfile(o[1]); | 2815 checkProfile(o[1]); |
| 2814 } | 2816 } |
| 2815 | 2817 |
| 2816 core.int buildCounterProfiles = 0; | 2818 core.int buildCounterProfiles = 0; |
| 2817 buildProfiles() { | 2819 buildProfiles() { |
| 2818 var o = new api.Profiles(); | 2820 var o = new api.Profiles(); |
| 2819 buildCounterProfiles++; | 2821 buildCounterProfiles++; |
| 2820 if (buildCounterProfiles < 3) { | 2822 if (buildCounterProfiles < 3) { |
| 2821 o.items = buildUnnamed1130(); | 2823 o.items = buildUnnamed1156(); |
| 2822 o.itemsPerPage = 42; | 2824 o.itemsPerPage = 42; |
| 2823 o.kind = "foo"; | 2825 o.kind = "foo"; |
| 2824 o.nextLink = "foo"; | 2826 o.nextLink = "foo"; |
| 2825 o.previousLink = "foo"; | 2827 o.previousLink = "foo"; |
| 2826 o.startIndex = 42; | 2828 o.startIndex = 42; |
| 2827 o.totalResults = 42; | 2829 o.totalResults = 42; |
| 2828 o.username = "foo"; | 2830 o.username = "foo"; |
| 2829 } | 2831 } |
| 2830 buildCounterProfiles--; | 2832 buildCounterProfiles--; |
| 2831 return o; | 2833 return o; |
| 2832 } | 2834 } |
| 2833 | 2835 |
| 2834 checkProfiles(api.Profiles o) { | 2836 checkProfiles(api.Profiles o) { |
| 2835 buildCounterProfiles++; | 2837 buildCounterProfiles++; |
| 2836 if (buildCounterProfiles < 3) { | 2838 if (buildCounterProfiles < 3) { |
| 2837 checkUnnamed1130(o.items); | 2839 checkUnnamed1156(o.items); |
| 2838 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2840 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2839 unittest.expect(o.kind, unittest.equals('foo')); | 2841 unittest.expect(o.kind, unittest.equals('foo')); |
| 2840 unittest.expect(o.nextLink, unittest.equals('foo')); | 2842 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2841 unittest.expect(o.previousLink, unittest.equals('foo')); | 2843 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2842 unittest.expect(o.startIndex, unittest.equals(42)); | 2844 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2843 unittest.expect(o.totalResults, unittest.equals(42)); | 2845 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2844 unittest.expect(o.username, unittest.equals('foo')); | 2846 unittest.expect(o.username, unittest.equals('foo')); |
| 2845 } | 2847 } |
| 2846 buildCounterProfiles--; | 2848 buildCounterProfiles--; |
| 2847 } | 2849 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2862 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { | 2864 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { |
| 2863 buildCounterRealtimeDataColumnHeaders++; | 2865 buildCounterRealtimeDataColumnHeaders++; |
| 2864 if (buildCounterRealtimeDataColumnHeaders < 3) { | 2866 if (buildCounterRealtimeDataColumnHeaders < 3) { |
| 2865 unittest.expect(o.columnType, unittest.equals('foo')); | 2867 unittest.expect(o.columnType, unittest.equals('foo')); |
| 2866 unittest.expect(o.dataType, unittest.equals('foo')); | 2868 unittest.expect(o.dataType, unittest.equals('foo')); |
| 2867 unittest.expect(o.name, unittest.equals('foo')); | 2869 unittest.expect(o.name, unittest.equals('foo')); |
| 2868 } | 2870 } |
| 2869 buildCounterRealtimeDataColumnHeaders--; | 2871 buildCounterRealtimeDataColumnHeaders--; |
| 2870 } | 2872 } |
| 2871 | 2873 |
| 2872 buildUnnamed1131() { | 2874 buildUnnamed1157() { |
| 2873 var o = new core.List<api.RealtimeDataColumnHeaders>(); | 2875 var o = new core.List<api.RealtimeDataColumnHeaders>(); |
| 2874 o.add(buildRealtimeDataColumnHeaders()); | 2876 o.add(buildRealtimeDataColumnHeaders()); |
| 2875 o.add(buildRealtimeDataColumnHeaders()); | 2877 o.add(buildRealtimeDataColumnHeaders()); |
| 2876 return o; | 2878 return o; |
| 2877 } | 2879 } |
| 2878 | 2880 |
| 2879 checkUnnamed1131(core.List<api.RealtimeDataColumnHeaders> o) { | 2881 checkUnnamed1157(core.List<api.RealtimeDataColumnHeaders> o) { |
| 2880 unittest.expect(o, unittest.hasLength(2)); | 2882 unittest.expect(o, unittest.hasLength(2)); |
| 2881 checkRealtimeDataColumnHeaders(o[0]); | 2883 checkRealtimeDataColumnHeaders(o[0]); |
| 2882 checkRealtimeDataColumnHeaders(o[1]); | 2884 checkRealtimeDataColumnHeaders(o[1]); |
| 2883 } | 2885 } |
| 2884 | 2886 |
| 2885 core.int buildCounterRealtimeDataProfileInfo = 0; | 2887 core.int buildCounterRealtimeDataProfileInfo = 0; |
| 2886 buildRealtimeDataProfileInfo() { | 2888 buildRealtimeDataProfileInfo() { |
| 2887 var o = new api.RealtimeDataProfileInfo(); | 2889 var o = new api.RealtimeDataProfileInfo(); |
| 2888 buildCounterRealtimeDataProfileInfo++; | 2890 buildCounterRealtimeDataProfileInfo++; |
| 2889 if (buildCounterRealtimeDataProfileInfo < 3) { | 2891 if (buildCounterRealtimeDataProfileInfo < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2904 unittest.expect(o.accountId, unittest.equals('foo')); | 2906 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2905 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2907 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 2906 unittest.expect(o.profileId, unittest.equals('foo')); | 2908 unittest.expect(o.profileId, unittest.equals('foo')); |
| 2907 unittest.expect(o.profileName, unittest.equals('foo')); | 2909 unittest.expect(o.profileName, unittest.equals('foo')); |
| 2908 unittest.expect(o.tableId, unittest.equals('foo')); | 2910 unittest.expect(o.tableId, unittest.equals('foo')); |
| 2909 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2911 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2910 } | 2912 } |
| 2911 buildCounterRealtimeDataProfileInfo--; | 2913 buildCounterRealtimeDataProfileInfo--; |
| 2912 } | 2914 } |
| 2913 | 2915 |
| 2914 buildUnnamed1132() { | 2916 buildUnnamed1158() { |
| 2915 var o = new core.List<core.String>(); | 2917 var o = new core.List<core.String>(); |
| 2916 o.add("foo"); | 2918 o.add("foo"); |
| 2917 o.add("foo"); | 2919 o.add("foo"); |
| 2918 return o; | 2920 return o; |
| 2919 } | 2921 } |
| 2920 | 2922 |
| 2921 checkUnnamed1132(core.List<core.String> o) { | 2923 checkUnnamed1158(core.List<core.String> o) { |
| 2922 unittest.expect(o, unittest.hasLength(2)); | 2924 unittest.expect(o, unittest.hasLength(2)); |
| 2923 unittest.expect(o[0], unittest.equals('foo')); | 2925 unittest.expect(o[0], unittest.equals('foo')); |
| 2924 unittest.expect(o[1], unittest.equals('foo')); | 2926 unittest.expect(o[1], unittest.equals('foo')); |
| 2925 } | 2927 } |
| 2926 | 2928 |
| 2927 buildUnnamed1133() { | 2929 buildUnnamed1159() { |
| 2928 var o = new core.List<core.String>(); | 2930 var o = new core.List<core.String>(); |
| 2929 o.add("foo"); | 2931 o.add("foo"); |
| 2930 o.add("foo"); | 2932 o.add("foo"); |
| 2931 return o; | 2933 return o; |
| 2932 } | 2934 } |
| 2933 | 2935 |
| 2934 checkUnnamed1133(core.List<core.String> o) { | 2936 checkUnnamed1159(core.List<core.String> o) { |
| 2935 unittest.expect(o, unittest.hasLength(2)); | 2937 unittest.expect(o, unittest.hasLength(2)); |
| 2936 unittest.expect(o[0], unittest.equals('foo')); | 2938 unittest.expect(o[0], unittest.equals('foo')); |
| 2937 unittest.expect(o[1], unittest.equals('foo')); | 2939 unittest.expect(o[1], unittest.equals('foo')); |
| 2938 } | 2940 } |
| 2939 | 2941 |
| 2940 core.int buildCounterRealtimeDataQuery = 0; | 2942 core.int buildCounterRealtimeDataQuery = 0; |
| 2941 buildRealtimeDataQuery() { | 2943 buildRealtimeDataQuery() { |
| 2942 var o = new api.RealtimeDataQuery(); | 2944 var o = new api.RealtimeDataQuery(); |
| 2943 buildCounterRealtimeDataQuery++; | 2945 buildCounterRealtimeDataQuery++; |
| 2944 if (buildCounterRealtimeDataQuery < 3) { | 2946 if (buildCounterRealtimeDataQuery < 3) { |
| 2945 o.dimensions = "foo"; | 2947 o.dimensions = "foo"; |
| 2946 o.filters = "foo"; | 2948 o.filters = "foo"; |
| 2947 o.ids = "foo"; | 2949 o.ids = "foo"; |
| 2948 o.max_results = 42; | 2950 o.max_results = 42; |
| 2949 o.metrics = buildUnnamed1132(); | 2951 o.metrics = buildUnnamed1158(); |
| 2950 o.sort = buildUnnamed1133(); | 2952 o.sort = buildUnnamed1159(); |
| 2951 } | 2953 } |
| 2952 buildCounterRealtimeDataQuery--; | 2954 buildCounterRealtimeDataQuery--; |
| 2953 return o; | 2955 return o; |
| 2954 } | 2956 } |
| 2955 | 2957 |
| 2956 checkRealtimeDataQuery(api.RealtimeDataQuery o) { | 2958 checkRealtimeDataQuery(api.RealtimeDataQuery o) { |
| 2957 buildCounterRealtimeDataQuery++; | 2959 buildCounterRealtimeDataQuery++; |
| 2958 if (buildCounterRealtimeDataQuery < 3) { | 2960 if (buildCounterRealtimeDataQuery < 3) { |
| 2959 unittest.expect(o.dimensions, unittest.equals('foo')); | 2961 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 2960 unittest.expect(o.filters, unittest.equals('foo')); | 2962 unittest.expect(o.filters, unittest.equals('foo')); |
| 2961 unittest.expect(o.ids, unittest.equals('foo')); | 2963 unittest.expect(o.ids, unittest.equals('foo')); |
| 2962 unittest.expect(o.max_results, unittest.equals(42)); | 2964 unittest.expect(o.max_results, unittest.equals(42)); |
| 2963 checkUnnamed1132(o.metrics); | 2965 checkUnnamed1158(o.metrics); |
| 2964 checkUnnamed1133(o.sort); | 2966 checkUnnamed1159(o.sort); |
| 2965 } | 2967 } |
| 2966 buildCounterRealtimeDataQuery--; | 2968 buildCounterRealtimeDataQuery--; |
| 2967 } | 2969 } |
| 2968 | 2970 |
| 2969 buildUnnamed1134() { | 2971 buildUnnamed1160() { |
| 2970 var o = new core.List<core.String>(); | 2972 var o = new core.List<core.String>(); |
| 2971 o.add("foo"); | 2973 o.add("foo"); |
| 2972 o.add("foo"); | 2974 o.add("foo"); |
| 2973 return o; | 2975 return o; |
| 2974 } | 2976 } |
| 2975 | 2977 |
| 2976 checkUnnamed1134(core.List<core.String> o) { | 2978 checkUnnamed1160(core.List<core.String> o) { |
| 2977 unittest.expect(o, unittest.hasLength(2)); | 2979 unittest.expect(o, unittest.hasLength(2)); |
| 2978 unittest.expect(o[0], unittest.equals('foo')); | 2980 unittest.expect(o[0], unittest.equals('foo')); |
| 2979 unittest.expect(o[1], unittest.equals('foo')); | 2981 unittest.expect(o[1], unittest.equals('foo')); |
| 2980 } | 2982 } |
| 2981 | 2983 |
| 2982 buildUnnamed1135() { | 2984 buildUnnamed1161() { |
| 2983 var o = new core.List<core.List<core.String>>(); | 2985 var o = new core.List<core.List<core.String>>(); |
| 2984 o.add(buildUnnamed1134()); | 2986 o.add(buildUnnamed1160()); |
| 2985 o.add(buildUnnamed1134()); | 2987 o.add(buildUnnamed1160()); |
| 2986 return o; | 2988 return o; |
| 2987 } | 2989 } |
| 2988 | 2990 |
| 2989 checkUnnamed1135(core.List<core.List<core.String>> o) { | 2991 checkUnnamed1161(core.List<core.List<core.String>> o) { |
| 2990 unittest.expect(o, unittest.hasLength(2)); | 2992 unittest.expect(o, unittest.hasLength(2)); |
| 2991 checkUnnamed1134(o[0]); | 2993 checkUnnamed1160(o[0]); |
| 2992 checkUnnamed1134(o[1]); | 2994 checkUnnamed1160(o[1]); |
| 2993 } | 2995 } |
| 2994 | 2996 |
| 2995 buildUnnamed1136() { | 2997 buildUnnamed1162() { |
| 2996 var o = new core.Map<core.String, core.String>(); | 2998 var o = new core.Map<core.String, core.String>(); |
| 2997 o["x"] = "foo"; | 2999 o["x"] = "foo"; |
| 2998 o["y"] = "foo"; | 3000 o["y"] = "foo"; |
| 2999 return o; | 3001 return o; |
| 3000 } | 3002 } |
| 3001 | 3003 |
| 3002 checkUnnamed1136(core.Map<core.String, core.String> o) { | 3004 checkUnnamed1162(core.Map<core.String, core.String> o) { |
| 3003 unittest.expect(o, unittest.hasLength(2)); | 3005 unittest.expect(o, unittest.hasLength(2)); |
| 3004 unittest.expect(o["x"], unittest.equals('foo')); | 3006 unittest.expect(o["x"], unittest.equals('foo')); |
| 3005 unittest.expect(o["y"], unittest.equals('foo')); | 3007 unittest.expect(o["y"], unittest.equals('foo')); |
| 3006 } | 3008 } |
| 3007 | 3009 |
| 3008 core.int buildCounterRealtimeData = 0; | 3010 core.int buildCounterRealtimeData = 0; |
| 3009 buildRealtimeData() { | 3011 buildRealtimeData() { |
| 3010 var o = new api.RealtimeData(); | 3012 var o = new api.RealtimeData(); |
| 3011 buildCounterRealtimeData++; | 3013 buildCounterRealtimeData++; |
| 3012 if (buildCounterRealtimeData < 3) { | 3014 if (buildCounterRealtimeData < 3) { |
| 3013 o.columnHeaders = buildUnnamed1131(); | 3015 o.columnHeaders = buildUnnamed1157(); |
| 3014 o.id = "foo"; | 3016 o.id = "foo"; |
| 3015 o.kind = "foo"; | 3017 o.kind = "foo"; |
| 3016 o.profileInfo = buildRealtimeDataProfileInfo(); | 3018 o.profileInfo = buildRealtimeDataProfileInfo(); |
| 3017 o.query = buildRealtimeDataQuery(); | 3019 o.query = buildRealtimeDataQuery(); |
| 3018 o.rows = buildUnnamed1135(); | 3020 o.rows = buildUnnamed1161(); |
| 3019 o.selfLink = "foo"; | 3021 o.selfLink = "foo"; |
| 3020 o.totalResults = 42; | 3022 o.totalResults = 42; |
| 3021 o.totalsForAllResults = buildUnnamed1136(); | 3023 o.totalsForAllResults = buildUnnamed1162(); |
| 3022 } | 3024 } |
| 3023 buildCounterRealtimeData--; | 3025 buildCounterRealtimeData--; |
| 3024 return o; | 3026 return o; |
| 3025 } | 3027 } |
| 3026 | 3028 |
| 3027 checkRealtimeData(api.RealtimeData o) { | 3029 checkRealtimeData(api.RealtimeData o) { |
| 3028 buildCounterRealtimeData++; | 3030 buildCounterRealtimeData++; |
| 3029 if (buildCounterRealtimeData < 3) { | 3031 if (buildCounterRealtimeData < 3) { |
| 3030 checkUnnamed1131(o.columnHeaders); | 3032 checkUnnamed1157(o.columnHeaders); |
| 3031 unittest.expect(o.id, unittest.equals('foo')); | 3033 unittest.expect(o.id, unittest.equals('foo')); |
| 3032 unittest.expect(o.kind, unittest.equals('foo')); | 3034 unittest.expect(o.kind, unittest.equals('foo')); |
| 3033 checkRealtimeDataProfileInfo(o.profileInfo); | 3035 checkRealtimeDataProfileInfo(o.profileInfo); |
| 3034 checkRealtimeDataQuery(o.query); | 3036 checkRealtimeDataQuery(o.query); |
| 3035 checkUnnamed1135(o.rows); | 3037 checkUnnamed1161(o.rows); |
| 3036 unittest.expect(o.selfLink, unittest.equals('foo')); | 3038 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3037 unittest.expect(o.totalResults, unittest.equals(42)); | 3039 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3038 checkUnnamed1136(o.totalsForAllResults); | 3040 checkUnnamed1162(o.totalsForAllResults); |
| 3039 } | 3041 } |
| 3040 buildCounterRealtimeData--; | 3042 buildCounterRealtimeData--; |
| 3041 } | 3043 } |
| 3042 | 3044 |
| 3043 core.int buildCounterRemarketingAudienceAudienceDefinition = 0; | 3045 core.int buildCounterRemarketingAudienceAudienceDefinition = 0; |
| 3044 buildRemarketingAudienceAudienceDefinition() { | 3046 buildRemarketingAudienceAudienceDefinition() { |
| 3045 var o = new api.RemarketingAudienceAudienceDefinition(); | 3047 var o = new api.RemarketingAudienceAudienceDefinition(); |
| 3046 buildCounterRemarketingAudienceAudienceDefinition++; | 3048 buildCounterRemarketingAudienceAudienceDefinition++; |
| 3047 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { | 3049 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { |
| 3048 o.includeConditions = buildIncludeConditions(); | 3050 o.includeConditions = buildIncludeConditions(); |
| 3049 } | 3051 } |
| 3050 buildCounterRemarketingAudienceAudienceDefinition--; | 3052 buildCounterRemarketingAudienceAudienceDefinition--; |
| 3051 return o; | 3053 return o; |
| 3052 } | 3054 } |
| 3053 | 3055 |
| 3054 checkRemarketingAudienceAudienceDefinition(api.RemarketingAudienceAudienceDefini
tion o) { | 3056 checkRemarketingAudienceAudienceDefinition(api.RemarketingAudienceAudienceDefini
tion o) { |
| 3055 buildCounterRemarketingAudienceAudienceDefinition++; | 3057 buildCounterRemarketingAudienceAudienceDefinition++; |
| 3056 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { | 3058 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { |
| 3057 checkIncludeConditions(o.includeConditions); | 3059 checkIncludeConditions(o.includeConditions); |
| 3058 } | 3060 } |
| 3059 buildCounterRemarketingAudienceAudienceDefinition--; | 3061 buildCounterRemarketingAudienceAudienceDefinition--; |
| 3060 } | 3062 } |
| 3061 | 3063 |
| 3062 buildUnnamed1137() { | 3064 buildUnnamed1163() { |
| 3063 var o = new core.List<api.LinkedForeignAccount>(); | 3065 var o = new core.List<api.LinkedForeignAccount>(); |
| 3064 o.add(buildLinkedForeignAccount()); | 3066 o.add(buildLinkedForeignAccount()); |
| 3065 o.add(buildLinkedForeignAccount()); | 3067 o.add(buildLinkedForeignAccount()); |
| 3066 return o; | 3068 return o; |
| 3067 } | 3069 } |
| 3068 | 3070 |
| 3069 checkUnnamed1137(core.List<api.LinkedForeignAccount> o) { | 3071 checkUnnamed1163(core.List<api.LinkedForeignAccount> o) { |
| 3070 unittest.expect(o, unittest.hasLength(2)); | 3072 unittest.expect(o, unittest.hasLength(2)); |
| 3071 checkLinkedForeignAccount(o[0]); | 3073 checkLinkedForeignAccount(o[0]); |
| 3072 checkLinkedForeignAccount(o[1]); | 3074 checkLinkedForeignAccount(o[1]); |
| 3073 } | 3075 } |
| 3074 | 3076 |
| 3075 buildUnnamed1138() { | 3077 buildUnnamed1164() { |
| 3076 var o = new core.List<core.String>(); | 3078 var o = new core.List<core.String>(); |
| 3077 o.add("foo"); | 3079 o.add("foo"); |
| 3078 o.add("foo"); | 3080 o.add("foo"); |
| 3079 return o; | 3081 return o; |
| 3080 } | 3082 } |
| 3081 | 3083 |
| 3082 checkUnnamed1138(core.List<core.String> o) { | 3084 checkUnnamed1164(core.List<core.String> o) { |
| 3083 unittest.expect(o, unittest.hasLength(2)); | 3085 unittest.expect(o, unittest.hasLength(2)); |
| 3084 unittest.expect(o[0], unittest.equals('foo')); | 3086 unittest.expect(o[0], unittest.equals('foo')); |
| 3085 unittest.expect(o[1], unittest.equals('foo')); | 3087 unittest.expect(o[1], unittest.equals('foo')); |
| 3086 } | 3088 } |
| 3087 | 3089 |
| 3088 core.int buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeCondi
tions = 0; | 3090 core.int buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeCondi
tions = 0; |
| 3089 buildRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions() { | 3091 buildRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions() { |
| 3090 var o = new api.RemarketingAudienceStateBasedAudienceDefinitionExcludeConditio
ns(); | 3092 var o = new api.RemarketingAudienceStateBasedAudienceDefinitionExcludeConditio
ns(); |
| 3091 buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions++
; | 3093 buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions++
; |
| 3092 if (buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditio
ns < 3) { | 3094 if (buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditio
ns < 3) { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3133 buildCounterRemarketingAudience++; | 3135 buildCounterRemarketingAudience++; |
| 3134 if (buildCounterRemarketingAudience < 3) { | 3136 if (buildCounterRemarketingAudience < 3) { |
| 3135 o.accountId = "foo"; | 3137 o.accountId = "foo"; |
| 3136 o.audienceDefinition = buildRemarketingAudienceAudienceDefinition(); | 3138 o.audienceDefinition = buildRemarketingAudienceAudienceDefinition(); |
| 3137 o.audienceType = "foo"; | 3139 o.audienceType = "foo"; |
| 3138 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 3140 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| 3139 o.description = "foo"; | 3141 o.description = "foo"; |
| 3140 o.id = "foo"; | 3142 o.id = "foo"; |
| 3141 o.internalWebPropertyId = "foo"; | 3143 o.internalWebPropertyId = "foo"; |
| 3142 o.kind = "foo"; | 3144 o.kind = "foo"; |
| 3143 o.linkedAdAccounts = buildUnnamed1137(); | 3145 o.linkedAdAccounts = buildUnnamed1163(); |
| 3144 o.linkedViews = buildUnnamed1138(); | 3146 o.linkedViews = buildUnnamed1164(); |
| 3145 o.name = "foo"; | 3147 o.name = "foo"; |
| 3146 o.stateBasedAudienceDefinition = buildRemarketingAudienceStateBasedAudienceD
efinition(); | 3148 o.stateBasedAudienceDefinition = buildRemarketingAudienceStateBasedAudienceD
efinition(); |
| 3147 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 3149 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 3148 o.webPropertyId = "foo"; | 3150 o.webPropertyId = "foo"; |
| 3149 } | 3151 } |
| 3150 buildCounterRemarketingAudience--; | 3152 buildCounterRemarketingAudience--; |
| 3151 return o; | 3153 return o; |
| 3152 } | 3154 } |
| 3153 | 3155 |
| 3154 checkRemarketingAudience(api.RemarketingAudience o) { | 3156 checkRemarketingAudience(api.RemarketingAudience o) { |
| 3155 buildCounterRemarketingAudience++; | 3157 buildCounterRemarketingAudience++; |
| 3156 if (buildCounterRemarketingAudience < 3) { | 3158 if (buildCounterRemarketingAudience < 3) { |
| 3157 unittest.expect(o.accountId, unittest.equals('foo')); | 3159 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3158 checkRemarketingAudienceAudienceDefinition(o.audienceDefinition); | 3160 checkRemarketingAudienceAudienceDefinition(o.audienceDefinition); |
| 3159 unittest.expect(o.audienceType, unittest.equals('foo')); | 3161 unittest.expect(o.audienceType, unittest.equals('foo')); |
| 3160 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3162 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3161 unittest.expect(o.description, unittest.equals('foo')); | 3163 unittest.expect(o.description, unittest.equals('foo')); |
| 3162 unittest.expect(o.id, unittest.equals('foo')); | 3164 unittest.expect(o.id, unittest.equals('foo')); |
| 3163 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3165 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3164 unittest.expect(o.kind, unittest.equals('foo')); | 3166 unittest.expect(o.kind, unittest.equals('foo')); |
| 3165 checkUnnamed1137(o.linkedAdAccounts); | 3167 checkUnnamed1163(o.linkedAdAccounts); |
| 3166 checkUnnamed1138(o.linkedViews); | 3168 checkUnnamed1164(o.linkedViews); |
| 3167 unittest.expect(o.name, unittest.equals('foo')); | 3169 unittest.expect(o.name, unittest.equals('foo')); |
| 3168 checkRemarketingAudienceStateBasedAudienceDefinition(o.stateBasedAudienceDef
inition); | 3170 checkRemarketingAudienceStateBasedAudienceDefinition(o.stateBasedAudienceDef
inition); |
| 3169 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3171 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3170 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 3172 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 3171 } | 3173 } |
| 3172 buildCounterRemarketingAudience--; | 3174 buildCounterRemarketingAudience--; |
| 3173 } | 3175 } |
| 3174 | 3176 |
| 3175 buildUnnamed1139() { | 3177 buildUnnamed1165() { |
| 3176 var o = new core.List<api.RemarketingAudience>(); | 3178 var o = new core.List<api.RemarketingAudience>(); |
| 3177 o.add(buildRemarketingAudience()); | 3179 o.add(buildRemarketingAudience()); |
| 3178 o.add(buildRemarketingAudience()); | 3180 o.add(buildRemarketingAudience()); |
| 3179 return o; | 3181 return o; |
| 3180 } | 3182 } |
| 3181 | 3183 |
| 3182 checkUnnamed1139(core.List<api.RemarketingAudience> o) { | 3184 checkUnnamed1165(core.List<api.RemarketingAudience> o) { |
| 3183 unittest.expect(o, unittest.hasLength(2)); | 3185 unittest.expect(o, unittest.hasLength(2)); |
| 3184 checkRemarketingAudience(o[0]); | 3186 checkRemarketingAudience(o[0]); |
| 3185 checkRemarketingAudience(o[1]); | 3187 checkRemarketingAudience(o[1]); |
| 3186 } | 3188 } |
| 3187 | 3189 |
| 3188 core.int buildCounterRemarketingAudiences = 0; | 3190 core.int buildCounterRemarketingAudiences = 0; |
| 3189 buildRemarketingAudiences() { | 3191 buildRemarketingAudiences() { |
| 3190 var o = new api.RemarketingAudiences(); | 3192 var o = new api.RemarketingAudiences(); |
| 3191 buildCounterRemarketingAudiences++; | 3193 buildCounterRemarketingAudiences++; |
| 3192 if (buildCounterRemarketingAudiences < 3) { | 3194 if (buildCounterRemarketingAudiences < 3) { |
| 3193 o.items = buildUnnamed1139(); | 3195 o.items = buildUnnamed1165(); |
| 3194 o.itemsPerPage = 42; | 3196 o.itemsPerPage = 42; |
| 3195 o.kind = "foo"; | 3197 o.kind = "foo"; |
| 3196 o.nextLink = "foo"; | 3198 o.nextLink = "foo"; |
| 3197 o.previousLink = "foo"; | 3199 o.previousLink = "foo"; |
| 3198 o.startIndex = 42; | 3200 o.startIndex = 42; |
| 3199 o.totalResults = 42; | 3201 o.totalResults = 42; |
| 3200 o.username = "foo"; | 3202 o.username = "foo"; |
| 3201 } | 3203 } |
| 3202 buildCounterRemarketingAudiences--; | 3204 buildCounterRemarketingAudiences--; |
| 3203 return o; | 3205 return o; |
| 3204 } | 3206 } |
| 3205 | 3207 |
| 3206 checkRemarketingAudiences(api.RemarketingAudiences o) { | 3208 checkRemarketingAudiences(api.RemarketingAudiences o) { |
| 3207 buildCounterRemarketingAudiences++; | 3209 buildCounterRemarketingAudiences++; |
| 3208 if (buildCounterRemarketingAudiences < 3) { | 3210 if (buildCounterRemarketingAudiences < 3) { |
| 3209 checkUnnamed1139(o.items); | 3211 checkUnnamed1165(o.items); |
| 3210 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3212 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3211 unittest.expect(o.kind, unittest.equals('foo')); | 3213 unittest.expect(o.kind, unittest.equals('foo')); |
| 3212 unittest.expect(o.nextLink, unittest.equals('foo')); | 3214 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3213 unittest.expect(o.previousLink, unittest.equals('foo')); | 3215 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3214 unittest.expect(o.startIndex, unittest.equals(42)); | 3216 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3215 unittest.expect(o.totalResults, unittest.equals(42)); | 3217 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3216 unittest.expect(o.username, unittest.equals('foo')); | 3218 unittest.expect(o.username, unittest.equals('foo')); |
| 3217 } | 3219 } |
| 3218 buildCounterRemarketingAudiences--; | 3220 buildCounterRemarketingAudiences--; |
| 3219 } | 3221 } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 3246 unittest.expect(o.kind, unittest.equals('foo')); | 3248 unittest.expect(o.kind, unittest.equals('foo')); |
| 3247 unittest.expect(o.name, unittest.equals('foo')); | 3249 unittest.expect(o.name, unittest.equals('foo')); |
| 3248 unittest.expect(o.segmentId, unittest.equals('foo')); | 3250 unittest.expect(o.segmentId, unittest.equals('foo')); |
| 3249 unittest.expect(o.selfLink, unittest.equals('foo')); | 3251 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3250 unittest.expect(o.type, unittest.equals('foo')); | 3252 unittest.expect(o.type, unittest.equals('foo')); |
| 3251 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3253 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3252 } | 3254 } |
| 3253 buildCounterSegment--; | 3255 buildCounterSegment--; |
| 3254 } | 3256 } |
| 3255 | 3257 |
| 3256 buildUnnamed1140() { | 3258 buildUnnamed1166() { |
| 3257 var o = new core.List<api.Segment>(); | 3259 var o = new core.List<api.Segment>(); |
| 3258 o.add(buildSegment()); | 3260 o.add(buildSegment()); |
| 3259 o.add(buildSegment()); | 3261 o.add(buildSegment()); |
| 3260 return o; | 3262 return o; |
| 3261 } | 3263 } |
| 3262 | 3264 |
| 3263 checkUnnamed1140(core.List<api.Segment> o) { | 3265 checkUnnamed1166(core.List<api.Segment> o) { |
| 3264 unittest.expect(o, unittest.hasLength(2)); | 3266 unittest.expect(o, unittest.hasLength(2)); |
| 3265 checkSegment(o[0]); | 3267 checkSegment(o[0]); |
| 3266 checkSegment(o[1]); | 3268 checkSegment(o[1]); |
| 3267 } | 3269 } |
| 3268 | 3270 |
| 3269 core.int buildCounterSegments = 0; | 3271 core.int buildCounterSegments = 0; |
| 3270 buildSegments() { | 3272 buildSegments() { |
| 3271 var o = new api.Segments(); | 3273 var o = new api.Segments(); |
| 3272 buildCounterSegments++; | 3274 buildCounterSegments++; |
| 3273 if (buildCounterSegments < 3) { | 3275 if (buildCounterSegments < 3) { |
| 3274 o.items = buildUnnamed1140(); | 3276 o.items = buildUnnamed1166(); |
| 3275 o.itemsPerPage = 42; | 3277 o.itemsPerPage = 42; |
| 3276 o.kind = "foo"; | 3278 o.kind = "foo"; |
| 3277 o.nextLink = "foo"; | 3279 o.nextLink = "foo"; |
| 3278 o.previousLink = "foo"; | 3280 o.previousLink = "foo"; |
| 3279 o.startIndex = 42; | 3281 o.startIndex = 42; |
| 3280 o.totalResults = 42; | 3282 o.totalResults = 42; |
| 3281 o.username = "foo"; | 3283 o.username = "foo"; |
| 3282 } | 3284 } |
| 3283 buildCounterSegments--; | 3285 buildCounterSegments--; |
| 3284 return o; | 3286 return o; |
| 3285 } | 3287 } |
| 3286 | 3288 |
| 3287 checkSegments(api.Segments o) { | 3289 checkSegments(api.Segments o) { |
| 3288 buildCounterSegments++; | 3290 buildCounterSegments++; |
| 3289 if (buildCounterSegments < 3) { | 3291 if (buildCounterSegments < 3) { |
| 3290 checkUnnamed1140(o.items); | 3292 checkUnnamed1166(o.items); |
| 3291 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3293 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3292 unittest.expect(o.kind, unittest.equals('foo')); | 3294 unittest.expect(o.kind, unittest.equals('foo')); |
| 3293 unittest.expect(o.nextLink, unittest.equals('foo')); | 3295 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3294 unittest.expect(o.previousLink, unittest.equals('foo')); | 3296 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3295 unittest.expect(o.startIndex, unittest.equals(42)); | 3297 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3296 unittest.expect(o.totalResults, unittest.equals(42)); | 3298 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3297 unittest.expect(o.username, unittest.equals('foo')); | 3299 unittest.expect(o.username, unittest.equals('foo')); |
| 3298 } | 3300 } |
| 3299 buildCounterSegments--; | 3301 buildCounterSegments--; |
| 3300 } | 3302 } |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3387 unittest.expect(o.selfLink, unittest.equals('foo')); | 3389 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3388 unittest.expect(o.start_date, unittest.equals('foo')); | 3390 unittest.expect(o.start_date, unittest.equals('foo')); |
| 3389 unittest.expect(o.status, unittest.equals('foo')); | 3391 unittest.expect(o.status, unittest.equals('foo')); |
| 3390 unittest.expect(o.title, unittest.equals('foo')); | 3392 unittest.expect(o.title, unittest.equals('foo')); |
| 3391 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3393 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3392 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 3394 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 3393 } | 3395 } |
| 3394 buildCounterUnsampledReport--; | 3396 buildCounterUnsampledReport--; |
| 3395 } | 3397 } |
| 3396 | 3398 |
| 3397 buildUnnamed1141() { | 3399 buildUnnamed1167() { |
| 3398 var o = new core.List<api.UnsampledReport>(); | 3400 var o = new core.List<api.UnsampledReport>(); |
| 3399 o.add(buildUnsampledReport()); | 3401 o.add(buildUnsampledReport()); |
| 3400 o.add(buildUnsampledReport()); | 3402 o.add(buildUnsampledReport()); |
| 3401 return o; | 3403 return o; |
| 3402 } | 3404 } |
| 3403 | 3405 |
| 3404 checkUnnamed1141(core.List<api.UnsampledReport> o) { | 3406 checkUnnamed1167(core.List<api.UnsampledReport> o) { |
| 3405 unittest.expect(o, unittest.hasLength(2)); | 3407 unittest.expect(o, unittest.hasLength(2)); |
| 3406 checkUnsampledReport(o[0]); | 3408 checkUnsampledReport(o[0]); |
| 3407 checkUnsampledReport(o[1]); | 3409 checkUnsampledReport(o[1]); |
| 3408 } | 3410 } |
| 3409 | 3411 |
| 3410 core.int buildCounterUnsampledReports = 0; | 3412 core.int buildCounterUnsampledReports = 0; |
| 3411 buildUnsampledReports() { | 3413 buildUnsampledReports() { |
| 3412 var o = new api.UnsampledReports(); | 3414 var o = new api.UnsampledReports(); |
| 3413 buildCounterUnsampledReports++; | 3415 buildCounterUnsampledReports++; |
| 3414 if (buildCounterUnsampledReports < 3) { | 3416 if (buildCounterUnsampledReports < 3) { |
| 3415 o.items = buildUnnamed1141(); | 3417 o.items = buildUnnamed1167(); |
| 3416 o.itemsPerPage = 42; | 3418 o.itemsPerPage = 42; |
| 3417 o.kind = "foo"; | 3419 o.kind = "foo"; |
| 3418 o.nextLink = "foo"; | 3420 o.nextLink = "foo"; |
| 3419 o.previousLink = "foo"; | 3421 o.previousLink = "foo"; |
| 3420 o.startIndex = 42; | 3422 o.startIndex = 42; |
| 3421 o.totalResults = 42; | 3423 o.totalResults = 42; |
| 3422 o.username = "foo"; | 3424 o.username = "foo"; |
| 3423 } | 3425 } |
| 3424 buildCounterUnsampledReports--; | 3426 buildCounterUnsampledReports--; |
| 3425 return o; | 3427 return o; |
| 3426 } | 3428 } |
| 3427 | 3429 |
| 3428 checkUnsampledReports(api.UnsampledReports o) { | 3430 checkUnsampledReports(api.UnsampledReports o) { |
| 3429 buildCounterUnsampledReports++; | 3431 buildCounterUnsampledReports++; |
| 3430 if (buildCounterUnsampledReports < 3) { | 3432 if (buildCounterUnsampledReports < 3) { |
| 3431 checkUnnamed1141(o.items); | 3433 checkUnnamed1167(o.items); |
| 3432 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3434 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3433 unittest.expect(o.kind, unittest.equals('foo')); | 3435 unittest.expect(o.kind, unittest.equals('foo')); |
| 3434 unittest.expect(o.nextLink, unittest.equals('foo')); | 3436 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3435 unittest.expect(o.previousLink, unittest.equals('foo')); | 3437 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3436 unittest.expect(o.startIndex, unittest.equals(42)); | 3438 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3437 unittest.expect(o.totalResults, unittest.equals(42)); | 3439 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3438 unittest.expect(o.username, unittest.equals('foo')); | 3440 unittest.expect(o.username, unittest.equals('foo')); |
| 3439 } | 3441 } |
| 3440 buildCounterUnsampledReports--; | 3442 buildCounterUnsampledReports--; |
| 3441 } | 3443 } |
| 3442 | 3444 |
| 3443 buildUnnamed1142() { | 3445 buildUnnamed1168() { |
| 3444 var o = new core.List<core.String>(); | 3446 var o = new core.List<core.String>(); |
| 3445 o.add("foo"); | 3447 o.add("foo"); |
| 3446 o.add("foo"); | 3448 o.add("foo"); |
| 3447 return o; | 3449 return o; |
| 3448 } | 3450 } |
| 3449 | 3451 |
| 3450 checkUnnamed1142(core.List<core.String> o) { | 3452 checkUnnamed1168(core.List<core.String> o) { |
| 3451 unittest.expect(o, unittest.hasLength(2)); | 3453 unittest.expect(o, unittest.hasLength(2)); |
| 3452 unittest.expect(o[0], unittest.equals('foo')); | 3454 unittest.expect(o[0], unittest.equals('foo')); |
| 3453 unittest.expect(o[1], unittest.equals('foo')); | 3455 unittest.expect(o[1], unittest.equals('foo')); |
| 3454 } | 3456 } |
| 3455 | 3457 |
| 3456 core.int buildCounterUpload = 0; | 3458 core.int buildCounterUpload = 0; |
| 3457 buildUpload() { | 3459 buildUpload() { |
| 3458 var o = new api.Upload(); | 3460 var o = new api.Upload(); |
| 3459 buildCounterUpload++; | 3461 buildCounterUpload++; |
| 3460 if (buildCounterUpload < 3) { | 3462 if (buildCounterUpload < 3) { |
| 3461 o.accountId = "foo"; | 3463 o.accountId = "foo"; |
| 3462 o.customDataSourceId = "foo"; | 3464 o.customDataSourceId = "foo"; |
| 3463 o.errors = buildUnnamed1142(); | 3465 o.errors = buildUnnamed1168(); |
| 3464 o.id = "foo"; | 3466 o.id = "foo"; |
| 3465 o.kind = "foo"; | 3467 o.kind = "foo"; |
| 3466 o.status = "foo"; | 3468 o.status = "foo"; |
| 3467 } | 3469 } |
| 3468 buildCounterUpload--; | 3470 buildCounterUpload--; |
| 3469 return o; | 3471 return o; |
| 3470 } | 3472 } |
| 3471 | 3473 |
| 3472 checkUpload(api.Upload o) { | 3474 checkUpload(api.Upload o) { |
| 3473 buildCounterUpload++; | 3475 buildCounterUpload++; |
| 3474 if (buildCounterUpload < 3) { | 3476 if (buildCounterUpload < 3) { |
| 3475 unittest.expect(o.accountId, unittest.equals('foo')); | 3477 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3476 unittest.expect(o.customDataSourceId, unittest.equals('foo')); | 3478 unittest.expect(o.customDataSourceId, unittest.equals('foo')); |
| 3477 checkUnnamed1142(o.errors); | 3479 checkUnnamed1168(o.errors); |
| 3478 unittest.expect(o.id, unittest.equals('foo')); | 3480 unittest.expect(o.id, unittest.equals('foo')); |
| 3479 unittest.expect(o.kind, unittest.equals('foo')); | 3481 unittest.expect(o.kind, unittest.equals('foo')); |
| 3480 unittest.expect(o.status, unittest.equals('foo')); | 3482 unittest.expect(o.status, unittest.equals('foo')); |
| 3481 } | 3483 } |
| 3482 buildCounterUpload--; | 3484 buildCounterUpload--; |
| 3483 } | 3485 } |
| 3484 | 3486 |
| 3485 buildUnnamed1143() { | 3487 buildUnnamed1169() { |
| 3486 var o = new core.List<api.Upload>(); | 3488 var o = new core.List<api.Upload>(); |
| 3487 o.add(buildUpload()); | 3489 o.add(buildUpload()); |
| 3488 o.add(buildUpload()); | 3490 o.add(buildUpload()); |
| 3489 return o; | 3491 return o; |
| 3490 } | 3492 } |
| 3491 | 3493 |
| 3492 checkUnnamed1143(core.List<api.Upload> o) { | 3494 checkUnnamed1169(core.List<api.Upload> o) { |
| 3493 unittest.expect(o, unittest.hasLength(2)); | 3495 unittest.expect(o, unittest.hasLength(2)); |
| 3494 checkUpload(o[0]); | 3496 checkUpload(o[0]); |
| 3495 checkUpload(o[1]); | 3497 checkUpload(o[1]); |
| 3496 } | 3498 } |
| 3497 | 3499 |
| 3498 core.int buildCounterUploads = 0; | 3500 core.int buildCounterUploads = 0; |
| 3499 buildUploads() { | 3501 buildUploads() { |
| 3500 var o = new api.Uploads(); | 3502 var o = new api.Uploads(); |
| 3501 buildCounterUploads++; | 3503 buildCounterUploads++; |
| 3502 if (buildCounterUploads < 3) { | 3504 if (buildCounterUploads < 3) { |
| 3503 o.items = buildUnnamed1143(); | 3505 o.items = buildUnnamed1169(); |
| 3504 o.itemsPerPage = 42; | 3506 o.itemsPerPage = 42; |
| 3505 o.kind = "foo"; | 3507 o.kind = "foo"; |
| 3506 o.nextLink = "foo"; | 3508 o.nextLink = "foo"; |
| 3507 o.previousLink = "foo"; | 3509 o.previousLink = "foo"; |
| 3508 o.startIndex = 42; | 3510 o.startIndex = 42; |
| 3509 o.totalResults = 42; | 3511 o.totalResults = 42; |
| 3510 } | 3512 } |
| 3511 buildCounterUploads--; | 3513 buildCounterUploads--; |
| 3512 return o; | 3514 return o; |
| 3513 } | 3515 } |
| 3514 | 3516 |
| 3515 checkUploads(api.Uploads o) { | 3517 checkUploads(api.Uploads o) { |
| 3516 buildCounterUploads++; | 3518 buildCounterUploads++; |
| 3517 if (buildCounterUploads < 3) { | 3519 if (buildCounterUploads < 3) { |
| 3518 checkUnnamed1143(o.items); | 3520 checkUnnamed1169(o.items); |
| 3519 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3521 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3520 unittest.expect(o.kind, unittest.equals('foo')); | 3522 unittest.expect(o.kind, unittest.equals('foo')); |
| 3521 unittest.expect(o.nextLink, unittest.equals('foo')); | 3523 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3522 unittest.expect(o.previousLink, unittest.equals('foo')); | 3524 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3523 unittest.expect(o.startIndex, unittest.equals(42)); | 3525 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3524 unittest.expect(o.totalResults, unittest.equals(42)); | 3526 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3525 } | 3527 } |
| 3526 buildCounterUploads--; | 3528 buildCounterUploads--; |
| 3527 } | 3529 } |
| 3528 | 3530 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3571 unittest.expect(o.accountId, unittest.equals('foo')); | 3573 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3572 unittest.expect(o.href, unittest.equals('foo')); | 3574 unittest.expect(o.href, unittest.equals('foo')); |
| 3573 unittest.expect(o.id, unittest.equals('foo')); | 3575 unittest.expect(o.id, unittest.equals('foo')); |
| 3574 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3576 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3575 unittest.expect(o.kind, unittest.equals('foo')); | 3577 unittest.expect(o.kind, unittest.equals('foo')); |
| 3576 unittest.expect(o.name, unittest.equals('foo')); | 3578 unittest.expect(o.name, unittest.equals('foo')); |
| 3577 } | 3579 } |
| 3578 buildCounterWebPropertyRef--; | 3580 buildCounterWebPropertyRef--; |
| 3579 } | 3581 } |
| 3580 | 3582 |
| 3581 buildUnnamed1144() { | 3583 buildUnnamed1170() { |
| 3582 var o = new core.List<api.ProfileSummary>(); | 3584 var o = new core.List<api.ProfileSummary>(); |
| 3583 o.add(buildProfileSummary()); | 3585 o.add(buildProfileSummary()); |
| 3584 o.add(buildProfileSummary()); | 3586 o.add(buildProfileSummary()); |
| 3585 return o; | 3587 return o; |
| 3586 } | 3588 } |
| 3587 | 3589 |
| 3588 checkUnnamed1144(core.List<api.ProfileSummary> o) { | 3590 checkUnnamed1170(core.List<api.ProfileSummary> o) { |
| 3589 unittest.expect(o, unittest.hasLength(2)); | 3591 unittest.expect(o, unittest.hasLength(2)); |
| 3590 checkProfileSummary(o[0]); | 3592 checkProfileSummary(o[0]); |
| 3591 checkProfileSummary(o[1]); | 3593 checkProfileSummary(o[1]); |
| 3592 } | 3594 } |
| 3593 | 3595 |
| 3594 core.int buildCounterWebPropertySummary = 0; | 3596 core.int buildCounterWebPropertySummary = 0; |
| 3595 buildWebPropertySummary() { | 3597 buildWebPropertySummary() { |
| 3596 var o = new api.WebPropertySummary(); | 3598 var o = new api.WebPropertySummary(); |
| 3597 buildCounterWebPropertySummary++; | 3599 buildCounterWebPropertySummary++; |
| 3598 if (buildCounterWebPropertySummary < 3) { | 3600 if (buildCounterWebPropertySummary < 3) { |
| 3599 o.id = "foo"; | 3601 o.id = "foo"; |
| 3600 o.internalWebPropertyId = "foo"; | 3602 o.internalWebPropertyId = "foo"; |
| 3601 o.kind = "foo"; | 3603 o.kind = "foo"; |
| 3602 o.level = "foo"; | 3604 o.level = "foo"; |
| 3603 o.name = "foo"; | 3605 o.name = "foo"; |
| 3604 o.profiles = buildUnnamed1144(); | 3606 o.profiles = buildUnnamed1170(); |
| 3605 o.starred = true; | 3607 o.starred = true; |
| 3606 o.websiteUrl = "foo"; | 3608 o.websiteUrl = "foo"; |
| 3607 } | 3609 } |
| 3608 buildCounterWebPropertySummary--; | 3610 buildCounterWebPropertySummary--; |
| 3609 return o; | 3611 return o; |
| 3610 } | 3612 } |
| 3611 | 3613 |
| 3612 checkWebPropertySummary(api.WebPropertySummary o) { | 3614 checkWebPropertySummary(api.WebPropertySummary o) { |
| 3613 buildCounterWebPropertySummary++; | 3615 buildCounterWebPropertySummary++; |
| 3614 if (buildCounterWebPropertySummary < 3) { | 3616 if (buildCounterWebPropertySummary < 3) { |
| 3615 unittest.expect(o.id, unittest.equals('foo')); | 3617 unittest.expect(o.id, unittest.equals('foo')); |
| 3616 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3618 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3617 unittest.expect(o.kind, unittest.equals('foo')); | 3619 unittest.expect(o.kind, unittest.equals('foo')); |
| 3618 unittest.expect(o.level, unittest.equals('foo')); | 3620 unittest.expect(o.level, unittest.equals('foo')); |
| 3619 unittest.expect(o.name, unittest.equals('foo')); | 3621 unittest.expect(o.name, unittest.equals('foo')); |
| 3620 checkUnnamed1144(o.profiles); | 3622 checkUnnamed1170(o.profiles); |
| 3621 unittest.expect(o.starred, unittest.isTrue); | 3623 unittest.expect(o.starred, unittest.isTrue); |
| 3622 unittest.expect(o.websiteUrl, unittest.equals('foo')); | 3624 unittest.expect(o.websiteUrl, unittest.equals('foo')); |
| 3623 } | 3625 } |
| 3624 buildCounterWebPropertySummary--; | 3626 buildCounterWebPropertySummary--; |
| 3625 } | 3627 } |
| 3626 | 3628 |
| 3627 buildUnnamed1145() { | 3629 buildUnnamed1171() { |
| 3628 var o = new core.List<api.Webproperty>(); | 3630 var o = new core.List<api.Webproperty>(); |
| 3629 o.add(buildWebproperty()); | 3631 o.add(buildWebproperty()); |
| 3630 o.add(buildWebproperty()); | 3632 o.add(buildWebproperty()); |
| 3631 return o; | 3633 return o; |
| 3632 } | 3634 } |
| 3633 | 3635 |
| 3634 checkUnnamed1145(core.List<api.Webproperty> o) { | 3636 checkUnnamed1171(core.List<api.Webproperty> o) { |
| 3635 unittest.expect(o, unittest.hasLength(2)); | 3637 unittest.expect(o, unittest.hasLength(2)); |
| 3636 checkWebproperty(o[0]); | 3638 checkWebproperty(o[0]); |
| 3637 checkWebproperty(o[1]); | 3639 checkWebproperty(o[1]); |
| 3638 } | 3640 } |
| 3639 | 3641 |
| 3640 core.int buildCounterWebproperties = 0; | 3642 core.int buildCounterWebproperties = 0; |
| 3641 buildWebproperties() { | 3643 buildWebproperties() { |
| 3642 var o = new api.Webproperties(); | 3644 var o = new api.Webproperties(); |
| 3643 buildCounterWebproperties++; | 3645 buildCounterWebproperties++; |
| 3644 if (buildCounterWebproperties < 3) { | 3646 if (buildCounterWebproperties < 3) { |
| 3645 o.items = buildUnnamed1145(); | 3647 o.items = buildUnnamed1171(); |
| 3646 o.itemsPerPage = 42; | 3648 o.itemsPerPage = 42; |
| 3647 o.kind = "foo"; | 3649 o.kind = "foo"; |
| 3648 o.nextLink = "foo"; | 3650 o.nextLink = "foo"; |
| 3649 o.previousLink = "foo"; | 3651 o.previousLink = "foo"; |
| 3650 o.startIndex = 42; | 3652 o.startIndex = 42; |
| 3651 o.totalResults = 42; | 3653 o.totalResults = 42; |
| 3652 o.username = "foo"; | 3654 o.username = "foo"; |
| 3653 } | 3655 } |
| 3654 buildCounterWebproperties--; | 3656 buildCounterWebproperties--; |
| 3655 return o; | 3657 return o; |
| 3656 } | 3658 } |
| 3657 | 3659 |
| 3658 checkWebproperties(api.Webproperties o) { | 3660 checkWebproperties(api.Webproperties o) { |
| 3659 buildCounterWebproperties++; | 3661 buildCounterWebproperties++; |
| 3660 if (buildCounterWebproperties < 3) { | 3662 if (buildCounterWebproperties < 3) { |
| 3661 checkUnnamed1145(o.items); | 3663 checkUnnamed1171(o.items); |
| 3662 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3664 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3663 unittest.expect(o.kind, unittest.equals('foo')); | 3665 unittest.expect(o.kind, unittest.equals('foo')); |
| 3664 unittest.expect(o.nextLink, unittest.equals('foo')); | 3666 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3665 unittest.expect(o.previousLink, unittest.equals('foo')); | 3667 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3666 unittest.expect(o.startIndex, unittest.equals(42)); | 3668 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3667 unittest.expect(o.totalResults, unittest.equals(42)); | 3669 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3668 unittest.expect(o.username, unittest.equals('foo')); | 3670 unittest.expect(o.username, unittest.equals('foo')); |
| 3669 } | 3671 } |
| 3670 buildCounterWebproperties--; | 3672 buildCounterWebproperties--; |
| 3671 } | 3673 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3705 | 3707 |
| 3706 checkWebpropertyParentLink(api.WebpropertyParentLink o) { | 3708 checkWebpropertyParentLink(api.WebpropertyParentLink o) { |
| 3707 buildCounterWebpropertyParentLink++; | 3709 buildCounterWebpropertyParentLink++; |
| 3708 if (buildCounterWebpropertyParentLink < 3) { | 3710 if (buildCounterWebpropertyParentLink < 3) { |
| 3709 unittest.expect(o.href, unittest.equals('foo')); | 3711 unittest.expect(o.href, unittest.equals('foo')); |
| 3710 unittest.expect(o.type, unittest.equals('foo')); | 3712 unittest.expect(o.type, unittest.equals('foo')); |
| 3711 } | 3713 } |
| 3712 buildCounterWebpropertyParentLink--; | 3714 buildCounterWebpropertyParentLink--; |
| 3713 } | 3715 } |
| 3714 | 3716 |
| 3715 buildUnnamed1146() { | 3717 buildUnnamed1172() { |
| 3716 var o = new core.List<core.String>(); | 3718 var o = new core.List<core.String>(); |
| 3717 o.add("foo"); | 3719 o.add("foo"); |
| 3718 o.add("foo"); | 3720 o.add("foo"); |
| 3719 return o; | 3721 return o; |
| 3720 } | 3722 } |
| 3721 | 3723 |
| 3722 checkUnnamed1146(core.List<core.String> o) { | 3724 checkUnnamed1172(core.List<core.String> o) { |
| 3723 unittest.expect(o, unittest.hasLength(2)); | 3725 unittest.expect(o, unittest.hasLength(2)); |
| 3724 unittest.expect(o[0], unittest.equals('foo')); | 3726 unittest.expect(o[0], unittest.equals('foo')); |
| 3725 unittest.expect(o[1], unittest.equals('foo')); | 3727 unittest.expect(o[1], unittest.equals('foo')); |
| 3726 } | 3728 } |
| 3727 | 3729 |
| 3728 core.int buildCounterWebpropertyPermissions = 0; | 3730 core.int buildCounterWebpropertyPermissions = 0; |
| 3729 buildWebpropertyPermissions() { | 3731 buildWebpropertyPermissions() { |
| 3730 var o = new api.WebpropertyPermissions(); | 3732 var o = new api.WebpropertyPermissions(); |
| 3731 buildCounterWebpropertyPermissions++; | 3733 buildCounterWebpropertyPermissions++; |
| 3732 if (buildCounterWebpropertyPermissions < 3) { | 3734 if (buildCounterWebpropertyPermissions < 3) { |
| 3733 o.effective = buildUnnamed1146(); | 3735 o.effective = buildUnnamed1172(); |
| 3734 } | 3736 } |
| 3735 buildCounterWebpropertyPermissions--; | 3737 buildCounterWebpropertyPermissions--; |
| 3736 return o; | 3738 return o; |
| 3737 } | 3739 } |
| 3738 | 3740 |
| 3739 checkWebpropertyPermissions(api.WebpropertyPermissions o) { | 3741 checkWebpropertyPermissions(api.WebpropertyPermissions o) { |
| 3740 buildCounterWebpropertyPermissions++; | 3742 buildCounterWebpropertyPermissions++; |
| 3741 if (buildCounterWebpropertyPermissions < 3) { | 3743 if (buildCounterWebpropertyPermissions < 3) { |
| 3742 checkUnnamed1146(o.effective); | 3744 checkUnnamed1172(o.effective); |
| 3743 } | 3745 } |
| 3744 buildCounterWebpropertyPermissions--; | 3746 buildCounterWebpropertyPermissions--; |
| 3745 } | 3747 } |
| 3746 | 3748 |
| 3747 core.int buildCounterWebproperty = 0; | 3749 core.int buildCounterWebproperty = 0; |
| 3748 buildWebproperty() { | 3750 buildWebproperty() { |
| 3749 var o = new api.Webproperty(); | 3751 var o = new api.Webproperty(); |
| 3750 buildCounterWebproperty++; | 3752 buildCounterWebproperty++; |
| 3751 if (buildCounterWebproperty < 3) { | 3753 if (buildCounterWebproperty < 3) { |
| 3752 o.accountId = "foo"; | 3754 o.accountId = "foo"; |
| (...skipping 6620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10373 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou
ntTicket response) { | 10375 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou
ntTicket response) { |
| 10374 checkAccountTicket(response); | 10376 checkAccountTicket(response); |
| 10375 }))); | 10377 }))); |
| 10376 }); | 10378 }); |
| 10377 | 10379 |
| 10378 }); | 10380 }); |
| 10379 | 10381 |
| 10380 | 10382 |
| 10381 } | 10383 } |
| 10382 | 10384 |
| OLD | NEW |