| 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 buildUnnamed885() { | 75 buildUnnamed236() { |
| 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 checkUnnamed885(core.List<core.String> o) { | 82 checkUnnamed236(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 = buildUnnamed885(); | 93 o.effective = buildUnnamed236(); |
| 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 checkUnnamed885(o.effective); | 102 checkUnnamed236(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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 buildCounterAccountRef++; | 155 buildCounterAccountRef++; |
| 156 if (buildCounterAccountRef < 3) { | 156 if (buildCounterAccountRef < 3) { |
| 157 unittest.expect(o.href, unittest.equals('foo')); | 157 unittest.expect(o.href, unittest.equals('foo')); |
| 158 unittest.expect(o.id, unittest.equals('foo')); | 158 unittest.expect(o.id, unittest.equals('foo')); |
| 159 unittest.expect(o.kind, unittest.equals('foo')); | 159 unittest.expect(o.kind, unittest.equals('foo')); |
| 160 unittest.expect(o.name, unittest.equals('foo')); | 160 unittest.expect(o.name, unittest.equals('foo')); |
| 161 } | 161 } |
| 162 buildCounterAccountRef--; | 162 buildCounterAccountRef--; |
| 163 } | 163 } |
| 164 | 164 |
| 165 buildUnnamed886() { | 165 buildUnnamed237() { |
| 166 var o = new core.List<api.AccountSummary>(); | 166 var o = new core.List<api.AccountSummary>(); |
| 167 o.add(buildAccountSummary()); | 167 o.add(buildAccountSummary()); |
| 168 o.add(buildAccountSummary()); | 168 o.add(buildAccountSummary()); |
| 169 return o; | 169 return o; |
| 170 } | 170 } |
| 171 | 171 |
| 172 checkUnnamed886(core.List<api.AccountSummary> o) { | 172 checkUnnamed237(core.List<api.AccountSummary> o) { |
| 173 unittest.expect(o, unittest.hasLength(2)); | 173 unittest.expect(o, unittest.hasLength(2)); |
| 174 checkAccountSummary(o[0]); | 174 checkAccountSummary(o[0]); |
| 175 checkAccountSummary(o[1]); | 175 checkAccountSummary(o[1]); |
| 176 } | 176 } |
| 177 | 177 |
| 178 core.int buildCounterAccountSummaries = 0; | 178 core.int buildCounterAccountSummaries = 0; |
| 179 buildAccountSummaries() { | 179 buildAccountSummaries() { |
| 180 var o = new api.AccountSummaries(); | 180 var o = new api.AccountSummaries(); |
| 181 buildCounterAccountSummaries++; | 181 buildCounterAccountSummaries++; |
| 182 if (buildCounterAccountSummaries < 3) { | 182 if (buildCounterAccountSummaries < 3) { |
| 183 o.items = buildUnnamed886(); | 183 o.items = buildUnnamed237(); |
| 184 o.itemsPerPage = 42; | 184 o.itemsPerPage = 42; |
| 185 o.kind = "foo"; | 185 o.kind = "foo"; |
| 186 o.nextLink = "foo"; | 186 o.nextLink = "foo"; |
| 187 o.previousLink = "foo"; | 187 o.previousLink = "foo"; |
| 188 o.startIndex = 42; | 188 o.startIndex = 42; |
| 189 o.totalResults = 42; | 189 o.totalResults = 42; |
| 190 o.username = "foo"; | 190 o.username = "foo"; |
| 191 } | 191 } |
| 192 buildCounterAccountSummaries--; | 192 buildCounterAccountSummaries--; |
| 193 return o; | 193 return o; |
| 194 } | 194 } |
| 195 | 195 |
| 196 checkAccountSummaries(api.AccountSummaries o) { | 196 checkAccountSummaries(api.AccountSummaries o) { |
| 197 buildCounterAccountSummaries++; | 197 buildCounterAccountSummaries++; |
| 198 if (buildCounterAccountSummaries < 3) { | 198 if (buildCounterAccountSummaries < 3) { |
| 199 checkUnnamed886(o.items); | 199 checkUnnamed237(o.items); |
| 200 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 200 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 201 unittest.expect(o.kind, unittest.equals('foo')); | 201 unittest.expect(o.kind, unittest.equals('foo')); |
| 202 unittest.expect(o.nextLink, unittest.equals('foo')); | 202 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 203 unittest.expect(o.previousLink, unittest.equals('foo')); | 203 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 204 unittest.expect(o.startIndex, unittest.equals(42)); | 204 unittest.expect(o.startIndex, unittest.equals(42)); |
| 205 unittest.expect(o.totalResults, unittest.equals(42)); | 205 unittest.expect(o.totalResults, unittest.equals(42)); |
| 206 unittest.expect(o.username, unittest.equals('foo')); | 206 unittest.expect(o.username, unittest.equals('foo')); |
| 207 } | 207 } |
| 208 buildCounterAccountSummaries--; | 208 buildCounterAccountSummaries--; |
| 209 } | 209 } |
| 210 | 210 |
| 211 buildUnnamed887() { | 211 buildUnnamed238() { |
| 212 var o = new core.List<api.WebPropertySummary>(); | 212 var o = new core.List<api.WebPropertySummary>(); |
| 213 o.add(buildWebPropertySummary()); | 213 o.add(buildWebPropertySummary()); |
| 214 o.add(buildWebPropertySummary()); | 214 o.add(buildWebPropertySummary()); |
| 215 return o; | 215 return o; |
| 216 } | 216 } |
| 217 | 217 |
| 218 checkUnnamed887(core.List<api.WebPropertySummary> o) { | 218 checkUnnamed238(core.List<api.WebPropertySummary> o) { |
| 219 unittest.expect(o, unittest.hasLength(2)); | 219 unittest.expect(o, unittest.hasLength(2)); |
| 220 checkWebPropertySummary(o[0]); | 220 checkWebPropertySummary(o[0]); |
| 221 checkWebPropertySummary(o[1]); | 221 checkWebPropertySummary(o[1]); |
| 222 } | 222 } |
| 223 | 223 |
| 224 core.int buildCounterAccountSummary = 0; | 224 core.int buildCounterAccountSummary = 0; |
| 225 buildAccountSummary() { | 225 buildAccountSummary() { |
| 226 var o = new api.AccountSummary(); | 226 var o = new api.AccountSummary(); |
| 227 buildCounterAccountSummary++; | 227 buildCounterAccountSummary++; |
| 228 if (buildCounterAccountSummary < 3) { | 228 if (buildCounterAccountSummary < 3) { |
| 229 o.id = "foo"; | 229 o.id = "foo"; |
| 230 o.kind = "foo"; | 230 o.kind = "foo"; |
| 231 o.name = "foo"; | 231 o.name = "foo"; |
| 232 o.webProperties = buildUnnamed887(); | 232 o.webProperties = buildUnnamed238(); |
| 233 } | 233 } |
| 234 buildCounterAccountSummary--; | 234 buildCounterAccountSummary--; |
| 235 return o; | 235 return o; |
| 236 } | 236 } |
| 237 | 237 |
| 238 checkAccountSummary(api.AccountSummary o) { | 238 checkAccountSummary(api.AccountSummary o) { |
| 239 buildCounterAccountSummary++; | 239 buildCounterAccountSummary++; |
| 240 if (buildCounterAccountSummary < 3) { | 240 if (buildCounterAccountSummary < 3) { |
| 241 unittest.expect(o.id, unittest.equals('foo')); | 241 unittest.expect(o.id, unittest.equals('foo')); |
| 242 unittest.expect(o.kind, unittest.equals('foo')); | 242 unittest.expect(o.kind, unittest.equals('foo')); |
| 243 unittest.expect(o.name, unittest.equals('foo')); | 243 unittest.expect(o.name, unittest.equals('foo')); |
| 244 checkUnnamed887(o.webProperties); | 244 checkUnnamed238(o.webProperties); |
| 245 } | 245 } |
| 246 buildCounterAccountSummary--; | 246 buildCounterAccountSummary--; |
| 247 } | 247 } |
| 248 | 248 |
| 249 core.int buildCounterAccountTicket = 0; | 249 core.int buildCounterAccountTicket = 0; |
| 250 buildAccountTicket() { | 250 buildAccountTicket() { |
| 251 var o = new api.AccountTicket(); | 251 var o = new api.AccountTicket(); |
| 252 buildCounterAccountTicket++; | 252 buildCounterAccountTicket++; |
| 253 if (buildCounterAccountTicket < 3) { | 253 if (buildCounterAccountTicket < 3) { |
| 254 o.account = buildAccount(); | 254 o.account = buildAccount(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 268 checkAccount(o.account); | 268 checkAccount(o.account); |
| 269 unittest.expect(o.id, unittest.equals('foo')); | 269 unittest.expect(o.id, unittest.equals('foo')); |
| 270 unittest.expect(o.kind, unittest.equals('foo')); | 270 unittest.expect(o.kind, unittest.equals('foo')); |
| 271 checkProfile(o.profile); | 271 checkProfile(o.profile); |
| 272 unittest.expect(o.redirectUri, unittest.equals('foo')); | 272 unittest.expect(o.redirectUri, unittest.equals('foo')); |
| 273 checkWebproperty(o.webproperty); | 273 checkWebproperty(o.webproperty); |
| 274 } | 274 } |
| 275 buildCounterAccountTicket--; | 275 buildCounterAccountTicket--; |
| 276 } | 276 } |
| 277 | 277 |
| 278 buildUnnamed888() { | 278 buildUnnamed239() { |
| 279 var o = new core.List<api.Account>(); | 279 var o = new core.List<api.Account>(); |
| 280 o.add(buildAccount()); | 280 o.add(buildAccount()); |
| 281 o.add(buildAccount()); | 281 o.add(buildAccount()); |
| 282 return o; | 282 return o; |
| 283 } | 283 } |
| 284 | 284 |
| 285 checkUnnamed888(core.List<api.Account> o) { | 285 checkUnnamed239(core.List<api.Account> o) { |
| 286 unittest.expect(o, unittest.hasLength(2)); | 286 unittest.expect(o, unittest.hasLength(2)); |
| 287 checkAccount(o[0]); | 287 checkAccount(o[0]); |
| 288 checkAccount(o[1]); | 288 checkAccount(o[1]); |
| 289 } | 289 } |
| 290 | 290 |
| 291 core.int buildCounterAccounts = 0; | 291 core.int buildCounterAccounts = 0; |
| 292 buildAccounts() { | 292 buildAccounts() { |
| 293 var o = new api.Accounts(); | 293 var o = new api.Accounts(); |
| 294 buildCounterAccounts++; | 294 buildCounterAccounts++; |
| 295 if (buildCounterAccounts < 3) { | 295 if (buildCounterAccounts < 3) { |
| 296 o.items = buildUnnamed888(); | 296 o.items = buildUnnamed239(); |
| 297 o.itemsPerPage = 42; | 297 o.itemsPerPage = 42; |
| 298 o.kind = "foo"; | 298 o.kind = "foo"; |
| 299 o.nextLink = "foo"; | 299 o.nextLink = "foo"; |
| 300 o.previousLink = "foo"; | 300 o.previousLink = "foo"; |
| 301 o.startIndex = 42; | 301 o.startIndex = 42; |
| 302 o.totalResults = 42; | 302 o.totalResults = 42; |
| 303 o.username = "foo"; | 303 o.username = "foo"; |
| 304 } | 304 } |
| 305 buildCounterAccounts--; | 305 buildCounterAccounts--; |
| 306 return o; | 306 return o; |
| 307 } | 307 } |
| 308 | 308 |
| 309 checkAccounts(api.Accounts o) { | 309 checkAccounts(api.Accounts o) { |
| 310 buildCounterAccounts++; | 310 buildCounterAccounts++; |
| 311 if (buildCounterAccounts < 3) { | 311 if (buildCounterAccounts < 3) { |
| 312 checkUnnamed888(o.items); | 312 checkUnnamed239(o.items); |
| 313 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 313 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 314 unittest.expect(o.kind, unittest.equals('foo')); | 314 unittest.expect(o.kind, unittest.equals('foo')); |
| 315 unittest.expect(o.nextLink, unittest.equals('foo')); | 315 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 316 unittest.expect(o.previousLink, unittest.equals('foo')); | 316 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 317 unittest.expect(o.startIndex, unittest.equals(42)); | 317 unittest.expect(o.startIndex, unittest.equals(42)); |
| 318 unittest.expect(o.totalResults, unittest.equals(42)); | 318 unittest.expect(o.totalResults, unittest.equals(42)); |
| 319 unittest.expect(o.username, unittest.equals('foo')); | 319 unittest.expect(o.username, unittest.equals('foo')); |
| 320 } | 320 } |
| 321 buildCounterAccounts--; | 321 buildCounterAccounts--; |
| 322 } | 322 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 337 checkAdWordsAccount(api.AdWordsAccount o) { | 337 checkAdWordsAccount(api.AdWordsAccount o) { |
| 338 buildCounterAdWordsAccount++; | 338 buildCounterAdWordsAccount++; |
| 339 if (buildCounterAdWordsAccount < 3) { | 339 if (buildCounterAdWordsAccount < 3) { |
| 340 unittest.expect(o.autoTaggingEnabled, unittest.isTrue); | 340 unittest.expect(o.autoTaggingEnabled, unittest.isTrue); |
| 341 unittest.expect(o.customerId, unittest.equals('foo')); | 341 unittest.expect(o.customerId, unittest.equals('foo')); |
| 342 unittest.expect(o.kind, unittest.equals('foo')); | 342 unittest.expect(o.kind, unittest.equals('foo')); |
| 343 } | 343 } |
| 344 buildCounterAdWordsAccount--; | 344 buildCounterAdWordsAccount--; |
| 345 } | 345 } |
| 346 | 346 |
| 347 buildUnnamed889() { | 347 buildUnnamed240() { |
| 348 var o = new core.List<core.String>(); | 348 var o = new core.List<core.String>(); |
| 349 o.add("foo"); | 349 o.add("foo"); |
| 350 o.add("foo"); | 350 o.add("foo"); |
| 351 return o; | 351 return o; |
| 352 } | 352 } |
| 353 | 353 |
| 354 checkUnnamed889(core.List<core.String> o) { | 354 checkUnnamed240(core.List<core.String> o) { |
| 355 unittest.expect(o, unittest.hasLength(2)); | 355 unittest.expect(o, unittest.hasLength(2)); |
| 356 unittest.expect(o[0], unittest.equals('foo')); | 356 unittest.expect(o[0], unittest.equals('foo')); |
| 357 unittest.expect(o[1], unittest.equals('foo')); | 357 unittest.expect(o[1], unittest.equals('foo')); |
| 358 } | 358 } |
| 359 | 359 |
| 360 core.int buildCounterAnalyticsDataimportDeleteUploadDataRequest = 0; | 360 core.int buildCounterAnalyticsDataimportDeleteUploadDataRequest = 0; |
| 361 buildAnalyticsDataimportDeleteUploadDataRequest() { | 361 buildAnalyticsDataimportDeleteUploadDataRequest() { |
| 362 var o = new api.AnalyticsDataimportDeleteUploadDataRequest(); | 362 var o = new api.AnalyticsDataimportDeleteUploadDataRequest(); |
| 363 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; | 363 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; |
| 364 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { | 364 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { |
| 365 o.customDataImportUids = buildUnnamed889(); | 365 o.customDataImportUids = buildUnnamed240(); |
| 366 } | 366 } |
| 367 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; | 367 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; |
| 368 return o; | 368 return o; |
| 369 } | 369 } |
| 370 | 370 |
| 371 checkAnalyticsDataimportDeleteUploadDataRequest(api.AnalyticsDataimportDeleteUpl
oadDataRequest o) { | 371 checkAnalyticsDataimportDeleteUploadDataRequest(api.AnalyticsDataimportDeleteUpl
oadDataRequest o) { |
| 372 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; | 372 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; |
| 373 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { | 373 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { |
| 374 checkUnnamed889(o.customDataImportUids); | 374 checkUnnamed240(o.customDataImportUids); |
| 375 } | 375 } |
| 376 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; | 376 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; |
| 377 } | 377 } |
| 378 | 378 |
| 379 buildUnnamed890() { | 379 buildUnnamed241() { |
| 380 var o = new core.Map<core.String, core.String>(); | 380 var o = new core.Map<core.String, core.String>(); |
| 381 o["x"] = "foo"; | 381 o["x"] = "foo"; |
| 382 o["y"] = "foo"; | 382 o["y"] = "foo"; |
| 383 return o; | 383 return o; |
| 384 } | 384 } |
| 385 | 385 |
| 386 checkUnnamed890(core.Map<core.String, core.String> o) { | 386 checkUnnamed241(core.Map<core.String, core.String> o) { |
| 387 unittest.expect(o, unittest.hasLength(2)); | 387 unittest.expect(o, unittest.hasLength(2)); |
| 388 unittest.expect(o["x"], unittest.equals('foo')); | 388 unittest.expect(o["x"], unittest.equals('foo')); |
| 389 unittest.expect(o["y"], unittest.equals('foo')); | 389 unittest.expect(o["y"], unittest.equals('foo')); |
| 390 } | 390 } |
| 391 | 391 |
| 392 core.int buildCounterColumn = 0; | 392 core.int buildCounterColumn = 0; |
| 393 buildColumn() { | 393 buildColumn() { |
| 394 var o = new api.Column(); | 394 var o = new api.Column(); |
| 395 buildCounterColumn++; | 395 buildCounterColumn++; |
| 396 if (buildCounterColumn < 3) { | 396 if (buildCounterColumn < 3) { |
| 397 o.attributes = buildUnnamed890(); | 397 o.attributes = buildUnnamed241(); |
| 398 o.id = "foo"; | 398 o.id = "foo"; |
| 399 o.kind = "foo"; | 399 o.kind = "foo"; |
| 400 } | 400 } |
| 401 buildCounterColumn--; | 401 buildCounterColumn--; |
| 402 return o; | 402 return o; |
| 403 } | 403 } |
| 404 | 404 |
| 405 checkColumn(api.Column o) { | 405 checkColumn(api.Column o) { |
| 406 buildCounterColumn++; | 406 buildCounterColumn++; |
| 407 if (buildCounterColumn < 3) { | 407 if (buildCounterColumn < 3) { |
| 408 checkUnnamed890(o.attributes); | 408 checkUnnamed241(o.attributes); |
| 409 unittest.expect(o.id, unittest.equals('foo')); | 409 unittest.expect(o.id, unittest.equals('foo')); |
| 410 unittest.expect(o.kind, unittest.equals('foo')); | 410 unittest.expect(o.kind, unittest.equals('foo')); |
| 411 } | 411 } |
| 412 buildCounterColumn--; | 412 buildCounterColumn--; |
| 413 } | 413 } |
| 414 | 414 |
| 415 buildUnnamed891() { | 415 buildUnnamed242() { |
| 416 var o = new core.List<core.String>(); | 416 var o = new core.List<core.String>(); |
| 417 o.add("foo"); | 417 o.add("foo"); |
| 418 o.add("foo"); | 418 o.add("foo"); |
| 419 return o; | 419 return o; |
| 420 } | 420 } |
| 421 | 421 |
| 422 checkUnnamed891(core.List<core.String> o) { | 422 checkUnnamed242(core.List<core.String> o) { |
| 423 unittest.expect(o, unittest.hasLength(2)); | 423 unittest.expect(o, unittest.hasLength(2)); |
| 424 unittest.expect(o[0], unittest.equals('foo')); | 424 unittest.expect(o[0], unittest.equals('foo')); |
| 425 unittest.expect(o[1], unittest.equals('foo')); | 425 unittest.expect(o[1], unittest.equals('foo')); |
| 426 } | 426 } |
| 427 | 427 |
| 428 buildUnnamed892() { | 428 buildUnnamed243() { |
| 429 var o = new core.List<api.Column>(); | 429 var o = new core.List<api.Column>(); |
| 430 o.add(buildColumn()); | 430 o.add(buildColumn()); |
| 431 o.add(buildColumn()); | 431 o.add(buildColumn()); |
| 432 return o; | 432 return o; |
| 433 } | 433 } |
| 434 | 434 |
| 435 checkUnnamed892(core.List<api.Column> o) { | 435 checkUnnamed243(core.List<api.Column> o) { |
| 436 unittest.expect(o, unittest.hasLength(2)); | 436 unittest.expect(o, unittest.hasLength(2)); |
| 437 checkColumn(o[0]); | 437 checkColumn(o[0]); |
| 438 checkColumn(o[1]); | 438 checkColumn(o[1]); |
| 439 } | 439 } |
| 440 | 440 |
| 441 core.int buildCounterColumns = 0; | 441 core.int buildCounterColumns = 0; |
| 442 buildColumns() { | 442 buildColumns() { |
| 443 var o = new api.Columns(); | 443 var o = new api.Columns(); |
| 444 buildCounterColumns++; | 444 buildCounterColumns++; |
| 445 if (buildCounterColumns < 3) { | 445 if (buildCounterColumns < 3) { |
| 446 o.attributeNames = buildUnnamed891(); | 446 o.attributeNames = buildUnnamed242(); |
| 447 o.etag = "foo"; | 447 o.etag = "foo"; |
| 448 o.items = buildUnnamed892(); | 448 o.items = buildUnnamed243(); |
| 449 o.kind = "foo"; | 449 o.kind = "foo"; |
| 450 o.totalResults = 42; | 450 o.totalResults = 42; |
| 451 } | 451 } |
| 452 buildCounterColumns--; | 452 buildCounterColumns--; |
| 453 return o; | 453 return o; |
| 454 } | 454 } |
| 455 | 455 |
| 456 checkColumns(api.Columns o) { | 456 checkColumns(api.Columns o) { |
| 457 buildCounterColumns++; | 457 buildCounterColumns++; |
| 458 if (buildCounterColumns < 3) { | 458 if (buildCounterColumns < 3) { |
| 459 checkUnnamed891(o.attributeNames); | 459 checkUnnamed242(o.attributeNames); |
| 460 unittest.expect(o.etag, unittest.equals('foo')); | 460 unittest.expect(o.etag, unittest.equals('foo')); |
| 461 checkUnnamed892(o.items); | 461 checkUnnamed243(o.items); |
| 462 unittest.expect(o.kind, unittest.equals('foo')); | 462 unittest.expect(o.kind, unittest.equals('foo')); |
| 463 unittest.expect(o.totalResults, unittest.equals(42)); | 463 unittest.expect(o.totalResults, unittest.equals(42)); |
| 464 } | 464 } |
| 465 buildCounterColumns--; | 465 buildCounterColumns--; |
| 466 } | 466 } |
| 467 | 467 |
| 468 core.int buildCounterCustomDataSourceChildLink = 0; | 468 core.int buildCounterCustomDataSourceChildLink = 0; |
| 469 buildCustomDataSourceChildLink() { | 469 buildCustomDataSourceChildLink() { |
| 470 var o = new api.CustomDataSourceChildLink(); | 470 var o = new api.CustomDataSourceChildLink(); |
| 471 buildCounterCustomDataSourceChildLink++; | 471 buildCounterCustomDataSourceChildLink++; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 500 | 500 |
| 501 checkCustomDataSourceParentLink(api.CustomDataSourceParentLink o) { | 501 checkCustomDataSourceParentLink(api.CustomDataSourceParentLink o) { |
| 502 buildCounterCustomDataSourceParentLink++; | 502 buildCounterCustomDataSourceParentLink++; |
| 503 if (buildCounterCustomDataSourceParentLink < 3) { | 503 if (buildCounterCustomDataSourceParentLink < 3) { |
| 504 unittest.expect(o.href, unittest.equals('foo')); | 504 unittest.expect(o.href, unittest.equals('foo')); |
| 505 unittest.expect(o.type, unittest.equals('foo')); | 505 unittest.expect(o.type, unittest.equals('foo')); |
| 506 } | 506 } |
| 507 buildCounterCustomDataSourceParentLink--; | 507 buildCounterCustomDataSourceParentLink--; |
| 508 } | 508 } |
| 509 | 509 |
| 510 buildUnnamed893() { | 510 buildUnnamed244() { |
| 511 var o = new core.List<core.String>(); | 511 var o = new core.List<core.String>(); |
| 512 o.add("foo"); | 512 o.add("foo"); |
| 513 o.add("foo"); | 513 o.add("foo"); |
| 514 return o; | 514 return o; |
| 515 } | 515 } |
| 516 | 516 |
| 517 checkUnnamed893(core.List<core.String> o) { | 517 checkUnnamed244(core.List<core.String> o) { |
| 518 unittest.expect(o, unittest.hasLength(2)); | 518 unittest.expect(o, unittest.hasLength(2)); |
| 519 unittest.expect(o[0], unittest.equals('foo')); | 519 unittest.expect(o[0], unittest.equals('foo')); |
| 520 unittest.expect(o[1], unittest.equals('foo')); | 520 unittest.expect(o[1], unittest.equals('foo')); |
| 521 } | 521 } |
| 522 | 522 |
| 523 core.int buildCounterCustomDataSource = 0; | 523 core.int buildCounterCustomDataSource = 0; |
| 524 buildCustomDataSource() { | 524 buildCustomDataSource() { |
| 525 var o = new api.CustomDataSource(); | 525 var o = new api.CustomDataSource(); |
| 526 buildCounterCustomDataSource++; | 526 buildCounterCustomDataSource++; |
| 527 if (buildCounterCustomDataSource < 3) { | 527 if (buildCounterCustomDataSource < 3) { |
| 528 o.accountId = "foo"; | 528 o.accountId = "foo"; |
| 529 o.childLink = buildCustomDataSourceChildLink(); | 529 o.childLink = buildCustomDataSourceChildLink(); |
| 530 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 530 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| 531 o.description = "foo"; | 531 o.description = "foo"; |
| 532 o.id = "foo"; | 532 o.id = "foo"; |
| 533 o.importBehavior = "foo"; | 533 o.importBehavior = "foo"; |
| 534 o.kind = "foo"; | 534 o.kind = "foo"; |
| 535 o.name = "foo"; | 535 o.name = "foo"; |
| 536 o.parentLink = buildCustomDataSourceParentLink(); | 536 o.parentLink = buildCustomDataSourceParentLink(); |
| 537 o.profilesLinked = buildUnnamed893(); | 537 o.profilesLinked = buildUnnamed244(); |
| 538 o.selfLink = "foo"; | 538 o.selfLink = "foo"; |
| 539 o.type = "foo"; | 539 o.type = "foo"; |
| 540 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 540 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 541 o.uploadType = "foo"; | 541 o.uploadType = "foo"; |
| 542 o.webPropertyId = "foo"; | 542 o.webPropertyId = "foo"; |
| 543 } | 543 } |
| 544 buildCounterCustomDataSource--; | 544 buildCounterCustomDataSource--; |
| 545 return o; | 545 return o; |
| 546 } | 546 } |
| 547 | 547 |
| 548 checkCustomDataSource(api.CustomDataSource o) { | 548 checkCustomDataSource(api.CustomDataSource o) { |
| 549 buildCounterCustomDataSource++; | 549 buildCounterCustomDataSource++; |
| 550 if (buildCounterCustomDataSource < 3) { | 550 if (buildCounterCustomDataSource < 3) { |
| 551 unittest.expect(o.accountId, unittest.equals('foo')); | 551 unittest.expect(o.accountId, unittest.equals('foo')); |
| 552 checkCustomDataSourceChildLink(o.childLink); | 552 checkCustomDataSourceChildLink(o.childLink); |
| 553 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 553 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 554 unittest.expect(o.description, unittest.equals('foo')); | 554 unittest.expect(o.description, unittest.equals('foo')); |
| 555 unittest.expect(o.id, unittest.equals('foo')); | 555 unittest.expect(o.id, unittest.equals('foo')); |
| 556 unittest.expect(o.importBehavior, unittest.equals('foo')); | 556 unittest.expect(o.importBehavior, unittest.equals('foo')); |
| 557 unittest.expect(o.kind, unittest.equals('foo')); | 557 unittest.expect(o.kind, unittest.equals('foo')); |
| 558 unittest.expect(o.name, unittest.equals('foo')); | 558 unittest.expect(o.name, unittest.equals('foo')); |
| 559 checkCustomDataSourceParentLink(o.parentLink); | 559 checkCustomDataSourceParentLink(o.parentLink); |
| 560 checkUnnamed893(o.profilesLinked); | 560 checkUnnamed244(o.profilesLinked); |
| 561 unittest.expect(o.selfLink, unittest.equals('foo')); | 561 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 562 unittest.expect(o.type, unittest.equals('foo')); | 562 unittest.expect(o.type, unittest.equals('foo')); |
| 563 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 563 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 564 unittest.expect(o.uploadType, unittest.equals('foo')); | 564 unittest.expect(o.uploadType, unittest.equals('foo')); |
| 565 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 565 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 566 } | 566 } |
| 567 buildCounterCustomDataSource--; | 567 buildCounterCustomDataSource--; |
| 568 } | 568 } |
| 569 | 569 |
| 570 buildUnnamed894() { | 570 buildUnnamed245() { |
| 571 var o = new core.List<api.CustomDataSource>(); | 571 var o = new core.List<api.CustomDataSource>(); |
| 572 o.add(buildCustomDataSource()); | 572 o.add(buildCustomDataSource()); |
| 573 o.add(buildCustomDataSource()); | 573 o.add(buildCustomDataSource()); |
| 574 return o; | 574 return o; |
| 575 } | 575 } |
| 576 | 576 |
| 577 checkUnnamed894(core.List<api.CustomDataSource> o) { | 577 checkUnnamed245(core.List<api.CustomDataSource> o) { |
| 578 unittest.expect(o, unittest.hasLength(2)); | 578 unittest.expect(o, unittest.hasLength(2)); |
| 579 checkCustomDataSource(o[0]); | 579 checkCustomDataSource(o[0]); |
| 580 checkCustomDataSource(o[1]); | 580 checkCustomDataSource(o[1]); |
| 581 } | 581 } |
| 582 | 582 |
| 583 core.int buildCounterCustomDataSources = 0; | 583 core.int buildCounterCustomDataSources = 0; |
| 584 buildCustomDataSources() { | 584 buildCustomDataSources() { |
| 585 var o = new api.CustomDataSources(); | 585 var o = new api.CustomDataSources(); |
| 586 buildCounterCustomDataSources++; | 586 buildCounterCustomDataSources++; |
| 587 if (buildCounterCustomDataSources < 3) { | 587 if (buildCounterCustomDataSources < 3) { |
| 588 o.items = buildUnnamed894(); | 588 o.items = buildUnnamed245(); |
| 589 o.itemsPerPage = 42; | 589 o.itemsPerPage = 42; |
| 590 o.kind = "foo"; | 590 o.kind = "foo"; |
| 591 o.nextLink = "foo"; | 591 o.nextLink = "foo"; |
| 592 o.previousLink = "foo"; | 592 o.previousLink = "foo"; |
| 593 o.startIndex = 42; | 593 o.startIndex = 42; |
| 594 o.totalResults = 42; | 594 o.totalResults = 42; |
| 595 o.username = "foo"; | 595 o.username = "foo"; |
| 596 } | 596 } |
| 597 buildCounterCustomDataSources--; | 597 buildCounterCustomDataSources--; |
| 598 return o; | 598 return o; |
| 599 } | 599 } |
| 600 | 600 |
| 601 checkCustomDataSources(api.CustomDataSources o) { | 601 checkCustomDataSources(api.CustomDataSources o) { |
| 602 buildCounterCustomDataSources++; | 602 buildCounterCustomDataSources++; |
| 603 if (buildCounterCustomDataSources < 3) { | 603 if (buildCounterCustomDataSources < 3) { |
| 604 checkUnnamed894(o.items); | 604 checkUnnamed245(o.items); |
| 605 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 605 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 606 unittest.expect(o.kind, unittest.equals('foo')); | 606 unittest.expect(o.kind, unittest.equals('foo')); |
| 607 unittest.expect(o.nextLink, unittest.equals('foo')); | 607 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 608 unittest.expect(o.previousLink, unittest.equals('foo')); | 608 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 609 unittest.expect(o.startIndex, unittest.equals(42)); | 609 unittest.expect(o.startIndex, unittest.equals(42)); |
| 610 unittest.expect(o.totalResults, unittest.equals(42)); | 610 unittest.expect(o.totalResults, unittest.equals(42)); |
| 611 unittest.expect(o.username, unittest.equals('foo')); | 611 unittest.expect(o.username, unittest.equals('foo')); |
| 612 } | 612 } |
| 613 buildCounterCustomDataSources--; | 613 buildCounterCustomDataSources--; |
| 614 } | 614 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 unittest.expect(o.name, unittest.equals('foo')); | 668 unittest.expect(o.name, unittest.equals('foo')); |
| 669 checkCustomDimensionParentLink(o.parentLink); | 669 checkCustomDimensionParentLink(o.parentLink); |
| 670 unittest.expect(o.scope, unittest.equals('foo')); | 670 unittest.expect(o.scope, unittest.equals('foo')); |
| 671 unittest.expect(o.selfLink, unittest.equals('foo')); | 671 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 672 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 672 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 673 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 673 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 674 } | 674 } |
| 675 buildCounterCustomDimension--; | 675 buildCounterCustomDimension--; |
| 676 } | 676 } |
| 677 | 677 |
| 678 buildUnnamed895() { | 678 buildUnnamed246() { |
| 679 var o = new core.List<api.CustomDimension>(); | 679 var o = new core.List<api.CustomDimension>(); |
| 680 o.add(buildCustomDimension()); | 680 o.add(buildCustomDimension()); |
| 681 o.add(buildCustomDimension()); | 681 o.add(buildCustomDimension()); |
| 682 return o; | 682 return o; |
| 683 } | 683 } |
| 684 | 684 |
| 685 checkUnnamed895(core.List<api.CustomDimension> o) { | 685 checkUnnamed246(core.List<api.CustomDimension> o) { |
| 686 unittest.expect(o, unittest.hasLength(2)); | 686 unittest.expect(o, unittest.hasLength(2)); |
| 687 checkCustomDimension(o[0]); | 687 checkCustomDimension(o[0]); |
| 688 checkCustomDimension(o[1]); | 688 checkCustomDimension(o[1]); |
| 689 } | 689 } |
| 690 | 690 |
| 691 core.int buildCounterCustomDimensions = 0; | 691 core.int buildCounterCustomDimensions = 0; |
| 692 buildCustomDimensions() { | 692 buildCustomDimensions() { |
| 693 var o = new api.CustomDimensions(); | 693 var o = new api.CustomDimensions(); |
| 694 buildCounterCustomDimensions++; | 694 buildCounterCustomDimensions++; |
| 695 if (buildCounterCustomDimensions < 3) { | 695 if (buildCounterCustomDimensions < 3) { |
| 696 o.items = buildUnnamed895(); | 696 o.items = buildUnnamed246(); |
| 697 o.itemsPerPage = 42; | 697 o.itemsPerPage = 42; |
| 698 o.kind = "foo"; | 698 o.kind = "foo"; |
| 699 o.nextLink = "foo"; | 699 o.nextLink = "foo"; |
| 700 o.previousLink = "foo"; | 700 o.previousLink = "foo"; |
| 701 o.startIndex = 42; | 701 o.startIndex = 42; |
| 702 o.totalResults = 42; | 702 o.totalResults = 42; |
| 703 o.username = "foo"; | 703 o.username = "foo"; |
| 704 } | 704 } |
| 705 buildCounterCustomDimensions--; | 705 buildCounterCustomDimensions--; |
| 706 return o; | 706 return o; |
| 707 } | 707 } |
| 708 | 708 |
| 709 checkCustomDimensions(api.CustomDimensions o) { | 709 checkCustomDimensions(api.CustomDimensions o) { |
| 710 buildCounterCustomDimensions++; | 710 buildCounterCustomDimensions++; |
| 711 if (buildCounterCustomDimensions < 3) { | 711 if (buildCounterCustomDimensions < 3) { |
| 712 checkUnnamed895(o.items); | 712 checkUnnamed246(o.items); |
| 713 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 713 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 714 unittest.expect(o.kind, unittest.equals('foo')); | 714 unittest.expect(o.kind, unittest.equals('foo')); |
| 715 unittest.expect(o.nextLink, unittest.equals('foo')); | 715 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 716 unittest.expect(o.previousLink, unittest.equals('foo')); | 716 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 717 unittest.expect(o.startIndex, unittest.equals(42)); | 717 unittest.expect(o.startIndex, unittest.equals(42)); |
| 718 unittest.expect(o.totalResults, unittest.equals(42)); | 718 unittest.expect(o.totalResults, unittest.equals(42)); |
| 719 unittest.expect(o.username, unittest.equals('foo')); | 719 unittest.expect(o.username, unittest.equals('foo')); |
| 720 } | 720 } |
| 721 buildCounterCustomDimensions--; | 721 buildCounterCustomDimensions--; |
| 722 } | 722 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 checkCustomMetricParentLink(o.parentLink); | 782 checkCustomMetricParentLink(o.parentLink); |
| 783 unittest.expect(o.scope, unittest.equals('foo')); | 783 unittest.expect(o.scope, unittest.equals('foo')); |
| 784 unittest.expect(o.selfLink, unittest.equals('foo')); | 784 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 785 unittest.expect(o.type, unittest.equals('foo')); | 785 unittest.expect(o.type, unittest.equals('foo')); |
| 786 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 786 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 787 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 787 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 788 } | 788 } |
| 789 buildCounterCustomMetric--; | 789 buildCounterCustomMetric--; |
| 790 } | 790 } |
| 791 | 791 |
| 792 buildUnnamed896() { | 792 buildUnnamed247() { |
| 793 var o = new core.List<api.CustomMetric>(); | 793 var o = new core.List<api.CustomMetric>(); |
| 794 o.add(buildCustomMetric()); | 794 o.add(buildCustomMetric()); |
| 795 o.add(buildCustomMetric()); | 795 o.add(buildCustomMetric()); |
| 796 return o; | 796 return o; |
| 797 } | 797 } |
| 798 | 798 |
| 799 checkUnnamed896(core.List<api.CustomMetric> o) { | 799 checkUnnamed247(core.List<api.CustomMetric> o) { |
| 800 unittest.expect(o, unittest.hasLength(2)); | 800 unittest.expect(o, unittest.hasLength(2)); |
| 801 checkCustomMetric(o[0]); | 801 checkCustomMetric(o[0]); |
| 802 checkCustomMetric(o[1]); | 802 checkCustomMetric(o[1]); |
| 803 } | 803 } |
| 804 | 804 |
| 805 core.int buildCounterCustomMetrics = 0; | 805 core.int buildCounterCustomMetrics = 0; |
| 806 buildCustomMetrics() { | 806 buildCustomMetrics() { |
| 807 var o = new api.CustomMetrics(); | 807 var o = new api.CustomMetrics(); |
| 808 buildCounterCustomMetrics++; | 808 buildCounterCustomMetrics++; |
| 809 if (buildCounterCustomMetrics < 3) { | 809 if (buildCounterCustomMetrics < 3) { |
| 810 o.items = buildUnnamed896(); | 810 o.items = buildUnnamed247(); |
| 811 o.itemsPerPage = 42; | 811 o.itemsPerPage = 42; |
| 812 o.kind = "foo"; | 812 o.kind = "foo"; |
| 813 o.nextLink = "foo"; | 813 o.nextLink = "foo"; |
| 814 o.previousLink = "foo"; | 814 o.previousLink = "foo"; |
| 815 o.startIndex = 42; | 815 o.startIndex = 42; |
| 816 o.totalResults = 42; | 816 o.totalResults = 42; |
| 817 o.username = "foo"; | 817 o.username = "foo"; |
| 818 } | 818 } |
| 819 buildCounterCustomMetrics--; | 819 buildCounterCustomMetrics--; |
| 820 return o; | 820 return o; |
| 821 } | 821 } |
| 822 | 822 |
| 823 checkCustomMetrics(api.CustomMetrics o) { | 823 checkCustomMetrics(api.CustomMetrics o) { |
| 824 buildCounterCustomMetrics++; | 824 buildCounterCustomMetrics++; |
| 825 if (buildCounterCustomMetrics < 3) { | 825 if (buildCounterCustomMetrics < 3) { |
| 826 checkUnnamed896(o.items); | 826 checkUnnamed247(o.items); |
| 827 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 827 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 828 unittest.expect(o.kind, unittest.equals('foo')); | 828 unittest.expect(o.kind, unittest.equals('foo')); |
| 829 unittest.expect(o.nextLink, unittest.equals('foo')); | 829 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 830 unittest.expect(o.previousLink, unittest.equals('foo')); | 830 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 831 unittest.expect(o.startIndex, unittest.equals(42)); | 831 unittest.expect(o.startIndex, unittest.equals(42)); |
| 832 unittest.expect(o.totalResults, unittest.equals(42)); | 832 unittest.expect(o.totalResults, unittest.equals(42)); |
| 833 unittest.expect(o.username, unittest.equals('foo')); | 833 unittest.expect(o.username, unittest.equals('foo')); |
| 834 } | 834 } |
| 835 buildCounterCustomMetrics--; | 835 buildCounterCustomMetrics--; |
| 836 } | 836 } |
| 837 | 837 |
| 838 buildUnnamed897() { | 838 buildUnnamed248() { |
| 839 var o = new core.List<api.AdWordsAccount>(); | 839 var o = new core.List<api.AdWordsAccount>(); |
| 840 o.add(buildAdWordsAccount()); | 840 o.add(buildAdWordsAccount()); |
| 841 o.add(buildAdWordsAccount()); | 841 o.add(buildAdWordsAccount()); |
| 842 return o; | 842 return o; |
| 843 } | 843 } |
| 844 | 844 |
| 845 checkUnnamed897(core.List<api.AdWordsAccount> o) { | 845 checkUnnamed248(core.List<api.AdWordsAccount> o) { |
| 846 unittest.expect(o, unittest.hasLength(2)); | 846 unittest.expect(o, unittest.hasLength(2)); |
| 847 checkAdWordsAccount(o[0]); | 847 checkAdWordsAccount(o[0]); |
| 848 checkAdWordsAccount(o[1]); | 848 checkAdWordsAccount(o[1]); |
| 849 } | 849 } |
| 850 | 850 |
| 851 core.int buildCounterEntityAdWordsLinkEntity = 0; | 851 core.int buildCounterEntityAdWordsLinkEntity = 0; |
| 852 buildEntityAdWordsLinkEntity() { | 852 buildEntityAdWordsLinkEntity() { |
| 853 var o = new api.EntityAdWordsLinkEntity(); | 853 var o = new api.EntityAdWordsLinkEntity(); |
| 854 buildCounterEntityAdWordsLinkEntity++; | 854 buildCounterEntityAdWordsLinkEntity++; |
| 855 if (buildCounterEntityAdWordsLinkEntity < 3) { | 855 if (buildCounterEntityAdWordsLinkEntity < 3) { |
| 856 o.webPropertyRef = buildWebPropertyRef(); | 856 o.webPropertyRef = buildWebPropertyRef(); |
| 857 } | 857 } |
| 858 buildCounterEntityAdWordsLinkEntity--; | 858 buildCounterEntityAdWordsLinkEntity--; |
| 859 return o; | 859 return o; |
| 860 } | 860 } |
| 861 | 861 |
| 862 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { | 862 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { |
| 863 buildCounterEntityAdWordsLinkEntity++; | 863 buildCounterEntityAdWordsLinkEntity++; |
| 864 if (buildCounterEntityAdWordsLinkEntity < 3) { | 864 if (buildCounterEntityAdWordsLinkEntity < 3) { |
| 865 checkWebPropertyRef(o.webPropertyRef); | 865 checkWebPropertyRef(o.webPropertyRef); |
| 866 } | 866 } |
| 867 buildCounterEntityAdWordsLinkEntity--; | 867 buildCounterEntityAdWordsLinkEntity--; |
| 868 } | 868 } |
| 869 | 869 |
| 870 buildUnnamed898() { | 870 buildUnnamed249() { |
| 871 var o = new core.List<core.String>(); | 871 var o = new core.List<core.String>(); |
| 872 o.add("foo"); | 872 o.add("foo"); |
| 873 o.add("foo"); | 873 o.add("foo"); |
| 874 return o; | 874 return o; |
| 875 } | 875 } |
| 876 | 876 |
| 877 checkUnnamed898(core.List<core.String> o) { | 877 checkUnnamed249(core.List<core.String> o) { |
| 878 unittest.expect(o, unittest.hasLength(2)); | 878 unittest.expect(o, unittest.hasLength(2)); |
| 879 unittest.expect(o[0], unittest.equals('foo')); | 879 unittest.expect(o[0], unittest.equals('foo')); |
| 880 unittest.expect(o[1], unittest.equals('foo')); | 880 unittest.expect(o[1], unittest.equals('foo')); |
| 881 } | 881 } |
| 882 | 882 |
| 883 core.int buildCounterEntityAdWordsLink = 0; | 883 core.int buildCounterEntityAdWordsLink = 0; |
| 884 buildEntityAdWordsLink() { | 884 buildEntityAdWordsLink() { |
| 885 var o = new api.EntityAdWordsLink(); | 885 var o = new api.EntityAdWordsLink(); |
| 886 buildCounterEntityAdWordsLink++; | 886 buildCounterEntityAdWordsLink++; |
| 887 if (buildCounterEntityAdWordsLink < 3) { | 887 if (buildCounterEntityAdWordsLink < 3) { |
| 888 o.adWordsAccounts = buildUnnamed897(); | 888 o.adWordsAccounts = buildUnnamed248(); |
| 889 o.entity = buildEntityAdWordsLinkEntity(); | 889 o.entity = buildEntityAdWordsLinkEntity(); |
| 890 o.id = "foo"; | 890 o.id = "foo"; |
| 891 o.kind = "foo"; | 891 o.kind = "foo"; |
| 892 o.name = "foo"; | 892 o.name = "foo"; |
| 893 o.profileIds = buildUnnamed898(); | 893 o.profileIds = buildUnnamed249(); |
| 894 o.selfLink = "foo"; | 894 o.selfLink = "foo"; |
| 895 } | 895 } |
| 896 buildCounterEntityAdWordsLink--; | 896 buildCounterEntityAdWordsLink--; |
| 897 return o; | 897 return o; |
| 898 } | 898 } |
| 899 | 899 |
| 900 checkEntityAdWordsLink(api.EntityAdWordsLink o) { | 900 checkEntityAdWordsLink(api.EntityAdWordsLink o) { |
| 901 buildCounterEntityAdWordsLink++; | 901 buildCounterEntityAdWordsLink++; |
| 902 if (buildCounterEntityAdWordsLink < 3) { | 902 if (buildCounterEntityAdWordsLink < 3) { |
| 903 checkUnnamed897(o.adWordsAccounts); | 903 checkUnnamed248(o.adWordsAccounts); |
| 904 checkEntityAdWordsLinkEntity(o.entity); | 904 checkEntityAdWordsLinkEntity(o.entity); |
| 905 unittest.expect(o.id, unittest.equals('foo')); | 905 unittest.expect(o.id, unittest.equals('foo')); |
| 906 unittest.expect(o.kind, unittest.equals('foo')); | 906 unittest.expect(o.kind, unittest.equals('foo')); |
| 907 unittest.expect(o.name, unittest.equals('foo')); | 907 unittest.expect(o.name, unittest.equals('foo')); |
| 908 checkUnnamed898(o.profileIds); | 908 checkUnnamed249(o.profileIds); |
| 909 unittest.expect(o.selfLink, unittest.equals('foo')); | 909 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 910 } | 910 } |
| 911 buildCounterEntityAdWordsLink--; | 911 buildCounterEntityAdWordsLink--; |
| 912 } | 912 } |
| 913 | 913 |
| 914 buildUnnamed899() { | 914 buildUnnamed250() { |
| 915 var o = new core.List<api.EntityAdWordsLink>(); | 915 var o = new core.List<api.EntityAdWordsLink>(); |
| 916 o.add(buildEntityAdWordsLink()); | 916 o.add(buildEntityAdWordsLink()); |
| 917 o.add(buildEntityAdWordsLink()); | 917 o.add(buildEntityAdWordsLink()); |
| 918 return o; | 918 return o; |
| 919 } | 919 } |
| 920 | 920 |
| 921 checkUnnamed899(core.List<api.EntityAdWordsLink> o) { | 921 checkUnnamed250(core.List<api.EntityAdWordsLink> o) { |
| 922 unittest.expect(o, unittest.hasLength(2)); | 922 unittest.expect(o, unittest.hasLength(2)); |
| 923 checkEntityAdWordsLink(o[0]); | 923 checkEntityAdWordsLink(o[0]); |
| 924 checkEntityAdWordsLink(o[1]); | 924 checkEntityAdWordsLink(o[1]); |
| 925 } | 925 } |
| 926 | 926 |
| 927 core.int buildCounterEntityAdWordsLinks = 0; | 927 core.int buildCounterEntityAdWordsLinks = 0; |
| 928 buildEntityAdWordsLinks() { | 928 buildEntityAdWordsLinks() { |
| 929 var o = new api.EntityAdWordsLinks(); | 929 var o = new api.EntityAdWordsLinks(); |
| 930 buildCounterEntityAdWordsLinks++; | 930 buildCounterEntityAdWordsLinks++; |
| 931 if (buildCounterEntityAdWordsLinks < 3) { | 931 if (buildCounterEntityAdWordsLinks < 3) { |
| 932 o.items = buildUnnamed899(); | 932 o.items = buildUnnamed250(); |
| 933 o.itemsPerPage = 42; | 933 o.itemsPerPage = 42; |
| 934 o.kind = "foo"; | 934 o.kind = "foo"; |
| 935 o.nextLink = "foo"; | 935 o.nextLink = "foo"; |
| 936 o.previousLink = "foo"; | 936 o.previousLink = "foo"; |
| 937 o.startIndex = 42; | 937 o.startIndex = 42; |
| 938 o.totalResults = 42; | 938 o.totalResults = 42; |
| 939 } | 939 } |
| 940 buildCounterEntityAdWordsLinks--; | 940 buildCounterEntityAdWordsLinks--; |
| 941 return o; | 941 return o; |
| 942 } | 942 } |
| 943 | 943 |
| 944 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { | 944 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { |
| 945 buildCounterEntityAdWordsLinks++; | 945 buildCounterEntityAdWordsLinks++; |
| 946 if (buildCounterEntityAdWordsLinks < 3) { | 946 if (buildCounterEntityAdWordsLinks < 3) { |
| 947 checkUnnamed899(o.items); | 947 checkUnnamed250(o.items); |
| 948 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 948 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 949 unittest.expect(o.kind, unittest.equals('foo')); | 949 unittest.expect(o.kind, unittest.equals('foo')); |
| 950 unittest.expect(o.nextLink, unittest.equals('foo')); | 950 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 951 unittest.expect(o.previousLink, unittest.equals('foo')); | 951 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 952 unittest.expect(o.startIndex, unittest.equals(42)); | 952 unittest.expect(o.startIndex, unittest.equals(42)); |
| 953 unittest.expect(o.totalResults, unittest.equals(42)); | 953 unittest.expect(o.totalResults, unittest.equals(42)); |
| 954 } | 954 } |
| 955 buildCounterEntityAdWordsLinks--; | 955 buildCounterEntityAdWordsLinks--; |
| 956 } | 956 } |
| 957 | 957 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 971 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { | 971 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { |
| 972 buildCounterEntityUserLinkEntity++; | 972 buildCounterEntityUserLinkEntity++; |
| 973 if (buildCounterEntityUserLinkEntity < 3) { | 973 if (buildCounterEntityUserLinkEntity < 3) { |
| 974 checkAccountRef(o.accountRef); | 974 checkAccountRef(o.accountRef); |
| 975 checkProfileRef(o.profileRef); | 975 checkProfileRef(o.profileRef); |
| 976 checkWebPropertyRef(o.webPropertyRef); | 976 checkWebPropertyRef(o.webPropertyRef); |
| 977 } | 977 } |
| 978 buildCounterEntityUserLinkEntity--; | 978 buildCounterEntityUserLinkEntity--; |
| 979 } | 979 } |
| 980 | 980 |
| 981 buildUnnamed900() { | 981 buildUnnamed251() { |
| 982 var o = new core.List<core.String>(); | 982 var o = new core.List<core.String>(); |
| 983 o.add("foo"); | 983 o.add("foo"); |
| 984 o.add("foo"); | 984 o.add("foo"); |
| 985 return o; | 985 return o; |
| 986 } | 986 } |
| 987 | 987 |
| 988 checkUnnamed900(core.List<core.String> o) { | 988 checkUnnamed251(core.List<core.String> o) { |
| 989 unittest.expect(o, unittest.hasLength(2)); | 989 unittest.expect(o, unittest.hasLength(2)); |
| 990 unittest.expect(o[0], unittest.equals('foo')); | 990 unittest.expect(o[0], unittest.equals('foo')); |
| 991 unittest.expect(o[1], unittest.equals('foo')); | 991 unittest.expect(o[1], unittest.equals('foo')); |
| 992 } | 992 } |
| 993 | 993 |
| 994 buildUnnamed901() { | 994 buildUnnamed252() { |
| 995 var o = new core.List<core.String>(); | 995 var o = new core.List<core.String>(); |
| 996 o.add("foo"); | 996 o.add("foo"); |
| 997 o.add("foo"); | 997 o.add("foo"); |
| 998 return o; | 998 return o; |
| 999 } | 999 } |
| 1000 | 1000 |
| 1001 checkUnnamed901(core.List<core.String> o) { | 1001 checkUnnamed252(core.List<core.String> o) { |
| 1002 unittest.expect(o, unittest.hasLength(2)); | 1002 unittest.expect(o, unittest.hasLength(2)); |
| 1003 unittest.expect(o[0], unittest.equals('foo')); | 1003 unittest.expect(o[0], unittest.equals('foo')); |
| 1004 unittest.expect(o[1], unittest.equals('foo')); | 1004 unittest.expect(o[1], unittest.equals('foo')); |
| 1005 } | 1005 } |
| 1006 | 1006 |
| 1007 core.int buildCounterEntityUserLinkPermissions = 0; | 1007 core.int buildCounterEntityUserLinkPermissions = 0; |
| 1008 buildEntityUserLinkPermissions() { | 1008 buildEntityUserLinkPermissions() { |
| 1009 var o = new api.EntityUserLinkPermissions(); | 1009 var o = new api.EntityUserLinkPermissions(); |
| 1010 buildCounterEntityUserLinkPermissions++; | 1010 buildCounterEntityUserLinkPermissions++; |
| 1011 if (buildCounterEntityUserLinkPermissions < 3) { | 1011 if (buildCounterEntityUserLinkPermissions < 3) { |
| 1012 o.effective = buildUnnamed900(); | 1012 o.effective = buildUnnamed251(); |
| 1013 o.local = buildUnnamed901(); | 1013 o.local = buildUnnamed252(); |
| 1014 } | 1014 } |
| 1015 buildCounterEntityUserLinkPermissions--; | 1015 buildCounterEntityUserLinkPermissions--; |
| 1016 return o; | 1016 return o; |
| 1017 } | 1017 } |
| 1018 | 1018 |
| 1019 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { | 1019 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { |
| 1020 buildCounterEntityUserLinkPermissions++; | 1020 buildCounterEntityUserLinkPermissions++; |
| 1021 if (buildCounterEntityUserLinkPermissions < 3) { | 1021 if (buildCounterEntityUserLinkPermissions < 3) { |
| 1022 checkUnnamed900(o.effective); | 1022 checkUnnamed251(o.effective); |
| 1023 checkUnnamed901(o.local); | 1023 checkUnnamed252(o.local); |
| 1024 } | 1024 } |
| 1025 buildCounterEntityUserLinkPermissions--; | 1025 buildCounterEntityUserLinkPermissions--; |
| 1026 } | 1026 } |
| 1027 | 1027 |
| 1028 core.int buildCounterEntityUserLink = 0; | 1028 core.int buildCounterEntityUserLink = 0; |
| 1029 buildEntityUserLink() { | 1029 buildEntityUserLink() { |
| 1030 var o = new api.EntityUserLink(); | 1030 var o = new api.EntityUserLink(); |
| 1031 buildCounterEntityUserLink++; | 1031 buildCounterEntityUserLink++; |
| 1032 if (buildCounterEntityUserLink < 3) { | 1032 if (buildCounterEntityUserLink < 3) { |
| 1033 o.entity = buildEntityUserLinkEntity(); | 1033 o.entity = buildEntityUserLinkEntity(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1047 checkEntityUserLinkEntity(o.entity); | 1047 checkEntityUserLinkEntity(o.entity); |
| 1048 unittest.expect(o.id, unittest.equals('foo')); | 1048 unittest.expect(o.id, unittest.equals('foo')); |
| 1049 unittest.expect(o.kind, unittest.equals('foo')); | 1049 unittest.expect(o.kind, unittest.equals('foo')); |
| 1050 checkEntityUserLinkPermissions(o.permissions); | 1050 checkEntityUserLinkPermissions(o.permissions); |
| 1051 unittest.expect(o.selfLink, unittest.equals('foo')); | 1051 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1052 checkUserRef(o.userRef); | 1052 checkUserRef(o.userRef); |
| 1053 } | 1053 } |
| 1054 buildCounterEntityUserLink--; | 1054 buildCounterEntityUserLink--; |
| 1055 } | 1055 } |
| 1056 | 1056 |
| 1057 buildUnnamed902() { | 1057 buildUnnamed253() { |
| 1058 var o = new core.List<api.EntityUserLink>(); | 1058 var o = new core.List<api.EntityUserLink>(); |
| 1059 o.add(buildEntityUserLink()); | 1059 o.add(buildEntityUserLink()); |
| 1060 o.add(buildEntityUserLink()); | 1060 o.add(buildEntityUserLink()); |
| 1061 return o; | 1061 return o; |
| 1062 } | 1062 } |
| 1063 | 1063 |
| 1064 checkUnnamed902(core.List<api.EntityUserLink> o) { | 1064 checkUnnamed253(core.List<api.EntityUserLink> o) { |
| 1065 unittest.expect(o, unittest.hasLength(2)); | 1065 unittest.expect(o, unittest.hasLength(2)); |
| 1066 checkEntityUserLink(o[0]); | 1066 checkEntityUserLink(o[0]); |
| 1067 checkEntityUserLink(o[1]); | 1067 checkEntityUserLink(o[1]); |
| 1068 } | 1068 } |
| 1069 | 1069 |
| 1070 core.int buildCounterEntityUserLinks = 0; | 1070 core.int buildCounterEntityUserLinks = 0; |
| 1071 buildEntityUserLinks() { | 1071 buildEntityUserLinks() { |
| 1072 var o = new api.EntityUserLinks(); | 1072 var o = new api.EntityUserLinks(); |
| 1073 buildCounterEntityUserLinks++; | 1073 buildCounterEntityUserLinks++; |
| 1074 if (buildCounterEntityUserLinks < 3) { | 1074 if (buildCounterEntityUserLinks < 3) { |
| 1075 o.items = buildUnnamed902(); | 1075 o.items = buildUnnamed253(); |
| 1076 o.itemsPerPage = 42; | 1076 o.itemsPerPage = 42; |
| 1077 o.kind = "foo"; | 1077 o.kind = "foo"; |
| 1078 o.nextLink = "foo"; | 1078 o.nextLink = "foo"; |
| 1079 o.previousLink = "foo"; | 1079 o.previousLink = "foo"; |
| 1080 o.startIndex = 42; | 1080 o.startIndex = 42; |
| 1081 o.totalResults = 42; | 1081 o.totalResults = 42; |
| 1082 } | 1082 } |
| 1083 buildCounterEntityUserLinks--; | 1083 buildCounterEntityUserLinks--; |
| 1084 return o; | 1084 return o; |
| 1085 } | 1085 } |
| 1086 | 1086 |
| 1087 checkEntityUserLinks(api.EntityUserLinks o) { | 1087 checkEntityUserLinks(api.EntityUserLinks o) { |
| 1088 buildCounterEntityUserLinks++; | 1088 buildCounterEntityUserLinks++; |
| 1089 if (buildCounterEntityUserLinks < 3) { | 1089 if (buildCounterEntityUserLinks < 3) { |
| 1090 checkUnnamed902(o.items); | 1090 checkUnnamed253(o.items); |
| 1091 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1091 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1092 unittest.expect(o.kind, unittest.equals('foo')); | 1092 unittest.expect(o.kind, unittest.equals('foo')); |
| 1093 unittest.expect(o.nextLink, unittest.equals('foo')); | 1093 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1094 unittest.expect(o.previousLink, unittest.equals('foo')); | 1094 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1095 unittest.expect(o.startIndex, unittest.equals(42)); | 1095 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1096 unittest.expect(o.totalResults, unittest.equals(42)); | 1096 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1097 } | 1097 } |
| 1098 buildCounterEntityUserLinks--; | 1098 buildCounterEntityUserLinks--; |
| 1099 } | 1099 } |
| 1100 | 1100 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1139 if (buildCounterExperimentVariations < 3) { | 1139 if (buildCounterExperimentVariations < 3) { |
| 1140 unittest.expect(o.name, unittest.equals('foo')); | 1140 unittest.expect(o.name, unittest.equals('foo')); |
| 1141 unittest.expect(o.status, unittest.equals('foo')); | 1141 unittest.expect(o.status, unittest.equals('foo')); |
| 1142 unittest.expect(o.url, unittest.equals('foo')); | 1142 unittest.expect(o.url, unittest.equals('foo')); |
| 1143 unittest.expect(o.weight, unittest.equals(42.0)); | 1143 unittest.expect(o.weight, unittest.equals(42.0)); |
| 1144 unittest.expect(o.won, unittest.isTrue); | 1144 unittest.expect(o.won, unittest.isTrue); |
| 1145 } | 1145 } |
| 1146 buildCounterExperimentVariations--; | 1146 buildCounterExperimentVariations--; |
| 1147 } | 1147 } |
| 1148 | 1148 |
| 1149 buildUnnamed903() { | 1149 buildUnnamed254() { |
| 1150 var o = new core.List<api.ExperimentVariations>(); | 1150 var o = new core.List<api.ExperimentVariations>(); |
| 1151 o.add(buildExperimentVariations()); | 1151 o.add(buildExperimentVariations()); |
| 1152 o.add(buildExperimentVariations()); | 1152 o.add(buildExperimentVariations()); |
| 1153 return o; | 1153 return o; |
| 1154 } | 1154 } |
| 1155 | 1155 |
| 1156 checkUnnamed903(core.List<api.ExperimentVariations> o) { | 1156 checkUnnamed254(core.List<api.ExperimentVariations> o) { |
| 1157 unittest.expect(o, unittest.hasLength(2)); | 1157 unittest.expect(o, unittest.hasLength(2)); |
| 1158 checkExperimentVariations(o[0]); | 1158 checkExperimentVariations(o[0]); |
| 1159 checkExperimentVariations(o[1]); | 1159 checkExperimentVariations(o[1]); |
| 1160 } | 1160 } |
| 1161 | 1161 |
| 1162 core.int buildCounterExperiment = 0; | 1162 core.int buildCounterExperiment = 0; |
| 1163 buildExperiment() { | 1163 buildExperiment() { |
| 1164 var o = new api.Experiment(); | 1164 var o = new api.Experiment(); |
| 1165 buildCounterExperiment++; | 1165 buildCounterExperiment++; |
| 1166 if (buildCounterExperiment < 3) { | 1166 if (buildCounterExperiment < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1181 o.profileId = "foo"; | 1181 o.profileId = "foo"; |
| 1182 o.reasonExperimentEnded = "foo"; | 1182 o.reasonExperimentEnded = "foo"; |
| 1183 o.rewriteVariationUrlsAsOriginal = true; | 1183 o.rewriteVariationUrlsAsOriginal = true; |
| 1184 o.selfLink = "foo"; | 1184 o.selfLink = "foo"; |
| 1185 o.servingFramework = "foo"; | 1185 o.servingFramework = "foo"; |
| 1186 o.snippet = "foo"; | 1186 o.snippet = "foo"; |
| 1187 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 1187 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 1188 o.status = "foo"; | 1188 o.status = "foo"; |
| 1189 o.trafficCoverage = 42.0; | 1189 o.trafficCoverage = 42.0; |
| 1190 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 1190 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 1191 o.variations = buildUnnamed903(); | 1191 o.variations = buildUnnamed254(); |
| 1192 o.webPropertyId = "foo"; | 1192 o.webPropertyId = "foo"; |
| 1193 o.winnerConfidenceLevel = 42.0; | 1193 o.winnerConfidenceLevel = 42.0; |
| 1194 o.winnerFound = true; | 1194 o.winnerFound = true; |
| 1195 } | 1195 } |
| 1196 buildCounterExperiment--; | 1196 buildCounterExperiment--; |
| 1197 return o; | 1197 return o; |
| 1198 } | 1198 } |
| 1199 | 1199 |
| 1200 checkExperiment(api.Experiment o) { | 1200 checkExperiment(api.Experiment o) { |
| 1201 buildCounterExperiment++; | 1201 buildCounterExperiment++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 1217 unittest.expect(o.profileId, unittest.equals('foo')); | 1217 unittest.expect(o.profileId, unittest.equals('foo')); |
| 1218 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); | 1218 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); |
| 1219 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); | 1219 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); |
| 1220 unittest.expect(o.selfLink, unittest.equals('foo')); | 1220 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1221 unittest.expect(o.servingFramework, unittest.equals('foo')); | 1221 unittest.expect(o.servingFramework, unittest.equals('foo')); |
| 1222 unittest.expect(o.snippet, unittest.equals('foo')); | 1222 unittest.expect(o.snippet, unittest.equals('foo')); |
| 1223 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 1223 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 1224 unittest.expect(o.status, unittest.equals('foo')); | 1224 unittest.expect(o.status, unittest.equals('foo')); |
| 1225 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); | 1225 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); |
| 1226 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 1226 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 1227 checkUnnamed903(o.variations); | 1227 checkUnnamed254(o.variations); |
| 1228 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1228 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 1229 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); | 1229 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); |
| 1230 unittest.expect(o.winnerFound, unittest.isTrue); | 1230 unittest.expect(o.winnerFound, unittest.isTrue); |
| 1231 } | 1231 } |
| 1232 buildCounterExperiment--; | 1232 buildCounterExperiment--; |
| 1233 } | 1233 } |
| 1234 | 1234 |
| 1235 buildUnnamed904() { | 1235 buildUnnamed255() { |
| 1236 var o = new core.List<api.Experiment>(); | 1236 var o = new core.List<api.Experiment>(); |
| 1237 o.add(buildExperiment()); | 1237 o.add(buildExperiment()); |
| 1238 o.add(buildExperiment()); | 1238 o.add(buildExperiment()); |
| 1239 return o; | 1239 return o; |
| 1240 } | 1240 } |
| 1241 | 1241 |
| 1242 checkUnnamed904(core.List<api.Experiment> o) { | 1242 checkUnnamed255(core.List<api.Experiment> o) { |
| 1243 unittest.expect(o, unittest.hasLength(2)); | 1243 unittest.expect(o, unittest.hasLength(2)); |
| 1244 checkExperiment(o[0]); | 1244 checkExperiment(o[0]); |
| 1245 checkExperiment(o[1]); | 1245 checkExperiment(o[1]); |
| 1246 } | 1246 } |
| 1247 | 1247 |
| 1248 core.int buildCounterExperiments = 0; | 1248 core.int buildCounterExperiments = 0; |
| 1249 buildExperiments() { | 1249 buildExperiments() { |
| 1250 var o = new api.Experiments(); | 1250 var o = new api.Experiments(); |
| 1251 buildCounterExperiments++; | 1251 buildCounterExperiments++; |
| 1252 if (buildCounterExperiments < 3) { | 1252 if (buildCounterExperiments < 3) { |
| 1253 o.items = buildUnnamed904(); | 1253 o.items = buildUnnamed255(); |
| 1254 o.itemsPerPage = 42; | 1254 o.itemsPerPage = 42; |
| 1255 o.kind = "foo"; | 1255 o.kind = "foo"; |
| 1256 o.nextLink = "foo"; | 1256 o.nextLink = "foo"; |
| 1257 o.previousLink = "foo"; | 1257 o.previousLink = "foo"; |
| 1258 o.startIndex = 42; | 1258 o.startIndex = 42; |
| 1259 o.totalResults = 42; | 1259 o.totalResults = 42; |
| 1260 o.username = "foo"; | 1260 o.username = "foo"; |
| 1261 } | 1261 } |
| 1262 buildCounterExperiments--; | 1262 buildCounterExperiments--; |
| 1263 return o; | 1263 return o; |
| 1264 } | 1264 } |
| 1265 | 1265 |
| 1266 checkExperiments(api.Experiments o) { | 1266 checkExperiments(api.Experiments o) { |
| 1267 buildCounterExperiments++; | 1267 buildCounterExperiments++; |
| 1268 if (buildCounterExperiments < 3) { | 1268 if (buildCounterExperiments < 3) { |
| 1269 checkUnnamed904(o.items); | 1269 checkUnnamed255(o.items); |
| 1270 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1270 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1271 unittest.expect(o.kind, unittest.equals('foo')); | 1271 unittest.expect(o.kind, unittest.equals('foo')); |
| 1272 unittest.expect(o.nextLink, unittest.equals('foo')); | 1272 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1273 unittest.expect(o.previousLink, unittest.equals('foo')); | 1273 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1274 unittest.expect(o.startIndex, unittest.equals(42)); | 1274 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1275 unittest.expect(o.totalResults, unittest.equals(42)); | 1275 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1276 unittest.expect(o.username, unittest.equals('foo')); | 1276 unittest.expect(o.username, unittest.equals('foo')); |
| 1277 } | 1277 } |
| 1278 buildCounterExperiments--; | 1278 buildCounterExperiments--; |
| 1279 } | 1279 } |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1507 if (buildCounterFilterRef < 3) { | 1507 if (buildCounterFilterRef < 3) { |
| 1508 unittest.expect(o.accountId, unittest.equals('foo')); | 1508 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1509 unittest.expect(o.href, unittest.equals('foo')); | 1509 unittest.expect(o.href, unittest.equals('foo')); |
| 1510 unittest.expect(o.id, unittest.equals('foo')); | 1510 unittest.expect(o.id, unittest.equals('foo')); |
| 1511 unittest.expect(o.kind, unittest.equals('foo')); | 1511 unittest.expect(o.kind, unittest.equals('foo')); |
| 1512 unittest.expect(o.name, unittest.equals('foo')); | 1512 unittest.expect(o.name, unittest.equals('foo')); |
| 1513 } | 1513 } |
| 1514 buildCounterFilterRef--; | 1514 buildCounterFilterRef--; |
| 1515 } | 1515 } |
| 1516 | 1516 |
| 1517 buildUnnamed905() { | 1517 buildUnnamed256() { |
| 1518 var o = new core.List<api.Filter>(); | 1518 var o = new core.List<api.Filter>(); |
| 1519 o.add(buildFilter()); | 1519 o.add(buildFilter()); |
| 1520 o.add(buildFilter()); | 1520 o.add(buildFilter()); |
| 1521 return o; | 1521 return o; |
| 1522 } | 1522 } |
| 1523 | 1523 |
| 1524 checkUnnamed905(core.List<api.Filter> o) { | 1524 checkUnnamed256(core.List<api.Filter> o) { |
| 1525 unittest.expect(o, unittest.hasLength(2)); | 1525 unittest.expect(o, unittest.hasLength(2)); |
| 1526 checkFilter(o[0]); | 1526 checkFilter(o[0]); |
| 1527 checkFilter(o[1]); | 1527 checkFilter(o[1]); |
| 1528 } | 1528 } |
| 1529 | 1529 |
| 1530 core.int buildCounterFilters = 0; | 1530 core.int buildCounterFilters = 0; |
| 1531 buildFilters() { | 1531 buildFilters() { |
| 1532 var o = new api.Filters(); | 1532 var o = new api.Filters(); |
| 1533 buildCounterFilters++; | 1533 buildCounterFilters++; |
| 1534 if (buildCounterFilters < 3) { | 1534 if (buildCounterFilters < 3) { |
| 1535 o.items = buildUnnamed905(); | 1535 o.items = buildUnnamed256(); |
| 1536 o.itemsPerPage = 42; | 1536 o.itemsPerPage = 42; |
| 1537 o.kind = "foo"; | 1537 o.kind = "foo"; |
| 1538 o.nextLink = "foo"; | 1538 o.nextLink = "foo"; |
| 1539 o.previousLink = "foo"; | 1539 o.previousLink = "foo"; |
| 1540 o.startIndex = 42; | 1540 o.startIndex = 42; |
| 1541 o.totalResults = 42; | 1541 o.totalResults = 42; |
| 1542 o.username = "foo"; | 1542 o.username = "foo"; |
| 1543 } | 1543 } |
| 1544 buildCounterFilters--; | 1544 buildCounterFilters--; |
| 1545 return o; | 1545 return o; |
| 1546 } | 1546 } |
| 1547 | 1547 |
| 1548 checkFilters(api.Filters o) { | 1548 checkFilters(api.Filters o) { |
| 1549 buildCounterFilters++; | 1549 buildCounterFilters++; |
| 1550 if (buildCounterFilters < 3) { | 1550 if (buildCounterFilters < 3) { |
| 1551 checkUnnamed905(o.items); | 1551 checkUnnamed256(o.items); |
| 1552 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1552 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1553 unittest.expect(o.kind, unittest.equals('foo')); | 1553 unittest.expect(o.kind, unittest.equals('foo')); |
| 1554 unittest.expect(o.nextLink, unittest.equals('foo')); | 1554 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1555 unittest.expect(o.previousLink, unittest.equals('foo')); | 1555 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1556 unittest.expect(o.startIndex, unittest.equals(42)); | 1556 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1557 unittest.expect(o.totalResults, unittest.equals(42)); | 1557 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1558 unittest.expect(o.username, unittest.equals('foo')); | 1558 unittest.expect(o.username, unittest.equals('foo')); |
| 1559 } | 1559 } |
| 1560 buildCounterFilters--; | 1560 buildCounterFilters--; |
| 1561 } | 1561 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1576 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { | 1576 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { |
| 1577 buildCounterGaDataColumnHeaders++; | 1577 buildCounterGaDataColumnHeaders++; |
| 1578 if (buildCounterGaDataColumnHeaders < 3) { | 1578 if (buildCounterGaDataColumnHeaders < 3) { |
| 1579 unittest.expect(o.columnType, unittest.equals('foo')); | 1579 unittest.expect(o.columnType, unittest.equals('foo')); |
| 1580 unittest.expect(o.dataType, unittest.equals('foo')); | 1580 unittest.expect(o.dataType, unittest.equals('foo')); |
| 1581 unittest.expect(o.name, unittest.equals('foo')); | 1581 unittest.expect(o.name, unittest.equals('foo')); |
| 1582 } | 1582 } |
| 1583 buildCounterGaDataColumnHeaders--; | 1583 buildCounterGaDataColumnHeaders--; |
| 1584 } | 1584 } |
| 1585 | 1585 |
| 1586 buildUnnamed906() { | 1586 buildUnnamed257() { |
| 1587 var o = new core.List<api.GaDataColumnHeaders>(); | 1587 var o = new core.List<api.GaDataColumnHeaders>(); |
| 1588 o.add(buildGaDataColumnHeaders()); | 1588 o.add(buildGaDataColumnHeaders()); |
| 1589 o.add(buildGaDataColumnHeaders()); | 1589 o.add(buildGaDataColumnHeaders()); |
| 1590 return o; | 1590 return o; |
| 1591 } | 1591 } |
| 1592 | 1592 |
| 1593 checkUnnamed906(core.List<api.GaDataColumnHeaders> o) { | 1593 checkUnnamed257(core.List<api.GaDataColumnHeaders> o) { |
| 1594 unittest.expect(o, unittest.hasLength(2)); | 1594 unittest.expect(o, unittest.hasLength(2)); |
| 1595 checkGaDataColumnHeaders(o[0]); | 1595 checkGaDataColumnHeaders(o[0]); |
| 1596 checkGaDataColumnHeaders(o[1]); | 1596 checkGaDataColumnHeaders(o[1]); |
| 1597 } | 1597 } |
| 1598 | 1598 |
| 1599 core.int buildCounterGaDataDataTableCols = 0; | 1599 core.int buildCounterGaDataDataTableCols = 0; |
| 1600 buildGaDataDataTableCols() { | 1600 buildGaDataDataTableCols() { |
| 1601 var o = new api.GaDataDataTableCols(); | 1601 var o = new api.GaDataDataTableCols(); |
| 1602 buildCounterGaDataDataTableCols++; | 1602 buildCounterGaDataDataTableCols++; |
| 1603 if (buildCounterGaDataDataTableCols < 3) { | 1603 if (buildCounterGaDataDataTableCols < 3) { |
| 1604 o.id = "foo"; | 1604 o.id = "foo"; |
| 1605 o.label = "foo"; | 1605 o.label = "foo"; |
| 1606 o.type = "foo"; | 1606 o.type = "foo"; |
| 1607 } | 1607 } |
| 1608 buildCounterGaDataDataTableCols--; | 1608 buildCounterGaDataDataTableCols--; |
| 1609 return o; | 1609 return o; |
| 1610 } | 1610 } |
| 1611 | 1611 |
| 1612 checkGaDataDataTableCols(api.GaDataDataTableCols o) { | 1612 checkGaDataDataTableCols(api.GaDataDataTableCols o) { |
| 1613 buildCounterGaDataDataTableCols++; | 1613 buildCounterGaDataDataTableCols++; |
| 1614 if (buildCounterGaDataDataTableCols < 3) { | 1614 if (buildCounterGaDataDataTableCols < 3) { |
| 1615 unittest.expect(o.id, unittest.equals('foo')); | 1615 unittest.expect(o.id, unittest.equals('foo')); |
| 1616 unittest.expect(o.label, unittest.equals('foo')); | 1616 unittest.expect(o.label, unittest.equals('foo')); |
| 1617 unittest.expect(o.type, unittest.equals('foo')); | 1617 unittest.expect(o.type, unittest.equals('foo')); |
| 1618 } | 1618 } |
| 1619 buildCounterGaDataDataTableCols--; | 1619 buildCounterGaDataDataTableCols--; |
| 1620 } | 1620 } |
| 1621 | 1621 |
| 1622 buildUnnamed907() { | 1622 buildUnnamed258() { |
| 1623 var o = new core.List<api.GaDataDataTableCols>(); | 1623 var o = new core.List<api.GaDataDataTableCols>(); |
| 1624 o.add(buildGaDataDataTableCols()); | 1624 o.add(buildGaDataDataTableCols()); |
| 1625 o.add(buildGaDataDataTableCols()); | 1625 o.add(buildGaDataDataTableCols()); |
| 1626 return o; | 1626 return o; |
| 1627 } | 1627 } |
| 1628 | 1628 |
| 1629 checkUnnamed907(core.List<api.GaDataDataTableCols> o) { | 1629 checkUnnamed258(core.List<api.GaDataDataTableCols> o) { |
| 1630 unittest.expect(o, unittest.hasLength(2)); | 1630 unittest.expect(o, unittest.hasLength(2)); |
| 1631 checkGaDataDataTableCols(o[0]); | 1631 checkGaDataDataTableCols(o[0]); |
| 1632 checkGaDataDataTableCols(o[1]); | 1632 checkGaDataDataTableCols(o[1]); |
| 1633 } | 1633 } |
| 1634 | 1634 |
| 1635 core.int buildCounterGaDataDataTableRowsC = 0; | 1635 core.int buildCounterGaDataDataTableRowsC = 0; |
| 1636 buildGaDataDataTableRowsC() { | 1636 buildGaDataDataTableRowsC() { |
| 1637 var o = new api.GaDataDataTableRowsC(); | 1637 var o = new api.GaDataDataTableRowsC(); |
| 1638 buildCounterGaDataDataTableRowsC++; | 1638 buildCounterGaDataDataTableRowsC++; |
| 1639 if (buildCounterGaDataDataTableRowsC < 3) { | 1639 if (buildCounterGaDataDataTableRowsC < 3) { |
| 1640 o.v = "foo"; | 1640 o.v = "foo"; |
| 1641 } | 1641 } |
| 1642 buildCounterGaDataDataTableRowsC--; | 1642 buildCounterGaDataDataTableRowsC--; |
| 1643 return o; | 1643 return o; |
| 1644 } | 1644 } |
| 1645 | 1645 |
| 1646 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { | 1646 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { |
| 1647 buildCounterGaDataDataTableRowsC++; | 1647 buildCounterGaDataDataTableRowsC++; |
| 1648 if (buildCounterGaDataDataTableRowsC < 3) { | 1648 if (buildCounterGaDataDataTableRowsC < 3) { |
| 1649 unittest.expect(o.v, unittest.equals('foo')); | 1649 unittest.expect(o.v, unittest.equals('foo')); |
| 1650 } | 1650 } |
| 1651 buildCounterGaDataDataTableRowsC--; | 1651 buildCounterGaDataDataTableRowsC--; |
| 1652 } | 1652 } |
| 1653 | 1653 |
| 1654 buildUnnamed908() { | 1654 buildUnnamed259() { |
| 1655 var o = new core.List<api.GaDataDataTableRowsC>(); | 1655 var o = new core.List<api.GaDataDataTableRowsC>(); |
| 1656 o.add(buildGaDataDataTableRowsC()); | 1656 o.add(buildGaDataDataTableRowsC()); |
| 1657 o.add(buildGaDataDataTableRowsC()); | 1657 o.add(buildGaDataDataTableRowsC()); |
| 1658 return o; | 1658 return o; |
| 1659 } | 1659 } |
| 1660 | 1660 |
| 1661 checkUnnamed908(core.List<api.GaDataDataTableRowsC> o) { | 1661 checkUnnamed259(core.List<api.GaDataDataTableRowsC> o) { |
| 1662 unittest.expect(o, unittest.hasLength(2)); | 1662 unittest.expect(o, unittest.hasLength(2)); |
| 1663 checkGaDataDataTableRowsC(o[0]); | 1663 checkGaDataDataTableRowsC(o[0]); |
| 1664 checkGaDataDataTableRowsC(o[1]); | 1664 checkGaDataDataTableRowsC(o[1]); |
| 1665 } | 1665 } |
| 1666 | 1666 |
| 1667 core.int buildCounterGaDataDataTableRows = 0; | 1667 core.int buildCounterGaDataDataTableRows = 0; |
| 1668 buildGaDataDataTableRows() { | 1668 buildGaDataDataTableRows() { |
| 1669 var o = new api.GaDataDataTableRows(); | 1669 var o = new api.GaDataDataTableRows(); |
| 1670 buildCounterGaDataDataTableRows++; | 1670 buildCounterGaDataDataTableRows++; |
| 1671 if (buildCounterGaDataDataTableRows < 3) { | 1671 if (buildCounterGaDataDataTableRows < 3) { |
| 1672 o.c = buildUnnamed908(); | 1672 o.c = buildUnnamed259(); |
| 1673 } | 1673 } |
| 1674 buildCounterGaDataDataTableRows--; | 1674 buildCounterGaDataDataTableRows--; |
| 1675 return o; | 1675 return o; |
| 1676 } | 1676 } |
| 1677 | 1677 |
| 1678 checkGaDataDataTableRows(api.GaDataDataTableRows o) { | 1678 checkGaDataDataTableRows(api.GaDataDataTableRows o) { |
| 1679 buildCounterGaDataDataTableRows++; | 1679 buildCounterGaDataDataTableRows++; |
| 1680 if (buildCounterGaDataDataTableRows < 3) { | 1680 if (buildCounterGaDataDataTableRows < 3) { |
| 1681 checkUnnamed908(o.c); | 1681 checkUnnamed259(o.c); |
| 1682 } | 1682 } |
| 1683 buildCounterGaDataDataTableRows--; | 1683 buildCounterGaDataDataTableRows--; |
| 1684 } | 1684 } |
| 1685 | 1685 |
| 1686 buildUnnamed909() { | 1686 buildUnnamed260() { |
| 1687 var o = new core.List<api.GaDataDataTableRows>(); | 1687 var o = new core.List<api.GaDataDataTableRows>(); |
| 1688 o.add(buildGaDataDataTableRows()); | 1688 o.add(buildGaDataDataTableRows()); |
| 1689 o.add(buildGaDataDataTableRows()); | 1689 o.add(buildGaDataDataTableRows()); |
| 1690 return o; | 1690 return o; |
| 1691 } | 1691 } |
| 1692 | 1692 |
| 1693 checkUnnamed909(core.List<api.GaDataDataTableRows> o) { | 1693 checkUnnamed260(core.List<api.GaDataDataTableRows> o) { |
| 1694 unittest.expect(o, unittest.hasLength(2)); | 1694 unittest.expect(o, unittest.hasLength(2)); |
| 1695 checkGaDataDataTableRows(o[0]); | 1695 checkGaDataDataTableRows(o[0]); |
| 1696 checkGaDataDataTableRows(o[1]); | 1696 checkGaDataDataTableRows(o[1]); |
| 1697 } | 1697 } |
| 1698 | 1698 |
| 1699 core.int buildCounterGaDataDataTable = 0; | 1699 core.int buildCounterGaDataDataTable = 0; |
| 1700 buildGaDataDataTable() { | 1700 buildGaDataDataTable() { |
| 1701 var o = new api.GaDataDataTable(); | 1701 var o = new api.GaDataDataTable(); |
| 1702 buildCounterGaDataDataTable++; | 1702 buildCounterGaDataDataTable++; |
| 1703 if (buildCounterGaDataDataTable < 3) { | 1703 if (buildCounterGaDataDataTable < 3) { |
| 1704 o.cols = buildUnnamed907(); | 1704 o.cols = buildUnnamed258(); |
| 1705 o.rows = buildUnnamed909(); | 1705 o.rows = buildUnnamed260(); |
| 1706 } | 1706 } |
| 1707 buildCounterGaDataDataTable--; | 1707 buildCounterGaDataDataTable--; |
| 1708 return o; | 1708 return o; |
| 1709 } | 1709 } |
| 1710 | 1710 |
| 1711 checkGaDataDataTable(api.GaDataDataTable o) { | 1711 checkGaDataDataTable(api.GaDataDataTable o) { |
| 1712 buildCounterGaDataDataTable++; | 1712 buildCounterGaDataDataTable++; |
| 1713 if (buildCounterGaDataDataTable < 3) { | 1713 if (buildCounterGaDataDataTable < 3) { |
| 1714 checkUnnamed907(o.cols); | 1714 checkUnnamed258(o.cols); |
| 1715 checkUnnamed909(o.rows); | 1715 checkUnnamed260(o.rows); |
| 1716 } | 1716 } |
| 1717 buildCounterGaDataDataTable--; | 1717 buildCounterGaDataDataTable--; |
| 1718 } | 1718 } |
| 1719 | 1719 |
| 1720 core.int buildCounterGaDataProfileInfo = 0; | 1720 core.int buildCounterGaDataProfileInfo = 0; |
| 1721 buildGaDataProfileInfo() { | 1721 buildGaDataProfileInfo() { |
| 1722 var o = new api.GaDataProfileInfo(); | 1722 var o = new api.GaDataProfileInfo(); |
| 1723 buildCounterGaDataProfileInfo++; | 1723 buildCounterGaDataProfileInfo++; |
| 1724 if (buildCounterGaDataProfileInfo < 3) { | 1724 if (buildCounterGaDataProfileInfo < 3) { |
| 1725 o.accountId = "foo"; | 1725 o.accountId = "foo"; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1739 unittest.expect(o.accountId, unittest.equals('foo')); | 1739 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1740 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 1740 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 1741 unittest.expect(o.profileId, unittest.equals('foo')); | 1741 unittest.expect(o.profileId, unittest.equals('foo')); |
| 1742 unittest.expect(o.profileName, unittest.equals('foo')); | 1742 unittest.expect(o.profileName, unittest.equals('foo')); |
| 1743 unittest.expect(o.tableId, unittest.equals('foo')); | 1743 unittest.expect(o.tableId, unittest.equals('foo')); |
| 1744 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1744 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 1745 } | 1745 } |
| 1746 buildCounterGaDataProfileInfo--; | 1746 buildCounterGaDataProfileInfo--; |
| 1747 } | 1747 } |
| 1748 | 1748 |
| 1749 buildUnnamed910() { | 1749 buildUnnamed261() { |
| 1750 var o = new core.List<core.String>(); | 1750 var o = new core.List<core.String>(); |
| 1751 o.add("foo"); | 1751 o.add("foo"); |
| 1752 o.add("foo"); | 1752 o.add("foo"); |
| 1753 return o; | 1753 return o; |
| 1754 } | 1754 } |
| 1755 | 1755 |
| 1756 checkUnnamed910(core.List<core.String> o) { | 1756 checkUnnamed261(core.List<core.String> o) { |
| 1757 unittest.expect(o, unittest.hasLength(2)); | 1757 unittest.expect(o, unittest.hasLength(2)); |
| 1758 unittest.expect(o[0], unittest.equals('foo')); | 1758 unittest.expect(o[0], unittest.equals('foo')); |
| 1759 unittest.expect(o[1], unittest.equals('foo')); | 1759 unittest.expect(o[1], unittest.equals('foo')); |
| 1760 } | 1760 } |
| 1761 | 1761 |
| 1762 buildUnnamed911() { | 1762 buildUnnamed262() { |
| 1763 var o = new core.List<core.String>(); | 1763 var o = new core.List<core.String>(); |
| 1764 o.add("foo"); | 1764 o.add("foo"); |
| 1765 o.add("foo"); | 1765 o.add("foo"); |
| 1766 return o; | 1766 return o; |
| 1767 } | 1767 } |
| 1768 | 1768 |
| 1769 checkUnnamed911(core.List<core.String> o) { | 1769 checkUnnamed262(core.List<core.String> o) { |
| 1770 unittest.expect(o, unittest.hasLength(2)); | 1770 unittest.expect(o, unittest.hasLength(2)); |
| 1771 unittest.expect(o[0], unittest.equals('foo')); | 1771 unittest.expect(o[0], unittest.equals('foo')); |
| 1772 unittest.expect(o[1], unittest.equals('foo')); | 1772 unittest.expect(o[1], unittest.equals('foo')); |
| 1773 } | 1773 } |
| 1774 | 1774 |
| 1775 core.int buildCounterGaDataQuery = 0; | 1775 core.int buildCounterGaDataQuery = 0; |
| 1776 buildGaDataQuery() { | 1776 buildGaDataQuery() { |
| 1777 var o = new api.GaDataQuery(); | 1777 var o = new api.GaDataQuery(); |
| 1778 buildCounterGaDataQuery++; | 1778 buildCounterGaDataQuery++; |
| 1779 if (buildCounterGaDataQuery < 3) { | 1779 if (buildCounterGaDataQuery < 3) { |
| 1780 o.dimensions = "foo"; | 1780 o.dimensions = "foo"; |
| 1781 o.end_date = "foo"; | 1781 o.end_date = "foo"; |
| 1782 o.filters = "foo"; | 1782 o.filters = "foo"; |
| 1783 o.ids = "foo"; | 1783 o.ids = "foo"; |
| 1784 o.max_results = 42; | 1784 o.max_results = 42; |
| 1785 o.metrics = buildUnnamed910(); | 1785 o.metrics = buildUnnamed261(); |
| 1786 o.samplingLevel = "foo"; | 1786 o.samplingLevel = "foo"; |
| 1787 o.segment = "foo"; | 1787 o.segment = "foo"; |
| 1788 o.sort = buildUnnamed911(); | 1788 o.sort = buildUnnamed262(); |
| 1789 o.start_date = "foo"; | 1789 o.start_date = "foo"; |
| 1790 o.start_index = 42; | 1790 o.start_index = 42; |
| 1791 } | 1791 } |
| 1792 buildCounterGaDataQuery--; | 1792 buildCounterGaDataQuery--; |
| 1793 return o; | 1793 return o; |
| 1794 } | 1794 } |
| 1795 | 1795 |
| 1796 checkGaDataQuery(api.GaDataQuery o) { | 1796 checkGaDataQuery(api.GaDataQuery o) { |
| 1797 buildCounterGaDataQuery++; | 1797 buildCounterGaDataQuery++; |
| 1798 if (buildCounterGaDataQuery < 3) { | 1798 if (buildCounterGaDataQuery < 3) { |
| 1799 unittest.expect(o.dimensions, unittest.equals('foo')); | 1799 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 1800 unittest.expect(o.end_date, unittest.equals('foo')); | 1800 unittest.expect(o.end_date, unittest.equals('foo')); |
| 1801 unittest.expect(o.filters, unittest.equals('foo')); | 1801 unittest.expect(o.filters, unittest.equals('foo')); |
| 1802 unittest.expect(o.ids, unittest.equals('foo')); | 1802 unittest.expect(o.ids, unittest.equals('foo')); |
| 1803 unittest.expect(o.max_results, unittest.equals(42)); | 1803 unittest.expect(o.max_results, unittest.equals(42)); |
| 1804 checkUnnamed910(o.metrics); | 1804 checkUnnamed261(o.metrics); |
| 1805 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 1805 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
| 1806 unittest.expect(o.segment, unittest.equals('foo')); | 1806 unittest.expect(o.segment, unittest.equals('foo')); |
| 1807 checkUnnamed911(o.sort); | 1807 checkUnnamed262(o.sort); |
| 1808 unittest.expect(o.start_date, unittest.equals('foo')); | 1808 unittest.expect(o.start_date, unittest.equals('foo')); |
| 1809 unittest.expect(o.start_index, unittest.equals(42)); | 1809 unittest.expect(o.start_index, unittest.equals(42)); |
| 1810 } | 1810 } |
| 1811 buildCounterGaDataQuery--; | 1811 buildCounterGaDataQuery--; |
| 1812 } | 1812 } |
| 1813 | 1813 |
| 1814 buildUnnamed912() { | 1814 buildUnnamed263() { |
| 1815 var o = new core.List<core.String>(); | 1815 var o = new core.List<core.String>(); |
| 1816 o.add("foo"); | 1816 o.add("foo"); |
| 1817 o.add("foo"); | 1817 o.add("foo"); |
| 1818 return o; | 1818 return o; |
| 1819 } | 1819 } |
| 1820 | 1820 |
| 1821 checkUnnamed912(core.List<core.String> o) { | 1821 checkUnnamed263(core.List<core.String> o) { |
| 1822 unittest.expect(o, unittest.hasLength(2)); | 1822 unittest.expect(o, unittest.hasLength(2)); |
| 1823 unittest.expect(o[0], unittest.equals('foo')); | 1823 unittest.expect(o[0], unittest.equals('foo')); |
| 1824 unittest.expect(o[1], unittest.equals('foo')); | 1824 unittest.expect(o[1], unittest.equals('foo')); |
| 1825 } | 1825 } |
| 1826 | 1826 |
| 1827 buildUnnamed913() { | 1827 buildUnnamed264() { |
| 1828 var o = new core.List<core.List<core.String>>(); | 1828 var o = new core.List<core.List<core.String>>(); |
| 1829 o.add(buildUnnamed912()); | 1829 o.add(buildUnnamed263()); |
| 1830 o.add(buildUnnamed912()); | 1830 o.add(buildUnnamed263()); |
| 1831 return o; | 1831 return o; |
| 1832 } | 1832 } |
| 1833 | 1833 |
| 1834 checkUnnamed913(core.List<core.List<core.String>> o) { | 1834 checkUnnamed264(core.List<core.List<core.String>> o) { |
| 1835 unittest.expect(o, unittest.hasLength(2)); | 1835 unittest.expect(o, unittest.hasLength(2)); |
| 1836 checkUnnamed912(o[0]); | 1836 checkUnnamed263(o[0]); |
| 1837 checkUnnamed912(o[1]); | 1837 checkUnnamed263(o[1]); |
| 1838 } | 1838 } |
| 1839 | 1839 |
| 1840 buildUnnamed914() { | 1840 buildUnnamed265() { |
| 1841 var o = new core.Map<core.String, core.String>(); | 1841 var o = new core.Map<core.String, core.String>(); |
| 1842 o["x"] = "foo"; | 1842 o["x"] = "foo"; |
| 1843 o["y"] = "foo"; | 1843 o["y"] = "foo"; |
| 1844 return o; | 1844 return o; |
| 1845 } | 1845 } |
| 1846 | 1846 |
| 1847 checkUnnamed914(core.Map<core.String, core.String> o) { | 1847 checkUnnamed265(core.Map<core.String, core.String> o) { |
| 1848 unittest.expect(o, unittest.hasLength(2)); | 1848 unittest.expect(o, unittest.hasLength(2)); |
| 1849 unittest.expect(o["x"], unittest.equals('foo')); | 1849 unittest.expect(o["x"], unittest.equals('foo')); |
| 1850 unittest.expect(o["y"], unittest.equals('foo')); | 1850 unittest.expect(o["y"], unittest.equals('foo')); |
| 1851 } | 1851 } |
| 1852 | 1852 |
| 1853 core.int buildCounterGaData = 0; | 1853 core.int buildCounterGaData = 0; |
| 1854 buildGaData() { | 1854 buildGaData() { |
| 1855 var o = new api.GaData(); | 1855 var o = new api.GaData(); |
| 1856 buildCounterGaData++; | 1856 buildCounterGaData++; |
| 1857 if (buildCounterGaData < 3) { | 1857 if (buildCounterGaData < 3) { |
| 1858 o.columnHeaders = buildUnnamed906(); | 1858 o.columnHeaders = buildUnnamed257(); |
| 1859 o.containsSampledData = true; | 1859 o.containsSampledData = true; |
| 1860 o.dataTable = buildGaDataDataTable(); | 1860 o.dataTable = buildGaDataDataTable(); |
| 1861 o.id = "foo"; | 1861 o.id = "foo"; |
| 1862 o.itemsPerPage = 42; | 1862 o.itemsPerPage = 42; |
| 1863 o.kind = "foo"; | 1863 o.kind = "foo"; |
| 1864 o.nextLink = "foo"; | 1864 o.nextLink = "foo"; |
| 1865 o.previousLink = "foo"; | 1865 o.previousLink = "foo"; |
| 1866 o.profileInfo = buildGaDataProfileInfo(); | 1866 o.profileInfo = buildGaDataProfileInfo(); |
| 1867 o.query = buildGaDataQuery(); | 1867 o.query = buildGaDataQuery(); |
| 1868 o.rows = buildUnnamed913(); | 1868 o.rows = buildUnnamed264(); |
| 1869 o.sampleSize = "foo"; | 1869 o.sampleSize = "foo"; |
| 1870 o.sampleSpace = "foo"; | 1870 o.sampleSpace = "foo"; |
| 1871 o.selfLink = "foo"; | 1871 o.selfLink = "foo"; |
| 1872 o.totalResults = 42; | 1872 o.totalResults = 42; |
| 1873 o.totalsForAllResults = buildUnnamed914(); | 1873 o.totalsForAllResults = buildUnnamed265(); |
| 1874 } | 1874 } |
| 1875 buildCounterGaData--; | 1875 buildCounterGaData--; |
| 1876 return o; | 1876 return o; |
| 1877 } | 1877 } |
| 1878 | 1878 |
| 1879 checkGaData(api.GaData o) { | 1879 checkGaData(api.GaData o) { |
| 1880 buildCounterGaData++; | 1880 buildCounterGaData++; |
| 1881 if (buildCounterGaData < 3) { | 1881 if (buildCounterGaData < 3) { |
| 1882 checkUnnamed906(o.columnHeaders); | 1882 checkUnnamed257(o.columnHeaders); |
| 1883 unittest.expect(o.containsSampledData, unittest.isTrue); | 1883 unittest.expect(o.containsSampledData, unittest.isTrue); |
| 1884 checkGaDataDataTable(o.dataTable); | 1884 checkGaDataDataTable(o.dataTable); |
| 1885 unittest.expect(o.id, unittest.equals('foo')); | 1885 unittest.expect(o.id, unittest.equals('foo')); |
| 1886 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1886 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1887 unittest.expect(o.kind, unittest.equals('foo')); | 1887 unittest.expect(o.kind, unittest.equals('foo')); |
| 1888 unittest.expect(o.nextLink, unittest.equals('foo')); | 1888 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1889 unittest.expect(o.previousLink, unittest.equals('foo')); | 1889 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1890 checkGaDataProfileInfo(o.profileInfo); | 1890 checkGaDataProfileInfo(o.profileInfo); |
| 1891 checkGaDataQuery(o.query); | 1891 checkGaDataQuery(o.query); |
| 1892 checkUnnamed913(o.rows); | 1892 checkUnnamed264(o.rows); |
| 1893 unittest.expect(o.sampleSize, unittest.equals('foo')); | 1893 unittest.expect(o.sampleSize, unittest.equals('foo')); |
| 1894 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 1894 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
| 1895 unittest.expect(o.selfLink, unittest.equals('foo')); | 1895 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1896 unittest.expect(o.totalResults, unittest.equals(42)); | 1896 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1897 checkUnnamed914(o.totalsForAllResults); | 1897 checkUnnamed265(o.totalsForAllResults); |
| 1898 } | 1898 } |
| 1899 buildCounterGaData--; | 1899 buildCounterGaData--; |
| 1900 } | 1900 } |
| 1901 | 1901 |
| 1902 core.int buildCounterGoalEventDetailsEventConditions = 0; | 1902 core.int buildCounterGoalEventDetailsEventConditions = 0; |
| 1903 buildGoalEventDetailsEventConditions() { | 1903 buildGoalEventDetailsEventConditions() { |
| 1904 var o = new api.GoalEventDetailsEventConditions(); | 1904 var o = new api.GoalEventDetailsEventConditions(); |
| 1905 buildCounterGoalEventDetailsEventConditions++; | 1905 buildCounterGoalEventDetailsEventConditions++; |
| 1906 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1906 if (buildCounterGoalEventDetailsEventConditions < 3) { |
| 1907 o.comparisonType = "foo"; | 1907 o.comparisonType = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 1919 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1919 if (buildCounterGoalEventDetailsEventConditions < 3) { |
| 1920 unittest.expect(o.comparisonType, unittest.equals('foo')); | 1920 unittest.expect(o.comparisonType, unittest.equals('foo')); |
| 1921 unittest.expect(o.comparisonValue, unittest.equals('foo')); | 1921 unittest.expect(o.comparisonValue, unittest.equals('foo')); |
| 1922 unittest.expect(o.expression, unittest.equals('foo')); | 1922 unittest.expect(o.expression, unittest.equals('foo')); |
| 1923 unittest.expect(o.matchType, unittest.equals('foo')); | 1923 unittest.expect(o.matchType, unittest.equals('foo')); |
| 1924 unittest.expect(o.type, unittest.equals('foo')); | 1924 unittest.expect(o.type, unittest.equals('foo')); |
| 1925 } | 1925 } |
| 1926 buildCounterGoalEventDetailsEventConditions--; | 1926 buildCounterGoalEventDetailsEventConditions--; |
| 1927 } | 1927 } |
| 1928 | 1928 |
| 1929 buildUnnamed915() { | 1929 buildUnnamed266() { |
| 1930 var o = new core.List<api.GoalEventDetailsEventConditions>(); | 1930 var o = new core.List<api.GoalEventDetailsEventConditions>(); |
| 1931 o.add(buildGoalEventDetailsEventConditions()); | 1931 o.add(buildGoalEventDetailsEventConditions()); |
| 1932 o.add(buildGoalEventDetailsEventConditions()); | 1932 o.add(buildGoalEventDetailsEventConditions()); |
| 1933 return o; | 1933 return o; |
| 1934 } | 1934 } |
| 1935 | 1935 |
| 1936 checkUnnamed915(core.List<api.GoalEventDetailsEventConditions> o) { | 1936 checkUnnamed266(core.List<api.GoalEventDetailsEventConditions> o) { |
| 1937 unittest.expect(o, unittest.hasLength(2)); | 1937 unittest.expect(o, unittest.hasLength(2)); |
| 1938 checkGoalEventDetailsEventConditions(o[0]); | 1938 checkGoalEventDetailsEventConditions(o[0]); |
| 1939 checkGoalEventDetailsEventConditions(o[1]); | 1939 checkGoalEventDetailsEventConditions(o[1]); |
| 1940 } | 1940 } |
| 1941 | 1941 |
| 1942 core.int buildCounterGoalEventDetails = 0; | 1942 core.int buildCounterGoalEventDetails = 0; |
| 1943 buildGoalEventDetails() { | 1943 buildGoalEventDetails() { |
| 1944 var o = new api.GoalEventDetails(); | 1944 var o = new api.GoalEventDetails(); |
| 1945 buildCounterGoalEventDetails++; | 1945 buildCounterGoalEventDetails++; |
| 1946 if (buildCounterGoalEventDetails < 3) { | 1946 if (buildCounterGoalEventDetails < 3) { |
| 1947 o.eventConditions = buildUnnamed915(); | 1947 o.eventConditions = buildUnnamed266(); |
| 1948 o.useEventValue = true; | 1948 o.useEventValue = true; |
| 1949 } | 1949 } |
| 1950 buildCounterGoalEventDetails--; | 1950 buildCounterGoalEventDetails--; |
| 1951 return o; | 1951 return o; |
| 1952 } | 1952 } |
| 1953 | 1953 |
| 1954 checkGoalEventDetails(api.GoalEventDetails o) { | 1954 checkGoalEventDetails(api.GoalEventDetails o) { |
| 1955 buildCounterGoalEventDetails++; | 1955 buildCounterGoalEventDetails++; |
| 1956 if (buildCounterGoalEventDetails < 3) { | 1956 if (buildCounterGoalEventDetails < 3) { |
| 1957 checkUnnamed915(o.eventConditions); | 1957 checkUnnamed266(o.eventConditions); |
| 1958 unittest.expect(o.useEventValue, unittest.isTrue); | 1958 unittest.expect(o.useEventValue, unittest.isTrue); |
| 1959 } | 1959 } |
| 1960 buildCounterGoalEventDetails--; | 1960 buildCounterGoalEventDetails--; |
| 1961 } | 1961 } |
| 1962 | 1962 |
| 1963 core.int buildCounterGoalParentLink = 0; | 1963 core.int buildCounterGoalParentLink = 0; |
| 1964 buildGoalParentLink() { | 1964 buildGoalParentLink() { |
| 1965 var o = new api.GoalParentLink(); | 1965 var o = new api.GoalParentLink(); |
| 1966 buildCounterGoalParentLink++; | 1966 buildCounterGoalParentLink++; |
| 1967 if (buildCounterGoalParentLink < 3) { | 1967 if (buildCounterGoalParentLink < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1997 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { | 1997 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { |
| 1998 buildCounterGoalUrlDestinationDetailsSteps++; | 1998 buildCounterGoalUrlDestinationDetailsSteps++; |
| 1999 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { | 1999 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { |
| 2000 unittest.expect(o.name, unittest.equals('foo')); | 2000 unittest.expect(o.name, unittest.equals('foo')); |
| 2001 unittest.expect(o.number, unittest.equals(42)); | 2001 unittest.expect(o.number, unittest.equals(42)); |
| 2002 unittest.expect(o.url, unittest.equals('foo')); | 2002 unittest.expect(o.url, unittest.equals('foo')); |
| 2003 } | 2003 } |
| 2004 buildCounterGoalUrlDestinationDetailsSteps--; | 2004 buildCounterGoalUrlDestinationDetailsSteps--; |
| 2005 } | 2005 } |
| 2006 | 2006 |
| 2007 buildUnnamed916() { | 2007 buildUnnamed267() { |
| 2008 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); | 2008 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); |
| 2009 o.add(buildGoalUrlDestinationDetailsSteps()); | 2009 o.add(buildGoalUrlDestinationDetailsSteps()); |
| 2010 o.add(buildGoalUrlDestinationDetailsSteps()); | 2010 o.add(buildGoalUrlDestinationDetailsSteps()); |
| 2011 return o; | 2011 return o; |
| 2012 } | 2012 } |
| 2013 | 2013 |
| 2014 checkUnnamed916(core.List<api.GoalUrlDestinationDetailsSteps> o) { | 2014 checkUnnamed267(core.List<api.GoalUrlDestinationDetailsSteps> o) { |
| 2015 unittest.expect(o, unittest.hasLength(2)); | 2015 unittest.expect(o, unittest.hasLength(2)); |
| 2016 checkGoalUrlDestinationDetailsSteps(o[0]); | 2016 checkGoalUrlDestinationDetailsSteps(o[0]); |
| 2017 checkGoalUrlDestinationDetailsSteps(o[1]); | 2017 checkGoalUrlDestinationDetailsSteps(o[1]); |
| 2018 } | 2018 } |
| 2019 | 2019 |
| 2020 core.int buildCounterGoalUrlDestinationDetails = 0; | 2020 core.int buildCounterGoalUrlDestinationDetails = 0; |
| 2021 buildGoalUrlDestinationDetails() { | 2021 buildGoalUrlDestinationDetails() { |
| 2022 var o = new api.GoalUrlDestinationDetails(); | 2022 var o = new api.GoalUrlDestinationDetails(); |
| 2023 buildCounterGoalUrlDestinationDetails++; | 2023 buildCounterGoalUrlDestinationDetails++; |
| 2024 if (buildCounterGoalUrlDestinationDetails < 3) { | 2024 if (buildCounterGoalUrlDestinationDetails < 3) { |
| 2025 o.caseSensitive = true; | 2025 o.caseSensitive = true; |
| 2026 o.firstStepRequired = true; | 2026 o.firstStepRequired = true; |
| 2027 o.matchType = "foo"; | 2027 o.matchType = "foo"; |
| 2028 o.steps = buildUnnamed916(); | 2028 o.steps = buildUnnamed267(); |
| 2029 o.url = "foo"; | 2029 o.url = "foo"; |
| 2030 } | 2030 } |
| 2031 buildCounterGoalUrlDestinationDetails--; | 2031 buildCounterGoalUrlDestinationDetails--; |
| 2032 return o; | 2032 return o; |
| 2033 } | 2033 } |
| 2034 | 2034 |
| 2035 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { | 2035 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { |
| 2036 buildCounterGoalUrlDestinationDetails++; | 2036 buildCounterGoalUrlDestinationDetails++; |
| 2037 if (buildCounterGoalUrlDestinationDetails < 3) { | 2037 if (buildCounterGoalUrlDestinationDetails < 3) { |
| 2038 unittest.expect(o.caseSensitive, unittest.isTrue); | 2038 unittest.expect(o.caseSensitive, unittest.isTrue); |
| 2039 unittest.expect(o.firstStepRequired, unittest.isTrue); | 2039 unittest.expect(o.firstStepRequired, unittest.isTrue); |
| 2040 unittest.expect(o.matchType, unittest.equals('foo')); | 2040 unittest.expect(o.matchType, unittest.equals('foo')); |
| 2041 checkUnnamed916(o.steps); | 2041 checkUnnamed267(o.steps); |
| 2042 unittest.expect(o.url, unittest.equals('foo')); | 2042 unittest.expect(o.url, unittest.equals('foo')); |
| 2043 } | 2043 } |
| 2044 buildCounterGoalUrlDestinationDetails--; | 2044 buildCounterGoalUrlDestinationDetails--; |
| 2045 } | 2045 } |
| 2046 | 2046 |
| 2047 core.int buildCounterGoalVisitNumPagesDetails = 0; | 2047 core.int buildCounterGoalVisitNumPagesDetails = 0; |
| 2048 buildGoalVisitNumPagesDetails() { | 2048 buildGoalVisitNumPagesDetails() { |
| 2049 var o = new api.GoalVisitNumPagesDetails(); | 2049 var o = new api.GoalVisitNumPagesDetails(); |
| 2050 buildCounterGoalVisitNumPagesDetails++; | 2050 buildCounterGoalVisitNumPagesDetails++; |
| 2051 if (buildCounterGoalVisitNumPagesDetails < 3) { | 2051 if (buildCounterGoalVisitNumPagesDetails < 3) { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2132 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2132 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2133 checkGoalUrlDestinationDetails(o.urlDestinationDetails); | 2133 checkGoalUrlDestinationDetails(o.urlDestinationDetails); |
| 2134 unittest.expect(o.value, unittest.equals(42.0)); | 2134 unittest.expect(o.value, unittest.equals(42.0)); |
| 2135 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); | 2135 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); |
| 2136 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); | 2136 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); |
| 2137 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2137 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2138 } | 2138 } |
| 2139 buildCounterGoal--; | 2139 buildCounterGoal--; |
| 2140 } | 2140 } |
| 2141 | 2141 |
| 2142 buildUnnamed917() { | 2142 buildUnnamed268() { |
| 2143 var o = new core.List<api.Goal>(); | 2143 var o = new core.List<api.Goal>(); |
| 2144 o.add(buildGoal()); | 2144 o.add(buildGoal()); |
| 2145 o.add(buildGoal()); | 2145 o.add(buildGoal()); |
| 2146 return o; | 2146 return o; |
| 2147 } | 2147 } |
| 2148 | 2148 |
| 2149 checkUnnamed917(core.List<api.Goal> o) { | 2149 checkUnnamed268(core.List<api.Goal> o) { |
| 2150 unittest.expect(o, unittest.hasLength(2)); | 2150 unittest.expect(o, unittest.hasLength(2)); |
| 2151 checkGoal(o[0]); | 2151 checkGoal(o[0]); |
| 2152 checkGoal(o[1]); | 2152 checkGoal(o[1]); |
| 2153 } | 2153 } |
| 2154 | 2154 |
| 2155 core.int buildCounterGoals = 0; | 2155 core.int buildCounterGoals = 0; |
| 2156 buildGoals() { | 2156 buildGoals() { |
| 2157 var o = new api.Goals(); | 2157 var o = new api.Goals(); |
| 2158 buildCounterGoals++; | 2158 buildCounterGoals++; |
| 2159 if (buildCounterGoals < 3) { | 2159 if (buildCounterGoals < 3) { |
| 2160 o.items = buildUnnamed917(); | 2160 o.items = buildUnnamed268(); |
| 2161 o.itemsPerPage = 42; | 2161 o.itemsPerPage = 42; |
| 2162 o.kind = "foo"; | 2162 o.kind = "foo"; |
| 2163 o.nextLink = "foo"; | 2163 o.nextLink = "foo"; |
| 2164 o.previousLink = "foo"; | 2164 o.previousLink = "foo"; |
| 2165 o.startIndex = 42; | 2165 o.startIndex = 42; |
| 2166 o.totalResults = 42; | 2166 o.totalResults = 42; |
| 2167 o.username = "foo"; | 2167 o.username = "foo"; |
| 2168 } | 2168 } |
| 2169 buildCounterGoals--; | 2169 buildCounterGoals--; |
| 2170 return o; | 2170 return o; |
| 2171 } | 2171 } |
| 2172 | 2172 |
| 2173 checkGoals(api.Goals o) { | 2173 checkGoals(api.Goals o) { |
| 2174 buildCounterGoals++; | 2174 buildCounterGoals++; |
| 2175 if (buildCounterGoals < 3) { | 2175 if (buildCounterGoals < 3) { |
| 2176 checkUnnamed917(o.items); | 2176 checkUnnamed268(o.items); |
| 2177 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2177 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2178 unittest.expect(o.kind, unittest.equals('foo')); | 2178 unittest.expect(o.kind, unittest.equals('foo')); |
| 2179 unittest.expect(o.nextLink, unittest.equals('foo')); | 2179 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2180 unittest.expect(o.previousLink, unittest.equals('foo')); | 2180 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2181 unittest.expect(o.startIndex, unittest.equals(42)); | 2181 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2182 unittest.expect(o.totalResults, unittest.equals(42)); | 2182 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2183 unittest.expect(o.username, unittest.equals('foo')); | 2183 unittest.expect(o.username, unittest.equals('foo')); |
| 2184 } | 2184 } |
| 2185 buildCounterGoals--; | 2185 buildCounterGoals--; |
| 2186 } | 2186 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2201 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { | 2201 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { |
| 2202 buildCounterMcfDataColumnHeaders++; | 2202 buildCounterMcfDataColumnHeaders++; |
| 2203 if (buildCounterMcfDataColumnHeaders < 3) { | 2203 if (buildCounterMcfDataColumnHeaders < 3) { |
| 2204 unittest.expect(o.columnType, unittest.equals('foo')); | 2204 unittest.expect(o.columnType, unittest.equals('foo')); |
| 2205 unittest.expect(o.dataType, unittest.equals('foo')); | 2205 unittest.expect(o.dataType, unittest.equals('foo')); |
| 2206 unittest.expect(o.name, unittest.equals('foo')); | 2206 unittest.expect(o.name, unittest.equals('foo')); |
| 2207 } | 2207 } |
| 2208 buildCounterMcfDataColumnHeaders--; | 2208 buildCounterMcfDataColumnHeaders--; |
| 2209 } | 2209 } |
| 2210 | 2210 |
| 2211 buildUnnamed918() { | 2211 buildUnnamed269() { |
| 2212 var o = new core.List<api.McfDataColumnHeaders>(); | 2212 var o = new core.List<api.McfDataColumnHeaders>(); |
| 2213 o.add(buildMcfDataColumnHeaders()); | 2213 o.add(buildMcfDataColumnHeaders()); |
| 2214 o.add(buildMcfDataColumnHeaders()); | 2214 o.add(buildMcfDataColumnHeaders()); |
| 2215 return o; | 2215 return o; |
| 2216 } | 2216 } |
| 2217 | 2217 |
| 2218 checkUnnamed918(core.List<api.McfDataColumnHeaders> o) { | 2218 checkUnnamed269(core.List<api.McfDataColumnHeaders> o) { |
| 2219 unittest.expect(o, unittest.hasLength(2)); | 2219 unittest.expect(o, unittest.hasLength(2)); |
| 2220 checkMcfDataColumnHeaders(o[0]); | 2220 checkMcfDataColumnHeaders(o[0]); |
| 2221 checkMcfDataColumnHeaders(o[1]); | 2221 checkMcfDataColumnHeaders(o[1]); |
| 2222 } | 2222 } |
| 2223 | 2223 |
| 2224 core.int buildCounterMcfDataProfileInfo = 0; | 2224 core.int buildCounterMcfDataProfileInfo = 0; |
| 2225 buildMcfDataProfileInfo() { | 2225 buildMcfDataProfileInfo() { |
| 2226 var o = new api.McfDataProfileInfo(); | 2226 var o = new api.McfDataProfileInfo(); |
| 2227 buildCounterMcfDataProfileInfo++; | 2227 buildCounterMcfDataProfileInfo++; |
| 2228 if (buildCounterMcfDataProfileInfo < 3) { | 2228 if (buildCounterMcfDataProfileInfo < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2243 unittest.expect(o.accountId, unittest.equals('foo')); | 2243 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2244 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2244 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 2245 unittest.expect(o.profileId, unittest.equals('foo')); | 2245 unittest.expect(o.profileId, unittest.equals('foo')); |
| 2246 unittest.expect(o.profileName, unittest.equals('foo')); | 2246 unittest.expect(o.profileName, unittest.equals('foo')); |
| 2247 unittest.expect(o.tableId, unittest.equals('foo')); | 2247 unittest.expect(o.tableId, unittest.equals('foo')); |
| 2248 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2248 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2249 } | 2249 } |
| 2250 buildCounterMcfDataProfileInfo--; | 2250 buildCounterMcfDataProfileInfo--; |
| 2251 } | 2251 } |
| 2252 | 2252 |
| 2253 buildUnnamed919() { | 2253 buildUnnamed270() { |
| 2254 var o = new core.List<core.String>(); | 2254 var o = new core.List<core.String>(); |
| 2255 o.add("foo"); | 2255 o.add("foo"); |
| 2256 o.add("foo"); | 2256 o.add("foo"); |
| 2257 return o; | 2257 return o; |
| 2258 } | 2258 } |
| 2259 | 2259 |
| 2260 checkUnnamed919(core.List<core.String> o) { | 2260 checkUnnamed270(core.List<core.String> o) { |
| 2261 unittest.expect(o, unittest.hasLength(2)); | 2261 unittest.expect(o, unittest.hasLength(2)); |
| 2262 unittest.expect(o[0], unittest.equals('foo')); | 2262 unittest.expect(o[0], unittest.equals('foo')); |
| 2263 unittest.expect(o[1], unittest.equals('foo')); | 2263 unittest.expect(o[1], unittest.equals('foo')); |
| 2264 } | 2264 } |
| 2265 | 2265 |
| 2266 buildUnnamed920() { | 2266 buildUnnamed271() { |
| 2267 var o = new core.List<core.String>(); | 2267 var o = new core.List<core.String>(); |
| 2268 o.add("foo"); | 2268 o.add("foo"); |
| 2269 o.add("foo"); | 2269 o.add("foo"); |
| 2270 return o; | 2270 return o; |
| 2271 } | 2271 } |
| 2272 | 2272 |
| 2273 checkUnnamed920(core.List<core.String> o) { | 2273 checkUnnamed271(core.List<core.String> o) { |
| 2274 unittest.expect(o, unittest.hasLength(2)); | 2274 unittest.expect(o, unittest.hasLength(2)); |
| 2275 unittest.expect(o[0], unittest.equals('foo')); | 2275 unittest.expect(o[0], unittest.equals('foo')); |
| 2276 unittest.expect(o[1], unittest.equals('foo')); | 2276 unittest.expect(o[1], unittest.equals('foo')); |
| 2277 } | 2277 } |
| 2278 | 2278 |
| 2279 core.int buildCounterMcfDataQuery = 0; | 2279 core.int buildCounterMcfDataQuery = 0; |
| 2280 buildMcfDataQuery() { | 2280 buildMcfDataQuery() { |
| 2281 var o = new api.McfDataQuery(); | 2281 var o = new api.McfDataQuery(); |
| 2282 buildCounterMcfDataQuery++; | 2282 buildCounterMcfDataQuery++; |
| 2283 if (buildCounterMcfDataQuery < 3) { | 2283 if (buildCounterMcfDataQuery < 3) { |
| 2284 o.dimensions = "foo"; | 2284 o.dimensions = "foo"; |
| 2285 o.end_date = "foo"; | 2285 o.end_date = "foo"; |
| 2286 o.filters = "foo"; | 2286 o.filters = "foo"; |
| 2287 o.ids = "foo"; | 2287 o.ids = "foo"; |
| 2288 o.max_results = 42; | 2288 o.max_results = 42; |
| 2289 o.metrics = buildUnnamed919(); | 2289 o.metrics = buildUnnamed270(); |
| 2290 o.samplingLevel = "foo"; | 2290 o.samplingLevel = "foo"; |
| 2291 o.segment = "foo"; | 2291 o.segment = "foo"; |
| 2292 o.sort = buildUnnamed920(); | 2292 o.sort = buildUnnamed271(); |
| 2293 o.start_date = "foo"; | 2293 o.start_date = "foo"; |
| 2294 o.start_index = 42; | 2294 o.start_index = 42; |
| 2295 } | 2295 } |
| 2296 buildCounterMcfDataQuery--; | 2296 buildCounterMcfDataQuery--; |
| 2297 return o; | 2297 return o; |
| 2298 } | 2298 } |
| 2299 | 2299 |
| 2300 checkMcfDataQuery(api.McfDataQuery o) { | 2300 checkMcfDataQuery(api.McfDataQuery o) { |
| 2301 buildCounterMcfDataQuery++; | 2301 buildCounterMcfDataQuery++; |
| 2302 if (buildCounterMcfDataQuery < 3) { | 2302 if (buildCounterMcfDataQuery < 3) { |
| 2303 unittest.expect(o.dimensions, unittest.equals('foo')); | 2303 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 2304 unittest.expect(o.end_date, unittest.equals('foo')); | 2304 unittest.expect(o.end_date, unittest.equals('foo')); |
| 2305 unittest.expect(o.filters, unittest.equals('foo')); | 2305 unittest.expect(o.filters, unittest.equals('foo')); |
| 2306 unittest.expect(o.ids, unittest.equals('foo')); | 2306 unittest.expect(o.ids, unittest.equals('foo')); |
| 2307 unittest.expect(o.max_results, unittest.equals(42)); | 2307 unittest.expect(o.max_results, unittest.equals(42)); |
| 2308 checkUnnamed919(o.metrics); | 2308 checkUnnamed270(o.metrics); |
| 2309 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 2309 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
| 2310 unittest.expect(o.segment, unittest.equals('foo')); | 2310 unittest.expect(o.segment, unittest.equals('foo')); |
| 2311 checkUnnamed920(o.sort); | 2311 checkUnnamed271(o.sort); |
| 2312 unittest.expect(o.start_date, unittest.equals('foo')); | 2312 unittest.expect(o.start_date, unittest.equals('foo')); |
| 2313 unittest.expect(o.start_index, unittest.equals(42)); | 2313 unittest.expect(o.start_index, unittest.equals(42)); |
| 2314 } | 2314 } |
| 2315 buildCounterMcfDataQuery--; | 2315 buildCounterMcfDataQuery--; |
| 2316 } | 2316 } |
| 2317 | 2317 |
| 2318 core.int buildCounterMcfDataRowsConversionPathValue = 0; | 2318 core.int buildCounterMcfDataRowsConversionPathValue = 0; |
| 2319 buildMcfDataRowsConversionPathValue() { | 2319 buildMcfDataRowsConversionPathValue() { |
| 2320 var o = new api.McfDataRowsConversionPathValue(); | 2320 var o = new api.McfDataRowsConversionPathValue(); |
| 2321 buildCounterMcfDataRowsConversionPathValue++; | 2321 buildCounterMcfDataRowsConversionPathValue++; |
| 2322 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2322 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
| 2323 o.interactionType = "foo"; | 2323 o.interactionType = "foo"; |
| 2324 o.nodeValue = "foo"; | 2324 o.nodeValue = "foo"; |
| 2325 } | 2325 } |
| 2326 buildCounterMcfDataRowsConversionPathValue--; | 2326 buildCounterMcfDataRowsConversionPathValue--; |
| 2327 return o; | 2327 return o; |
| 2328 } | 2328 } |
| 2329 | 2329 |
| 2330 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { | 2330 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { |
| 2331 buildCounterMcfDataRowsConversionPathValue++; | 2331 buildCounterMcfDataRowsConversionPathValue++; |
| 2332 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2332 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
| 2333 unittest.expect(o.interactionType, unittest.equals('foo')); | 2333 unittest.expect(o.interactionType, unittest.equals('foo')); |
| 2334 unittest.expect(o.nodeValue, unittest.equals('foo')); | 2334 unittest.expect(o.nodeValue, unittest.equals('foo')); |
| 2335 } | 2335 } |
| 2336 buildCounterMcfDataRowsConversionPathValue--; | 2336 buildCounterMcfDataRowsConversionPathValue--; |
| 2337 } | 2337 } |
| 2338 | 2338 |
| 2339 buildUnnamed921() { | 2339 buildUnnamed272() { |
| 2340 var o = new core.List<api.McfDataRowsConversionPathValue>(); | 2340 var o = new core.List<api.McfDataRowsConversionPathValue>(); |
| 2341 o.add(buildMcfDataRowsConversionPathValue()); | 2341 o.add(buildMcfDataRowsConversionPathValue()); |
| 2342 o.add(buildMcfDataRowsConversionPathValue()); | 2342 o.add(buildMcfDataRowsConversionPathValue()); |
| 2343 return o; | 2343 return o; |
| 2344 } | 2344 } |
| 2345 | 2345 |
| 2346 checkUnnamed921(core.List<api.McfDataRowsConversionPathValue> o) { | 2346 checkUnnamed272(core.List<api.McfDataRowsConversionPathValue> o) { |
| 2347 unittest.expect(o, unittest.hasLength(2)); | 2347 unittest.expect(o, unittest.hasLength(2)); |
| 2348 checkMcfDataRowsConversionPathValue(o[0]); | 2348 checkMcfDataRowsConversionPathValue(o[0]); |
| 2349 checkMcfDataRowsConversionPathValue(o[1]); | 2349 checkMcfDataRowsConversionPathValue(o[1]); |
| 2350 } | 2350 } |
| 2351 | 2351 |
| 2352 core.int buildCounterMcfDataRows = 0; | 2352 core.int buildCounterMcfDataRows = 0; |
| 2353 buildMcfDataRows() { | 2353 buildMcfDataRows() { |
| 2354 var o = new api.McfDataRows(); | 2354 var o = new api.McfDataRows(); |
| 2355 buildCounterMcfDataRows++; | 2355 buildCounterMcfDataRows++; |
| 2356 if (buildCounterMcfDataRows < 3) { | 2356 if (buildCounterMcfDataRows < 3) { |
| 2357 o.conversionPathValue = buildUnnamed921(); | 2357 o.conversionPathValue = buildUnnamed272(); |
| 2358 o.primitiveValue = "foo"; | 2358 o.primitiveValue = "foo"; |
| 2359 } | 2359 } |
| 2360 buildCounterMcfDataRows--; | 2360 buildCounterMcfDataRows--; |
| 2361 return o; | 2361 return o; |
| 2362 } | 2362 } |
| 2363 | 2363 |
| 2364 checkMcfDataRows(api.McfDataRows o) { | 2364 checkMcfDataRows(api.McfDataRows o) { |
| 2365 buildCounterMcfDataRows++; | 2365 buildCounterMcfDataRows++; |
| 2366 if (buildCounterMcfDataRows < 3) { | 2366 if (buildCounterMcfDataRows < 3) { |
| 2367 checkUnnamed921(o.conversionPathValue); | 2367 checkUnnamed272(o.conversionPathValue); |
| 2368 unittest.expect(o.primitiveValue, unittest.equals('foo')); | 2368 unittest.expect(o.primitiveValue, unittest.equals('foo')); |
| 2369 } | 2369 } |
| 2370 buildCounterMcfDataRows--; | 2370 buildCounterMcfDataRows--; |
| 2371 } | 2371 } |
| 2372 | 2372 |
| 2373 buildUnnamed922() { | 2373 buildUnnamed273() { |
| 2374 var o = new core.List<api.McfDataRows>(); | 2374 var o = new core.List<api.McfDataRows>(); |
| 2375 o.add(buildMcfDataRows()); | 2375 o.add(buildMcfDataRows()); |
| 2376 o.add(buildMcfDataRows()); | 2376 o.add(buildMcfDataRows()); |
| 2377 return o; | 2377 return o; |
| 2378 } | 2378 } |
| 2379 | 2379 |
| 2380 checkUnnamed922(core.List<api.McfDataRows> o) { | 2380 checkUnnamed273(core.List<api.McfDataRows> o) { |
| 2381 unittest.expect(o, unittest.hasLength(2)); | 2381 unittest.expect(o, unittest.hasLength(2)); |
| 2382 checkMcfDataRows(o[0]); | 2382 checkMcfDataRows(o[0]); |
| 2383 checkMcfDataRows(o[1]); | 2383 checkMcfDataRows(o[1]); |
| 2384 } | 2384 } |
| 2385 | 2385 |
| 2386 buildUnnamed923() { | 2386 buildUnnamed274() { |
| 2387 var o = new core.List<core.List<api.McfDataRows>>(); | 2387 var o = new core.List<core.List<api.McfDataRows>>(); |
| 2388 o.add(buildUnnamed922()); | 2388 o.add(buildUnnamed273()); |
| 2389 o.add(buildUnnamed922()); | 2389 o.add(buildUnnamed273()); |
| 2390 return o; | 2390 return o; |
| 2391 } | 2391 } |
| 2392 | 2392 |
| 2393 checkUnnamed923(core.List<core.List<api.McfDataRows>> o) { | 2393 checkUnnamed274(core.List<core.List<api.McfDataRows>> o) { |
| 2394 unittest.expect(o, unittest.hasLength(2)); | 2394 unittest.expect(o, unittest.hasLength(2)); |
| 2395 checkUnnamed922(o[0]); | 2395 checkUnnamed273(o[0]); |
| 2396 checkUnnamed922(o[1]); | 2396 checkUnnamed273(o[1]); |
| 2397 } | 2397 } |
| 2398 | 2398 |
| 2399 buildUnnamed924() { | 2399 buildUnnamed275() { |
| 2400 var o = new core.Map<core.String, core.String>(); | 2400 var o = new core.Map<core.String, core.String>(); |
| 2401 o["x"] = "foo"; | 2401 o["x"] = "foo"; |
| 2402 o["y"] = "foo"; | 2402 o["y"] = "foo"; |
| 2403 return o; | 2403 return o; |
| 2404 } | 2404 } |
| 2405 | 2405 |
| 2406 checkUnnamed924(core.Map<core.String, core.String> o) { | 2406 checkUnnamed275(core.Map<core.String, core.String> o) { |
| 2407 unittest.expect(o, unittest.hasLength(2)); | 2407 unittest.expect(o, unittest.hasLength(2)); |
| 2408 unittest.expect(o["x"], unittest.equals('foo')); | 2408 unittest.expect(o["x"], unittest.equals('foo')); |
| 2409 unittest.expect(o["y"], unittest.equals('foo')); | 2409 unittest.expect(o["y"], unittest.equals('foo')); |
| 2410 } | 2410 } |
| 2411 | 2411 |
| 2412 core.int buildCounterMcfData = 0; | 2412 core.int buildCounterMcfData = 0; |
| 2413 buildMcfData() { | 2413 buildMcfData() { |
| 2414 var o = new api.McfData(); | 2414 var o = new api.McfData(); |
| 2415 buildCounterMcfData++; | 2415 buildCounterMcfData++; |
| 2416 if (buildCounterMcfData < 3) { | 2416 if (buildCounterMcfData < 3) { |
| 2417 o.columnHeaders = buildUnnamed918(); | 2417 o.columnHeaders = buildUnnamed269(); |
| 2418 o.containsSampledData = true; | 2418 o.containsSampledData = true; |
| 2419 o.id = "foo"; | 2419 o.id = "foo"; |
| 2420 o.itemsPerPage = 42; | 2420 o.itemsPerPage = 42; |
| 2421 o.kind = "foo"; | 2421 o.kind = "foo"; |
| 2422 o.nextLink = "foo"; | 2422 o.nextLink = "foo"; |
| 2423 o.previousLink = "foo"; | 2423 o.previousLink = "foo"; |
| 2424 o.profileInfo = buildMcfDataProfileInfo(); | 2424 o.profileInfo = buildMcfDataProfileInfo(); |
| 2425 o.query = buildMcfDataQuery(); | 2425 o.query = buildMcfDataQuery(); |
| 2426 o.rows = buildUnnamed923(); | 2426 o.rows = buildUnnamed274(); |
| 2427 o.sampleSize = "foo"; | 2427 o.sampleSize = "foo"; |
| 2428 o.sampleSpace = "foo"; | 2428 o.sampleSpace = "foo"; |
| 2429 o.selfLink = "foo"; | 2429 o.selfLink = "foo"; |
| 2430 o.totalResults = 42; | 2430 o.totalResults = 42; |
| 2431 o.totalsForAllResults = buildUnnamed924(); | 2431 o.totalsForAllResults = buildUnnamed275(); |
| 2432 } | 2432 } |
| 2433 buildCounterMcfData--; | 2433 buildCounterMcfData--; |
| 2434 return o; | 2434 return o; |
| 2435 } | 2435 } |
| 2436 | 2436 |
| 2437 checkMcfData(api.McfData o) { | 2437 checkMcfData(api.McfData o) { |
| 2438 buildCounterMcfData++; | 2438 buildCounterMcfData++; |
| 2439 if (buildCounterMcfData < 3) { | 2439 if (buildCounterMcfData < 3) { |
| 2440 checkUnnamed918(o.columnHeaders); | 2440 checkUnnamed269(o.columnHeaders); |
| 2441 unittest.expect(o.containsSampledData, unittest.isTrue); | 2441 unittest.expect(o.containsSampledData, unittest.isTrue); |
| 2442 unittest.expect(o.id, unittest.equals('foo')); | 2442 unittest.expect(o.id, unittest.equals('foo')); |
| 2443 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2443 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2444 unittest.expect(o.kind, unittest.equals('foo')); | 2444 unittest.expect(o.kind, unittest.equals('foo')); |
| 2445 unittest.expect(o.nextLink, unittest.equals('foo')); | 2445 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2446 unittest.expect(o.previousLink, unittest.equals('foo')); | 2446 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2447 checkMcfDataProfileInfo(o.profileInfo); | 2447 checkMcfDataProfileInfo(o.profileInfo); |
| 2448 checkMcfDataQuery(o.query); | 2448 checkMcfDataQuery(o.query); |
| 2449 checkUnnamed923(o.rows); | 2449 checkUnnamed274(o.rows); |
| 2450 unittest.expect(o.sampleSize, unittest.equals('foo')); | 2450 unittest.expect(o.sampleSize, unittest.equals('foo')); |
| 2451 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 2451 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
| 2452 unittest.expect(o.selfLink, unittest.equals('foo')); | 2452 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2453 unittest.expect(o.totalResults, unittest.equals(42)); | 2453 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2454 checkUnnamed924(o.totalsForAllResults); | 2454 checkUnnamed275(o.totalsForAllResults); |
| 2455 } | 2455 } |
| 2456 buildCounterMcfData--; | 2456 buildCounterMcfData--; |
| 2457 } | 2457 } |
| 2458 | 2458 |
| 2459 core.int buildCounterProfileChildLink = 0; | 2459 core.int buildCounterProfileChildLink = 0; |
| 2460 buildProfileChildLink() { | 2460 buildProfileChildLink() { |
| 2461 var o = new api.ProfileChildLink(); | 2461 var o = new api.ProfileChildLink(); |
| 2462 buildCounterProfileChildLink++; | 2462 buildCounterProfileChildLink++; |
| 2463 if (buildCounterProfileChildLink < 3) { | 2463 if (buildCounterProfileChildLink < 3) { |
| 2464 o.href = "foo"; | 2464 o.href = "foo"; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 2491 | 2491 |
| 2492 checkProfileParentLink(api.ProfileParentLink o) { | 2492 checkProfileParentLink(api.ProfileParentLink o) { |
| 2493 buildCounterProfileParentLink++; | 2493 buildCounterProfileParentLink++; |
| 2494 if (buildCounterProfileParentLink < 3) { | 2494 if (buildCounterProfileParentLink < 3) { |
| 2495 unittest.expect(o.href, unittest.equals('foo')); | 2495 unittest.expect(o.href, unittest.equals('foo')); |
| 2496 unittest.expect(o.type, unittest.equals('foo')); | 2496 unittest.expect(o.type, unittest.equals('foo')); |
| 2497 } | 2497 } |
| 2498 buildCounterProfileParentLink--; | 2498 buildCounterProfileParentLink--; |
| 2499 } | 2499 } |
| 2500 | 2500 |
| 2501 buildUnnamed925() { | 2501 buildUnnamed276() { |
| 2502 var o = new core.List<core.String>(); | 2502 var o = new core.List<core.String>(); |
| 2503 o.add("foo"); | 2503 o.add("foo"); |
| 2504 o.add("foo"); | 2504 o.add("foo"); |
| 2505 return o; | 2505 return o; |
| 2506 } | 2506 } |
| 2507 | 2507 |
| 2508 checkUnnamed925(core.List<core.String> o) { | 2508 checkUnnamed276(core.List<core.String> o) { |
| 2509 unittest.expect(o, unittest.hasLength(2)); | 2509 unittest.expect(o, unittest.hasLength(2)); |
| 2510 unittest.expect(o[0], unittest.equals('foo')); | 2510 unittest.expect(o[0], unittest.equals('foo')); |
| 2511 unittest.expect(o[1], unittest.equals('foo')); | 2511 unittest.expect(o[1], unittest.equals('foo')); |
| 2512 } | 2512 } |
| 2513 | 2513 |
| 2514 core.int buildCounterProfilePermissions = 0; | 2514 core.int buildCounterProfilePermissions = 0; |
| 2515 buildProfilePermissions() { | 2515 buildProfilePermissions() { |
| 2516 var o = new api.ProfilePermissions(); | 2516 var o = new api.ProfilePermissions(); |
| 2517 buildCounterProfilePermissions++; | 2517 buildCounterProfilePermissions++; |
| 2518 if (buildCounterProfilePermissions < 3) { | 2518 if (buildCounterProfilePermissions < 3) { |
| 2519 o.effective = buildUnnamed925(); | 2519 o.effective = buildUnnamed276(); |
| 2520 } | 2520 } |
| 2521 buildCounterProfilePermissions--; | 2521 buildCounterProfilePermissions--; |
| 2522 return o; | 2522 return o; |
| 2523 } | 2523 } |
| 2524 | 2524 |
| 2525 checkProfilePermissions(api.ProfilePermissions o) { | 2525 checkProfilePermissions(api.ProfilePermissions o) { |
| 2526 buildCounterProfilePermissions++; | 2526 buildCounterProfilePermissions++; |
| 2527 if (buildCounterProfilePermissions < 3) { | 2527 if (buildCounterProfilePermissions < 3) { |
| 2528 checkUnnamed925(o.effective); | 2528 checkUnnamed276(o.effective); |
| 2529 } | 2529 } |
| 2530 buildCounterProfilePermissions--; | 2530 buildCounterProfilePermissions--; |
| 2531 } | 2531 } |
| 2532 | 2532 |
| 2533 core.int buildCounterProfile = 0; | 2533 core.int buildCounterProfile = 0; |
| 2534 buildProfile() { | 2534 buildProfile() { |
| 2535 var o = new api.Profile(); | 2535 var o = new api.Profile(); |
| 2536 buildCounterProfile++; | 2536 buildCounterProfile++; |
| 2537 if (buildCounterProfile < 3) { | 2537 if (buildCounterProfile < 3) { |
| 2538 o.accountId = "foo"; | 2538 o.accountId = "foo"; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2617 checkFilterRef(o.filterRef); | 2617 checkFilterRef(o.filterRef); |
| 2618 unittest.expect(o.id, unittest.equals('foo')); | 2618 unittest.expect(o.id, unittest.equals('foo')); |
| 2619 unittest.expect(o.kind, unittest.equals('foo')); | 2619 unittest.expect(o.kind, unittest.equals('foo')); |
| 2620 checkProfileRef(o.profileRef); | 2620 checkProfileRef(o.profileRef); |
| 2621 unittest.expect(o.rank, unittest.equals(42)); | 2621 unittest.expect(o.rank, unittest.equals(42)); |
| 2622 unittest.expect(o.selfLink, unittest.equals('foo')); | 2622 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2623 } | 2623 } |
| 2624 buildCounterProfileFilterLink--; | 2624 buildCounterProfileFilterLink--; |
| 2625 } | 2625 } |
| 2626 | 2626 |
| 2627 buildUnnamed926() { | 2627 buildUnnamed277() { |
| 2628 var o = new core.List<api.ProfileFilterLink>(); | 2628 var o = new core.List<api.ProfileFilterLink>(); |
| 2629 o.add(buildProfileFilterLink()); | 2629 o.add(buildProfileFilterLink()); |
| 2630 o.add(buildProfileFilterLink()); | 2630 o.add(buildProfileFilterLink()); |
| 2631 return o; | 2631 return o; |
| 2632 } | 2632 } |
| 2633 | 2633 |
| 2634 checkUnnamed926(core.List<api.ProfileFilterLink> o) { | 2634 checkUnnamed277(core.List<api.ProfileFilterLink> o) { |
| 2635 unittest.expect(o, unittest.hasLength(2)); | 2635 unittest.expect(o, unittest.hasLength(2)); |
| 2636 checkProfileFilterLink(o[0]); | 2636 checkProfileFilterLink(o[0]); |
| 2637 checkProfileFilterLink(o[1]); | 2637 checkProfileFilterLink(o[1]); |
| 2638 } | 2638 } |
| 2639 | 2639 |
| 2640 core.int buildCounterProfileFilterLinks = 0; | 2640 core.int buildCounterProfileFilterLinks = 0; |
| 2641 buildProfileFilterLinks() { | 2641 buildProfileFilterLinks() { |
| 2642 var o = new api.ProfileFilterLinks(); | 2642 var o = new api.ProfileFilterLinks(); |
| 2643 buildCounterProfileFilterLinks++; | 2643 buildCounterProfileFilterLinks++; |
| 2644 if (buildCounterProfileFilterLinks < 3) { | 2644 if (buildCounterProfileFilterLinks < 3) { |
| 2645 o.items = buildUnnamed926(); | 2645 o.items = buildUnnamed277(); |
| 2646 o.itemsPerPage = 42; | 2646 o.itemsPerPage = 42; |
| 2647 o.kind = "foo"; | 2647 o.kind = "foo"; |
| 2648 o.nextLink = "foo"; | 2648 o.nextLink = "foo"; |
| 2649 o.previousLink = "foo"; | 2649 o.previousLink = "foo"; |
| 2650 o.startIndex = 42; | 2650 o.startIndex = 42; |
| 2651 o.totalResults = 42; | 2651 o.totalResults = 42; |
| 2652 o.username = "foo"; | 2652 o.username = "foo"; |
| 2653 } | 2653 } |
| 2654 buildCounterProfileFilterLinks--; | 2654 buildCounterProfileFilterLinks--; |
| 2655 return o; | 2655 return o; |
| 2656 } | 2656 } |
| 2657 | 2657 |
| 2658 checkProfileFilterLinks(api.ProfileFilterLinks o) { | 2658 checkProfileFilterLinks(api.ProfileFilterLinks o) { |
| 2659 buildCounterProfileFilterLinks++; | 2659 buildCounterProfileFilterLinks++; |
| 2660 if (buildCounterProfileFilterLinks < 3) { | 2660 if (buildCounterProfileFilterLinks < 3) { |
| 2661 checkUnnamed926(o.items); | 2661 checkUnnamed277(o.items); |
| 2662 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2662 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2663 unittest.expect(o.kind, unittest.equals('foo')); | 2663 unittest.expect(o.kind, unittest.equals('foo')); |
| 2664 unittest.expect(o.nextLink, unittest.equals('foo')); | 2664 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2665 unittest.expect(o.previousLink, unittest.equals('foo')); | 2665 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2666 unittest.expect(o.startIndex, unittest.equals(42)); | 2666 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2667 unittest.expect(o.totalResults, unittest.equals(42)); | 2667 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2668 unittest.expect(o.username, unittest.equals('foo')); | 2668 unittest.expect(o.username, unittest.equals('foo')); |
| 2669 } | 2669 } |
| 2670 buildCounterProfileFilterLinks--; | 2670 buildCounterProfileFilterLinks--; |
| 2671 } | 2671 } |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2719 buildCounterProfileSummary++; | 2719 buildCounterProfileSummary++; |
| 2720 if (buildCounterProfileSummary < 3) { | 2720 if (buildCounterProfileSummary < 3) { |
| 2721 unittest.expect(o.id, unittest.equals('foo')); | 2721 unittest.expect(o.id, unittest.equals('foo')); |
| 2722 unittest.expect(o.kind, unittest.equals('foo')); | 2722 unittest.expect(o.kind, unittest.equals('foo')); |
| 2723 unittest.expect(o.name, unittest.equals('foo')); | 2723 unittest.expect(o.name, unittest.equals('foo')); |
| 2724 unittest.expect(o.type, unittest.equals('foo')); | 2724 unittest.expect(o.type, unittest.equals('foo')); |
| 2725 } | 2725 } |
| 2726 buildCounterProfileSummary--; | 2726 buildCounterProfileSummary--; |
| 2727 } | 2727 } |
| 2728 | 2728 |
| 2729 buildUnnamed927() { | 2729 buildUnnamed278() { |
| 2730 var o = new core.List<api.Profile>(); | 2730 var o = new core.List<api.Profile>(); |
| 2731 o.add(buildProfile()); | 2731 o.add(buildProfile()); |
| 2732 o.add(buildProfile()); | 2732 o.add(buildProfile()); |
| 2733 return o; | 2733 return o; |
| 2734 } | 2734 } |
| 2735 | 2735 |
| 2736 checkUnnamed927(core.List<api.Profile> o) { | 2736 checkUnnamed278(core.List<api.Profile> o) { |
| 2737 unittest.expect(o, unittest.hasLength(2)); | 2737 unittest.expect(o, unittest.hasLength(2)); |
| 2738 checkProfile(o[0]); | 2738 checkProfile(o[0]); |
| 2739 checkProfile(o[1]); | 2739 checkProfile(o[1]); |
| 2740 } | 2740 } |
| 2741 | 2741 |
| 2742 core.int buildCounterProfiles = 0; | 2742 core.int buildCounterProfiles = 0; |
| 2743 buildProfiles() { | 2743 buildProfiles() { |
| 2744 var o = new api.Profiles(); | 2744 var o = new api.Profiles(); |
| 2745 buildCounterProfiles++; | 2745 buildCounterProfiles++; |
| 2746 if (buildCounterProfiles < 3) { | 2746 if (buildCounterProfiles < 3) { |
| 2747 o.items = buildUnnamed927(); | 2747 o.items = buildUnnamed278(); |
| 2748 o.itemsPerPage = 42; | 2748 o.itemsPerPage = 42; |
| 2749 o.kind = "foo"; | 2749 o.kind = "foo"; |
| 2750 o.nextLink = "foo"; | 2750 o.nextLink = "foo"; |
| 2751 o.previousLink = "foo"; | 2751 o.previousLink = "foo"; |
| 2752 o.startIndex = 42; | 2752 o.startIndex = 42; |
| 2753 o.totalResults = 42; | 2753 o.totalResults = 42; |
| 2754 o.username = "foo"; | 2754 o.username = "foo"; |
| 2755 } | 2755 } |
| 2756 buildCounterProfiles--; | 2756 buildCounterProfiles--; |
| 2757 return o; | 2757 return o; |
| 2758 } | 2758 } |
| 2759 | 2759 |
| 2760 checkProfiles(api.Profiles o) { | 2760 checkProfiles(api.Profiles o) { |
| 2761 buildCounterProfiles++; | 2761 buildCounterProfiles++; |
| 2762 if (buildCounterProfiles < 3) { | 2762 if (buildCounterProfiles < 3) { |
| 2763 checkUnnamed927(o.items); | 2763 checkUnnamed278(o.items); |
| 2764 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2764 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2765 unittest.expect(o.kind, unittest.equals('foo')); | 2765 unittest.expect(o.kind, unittest.equals('foo')); |
| 2766 unittest.expect(o.nextLink, unittest.equals('foo')); | 2766 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2767 unittest.expect(o.previousLink, unittest.equals('foo')); | 2767 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2768 unittest.expect(o.startIndex, unittest.equals(42)); | 2768 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2769 unittest.expect(o.totalResults, unittest.equals(42)); | 2769 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2770 unittest.expect(o.username, unittest.equals('foo')); | 2770 unittest.expect(o.username, unittest.equals('foo')); |
| 2771 } | 2771 } |
| 2772 buildCounterProfiles--; | 2772 buildCounterProfiles--; |
| 2773 } | 2773 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2788 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { | 2788 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { |
| 2789 buildCounterRealtimeDataColumnHeaders++; | 2789 buildCounterRealtimeDataColumnHeaders++; |
| 2790 if (buildCounterRealtimeDataColumnHeaders < 3) { | 2790 if (buildCounterRealtimeDataColumnHeaders < 3) { |
| 2791 unittest.expect(o.columnType, unittest.equals('foo')); | 2791 unittest.expect(o.columnType, unittest.equals('foo')); |
| 2792 unittest.expect(o.dataType, unittest.equals('foo')); | 2792 unittest.expect(o.dataType, unittest.equals('foo')); |
| 2793 unittest.expect(o.name, unittest.equals('foo')); | 2793 unittest.expect(o.name, unittest.equals('foo')); |
| 2794 } | 2794 } |
| 2795 buildCounterRealtimeDataColumnHeaders--; | 2795 buildCounterRealtimeDataColumnHeaders--; |
| 2796 } | 2796 } |
| 2797 | 2797 |
| 2798 buildUnnamed928() { | 2798 buildUnnamed279() { |
| 2799 var o = new core.List<api.RealtimeDataColumnHeaders>(); | 2799 var o = new core.List<api.RealtimeDataColumnHeaders>(); |
| 2800 o.add(buildRealtimeDataColumnHeaders()); | 2800 o.add(buildRealtimeDataColumnHeaders()); |
| 2801 o.add(buildRealtimeDataColumnHeaders()); | 2801 o.add(buildRealtimeDataColumnHeaders()); |
| 2802 return o; | 2802 return o; |
| 2803 } | 2803 } |
| 2804 | 2804 |
| 2805 checkUnnamed928(core.List<api.RealtimeDataColumnHeaders> o) { | 2805 checkUnnamed279(core.List<api.RealtimeDataColumnHeaders> o) { |
| 2806 unittest.expect(o, unittest.hasLength(2)); | 2806 unittest.expect(o, unittest.hasLength(2)); |
| 2807 checkRealtimeDataColumnHeaders(o[0]); | 2807 checkRealtimeDataColumnHeaders(o[0]); |
| 2808 checkRealtimeDataColumnHeaders(o[1]); | 2808 checkRealtimeDataColumnHeaders(o[1]); |
| 2809 } | 2809 } |
| 2810 | 2810 |
| 2811 core.int buildCounterRealtimeDataProfileInfo = 0; | 2811 core.int buildCounterRealtimeDataProfileInfo = 0; |
| 2812 buildRealtimeDataProfileInfo() { | 2812 buildRealtimeDataProfileInfo() { |
| 2813 var o = new api.RealtimeDataProfileInfo(); | 2813 var o = new api.RealtimeDataProfileInfo(); |
| 2814 buildCounterRealtimeDataProfileInfo++; | 2814 buildCounterRealtimeDataProfileInfo++; |
| 2815 if (buildCounterRealtimeDataProfileInfo < 3) { | 2815 if (buildCounterRealtimeDataProfileInfo < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2830 unittest.expect(o.accountId, unittest.equals('foo')); | 2830 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2831 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2831 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 2832 unittest.expect(o.profileId, unittest.equals('foo')); | 2832 unittest.expect(o.profileId, unittest.equals('foo')); |
| 2833 unittest.expect(o.profileName, unittest.equals('foo')); | 2833 unittest.expect(o.profileName, unittest.equals('foo')); |
| 2834 unittest.expect(o.tableId, unittest.equals('foo')); | 2834 unittest.expect(o.tableId, unittest.equals('foo')); |
| 2835 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2835 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2836 } | 2836 } |
| 2837 buildCounterRealtimeDataProfileInfo--; | 2837 buildCounterRealtimeDataProfileInfo--; |
| 2838 } | 2838 } |
| 2839 | 2839 |
| 2840 buildUnnamed929() { | 2840 buildUnnamed280() { |
| 2841 var o = new core.List<core.String>(); | 2841 var o = new core.List<core.String>(); |
| 2842 o.add("foo"); | 2842 o.add("foo"); |
| 2843 o.add("foo"); | 2843 o.add("foo"); |
| 2844 return o; | 2844 return o; |
| 2845 } | 2845 } |
| 2846 | 2846 |
| 2847 checkUnnamed929(core.List<core.String> o) { | 2847 checkUnnamed280(core.List<core.String> o) { |
| 2848 unittest.expect(o, unittest.hasLength(2)); | 2848 unittest.expect(o, unittest.hasLength(2)); |
| 2849 unittest.expect(o[0], unittest.equals('foo')); | 2849 unittest.expect(o[0], unittest.equals('foo')); |
| 2850 unittest.expect(o[1], unittest.equals('foo')); | 2850 unittest.expect(o[1], unittest.equals('foo')); |
| 2851 } | 2851 } |
| 2852 | 2852 |
| 2853 buildUnnamed930() { | 2853 buildUnnamed281() { |
| 2854 var o = new core.List<core.String>(); | 2854 var o = new core.List<core.String>(); |
| 2855 o.add("foo"); | 2855 o.add("foo"); |
| 2856 o.add("foo"); | 2856 o.add("foo"); |
| 2857 return o; | 2857 return o; |
| 2858 } | 2858 } |
| 2859 | 2859 |
| 2860 checkUnnamed930(core.List<core.String> o) { | 2860 checkUnnamed281(core.List<core.String> o) { |
| 2861 unittest.expect(o, unittest.hasLength(2)); | 2861 unittest.expect(o, unittest.hasLength(2)); |
| 2862 unittest.expect(o[0], unittest.equals('foo')); | 2862 unittest.expect(o[0], unittest.equals('foo')); |
| 2863 unittest.expect(o[1], unittest.equals('foo')); | 2863 unittest.expect(o[1], unittest.equals('foo')); |
| 2864 } | 2864 } |
| 2865 | 2865 |
| 2866 core.int buildCounterRealtimeDataQuery = 0; | 2866 core.int buildCounterRealtimeDataQuery = 0; |
| 2867 buildRealtimeDataQuery() { | 2867 buildRealtimeDataQuery() { |
| 2868 var o = new api.RealtimeDataQuery(); | 2868 var o = new api.RealtimeDataQuery(); |
| 2869 buildCounterRealtimeDataQuery++; | 2869 buildCounterRealtimeDataQuery++; |
| 2870 if (buildCounterRealtimeDataQuery < 3) { | 2870 if (buildCounterRealtimeDataQuery < 3) { |
| 2871 o.dimensions = "foo"; | 2871 o.dimensions = "foo"; |
| 2872 o.filters = "foo"; | 2872 o.filters = "foo"; |
| 2873 o.ids = "foo"; | 2873 o.ids = "foo"; |
| 2874 o.max_results = 42; | 2874 o.max_results = 42; |
| 2875 o.metrics = buildUnnamed929(); | 2875 o.metrics = buildUnnamed280(); |
| 2876 o.sort = buildUnnamed930(); | 2876 o.sort = buildUnnamed281(); |
| 2877 } | 2877 } |
| 2878 buildCounterRealtimeDataQuery--; | 2878 buildCounterRealtimeDataQuery--; |
| 2879 return o; | 2879 return o; |
| 2880 } | 2880 } |
| 2881 | 2881 |
| 2882 checkRealtimeDataQuery(api.RealtimeDataQuery o) { | 2882 checkRealtimeDataQuery(api.RealtimeDataQuery o) { |
| 2883 buildCounterRealtimeDataQuery++; | 2883 buildCounterRealtimeDataQuery++; |
| 2884 if (buildCounterRealtimeDataQuery < 3) { | 2884 if (buildCounterRealtimeDataQuery < 3) { |
| 2885 unittest.expect(o.dimensions, unittest.equals('foo')); | 2885 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 2886 unittest.expect(o.filters, unittest.equals('foo')); | 2886 unittest.expect(o.filters, unittest.equals('foo')); |
| 2887 unittest.expect(o.ids, unittest.equals('foo')); | 2887 unittest.expect(o.ids, unittest.equals('foo')); |
| 2888 unittest.expect(o.max_results, unittest.equals(42)); | 2888 unittest.expect(o.max_results, unittest.equals(42)); |
| 2889 checkUnnamed929(o.metrics); | 2889 checkUnnamed280(o.metrics); |
| 2890 checkUnnamed930(o.sort); | 2890 checkUnnamed281(o.sort); |
| 2891 } | 2891 } |
| 2892 buildCounterRealtimeDataQuery--; | 2892 buildCounterRealtimeDataQuery--; |
| 2893 } | 2893 } |
| 2894 | 2894 |
| 2895 buildUnnamed931() { | 2895 buildUnnamed282() { |
| 2896 var o = new core.List<core.String>(); | 2896 var o = new core.List<core.String>(); |
| 2897 o.add("foo"); | 2897 o.add("foo"); |
| 2898 o.add("foo"); | 2898 o.add("foo"); |
| 2899 return o; | 2899 return o; |
| 2900 } | 2900 } |
| 2901 | 2901 |
| 2902 checkUnnamed931(core.List<core.String> o) { | 2902 checkUnnamed282(core.List<core.String> o) { |
| 2903 unittest.expect(o, unittest.hasLength(2)); | 2903 unittest.expect(o, unittest.hasLength(2)); |
| 2904 unittest.expect(o[0], unittest.equals('foo')); | 2904 unittest.expect(o[0], unittest.equals('foo')); |
| 2905 unittest.expect(o[1], unittest.equals('foo')); | 2905 unittest.expect(o[1], unittest.equals('foo')); |
| 2906 } | 2906 } |
| 2907 | 2907 |
| 2908 buildUnnamed932() { | 2908 buildUnnamed283() { |
| 2909 var o = new core.List<core.List<core.String>>(); | 2909 var o = new core.List<core.List<core.String>>(); |
| 2910 o.add(buildUnnamed931()); | 2910 o.add(buildUnnamed282()); |
| 2911 o.add(buildUnnamed931()); | 2911 o.add(buildUnnamed282()); |
| 2912 return o; | 2912 return o; |
| 2913 } | 2913 } |
| 2914 | 2914 |
| 2915 checkUnnamed932(core.List<core.List<core.String>> o) { | 2915 checkUnnamed283(core.List<core.List<core.String>> o) { |
| 2916 unittest.expect(o, unittest.hasLength(2)); | 2916 unittest.expect(o, unittest.hasLength(2)); |
| 2917 checkUnnamed931(o[0]); | 2917 checkUnnamed282(o[0]); |
| 2918 checkUnnamed931(o[1]); | 2918 checkUnnamed282(o[1]); |
| 2919 } | 2919 } |
| 2920 | 2920 |
| 2921 buildUnnamed933() { | 2921 buildUnnamed284() { |
| 2922 var o = new core.Map<core.String, core.String>(); | 2922 var o = new core.Map<core.String, core.String>(); |
| 2923 o["x"] = "foo"; | 2923 o["x"] = "foo"; |
| 2924 o["y"] = "foo"; | 2924 o["y"] = "foo"; |
| 2925 return o; | 2925 return o; |
| 2926 } | 2926 } |
| 2927 | 2927 |
| 2928 checkUnnamed933(core.Map<core.String, core.String> o) { | 2928 checkUnnamed284(core.Map<core.String, core.String> o) { |
| 2929 unittest.expect(o, unittest.hasLength(2)); | 2929 unittest.expect(o, unittest.hasLength(2)); |
| 2930 unittest.expect(o["x"], unittest.equals('foo')); | 2930 unittest.expect(o["x"], unittest.equals('foo')); |
| 2931 unittest.expect(o["y"], unittest.equals('foo')); | 2931 unittest.expect(o["y"], unittest.equals('foo')); |
| 2932 } | 2932 } |
| 2933 | 2933 |
| 2934 core.int buildCounterRealtimeData = 0; | 2934 core.int buildCounterRealtimeData = 0; |
| 2935 buildRealtimeData() { | 2935 buildRealtimeData() { |
| 2936 var o = new api.RealtimeData(); | 2936 var o = new api.RealtimeData(); |
| 2937 buildCounterRealtimeData++; | 2937 buildCounterRealtimeData++; |
| 2938 if (buildCounterRealtimeData < 3) { | 2938 if (buildCounterRealtimeData < 3) { |
| 2939 o.columnHeaders = buildUnnamed928(); | 2939 o.columnHeaders = buildUnnamed279(); |
| 2940 o.id = "foo"; | 2940 o.id = "foo"; |
| 2941 o.kind = "foo"; | 2941 o.kind = "foo"; |
| 2942 o.profileInfo = buildRealtimeDataProfileInfo(); | 2942 o.profileInfo = buildRealtimeDataProfileInfo(); |
| 2943 o.query = buildRealtimeDataQuery(); | 2943 o.query = buildRealtimeDataQuery(); |
| 2944 o.rows = buildUnnamed932(); | 2944 o.rows = buildUnnamed283(); |
| 2945 o.selfLink = "foo"; | 2945 o.selfLink = "foo"; |
| 2946 o.totalResults = 42; | 2946 o.totalResults = 42; |
| 2947 o.totalsForAllResults = buildUnnamed933(); | 2947 o.totalsForAllResults = buildUnnamed284(); |
| 2948 } | 2948 } |
| 2949 buildCounterRealtimeData--; | 2949 buildCounterRealtimeData--; |
| 2950 return o; | 2950 return o; |
| 2951 } | 2951 } |
| 2952 | 2952 |
| 2953 checkRealtimeData(api.RealtimeData o) { | 2953 checkRealtimeData(api.RealtimeData o) { |
| 2954 buildCounterRealtimeData++; | 2954 buildCounterRealtimeData++; |
| 2955 if (buildCounterRealtimeData < 3) { | 2955 if (buildCounterRealtimeData < 3) { |
| 2956 checkUnnamed928(o.columnHeaders); | 2956 checkUnnamed279(o.columnHeaders); |
| 2957 unittest.expect(o.id, unittest.equals('foo')); | 2957 unittest.expect(o.id, unittest.equals('foo')); |
| 2958 unittest.expect(o.kind, unittest.equals('foo')); | 2958 unittest.expect(o.kind, unittest.equals('foo')); |
| 2959 checkRealtimeDataProfileInfo(o.profileInfo); | 2959 checkRealtimeDataProfileInfo(o.profileInfo); |
| 2960 checkRealtimeDataQuery(o.query); | 2960 checkRealtimeDataQuery(o.query); |
| 2961 checkUnnamed932(o.rows); | 2961 checkUnnamed283(o.rows); |
| 2962 unittest.expect(o.selfLink, unittest.equals('foo')); | 2962 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2963 unittest.expect(o.totalResults, unittest.equals(42)); | 2963 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2964 checkUnnamed933(o.totalsForAllResults); | 2964 checkUnnamed284(o.totalsForAllResults); |
| 2965 } | 2965 } |
| 2966 buildCounterRealtimeData--; | 2966 buildCounterRealtimeData--; |
| 2967 } | 2967 } |
| 2968 | 2968 |
| 2969 core.int buildCounterSegment = 0; | 2969 core.int buildCounterSegment = 0; |
| 2970 buildSegment() { | 2970 buildSegment() { |
| 2971 var o = new api.Segment(); | 2971 var o = new api.Segment(); |
| 2972 buildCounterSegment++; | 2972 buildCounterSegment++; |
| 2973 if (buildCounterSegment < 3) { | 2973 if (buildCounterSegment < 3) { |
| 2974 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 2974 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 2994 unittest.expect(o.kind, unittest.equals('foo')); | 2994 unittest.expect(o.kind, unittest.equals('foo')); |
| 2995 unittest.expect(o.name, unittest.equals('foo')); | 2995 unittest.expect(o.name, unittest.equals('foo')); |
| 2996 unittest.expect(o.segmentId, unittest.equals('foo')); | 2996 unittest.expect(o.segmentId, unittest.equals('foo')); |
| 2997 unittest.expect(o.selfLink, unittest.equals('foo')); | 2997 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2998 unittest.expect(o.type, unittest.equals('foo')); | 2998 unittest.expect(o.type, unittest.equals('foo')); |
| 2999 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2999 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3000 } | 3000 } |
| 3001 buildCounterSegment--; | 3001 buildCounterSegment--; |
| 3002 } | 3002 } |
| 3003 | 3003 |
| 3004 buildUnnamed934() { | 3004 buildUnnamed285() { |
| 3005 var o = new core.List<api.Segment>(); | 3005 var o = new core.List<api.Segment>(); |
| 3006 o.add(buildSegment()); | 3006 o.add(buildSegment()); |
| 3007 o.add(buildSegment()); | 3007 o.add(buildSegment()); |
| 3008 return o; | 3008 return o; |
| 3009 } | 3009 } |
| 3010 | 3010 |
| 3011 checkUnnamed934(core.List<api.Segment> o) { | 3011 checkUnnamed285(core.List<api.Segment> o) { |
| 3012 unittest.expect(o, unittest.hasLength(2)); | 3012 unittest.expect(o, unittest.hasLength(2)); |
| 3013 checkSegment(o[0]); | 3013 checkSegment(o[0]); |
| 3014 checkSegment(o[1]); | 3014 checkSegment(o[1]); |
| 3015 } | 3015 } |
| 3016 | 3016 |
| 3017 core.int buildCounterSegments = 0; | 3017 core.int buildCounterSegments = 0; |
| 3018 buildSegments() { | 3018 buildSegments() { |
| 3019 var o = new api.Segments(); | 3019 var o = new api.Segments(); |
| 3020 buildCounterSegments++; | 3020 buildCounterSegments++; |
| 3021 if (buildCounterSegments < 3) { | 3021 if (buildCounterSegments < 3) { |
| 3022 o.items = buildUnnamed934(); | 3022 o.items = buildUnnamed285(); |
| 3023 o.itemsPerPage = 42; | 3023 o.itemsPerPage = 42; |
| 3024 o.kind = "foo"; | 3024 o.kind = "foo"; |
| 3025 o.nextLink = "foo"; | 3025 o.nextLink = "foo"; |
| 3026 o.previousLink = "foo"; | 3026 o.previousLink = "foo"; |
| 3027 o.startIndex = 42; | 3027 o.startIndex = 42; |
| 3028 o.totalResults = 42; | 3028 o.totalResults = 42; |
| 3029 o.username = "foo"; | 3029 o.username = "foo"; |
| 3030 } | 3030 } |
| 3031 buildCounterSegments--; | 3031 buildCounterSegments--; |
| 3032 return o; | 3032 return o; |
| 3033 } | 3033 } |
| 3034 | 3034 |
| 3035 checkSegments(api.Segments o) { | 3035 checkSegments(api.Segments o) { |
| 3036 buildCounterSegments++; | 3036 buildCounterSegments++; |
| 3037 if (buildCounterSegments < 3) { | 3037 if (buildCounterSegments < 3) { |
| 3038 checkUnnamed934(o.items); | 3038 checkUnnamed285(o.items); |
| 3039 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3039 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3040 unittest.expect(o.kind, unittest.equals('foo')); | 3040 unittest.expect(o.kind, unittest.equals('foo')); |
| 3041 unittest.expect(o.nextLink, unittest.equals('foo')); | 3041 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3042 unittest.expect(o.previousLink, unittest.equals('foo')); | 3042 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3043 unittest.expect(o.startIndex, unittest.equals(42)); | 3043 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3044 unittest.expect(o.totalResults, unittest.equals(42)); | 3044 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3045 unittest.expect(o.username, unittest.equals('foo')); | 3045 unittest.expect(o.username, unittest.equals('foo')); |
| 3046 } | 3046 } |
| 3047 buildCounterSegments--; | 3047 buildCounterSegments--; |
| 3048 } | 3048 } |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3135 unittest.expect(o.selfLink, unittest.equals('foo')); | 3135 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3136 unittest.expect(o.start_date, unittest.equals('foo')); | 3136 unittest.expect(o.start_date, unittest.equals('foo')); |
| 3137 unittest.expect(o.status, unittest.equals('foo')); | 3137 unittest.expect(o.status, unittest.equals('foo')); |
| 3138 unittest.expect(o.title, unittest.equals('foo')); | 3138 unittest.expect(o.title, unittest.equals('foo')); |
| 3139 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3139 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3140 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 3140 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 3141 } | 3141 } |
| 3142 buildCounterUnsampledReport--; | 3142 buildCounterUnsampledReport--; |
| 3143 } | 3143 } |
| 3144 | 3144 |
| 3145 buildUnnamed935() { | 3145 buildUnnamed286() { |
| 3146 var o = new core.List<api.UnsampledReport>(); | 3146 var o = new core.List<api.UnsampledReport>(); |
| 3147 o.add(buildUnsampledReport()); | 3147 o.add(buildUnsampledReport()); |
| 3148 o.add(buildUnsampledReport()); | 3148 o.add(buildUnsampledReport()); |
| 3149 return o; | 3149 return o; |
| 3150 } | 3150 } |
| 3151 | 3151 |
| 3152 checkUnnamed935(core.List<api.UnsampledReport> o) { | 3152 checkUnnamed286(core.List<api.UnsampledReport> o) { |
| 3153 unittest.expect(o, unittest.hasLength(2)); | 3153 unittest.expect(o, unittest.hasLength(2)); |
| 3154 checkUnsampledReport(o[0]); | 3154 checkUnsampledReport(o[0]); |
| 3155 checkUnsampledReport(o[1]); | 3155 checkUnsampledReport(o[1]); |
| 3156 } | 3156 } |
| 3157 | 3157 |
| 3158 core.int buildCounterUnsampledReports = 0; | 3158 core.int buildCounterUnsampledReports = 0; |
| 3159 buildUnsampledReports() { | 3159 buildUnsampledReports() { |
| 3160 var o = new api.UnsampledReports(); | 3160 var o = new api.UnsampledReports(); |
| 3161 buildCounterUnsampledReports++; | 3161 buildCounterUnsampledReports++; |
| 3162 if (buildCounterUnsampledReports < 3) { | 3162 if (buildCounterUnsampledReports < 3) { |
| 3163 o.items = buildUnnamed935(); | 3163 o.items = buildUnnamed286(); |
| 3164 o.itemsPerPage = 42; | 3164 o.itemsPerPage = 42; |
| 3165 o.kind = "foo"; | 3165 o.kind = "foo"; |
| 3166 o.nextLink = "foo"; | 3166 o.nextLink = "foo"; |
| 3167 o.previousLink = "foo"; | 3167 o.previousLink = "foo"; |
| 3168 o.startIndex = 42; | 3168 o.startIndex = 42; |
| 3169 o.totalResults = 42; | 3169 o.totalResults = 42; |
| 3170 o.username = "foo"; | 3170 o.username = "foo"; |
| 3171 } | 3171 } |
| 3172 buildCounterUnsampledReports--; | 3172 buildCounterUnsampledReports--; |
| 3173 return o; | 3173 return o; |
| 3174 } | 3174 } |
| 3175 | 3175 |
| 3176 checkUnsampledReports(api.UnsampledReports o) { | 3176 checkUnsampledReports(api.UnsampledReports o) { |
| 3177 buildCounterUnsampledReports++; | 3177 buildCounterUnsampledReports++; |
| 3178 if (buildCounterUnsampledReports < 3) { | 3178 if (buildCounterUnsampledReports < 3) { |
| 3179 checkUnnamed935(o.items); | 3179 checkUnnamed286(o.items); |
| 3180 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3180 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3181 unittest.expect(o.kind, unittest.equals('foo')); | 3181 unittest.expect(o.kind, unittest.equals('foo')); |
| 3182 unittest.expect(o.nextLink, unittest.equals('foo')); | 3182 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3183 unittest.expect(o.previousLink, unittest.equals('foo')); | 3183 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3184 unittest.expect(o.startIndex, unittest.equals(42)); | 3184 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3185 unittest.expect(o.totalResults, unittest.equals(42)); | 3185 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3186 unittest.expect(o.username, unittest.equals('foo')); | 3186 unittest.expect(o.username, unittest.equals('foo')); |
| 3187 } | 3187 } |
| 3188 buildCounterUnsampledReports--; | 3188 buildCounterUnsampledReports--; |
| 3189 } | 3189 } |
| 3190 | 3190 |
| 3191 buildUnnamed936() { | 3191 buildUnnamed287() { |
| 3192 var o = new core.List<core.String>(); | 3192 var o = new core.List<core.String>(); |
| 3193 o.add("foo"); | 3193 o.add("foo"); |
| 3194 o.add("foo"); | 3194 o.add("foo"); |
| 3195 return o; | 3195 return o; |
| 3196 } | 3196 } |
| 3197 | 3197 |
| 3198 checkUnnamed936(core.List<core.String> o) { | 3198 checkUnnamed287(core.List<core.String> o) { |
| 3199 unittest.expect(o, unittest.hasLength(2)); | 3199 unittest.expect(o, unittest.hasLength(2)); |
| 3200 unittest.expect(o[0], unittest.equals('foo')); | 3200 unittest.expect(o[0], unittest.equals('foo')); |
| 3201 unittest.expect(o[1], unittest.equals('foo')); | 3201 unittest.expect(o[1], unittest.equals('foo')); |
| 3202 } | 3202 } |
| 3203 | 3203 |
| 3204 core.int buildCounterUpload = 0; | 3204 core.int buildCounterUpload = 0; |
| 3205 buildUpload() { | 3205 buildUpload() { |
| 3206 var o = new api.Upload(); | 3206 var o = new api.Upload(); |
| 3207 buildCounterUpload++; | 3207 buildCounterUpload++; |
| 3208 if (buildCounterUpload < 3) { | 3208 if (buildCounterUpload < 3) { |
| 3209 o.accountId = "foo"; | 3209 o.accountId = "foo"; |
| 3210 o.customDataSourceId = "foo"; | 3210 o.customDataSourceId = "foo"; |
| 3211 o.errors = buildUnnamed936(); | 3211 o.errors = buildUnnamed287(); |
| 3212 o.id = "foo"; | 3212 o.id = "foo"; |
| 3213 o.kind = "foo"; | 3213 o.kind = "foo"; |
| 3214 o.status = "foo"; | 3214 o.status = "foo"; |
| 3215 } | 3215 } |
| 3216 buildCounterUpload--; | 3216 buildCounterUpload--; |
| 3217 return o; | 3217 return o; |
| 3218 } | 3218 } |
| 3219 | 3219 |
| 3220 checkUpload(api.Upload o) { | 3220 checkUpload(api.Upload o) { |
| 3221 buildCounterUpload++; | 3221 buildCounterUpload++; |
| 3222 if (buildCounterUpload < 3) { | 3222 if (buildCounterUpload < 3) { |
| 3223 unittest.expect(o.accountId, unittest.equals('foo')); | 3223 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3224 unittest.expect(o.customDataSourceId, unittest.equals('foo')); | 3224 unittest.expect(o.customDataSourceId, unittest.equals('foo')); |
| 3225 checkUnnamed936(o.errors); | 3225 checkUnnamed287(o.errors); |
| 3226 unittest.expect(o.id, unittest.equals('foo')); | 3226 unittest.expect(o.id, unittest.equals('foo')); |
| 3227 unittest.expect(o.kind, unittest.equals('foo')); | 3227 unittest.expect(o.kind, unittest.equals('foo')); |
| 3228 unittest.expect(o.status, unittest.equals('foo')); | 3228 unittest.expect(o.status, unittest.equals('foo')); |
| 3229 } | 3229 } |
| 3230 buildCounterUpload--; | 3230 buildCounterUpload--; |
| 3231 } | 3231 } |
| 3232 | 3232 |
| 3233 buildUnnamed937() { | 3233 buildUnnamed288() { |
| 3234 var o = new core.List<api.Upload>(); | 3234 var o = new core.List<api.Upload>(); |
| 3235 o.add(buildUpload()); | 3235 o.add(buildUpload()); |
| 3236 o.add(buildUpload()); | 3236 o.add(buildUpload()); |
| 3237 return o; | 3237 return o; |
| 3238 } | 3238 } |
| 3239 | 3239 |
| 3240 checkUnnamed937(core.List<api.Upload> o) { | 3240 checkUnnamed288(core.List<api.Upload> o) { |
| 3241 unittest.expect(o, unittest.hasLength(2)); | 3241 unittest.expect(o, unittest.hasLength(2)); |
| 3242 checkUpload(o[0]); | 3242 checkUpload(o[0]); |
| 3243 checkUpload(o[1]); | 3243 checkUpload(o[1]); |
| 3244 } | 3244 } |
| 3245 | 3245 |
| 3246 core.int buildCounterUploads = 0; | 3246 core.int buildCounterUploads = 0; |
| 3247 buildUploads() { | 3247 buildUploads() { |
| 3248 var o = new api.Uploads(); | 3248 var o = new api.Uploads(); |
| 3249 buildCounterUploads++; | 3249 buildCounterUploads++; |
| 3250 if (buildCounterUploads < 3) { | 3250 if (buildCounterUploads < 3) { |
| 3251 o.items = buildUnnamed937(); | 3251 o.items = buildUnnamed288(); |
| 3252 o.itemsPerPage = 42; | 3252 o.itemsPerPage = 42; |
| 3253 o.kind = "foo"; | 3253 o.kind = "foo"; |
| 3254 o.nextLink = "foo"; | 3254 o.nextLink = "foo"; |
| 3255 o.previousLink = "foo"; | 3255 o.previousLink = "foo"; |
| 3256 o.startIndex = 42; | 3256 o.startIndex = 42; |
| 3257 o.totalResults = 42; | 3257 o.totalResults = 42; |
| 3258 } | 3258 } |
| 3259 buildCounterUploads--; | 3259 buildCounterUploads--; |
| 3260 return o; | 3260 return o; |
| 3261 } | 3261 } |
| 3262 | 3262 |
| 3263 checkUploads(api.Uploads o) { | 3263 checkUploads(api.Uploads o) { |
| 3264 buildCounterUploads++; | 3264 buildCounterUploads++; |
| 3265 if (buildCounterUploads < 3) { | 3265 if (buildCounterUploads < 3) { |
| 3266 checkUnnamed937(o.items); | 3266 checkUnnamed288(o.items); |
| 3267 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3267 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3268 unittest.expect(o.kind, unittest.equals('foo')); | 3268 unittest.expect(o.kind, unittest.equals('foo')); |
| 3269 unittest.expect(o.nextLink, unittest.equals('foo')); | 3269 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3270 unittest.expect(o.previousLink, unittest.equals('foo')); | 3270 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3271 unittest.expect(o.startIndex, unittest.equals(42)); | 3271 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3272 unittest.expect(o.totalResults, unittest.equals(42)); | 3272 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3273 } | 3273 } |
| 3274 buildCounterUploads--; | 3274 buildCounterUploads--; |
| 3275 } | 3275 } |
| 3276 | 3276 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3319 unittest.expect(o.accountId, unittest.equals('foo')); | 3319 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3320 unittest.expect(o.href, unittest.equals('foo')); | 3320 unittest.expect(o.href, unittest.equals('foo')); |
| 3321 unittest.expect(o.id, unittest.equals('foo')); | 3321 unittest.expect(o.id, unittest.equals('foo')); |
| 3322 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3322 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3323 unittest.expect(o.kind, unittest.equals('foo')); | 3323 unittest.expect(o.kind, unittest.equals('foo')); |
| 3324 unittest.expect(o.name, unittest.equals('foo')); | 3324 unittest.expect(o.name, unittest.equals('foo')); |
| 3325 } | 3325 } |
| 3326 buildCounterWebPropertyRef--; | 3326 buildCounterWebPropertyRef--; |
| 3327 } | 3327 } |
| 3328 | 3328 |
| 3329 buildUnnamed938() { | 3329 buildUnnamed289() { |
| 3330 var o = new core.List<api.ProfileSummary>(); | 3330 var o = new core.List<api.ProfileSummary>(); |
| 3331 o.add(buildProfileSummary()); | 3331 o.add(buildProfileSummary()); |
| 3332 o.add(buildProfileSummary()); | 3332 o.add(buildProfileSummary()); |
| 3333 return o; | 3333 return o; |
| 3334 } | 3334 } |
| 3335 | 3335 |
| 3336 checkUnnamed938(core.List<api.ProfileSummary> o) { | 3336 checkUnnamed289(core.List<api.ProfileSummary> o) { |
| 3337 unittest.expect(o, unittest.hasLength(2)); | 3337 unittest.expect(o, unittest.hasLength(2)); |
| 3338 checkProfileSummary(o[0]); | 3338 checkProfileSummary(o[0]); |
| 3339 checkProfileSummary(o[1]); | 3339 checkProfileSummary(o[1]); |
| 3340 } | 3340 } |
| 3341 | 3341 |
| 3342 core.int buildCounterWebPropertySummary = 0; | 3342 core.int buildCounterWebPropertySummary = 0; |
| 3343 buildWebPropertySummary() { | 3343 buildWebPropertySummary() { |
| 3344 var o = new api.WebPropertySummary(); | 3344 var o = new api.WebPropertySummary(); |
| 3345 buildCounterWebPropertySummary++; | 3345 buildCounterWebPropertySummary++; |
| 3346 if (buildCounterWebPropertySummary < 3) { | 3346 if (buildCounterWebPropertySummary < 3) { |
| 3347 o.id = "foo"; | 3347 o.id = "foo"; |
| 3348 o.internalWebPropertyId = "foo"; | 3348 o.internalWebPropertyId = "foo"; |
| 3349 o.kind = "foo"; | 3349 o.kind = "foo"; |
| 3350 o.level = "foo"; | 3350 o.level = "foo"; |
| 3351 o.name = "foo"; | 3351 o.name = "foo"; |
| 3352 o.profiles = buildUnnamed938(); | 3352 o.profiles = buildUnnamed289(); |
| 3353 o.websiteUrl = "foo"; | 3353 o.websiteUrl = "foo"; |
| 3354 } | 3354 } |
| 3355 buildCounterWebPropertySummary--; | 3355 buildCounterWebPropertySummary--; |
| 3356 return o; | 3356 return o; |
| 3357 } | 3357 } |
| 3358 | 3358 |
| 3359 checkWebPropertySummary(api.WebPropertySummary o) { | 3359 checkWebPropertySummary(api.WebPropertySummary o) { |
| 3360 buildCounterWebPropertySummary++; | 3360 buildCounterWebPropertySummary++; |
| 3361 if (buildCounterWebPropertySummary < 3) { | 3361 if (buildCounterWebPropertySummary < 3) { |
| 3362 unittest.expect(o.id, unittest.equals('foo')); | 3362 unittest.expect(o.id, unittest.equals('foo')); |
| 3363 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3363 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3364 unittest.expect(o.kind, unittest.equals('foo')); | 3364 unittest.expect(o.kind, unittest.equals('foo')); |
| 3365 unittest.expect(o.level, unittest.equals('foo')); | 3365 unittest.expect(o.level, unittest.equals('foo')); |
| 3366 unittest.expect(o.name, unittest.equals('foo')); | 3366 unittest.expect(o.name, unittest.equals('foo')); |
| 3367 checkUnnamed938(o.profiles); | 3367 checkUnnamed289(o.profiles); |
| 3368 unittest.expect(o.websiteUrl, unittest.equals('foo')); | 3368 unittest.expect(o.websiteUrl, unittest.equals('foo')); |
| 3369 } | 3369 } |
| 3370 buildCounterWebPropertySummary--; | 3370 buildCounterWebPropertySummary--; |
| 3371 } | 3371 } |
| 3372 | 3372 |
| 3373 buildUnnamed939() { | 3373 buildUnnamed290() { |
| 3374 var o = new core.List<api.Webproperty>(); | 3374 var o = new core.List<api.Webproperty>(); |
| 3375 o.add(buildWebproperty()); | 3375 o.add(buildWebproperty()); |
| 3376 o.add(buildWebproperty()); | 3376 o.add(buildWebproperty()); |
| 3377 return o; | 3377 return o; |
| 3378 } | 3378 } |
| 3379 | 3379 |
| 3380 checkUnnamed939(core.List<api.Webproperty> o) { | 3380 checkUnnamed290(core.List<api.Webproperty> o) { |
| 3381 unittest.expect(o, unittest.hasLength(2)); | 3381 unittest.expect(o, unittest.hasLength(2)); |
| 3382 checkWebproperty(o[0]); | 3382 checkWebproperty(o[0]); |
| 3383 checkWebproperty(o[1]); | 3383 checkWebproperty(o[1]); |
| 3384 } | 3384 } |
| 3385 | 3385 |
| 3386 core.int buildCounterWebproperties = 0; | 3386 core.int buildCounterWebproperties = 0; |
| 3387 buildWebproperties() { | 3387 buildWebproperties() { |
| 3388 var o = new api.Webproperties(); | 3388 var o = new api.Webproperties(); |
| 3389 buildCounterWebproperties++; | 3389 buildCounterWebproperties++; |
| 3390 if (buildCounterWebproperties < 3) { | 3390 if (buildCounterWebproperties < 3) { |
| 3391 o.items = buildUnnamed939(); | 3391 o.items = buildUnnamed290(); |
| 3392 o.itemsPerPage = 42; | 3392 o.itemsPerPage = 42; |
| 3393 o.kind = "foo"; | 3393 o.kind = "foo"; |
| 3394 o.nextLink = "foo"; | 3394 o.nextLink = "foo"; |
| 3395 o.previousLink = "foo"; | 3395 o.previousLink = "foo"; |
| 3396 o.startIndex = 42; | 3396 o.startIndex = 42; |
| 3397 o.totalResults = 42; | 3397 o.totalResults = 42; |
| 3398 o.username = "foo"; | 3398 o.username = "foo"; |
| 3399 } | 3399 } |
| 3400 buildCounterWebproperties--; | 3400 buildCounterWebproperties--; |
| 3401 return o; | 3401 return o; |
| 3402 } | 3402 } |
| 3403 | 3403 |
| 3404 checkWebproperties(api.Webproperties o) { | 3404 checkWebproperties(api.Webproperties o) { |
| 3405 buildCounterWebproperties++; | 3405 buildCounterWebproperties++; |
| 3406 if (buildCounterWebproperties < 3) { | 3406 if (buildCounterWebproperties < 3) { |
| 3407 checkUnnamed939(o.items); | 3407 checkUnnamed290(o.items); |
| 3408 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3408 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3409 unittest.expect(o.kind, unittest.equals('foo')); | 3409 unittest.expect(o.kind, unittest.equals('foo')); |
| 3410 unittest.expect(o.nextLink, unittest.equals('foo')); | 3410 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3411 unittest.expect(o.previousLink, unittest.equals('foo')); | 3411 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3412 unittest.expect(o.startIndex, unittest.equals(42)); | 3412 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3413 unittest.expect(o.totalResults, unittest.equals(42)); | 3413 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3414 unittest.expect(o.username, unittest.equals('foo')); | 3414 unittest.expect(o.username, unittest.equals('foo')); |
| 3415 } | 3415 } |
| 3416 buildCounterWebproperties--; | 3416 buildCounterWebproperties--; |
| 3417 } | 3417 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3451 | 3451 |
| 3452 checkWebpropertyParentLink(api.WebpropertyParentLink o) { | 3452 checkWebpropertyParentLink(api.WebpropertyParentLink o) { |
| 3453 buildCounterWebpropertyParentLink++; | 3453 buildCounterWebpropertyParentLink++; |
| 3454 if (buildCounterWebpropertyParentLink < 3) { | 3454 if (buildCounterWebpropertyParentLink < 3) { |
| 3455 unittest.expect(o.href, unittest.equals('foo')); | 3455 unittest.expect(o.href, unittest.equals('foo')); |
| 3456 unittest.expect(o.type, unittest.equals('foo')); | 3456 unittest.expect(o.type, unittest.equals('foo')); |
| 3457 } | 3457 } |
| 3458 buildCounterWebpropertyParentLink--; | 3458 buildCounterWebpropertyParentLink--; |
| 3459 } | 3459 } |
| 3460 | 3460 |
| 3461 buildUnnamed940() { | 3461 buildUnnamed291() { |
| 3462 var o = new core.List<core.String>(); | 3462 var o = new core.List<core.String>(); |
| 3463 o.add("foo"); | 3463 o.add("foo"); |
| 3464 o.add("foo"); | 3464 o.add("foo"); |
| 3465 return o; | 3465 return o; |
| 3466 } | 3466 } |
| 3467 | 3467 |
| 3468 checkUnnamed940(core.List<core.String> o) { | 3468 checkUnnamed291(core.List<core.String> o) { |
| 3469 unittest.expect(o, unittest.hasLength(2)); | 3469 unittest.expect(o, unittest.hasLength(2)); |
| 3470 unittest.expect(o[0], unittest.equals('foo')); | 3470 unittest.expect(o[0], unittest.equals('foo')); |
| 3471 unittest.expect(o[1], unittest.equals('foo')); | 3471 unittest.expect(o[1], unittest.equals('foo')); |
| 3472 } | 3472 } |
| 3473 | 3473 |
| 3474 core.int buildCounterWebpropertyPermissions = 0; | 3474 core.int buildCounterWebpropertyPermissions = 0; |
| 3475 buildWebpropertyPermissions() { | 3475 buildWebpropertyPermissions() { |
| 3476 var o = new api.WebpropertyPermissions(); | 3476 var o = new api.WebpropertyPermissions(); |
| 3477 buildCounterWebpropertyPermissions++; | 3477 buildCounterWebpropertyPermissions++; |
| 3478 if (buildCounterWebpropertyPermissions < 3) { | 3478 if (buildCounterWebpropertyPermissions < 3) { |
| 3479 o.effective = buildUnnamed940(); | 3479 o.effective = buildUnnamed291(); |
| 3480 } | 3480 } |
| 3481 buildCounterWebpropertyPermissions--; | 3481 buildCounterWebpropertyPermissions--; |
| 3482 return o; | 3482 return o; |
| 3483 } | 3483 } |
| 3484 | 3484 |
| 3485 checkWebpropertyPermissions(api.WebpropertyPermissions o) { | 3485 checkWebpropertyPermissions(api.WebpropertyPermissions o) { |
| 3486 buildCounterWebpropertyPermissions++; | 3486 buildCounterWebpropertyPermissions++; |
| 3487 if (buildCounterWebpropertyPermissions < 3) { | 3487 if (buildCounterWebpropertyPermissions < 3) { |
| 3488 checkUnnamed940(o.effective); | 3488 checkUnnamed291(o.effective); |
| 3489 } | 3489 } |
| 3490 buildCounterWebpropertyPermissions--; | 3490 buildCounterWebpropertyPermissions--; |
| 3491 } | 3491 } |
| 3492 | 3492 |
| 3493 core.int buildCounterWebproperty = 0; | 3493 core.int buildCounterWebproperty = 0; |
| 3494 buildWebproperty() { | 3494 buildWebproperty() { |
| 3495 var o = new api.Webproperty(); | 3495 var o = new api.Webproperty(); |
| 3496 buildCounterWebproperty++; | 3496 buildCounterWebproperty++; |
| 3497 if (buildCounterWebproperty < 3) { | 3497 if (buildCounterWebproperty < 3) { |
| 3498 o.accountId = "foo"; | 3498 o.accountId = "foo"; |
| (...skipping 6143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9642 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou
ntTicket response) { | 9642 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou
ntTicket response) { |
| 9643 checkAccountTicket(response); | 9643 checkAccountTicket(response); |
| 9644 }))); | 9644 }))); |
| 9645 }); | 9645 }); |
| 9646 | 9646 |
| 9647 }); | 9647 }); |
| 9648 | 9648 |
| 9649 | 9649 |
| 9650 } | 9650 } |
| 9651 | 9651 |
| OLD | NEW |