| 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 buildUnnamed1233() { | 75 buildUnnamed1490() { |
| 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 checkUnnamed1233(core.List<core.String> o) { | 82 checkUnnamed1490(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 = buildUnnamed1233(); | 93 o.effective = buildUnnamed1490(); |
| 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 checkUnnamed1233(o.effective); | 102 checkUnnamed1490(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(); |
| 113 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 113 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| 114 o.id = "foo"; | 114 o.id = "foo"; |
| 115 o.kind = "foo"; | 115 o.kind = "foo"; |
| 116 o.name = "foo"; | 116 o.name = "foo"; |
| 117 o.permissions = buildAccountPermissions(); | 117 o.permissions = buildAccountPermissions(); |
| 118 o.selfLink = "foo"; | 118 o.selfLink = "foo"; |
| 119 o.starred = true; |
| 119 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 120 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 120 } | 121 } |
| 121 buildCounterAccount--; | 122 buildCounterAccount--; |
| 122 return o; | 123 return o; |
| 123 } | 124 } |
| 124 | 125 |
| 125 checkAccount(api.Account o) { | 126 checkAccount(api.Account o) { |
| 126 buildCounterAccount++; | 127 buildCounterAccount++; |
| 127 if (buildCounterAccount < 3) { | 128 if (buildCounterAccount < 3) { |
| 128 checkAccountChildLink(o.childLink); | 129 checkAccountChildLink(o.childLink); |
| 129 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 130 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 130 unittest.expect(o.id, unittest.equals('foo')); | 131 unittest.expect(o.id, unittest.equals('foo')); |
| 131 unittest.expect(o.kind, unittest.equals('foo')); | 132 unittest.expect(o.kind, unittest.equals('foo')); |
| 132 unittest.expect(o.name, unittest.equals('foo')); | 133 unittest.expect(o.name, unittest.equals('foo')); |
| 133 checkAccountPermissions(o.permissions); | 134 checkAccountPermissions(o.permissions); |
| 134 unittest.expect(o.selfLink, unittest.equals('foo')); | 135 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 136 unittest.expect(o.starred, unittest.isTrue); |
| 135 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 137 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 136 } | 138 } |
| 137 buildCounterAccount--; | 139 buildCounterAccount--; |
| 138 } | 140 } |
| 139 | 141 |
| 140 core.int buildCounterAccountRef = 0; | 142 core.int buildCounterAccountRef = 0; |
| 141 buildAccountRef() { | 143 buildAccountRef() { |
| 142 var o = new api.AccountRef(); | 144 var o = new api.AccountRef(); |
| 143 buildCounterAccountRef++; | 145 buildCounterAccountRef++; |
| 144 if (buildCounterAccountRef < 3) { | 146 if (buildCounterAccountRef < 3) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 155 buildCounterAccountRef++; | 157 buildCounterAccountRef++; |
| 156 if (buildCounterAccountRef < 3) { | 158 if (buildCounterAccountRef < 3) { |
| 157 unittest.expect(o.href, unittest.equals('foo')); | 159 unittest.expect(o.href, unittest.equals('foo')); |
| 158 unittest.expect(o.id, unittest.equals('foo')); | 160 unittest.expect(o.id, unittest.equals('foo')); |
| 159 unittest.expect(o.kind, unittest.equals('foo')); | 161 unittest.expect(o.kind, unittest.equals('foo')); |
| 160 unittest.expect(o.name, unittest.equals('foo')); | 162 unittest.expect(o.name, unittest.equals('foo')); |
| 161 } | 163 } |
| 162 buildCounterAccountRef--; | 164 buildCounterAccountRef--; |
| 163 } | 165 } |
| 164 | 166 |
| 165 buildUnnamed1234() { | 167 buildUnnamed1491() { |
| 166 var o = new core.List<api.AccountSummary>(); | 168 var o = new core.List<api.AccountSummary>(); |
| 167 o.add(buildAccountSummary()); | 169 o.add(buildAccountSummary()); |
| 168 o.add(buildAccountSummary()); | 170 o.add(buildAccountSummary()); |
| 169 return o; | 171 return o; |
| 170 } | 172 } |
| 171 | 173 |
| 172 checkUnnamed1234(core.List<api.AccountSummary> o) { | 174 checkUnnamed1491(core.List<api.AccountSummary> o) { |
| 173 unittest.expect(o, unittest.hasLength(2)); | 175 unittest.expect(o, unittest.hasLength(2)); |
| 174 checkAccountSummary(o[0]); | 176 checkAccountSummary(o[0]); |
| 175 checkAccountSummary(o[1]); | 177 checkAccountSummary(o[1]); |
| 176 } | 178 } |
| 177 | 179 |
| 178 core.int buildCounterAccountSummaries = 0; | 180 core.int buildCounterAccountSummaries = 0; |
| 179 buildAccountSummaries() { | 181 buildAccountSummaries() { |
| 180 var o = new api.AccountSummaries(); | 182 var o = new api.AccountSummaries(); |
| 181 buildCounterAccountSummaries++; | 183 buildCounterAccountSummaries++; |
| 182 if (buildCounterAccountSummaries < 3) { | 184 if (buildCounterAccountSummaries < 3) { |
| 183 o.items = buildUnnamed1234(); | 185 o.items = buildUnnamed1491(); |
| 184 o.itemsPerPage = 42; | 186 o.itemsPerPage = 42; |
| 185 o.kind = "foo"; | 187 o.kind = "foo"; |
| 186 o.nextLink = "foo"; | 188 o.nextLink = "foo"; |
| 187 o.previousLink = "foo"; | 189 o.previousLink = "foo"; |
| 188 o.startIndex = 42; | 190 o.startIndex = 42; |
| 189 o.totalResults = 42; | 191 o.totalResults = 42; |
| 190 o.username = "foo"; | 192 o.username = "foo"; |
| 191 } | 193 } |
| 192 buildCounterAccountSummaries--; | 194 buildCounterAccountSummaries--; |
| 193 return o; | 195 return o; |
| 194 } | 196 } |
| 195 | 197 |
| 196 checkAccountSummaries(api.AccountSummaries o) { | 198 checkAccountSummaries(api.AccountSummaries o) { |
| 197 buildCounterAccountSummaries++; | 199 buildCounterAccountSummaries++; |
| 198 if (buildCounterAccountSummaries < 3) { | 200 if (buildCounterAccountSummaries < 3) { |
| 199 checkUnnamed1234(o.items); | 201 checkUnnamed1491(o.items); |
| 200 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 202 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 201 unittest.expect(o.kind, unittest.equals('foo')); | 203 unittest.expect(o.kind, unittest.equals('foo')); |
| 202 unittest.expect(o.nextLink, unittest.equals('foo')); | 204 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 203 unittest.expect(o.previousLink, unittest.equals('foo')); | 205 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 204 unittest.expect(o.startIndex, unittest.equals(42)); | 206 unittest.expect(o.startIndex, unittest.equals(42)); |
| 205 unittest.expect(o.totalResults, unittest.equals(42)); | 207 unittest.expect(o.totalResults, unittest.equals(42)); |
| 206 unittest.expect(o.username, unittest.equals('foo')); | 208 unittest.expect(o.username, unittest.equals('foo')); |
| 207 } | 209 } |
| 208 buildCounterAccountSummaries--; | 210 buildCounterAccountSummaries--; |
| 209 } | 211 } |
| 210 | 212 |
| 211 buildUnnamed1235() { | 213 buildUnnamed1492() { |
| 212 var o = new core.List<api.WebPropertySummary>(); | 214 var o = new core.List<api.WebPropertySummary>(); |
| 213 o.add(buildWebPropertySummary()); | 215 o.add(buildWebPropertySummary()); |
| 214 o.add(buildWebPropertySummary()); | 216 o.add(buildWebPropertySummary()); |
| 215 return o; | 217 return o; |
| 216 } | 218 } |
| 217 | 219 |
| 218 checkUnnamed1235(core.List<api.WebPropertySummary> o) { | 220 checkUnnamed1492(core.List<api.WebPropertySummary> o) { |
| 219 unittest.expect(o, unittest.hasLength(2)); | 221 unittest.expect(o, unittest.hasLength(2)); |
| 220 checkWebPropertySummary(o[0]); | 222 checkWebPropertySummary(o[0]); |
| 221 checkWebPropertySummary(o[1]); | 223 checkWebPropertySummary(o[1]); |
| 222 } | 224 } |
| 223 | 225 |
| 224 core.int buildCounterAccountSummary = 0; | 226 core.int buildCounterAccountSummary = 0; |
| 225 buildAccountSummary() { | 227 buildAccountSummary() { |
| 226 var o = new api.AccountSummary(); | 228 var o = new api.AccountSummary(); |
| 227 buildCounterAccountSummary++; | 229 buildCounterAccountSummary++; |
| 228 if (buildCounterAccountSummary < 3) { | 230 if (buildCounterAccountSummary < 3) { |
| 229 o.id = "foo"; | 231 o.id = "foo"; |
| 230 o.kind = "foo"; | 232 o.kind = "foo"; |
| 231 o.name = "foo"; | 233 o.name = "foo"; |
| 232 o.webProperties = buildUnnamed1235(); | 234 o.starred = true; |
| 235 o.webProperties = buildUnnamed1492(); |
| 233 } | 236 } |
| 234 buildCounterAccountSummary--; | 237 buildCounterAccountSummary--; |
| 235 return o; | 238 return o; |
| 236 } | 239 } |
| 237 | 240 |
| 238 checkAccountSummary(api.AccountSummary o) { | 241 checkAccountSummary(api.AccountSummary o) { |
| 239 buildCounterAccountSummary++; | 242 buildCounterAccountSummary++; |
| 240 if (buildCounterAccountSummary < 3) { | 243 if (buildCounterAccountSummary < 3) { |
| 241 unittest.expect(o.id, unittest.equals('foo')); | 244 unittest.expect(o.id, unittest.equals('foo')); |
| 242 unittest.expect(o.kind, unittest.equals('foo')); | 245 unittest.expect(o.kind, unittest.equals('foo')); |
| 243 unittest.expect(o.name, unittest.equals('foo')); | 246 unittest.expect(o.name, unittest.equals('foo')); |
| 244 checkUnnamed1235(o.webProperties); | 247 unittest.expect(o.starred, unittest.isTrue); |
| 248 checkUnnamed1492(o.webProperties); |
| 245 } | 249 } |
| 246 buildCounterAccountSummary--; | 250 buildCounterAccountSummary--; |
| 247 } | 251 } |
| 248 | 252 |
| 249 core.int buildCounterAccountTicket = 0; | 253 core.int buildCounterAccountTicket = 0; |
| 250 buildAccountTicket() { | 254 buildAccountTicket() { |
| 251 var o = new api.AccountTicket(); | 255 var o = new api.AccountTicket(); |
| 252 buildCounterAccountTicket++; | 256 buildCounterAccountTicket++; |
| 253 if (buildCounterAccountTicket < 3) { | 257 if (buildCounterAccountTicket < 3) { |
| 254 o.account = buildAccount(); | 258 o.account = buildAccount(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 268 checkAccount(o.account); | 272 checkAccount(o.account); |
| 269 unittest.expect(o.id, unittest.equals('foo')); | 273 unittest.expect(o.id, unittest.equals('foo')); |
| 270 unittest.expect(o.kind, unittest.equals('foo')); | 274 unittest.expect(o.kind, unittest.equals('foo')); |
| 271 checkProfile(o.profile); | 275 checkProfile(o.profile); |
| 272 unittest.expect(o.redirectUri, unittest.equals('foo')); | 276 unittest.expect(o.redirectUri, unittest.equals('foo')); |
| 273 checkWebproperty(o.webproperty); | 277 checkWebproperty(o.webproperty); |
| 274 } | 278 } |
| 275 buildCounterAccountTicket--; | 279 buildCounterAccountTicket--; |
| 276 } | 280 } |
| 277 | 281 |
| 278 buildUnnamed1236() { | 282 buildUnnamed1493() { |
| 279 var o = new core.List<api.Account>(); | 283 var o = new core.List<api.Account>(); |
| 280 o.add(buildAccount()); | 284 o.add(buildAccount()); |
| 281 o.add(buildAccount()); | 285 o.add(buildAccount()); |
| 282 return o; | 286 return o; |
| 283 } | 287 } |
| 284 | 288 |
| 285 checkUnnamed1236(core.List<api.Account> o) { | 289 checkUnnamed1493(core.List<api.Account> o) { |
| 286 unittest.expect(o, unittest.hasLength(2)); | 290 unittest.expect(o, unittest.hasLength(2)); |
| 287 checkAccount(o[0]); | 291 checkAccount(o[0]); |
| 288 checkAccount(o[1]); | 292 checkAccount(o[1]); |
| 289 } | 293 } |
| 290 | 294 |
| 291 core.int buildCounterAccounts = 0; | 295 core.int buildCounterAccounts = 0; |
| 292 buildAccounts() { | 296 buildAccounts() { |
| 293 var o = new api.Accounts(); | 297 var o = new api.Accounts(); |
| 294 buildCounterAccounts++; | 298 buildCounterAccounts++; |
| 295 if (buildCounterAccounts < 3) { | 299 if (buildCounterAccounts < 3) { |
| 296 o.items = buildUnnamed1236(); | 300 o.items = buildUnnamed1493(); |
| 297 o.itemsPerPage = 42; | 301 o.itemsPerPage = 42; |
| 298 o.kind = "foo"; | 302 o.kind = "foo"; |
| 299 o.nextLink = "foo"; | 303 o.nextLink = "foo"; |
| 300 o.previousLink = "foo"; | 304 o.previousLink = "foo"; |
| 301 o.startIndex = 42; | 305 o.startIndex = 42; |
| 302 o.totalResults = 42; | 306 o.totalResults = 42; |
| 303 o.username = "foo"; | 307 o.username = "foo"; |
| 304 } | 308 } |
| 305 buildCounterAccounts--; | 309 buildCounterAccounts--; |
| 306 return o; | 310 return o; |
| 307 } | 311 } |
| 308 | 312 |
| 309 checkAccounts(api.Accounts o) { | 313 checkAccounts(api.Accounts o) { |
| 310 buildCounterAccounts++; | 314 buildCounterAccounts++; |
| 311 if (buildCounterAccounts < 3) { | 315 if (buildCounterAccounts < 3) { |
| 312 checkUnnamed1236(o.items); | 316 checkUnnamed1493(o.items); |
| 313 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 317 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 314 unittest.expect(o.kind, unittest.equals('foo')); | 318 unittest.expect(o.kind, unittest.equals('foo')); |
| 315 unittest.expect(o.nextLink, unittest.equals('foo')); | 319 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 316 unittest.expect(o.previousLink, unittest.equals('foo')); | 320 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 317 unittest.expect(o.startIndex, unittest.equals(42)); | 321 unittest.expect(o.startIndex, unittest.equals(42)); |
| 318 unittest.expect(o.totalResults, unittest.equals(42)); | 322 unittest.expect(o.totalResults, unittest.equals(42)); |
| 319 unittest.expect(o.username, unittest.equals('foo')); | 323 unittest.expect(o.username, unittest.equals('foo')); |
| 320 } | 324 } |
| 321 buildCounterAccounts--; | 325 buildCounterAccounts--; |
| 322 } | 326 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 337 checkAdWordsAccount(api.AdWordsAccount o) { | 341 checkAdWordsAccount(api.AdWordsAccount o) { |
| 338 buildCounterAdWordsAccount++; | 342 buildCounterAdWordsAccount++; |
| 339 if (buildCounterAdWordsAccount < 3) { | 343 if (buildCounterAdWordsAccount < 3) { |
| 340 unittest.expect(o.autoTaggingEnabled, unittest.isTrue); | 344 unittest.expect(o.autoTaggingEnabled, unittest.isTrue); |
| 341 unittest.expect(o.customerId, unittest.equals('foo')); | 345 unittest.expect(o.customerId, unittest.equals('foo')); |
| 342 unittest.expect(o.kind, unittest.equals('foo')); | 346 unittest.expect(o.kind, unittest.equals('foo')); |
| 343 } | 347 } |
| 344 buildCounterAdWordsAccount--; | 348 buildCounterAdWordsAccount--; |
| 345 } | 349 } |
| 346 | 350 |
| 347 buildUnnamed1237() { | 351 buildUnnamed1494() { |
| 348 var o = new core.List<core.String>(); | 352 var o = new core.List<core.String>(); |
| 349 o.add("foo"); | 353 o.add("foo"); |
| 350 o.add("foo"); | 354 o.add("foo"); |
| 351 return o; | 355 return o; |
| 352 } | 356 } |
| 353 | 357 |
| 354 checkUnnamed1237(core.List<core.String> o) { | 358 checkUnnamed1494(core.List<core.String> o) { |
| 355 unittest.expect(o, unittest.hasLength(2)); | 359 unittest.expect(o, unittest.hasLength(2)); |
| 356 unittest.expect(o[0], unittest.equals('foo')); | 360 unittest.expect(o[0], unittest.equals('foo')); |
| 357 unittest.expect(o[1], unittest.equals('foo')); | 361 unittest.expect(o[1], unittest.equals('foo')); |
| 358 } | 362 } |
| 359 | 363 |
| 360 core.int buildCounterAnalyticsDataimportDeleteUploadDataRequest = 0; | 364 core.int buildCounterAnalyticsDataimportDeleteUploadDataRequest = 0; |
| 361 buildAnalyticsDataimportDeleteUploadDataRequest() { | 365 buildAnalyticsDataimportDeleteUploadDataRequest() { |
| 362 var o = new api.AnalyticsDataimportDeleteUploadDataRequest(); | 366 var o = new api.AnalyticsDataimportDeleteUploadDataRequest(); |
| 363 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; | 367 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; |
| 364 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { | 368 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { |
| 365 o.customDataImportUids = buildUnnamed1237(); | 369 o.customDataImportUids = buildUnnamed1494(); |
| 366 } | 370 } |
| 367 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; | 371 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; |
| 368 return o; | 372 return o; |
| 369 } | 373 } |
| 370 | 374 |
| 371 checkAnalyticsDataimportDeleteUploadDataRequest(api.AnalyticsDataimportDeleteUpl
oadDataRequest o) { | 375 checkAnalyticsDataimportDeleteUploadDataRequest(api.AnalyticsDataimportDeleteUpl
oadDataRequest o) { |
| 372 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; | 376 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; |
| 373 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { | 377 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { |
| 374 checkUnnamed1237(o.customDataImportUids); | 378 checkUnnamed1494(o.customDataImportUids); |
| 375 } | 379 } |
| 376 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; | 380 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; |
| 377 } | 381 } |
| 378 | 382 |
| 379 buildUnnamed1238() { | 383 buildUnnamed1495() { |
| 380 var o = new core.Map<core.String, core.String>(); | 384 var o = new core.Map<core.String, core.String>(); |
| 381 o["x"] = "foo"; | 385 o["x"] = "foo"; |
| 382 o["y"] = "foo"; | 386 o["y"] = "foo"; |
| 383 return o; | 387 return o; |
| 384 } | 388 } |
| 385 | 389 |
| 386 checkUnnamed1238(core.Map<core.String, core.String> o) { | 390 checkUnnamed1495(core.Map<core.String, core.String> o) { |
| 387 unittest.expect(o, unittest.hasLength(2)); | 391 unittest.expect(o, unittest.hasLength(2)); |
| 388 unittest.expect(o["x"], unittest.equals('foo')); | 392 unittest.expect(o["x"], unittest.equals('foo')); |
| 389 unittest.expect(o["y"], unittest.equals('foo')); | 393 unittest.expect(o["y"], unittest.equals('foo')); |
| 390 } | 394 } |
| 391 | 395 |
| 392 core.int buildCounterColumn = 0; | 396 core.int buildCounterColumn = 0; |
| 393 buildColumn() { | 397 buildColumn() { |
| 394 var o = new api.Column(); | 398 var o = new api.Column(); |
| 395 buildCounterColumn++; | 399 buildCounterColumn++; |
| 396 if (buildCounterColumn < 3) { | 400 if (buildCounterColumn < 3) { |
| 397 o.attributes = buildUnnamed1238(); | 401 o.attributes = buildUnnamed1495(); |
| 398 o.id = "foo"; | 402 o.id = "foo"; |
| 399 o.kind = "foo"; | 403 o.kind = "foo"; |
| 400 } | 404 } |
| 401 buildCounterColumn--; | 405 buildCounterColumn--; |
| 402 return o; | 406 return o; |
| 403 } | 407 } |
| 404 | 408 |
| 405 checkColumn(api.Column o) { | 409 checkColumn(api.Column o) { |
| 406 buildCounterColumn++; | 410 buildCounterColumn++; |
| 407 if (buildCounterColumn < 3) { | 411 if (buildCounterColumn < 3) { |
| 408 checkUnnamed1238(o.attributes); | 412 checkUnnamed1495(o.attributes); |
| 409 unittest.expect(o.id, unittest.equals('foo')); | 413 unittest.expect(o.id, unittest.equals('foo')); |
| 410 unittest.expect(o.kind, unittest.equals('foo')); | 414 unittest.expect(o.kind, unittest.equals('foo')); |
| 411 } | 415 } |
| 412 buildCounterColumn--; | 416 buildCounterColumn--; |
| 413 } | 417 } |
| 414 | 418 |
| 415 buildUnnamed1239() { | 419 buildUnnamed1496() { |
| 416 var o = new core.List<core.String>(); | 420 var o = new core.List<core.String>(); |
| 417 o.add("foo"); | 421 o.add("foo"); |
| 418 o.add("foo"); | 422 o.add("foo"); |
| 419 return o; | 423 return o; |
| 420 } | 424 } |
| 421 | 425 |
| 422 checkUnnamed1239(core.List<core.String> o) { | 426 checkUnnamed1496(core.List<core.String> o) { |
| 423 unittest.expect(o, unittest.hasLength(2)); | 427 unittest.expect(o, unittest.hasLength(2)); |
| 424 unittest.expect(o[0], unittest.equals('foo')); | 428 unittest.expect(o[0], unittest.equals('foo')); |
| 425 unittest.expect(o[1], unittest.equals('foo')); | 429 unittest.expect(o[1], unittest.equals('foo')); |
| 426 } | 430 } |
| 427 | 431 |
| 428 buildUnnamed1240() { | 432 buildUnnamed1497() { |
| 429 var o = new core.List<api.Column>(); | 433 var o = new core.List<api.Column>(); |
| 430 o.add(buildColumn()); | 434 o.add(buildColumn()); |
| 431 o.add(buildColumn()); | 435 o.add(buildColumn()); |
| 432 return o; | 436 return o; |
| 433 } | 437 } |
| 434 | 438 |
| 435 checkUnnamed1240(core.List<api.Column> o) { | 439 checkUnnamed1497(core.List<api.Column> o) { |
| 436 unittest.expect(o, unittest.hasLength(2)); | 440 unittest.expect(o, unittest.hasLength(2)); |
| 437 checkColumn(o[0]); | 441 checkColumn(o[0]); |
| 438 checkColumn(o[1]); | 442 checkColumn(o[1]); |
| 439 } | 443 } |
| 440 | 444 |
| 441 core.int buildCounterColumns = 0; | 445 core.int buildCounterColumns = 0; |
| 442 buildColumns() { | 446 buildColumns() { |
| 443 var o = new api.Columns(); | 447 var o = new api.Columns(); |
| 444 buildCounterColumns++; | 448 buildCounterColumns++; |
| 445 if (buildCounterColumns < 3) { | 449 if (buildCounterColumns < 3) { |
| 446 o.attributeNames = buildUnnamed1239(); | 450 o.attributeNames = buildUnnamed1496(); |
| 447 o.etag = "foo"; | 451 o.etag = "foo"; |
| 448 o.items = buildUnnamed1240(); | 452 o.items = buildUnnamed1497(); |
| 449 o.kind = "foo"; | 453 o.kind = "foo"; |
| 450 o.totalResults = 42; | 454 o.totalResults = 42; |
| 451 } | 455 } |
| 452 buildCounterColumns--; | 456 buildCounterColumns--; |
| 453 return o; | 457 return o; |
| 454 } | 458 } |
| 455 | 459 |
| 456 checkColumns(api.Columns o) { | 460 checkColumns(api.Columns o) { |
| 457 buildCounterColumns++; | 461 buildCounterColumns++; |
| 458 if (buildCounterColumns < 3) { | 462 if (buildCounterColumns < 3) { |
| 459 checkUnnamed1239(o.attributeNames); | 463 checkUnnamed1496(o.attributeNames); |
| 460 unittest.expect(o.etag, unittest.equals('foo')); | 464 unittest.expect(o.etag, unittest.equals('foo')); |
| 461 checkUnnamed1240(o.items); | 465 checkUnnamed1497(o.items); |
| 462 unittest.expect(o.kind, unittest.equals('foo')); | 466 unittest.expect(o.kind, unittest.equals('foo')); |
| 463 unittest.expect(o.totalResults, unittest.equals(42)); | 467 unittest.expect(o.totalResults, unittest.equals(42)); |
| 464 } | 468 } |
| 465 buildCounterColumns--; | 469 buildCounterColumns--; |
| 466 } | 470 } |
| 467 | 471 |
| 468 core.int buildCounterCustomDataSourceChildLink = 0; | 472 core.int buildCounterCustomDataSourceChildLink = 0; |
| 469 buildCustomDataSourceChildLink() { | 473 buildCustomDataSourceChildLink() { |
| 470 var o = new api.CustomDataSourceChildLink(); | 474 var o = new api.CustomDataSourceChildLink(); |
| 471 buildCounterCustomDataSourceChildLink++; | 475 buildCounterCustomDataSourceChildLink++; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 500 | 504 |
| 501 checkCustomDataSourceParentLink(api.CustomDataSourceParentLink o) { | 505 checkCustomDataSourceParentLink(api.CustomDataSourceParentLink o) { |
| 502 buildCounterCustomDataSourceParentLink++; | 506 buildCounterCustomDataSourceParentLink++; |
| 503 if (buildCounterCustomDataSourceParentLink < 3) { | 507 if (buildCounterCustomDataSourceParentLink < 3) { |
| 504 unittest.expect(o.href, unittest.equals('foo')); | 508 unittest.expect(o.href, unittest.equals('foo')); |
| 505 unittest.expect(o.type, unittest.equals('foo')); | 509 unittest.expect(o.type, unittest.equals('foo')); |
| 506 } | 510 } |
| 507 buildCounterCustomDataSourceParentLink--; | 511 buildCounterCustomDataSourceParentLink--; |
| 508 } | 512 } |
| 509 | 513 |
| 510 buildUnnamed1241() { | 514 buildUnnamed1498() { |
| 511 var o = new core.List<core.String>(); | 515 var o = new core.List<core.String>(); |
| 512 o.add("foo"); | 516 o.add("foo"); |
| 513 o.add("foo"); | 517 o.add("foo"); |
| 514 return o; | 518 return o; |
| 515 } | 519 } |
| 516 | 520 |
| 517 checkUnnamed1241(core.List<core.String> o) { | 521 checkUnnamed1498(core.List<core.String> o) { |
| 518 unittest.expect(o, unittest.hasLength(2)); | 522 unittest.expect(o, unittest.hasLength(2)); |
| 519 unittest.expect(o[0], unittest.equals('foo')); | 523 unittest.expect(o[0], unittest.equals('foo')); |
| 520 unittest.expect(o[1], unittest.equals('foo')); | 524 unittest.expect(o[1], unittest.equals('foo')); |
| 521 } | 525 } |
| 522 | 526 |
| 523 core.int buildCounterCustomDataSource = 0; | 527 core.int buildCounterCustomDataSource = 0; |
| 524 buildCustomDataSource() { | 528 buildCustomDataSource() { |
| 525 var o = new api.CustomDataSource(); | 529 var o = new api.CustomDataSource(); |
| 526 buildCounterCustomDataSource++; | 530 buildCounterCustomDataSource++; |
| 527 if (buildCounterCustomDataSource < 3) { | 531 if (buildCounterCustomDataSource < 3) { |
| 528 o.accountId = "foo"; | 532 o.accountId = "foo"; |
| 529 o.childLink = buildCustomDataSourceChildLink(); | 533 o.childLink = buildCustomDataSourceChildLink(); |
| 530 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 534 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| 531 o.description = "foo"; | 535 o.description = "foo"; |
| 532 o.id = "foo"; | 536 o.id = "foo"; |
| 533 o.importBehavior = "foo"; | 537 o.importBehavior = "foo"; |
| 534 o.kind = "foo"; | 538 o.kind = "foo"; |
| 535 o.name = "foo"; | 539 o.name = "foo"; |
| 536 o.parentLink = buildCustomDataSourceParentLink(); | 540 o.parentLink = buildCustomDataSourceParentLink(); |
| 537 o.profilesLinked = buildUnnamed1241(); | 541 o.profilesLinked = buildUnnamed1498(); |
| 538 o.selfLink = "foo"; | 542 o.selfLink = "foo"; |
| 539 o.type = "foo"; | 543 o.type = "foo"; |
| 540 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 544 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 541 o.uploadType = "foo"; | 545 o.uploadType = "foo"; |
| 542 o.webPropertyId = "foo"; | 546 o.webPropertyId = "foo"; |
| 543 } | 547 } |
| 544 buildCounterCustomDataSource--; | 548 buildCounterCustomDataSource--; |
| 545 return o; | 549 return o; |
| 546 } | 550 } |
| 547 | 551 |
| 548 checkCustomDataSource(api.CustomDataSource o) { | 552 checkCustomDataSource(api.CustomDataSource o) { |
| 549 buildCounterCustomDataSource++; | 553 buildCounterCustomDataSource++; |
| 550 if (buildCounterCustomDataSource < 3) { | 554 if (buildCounterCustomDataSource < 3) { |
| 551 unittest.expect(o.accountId, unittest.equals('foo')); | 555 unittest.expect(o.accountId, unittest.equals('foo')); |
| 552 checkCustomDataSourceChildLink(o.childLink); | 556 checkCustomDataSourceChildLink(o.childLink); |
| 553 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 557 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 554 unittest.expect(o.description, unittest.equals('foo')); | 558 unittest.expect(o.description, unittest.equals('foo')); |
| 555 unittest.expect(o.id, unittest.equals('foo')); | 559 unittest.expect(o.id, unittest.equals('foo')); |
| 556 unittest.expect(o.importBehavior, unittest.equals('foo')); | 560 unittest.expect(o.importBehavior, unittest.equals('foo')); |
| 557 unittest.expect(o.kind, unittest.equals('foo')); | 561 unittest.expect(o.kind, unittest.equals('foo')); |
| 558 unittest.expect(o.name, unittest.equals('foo')); | 562 unittest.expect(o.name, unittest.equals('foo')); |
| 559 checkCustomDataSourceParentLink(o.parentLink); | 563 checkCustomDataSourceParentLink(o.parentLink); |
| 560 checkUnnamed1241(o.profilesLinked); | 564 checkUnnamed1498(o.profilesLinked); |
| 561 unittest.expect(o.selfLink, unittest.equals('foo')); | 565 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 562 unittest.expect(o.type, unittest.equals('foo')); | 566 unittest.expect(o.type, unittest.equals('foo')); |
| 563 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 567 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 564 unittest.expect(o.uploadType, unittest.equals('foo')); | 568 unittest.expect(o.uploadType, unittest.equals('foo')); |
| 565 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 569 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 566 } | 570 } |
| 567 buildCounterCustomDataSource--; | 571 buildCounterCustomDataSource--; |
| 568 } | 572 } |
| 569 | 573 |
| 570 buildUnnamed1242() { | 574 buildUnnamed1499() { |
| 571 var o = new core.List<api.CustomDataSource>(); | 575 var o = new core.List<api.CustomDataSource>(); |
| 572 o.add(buildCustomDataSource()); | 576 o.add(buildCustomDataSource()); |
| 573 o.add(buildCustomDataSource()); | 577 o.add(buildCustomDataSource()); |
| 574 return o; | 578 return o; |
| 575 } | 579 } |
| 576 | 580 |
| 577 checkUnnamed1242(core.List<api.CustomDataSource> o) { | 581 checkUnnamed1499(core.List<api.CustomDataSource> o) { |
| 578 unittest.expect(o, unittest.hasLength(2)); | 582 unittest.expect(o, unittest.hasLength(2)); |
| 579 checkCustomDataSource(o[0]); | 583 checkCustomDataSource(o[0]); |
| 580 checkCustomDataSource(o[1]); | 584 checkCustomDataSource(o[1]); |
| 581 } | 585 } |
| 582 | 586 |
| 583 core.int buildCounterCustomDataSources = 0; | 587 core.int buildCounterCustomDataSources = 0; |
| 584 buildCustomDataSources() { | 588 buildCustomDataSources() { |
| 585 var o = new api.CustomDataSources(); | 589 var o = new api.CustomDataSources(); |
| 586 buildCounterCustomDataSources++; | 590 buildCounterCustomDataSources++; |
| 587 if (buildCounterCustomDataSources < 3) { | 591 if (buildCounterCustomDataSources < 3) { |
| 588 o.items = buildUnnamed1242(); | 592 o.items = buildUnnamed1499(); |
| 589 o.itemsPerPage = 42; | 593 o.itemsPerPage = 42; |
| 590 o.kind = "foo"; | 594 o.kind = "foo"; |
| 591 o.nextLink = "foo"; | 595 o.nextLink = "foo"; |
| 592 o.previousLink = "foo"; | 596 o.previousLink = "foo"; |
| 593 o.startIndex = 42; | 597 o.startIndex = 42; |
| 594 o.totalResults = 42; | 598 o.totalResults = 42; |
| 595 o.username = "foo"; | 599 o.username = "foo"; |
| 596 } | 600 } |
| 597 buildCounterCustomDataSources--; | 601 buildCounterCustomDataSources--; |
| 598 return o; | 602 return o; |
| 599 } | 603 } |
| 600 | 604 |
| 601 checkCustomDataSources(api.CustomDataSources o) { | 605 checkCustomDataSources(api.CustomDataSources o) { |
| 602 buildCounterCustomDataSources++; | 606 buildCounterCustomDataSources++; |
| 603 if (buildCounterCustomDataSources < 3) { | 607 if (buildCounterCustomDataSources < 3) { |
| 604 checkUnnamed1242(o.items); | 608 checkUnnamed1499(o.items); |
| 605 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 609 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 606 unittest.expect(o.kind, unittest.equals('foo')); | 610 unittest.expect(o.kind, unittest.equals('foo')); |
| 607 unittest.expect(o.nextLink, unittest.equals('foo')); | 611 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 608 unittest.expect(o.previousLink, unittest.equals('foo')); | 612 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 609 unittest.expect(o.startIndex, unittest.equals(42)); | 613 unittest.expect(o.startIndex, unittest.equals(42)); |
| 610 unittest.expect(o.totalResults, unittest.equals(42)); | 614 unittest.expect(o.totalResults, unittest.equals(42)); |
| 611 unittest.expect(o.username, unittest.equals('foo')); | 615 unittest.expect(o.username, unittest.equals('foo')); |
| 612 } | 616 } |
| 613 buildCounterCustomDataSources--; | 617 buildCounterCustomDataSources--; |
| 614 } | 618 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 unittest.expect(o.name, unittest.equals('foo')); | 672 unittest.expect(o.name, unittest.equals('foo')); |
| 669 checkCustomDimensionParentLink(o.parentLink); | 673 checkCustomDimensionParentLink(o.parentLink); |
| 670 unittest.expect(o.scope, unittest.equals('foo')); | 674 unittest.expect(o.scope, unittest.equals('foo')); |
| 671 unittest.expect(o.selfLink, unittest.equals('foo')); | 675 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 672 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 676 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 673 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 677 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 674 } | 678 } |
| 675 buildCounterCustomDimension--; | 679 buildCounterCustomDimension--; |
| 676 } | 680 } |
| 677 | 681 |
| 678 buildUnnamed1243() { | 682 buildUnnamed1500() { |
| 679 var o = new core.List<api.CustomDimension>(); | 683 var o = new core.List<api.CustomDimension>(); |
| 680 o.add(buildCustomDimension()); | 684 o.add(buildCustomDimension()); |
| 681 o.add(buildCustomDimension()); | 685 o.add(buildCustomDimension()); |
| 682 return o; | 686 return o; |
| 683 } | 687 } |
| 684 | 688 |
| 685 checkUnnamed1243(core.List<api.CustomDimension> o) { | 689 checkUnnamed1500(core.List<api.CustomDimension> o) { |
| 686 unittest.expect(o, unittest.hasLength(2)); | 690 unittest.expect(o, unittest.hasLength(2)); |
| 687 checkCustomDimension(o[0]); | 691 checkCustomDimension(o[0]); |
| 688 checkCustomDimension(o[1]); | 692 checkCustomDimension(o[1]); |
| 689 } | 693 } |
| 690 | 694 |
| 691 core.int buildCounterCustomDimensions = 0; | 695 core.int buildCounterCustomDimensions = 0; |
| 692 buildCustomDimensions() { | 696 buildCustomDimensions() { |
| 693 var o = new api.CustomDimensions(); | 697 var o = new api.CustomDimensions(); |
| 694 buildCounterCustomDimensions++; | 698 buildCounterCustomDimensions++; |
| 695 if (buildCounterCustomDimensions < 3) { | 699 if (buildCounterCustomDimensions < 3) { |
| 696 o.items = buildUnnamed1243(); | 700 o.items = buildUnnamed1500(); |
| 697 o.itemsPerPage = 42; | 701 o.itemsPerPage = 42; |
| 698 o.kind = "foo"; | 702 o.kind = "foo"; |
| 699 o.nextLink = "foo"; | 703 o.nextLink = "foo"; |
| 700 o.previousLink = "foo"; | 704 o.previousLink = "foo"; |
| 701 o.startIndex = 42; | 705 o.startIndex = 42; |
| 702 o.totalResults = 42; | 706 o.totalResults = 42; |
| 703 o.username = "foo"; | 707 o.username = "foo"; |
| 704 } | 708 } |
| 705 buildCounterCustomDimensions--; | 709 buildCounterCustomDimensions--; |
| 706 return o; | 710 return o; |
| 707 } | 711 } |
| 708 | 712 |
| 709 checkCustomDimensions(api.CustomDimensions o) { | 713 checkCustomDimensions(api.CustomDimensions o) { |
| 710 buildCounterCustomDimensions++; | 714 buildCounterCustomDimensions++; |
| 711 if (buildCounterCustomDimensions < 3) { | 715 if (buildCounterCustomDimensions < 3) { |
| 712 checkUnnamed1243(o.items); | 716 checkUnnamed1500(o.items); |
| 713 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 717 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 714 unittest.expect(o.kind, unittest.equals('foo')); | 718 unittest.expect(o.kind, unittest.equals('foo')); |
| 715 unittest.expect(o.nextLink, unittest.equals('foo')); | 719 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 716 unittest.expect(o.previousLink, unittest.equals('foo')); | 720 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 717 unittest.expect(o.startIndex, unittest.equals(42)); | 721 unittest.expect(o.startIndex, unittest.equals(42)); |
| 718 unittest.expect(o.totalResults, unittest.equals(42)); | 722 unittest.expect(o.totalResults, unittest.equals(42)); |
| 719 unittest.expect(o.username, unittest.equals('foo')); | 723 unittest.expect(o.username, unittest.equals('foo')); |
| 720 } | 724 } |
| 721 buildCounterCustomDimensions--; | 725 buildCounterCustomDimensions--; |
| 722 } | 726 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 checkCustomMetricParentLink(o.parentLink); | 786 checkCustomMetricParentLink(o.parentLink); |
| 783 unittest.expect(o.scope, unittest.equals('foo')); | 787 unittest.expect(o.scope, unittest.equals('foo')); |
| 784 unittest.expect(o.selfLink, unittest.equals('foo')); | 788 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 785 unittest.expect(o.type, unittest.equals('foo')); | 789 unittest.expect(o.type, unittest.equals('foo')); |
| 786 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 790 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 787 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 791 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 788 } | 792 } |
| 789 buildCounterCustomMetric--; | 793 buildCounterCustomMetric--; |
| 790 } | 794 } |
| 791 | 795 |
| 792 buildUnnamed1244() { | 796 buildUnnamed1501() { |
| 793 var o = new core.List<api.CustomMetric>(); | 797 var o = new core.List<api.CustomMetric>(); |
| 794 o.add(buildCustomMetric()); | 798 o.add(buildCustomMetric()); |
| 795 o.add(buildCustomMetric()); | 799 o.add(buildCustomMetric()); |
| 796 return o; | 800 return o; |
| 797 } | 801 } |
| 798 | 802 |
| 799 checkUnnamed1244(core.List<api.CustomMetric> o) { | 803 checkUnnamed1501(core.List<api.CustomMetric> o) { |
| 800 unittest.expect(o, unittest.hasLength(2)); | 804 unittest.expect(o, unittest.hasLength(2)); |
| 801 checkCustomMetric(o[0]); | 805 checkCustomMetric(o[0]); |
| 802 checkCustomMetric(o[1]); | 806 checkCustomMetric(o[1]); |
| 803 } | 807 } |
| 804 | 808 |
| 805 core.int buildCounterCustomMetrics = 0; | 809 core.int buildCounterCustomMetrics = 0; |
| 806 buildCustomMetrics() { | 810 buildCustomMetrics() { |
| 807 var o = new api.CustomMetrics(); | 811 var o = new api.CustomMetrics(); |
| 808 buildCounterCustomMetrics++; | 812 buildCounterCustomMetrics++; |
| 809 if (buildCounterCustomMetrics < 3) { | 813 if (buildCounterCustomMetrics < 3) { |
| 810 o.items = buildUnnamed1244(); | 814 o.items = buildUnnamed1501(); |
| 811 o.itemsPerPage = 42; | 815 o.itemsPerPage = 42; |
| 812 o.kind = "foo"; | 816 o.kind = "foo"; |
| 813 o.nextLink = "foo"; | 817 o.nextLink = "foo"; |
| 814 o.previousLink = "foo"; | 818 o.previousLink = "foo"; |
| 815 o.startIndex = 42; | 819 o.startIndex = 42; |
| 816 o.totalResults = 42; | 820 o.totalResults = 42; |
| 817 o.username = "foo"; | 821 o.username = "foo"; |
| 818 } | 822 } |
| 819 buildCounterCustomMetrics--; | 823 buildCounterCustomMetrics--; |
| 820 return o; | 824 return o; |
| 821 } | 825 } |
| 822 | 826 |
| 823 checkCustomMetrics(api.CustomMetrics o) { | 827 checkCustomMetrics(api.CustomMetrics o) { |
| 824 buildCounterCustomMetrics++; | 828 buildCounterCustomMetrics++; |
| 825 if (buildCounterCustomMetrics < 3) { | 829 if (buildCounterCustomMetrics < 3) { |
| 826 checkUnnamed1244(o.items); | 830 checkUnnamed1501(o.items); |
| 827 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 831 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 828 unittest.expect(o.kind, unittest.equals('foo')); | 832 unittest.expect(o.kind, unittest.equals('foo')); |
| 829 unittest.expect(o.nextLink, unittest.equals('foo')); | 833 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 830 unittest.expect(o.previousLink, unittest.equals('foo')); | 834 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 831 unittest.expect(o.startIndex, unittest.equals(42)); | 835 unittest.expect(o.startIndex, unittest.equals(42)); |
| 832 unittest.expect(o.totalResults, unittest.equals(42)); | 836 unittest.expect(o.totalResults, unittest.equals(42)); |
| 833 unittest.expect(o.username, unittest.equals('foo')); | 837 unittest.expect(o.username, unittest.equals('foo')); |
| 834 } | 838 } |
| 835 buildCounterCustomMetrics--; | 839 buildCounterCustomMetrics--; |
| 836 } | 840 } |
| 837 | 841 |
| 838 buildUnnamed1245() { | 842 buildUnnamed1502() { |
| 839 var o = new core.List<api.AdWordsAccount>(); | 843 var o = new core.List<api.AdWordsAccount>(); |
| 840 o.add(buildAdWordsAccount()); | 844 o.add(buildAdWordsAccount()); |
| 841 o.add(buildAdWordsAccount()); | 845 o.add(buildAdWordsAccount()); |
| 842 return o; | 846 return o; |
| 843 } | 847 } |
| 844 | 848 |
| 845 checkUnnamed1245(core.List<api.AdWordsAccount> o) { | 849 checkUnnamed1502(core.List<api.AdWordsAccount> o) { |
| 846 unittest.expect(o, unittest.hasLength(2)); | 850 unittest.expect(o, unittest.hasLength(2)); |
| 847 checkAdWordsAccount(o[0]); | 851 checkAdWordsAccount(o[0]); |
| 848 checkAdWordsAccount(o[1]); | 852 checkAdWordsAccount(o[1]); |
| 849 } | 853 } |
| 850 | 854 |
| 851 core.int buildCounterEntityAdWordsLinkEntity = 0; | 855 core.int buildCounterEntityAdWordsLinkEntity = 0; |
| 852 buildEntityAdWordsLinkEntity() { | 856 buildEntityAdWordsLinkEntity() { |
| 853 var o = new api.EntityAdWordsLinkEntity(); | 857 var o = new api.EntityAdWordsLinkEntity(); |
| 854 buildCounterEntityAdWordsLinkEntity++; | 858 buildCounterEntityAdWordsLinkEntity++; |
| 855 if (buildCounterEntityAdWordsLinkEntity < 3) { | 859 if (buildCounterEntityAdWordsLinkEntity < 3) { |
| 856 o.webPropertyRef = buildWebPropertyRef(); | 860 o.webPropertyRef = buildWebPropertyRef(); |
| 857 } | 861 } |
| 858 buildCounterEntityAdWordsLinkEntity--; | 862 buildCounterEntityAdWordsLinkEntity--; |
| 859 return o; | 863 return o; |
| 860 } | 864 } |
| 861 | 865 |
| 862 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { | 866 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { |
| 863 buildCounterEntityAdWordsLinkEntity++; | 867 buildCounterEntityAdWordsLinkEntity++; |
| 864 if (buildCounterEntityAdWordsLinkEntity < 3) { | 868 if (buildCounterEntityAdWordsLinkEntity < 3) { |
| 865 checkWebPropertyRef(o.webPropertyRef); | 869 checkWebPropertyRef(o.webPropertyRef); |
| 866 } | 870 } |
| 867 buildCounterEntityAdWordsLinkEntity--; | 871 buildCounterEntityAdWordsLinkEntity--; |
| 868 } | 872 } |
| 869 | 873 |
| 870 buildUnnamed1246() { | 874 buildUnnamed1503() { |
| 871 var o = new core.List<core.String>(); | 875 var o = new core.List<core.String>(); |
| 872 o.add("foo"); | 876 o.add("foo"); |
| 873 o.add("foo"); | 877 o.add("foo"); |
| 874 return o; | 878 return o; |
| 875 } | 879 } |
| 876 | 880 |
| 877 checkUnnamed1246(core.List<core.String> o) { | 881 checkUnnamed1503(core.List<core.String> o) { |
| 878 unittest.expect(o, unittest.hasLength(2)); | 882 unittest.expect(o, unittest.hasLength(2)); |
| 879 unittest.expect(o[0], unittest.equals('foo')); | 883 unittest.expect(o[0], unittest.equals('foo')); |
| 880 unittest.expect(o[1], unittest.equals('foo')); | 884 unittest.expect(o[1], unittest.equals('foo')); |
| 881 } | 885 } |
| 882 | 886 |
| 883 core.int buildCounterEntityAdWordsLink = 0; | 887 core.int buildCounterEntityAdWordsLink = 0; |
| 884 buildEntityAdWordsLink() { | 888 buildEntityAdWordsLink() { |
| 885 var o = new api.EntityAdWordsLink(); | 889 var o = new api.EntityAdWordsLink(); |
| 886 buildCounterEntityAdWordsLink++; | 890 buildCounterEntityAdWordsLink++; |
| 887 if (buildCounterEntityAdWordsLink < 3) { | 891 if (buildCounterEntityAdWordsLink < 3) { |
| 888 o.adWordsAccounts = buildUnnamed1245(); | 892 o.adWordsAccounts = buildUnnamed1502(); |
| 889 o.entity = buildEntityAdWordsLinkEntity(); | 893 o.entity = buildEntityAdWordsLinkEntity(); |
| 890 o.id = "foo"; | 894 o.id = "foo"; |
| 891 o.kind = "foo"; | 895 o.kind = "foo"; |
| 892 o.name = "foo"; | 896 o.name = "foo"; |
| 893 o.profileIds = buildUnnamed1246(); | 897 o.profileIds = buildUnnamed1503(); |
| 894 o.selfLink = "foo"; | 898 o.selfLink = "foo"; |
| 895 } | 899 } |
| 896 buildCounterEntityAdWordsLink--; | 900 buildCounterEntityAdWordsLink--; |
| 897 return o; | 901 return o; |
| 898 } | 902 } |
| 899 | 903 |
| 900 checkEntityAdWordsLink(api.EntityAdWordsLink o) { | 904 checkEntityAdWordsLink(api.EntityAdWordsLink o) { |
| 901 buildCounterEntityAdWordsLink++; | 905 buildCounterEntityAdWordsLink++; |
| 902 if (buildCounterEntityAdWordsLink < 3) { | 906 if (buildCounterEntityAdWordsLink < 3) { |
| 903 checkUnnamed1245(o.adWordsAccounts); | 907 checkUnnamed1502(o.adWordsAccounts); |
| 904 checkEntityAdWordsLinkEntity(o.entity); | 908 checkEntityAdWordsLinkEntity(o.entity); |
| 905 unittest.expect(o.id, unittest.equals('foo')); | 909 unittest.expect(o.id, unittest.equals('foo')); |
| 906 unittest.expect(o.kind, unittest.equals('foo')); | 910 unittest.expect(o.kind, unittest.equals('foo')); |
| 907 unittest.expect(o.name, unittest.equals('foo')); | 911 unittest.expect(o.name, unittest.equals('foo')); |
| 908 checkUnnamed1246(o.profileIds); | 912 checkUnnamed1503(o.profileIds); |
| 909 unittest.expect(o.selfLink, unittest.equals('foo')); | 913 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 910 } | 914 } |
| 911 buildCounterEntityAdWordsLink--; | 915 buildCounterEntityAdWordsLink--; |
| 912 } | 916 } |
| 913 | 917 |
| 914 buildUnnamed1247() { | 918 buildUnnamed1504() { |
| 915 var o = new core.List<api.EntityAdWordsLink>(); | 919 var o = new core.List<api.EntityAdWordsLink>(); |
| 916 o.add(buildEntityAdWordsLink()); | 920 o.add(buildEntityAdWordsLink()); |
| 917 o.add(buildEntityAdWordsLink()); | 921 o.add(buildEntityAdWordsLink()); |
| 918 return o; | 922 return o; |
| 919 } | 923 } |
| 920 | 924 |
| 921 checkUnnamed1247(core.List<api.EntityAdWordsLink> o) { | 925 checkUnnamed1504(core.List<api.EntityAdWordsLink> o) { |
| 922 unittest.expect(o, unittest.hasLength(2)); | 926 unittest.expect(o, unittest.hasLength(2)); |
| 923 checkEntityAdWordsLink(o[0]); | 927 checkEntityAdWordsLink(o[0]); |
| 924 checkEntityAdWordsLink(o[1]); | 928 checkEntityAdWordsLink(o[1]); |
| 925 } | 929 } |
| 926 | 930 |
| 927 core.int buildCounterEntityAdWordsLinks = 0; | 931 core.int buildCounterEntityAdWordsLinks = 0; |
| 928 buildEntityAdWordsLinks() { | 932 buildEntityAdWordsLinks() { |
| 929 var o = new api.EntityAdWordsLinks(); | 933 var o = new api.EntityAdWordsLinks(); |
| 930 buildCounterEntityAdWordsLinks++; | 934 buildCounterEntityAdWordsLinks++; |
| 931 if (buildCounterEntityAdWordsLinks < 3) { | 935 if (buildCounterEntityAdWordsLinks < 3) { |
| 932 o.items = buildUnnamed1247(); | 936 o.items = buildUnnamed1504(); |
| 933 o.itemsPerPage = 42; | 937 o.itemsPerPage = 42; |
| 934 o.kind = "foo"; | 938 o.kind = "foo"; |
| 935 o.nextLink = "foo"; | 939 o.nextLink = "foo"; |
| 936 o.previousLink = "foo"; | 940 o.previousLink = "foo"; |
| 937 o.startIndex = 42; | 941 o.startIndex = 42; |
| 938 o.totalResults = 42; | 942 o.totalResults = 42; |
| 939 } | 943 } |
| 940 buildCounterEntityAdWordsLinks--; | 944 buildCounterEntityAdWordsLinks--; |
| 941 return o; | 945 return o; |
| 942 } | 946 } |
| 943 | 947 |
| 944 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { | 948 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { |
| 945 buildCounterEntityAdWordsLinks++; | 949 buildCounterEntityAdWordsLinks++; |
| 946 if (buildCounterEntityAdWordsLinks < 3) { | 950 if (buildCounterEntityAdWordsLinks < 3) { |
| 947 checkUnnamed1247(o.items); | 951 checkUnnamed1504(o.items); |
| 948 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 952 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 949 unittest.expect(o.kind, unittest.equals('foo')); | 953 unittest.expect(o.kind, unittest.equals('foo')); |
| 950 unittest.expect(o.nextLink, unittest.equals('foo')); | 954 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 951 unittest.expect(o.previousLink, unittest.equals('foo')); | 955 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 952 unittest.expect(o.startIndex, unittest.equals(42)); | 956 unittest.expect(o.startIndex, unittest.equals(42)); |
| 953 unittest.expect(o.totalResults, unittest.equals(42)); | 957 unittest.expect(o.totalResults, unittest.equals(42)); |
| 954 } | 958 } |
| 955 buildCounterEntityAdWordsLinks--; | 959 buildCounterEntityAdWordsLinks--; |
| 956 } | 960 } |
| 957 | 961 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 971 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { | 975 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { |
| 972 buildCounterEntityUserLinkEntity++; | 976 buildCounterEntityUserLinkEntity++; |
| 973 if (buildCounterEntityUserLinkEntity < 3) { | 977 if (buildCounterEntityUserLinkEntity < 3) { |
| 974 checkAccountRef(o.accountRef); | 978 checkAccountRef(o.accountRef); |
| 975 checkProfileRef(o.profileRef); | 979 checkProfileRef(o.profileRef); |
| 976 checkWebPropertyRef(o.webPropertyRef); | 980 checkWebPropertyRef(o.webPropertyRef); |
| 977 } | 981 } |
| 978 buildCounterEntityUserLinkEntity--; | 982 buildCounterEntityUserLinkEntity--; |
| 979 } | 983 } |
| 980 | 984 |
| 981 buildUnnamed1248() { | 985 buildUnnamed1505() { |
| 982 var o = new core.List<core.String>(); | 986 var o = new core.List<core.String>(); |
| 983 o.add("foo"); | 987 o.add("foo"); |
| 984 o.add("foo"); | 988 o.add("foo"); |
| 985 return o; | 989 return o; |
| 986 } | 990 } |
| 987 | 991 |
| 988 checkUnnamed1248(core.List<core.String> o) { | 992 checkUnnamed1505(core.List<core.String> o) { |
| 989 unittest.expect(o, unittest.hasLength(2)); | 993 unittest.expect(o, unittest.hasLength(2)); |
| 990 unittest.expect(o[0], unittest.equals('foo')); | 994 unittest.expect(o[0], unittest.equals('foo')); |
| 991 unittest.expect(o[1], unittest.equals('foo')); | 995 unittest.expect(o[1], unittest.equals('foo')); |
| 992 } | 996 } |
| 993 | 997 |
| 994 buildUnnamed1249() { | 998 buildUnnamed1506() { |
| 995 var o = new core.List<core.String>(); | 999 var o = new core.List<core.String>(); |
| 996 o.add("foo"); | 1000 o.add("foo"); |
| 997 o.add("foo"); | 1001 o.add("foo"); |
| 998 return o; | 1002 return o; |
| 999 } | 1003 } |
| 1000 | 1004 |
| 1001 checkUnnamed1249(core.List<core.String> o) { | 1005 checkUnnamed1506(core.List<core.String> o) { |
| 1002 unittest.expect(o, unittest.hasLength(2)); | 1006 unittest.expect(o, unittest.hasLength(2)); |
| 1003 unittest.expect(o[0], unittest.equals('foo')); | 1007 unittest.expect(o[0], unittest.equals('foo')); |
| 1004 unittest.expect(o[1], unittest.equals('foo')); | 1008 unittest.expect(o[1], unittest.equals('foo')); |
| 1005 } | 1009 } |
| 1006 | 1010 |
| 1007 core.int buildCounterEntityUserLinkPermissions = 0; | 1011 core.int buildCounterEntityUserLinkPermissions = 0; |
| 1008 buildEntityUserLinkPermissions() { | 1012 buildEntityUserLinkPermissions() { |
| 1009 var o = new api.EntityUserLinkPermissions(); | 1013 var o = new api.EntityUserLinkPermissions(); |
| 1010 buildCounterEntityUserLinkPermissions++; | 1014 buildCounterEntityUserLinkPermissions++; |
| 1011 if (buildCounterEntityUserLinkPermissions < 3) { | 1015 if (buildCounterEntityUserLinkPermissions < 3) { |
| 1012 o.effective = buildUnnamed1248(); | 1016 o.effective = buildUnnamed1505(); |
| 1013 o.local = buildUnnamed1249(); | 1017 o.local = buildUnnamed1506(); |
| 1014 } | 1018 } |
| 1015 buildCounterEntityUserLinkPermissions--; | 1019 buildCounterEntityUserLinkPermissions--; |
| 1016 return o; | 1020 return o; |
| 1017 } | 1021 } |
| 1018 | 1022 |
| 1019 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { | 1023 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { |
| 1020 buildCounterEntityUserLinkPermissions++; | 1024 buildCounterEntityUserLinkPermissions++; |
| 1021 if (buildCounterEntityUserLinkPermissions < 3) { | 1025 if (buildCounterEntityUserLinkPermissions < 3) { |
| 1022 checkUnnamed1248(o.effective); | 1026 checkUnnamed1505(o.effective); |
| 1023 checkUnnamed1249(o.local); | 1027 checkUnnamed1506(o.local); |
| 1024 } | 1028 } |
| 1025 buildCounterEntityUserLinkPermissions--; | 1029 buildCounterEntityUserLinkPermissions--; |
| 1026 } | 1030 } |
| 1027 | 1031 |
| 1028 core.int buildCounterEntityUserLink = 0; | 1032 core.int buildCounterEntityUserLink = 0; |
| 1029 buildEntityUserLink() { | 1033 buildEntityUserLink() { |
| 1030 var o = new api.EntityUserLink(); | 1034 var o = new api.EntityUserLink(); |
| 1031 buildCounterEntityUserLink++; | 1035 buildCounterEntityUserLink++; |
| 1032 if (buildCounterEntityUserLink < 3) { | 1036 if (buildCounterEntityUserLink < 3) { |
| 1033 o.entity = buildEntityUserLinkEntity(); | 1037 o.entity = buildEntityUserLinkEntity(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1047 checkEntityUserLinkEntity(o.entity); | 1051 checkEntityUserLinkEntity(o.entity); |
| 1048 unittest.expect(o.id, unittest.equals('foo')); | 1052 unittest.expect(o.id, unittest.equals('foo')); |
| 1049 unittest.expect(o.kind, unittest.equals('foo')); | 1053 unittest.expect(o.kind, unittest.equals('foo')); |
| 1050 checkEntityUserLinkPermissions(o.permissions); | 1054 checkEntityUserLinkPermissions(o.permissions); |
| 1051 unittest.expect(o.selfLink, unittest.equals('foo')); | 1055 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1052 checkUserRef(o.userRef); | 1056 checkUserRef(o.userRef); |
| 1053 } | 1057 } |
| 1054 buildCounterEntityUserLink--; | 1058 buildCounterEntityUserLink--; |
| 1055 } | 1059 } |
| 1056 | 1060 |
| 1057 buildUnnamed1250() { | 1061 buildUnnamed1507() { |
| 1058 var o = new core.List<api.EntityUserLink>(); | 1062 var o = new core.List<api.EntityUserLink>(); |
| 1059 o.add(buildEntityUserLink()); | 1063 o.add(buildEntityUserLink()); |
| 1060 o.add(buildEntityUserLink()); | 1064 o.add(buildEntityUserLink()); |
| 1061 return o; | 1065 return o; |
| 1062 } | 1066 } |
| 1063 | 1067 |
| 1064 checkUnnamed1250(core.List<api.EntityUserLink> o) { | 1068 checkUnnamed1507(core.List<api.EntityUserLink> o) { |
| 1065 unittest.expect(o, unittest.hasLength(2)); | 1069 unittest.expect(o, unittest.hasLength(2)); |
| 1066 checkEntityUserLink(o[0]); | 1070 checkEntityUserLink(o[0]); |
| 1067 checkEntityUserLink(o[1]); | 1071 checkEntityUserLink(o[1]); |
| 1068 } | 1072 } |
| 1069 | 1073 |
| 1070 core.int buildCounterEntityUserLinks = 0; | 1074 core.int buildCounterEntityUserLinks = 0; |
| 1071 buildEntityUserLinks() { | 1075 buildEntityUserLinks() { |
| 1072 var o = new api.EntityUserLinks(); | 1076 var o = new api.EntityUserLinks(); |
| 1073 buildCounterEntityUserLinks++; | 1077 buildCounterEntityUserLinks++; |
| 1074 if (buildCounterEntityUserLinks < 3) { | 1078 if (buildCounterEntityUserLinks < 3) { |
| 1075 o.items = buildUnnamed1250(); | 1079 o.items = buildUnnamed1507(); |
| 1076 o.itemsPerPage = 42; | 1080 o.itemsPerPage = 42; |
| 1077 o.kind = "foo"; | 1081 o.kind = "foo"; |
| 1078 o.nextLink = "foo"; | 1082 o.nextLink = "foo"; |
| 1079 o.previousLink = "foo"; | 1083 o.previousLink = "foo"; |
| 1080 o.startIndex = 42; | 1084 o.startIndex = 42; |
| 1081 o.totalResults = 42; | 1085 o.totalResults = 42; |
| 1082 } | 1086 } |
| 1083 buildCounterEntityUserLinks--; | 1087 buildCounterEntityUserLinks--; |
| 1084 return o; | 1088 return o; |
| 1085 } | 1089 } |
| 1086 | 1090 |
| 1087 checkEntityUserLinks(api.EntityUserLinks o) { | 1091 checkEntityUserLinks(api.EntityUserLinks o) { |
| 1088 buildCounterEntityUserLinks++; | 1092 buildCounterEntityUserLinks++; |
| 1089 if (buildCounterEntityUserLinks < 3) { | 1093 if (buildCounterEntityUserLinks < 3) { |
| 1090 checkUnnamed1250(o.items); | 1094 checkUnnamed1507(o.items); |
| 1091 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1095 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1092 unittest.expect(o.kind, unittest.equals('foo')); | 1096 unittest.expect(o.kind, unittest.equals('foo')); |
| 1093 unittest.expect(o.nextLink, unittest.equals('foo')); | 1097 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1094 unittest.expect(o.previousLink, unittest.equals('foo')); | 1098 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1095 unittest.expect(o.startIndex, unittest.equals(42)); | 1099 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1096 unittest.expect(o.totalResults, unittest.equals(42)); | 1100 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1097 } | 1101 } |
| 1098 buildCounterEntityUserLinks--; | 1102 buildCounterEntityUserLinks--; |
| 1099 } | 1103 } |
| 1100 | 1104 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1139 if (buildCounterExperimentVariations < 3) { | 1143 if (buildCounterExperimentVariations < 3) { |
| 1140 unittest.expect(o.name, unittest.equals('foo')); | 1144 unittest.expect(o.name, unittest.equals('foo')); |
| 1141 unittest.expect(o.status, unittest.equals('foo')); | 1145 unittest.expect(o.status, unittest.equals('foo')); |
| 1142 unittest.expect(o.url, unittest.equals('foo')); | 1146 unittest.expect(o.url, unittest.equals('foo')); |
| 1143 unittest.expect(o.weight, unittest.equals(42.0)); | 1147 unittest.expect(o.weight, unittest.equals(42.0)); |
| 1144 unittest.expect(o.won, unittest.isTrue); | 1148 unittest.expect(o.won, unittest.isTrue); |
| 1145 } | 1149 } |
| 1146 buildCounterExperimentVariations--; | 1150 buildCounterExperimentVariations--; |
| 1147 } | 1151 } |
| 1148 | 1152 |
| 1149 buildUnnamed1251() { | 1153 buildUnnamed1508() { |
| 1150 var o = new core.List<api.ExperimentVariations>(); | 1154 var o = new core.List<api.ExperimentVariations>(); |
| 1151 o.add(buildExperimentVariations()); | 1155 o.add(buildExperimentVariations()); |
| 1152 o.add(buildExperimentVariations()); | 1156 o.add(buildExperimentVariations()); |
| 1153 return o; | 1157 return o; |
| 1154 } | 1158 } |
| 1155 | 1159 |
| 1156 checkUnnamed1251(core.List<api.ExperimentVariations> o) { | 1160 checkUnnamed1508(core.List<api.ExperimentVariations> o) { |
| 1157 unittest.expect(o, unittest.hasLength(2)); | 1161 unittest.expect(o, unittest.hasLength(2)); |
| 1158 checkExperimentVariations(o[0]); | 1162 checkExperimentVariations(o[0]); |
| 1159 checkExperimentVariations(o[1]); | 1163 checkExperimentVariations(o[1]); |
| 1160 } | 1164 } |
| 1161 | 1165 |
| 1162 core.int buildCounterExperiment = 0; | 1166 core.int buildCounterExperiment = 0; |
| 1163 buildExperiment() { | 1167 buildExperiment() { |
| 1164 var o = new api.Experiment(); | 1168 var o = new api.Experiment(); |
| 1165 buildCounterExperiment++; | 1169 buildCounterExperiment++; |
| 1166 if (buildCounterExperiment < 3) { | 1170 if (buildCounterExperiment < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1181 o.profileId = "foo"; | 1185 o.profileId = "foo"; |
| 1182 o.reasonExperimentEnded = "foo"; | 1186 o.reasonExperimentEnded = "foo"; |
| 1183 o.rewriteVariationUrlsAsOriginal = true; | 1187 o.rewriteVariationUrlsAsOriginal = true; |
| 1184 o.selfLink = "foo"; | 1188 o.selfLink = "foo"; |
| 1185 o.servingFramework = "foo"; | 1189 o.servingFramework = "foo"; |
| 1186 o.snippet = "foo"; | 1190 o.snippet = "foo"; |
| 1187 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 1191 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
| 1188 o.status = "foo"; | 1192 o.status = "foo"; |
| 1189 o.trafficCoverage = 42.0; | 1193 o.trafficCoverage = 42.0; |
| 1190 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 1194 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 1191 o.variations = buildUnnamed1251(); | 1195 o.variations = buildUnnamed1508(); |
| 1192 o.webPropertyId = "foo"; | 1196 o.webPropertyId = "foo"; |
| 1193 o.winnerConfidenceLevel = 42.0; | 1197 o.winnerConfidenceLevel = 42.0; |
| 1194 o.winnerFound = true; | 1198 o.winnerFound = true; |
| 1195 } | 1199 } |
| 1196 buildCounterExperiment--; | 1200 buildCounterExperiment--; |
| 1197 return o; | 1201 return o; |
| 1198 } | 1202 } |
| 1199 | 1203 |
| 1200 checkExperiment(api.Experiment o) { | 1204 checkExperiment(api.Experiment o) { |
| 1201 buildCounterExperiment++; | 1205 buildCounterExperiment++; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 1217 unittest.expect(o.profileId, unittest.equals('foo')); | 1221 unittest.expect(o.profileId, unittest.equals('foo')); |
| 1218 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); | 1222 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); |
| 1219 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); | 1223 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); |
| 1220 unittest.expect(o.selfLink, unittest.equals('foo')); | 1224 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1221 unittest.expect(o.servingFramework, unittest.equals('foo')); | 1225 unittest.expect(o.servingFramework, unittest.equals('foo')); |
| 1222 unittest.expect(o.snippet, unittest.equals('foo')); | 1226 unittest.expect(o.snippet, unittest.equals('foo')); |
| 1223 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 1227 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
| 1224 unittest.expect(o.status, unittest.equals('foo')); | 1228 unittest.expect(o.status, unittest.equals('foo')); |
| 1225 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); | 1229 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); |
| 1226 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 1230 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 1227 checkUnnamed1251(o.variations); | 1231 checkUnnamed1508(o.variations); |
| 1228 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1232 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 1229 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); | 1233 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); |
| 1230 unittest.expect(o.winnerFound, unittest.isTrue); | 1234 unittest.expect(o.winnerFound, unittest.isTrue); |
| 1231 } | 1235 } |
| 1232 buildCounterExperiment--; | 1236 buildCounterExperiment--; |
| 1233 } | 1237 } |
| 1234 | 1238 |
| 1235 buildUnnamed1252() { | 1239 buildUnnamed1509() { |
| 1236 var o = new core.List<api.Experiment>(); | 1240 var o = new core.List<api.Experiment>(); |
| 1237 o.add(buildExperiment()); | 1241 o.add(buildExperiment()); |
| 1238 o.add(buildExperiment()); | 1242 o.add(buildExperiment()); |
| 1239 return o; | 1243 return o; |
| 1240 } | 1244 } |
| 1241 | 1245 |
| 1242 checkUnnamed1252(core.List<api.Experiment> o) { | 1246 checkUnnamed1509(core.List<api.Experiment> o) { |
| 1243 unittest.expect(o, unittest.hasLength(2)); | 1247 unittest.expect(o, unittest.hasLength(2)); |
| 1244 checkExperiment(o[0]); | 1248 checkExperiment(o[0]); |
| 1245 checkExperiment(o[1]); | 1249 checkExperiment(o[1]); |
| 1246 } | 1250 } |
| 1247 | 1251 |
| 1248 core.int buildCounterExperiments = 0; | 1252 core.int buildCounterExperiments = 0; |
| 1249 buildExperiments() { | 1253 buildExperiments() { |
| 1250 var o = new api.Experiments(); | 1254 var o = new api.Experiments(); |
| 1251 buildCounterExperiments++; | 1255 buildCounterExperiments++; |
| 1252 if (buildCounterExperiments < 3) { | 1256 if (buildCounterExperiments < 3) { |
| 1253 o.items = buildUnnamed1252(); | 1257 o.items = buildUnnamed1509(); |
| 1254 o.itemsPerPage = 42; | 1258 o.itemsPerPage = 42; |
| 1255 o.kind = "foo"; | 1259 o.kind = "foo"; |
| 1256 o.nextLink = "foo"; | 1260 o.nextLink = "foo"; |
| 1257 o.previousLink = "foo"; | 1261 o.previousLink = "foo"; |
| 1258 o.startIndex = 42; | 1262 o.startIndex = 42; |
| 1259 o.totalResults = 42; | 1263 o.totalResults = 42; |
| 1260 o.username = "foo"; | 1264 o.username = "foo"; |
| 1261 } | 1265 } |
| 1262 buildCounterExperiments--; | 1266 buildCounterExperiments--; |
| 1263 return o; | 1267 return o; |
| 1264 } | 1268 } |
| 1265 | 1269 |
| 1266 checkExperiments(api.Experiments o) { | 1270 checkExperiments(api.Experiments o) { |
| 1267 buildCounterExperiments++; | 1271 buildCounterExperiments++; |
| 1268 if (buildCounterExperiments < 3) { | 1272 if (buildCounterExperiments < 3) { |
| 1269 checkUnnamed1252(o.items); | 1273 checkUnnamed1509(o.items); |
| 1270 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1274 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1271 unittest.expect(o.kind, unittest.equals('foo')); | 1275 unittest.expect(o.kind, unittest.equals('foo')); |
| 1272 unittest.expect(o.nextLink, unittest.equals('foo')); | 1276 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1273 unittest.expect(o.previousLink, unittest.equals('foo')); | 1277 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1274 unittest.expect(o.startIndex, unittest.equals(42)); | 1278 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1275 unittest.expect(o.totalResults, unittest.equals(42)); | 1279 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1276 unittest.expect(o.username, unittest.equals('foo')); | 1280 unittest.expect(o.username, unittest.equals('foo')); |
| 1277 } | 1281 } |
| 1278 buildCounterExperiments--; | 1282 buildCounterExperiments--; |
| 1279 } | 1283 } |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1507 if (buildCounterFilterRef < 3) { | 1511 if (buildCounterFilterRef < 3) { |
| 1508 unittest.expect(o.accountId, unittest.equals('foo')); | 1512 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1509 unittest.expect(o.href, unittest.equals('foo')); | 1513 unittest.expect(o.href, unittest.equals('foo')); |
| 1510 unittest.expect(o.id, unittest.equals('foo')); | 1514 unittest.expect(o.id, unittest.equals('foo')); |
| 1511 unittest.expect(o.kind, unittest.equals('foo')); | 1515 unittest.expect(o.kind, unittest.equals('foo')); |
| 1512 unittest.expect(o.name, unittest.equals('foo')); | 1516 unittest.expect(o.name, unittest.equals('foo')); |
| 1513 } | 1517 } |
| 1514 buildCounterFilterRef--; | 1518 buildCounterFilterRef--; |
| 1515 } | 1519 } |
| 1516 | 1520 |
| 1517 buildUnnamed1253() { | 1521 buildUnnamed1510() { |
| 1518 var o = new core.List<api.Filter>(); | 1522 var o = new core.List<api.Filter>(); |
| 1519 o.add(buildFilter()); | 1523 o.add(buildFilter()); |
| 1520 o.add(buildFilter()); | 1524 o.add(buildFilter()); |
| 1521 return o; | 1525 return o; |
| 1522 } | 1526 } |
| 1523 | 1527 |
| 1524 checkUnnamed1253(core.List<api.Filter> o) { | 1528 checkUnnamed1510(core.List<api.Filter> o) { |
| 1525 unittest.expect(o, unittest.hasLength(2)); | 1529 unittest.expect(o, unittest.hasLength(2)); |
| 1526 checkFilter(o[0]); | 1530 checkFilter(o[0]); |
| 1527 checkFilter(o[1]); | 1531 checkFilter(o[1]); |
| 1528 } | 1532 } |
| 1529 | 1533 |
| 1530 core.int buildCounterFilters = 0; | 1534 core.int buildCounterFilters = 0; |
| 1531 buildFilters() { | 1535 buildFilters() { |
| 1532 var o = new api.Filters(); | 1536 var o = new api.Filters(); |
| 1533 buildCounterFilters++; | 1537 buildCounterFilters++; |
| 1534 if (buildCounterFilters < 3) { | 1538 if (buildCounterFilters < 3) { |
| 1535 o.items = buildUnnamed1253(); | 1539 o.items = buildUnnamed1510(); |
| 1536 o.itemsPerPage = 42; | 1540 o.itemsPerPage = 42; |
| 1537 o.kind = "foo"; | 1541 o.kind = "foo"; |
| 1538 o.nextLink = "foo"; | 1542 o.nextLink = "foo"; |
| 1539 o.previousLink = "foo"; | 1543 o.previousLink = "foo"; |
| 1540 o.startIndex = 42; | 1544 o.startIndex = 42; |
| 1541 o.totalResults = 42; | 1545 o.totalResults = 42; |
| 1542 o.username = "foo"; | 1546 o.username = "foo"; |
| 1543 } | 1547 } |
| 1544 buildCounterFilters--; | 1548 buildCounterFilters--; |
| 1545 return o; | 1549 return o; |
| 1546 } | 1550 } |
| 1547 | 1551 |
| 1548 checkFilters(api.Filters o) { | 1552 checkFilters(api.Filters o) { |
| 1549 buildCounterFilters++; | 1553 buildCounterFilters++; |
| 1550 if (buildCounterFilters < 3) { | 1554 if (buildCounterFilters < 3) { |
| 1551 checkUnnamed1253(o.items); | 1555 checkUnnamed1510(o.items); |
| 1552 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1556 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1553 unittest.expect(o.kind, unittest.equals('foo')); | 1557 unittest.expect(o.kind, unittest.equals('foo')); |
| 1554 unittest.expect(o.nextLink, unittest.equals('foo')); | 1558 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1555 unittest.expect(o.previousLink, unittest.equals('foo')); | 1559 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1556 unittest.expect(o.startIndex, unittest.equals(42)); | 1560 unittest.expect(o.startIndex, unittest.equals(42)); |
| 1557 unittest.expect(o.totalResults, unittest.equals(42)); | 1561 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1558 unittest.expect(o.username, unittest.equals('foo')); | 1562 unittest.expect(o.username, unittest.equals('foo')); |
| 1559 } | 1563 } |
| 1560 buildCounterFilters--; | 1564 buildCounterFilters--; |
| 1561 } | 1565 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1576 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { | 1580 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { |
| 1577 buildCounterGaDataColumnHeaders++; | 1581 buildCounterGaDataColumnHeaders++; |
| 1578 if (buildCounterGaDataColumnHeaders < 3) { | 1582 if (buildCounterGaDataColumnHeaders < 3) { |
| 1579 unittest.expect(o.columnType, unittest.equals('foo')); | 1583 unittest.expect(o.columnType, unittest.equals('foo')); |
| 1580 unittest.expect(o.dataType, unittest.equals('foo')); | 1584 unittest.expect(o.dataType, unittest.equals('foo')); |
| 1581 unittest.expect(o.name, unittest.equals('foo')); | 1585 unittest.expect(o.name, unittest.equals('foo')); |
| 1582 } | 1586 } |
| 1583 buildCounterGaDataColumnHeaders--; | 1587 buildCounterGaDataColumnHeaders--; |
| 1584 } | 1588 } |
| 1585 | 1589 |
| 1586 buildUnnamed1254() { | 1590 buildUnnamed1511() { |
| 1587 var o = new core.List<api.GaDataColumnHeaders>(); | 1591 var o = new core.List<api.GaDataColumnHeaders>(); |
| 1588 o.add(buildGaDataColumnHeaders()); | 1592 o.add(buildGaDataColumnHeaders()); |
| 1589 o.add(buildGaDataColumnHeaders()); | 1593 o.add(buildGaDataColumnHeaders()); |
| 1590 return o; | 1594 return o; |
| 1591 } | 1595 } |
| 1592 | 1596 |
| 1593 checkUnnamed1254(core.List<api.GaDataColumnHeaders> o) { | 1597 checkUnnamed1511(core.List<api.GaDataColumnHeaders> o) { |
| 1594 unittest.expect(o, unittest.hasLength(2)); | 1598 unittest.expect(o, unittest.hasLength(2)); |
| 1595 checkGaDataColumnHeaders(o[0]); | 1599 checkGaDataColumnHeaders(o[0]); |
| 1596 checkGaDataColumnHeaders(o[1]); | 1600 checkGaDataColumnHeaders(o[1]); |
| 1597 } | 1601 } |
| 1598 | 1602 |
| 1599 core.int buildCounterGaDataDataTableCols = 0; | 1603 core.int buildCounterGaDataDataTableCols = 0; |
| 1600 buildGaDataDataTableCols() { | 1604 buildGaDataDataTableCols() { |
| 1601 var o = new api.GaDataDataTableCols(); | 1605 var o = new api.GaDataDataTableCols(); |
| 1602 buildCounterGaDataDataTableCols++; | 1606 buildCounterGaDataDataTableCols++; |
| 1603 if (buildCounterGaDataDataTableCols < 3) { | 1607 if (buildCounterGaDataDataTableCols < 3) { |
| 1604 o.id = "foo"; | 1608 o.id = "foo"; |
| 1605 o.label = "foo"; | 1609 o.label = "foo"; |
| 1606 o.type = "foo"; | 1610 o.type = "foo"; |
| 1607 } | 1611 } |
| 1608 buildCounterGaDataDataTableCols--; | 1612 buildCounterGaDataDataTableCols--; |
| 1609 return o; | 1613 return o; |
| 1610 } | 1614 } |
| 1611 | 1615 |
| 1612 checkGaDataDataTableCols(api.GaDataDataTableCols o) { | 1616 checkGaDataDataTableCols(api.GaDataDataTableCols o) { |
| 1613 buildCounterGaDataDataTableCols++; | 1617 buildCounterGaDataDataTableCols++; |
| 1614 if (buildCounterGaDataDataTableCols < 3) { | 1618 if (buildCounterGaDataDataTableCols < 3) { |
| 1615 unittest.expect(o.id, unittest.equals('foo')); | 1619 unittest.expect(o.id, unittest.equals('foo')); |
| 1616 unittest.expect(o.label, unittest.equals('foo')); | 1620 unittest.expect(o.label, unittest.equals('foo')); |
| 1617 unittest.expect(o.type, unittest.equals('foo')); | 1621 unittest.expect(o.type, unittest.equals('foo')); |
| 1618 } | 1622 } |
| 1619 buildCounterGaDataDataTableCols--; | 1623 buildCounterGaDataDataTableCols--; |
| 1620 } | 1624 } |
| 1621 | 1625 |
| 1622 buildUnnamed1255() { | 1626 buildUnnamed1512() { |
| 1623 var o = new core.List<api.GaDataDataTableCols>(); | 1627 var o = new core.List<api.GaDataDataTableCols>(); |
| 1624 o.add(buildGaDataDataTableCols()); | 1628 o.add(buildGaDataDataTableCols()); |
| 1625 o.add(buildGaDataDataTableCols()); | 1629 o.add(buildGaDataDataTableCols()); |
| 1626 return o; | 1630 return o; |
| 1627 } | 1631 } |
| 1628 | 1632 |
| 1629 checkUnnamed1255(core.List<api.GaDataDataTableCols> o) { | 1633 checkUnnamed1512(core.List<api.GaDataDataTableCols> o) { |
| 1630 unittest.expect(o, unittest.hasLength(2)); | 1634 unittest.expect(o, unittest.hasLength(2)); |
| 1631 checkGaDataDataTableCols(o[0]); | 1635 checkGaDataDataTableCols(o[0]); |
| 1632 checkGaDataDataTableCols(o[1]); | 1636 checkGaDataDataTableCols(o[1]); |
| 1633 } | 1637 } |
| 1634 | 1638 |
| 1635 core.int buildCounterGaDataDataTableRowsC = 0; | 1639 core.int buildCounterGaDataDataTableRowsC = 0; |
| 1636 buildGaDataDataTableRowsC() { | 1640 buildGaDataDataTableRowsC() { |
| 1637 var o = new api.GaDataDataTableRowsC(); | 1641 var o = new api.GaDataDataTableRowsC(); |
| 1638 buildCounterGaDataDataTableRowsC++; | 1642 buildCounterGaDataDataTableRowsC++; |
| 1639 if (buildCounterGaDataDataTableRowsC < 3) { | 1643 if (buildCounterGaDataDataTableRowsC < 3) { |
| 1640 o.v = "foo"; | 1644 o.v = "foo"; |
| 1641 } | 1645 } |
| 1642 buildCounterGaDataDataTableRowsC--; | 1646 buildCounterGaDataDataTableRowsC--; |
| 1643 return o; | 1647 return o; |
| 1644 } | 1648 } |
| 1645 | 1649 |
| 1646 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { | 1650 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { |
| 1647 buildCounterGaDataDataTableRowsC++; | 1651 buildCounterGaDataDataTableRowsC++; |
| 1648 if (buildCounterGaDataDataTableRowsC < 3) { | 1652 if (buildCounterGaDataDataTableRowsC < 3) { |
| 1649 unittest.expect(o.v, unittest.equals('foo')); | 1653 unittest.expect(o.v, unittest.equals('foo')); |
| 1650 } | 1654 } |
| 1651 buildCounterGaDataDataTableRowsC--; | 1655 buildCounterGaDataDataTableRowsC--; |
| 1652 } | 1656 } |
| 1653 | 1657 |
| 1654 buildUnnamed1256() { | 1658 buildUnnamed1513() { |
| 1655 var o = new core.List<api.GaDataDataTableRowsC>(); | 1659 var o = new core.List<api.GaDataDataTableRowsC>(); |
| 1656 o.add(buildGaDataDataTableRowsC()); | 1660 o.add(buildGaDataDataTableRowsC()); |
| 1657 o.add(buildGaDataDataTableRowsC()); | 1661 o.add(buildGaDataDataTableRowsC()); |
| 1658 return o; | 1662 return o; |
| 1659 } | 1663 } |
| 1660 | 1664 |
| 1661 checkUnnamed1256(core.List<api.GaDataDataTableRowsC> o) { | 1665 checkUnnamed1513(core.List<api.GaDataDataTableRowsC> o) { |
| 1662 unittest.expect(o, unittest.hasLength(2)); | 1666 unittest.expect(o, unittest.hasLength(2)); |
| 1663 checkGaDataDataTableRowsC(o[0]); | 1667 checkGaDataDataTableRowsC(o[0]); |
| 1664 checkGaDataDataTableRowsC(o[1]); | 1668 checkGaDataDataTableRowsC(o[1]); |
| 1665 } | 1669 } |
| 1666 | 1670 |
| 1667 core.int buildCounterGaDataDataTableRows = 0; | 1671 core.int buildCounterGaDataDataTableRows = 0; |
| 1668 buildGaDataDataTableRows() { | 1672 buildGaDataDataTableRows() { |
| 1669 var o = new api.GaDataDataTableRows(); | 1673 var o = new api.GaDataDataTableRows(); |
| 1670 buildCounterGaDataDataTableRows++; | 1674 buildCounterGaDataDataTableRows++; |
| 1671 if (buildCounterGaDataDataTableRows < 3) { | 1675 if (buildCounterGaDataDataTableRows < 3) { |
| 1672 o.c = buildUnnamed1256(); | 1676 o.c = buildUnnamed1513(); |
| 1673 } | 1677 } |
| 1674 buildCounterGaDataDataTableRows--; | 1678 buildCounterGaDataDataTableRows--; |
| 1675 return o; | 1679 return o; |
| 1676 } | 1680 } |
| 1677 | 1681 |
| 1678 checkGaDataDataTableRows(api.GaDataDataTableRows o) { | 1682 checkGaDataDataTableRows(api.GaDataDataTableRows o) { |
| 1679 buildCounterGaDataDataTableRows++; | 1683 buildCounterGaDataDataTableRows++; |
| 1680 if (buildCounterGaDataDataTableRows < 3) { | 1684 if (buildCounterGaDataDataTableRows < 3) { |
| 1681 checkUnnamed1256(o.c); | 1685 checkUnnamed1513(o.c); |
| 1682 } | 1686 } |
| 1683 buildCounterGaDataDataTableRows--; | 1687 buildCounterGaDataDataTableRows--; |
| 1684 } | 1688 } |
| 1685 | 1689 |
| 1686 buildUnnamed1257() { | 1690 buildUnnamed1514() { |
| 1687 var o = new core.List<api.GaDataDataTableRows>(); | 1691 var o = new core.List<api.GaDataDataTableRows>(); |
| 1688 o.add(buildGaDataDataTableRows()); | 1692 o.add(buildGaDataDataTableRows()); |
| 1689 o.add(buildGaDataDataTableRows()); | 1693 o.add(buildGaDataDataTableRows()); |
| 1690 return o; | 1694 return o; |
| 1691 } | 1695 } |
| 1692 | 1696 |
| 1693 checkUnnamed1257(core.List<api.GaDataDataTableRows> o) { | 1697 checkUnnamed1514(core.List<api.GaDataDataTableRows> o) { |
| 1694 unittest.expect(o, unittest.hasLength(2)); | 1698 unittest.expect(o, unittest.hasLength(2)); |
| 1695 checkGaDataDataTableRows(o[0]); | 1699 checkGaDataDataTableRows(o[0]); |
| 1696 checkGaDataDataTableRows(o[1]); | 1700 checkGaDataDataTableRows(o[1]); |
| 1697 } | 1701 } |
| 1698 | 1702 |
| 1699 core.int buildCounterGaDataDataTable = 0; | 1703 core.int buildCounterGaDataDataTable = 0; |
| 1700 buildGaDataDataTable() { | 1704 buildGaDataDataTable() { |
| 1701 var o = new api.GaDataDataTable(); | 1705 var o = new api.GaDataDataTable(); |
| 1702 buildCounterGaDataDataTable++; | 1706 buildCounterGaDataDataTable++; |
| 1703 if (buildCounterGaDataDataTable < 3) { | 1707 if (buildCounterGaDataDataTable < 3) { |
| 1704 o.cols = buildUnnamed1255(); | 1708 o.cols = buildUnnamed1512(); |
| 1705 o.rows = buildUnnamed1257(); | 1709 o.rows = buildUnnamed1514(); |
| 1706 } | 1710 } |
| 1707 buildCounterGaDataDataTable--; | 1711 buildCounterGaDataDataTable--; |
| 1708 return o; | 1712 return o; |
| 1709 } | 1713 } |
| 1710 | 1714 |
| 1711 checkGaDataDataTable(api.GaDataDataTable o) { | 1715 checkGaDataDataTable(api.GaDataDataTable o) { |
| 1712 buildCounterGaDataDataTable++; | 1716 buildCounterGaDataDataTable++; |
| 1713 if (buildCounterGaDataDataTable < 3) { | 1717 if (buildCounterGaDataDataTable < 3) { |
| 1714 checkUnnamed1255(o.cols); | 1718 checkUnnamed1512(o.cols); |
| 1715 checkUnnamed1257(o.rows); | 1719 checkUnnamed1514(o.rows); |
| 1716 } | 1720 } |
| 1717 buildCounterGaDataDataTable--; | 1721 buildCounterGaDataDataTable--; |
| 1718 } | 1722 } |
| 1719 | 1723 |
| 1720 core.int buildCounterGaDataProfileInfo = 0; | 1724 core.int buildCounterGaDataProfileInfo = 0; |
| 1721 buildGaDataProfileInfo() { | 1725 buildGaDataProfileInfo() { |
| 1722 var o = new api.GaDataProfileInfo(); | 1726 var o = new api.GaDataProfileInfo(); |
| 1723 buildCounterGaDataProfileInfo++; | 1727 buildCounterGaDataProfileInfo++; |
| 1724 if (buildCounterGaDataProfileInfo < 3) { | 1728 if (buildCounterGaDataProfileInfo < 3) { |
| 1725 o.accountId = "foo"; | 1729 o.accountId = "foo"; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1739 unittest.expect(o.accountId, unittest.equals('foo')); | 1743 unittest.expect(o.accountId, unittest.equals('foo')); |
| 1740 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 1744 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 1741 unittest.expect(o.profileId, unittest.equals('foo')); | 1745 unittest.expect(o.profileId, unittest.equals('foo')); |
| 1742 unittest.expect(o.profileName, unittest.equals('foo')); | 1746 unittest.expect(o.profileName, unittest.equals('foo')); |
| 1743 unittest.expect(o.tableId, unittest.equals('foo')); | 1747 unittest.expect(o.tableId, unittest.equals('foo')); |
| 1744 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1748 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 1745 } | 1749 } |
| 1746 buildCounterGaDataProfileInfo--; | 1750 buildCounterGaDataProfileInfo--; |
| 1747 } | 1751 } |
| 1748 | 1752 |
| 1749 buildUnnamed1258() { | 1753 buildUnnamed1515() { |
| 1750 var o = new core.List<core.String>(); | 1754 var o = new core.List<core.String>(); |
| 1751 o.add("foo"); | 1755 o.add("foo"); |
| 1752 o.add("foo"); | 1756 o.add("foo"); |
| 1753 return o; | 1757 return o; |
| 1754 } | 1758 } |
| 1755 | 1759 |
| 1756 checkUnnamed1258(core.List<core.String> o) { | 1760 checkUnnamed1515(core.List<core.String> o) { |
| 1757 unittest.expect(o, unittest.hasLength(2)); | 1761 unittest.expect(o, unittest.hasLength(2)); |
| 1758 unittest.expect(o[0], unittest.equals('foo')); | 1762 unittest.expect(o[0], unittest.equals('foo')); |
| 1759 unittest.expect(o[1], unittest.equals('foo')); | 1763 unittest.expect(o[1], unittest.equals('foo')); |
| 1760 } | 1764 } |
| 1761 | 1765 |
| 1762 buildUnnamed1259() { | 1766 buildUnnamed1516() { |
| 1763 var o = new core.List<core.String>(); | 1767 var o = new core.List<core.String>(); |
| 1764 o.add("foo"); | 1768 o.add("foo"); |
| 1765 o.add("foo"); | 1769 o.add("foo"); |
| 1766 return o; | 1770 return o; |
| 1767 } | 1771 } |
| 1768 | 1772 |
| 1769 checkUnnamed1259(core.List<core.String> o) { | 1773 checkUnnamed1516(core.List<core.String> o) { |
| 1770 unittest.expect(o, unittest.hasLength(2)); | 1774 unittest.expect(o, unittest.hasLength(2)); |
| 1771 unittest.expect(o[0], unittest.equals('foo')); | 1775 unittest.expect(o[0], unittest.equals('foo')); |
| 1772 unittest.expect(o[1], unittest.equals('foo')); | 1776 unittest.expect(o[1], unittest.equals('foo')); |
| 1773 } | 1777 } |
| 1774 | 1778 |
| 1775 core.int buildCounterGaDataQuery = 0; | 1779 core.int buildCounterGaDataQuery = 0; |
| 1776 buildGaDataQuery() { | 1780 buildGaDataQuery() { |
| 1777 var o = new api.GaDataQuery(); | 1781 var o = new api.GaDataQuery(); |
| 1778 buildCounterGaDataQuery++; | 1782 buildCounterGaDataQuery++; |
| 1779 if (buildCounterGaDataQuery < 3) { | 1783 if (buildCounterGaDataQuery < 3) { |
| 1780 o.dimensions = "foo"; | 1784 o.dimensions = "foo"; |
| 1781 o.end_date = "foo"; | 1785 o.end_date = "foo"; |
| 1782 o.filters = "foo"; | 1786 o.filters = "foo"; |
| 1783 o.ids = "foo"; | 1787 o.ids = "foo"; |
| 1784 o.max_results = 42; | 1788 o.max_results = 42; |
| 1785 o.metrics = buildUnnamed1258(); | 1789 o.metrics = buildUnnamed1515(); |
| 1786 o.samplingLevel = "foo"; | 1790 o.samplingLevel = "foo"; |
| 1787 o.segment = "foo"; | 1791 o.segment = "foo"; |
| 1788 o.sort = buildUnnamed1259(); | 1792 o.sort = buildUnnamed1516(); |
| 1789 o.start_date = "foo"; | 1793 o.start_date = "foo"; |
| 1790 o.start_index = 42; | 1794 o.start_index = 42; |
| 1791 } | 1795 } |
| 1792 buildCounterGaDataQuery--; | 1796 buildCounterGaDataQuery--; |
| 1793 return o; | 1797 return o; |
| 1794 } | 1798 } |
| 1795 | 1799 |
| 1796 checkGaDataQuery(api.GaDataQuery o) { | 1800 checkGaDataQuery(api.GaDataQuery o) { |
| 1797 buildCounterGaDataQuery++; | 1801 buildCounterGaDataQuery++; |
| 1798 if (buildCounterGaDataQuery < 3) { | 1802 if (buildCounterGaDataQuery < 3) { |
| 1799 unittest.expect(o.dimensions, unittest.equals('foo')); | 1803 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 1800 unittest.expect(o.end_date, unittest.equals('foo')); | 1804 unittest.expect(o.end_date, unittest.equals('foo')); |
| 1801 unittest.expect(o.filters, unittest.equals('foo')); | 1805 unittest.expect(o.filters, unittest.equals('foo')); |
| 1802 unittest.expect(o.ids, unittest.equals('foo')); | 1806 unittest.expect(o.ids, unittest.equals('foo')); |
| 1803 unittest.expect(o.max_results, unittest.equals(42)); | 1807 unittest.expect(o.max_results, unittest.equals(42)); |
| 1804 checkUnnamed1258(o.metrics); | 1808 checkUnnamed1515(o.metrics); |
| 1805 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 1809 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
| 1806 unittest.expect(o.segment, unittest.equals('foo')); | 1810 unittest.expect(o.segment, unittest.equals('foo')); |
| 1807 checkUnnamed1259(o.sort); | 1811 checkUnnamed1516(o.sort); |
| 1808 unittest.expect(o.start_date, unittest.equals('foo')); | 1812 unittest.expect(o.start_date, unittest.equals('foo')); |
| 1809 unittest.expect(o.start_index, unittest.equals(42)); | 1813 unittest.expect(o.start_index, unittest.equals(42)); |
| 1810 } | 1814 } |
| 1811 buildCounterGaDataQuery--; | 1815 buildCounterGaDataQuery--; |
| 1812 } | 1816 } |
| 1813 | 1817 |
| 1814 buildUnnamed1260() { | 1818 buildUnnamed1517() { |
| 1815 var o = new core.List<core.String>(); | 1819 var o = new core.List<core.String>(); |
| 1816 o.add("foo"); | 1820 o.add("foo"); |
| 1817 o.add("foo"); | 1821 o.add("foo"); |
| 1818 return o; | 1822 return o; |
| 1819 } | 1823 } |
| 1820 | 1824 |
| 1821 checkUnnamed1260(core.List<core.String> o) { | 1825 checkUnnamed1517(core.List<core.String> o) { |
| 1822 unittest.expect(o, unittest.hasLength(2)); | 1826 unittest.expect(o, unittest.hasLength(2)); |
| 1823 unittest.expect(o[0], unittest.equals('foo')); | 1827 unittest.expect(o[0], unittest.equals('foo')); |
| 1824 unittest.expect(o[1], unittest.equals('foo')); | 1828 unittest.expect(o[1], unittest.equals('foo')); |
| 1825 } | 1829 } |
| 1826 | 1830 |
| 1827 buildUnnamed1261() { | 1831 buildUnnamed1518() { |
| 1828 var o = new core.List<core.List<core.String>>(); | 1832 var o = new core.List<core.List<core.String>>(); |
| 1829 o.add(buildUnnamed1260()); | 1833 o.add(buildUnnamed1517()); |
| 1830 o.add(buildUnnamed1260()); | 1834 o.add(buildUnnamed1517()); |
| 1831 return o; | 1835 return o; |
| 1832 } | 1836 } |
| 1833 | 1837 |
| 1834 checkUnnamed1261(core.List<core.List<core.String>> o) { | 1838 checkUnnamed1518(core.List<core.List<core.String>> o) { |
| 1835 unittest.expect(o, unittest.hasLength(2)); | 1839 unittest.expect(o, unittest.hasLength(2)); |
| 1836 checkUnnamed1260(o[0]); | 1840 checkUnnamed1517(o[0]); |
| 1837 checkUnnamed1260(o[1]); | 1841 checkUnnamed1517(o[1]); |
| 1838 } | 1842 } |
| 1839 | 1843 |
| 1840 buildUnnamed1262() { | 1844 buildUnnamed1519() { |
| 1841 var o = new core.Map<core.String, core.String>(); | 1845 var o = new core.Map<core.String, core.String>(); |
| 1842 o["x"] = "foo"; | 1846 o["x"] = "foo"; |
| 1843 o["y"] = "foo"; | 1847 o["y"] = "foo"; |
| 1844 return o; | 1848 return o; |
| 1845 } | 1849 } |
| 1846 | 1850 |
| 1847 checkUnnamed1262(core.Map<core.String, core.String> o) { | 1851 checkUnnamed1519(core.Map<core.String, core.String> o) { |
| 1848 unittest.expect(o, unittest.hasLength(2)); | 1852 unittest.expect(o, unittest.hasLength(2)); |
| 1849 unittest.expect(o["x"], unittest.equals('foo')); | 1853 unittest.expect(o["x"], unittest.equals('foo')); |
| 1850 unittest.expect(o["y"], unittest.equals('foo')); | 1854 unittest.expect(o["y"], unittest.equals('foo')); |
| 1851 } | 1855 } |
| 1852 | 1856 |
| 1853 core.int buildCounterGaData = 0; | 1857 core.int buildCounterGaData = 0; |
| 1854 buildGaData() { | 1858 buildGaData() { |
| 1855 var o = new api.GaData(); | 1859 var o = new api.GaData(); |
| 1856 buildCounterGaData++; | 1860 buildCounterGaData++; |
| 1857 if (buildCounterGaData < 3) { | 1861 if (buildCounterGaData < 3) { |
| 1858 o.columnHeaders = buildUnnamed1254(); | 1862 o.columnHeaders = buildUnnamed1511(); |
| 1859 o.containsSampledData = true; | 1863 o.containsSampledData = true; |
| 1860 o.dataTable = buildGaDataDataTable(); | 1864 o.dataTable = buildGaDataDataTable(); |
| 1861 o.id = "foo"; | 1865 o.id = "foo"; |
| 1862 o.itemsPerPage = 42; | 1866 o.itemsPerPage = 42; |
| 1863 o.kind = "foo"; | 1867 o.kind = "foo"; |
| 1864 o.nextLink = "foo"; | 1868 o.nextLink = "foo"; |
| 1865 o.previousLink = "foo"; | 1869 o.previousLink = "foo"; |
| 1866 o.profileInfo = buildGaDataProfileInfo(); | 1870 o.profileInfo = buildGaDataProfileInfo(); |
| 1867 o.query = buildGaDataQuery(); | 1871 o.query = buildGaDataQuery(); |
| 1868 o.rows = buildUnnamed1261(); | 1872 o.rows = buildUnnamed1518(); |
| 1869 o.sampleSize = "foo"; | 1873 o.sampleSize = "foo"; |
| 1870 o.sampleSpace = "foo"; | 1874 o.sampleSpace = "foo"; |
| 1871 o.selfLink = "foo"; | 1875 o.selfLink = "foo"; |
| 1872 o.totalResults = 42; | 1876 o.totalResults = 42; |
| 1873 o.totalsForAllResults = buildUnnamed1262(); | 1877 o.totalsForAllResults = buildUnnamed1519(); |
| 1874 } | 1878 } |
| 1875 buildCounterGaData--; | 1879 buildCounterGaData--; |
| 1876 return o; | 1880 return o; |
| 1877 } | 1881 } |
| 1878 | 1882 |
| 1879 checkGaData(api.GaData o) { | 1883 checkGaData(api.GaData o) { |
| 1880 buildCounterGaData++; | 1884 buildCounterGaData++; |
| 1881 if (buildCounterGaData < 3) { | 1885 if (buildCounterGaData < 3) { |
| 1882 checkUnnamed1254(o.columnHeaders); | 1886 checkUnnamed1511(o.columnHeaders); |
| 1883 unittest.expect(o.containsSampledData, unittest.isTrue); | 1887 unittest.expect(o.containsSampledData, unittest.isTrue); |
| 1884 checkGaDataDataTable(o.dataTable); | 1888 checkGaDataDataTable(o.dataTable); |
| 1885 unittest.expect(o.id, unittest.equals('foo')); | 1889 unittest.expect(o.id, unittest.equals('foo')); |
| 1886 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1890 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 1887 unittest.expect(o.kind, unittest.equals('foo')); | 1891 unittest.expect(o.kind, unittest.equals('foo')); |
| 1888 unittest.expect(o.nextLink, unittest.equals('foo')); | 1892 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 1889 unittest.expect(o.previousLink, unittest.equals('foo')); | 1893 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 1890 checkGaDataProfileInfo(o.profileInfo); | 1894 checkGaDataProfileInfo(o.profileInfo); |
| 1891 checkGaDataQuery(o.query); | 1895 checkGaDataQuery(o.query); |
| 1892 checkUnnamed1261(o.rows); | 1896 checkUnnamed1518(o.rows); |
| 1893 unittest.expect(o.sampleSize, unittest.equals('foo')); | 1897 unittest.expect(o.sampleSize, unittest.equals('foo')); |
| 1894 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 1898 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
| 1895 unittest.expect(o.selfLink, unittest.equals('foo')); | 1899 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 1896 unittest.expect(o.totalResults, unittest.equals(42)); | 1900 unittest.expect(o.totalResults, unittest.equals(42)); |
| 1897 checkUnnamed1262(o.totalsForAllResults); | 1901 checkUnnamed1519(o.totalsForAllResults); |
| 1898 } | 1902 } |
| 1899 buildCounterGaData--; | 1903 buildCounterGaData--; |
| 1900 } | 1904 } |
| 1901 | 1905 |
| 1902 core.int buildCounterGoalEventDetailsEventConditions = 0; | 1906 core.int buildCounterGoalEventDetailsEventConditions = 0; |
| 1903 buildGoalEventDetailsEventConditions() { | 1907 buildGoalEventDetailsEventConditions() { |
| 1904 var o = new api.GoalEventDetailsEventConditions(); | 1908 var o = new api.GoalEventDetailsEventConditions(); |
| 1905 buildCounterGoalEventDetailsEventConditions++; | 1909 buildCounterGoalEventDetailsEventConditions++; |
| 1906 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1910 if (buildCounterGoalEventDetailsEventConditions < 3) { |
| 1907 o.comparisonType = "foo"; | 1911 o.comparisonType = "foo"; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 1919 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1923 if (buildCounterGoalEventDetailsEventConditions < 3) { |
| 1920 unittest.expect(o.comparisonType, unittest.equals('foo')); | 1924 unittest.expect(o.comparisonType, unittest.equals('foo')); |
| 1921 unittest.expect(o.comparisonValue, unittest.equals('foo')); | 1925 unittest.expect(o.comparisonValue, unittest.equals('foo')); |
| 1922 unittest.expect(o.expression, unittest.equals('foo')); | 1926 unittest.expect(o.expression, unittest.equals('foo')); |
| 1923 unittest.expect(o.matchType, unittest.equals('foo')); | 1927 unittest.expect(o.matchType, unittest.equals('foo')); |
| 1924 unittest.expect(o.type, unittest.equals('foo')); | 1928 unittest.expect(o.type, unittest.equals('foo')); |
| 1925 } | 1929 } |
| 1926 buildCounterGoalEventDetailsEventConditions--; | 1930 buildCounterGoalEventDetailsEventConditions--; |
| 1927 } | 1931 } |
| 1928 | 1932 |
| 1929 buildUnnamed1263() { | 1933 buildUnnamed1520() { |
| 1930 var o = new core.List<api.GoalEventDetailsEventConditions>(); | 1934 var o = new core.List<api.GoalEventDetailsEventConditions>(); |
| 1931 o.add(buildGoalEventDetailsEventConditions()); | 1935 o.add(buildGoalEventDetailsEventConditions()); |
| 1932 o.add(buildGoalEventDetailsEventConditions()); | 1936 o.add(buildGoalEventDetailsEventConditions()); |
| 1933 return o; | 1937 return o; |
| 1934 } | 1938 } |
| 1935 | 1939 |
| 1936 checkUnnamed1263(core.List<api.GoalEventDetailsEventConditions> o) { | 1940 checkUnnamed1520(core.List<api.GoalEventDetailsEventConditions> o) { |
| 1937 unittest.expect(o, unittest.hasLength(2)); | 1941 unittest.expect(o, unittest.hasLength(2)); |
| 1938 checkGoalEventDetailsEventConditions(o[0]); | 1942 checkGoalEventDetailsEventConditions(o[0]); |
| 1939 checkGoalEventDetailsEventConditions(o[1]); | 1943 checkGoalEventDetailsEventConditions(o[1]); |
| 1940 } | 1944 } |
| 1941 | 1945 |
| 1942 core.int buildCounterGoalEventDetails = 0; | 1946 core.int buildCounterGoalEventDetails = 0; |
| 1943 buildGoalEventDetails() { | 1947 buildGoalEventDetails() { |
| 1944 var o = new api.GoalEventDetails(); | 1948 var o = new api.GoalEventDetails(); |
| 1945 buildCounterGoalEventDetails++; | 1949 buildCounterGoalEventDetails++; |
| 1946 if (buildCounterGoalEventDetails < 3) { | 1950 if (buildCounterGoalEventDetails < 3) { |
| 1947 o.eventConditions = buildUnnamed1263(); | 1951 o.eventConditions = buildUnnamed1520(); |
| 1948 o.useEventValue = true; | 1952 o.useEventValue = true; |
| 1949 } | 1953 } |
| 1950 buildCounterGoalEventDetails--; | 1954 buildCounterGoalEventDetails--; |
| 1951 return o; | 1955 return o; |
| 1952 } | 1956 } |
| 1953 | 1957 |
| 1954 checkGoalEventDetails(api.GoalEventDetails o) { | 1958 checkGoalEventDetails(api.GoalEventDetails o) { |
| 1955 buildCounterGoalEventDetails++; | 1959 buildCounterGoalEventDetails++; |
| 1956 if (buildCounterGoalEventDetails < 3) { | 1960 if (buildCounterGoalEventDetails < 3) { |
| 1957 checkUnnamed1263(o.eventConditions); | 1961 checkUnnamed1520(o.eventConditions); |
| 1958 unittest.expect(o.useEventValue, unittest.isTrue); | 1962 unittest.expect(o.useEventValue, unittest.isTrue); |
| 1959 } | 1963 } |
| 1960 buildCounterGoalEventDetails--; | 1964 buildCounterGoalEventDetails--; |
| 1961 } | 1965 } |
| 1962 | 1966 |
| 1963 core.int buildCounterGoalParentLink = 0; | 1967 core.int buildCounterGoalParentLink = 0; |
| 1964 buildGoalParentLink() { | 1968 buildGoalParentLink() { |
| 1965 var o = new api.GoalParentLink(); | 1969 var o = new api.GoalParentLink(); |
| 1966 buildCounterGoalParentLink++; | 1970 buildCounterGoalParentLink++; |
| 1967 if (buildCounterGoalParentLink < 3) { | 1971 if (buildCounterGoalParentLink < 3) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1997 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { | 2001 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { |
| 1998 buildCounterGoalUrlDestinationDetailsSteps++; | 2002 buildCounterGoalUrlDestinationDetailsSteps++; |
| 1999 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { | 2003 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { |
| 2000 unittest.expect(o.name, unittest.equals('foo')); | 2004 unittest.expect(o.name, unittest.equals('foo')); |
| 2001 unittest.expect(o.number, unittest.equals(42)); | 2005 unittest.expect(o.number, unittest.equals(42)); |
| 2002 unittest.expect(o.url, unittest.equals('foo')); | 2006 unittest.expect(o.url, unittest.equals('foo')); |
| 2003 } | 2007 } |
| 2004 buildCounterGoalUrlDestinationDetailsSteps--; | 2008 buildCounterGoalUrlDestinationDetailsSteps--; |
| 2005 } | 2009 } |
| 2006 | 2010 |
| 2007 buildUnnamed1264() { | 2011 buildUnnamed1521() { |
| 2008 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); | 2012 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); |
| 2009 o.add(buildGoalUrlDestinationDetailsSteps()); | 2013 o.add(buildGoalUrlDestinationDetailsSteps()); |
| 2010 o.add(buildGoalUrlDestinationDetailsSteps()); | 2014 o.add(buildGoalUrlDestinationDetailsSteps()); |
| 2011 return o; | 2015 return o; |
| 2012 } | 2016 } |
| 2013 | 2017 |
| 2014 checkUnnamed1264(core.List<api.GoalUrlDestinationDetailsSteps> o) { | 2018 checkUnnamed1521(core.List<api.GoalUrlDestinationDetailsSteps> o) { |
| 2015 unittest.expect(o, unittest.hasLength(2)); | 2019 unittest.expect(o, unittest.hasLength(2)); |
| 2016 checkGoalUrlDestinationDetailsSteps(o[0]); | 2020 checkGoalUrlDestinationDetailsSteps(o[0]); |
| 2017 checkGoalUrlDestinationDetailsSteps(o[1]); | 2021 checkGoalUrlDestinationDetailsSteps(o[1]); |
| 2018 } | 2022 } |
| 2019 | 2023 |
| 2020 core.int buildCounterGoalUrlDestinationDetails = 0; | 2024 core.int buildCounterGoalUrlDestinationDetails = 0; |
| 2021 buildGoalUrlDestinationDetails() { | 2025 buildGoalUrlDestinationDetails() { |
| 2022 var o = new api.GoalUrlDestinationDetails(); | 2026 var o = new api.GoalUrlDestinationDetails(); |
| 2023 buildCounterGoalUrlDestinationDetails++; | 2027 buildCounterGoalUrlDestinationDetails++; |
| 2024 if (buildCounterGoalUrlDestinationDetails < 3) { | 2028 if (buildCounterGoalUrlDestinationDetails < 3) { |
| 2025 o.caseSensitive = true; | 2029 o.caseSensitive = true; |
| 2026 o.firstStepRequired = true; | 2030 o.firstStepRequired = true; |
| 2027 o.matchType = "foo"; | 2031 o.matchType = "foo"; |
| 2028 o.steps = buildUnnamed1264(); | 2032 o.steps = buildUnnamed1521(); |
| 2029 o.url = "foo"; | 2033 o.url = "foo"; |
| 2030 } | 2034 } |
| 2031 buildCounterGoalUrlDestinationDetails--; | 2035 buildCounterGoalUrlDestinationDetails--; |
| 2032 return o; | 2036 return o; |
| 2033 } | 2037 } |
| 2034 | 2038 |
| 2035 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { | 2039 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { |
| 2036 buildCounterGoalUrlDestinationDetails++; | 2040 buildCounterGoalUrlDestinationDetails++; |
| 2037 if (buildCounterGoalUrlDestinationDetails < 3) { | 2041 if (buildCounterGoalUrlDestinationDetails < 3) { |
| 2038 unittest.expect(o.caseSensitive, unittest.isTrue); | 2042 unittest.expect(o.caseSensitive, unittest.isTrue); |
| 2039 unittest.expect(o.firstStepRequired, unittest.isTrue); | 2043 unittest.expect(o.firstStepRequired, unittest.isTrue); |
| 2040 unittest.expect(o.matchType, unittest.equals('foo')); | 2044 unittest.expect(o.matchType, unittest.equals('foo')); |
| 2041 checkUnnamed1264(o.steps); | 2045 checkUnnamed1521(o.steps); |
| 2042 unittest.expect(o.url, unittest.equals('foo')); | 2046 unittest.expect(o.url, unittest.equals('foo')); |
| 2043 } | 2047 } |
| 2044 buildCounterGoalUrlDestinationDetails--; | 2048 buildCounterGoalUrlDestinationDetails--; |
| 2045 } | 2049 } |
| 2046 | 2050 |
| 2047 core.int buildCounterGoalVisitNumPagesDetails = 0; | 2051 core.int buildCounterGoalVisitNumPagesDetails = 0; |
| 2048 buildGoalVisitNumPagesDetails() { | 2052 buildGoalVisitNumPagesDetails() { |
| 2049 var o = new api.GoalVisitNumPagesDetails(); | 2053 var o = new api.GoalVisitNumPagesDetails(); |
| 2050 buildCounterGoalVisitNumPagesDetails++; | 2054 buildCounterGoalVisitNumPagesDetails++; |
| 2051 if (buildCounterGoalVisitNumPagesDetails < 3) { | 2055 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"))); | 2136 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2133 checkGoalUrlDestinationDetails(o.urlDestinationDetails); | 2137 checkGoalUrlDestinationDetails(o.urlDestinationDetails); |
| 2134 unittest.expect(o.value, unittest.equals(42.0)); | 2138 unittest.expect(o.value, unittest.equals(42.0)); |
| 2135 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); | 2139 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); |
| 2136 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); | 2140 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); |
| 2137 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2141 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2138 } | 2142 } |
| 2139 buildCounterGoal--; | 2143 buildCounterGoal--; |
| 2140 } | 2144 } |
| 2141 | 2145 |
| 2142 buildUnnamed1265() { | 2146 buildUnnamed1522() { |
| 2143 var o = new core.List<api.Goal>(); | 2147 var o = new core.List<api.Goal>(); |
| 2144 o.add(buildGoal()); | 2148 o.add(buildGoal()); |
| 2145 o.add(buildGoal()); | 2149 o.add(buildGoal()); |
| 2146 return o; | 2150 return o; |
| 2147 } | 2151 } |
| 2148 | 2152 |
| 2149 checkUnnamed1265(core.List<api.Goal> o) { | 2153 checkUnnamed1522(core.List<api.Goal> o) { |
| 2150 unittest.expect(o, unittest.hasLength(2)); | 2154 unittest.expect(o, unittest.hasLength(2)); |
| 2151 checkGoal(o[0]); | 2155 checkGoal(o[0]); |
| 2152 checkGoal(o[1]); | 2156 checkGoal(o[1]); |
| 2153 } | 2157 } |
| 2154 | 2158 |
| 2155 core.int buildCounterGoals = 0; | 2159 core.int buildCounterGoals = 0; |
| 2156 buildGoals() { | 2160 buildGoals() { |
| 2157 var o = new api.Goals(); | 2161 var o = new api.Goals(); |
| 2158 buildCounterGoals++; | 2162 buildCounterGoals++; |
| 2159 if (buildCounterGoals < 3) { | 2163 if (buildCounterGoals < 3) { |
| 2160 o.items = buildUnnamed1265(); | 2164 o.items = buildUnnamed1522(); |
| 2161 o.itemsPerPage = 42; | 2165 o.itemsPerPage = 42; |
| 2162 o.kind = "foo"; | 2166 o.kind = "foo"; |
| 2163 o.nextLink = "foo"; | 2167 o.nextLink = "foo"; |
| 2164 o.previousLink = "foo"; | 2168 o.previousLink = "foo"; |
| 2165 o.startIndex = 42; | 2169 o.startIndex = 42; |
| 2166 o.totalResults = 42; | 2170 o.totalResults = 42; |
| 2167 o.username = "foo"; | 2171 o.username = "foo"; |
| 2168 } | 2172 } |
| 2169 buildCounterGoals--; | 2173 buildCounterGoals--; |
| 2170 return o; | 2174 return o; |
| 2171 } | 2175 } |
| 2172 | 2176 |
| 2173 checkGoals(api.Goals o) { | 2177 checkGoals(api.Goals o) { |
| 2174 buildCounterGoals++; | 2178 buildCounterGoals++; |
| 2175 if (buildCounterGoals < 3) { | 2179 if (buildCounterGoals < 3) { |
| 2176 checkUnnamed1265(o.items); | 2180 checkUnnamed1522(o.items); |
| 2177 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2181 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2178 unittest.expect(o.kind, unittest.equals('foo')); | 2182 unittest.expect(o.kind, unittest.equals('foo')); |
| 2179 unittest.expect(o.nextLink, unittest.equals('foo')); | 2183 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2180 unittest.expect(o.previousLink, unittest.equals('foo')); | 2184 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2181 unittest.expect(o.startIndex, unittest.equals(42)); | 2185 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2182 unittest.expect(o.totalResults, unittest.equals(42)); | 2186 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2183 unittest.expect(o.username, unittest.equals('foo')); | 2187 unittest.expect(o.username, unittest.equals('foo')); |
| 2184 } | 2188 } |
| 2185 buildCounterGoals--; | 2189 buildCounterGoals--; |
| 2186 } | 2190 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2201 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { | 2205 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { |
| 2202 buildCounterMcfDataColumnHeaders++; | 2206 buildCounterMcfDataColumnHeaders++; |
| 2203 if (buildCounterMcfDataColumnHeaders < 3) { | 2207 if (buildCounterMcfDataColumnHeaders < 3) { |
| 2204 unittest.expect(o.columnType, unittest.equals('foo')); | 2208 unittest.expect(o.columnType, unittest.equals('foo')); |
| 2205 unittest.expect(o.dataType, unittest.equals('foo')); | 2209 unittest.expect(o.dataType, unittest.equals('foo')); |
| 2206 unittest.expect(o.name, unittest.equals('foo')); | 2210 unittest.expect(o.name, unittest.equals('foo')); |
| 2207 } | 2211 } |
| 2208 buildCounterMcfDataColumnHeaders--; | 2212 buildCounterMcfDataColumnHeaders--; |
| 2209 } | 2213 } |
| 2210 | 2214 |
| 2211 buildUnnamed1266() { | 2215 buildUnnamed1523() { |
| 2212 var o = new core.List<api.McfDataColumnHeaders>(); | 2216 var o = new core.List<api.McfDataColumnHeaders>(); |
| 2213 o.add(buildMcfDataColumnHeaders()); | 2217 o.add(buildMcfDataColumnHeaders()); |
| 2214 o.add(buildMcfDataColumnHeaders()); | 2218 o.add(buildMcfDataColumnHeaders()); |
| 2215 return o; | 2219 return o; |
| 2216 } | 2220 } |
| 2217 | 2221 |
| 2218 checkUnnamed1266(core.List<api.McfDataColumnHeaders> o) { | 2222 checkUnnamed1523(core.List<api.McfDataColumnHeaders> o) { |
| 2219 unittest.expect(o, unittest.hasLength(2)); | 2223 unittest.expect(o, unittest.hasLength(2)); |
| 2220 checkMcfDataColumnHeaders(o[0]); | 2224 checkMcfDataColumnHeaders(o[0]); |
| 2221 checkMcfDataColumnHeaders(o[1]); | 2225 checkMcfDataColumnHeaders(o[1]); |
| 2222 } | 2226 } |
| 2223 | 2227 |
| 2224 core.int buildCounterMcfDataProfileInfo = 0; | 2228 core.int buildCounterMcfDataProfileInfo = 0; |
| 2225 buildMcfDataProfileInfo() { | 2229 buildMcfDataProfileInfo() { |
| 2226 var o = new api.McfDataProfileInfo(); | 2230 var o = new api.McfDataProfileInfo(); |
| 2227 buildCounterMcfDataProfileInfo++; | 2231 buildCounterMcfDataProfileInfo++; |
| 2228 if (buildCounterMcfDataProfileInfo < 3) { | 2232 if (buildCounterMcfDataProfileInfo < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2243 unittest.expect(o.accountId, unittest.equals('foo')); | 2247 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2244 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2248 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 2245 unittest.expect(o.profileId, unittest.equals('foo')); | 2249 unittest.expect(o.profileId, unittest.equals('foo')); |
| 2246 unittest.expect(o.profileName, unittest.equals('foo')); | 2250 unittest.expect(o.profileName, unittest.equals('foo')); |
| 2247 unittest.expect(o.tableId, unittest.equals('foo')); | 2251 unittest.expect(o.tableId, unittest.equals('foo')); |
| 2248 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2252 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2249 } | 2253 } |
| 2250 buildCounterMcfDataProfileInfo--; | 2254 buildCounterMcfDataProfileInfo--; |
| 2251 } | 2255 } |
| 2252 | 2256 |
| 2253 buildUnnamed1267() { | 2257 buildUnnamed1524() { |
| 2254 var o = new core.List<core.String>(); | 2258 var o = new core.List<core.String>(); |
| 2255 o.add("foo"); | 2259 o.add("foo"); |
| 2256 o.add("foo"); | 2260 o.add("foo"); |
| 2257 return o; | 2261 return o; |
| 2258 } | 2262 } |
| 2259 | 2263 |
| 2260 checkUnnamed1267(core.List<core.String> o) { | 2264 checkUnnamed1524(core.List<core.String> o) { |
| 2261 unittest.expect(o, unittest.hasLength(2)); | 2265 unittest.expect(o, unittest.hasLength(2)); |
| 2262 unittest.expect(o[0], unittest.equals('foo')); | 2266 unittest.expect(o[0], unittest.equals('foo')); |
| 2263 unittest.expect(o[1], unittest.equals('foo')); | 2267 unittest.expect(o[1], unittest.equals('foo')); |
| 2264 } | 2268 } |
| 2265 | 2269 |
| 2266 buildUnnamed1268() { | 2270 buildUnnamed1525() { |
| 2267 var o = new core.List<core.String>(); | 2271 var o = new core.List<core.String>(); |
| 2268 o.add("foo"); | 2272 o.add("foo"); |
| 2269 o.add("foo"); | 2273 o.add("foo"); |
| 2270 return o; | 2274 return o; |
| 2271 } | 2275 } |
| 2272 | 2276 |
| 2273 checkUnnamed1268(core.List<core.String> o) { | 2277 checkUnnamed1525(core.List<core.String> o) { |
| 2274 unittest.expect(o, unittest.hasLength(2)); | 2278 unittest.expect(o, unittest.hasLength(2)); |
| 2275 unittest.expect(o[0], unittest.equals('foo')); | 2279 unittest.expect(o[0], unittest.equals('foo')); |
| 2276 unittest.expect(o[1], unittest.equals('foo')); | 2280 unittest.expect(o[1], unittest.equals('foo')); |
| 2277 } | 2281 } |
| 2278 | 2282 |
| 2279 core.int buildCounterMcfDataQuery = 0; | 2283 core.int buildCounterMcfDataQuery = 0; |
| 2280 buildMcfDataQuery() { | 2284 buildMcfDataQuery() { |
| 2281 var o = new api.McfDataQuery(); | 2285 var o = new api.McfDataQuery(); |
| 2282 buildCounterMcfDataQuery++; | 2286 buildCounterMcfDataQuery++; |
| 2283 if (buildCounterMcfDataQuery < 3) { | 2287 if (buildCounterMcfDataQuery < 3) { |
| 2284 o.dimensions = "foo"; | 2288 o.dimensions = "foo"; |
| 2285 o.end_date = "foo"; | 2289 o.end_date = "foo"; |
| 2286 o.filters = "foo"; | 2290 o.filters = "foo"; |
| 2287 o.ids = "foo"; | 2291 o.ids = "foo"; |
| 2288 o.max_results = 42; | 2292 o.max_results = 42; |
| 2289 o.metrics = buildUnnamed1267(); | 2293 o.metrics = buildUnnamed1524(); |
| 2290 o.samplingLevel = "foo"; | 2294 o.samplingLevel = "foo"; |
| 2291 o.segment = "foo"; | 2295 o.segment = "foo"; |
| 2292 o.sort = buildUnnamed1268(); | 2296 o.sort = buildUnnamed1525(); |
| 2293 o.start_date = "foo"; | 2297 o.start_date = "foo"; |
| 2294 o.start_index = 42; | 2298 o.start_index = 42; |
| 2295 } | 2299 } |
| 2296 buildCounterMcfDataQuery--; | 2300 buildCounterMcfDataQuery--; |
| 2297 return o; | 2301 return o; |
| 2298 } | 2302 } |
| 2299 | 2303 |
| 2300 checkMcfDataQuery(api.McfDataQuery o) { | 2304 checkMcfDataQuery(api.McfDataQuery o) { |
| 2301 buildCounterMcfDataQuery++; | 2305 buildCounterMcfDataQuery++; |
| 2302 if (buildCounterMcfDataQuery < 3) { | 2306 if (buildCounterMcfDataQuery < 3) { |
| 2303 unittest.expect(o.dimensions, unittest.equals('foo')); | 2307 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 2304 unittest.expect(o.end_date, unittest.equals('foo')); | 2308 unittest.expect(o.end_date, unittest.equals('foo')); |
| 2305 unittest.expect(o.filters, unittest.equals('foo')); | 2309 unittest.expect(o.filters, unittest.equals('foo')); |
| 2306 unittest.expect(o.ids, unittest.equals('foo')); | 2310 unittest.expect(o.ids, unittest.equals('foo')); |
| 2307 unittest.expect(o.max_results, unittest.equals(42)); | 2311 unittest.expect(o.max_results, unittest.equals(42)); |
| 2308 checkUnnamed1267(o.metrics); | 2312 checkUnnamed1524(o.metrics); |
| 2309 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 2313 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
| 2310 unittest.expect(o.segment, unittest.equals('foo')); | 2314 unittest.expect(o.segment, unittest.equals('foo')); |
| 2311 checkUnnamed1268(o.sort); | 2315 checkUnnamed1525(o.sort); |
| 2312 unittest.expect(o.start_date, unittest.equals('foo')); | 2316 unittest.expect(o.start_date, unittest.equals('foo')); |
| 2313 unittest.expect(o.start_index, unittest.equals(42)); | 2317 unittest.expect(o.start_index, unittest.equals(42)); |
| 2314 } | 2318 } |
| 2315 buildCounterMcfDataQuery--; | 2319 buildCounterMcfDataQuery--; |
| 2316 } | 2320 } |
| 2317 | 2321 |
| 2318 core.int buildCounterMcfDataRowsConversionPathValue = 0; | 2322 core.int buildCounterMcfDataRowsConversionPathValue = 0; |
| 2319 buildMcfDataRowsConversionPathValue() { | 2323 buildMcfDataRowsConversionPathValue() { |
| 2320 var o = new api.McfDataRowsConversionPathValue(); | 2324 var o = new api.McfDataRowsConversionPathValue(); |
| 2321 buildCounterMcfDataRowsConversionPathValue++; | 2325 buildCounterMcfDataRowsConversionPathValue++; |
| 2322 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2326 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
| 2323 o.interactionType = "foo"; | 2327 o.interactionType = "foo"; |
| 2324 o.nodeValue = "foo"; | 2328 o.nodeValue = "foo"; |
| 2325 } | 2329 } |
| 2326 buildCounterMcfDataRowsConversionPathValue--; | 2330 buildCounterMcfDataRowsConversionPathValue--; |
| 2327 return o; | 2331 return o; |
| 2328 } | 2332 } |
| 2329 | 2333 |
| 2330 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { | 2334 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { |
| 2331 buildCounterMcfDataRowsConversionPathValue++; | 2335 buildCounterMcfDataRowsConversionPathValue++; |
| 2332 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2336 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
| 2333 unittest.expect(o.interactionType, unittest.equals('foo')); | 2337 unittest.expect(o.interactionType, unittest.equals('foo')); |
| 2334 unittest.expect(o.nodeValue, unittest.equals('foo')); | 2338 unittest.expect(o.nodeValue, unittest.equals('foo')); |
| 2335 } | 2339 } |
| 2336 buildCounterMcfDataRowsConversionPathValue--; | 2340 buildCounterMcfDataRowsConversionPathValue--; |
| 2337 } | 2341 } |
| 2338 | 2342 |
| 2339 buildUnnamed1269() { | 2343 buildUnnamed1526() { |
| 2340 var o = new core.List<api.McfDataRowsConversionPathValue>(); | 2344 var o = new core.List<api.McfDataRowsConversionPathValue>(); |
| 2341 o.add(buildMcfDataRowsConversionPathValue()); | 2345 o.add(buildMcfDataRowsConversionPathValue()); |
| 2342 o.add(buildMcfDataRowsConversionPathValue()); | 2346 o.add(buildMcfDataRowsConversionPathValue()); |
| 2343 return o; | 2347 return o; |
| 2344 } | 2348 } |
| 2345 | 2349 |
| 2346 checkUnnamed1269(core.List<api.McfDataRowsConversionPathValue> o) { | 2350 checkUnnamed1526(core.List<api.McfDataRowsConversionPathValue> o) { |
| 2347 unittest.expect(o, unittest.hasLength(2)); | 2351 unittest.expect(o, unittest.hasLength(2)); |
| 2348 checkMcfDataRowsConversionPathValue(o[0]); | 2352 checkMcfDataRowsConversionPathValue(o[0]); |
| 2349 checkMcfDataRowsConversionPathValue(o[1]); | 2353 checkMcfDataRowsConversionPathValue(o[1]); |
| 2350 } | 2354 } |
| 2351 | 2355 |
| 2352 core.int buildCounterMcfDataRows = 0; | 2356 core.int buildCounterMcfDataRows = 0; |
| 2353 buildMcfDataRows() { | 2357 buildMcfDataRows() { |
| 2354 var o = new api.McfDataRows(); | 2358 var o = new api.McfDataRows(); |
| 2355 buildCounterMcfDataRows++; | 2359 buildCounterMcfDataRows++; |
| 2356 if (buildCounterMcfDataRows < 3) { | 2360 if (buildCounterMcfDataRows < 3) { |
| 2357 o.conversionPathValue = buildUnnamed1269(); | 2361 o.conversionPathValue = buildUnnamed1526(); |
| 2358 o.primitiveValue = "foo"; | 2362 o.primitiveValue = "foo"; |
| 2359 } | 2363 } |
| 2360 buildCounterMcfDataRows--; | 2364 buildCounterMcfDataRows--; |
| 2361 return o; | 2365 return o; |
| 2362 } | 2366 } |
| 2363 | 2367 |
| 2364 checkMcfDataRows(api.McfDataRows o) { | 2368 checkMcfDataRows(api.McfDataRows o) { |
| 2365 buildCounterMcfDataRows++; | 2369 buildCounterMcfDataRows++; |
| 2366 if (buildCounterMcfDataRows < 3) { | 2370 if (buildCounterMcfDataRows < 3) { |
| 2367 checkUnnamed1269(o.conversionPathValue); | 2371 checkUnnamed1526(o.conversionPathValue); |
| 2368 unittest.expect(o.primitiveValue, unittest.equals('foo')); | 2372 unittest.expect(o.primitiveValue, unittest.equals('foo')); |
| 2369 } | 2373 } |
| 2370 buildCounterMcfDataRows--; | 2374 buildCounterMcfDataRows--; |
| 2371 } | 2375 } |
| 2372 | 2376 |
| 2373 buildUnnamed1270() { | 2377 buildUnnamed1527() { |
| 2374 var o = new core.List<api.McfDataRows>(); | 2378 var o = new core.List<api.McfDataRows>(); |
| 2375 o.add(buildMcfDataRows()); | 2379 o.add(buildMcfDataRows()); |
| 2376 o.add(buildMcfDataRows()); | 2380 o.add(buildMcfDataRows()); |
| 2377 return o; | 2381 return o; |
| 2378 } | 2382 } |
| 2379 | 2383 |
| 2380 checkUnnamed1270(core.List<api.McfDataRows> o) { | 2384 checkUnnamed1527(core.List<api.McfDataRows> o) { |
| 2381 unittest.expect(o, unittest.hasLength(2)); | 2385 unittest.expect(o, unittest.hasLength(2)); |
| 2382 checkMcfDataRows(o[0]); | 2386 checkMcfDataRows(o[0]); |
| 2383 checkMcfDataRows(o[1]); | 2387 checkMcfDataRows(o[1]); |
| 2384 } | 2388 } |
| 2385 | 2389 |
| 2386 buildUnnamed1271() { | 2390 buildUnnamed1528() { |
| 2387 var o = new core.List<core.List<api.McfDataRows>>(); | 2391 var o = new core.List<core.List<api.McfDataRows>>(); |
| 2388 o.add(buildUnnamed1270()); | 2392 o.add(buildUnnamed1527()); |
| 2389 o.add(buildUnnamed1270()); | 2393 o.add(buildUnnamed1527()); |
| 2390 return o; | 2394 return o; |
| 2391 } | 2395 } |
| 2392 | 2396 |
| 2393 checkUnnamed1271(core.List<core.List<api.McfDataRows>> o) { | 2397 checkUnnamed1528(core.List<core.List<api.McfDataRows>> o) { |
| 2394 unittest.expect(o, unittest.hasLength(2)); | 2398 unittest.expect(o, unittest.hasLength(2)); |
| 2395 checkUnnamed1270(o[0]); | 2399 checkUnnamed1527(o[0]); |
| 2396 checkUnnamed1270(o[1]); | 2400 checkUnnamed1527(o[1]); |
| 2397 } | 2401 } |
| 2398 | 2402 |
| 2399 buildUnnamed1272() { | 2403 buildUnnamed1529() { |
| 2400 var o = new core.Map<core.String, core.String>(); | 2404 var o = new core.Map<core.String, core.String>(); |
| 2401 o["x"] = "foo"; | 2405 o["x"] = "foo"; |
| 2402 o["y"] = "foo"; | 2406 o["y"] = "foo"; |
| 2403 return o; | 2407 return o; |
| 2404 } | 2408 } |
| 2405 | 2409 |
| 2406 checkUnnamed1272(core.Map<core.String, core.String> o) { | 2410 checkUnnamed1529(core.Map<core.String, core.String> o) { |
| 2407 unittest.expect(o, unittest.hasLength(2)); | 2411 unittest.expect(o, unittest.hasLength(2)); |
| 2408 unittest.expect(o["x"], unittest.equals('foo')); | 2412 unittest.expect(o["x"], unittest.equals('foo')); |
| 2409 unittest.expect(o["y"], unittest.equals('foo')); | 2413 unittest.expect(o["y"], unittest.equals('foo')); |
| 2410 } | 2414 } |
| 2411 | 2415 |
| 2412 core.int buildCounterMcfData = 0; | 2416 core.int buildCounterMcfData = 0; |
| 2413 buildMcfData() { | 2417 buildMcfData() { |
| 2414 var o = new api.McfData(); | 2418 var o = new api.McfData(); |
| 2415 buildCounterMcfData++; | 2419 buildCounterMcfData++; |
| 2416 if (buildCounterMcfData < 3) { | 2420 if (buildCounterMcfData < 3) { |
| 2417 o.columnHeaders = buildUnnamed1266(); | 2421 o.columnHeaders = buildUnnamed1523(); |
| 2418 o.containsSampledData = true; | 2422 o.containsSampledData = true; |
| 2419 o.id = "foo"; | 2423 o.id = "foo"; |
| 2420 o.itemsPerPage = 42; | 2424 o.itemsPerPage = 42; |
| 2421 o.kind = "foo"; | 2425 o.kind = "foo"; |
| 2422 o.nextLink = "foo"; | 2426 o.nextLink = "foo"; |
| 2423 o.previousLink = "foo"; | 2427 o.previousLink = "foo"; |
| 2424 o.profileInfo = buildMcfDataProfileInfo(); | 2428 o.profileInfo = buildMcfDataProfileInfo(); |
| 2425 o.query = buildMcfDataQuery(); | 2429 o.query = buildMcfDataQuery(); |
| 2426 o.rows = buildUnnamed1271(); | 2430 o.rows = buildUnnamed1528(); |
| 2427 o.sampleSize = "foo"; | 2431 o.sampleSize = "foo"; |
| 2428 o.sampleSpace = "foo"; | 2432 o.sampleSpace = "foo"; |
| 2429 o.selfLink = "foo"; | 2433 o.selfLink = "foo"; |
| 2430 o.totalResults = 42; | 2434 o.totalResults = 42; |
| 2431 o.totalsForAllResults = buildUnnamed1272(); | 2435 o.totalsForAllResults = buildUnnamed1529(); |
| 2432 } | 2436 } |
| 2433 buildCounterMcfData--; | 2437 buildCounterMcfData--; |
| 2434 return o; | 2438 return o; |
| 2435 } | 2439 } |
| 2436 | 2440 |
| 2437 checkMcfData(api.McfData o) { | 2441 checkMcfData(api.McfData o) { |
| 2438 buildCounterMcfData++; | 2442 buildCounterMcfData++; |
| 2439 if (buildCounterMcfData < 3) { | 2443 if (buildCounterMcfData < 3) { |
| 2440 checkUnnamed1266(o.columnHeaders); | 2444 checkUnnamed1523(o.columnHeaders); |
| 2441 unittest.expect(o.containsSampledData, unittest.isTrue); | 2445 unittest.expect(o.containsSampledData, unittest.isTrue); |
| 2442 unittest.expect(o.id, unittest.equals('foo')); | 2446 unittest.expect(o.id, unittest.equals('foo')); |
| 2443 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2447 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2444 unittest.expect(o.kind, unittest.equals('foo')); | 2448 unittest.expect(o.kind, unittest.equals('foo')); |
| 2445 unittest.expect(o.nextLink, unittest.equals('foo')); | 2449 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2446 unittest.expect(o.previousLink, unittest.equals('foo')); | 2450 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2447 checkMcfDataProfileInfo(o.profileInfo); | 2451 checkMcfDataProfileInfo(o.profileInfo); |
| 2448 checkMcfDataQuery(o.query); | 2452 checkMcfDataQuery(o.query); |
| 2449 checkUnnamed1271(o.rows); | 2453 checkUnnamed1528(o.rows); |
| 2450 unittest.expect(o.sampleSize, unittest.equals('foo')); | 2454 unittest.expect(o.sampleSize, unittest.equals('foo')); |
| 2451 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 2455 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
| 2452 unittest.expect(o.selfLink, unittest.equals('foo')); | 2456 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2453 unittest.expect(o.totalResults, unittest.equals(42)); | 2457 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2454 checkUnnamed1272(o.totalsForAllResults); | 2458 checkUnnamed1529(o.totalsForAllResults); |
| 2455 } | 2459 } |
| 2456 buildCounterMcfData--; | 2460 buildCounterMcfData--; |
| 2457 } | 2461 } |
| 2458 | 2462 |
| 2459 core.int buildCounterProfileChildLink = 0; | 2463 core.int buildCounterProfileChildLink = 0; |
| 2460 buildProfileChildLink() { | 2464 buildProfileChildLink() { |
| 2461 var o = new api.ProfileChildLink(); | 2465 var o = new api.ProfileChildLink(); |
| 2462 buildCounterProfileChildLink++; | 2466 buildCounterProfileChildLink++; |
| 2463 if (buildCounterProfileChildLink < 3) { | 2467 if (buildCounterProfileChildLink < 3) { |
| 2464 o.href = "foo"; | 2468 o.href = "foo"; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 2491 | 2495 |
| 2492 checkProfileParentLink(api.ProfileParentLink o) { | 2496 checkProfileParentLink(api.ProfileParentLink o) { |
| 2493 buildCounterProfileParentLink++; | 2497 buildCounterProfileParentLink++; |
| 2494 if (buildCounterProfileParentLink < 3) { | 2498 if (buildCounterProfileParentLink < 3) { |
| 2495 unittest.expect(o.href, unittest.equals('foo')); | 2499 unittest.expect(o.href, unittest.equals('foo')); |
| 2496 unittest.expect(o.type, unittest.equals('foo')); | 2500 unittest.expect(o.type, unittest.equals('foo')); |
| 2497 } | 2501 } |
| 2498 buildCounterProfileParentLink--; | 2502 buildCounterProfileParentLink--; |
| 2499 } | 2503 } |
| 2500 | 2504 |
| 2501 buildUnnamed1273() { | 2505 buildUnnamed1530() { |
| 2502 var o = new core.List<core.String>(); | 2506 var o = new core.List<core.String>(); |
| 2503 o.add("foo"); | 2507 o.add("foo"); |
| 2504 o.add("foo"); | 2508 o.add("foo"); |
| 2505 return o; | 2509 return o; |
| 2506 } | 2510 } |
| 2507 | 2511 |
| 2508 checkUnnamed1273(core.List<core.String> o) { | 2512 checkUnnamed1530(core.List<core.String> o) { |
| 2509 unittest.expect(o, unittest.hasLength(2)); | 2513 unittest.expect(o, unittest.hasLength(2)); |
| 2510 unittest.expect(o[0], unittest.equals('foo')); | 2514 unittest.expect(o[0], unittest.equals('foo')); |
| 2511 unittest.expect(o[1], unittest.equals('foo')); | 2515 unittest.expect(o[1], unittest.equals('foo')); |
| 2512 } | 2516 } |
| 2513 | 2517 |
| 2514 core.int buildCounterProfilePermissions = 0; | 2518 core.int buildCounterProfilePermissions = 0; |
| 2515 buildProfilePermissions() { | 2519 buildProfilePermissions() { |
| 2516 var o = new api.ProfilePermissions(); | 2520 var o = new api.ProfilePermissions(); |
| 2517 buildCounterProfilePermissions++; | 2521 buildCounterProfilePermissions++; |
| 2518 if (buildCounterProfilePermissions < 3) { | 2522 if (buildCounterProfilePermissions < 3) { |
| 2519 o.effective = buildUnnamed1273(); | 2523 o.effective = buildUnnamed1530(); |
| 2520 } | 2524 } |
| 2521 buildCounterProfilePermissions--; | 2525 buildCounterProfilePermissions--; |
| 2522 return o; | 2526 return o; |
| 2523 } | 2527 } |
| 2524 | 2528 |
| 2525 checkProfilePermissions(api.ProfilePermissions o) { | 2529 checkProfilePermissions(api.ProfilePermissions o) { |
| 2526 buildCounterProfilePermissions++; | 2530 buildCounterProfilePermissions++; |
| 2527 if (buildCounterProfilePermissions < 3) { | 2531 if (buildCounterProfilePermissions < 3) { |
| 2528 checkUnnamed1273(o.effective); | 2532 checkUnnamed1530(o.effective); |
| 2529 } | 2533 } |
| 2530 buildCounterProfilePermissions--; | 2534 buildCounterProfilePermissions--; |
| 2531 } | 2535 } |
| 2532 | 2536 |
| 2533 core.int buildCounterProfile = 0; | 2537 core.int buildCounterProfile = 0; |
| 2534 buildProfile() { | 2538 buildProfile() { |
| 2535 var o = new api.Profile(); | 2539 var o = new api.Profile(); |
| 2536 buildCounterProfile++; | 2540 buildCounterProfile++; |
| 2537 if (buildCounterProfile < 3) { | 2541 if (buildCounterProfile < 3) { |
| 2538 o.accountId = "foo"; | 2542 o.accountId = "foo"; |
| 2539 o.botFilteringEnabled = true; | 2543 o.botFilteringEnabled = true; |
| 2540 o.childLink = buildProfileChildLink(); | 2544 o.childLink = buildProfileChildLink(); |
| 2541 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 2545 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2542 o.currency = "foo"; | 2546 o.currency = "foo"; |
| 2543 o.defaultPage = "foo"; | 2547 o.defaultPage = "foo"; |
| 2544 o.eCommerceTracking = true; | 2548 o.eCommerceTracking = true; |
| 2545 o.enhancedECommerceTracking = true; | 2549 o.enhancedECommerceTracking = true; |
| 2546 o.excludeQueryParameters = "foo"; | 2550 o.excludeQueryParameters = "foo"; |
| 2547 o.id = "foo"; | 2551 o.id = "foo"; |
| 2548 o.internalWebPropertyId = "foo"; | 2552 o.internalWebPropertyId = "foo"; |
| 2549 o.kind = "foo"; | 2553 o.kind = "foo"; |
| 2550 o.name = "foo"; | 2554 o.name = "foo"; |
| 2551 o.parentLink = buildProfileParentLink(); | 2555 o.parentLink = buildProfileParentLink(); |
| 2552 o.permissions = buildProfilePermissions(); | 2556 o.permissions = buildProfilePermissions(); |
| 2553 o.selfLink = "foo"; | 2557 o.selfLink = "foo"; |
| 2554 o.siteSearchCategoryParameters = "foo"; | 2558 o.siteSearchCategoryParameters = "foo"; |
| 2555 o.siteSearchQueryParameters = "foo"; | 2559 o.siteSearchQueryParameters = "foo"; |
| 2560 o.starred = true; |
| 2556 o.stripSiteSearchCategoryParameters = true; | 2561 o.stripSiteSearchCategoryParameters = true; |
| 2557 o.stripSiteSearchQueryParameters = true; | 2562 o.stripSiteSearchQueryParameters = true; |
| 2558 o.timezone = "foo"; | 2563 o.timezone = "foo"; |
| 2559 o.type = "foo"; | 2564 o.type = "foo"; |
| 2560 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 2565 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 2561 o.webPropertyId = "foo"; | 2566 o.webPropertyId = "foo"; |
| 2562 o.websiteUrl = "foo"; | 2567 o.websiteUrl = "foo"; |
| 2563 } | 2568 } |
| 2564 buildCounterProfile--; | 2569 buildCounterProfile--; |
| 2565 return o; | 2570 return o; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2579 unittest.expect(o.excludeQueryParameters, unittest.equals('foo')); | 2584 unittest.expect(o.excludeQueryParameters, unittest.equals('foo')); |
| 2580 unittest.expect(o.id, unittest.equals('foo')); | 2585 unittest.expect(o.id, unittest.equals('foo')); |
| 2581 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2586 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 2582 unittest.expect(o.kind, unittest.equals('foo')); | 2587 unittest.expect(o.kind, unittest.equals('foo')); |
| 2583 unittest.expect(o.name, unittest.equals('foo')); | 2588 unittest.expect(o.name, unittest.equals('foo')); |
| 2584 checkProfileParentLink(o.parentLink); | 2589 checkProfileParentLink(o.parentLink); |
| 2585 checkProfilePermissions(o.permissions); | 2590 checkProfilePermissions(o.permissions); |
| 2586 unittest.expect(o.selfLink, unittest.equals('foo')); | 2591 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2587 unittest.expect(o.siteSearchCategoryParameters, unittest.equals('foo')); | 2592 unittest.expect(o.siteSearchCategoryParameters, unittest.equals('foo')); |
| 2588 unittest.expect(o.siteSearchQueryParameters, unittest.equals('foo')); | 2593 unittest.expect(o.siteSearchQueryParameters, unittest.equals('foo')); |
| 2594 unittest.expect(o.starred, unittest.isTrue); |
| 2589 unittest.expect(o.stripSiteSearchCategoryParameters, unittest.isTrue); | 2595 unittest.expect(o.stripSiteSearchCategoryParameters, unittest.isTrue); |
| 2590 unittest.expect(o.stripSiteSearchQueryParameters, unittest.isTrue); | 2596 unittest.expect(o.stripSiteSearchQueryParameters, unittest.isTrue); |
| 2591 unittest.expect(o.timezone, unittest.equals('foo')); | 2597 unittest.expect(o.timezone, unittest.equals('foo')); |
| 2592 unittest.expect(o.type, unittest.equals('foo')); | 2598 unittest.expect(o.type, unittest.equals('foo')); |
| 2593 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2599 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 2594 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2600 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2595 unittest.expect(o.websiteUrl, unittest.equals('foo')); | 2601 unittest.expect(o.websiteUrl, unittest.equals('foo')); |
| 2596 } | 2602 } |
| 2597 buildCounterProfile--; | 2603 buildCounterProfile--; |
| 2598 } | 2604 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 2619 checkFilterRef(o.filterRef); | 2625 checkFilterRef(o.filterRef); |
| 2620 unittest.expect(o.id, unittest.equals('foo')); | 2626 unittest.expect(o.id, unittest.equals('foo')); |
| 2621 unittest.expect(o.kind, unittest.equals('foo')); | 2627 unittest.expect(o.kind, unittest.equals('foo')); |
| 2622 checkProfileRef(o.profileRef); | 2628 checkProfileRef(o.profileRef); |
| 2623 unittest.expect(o.rank, unittest.equals(42)); | 2629 unittest.expect(o.rank, unittest.equals(42)); |
| 2624 unittest.expect(o.selfLink, unittest.equals('foo')); | 2630 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2625 } | 2631 } |
| 2626 buildCounterProfileFilterLink--; | 2632 buildCounterProfileFilterLink--; |
| 2627 } | 2633 } |
| 2628 | 2634 |
| 2629 buildUnnamed1274() { | 2635 buildUnnamed1531() { |
| 2630 var o = new core.List<api.ProfileFilterLink>(); | 2636 var o = new core.List<api.ProfileFilterLink>(); |
| 2631 o.add(buildProfileFilterLink()); | 2637 o.add(buildProfileFilterLink()); |
| 2632 o.add(buildProfileFilterLink()); | 2638 o.add(buildProfileFilterLink()); |
| 2633 return o; | 2639 return o; |
| 2634 } | 2640 } |
| 2635 | 2641 |
| 2636 checkUnnamed1274(core.List<api.ProfileFilterLink> o) { | 2642 checkUnnamed1531(core.List<api.ProfileFilterLink> o) { |
| 2637 unittest.expect(o, unittest.hasLength(2)); | 2643 unittest.expect(o, unittest.hasLength(2)); |
| 2638 checkProfileFilterLink(o[0]); | 2644 checkProfileFilterLink(o[0]); |
| 2639 checkProfileFilterLink(o[1]); | 2645 checkProfileFilterLink(o[1]); |
| 2640 } | 2646 } |
| 2641 | 2647 |
| 2642 core.int buildCounterProfileFilterLinks = 0; | 2648 core.int buildCounterProfileFilterLinks = 0; |
| 2643 buildProfileFilterLinks() { | 2649 buildProfileFilterLinks() { |
| 2644 var o = new api.ProfileFilterLinks(); | 2650 var o = new api.ProfileFilterLinks(); |
| 2645 buildCounterProfileFilterLinks++; | 2651 buildCounterProfileFilterLinks++; |
| 2646 if (buildCounterProfileFilterLinks < 3) { | 2652 if (buildCounterProfileFilterLinks < 3) { |
| 2647 o.items = buildUnnamed1274(); | 2653 o.items = buildUnnamed1531(); |
| 2648 o.itemsPerPage = 42; | 2654 o.itemsPerPage = 42; |
| 2649 o.kind = "foo"; | 2655 o.kind = "foo"; |
| 2650 o.nextLink = "foo"; | 2656 o.nextLink = "foo"; |
| 2651 o.previousLink = "foo"; | 2657 o.previousLink = "foo"; |
| 2652 o.startIndex = 42; | 2658 o.startIndex = 42; |
| 2653 o.totalResults = 42; | 2659 o.totalResults = 42; |
| 2654 o.username = "foo"; | 2660 o.username = "foo"; |
| 2655 } | 2661 } |
| 2656 buildCounterProfileFilterLinks--; | 2662 buildCounterProfileFilterLinks--; |
| 2657 return o; | 2663 return o; |
| 2658 } | 2664 } |
| 2659 | 2665 |
| 2660 checkProfileFilterLinks(api.ProfileFilterLinks o) { | 2666 checkProfileFilterLinks(api.ProfileFilterLinks o) { |
| 2661 buildCounterProfileFilterLinks++; | 2667 buildCounterProfileFilterLinks++; |
| 2662 if (buildCounterProfileFilterLinks < 3) { | 2668 if (buildCounterProfileFilterLinks < 3) { |
| 2663 checkUnnamed1274(o.items); | 2669 checkUnnamed1531(o.items); |
| 2664 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2670 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2665 unittest.expect(o.kind, unittest.equals('foo')); | 2671 unittest.expect(o.kind, unittest.equals('foo')); |
| 2666 unittest.expect(o.nextLink, unittest.equals('foo')); | 2672 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2667 unittest.expect(o.previousLink, unittest.equals('foo')); | 2673 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2668 unittest.expect(o.startIndex, unittest.equals(42)); | 2674 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2669 unittest.expect(o.totalResults, unittest.equals(42)); | 2675 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2670 unittest.expect(o.username, unittest.equals('foo')); | 2676 unittest.expect(o.username, unittest.equals('foo')); |
| 2671 } | 2677 } |
| 2672 buildCounterProfileFilterLinks--; | 2678 buildCounterProfileFilterLinks--; |
| 2673 } | 2679 } |
| (...skipping 30 matching lines...) Expand all Loading... |
| 2704 } | 2710 } |
| 2705 | 2711 |
| 2706 core.int buildCounterProfileSummary = 0; | 2712 core.int buildCounterProfileSummary = 0; |
| 2707 buildProfileSummary() { | 2713 buildProfileSummary() { |
| 2708 var o = new api.ProfileSummary(); | 2714 var o = new api.ProfileSummary(); |
| 2709 buildCounterProfileSummary++; | 2715 buildCounterProfileSummary++; |
| 2710 if (buildCounterProfileSummary < 3) { | 2716 if (buildCounterProfileSummary < 3) { |
| 2711 o.id = "foo"; | 2717 o.id = "foo"; |
| 2712 o.kind = "foo"; | 2718 o.kind = "foo"; |
| 2713 o.name = "foo"; | 2719 o.name = "foo"; |
| 2720 o.starred = true; |
| 2714 o.type = "foo"; | 2721 o.type = "foo"; |
| 2715 } | 2722 } |
| 2716 buildCounterProfileSummary--; | 2723 buildCounterProfileSummary--; |
| 2717 return o; | 2724 return o; |
| 2718 } | 2725 } |
| 2719 | 2726 |
| 2720 checkProfileSummary(api.ProfileSummary o) { | 2727 checkProfileSummary(api.ProfileSummary o) { |
| 2721 buildCounterProfileSummary++; | 2728 buildCounterProfileSummary++; |
| 2722 if (buildCounterProfileSummary < 3) { | 2729 if (buildCounterProfileSummary < 3) { |
| 2723 unittest.expect(o.id, unittest.equals('foo')); | 2730 unittest.expect(o.id, unittest.equals('foo')); |
| 2724 unittest.expect(o.kind, unittest.equals('foo')); | 2731 unittest.expect(o.kind, unittest.equals('foo')); |
| 2725 unittest.expect(o.name, unittest.equals('foo')); | 2732 unittest.expect(o.name, unittest.equals('foo')); |
| 2733 unittest.expect(o.starred, unittest.isTrue); |
| 2726 unittest.expect(o.type, unittest.equals('foo')); | 2734 unittest.expect(o.type, unittest.equals('foo')); |
| 2727 } | 2735 } |
| 2728 buildCounterProfileSummary--; | 2736 buildCounterProfileSummary--; |
| 2729 } | 2737 } |
| 2730 | 2738 |
| 2731 buildUnnamed1275() { | 2739 buildUnnamed1532() { |
| 2732 var o = new core.List<api.Profile>(); | 2740 var o = new core.List<api.Profile>(); |
| 2733 o.add(buildProfile()); | 2741 o.add(buildProfile()); |
| 2734 o.add(buildProfile()); | 2742 o.add(buildProfile()); |
| 2735 return o; | 2743 return o; |
| 2736 } | 2744 } |
| 2737 | 2745 |
| 2738 checkUnnamed1275(core.List<api.Profile> o) { | 2746 checkUnnamed1532(core.List<api.Profile> o) { |
| 2739 unittest.expect(o, unittest.hasLength(2)); | 2747 unittest.expect(o, unittest.hasLength(2)); |
| 2740 checkProfile(o[0]); | 2748 checkProfile(o[0]); |
| 2741 checkProfile(o[1]); | 2749 checkProfile(o[1]); |
| 2742 } | 2750 } |
| 2743 | 2751 |
| 2744 core.int buildCounterProfiles = 0; | 2752 core.int buildCounterProfiles = 0; |
| 2745 buildProfiles() { | 2753 buildProfiles() { |
| 2746 var o = new api.Profiles(); | 2754 var o = new api.Profiles(); |
| 2747 buildCounterProfiles++; | 2755 buildCounterProfiles++; |
| 2748 if (buildCounterProfiles < 3) { | 2756 if (buildCounterProfiles < 3) { |
| 2749 o.items = buildUnnamed1275(); | 2757 o.items = buildUnnamed1532(); |
| 2750 o.itemsPerPage = 42; | 2758 o.itemsPerPage = 42; |
| 2751 o.kind = "foo"; | 2759 o.kind = "foo"; |
| 2752 o.nextLink = "foo"; | 2760 o.nextLink = "foo"; |
| 2753 o.previousLink = "foo"; | 2761 o.previousLink = "foo"; |
| 2754 o.startIndex = 42; | 2762 o.startIndex = 42; |
| 2755 o.totalResults = 42; | 2763 o.totalResults = 42; |
| 2756 o.username = "foo"; | 2764 o.username = "foo"; |
| 2757 } | 2765 } |
| 2758 buildCounterProfiles--; | 2766 buildCounterProfiles--; |
| 2759 return o; | 2767 return o; |
| 2760 } | 2768 } |
| 2761 | 2769 |
| 2762 checkProfiles(api.Profiles o) { | 2770 checkProfiles(api.Profiles o) { |
| 2763 buildCounterProfiles++; | 2771 buildCounterProfiles++; |
| 2764 if (buildCounterProfiles < 3) { | 2772 if (buildCounterProfiles < 3) { |
| 2765 checkUnnamed1275(o.items); | 2773 checkUnnamed1532(o.items); |
| 2766 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2774 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 2767 unittest.expect(o.kind, unittest.equals('foo')); | 2775 unittest.expect(o.kind, unittest.equals('foo')); |
| 2768 unittest.expect(o.nextLink, unittest.equals('foo')); | 2776 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 2769 unittest.expect(o.previousLink, unittest.equals('foo')); | 2777 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 2770 unittest.expect(o.startIndex, unittest.equals(42)); | 2778 unittest.expect(o.startIndex, unittest.equals(42)); |
| 2771 unittest.expect(o.totalResults, unittest.equals(42)); | 2779 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2772 unittest.expect(o.username, unittest.equals('foo')); | 2780 unittest.expect(o.username, unittest.equals('foo')); |
| 2773 } | 2781 } |
| 2774 buildCounterProfiles--; | 2782 buildCounterProfiles--; |
| 2775 } | 2783 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2790 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { | 2798 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { |
| 2791 buildCounterRealtimeDataColumnHeaders++; | 2799 buildCounterRealtimeDataColumnHeaders++; |
| 2792 if (buildCounterRealtimeDataColumnHeaders < 3) { | 2800 if (buildCounterRealtimeDataColumnHeaders < 3) { |
| 2793 unittest.expect(o.columnType, unittest.equals('foo')); | 2801 unittest.expect(o.columnType, unittest.equals('foo')); |
| 2794 unittest.expect(o.dataType, unittest.equals('foo')); | 2802 unittest.expect(o.dataType, unittest.equals('foo')); |
| 2795 unittest.expect(o.name, unittest.equals('foo')); | 2803 unittest.expect(o.name, unittest.equals('foo')); |
| 2796 } | 2804 } |
| 2797 buildCounterRealtimeDataColumnHeaders--; | 2805 buildCounterRealtimeDataColumnHeaders--; |
| 2798 } | 2806 } |
| 2799 | 2807 |
| 2800 buildUnnamed1276() { | 2808 buildUnnamed1533() { |
| 2801 var o = new core.List<api.RealtimeDataColumnHeaders>(); | 2809 var o = new core.List<api.RealtimeDataColumnHeaders>(); |
| 2802 o.add(buildRealtimeDataColumnHeaders()); | 2810 o.add(buildRealtimeDataColumnHeaders()); |
| 2803 o.add(buildRealtimeDataColumnHeaders()); | 2811 o.add(buildRealtimeDataColumnHeaders()); |
| 2804 return o; | 2812 return o; |
| 2805 } | 2813 } |
| 2806 | 2814 |
| 2807 checkUnnamed1276(core.List<api.RealtimeDataColumnHeaders> o) { | 2815 checkUnnamed1533(core.List<api.RealtimeDataColumnHeaders> o) { |
| 2808 unittest.expect(o, unittest.hasLength(2)); | 2816 unittest.expect(o, unittest.hasLength(2)); |
| 2809 checkRealtimeDataColumnHeaders(o[0]); | 2817 checkRealtimeDataColumnHeaders(o[0]); |
| 2810 checkRealtimeDataColumnHeaders(o[1]); | 2818 checkRealtimeDataColumnHeaders(o[1]); |
| 2811 } | 2819 } |
| 2812 | 2820 |
| 2813 core.int buildCounterRealtimeDataProfileInfo = 0; | 2821 core.int buildCounterRealtimeDataProfileInfo = 0; |
| 2814 buildRealtimeDataProfileInfo() { | 2822 buildRealtimeDataProfileInfo() { |
| 2815 var o = new api.RealtimeDataProfileInfo(); | 2823 var o = new api.RealtimeDataProfileInfo(); |
| 2816 buildCounterRealtimeDataProfileInfo++; | 2824 buildCounterRealtimeDataProfileInfo++; |
| 2817 if (buildCounterRealtimeDataProfileInfo < 3) { | 2825 if (buildCounterRealtimeDataProfileInfo < 3) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2832 unittest.expect(o.accountId, unittest.equals('foo')); | 2840 unittest.expect(o.accountId, unittest.equals('foo')); |
| 2833 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2841 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 2834 unittest.expect(o.profileId, unittest.equals('foo')); | 2842 unittest.expect(o.profileId, unittest.equals('foo')); |
| 2835 unittest.expect(o.profileName, unittest.equals('foo')); | 2843 unittest.expect(o.profileName, unittest.equals('foo')); |
| 2836 unittest.expect(o.tableId, unittest.equals('foo')); | 2844 unittest.expect(o.tableId, unittest.equals('foo')); |
| 2837 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2845 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 2838 } | 2846 } |
| 2839 buildCounterRealtimeDataProfileInfo--; | 2847 buildCounterRealtimeDataProfileInfo--; |
| 2840 } | 2848 } |
| 2841 | 2849 |
| 2842 buildUnnamed1277() { | 2850 buildUnnamed1534() { |
| 2843 var o = new core.List<core.String>(); | 2851 var o = new core.List<core.String>(); |
| 2844 o.add("foo"); | 2852 o.add("foo"); |
| 2845 o.add("foo"); | 2853 o.add("foo"); |
| 2846 return o; | 2854 return o; |
| 2847 } | 2855 } |
| 2848 | 2856 |
| 2849 checkUnnamed1277(core.List<core.String> o) { | 2857 checkUnnamed1534(core.List<core.String> o) { |
| 2850 unittest.expect(o, unittest.hasLength(2)); | 2858 unittest.expect(o, unittest.hasLength(2)); |
| 2851 unittest.expect(o[0], unittest.equals('foo')); | 2859 unittest.expect(o[0], unittest.equals('foo')); |
| 2852 unittest.expect(o[1], unittest.equals('foo')); | 2860 unittest.expect(o[1], unittest.equals('foo')); |
| 2853 } | 2861 } |
| 2854 | 2862 |
| 2855 buildUnnamed1278() { | 2863 buildUnnamed1535() { |
| 2856 var o = new core.List<core.String>(); | 2864 var o = new core.List<core.String>(); |
| 2857 o.add("foo"); | 2865 o.add("foo"); |
| 2858 o.add("foo"); | 2866 o.add("foo"); |
| 2859 return o; | 2867 return o; |
| 2860 } | 2868 } |
| 2861 | 2869 |
| 2862 checkUnnamed1278(core.List<core.String> o) { | 2870 checkUnnamed1535(core.List<core.String> o) { |
| 2863 unittest.expect(o, unittest.hasLength(2)); | 2871 unittest.expect(o, unittest.hasLength(2)); |
| 2864 unittest.expect(o[0], unittest.equals('foo')); | 2872 unittest.expect(o[0], unittest.equals('foo')); |
| 2865 unittest.expect(o[1], unittest.equals('foo')); | 2873 unittest.expect(o[1], unittest.equals('foo')); |
| 2866 } | 2874 } |
| 2867 | 2875 |
| 2868 core.int buildCounterRealtimeDataQuery = 0; | 2876 core.int buildCounterRealtimeDataQuery = 0; |
| 2869 buildRealtimeDataQuery() { | 2877 buildRealtimeDataQuery() { |
| 2870 var o = new api.RealtimeDataQuery(); | 2878 var o = new api.RealtimeDataQuery(); |
| 2871 buildCounterRealtimeDataQuery++; | 2879 buildCounterRealtimeDataQuery++; |
| 2872 if (buildCounterRealtimeDataQuery < 3) { | 2880 if (buildCounterRealtimeDataQuery < 3) { |
| 2873 o.dimensions = "foo"; | 2881 o.dimensions = "foo"; |
| 2874 o.filters = "foo"; | 2882 o.filters = "foo"; |
| 2875 o.ids = "foo"; | 2883 o.ids = "foo"; |
| 2876 o.max_results = 42; | 2884 o.max_results = 42; |
| 2877 o.metrics = buildUnnamed1277(); | 2885 o.metrics = buildUnnamed1534(); |
| 2878 o.sort = buildUnnamed1278(); | 2886 o.sort = buildUnnamed1535(); |
| 2879 } | 2887 } |
| 2880 buildCounterRealtimeDataQuery--; | 2888 buildCounterRealtimeDataQuery--; |
| 2881 return o; | 2889 return o; |
| 2882 } | 2890 } |
| 2883 | 2891 |
| 2884 checkRealtimeDataQuery(api.RealtimeDataQuery o) { | 2892 checkRealtimeDataQuery(api.RealtimeDataQuery o) { |
| 2885 buildCounterRealtimeDataQuery++; | 2893 buildCounterRealtimeDataQuery++; |
| 2886 if (buildCounterRealtimeDataQuery < 3) { | 2894 if (buildCounterRealtimeDataQuery < 3) { |
| 2887 unittest.expect(o.dimensions, unittest.equals('foo')); | 2895 unittest.expect(o.dimensions, unittest.equals('foo')); |
| 2888 unittest.expect(o.filters, unittest.equals('foo')); | 2896 unittest.expect(o.filters, unittest.equals('foo')); |
| 2889 unittest.expect(o.ids, unittest.equals('foo')); | 2897 unittest.expect(o.ids, unittest.equals('foo')); |
| 2890 unittest.expect(o.max_results, unittest.equals(42)); | 2898 unittest.expect(o.max_results, unittest.equals(42)); |
| 2891 checkUnnamed1277(o.metrics); | 2899 checkUnnamed1534(o.metrics); |
| 2892 checkUnnamed1278(o.sort); | 2900 checkUnnamed1535(o.sort); |
| 2893 } | 2901 } |
| 2894 buildCounterRealtimeDataQuery--; | 2902 buildCounterRealtimeDataQuery--; |
| 2895 } | 2903 } |
| 2896 | 2904 |
| 2897 buildUnnamed1279() { | 2905 buildUnnamed1536() { |
| 2898 var o = new core.List<core.String>(); | 2906 var o = new core.List<core.String>(); |
| 2899 o.add("foo"); | 2907 o.add("foo"); |
| 2900 o.add("foo"); | 2908 o.add("foo"); |
| 2901 return o; | 2909 return o; |
| 2902 } | 2910 } |
| 2903 | 2911 |
| 2904 checkUnnamed1279(core.List<core.String> o) { | 2912 checkUnnamed1536(core.List<core.String> o) { |
| 2905 unittest.expect(o, unittest.hasLength(2)); | 2913 unittest.expect(o, unittest.hasLength(2)); |
| 2906 unittest.expect(o[0], unittest.equals('foo')); | 2914 unittest.expect(o[0], unittest.equals('foo')); |
| 2907 unittest.expect(o[1], unittest.equals('foo')); | 2915 unittest.expect(o[1], unittest.equals('foo')); |
| 2908 } | 2916 } |
| 2909 | 2917 |
| 2910 buildUnnamed1280() { | 2918 buildUnnamed1537() { |
| 2911 var o = new core.List<core.List<core.String>>(); | 2919 var o = new core.List<core.List<core.String>>(); |
| 2912 o.add(buildUnnamed1279()); | 2920 o.add(buildUnnamed1536()); |
| 2913 o.add(buildUnnamed1279()); | 2921 o.add(buildUnnamed1536()); |
| 2914 return o; | 2922 return o; |
| 2915 } | 2923 } |
| 2916 | 2924 |
| 2917 checkUnnamed1280(core.List<core.List<core.String>> o) { | 2925 checkUnnamed1537(core.List<core.List<core.String>> o) { |
| 2918 unittest.expect(o, unittest.hasLength(2)); | 2926 unittest.expect(o, unittest.hasLength(2)); |
| 2919 checkUnnamed1279(o[0]); | 2927 checkUnnamed1536(o[0]); |
| 2920 checkUnnamed1279(o[1]); | 2928 checkUnnamed1536(o[1]); |
| 2921 } | 2929 } |
| 2922 | 2930 |
| 2923 buildUnnamed1281() { | 2931 buildUnnamed1538() { |
| 2924 var o = new core.Map<core.String, core.String>(); | 2932 var o = new core.Map<core.String, core.String>(); |
| 2925 o["x"] = "foo"; | 2933 o["x"] = "foo"; |
| 2926 o["y"] = "foo"; | 2934 o["y"] = "foo"; |
| 2927 return o; | 2935 return o; |
| 2928 } | 2936 } |
| 2929 | 2937 |
| 2930 checkUnnamed1281(core.Map<core.String, core.String> o) { | 2938 checkUnnamed1538(core.Map<core.String, core.String> o) { |
| 2931 unittest.expect(o, unittest.hasLength(2)); | 2939 unittest.expect(o, unittest.hasLength(2)); |
| 2932 unittest.expect(o["x"], unittest.equals('foo')); | 2940 unittest.expect(o["x"], unittest.equals('foo')); |
| 2933 unittest.expect(o["y"], unittest.equals('foo')); | 2941 unittest.expect(o["y"], unittest.equals('foo')); |
| 2934 } | 2942 } |
| 2935 | 2943 |
| 2936 core.int buildCounterRealtimeData = 0; | 2944 core.int buildCounterRealtimeData = 0; |
| 2937 buildRealtimeData() { | 2945 buildRealtimeData() { |
| 2938 var o = new api.RealtimeData(); | 2946 var o = new api.RealtimeData(); |
| 2939 buildCounterRealtimeData++; | 2947 buildCounterRealtimeData++; |
| 2940 if (buildCounterRealtimeData < 3) { | 2948 if (buildCounterRealtimeData < 3) { |
| 2941 o.columnHeaders = buildUnnamed1276(); | 2949 o.columnHeaders = buildUnnamed1533(); |
| 2942 o.id = "foo"; | 2950 o.id = "foo"; |
| 2943 o.kind = "foo"; | 2951 o.kind = "foo"; |
| 2944 o.profileInfo = buildRealtimeDataProfileInfo(); | 2952 o.profileInfo = buildRealtimeDataProfileInfo(); |
| 2945 o.query = buildRealtimeDataQuery(); | 2953 o.query = buildRealtimeDataQuery(); |
| 2946 o.rows = buildUnnamed1280(); | 2954 o.rows = buildUnnamed1537(); |
| 2947 o.selfLink = "foo"; | 2955 o.selfLink = "foo"; |
| 2948 o.totalResults = 42; | 2956 o.totalResults = 42; |
| 2949 o.totalsForAllResults = buildUnnamed1281(); | 2957 o.totalsForAllResults = buildUnnamed1538(); |
| 2950 } | 2958 } |
| 2951 buildCounterRealtimeData--; | 2959 buildCounterRealtimeData--; |
| 2952 return o; | 2960 return o; |
| 2953 } | 2961 } |
| 2954 | 2962 |
| 2955 checkRealtimeData(api.RealtimeData o) { | 2963 checkRealtimeData(api.RealtimeData o) { |
| 2956 buildCounterRealtimeData++; | 2964 buildCounterRealtimeData++; |
| 2957 if (buildCounterRealtimeData < 3) { | 2965 if (buildCounterRealtimeData < 3) { |
| 2958 checkUnnamed1276(o.columnHeaders); | 2966 checkUnnamed1533(o.columnHeaders); |
| 2959 unittest.expect(o.id, unittest.equals('foo')); | 2967 unittest.expect(o.id, unittest.equals('foo')); |
| 2960 unittest.expect(o.kind, unittest.equals('foo')); | 2968 unittest.expect(o.kind, unittest.equals('foo')); |
| 2961 checkRealtimeDataProfileInfo(o.profileInfo); | 2969 checkRealtimeDataProfileInfo(o.profileInfo); |
| 2962 checkRealtimeDataQuery(o.query); | 2970 checkRealtimeDataQuery(o.query); |
| 2963 checkUnnamed1280(o.rows); | 2971 checkUnnamed1537(o.rows); |
| 2964 unittest.expect(o.selfLink, unittest.equals('foo')); | 2972 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 2965 unittest.expect(o.totalResults, unittest.equals(42)); | 2973 unittest.expect(o.totalResults, unittest.equals(42)); |
| 2966 checkUnnamed1281(o.totalsForAllResults); | 2974 checkUnnamed1538(o.totalsForAllResults); |
| 2967 } | 2975 } |
| 2968 buildCounterRealtimeData--; | 2976 buildCounterRealtimeData--; |
| 2969 } | 2977 } |
| 2970 | 2978 |
| 2971 core.int buildCounterSegment = 0; | 2979 core.int buildCounterSegment = 0; |
| 2972 buildSegment() { | 2980 buildSegment() { |
| 2973 var o = new api.Segment(); | 2981 var o = new api.Segment(); |
| 2974 buildCounterSegment++; | 2982 buildCounterSegment++; |
| 2975 if (buildCounterSegment < 3) { | 2983 if (buildCounterSegment < 3) { |
| 2976 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 2984 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 2996 unittest.expect(o.kind, unittest.equals('foo')); | 3004 unittest.expect(o.kind, unittest.equals('foo')); |
| 2997 unittest.expect(o.name, unittest.equals('foo')); | 3005 unittest.expect(o.name, unittest.equals('foo')); |
| 2998 unittest.expect(o.segmentId, unittest.equals('foo')); | 3006 unittest.expect(o.segmentId, unittest.equals('foo')); |
| 2999 unittest.expect(o.selfLink, unittest.equals('foo')); | 3007 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3000 unittest.expect(o.type, unittest.equals('foo')); | 3008 unittest.expect(o.type, unittest.equals('foo')); |
| 3001 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3009 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3002 } | 3010 } |
| 3003 buildCounterSegment--; | 3011 buildCounterSegment--; |
| 3004 } | 3012 } |
| 3005 | 3013 |
| 3006 buildUnnamed1282() { | 3014 buildUnnamed1539() { |
| 3007 var o = new core.List<api.Segment>(); | 3015 var o = new core.List<api.Segment>(); |
| 3008 o.add(buildSegment()); | 3016 o.add(buildSegment()); |
| 3009 o.add(buildSegment()); | 3017 o.add(buildSegment()); |
| 3010 return o; | 3018 return o; |
| 3011 } | 3019 } |
| 3012 | 3020 |
| 3013 checkUnnamed1282(core.List<api.Segment> o) { | 3021 checkUnnamed1539(core.List<api.Segment> o) { |
| 3014 unittest.expect(o, unittest.hasLength(2)); | 3022 unittest.expect(o, unittest.hasLength(2)); |
| 3015 checkSegment(o[0]); | 3023 checkSegment(o[0]); |
| 3016 checkSegment(o[1]); | 3024 checkSegment(o[1]); |
| 3017 } | 3025 } |
| 3018 | 3026 |
| 3019 core.int buildCounterSegments = 0; | 3027 core.int buildCounterSegments = 0; |
| 3020 buildSegments() { | 3028 buildSegments() { |
| 3021 var o = new api.Segments(); | 3029 var o = new api.Segments(); |
| 3022 buildCounterSegments++; | 3030 buildCounterSegments++; |
| 3023 if (buildCounterSegments < 3) { | 3031 if (buildCounterSegments < 3) { |
| 3024 o.items = buildUnnamed1282(); | 3032 o.items = buildUnnamed1539(); |
| 3025 o.itemsPerPage = 42; | 3033 o.itemsPerPage = 42; |
| 3026 o.kind = "foo"; | 3034 o.kind = "foo"; |
| 3027 o.nextLink = "foo"; | 3035 o.nextLink = "foo"; |
| 3028 o.previousLink = "foo"; | 3036 o.previousLink = "foo"; |
| 3029 o.startIndex = 42; | 3037 o.startIndex = 42; |
| 3030 o.totalResults = 42; | 3038 o.totalResults = 42; |
| 3031 o.username = "foo"; | 3039 o.username = "foo"; |
| 3032 } | 3040 } |
| 3033 buildCounterSegments--; | 3041 buildCounterSegments--; |
| 3034 return o; | 3042 return o; |
| 3035 } | 3043 } |
| 3036 | 3044 |
| 3037 checkSegments(api.Segments o) { | 3045 checkSegments(api.Segments o) { |
| 3038 buildCounterSegments++; | 3046 buildCounterSegments++; |
| 3039 if (buildCounterSegments < 3) { | 3047 if (buildCounterSegments < 3) { |
| 3040 checkUnnamed1282(o.items); | 3048 checkUnnamed1539(o.items); |
| 3041 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3049 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3042 unittest.expect(o.kind, unittest.equals('foo')); | 3050 unittest.expect(o.kind, unittest.equals('foo')); |
| 3043 unittest.expect(o.nextLink, unittest.equals('foo')); | 3051 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3044 unittest.expect(o.previousLink, unittest.equals('foo')); | 3052 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3045 unittest.expect(o.startIndex, unittest.equals(42)); | 3053 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3046 unittest.expect(o.totalResults, unittest.equals(42)); | 3054 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3047 unittest.expect(o.username, unittest.equals('foo')); | 3055 unittest.expect(o.username, unittest.equals('foo')); |
| 3048 } | 3056 } |
| 3049 buildCounterSegments--; | 3057 buildCounterSegments--; |
| 3050 } | 3058 } |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3137 unittest.expect(o.selfLink, unittest.equals('foo')); | 3145 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3138 unittest.expect(o.start_date, unittest.equals('foo')); | 3146 unittest.expect(o.start_date, unittest.equals('foo')); |
| 3139 unittest.expect(o.status, unittest.equals('foo')); | 3147 unittest.expect(o.status, unittest.equals('foo')); |
| 3140 unittest.expect(o.title, unittest.equals('foo')); | 3148 unittest.expect(o.title, unittest.equals('foo')); |
| 3141 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3149 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3142 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 3150 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
| 3143 } | 3151 } |
| 3144 buildCounterUnsampledReport--; | 3152 buildCounterUnsampledReport--; |
| 3145 } | 3153 } |
| 3146 | 3154 |
| 3147 buildUnnamed1283() { | 3155 buildUnnamed1540() { |
| 3148 var o = new core.List<api.UnsampledReport>(); | 3156 var o = new core.List<api.UnsampledReport>(); |
| 3149 o.add(buildUnsampledReport()); | 3157 o.add(buildUnsampledReport()); |
| 3150 o.add(buildUnsampledReport()); | 3158 o.add(buildUnsampledReport()); |
| 3151 return o; | 3159 return o; |
| 3152 } | 3160 } |
| 3153 | 3161 |
| 3154 checkUnnamed1283(core.List<api.UnsampledReport> o) { | 3162 checkUnnamed1540(core.List<api.UnsampledReport> o) { |
| 3155 unittest.expect(o, unittest.hasLength(2)); | 3163 unittest.expect(o, unittest.hasLength(2)); |
| 3156 checkUnsampledReport(o[0]); | 3164 checkUnsampledReport(o[0]); |
| 3157 checkUnsampledReport(o[1]); | 3165 checkUnsampledReport(o[1]); |
| 3158 } | 3166 } |
| 3159 | 3167 |
| 3160 core.int buildCounterUnsampledReports = 0; | 3168 core.int buildCounterUnsampledReports = 0; |
| 3161 buildUnsampledReports() { | 3169 buildUnsampledReports() { |
| 3162 var o = new api.UnsampledReports(); | 3170 var o = new api.UnsampledReports(); |
| 3163 buildCounterUnsampledReports++; | 3171 buildCounterUnsampledReports++; |
| 3164 if (buildCounterUnsampledReports < 3) { | 3172 if (buildCounterUnsampledReports < 3) { |
| 3165 o.items = buildUnnamed1283(); | 3173 o.items = buildUnnamed1540(); |
| 3166 o.itemsPerPage = 42; | 3174 o.itemsPerPage = 42; |
| 3167 o.kind = "foo"; | 3175 o.kind = "foo"; |
| 3168 o.nextLink = "foo"; | 3176 o.nextLink = "foo"; |
| 3169 o.previousLink = "foo"; | 3177 o.previousLink = "foo"; |
| 3170 o.startIndex = 42; | 3178 o.startIndex = 42; |
| 3171 o.totalResults = 42; | 3179 o.totalResults = 42; |
| 3172 o.username = "foo"; | 3180 o.username = "foo"; |
| 3173 } | 3181 } |
| 3174 buildCounterUnsampledReports--; | 3182 buildCounterUnsampledReports--; |
| 3175 return o; | 3183 return o; |
| 3176 } | 3184 } |
| 3177 | 3185 |
| 3178 checkUnsampledReports(api.UnsampledReports o) { | 3186 checkUnsampledReports(api.UnsampledReports o) { |
| 3179 buildCounterUnsampledReports++; | 3187 buildCounterUnsampledReports++; |
| 3180 if (buildCounterUnsampledReports < 3) { | 3188 if (buildCounterUnsampledReports < 3) { |
| 3181 checkUnnamed1283(o.items); | 3189 checkUnnamed1540(o.items); |
| 3182 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3190 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3183 unittest.expect(o.kind, unittest.equals('foo')); | 3191 unittest.expect(o.kind, unittest.equals('foo')); |
| 3184 unittest.expect(o.nextLink, unittest.equals('foo')); | 3192 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3185 unittest.expect(o.previousLink, unittest.equals('foo')); | 3193 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3186 unittest.expect(o.startIndex, unittest.equals(42)); | 3194 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3187 unittest.expect(o.totalResults, unittest.equals(42)); | 3195 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3188 unittest.expect(o.username, unittest.equals('foo')); | 3196 unittest.expect(o.username, unittest.equals('foo')); |
| 3189 } | 3197 } |
| 3190 buildCounterUnsampledReports--; | 3198 buildCounterUnsampledReports--; |
| 3191 } | 3199 } |
| 3192 | 3200 |
| 3193 buildUnnamed1284() { | 3201 buildUnnamed1541() { |
| 3194 var o = new core.List<core.String>(); | 3202 var o = new core.List<core.String>(); |
| 3195 o.add("foo"); | 3203 o.add("foo"); |
| 3196 o.add("foo"); | 3204 o.add("foo"); |
| 3197 return o; | 3205 return o; |
| 3198 } | 3206 } |
| 3199 | 3207 |
| 3200 checkUnnamed1284(core.List<core.String> o) { | 3208 checkUnnamed1541(core.List<core.String> o) { |
| 3201 unittest.expect(o, unittest.hasLength(2)); | 3209 unittest.expect(o, unittest.hasLength(2)); |
| 3202 unittest.expect(o[0], unittest.equals('foo')); | 3210 unittest.expect(o[0], unittest.equals('foo')); |
| 3203 unittest.expect(o[1], unittest.equals('foo')); | 3211 unittest.expect(o[1], unittest.equals('foo')); |
| 3204 } | 3212 } |
| 3205 | 3213 |
| 3206 core.int buildCounterUpload = 0; | 3214 core.int buildCounterUpload = 0; |
| 3207 buildUpload() { | 3215 buildUpload() { |
| 3208 var o = new api.Upload(); | 3216 var o = new api.Upload(); |
| 3209 buildCounterUpload++; | 3217 buildCounterUpload++; |
| 3210 if (buildCounterUpload < 3) { | 3218 if (buildCounterUpload < 3) { |
| 3211 o.accountId = "foo"; | 3219 o.accountId = "foo"; |
| 3212 o.customDataSourceId = "foo"; | 3220 o.customDataSourceId = "foo"; |
| 3213 o.errors = buildUnnamed1284(); | 3221 o.errors = buildUnnamed1541(); |
| 3214 o.id = "foo"; | 3222 o.id = "foo"; |
| 3215 o.kind = "foo"; | 3223 o.kind = "foo"; |
| 3216 o.status = "foo"; | 3224 o.status = "foo"; |
| 3217 } | 3225 } |
| 3218 buildCounterUpload--; | 3226 buildCounterUpload--; |
| 3219 return o; | 3227 return o; |
| 3220 } | 3228 } |
| 3221 | 3229 |
| 3222 checkUpload(api.Upload o) { | 3230 checkUpload(api.Upload o) { |
| 3223 buildCounterUpload++; | 3231 buildCounterUpload++; |
| 3224 if (buildCounterUpload < 3) { | 3232 if (buildCounterUpload < 3) { |
| 3225 unittest.expect(o.accountId, unittest.equals('foo')); | 3233 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3226 unittest.expect(o.customDataSourceId, unittest.equals('foo')); | 3234 unittest.expect(o.customDataSourceId, unittest.equals('foo')); |
| 3227 checkUnnamed1284(o.errors); | 3235 checkUnnamed1541(o.errors); |
| 3228 unittest.expect(o.id, unittest.equals('foo')); | 3236 unittest.expect(o.id, unittest.equals('foo')); |
| 3229 unittest.expect(o.kind, unittest.equals('foo')); | 3237 unittest.expect(o.kind, unittest.equals('foo')); |
| 3230 unittest.expect(o.status, unittest.equals('foo')); | 3238 unittest.expect(o.status, unittest.equals('foo')); |
| 3231 } | 3239 } |
| 3232 buildCounterUpload--; | 3240 buildCounterUpload--; |
| 3233 } | 3241 } |
| 3234 | 3242 |
| 3235 buildUnnamed1285() { | 3243 buildUnnamed1542() { |
| 3236 var o = new core.List<api.Upload>(); | 3244 var o = new core.List<api.Upload>(); |
| 3237 o.add(buildUpload()); | 3245 o.add(buildUpload()); |
| 3238 o.add(buildUpload()); | 3246 o.add(buildUpload()); |
| 3239 return o; | 3247 return o; |
| 3240 } | 3248 } |
| 3241 | 3249 |
| 3242 checkUnnamed1285(core.List<api.Upload> o) { | 3250 checkUnnamed1542(core.List<api.Upload> o) { |
| 3243 unittest.expect(o, unittest.hasLength(2)); | 3251 unittest.expect(o, unittest.hasLength(2)); |
| 3244 checkUpload(o[0]); | 3252 checkUpload(o[0]); |
| 3245 checkUpload(o[1]); | 3253 checkUpload(o[1]); |
| 3246 } | 3254 } |
| 3247 | 3255 |
| 3248 core.int buildCounterUploads = 0; | 3256 core.int buildCounterUploads = 0; |
| 3249 buildUploads() { | 3257 buildUploads() { |
| 3250 var o = new api.Uploads(); | 3258 var o = new api.Uploads(); |
| 3251 buildCounterUploads++; | 3259 buildCounterUploads++; |
| 3252 if (buildCounterUploads < 3) { | 3260 if (buildCounterUploads < 3) { |
| 3253 o.items = buildUnnamed1285(); | 3261 o.items = buildUnnamed1542(); |
| 3254 o.itemsPerPage = 42; | 3262 o.itemsPerPage = 42; |
| 3255 o.kind = "foo"; | 3263 o.kind = "foo"; |
| 3256 o.nextLink = "foo"; | 3264 o.nextLink = "foo"; |
| 3257 o.previousLink = "foo"; | 3265 o.previousLink = "foo"; |
| 3258 o.startIndex = 42; | 3266 o.startIndex = 42; |
| 3259 o.totalResults = 42; | 3267 o.totalResults = 42; |
| 3260 } | 3268 } |
| 3261 buildCounterUploads--; | 3269 buildCounterUploads--; |
| 3262 return o; | 3270 return o; |
| 3263 } | 3271 } |
| 3264 | 3272 |
| 3265 checkUploads(api.Uploads o) { | 3273 checkUploads(api.Uploads o) { |
| 3266 buildCounterUploads++; | 3274 buildCounterUploads++; |
| 3267 if (buildCounterUploads < 3) { | 3275 if (buildCounterUploads < 3) { |
| 3268 checkUnnamed1285(o.items); | 3276 checkUnnamed1542(o.items); |
| 3269 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3277 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3270 unittest.expect(o.kind, unittest.equals('foo')); | 3278 unittest.expect(o.kind, unittest.equals('foo')); |
| 3271 unittest.expect(o.nextLink, unittest.equals('foo')); | 3279 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3272 unittest.expect(o.previousLink, unittest.equals('foo')); | 3280 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3273 unittest.expect(o.startIndex, unittest.equals(42)); | 3281 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3274 unittest.expect(o.totalResults, unittest.equals(42)); | 3282 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3275 } | 3283 } |
| 3276 buildCounterUploads--; | 3284 buildCounterUploads--; |
| 3277 } | 3285 } |
| 3278 | 3286 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3321 unittest.expect(o.accountId, unittest.equals('foo')); | 3329 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3322 unittest.expect(o.href, unittest.equals('foo')); | 3330 unittest.expect(o.href, unittest.equals('foo')); |
| 3323 unittest.expect(o.id, unittest.equals('foo')); | 3331 unittest.expect(o.id, unittest.equals('foo')); |
| 3324 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3332 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3325 unittest.expect(o.kind, unittest.equals('foo')); | 3333 unittest.expect(o.kind, unittest.equals('foo')); |
| 3326 unittest.expect(o.name, unittest.equals('foo')); | 3334 unittest.expect(o.name, unittest.equals('foo')); |
| 3327 } | 3335 } |
| 3328 buildCounterWebPropertyRef--; | 3336 buildCounterWebPropertyRef--; |
| 3329 } | 3337 } |
| 3330 | 3338 |
| 3331 buildUnnamed1286() { | 3339 buildUnnamed1543() { |
| 3332 var o = new core.List<api.ProfileSummary>(); | 3340 var o = new core.List<api.ProfileSummary>(); |
| 3333 o.add(buildProfileSummary()); | 3341 o.add(buildProfileSummary()); |
| 3334 o.add(buildProfileSummary()); | 3342 o.add(buildProfileSummary()); |
| 3335 return o; | 3343 return o; |
| 3336 } | 3344 } |
| 3337 | 3345 |
| 3338 checkUnnamed1286(core.List<api.ProfileSummary> o) { | 3346 checkUnnamed1543(core.List<api.ProfileSummary> o) { |
| 3339 unittest.expect(o, unittest.hasLength(2)); | 3347 unittest.expect(o, unittest.hasLength(2)); |
| 3340 checkProfileSummary(o[0]); | 3348 checkProfileSummary(o[0]); |
| 3341 checkProfileSummary(o[1]); | 3349 checkProfileSummary(o[1]); |
| 3342 } | 3350 } |
| 3343 | 3351 |
| 3344 core.int buildCounterWebPropertySummary = 0; | 3352 core.int buildCounterWebPropertySummary = 0; |
| 3345 buildWebPropertySummary() { | 3353 buildWebPropertySummary() { |
| 3346 var o = new api.WebPropertySummary(); | 3354 var o = new api.WebPropertySummary(); |
| 3347 buildCounterWebPropertySummary++; | 3355 buildCounterWebPropertySummary++; |
| 3348 if (buildCounterWebPropertySummary < 3) { | 3356 if (buildCounterWebPropertySummary < 3) { |
| 3349 o.id = "foo"; | 3357 o.id = "foo"; |
| 3350 o.internalWebPropertyId = "foo"; | 3358 o.internalWebPropertyId = "foo"; |
| 3351 o.kind = "foo"; | 3359 o.kind = "foo"; |
| 3352 o.level = "foo"; | 3360 o.level = "foo"; |
| 3353 o.name = "foo"; | 3361 o.name = "foo"; |
| 3354 o.profiles = buildUnnamed1286(); | 3362 o.profiles = buildUnnamed1543(); |
| 3363 o.starred = true; |
| 3355 o.websiteUrl = "foo"; | 3364 o.websiteUrl = "foo"; |
| 3356 } | 3365 } |
| 3357 buildCounterWebPropertySummary--; | 3366 buildCounterWebPropertySummary--; |
| 3358 return o; | 3367 return o; |
| 3359 } | 3368 } |
| 3360 | 3369 |
| 3361 checkWebPropertySummary(api.WebPropertySummary o) { | 3370 checkWebPropertySummary(api.WebPropertySummary o) { |
| 3362 buildCounterWebPropertySummary++; | 3371 buildCounterWebPropertySummary++; |
| 3363 if (buildCounterWebPropertySummary < 3) { | 3372 if (buildCounterWebPropertySummary < 3) { |
| 3364 unittest.expect(o.id, unittest.equals('foo')); | 3373 unittest.expect(o.id, unittest.equals('foo')); |
| 3365 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3374 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3366 unittest.expect(o.kind, unittest.equals('foo')); | 3375 unittest.expect(o.kind, unittest.equals('foo')); |
| 3367 unittest.expect(o.level, unittest.equals('foo')); | 3376 unittest.expect(o.level, unittest.equals('foo')); |
| 3368 unittest.expect(o.name, unittest.equals('foo')); | 3377 unittest.expect(o.name, unittest.equals('foo')); |
| 3369 checkUnnamed1286(o.profiles); | 3378 checkUnnamed1543(o.profiles); |
| 3379 unittest.expect(o.starred, unittest.isTrue); |
| 3370 unittest.expect(o.websiteUrl, unittest.equals('foo')); | 3380 unittest.expect(o.websiteUrl, unittest.equals('foo')); |
| 3371 } | 3381 } |
| 3372 buildCounterWebPropertySummary--; | 3382 buildCounterWebPropertySummary--; |
| 3373 } | 3383 } |
| 3374 | 3384 |
| 3375 buildUnnamed1287() { | 3385 buildUnnamed1544() { |
| 3376 var o = new core.List<api.Webproperty>(); | 3386 var o = new core.List<api.Webproperty>(); |
| 3377 o.add(buildWebproperty()); | 3387 o.add(buildWebproperty()); |
| 3378 o.add(buildWebproperty()); | 3388 o.add(buildWebproperty()); |
| 3379 return o; | 3389 return o; |
| 3380 } | 3390 } |
| 3381 | 3391 |
| 3382 checkUnnamed1287(core.List<api.Webproperty> o) { | 3392 checkUnnamed1544(core.List<api.Webproperty> o) { |
| 3383 unittest.expect(o, unittest.hasLength(2)); | 3393 unittest.expect(o, unittest.hasLength(2)); |
| 3384 checkWebproperty(o[0]); | 3394 checkWebproperty(o[0]); |
| 3385 checkWebproperty(o[1]); | 3395 checkWebproperty(o[1]); |
| 3386 } | 3396 } |
| 3387 | 3397 |
| 3388 core.int buildCounterWebproperties = 0; | 3398 core.int buildCounterWebproperties = 0; |
| 3389 buildWebproperties() { | 3399 buildWebproperties() { |
| 3390 var o = new api.Webproperties(); | 3400 var o = new api.Webproperties(); |
| 3391 buildCounterWebproperties++; | 3401 buildCounterWebproperties++; |
| 3392 if (buildCounterWebproperties < 3) { | 3402 if (buildCounterWebproperties < 3) { |
| 3393 o.items = buildUnnamed1287(); | 3403 o.items = buildUnnamed1544(); |
| 3394 o.itemsPerPage = 42; | 3404 o.itemsPerPage = 42; |
| 3395 o.kind = "foo"; | 3405 o.kind = "foo"; |
| 3396 o.nextLink = "foo"; | 3406 o.nextLink = "foo"; |
| 3397 o.previousLink = "foo"; | 3407 o.previousLink = "foo"; |
| 3398 o.startIndex = 42; | 3408 o.startIndex = 42; |
| 3399 o.totalResults = 42; | 3409 o.totalResults = 42; |
| 3400 o.username = "foo"; | 3410 o.username = "foo"; |
| 3401 } | 3411 } |
| 3402 buildCounterWebproperties--; | 3412 buildCounterWebproperties--; |
| 3403 return o; | 3413 return o; |
| 3404 } | 3414 } |
| 3405 | 3415 |
| 3406 checkWebproperties(api.Webproperties o) { | 3416 checkWebproperties(api.Webproperties o) { |
| 3407 buildCounterWebproperties++; | 3417 buildCounterWebproperties++; |
| 3408 if (buildCounterWebproperties < 3) { | 3418 if (buildCounterWebproperties < 3) { |
| 3409 checkUnnamed1287(o.items); | 3419 checkUnnamed1544(o.items); |
| 3410 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3420 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
| 3411 unittest.expect(o.kind, unittest.equals('foo')); | 3421 unittest.expect(o.kind, unittest.equals('foo')); |
| 3412 unittest.expect(o.nextLink, unittest.equals('foo')); | 3422 unittest.expect(o.nextLink, unittest.equals('foo')); |
| 3413 unittest.expect(o.previousLink, unittest.equals('foo')); | 3423 unittest.expect(o.previousLink, unittest.equals('foo')); |
| 3414 unittest.expect(o.startIndex, unittest.equals(42)); | 3424 unittest.expect(o.startIndex, unittest.equals(42)); |
| 3415 unittest.expect(o.totalResults, unittest.equals(42)); | 3425 unittest.expect(o.totalResults, unittest.equals(42)); |
| 3416 unittest.expect(o.username, unittest.equals('foo')); | 3426 unittest.expect(o.username, unittest.equals('foo')); |
| 3417 } | 3427 } |
| 3418 buildCounterWebproperties--; | 3428 buildCounterWebproperties--; |
| 3419 } | 3429 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3453 | 3463 |
| 3454 checkWebpropertyParentLink(api.WebpropertyParentLink o) { | 3464 checkWebpropertyParentLink(api.WebpropertyParentLink o) { |
| 3455 buildCounterWebpropertyParentLink++; | 3465 buildCounterWebpropertyParentLink++; |
| 3456 if (buildCounterWebpropertyParentLink < 3) { | 3466 if (buildCounterWebpropertyParentLink < 3) { |
| 3457 unittest.expect(o.href, unittest.equals('foo')); | 3467 unittest.expect(o.href, unittest.equals('foo')); |
| 3458 unittest.expect(o.type, unittest.equals('foo')); | 3468 unittest.expect(o.type, unittest.equals('foo')); |
| 3459 } | 3469 } |
| 3460 buildCounterWebpropertyParentLink--; | 3470 buildCounterWebpropertyParentLink--; |
| 3461 } | 3471 } |
| 3462 | 3472 |
| 3463 buildUnnamed1288() { | 3473 buildUnnamed1545() { |
| 3464 var o = new core.List<core.String>(); | 3474 var o = new core.List<core.String>(); |
| 3465 o.add("foo"); | 3475 o.add("foo"); |
| 3466 o.add("foo"); | 3476 o.add("foo"); |
| 3467 return o; | 3477 return o; |
| 3468 } | 3478 } |
| 3469 | 3479 |
| 3470 checkUnnamed1288(core.List<core.String> o) { | 3480 checkUnnamed1545(core.List<core.String> o) { |
| 3471 unittest.expect(o, unittest.hasLength(2)); | 3481 unittest.expect(o, unittest.hasLength(2)); |
| 3472 unittest.expect(o[0], unittest.equals('foo')); | 3482 unittest.expect(o[0], unittest.equals('foo')); |
| 3473 unittest.expect(o[1], unittest.equals('foo')); | 3483 unittest.expect(o[1], unittest.equals('foo')); |
| 3474 } | 3484 } |
| 3475 | 3485 |
| 3476 core.int buildCounterWebpropertyPermissions = 0; | 3486 core.int buildCounterWebpropertyPermissions = 0; |
| 3477 buildWebpropertyPermissions() { | 3487 buildWebpropertyPermissions() { |
| 3478 var o = new api.WebpropertyPermissions(); | 3488 var o = new api.WebpropertyPermissions(); |
| 3479 buildCounterWebpropertyPermissions++; | 3489 buildCounterWebpropertyPermissions++; |
| 3480 if (buildCounterWebpropertyPermissions < 3) { | 3490 if (buildCounterWebpropertyPermissions < 3) { |
| 3481 o.effective = buildUnnamed1288(); | 3491 o.effective = buildUnnamed1545(); |
| 3482 } | 3492 } |
| 3483 buildCounterWebpropertyPermissions--; | 3493 buildCounterWebpropertyPermissions--; |
| 3484 return o; | 3494 return o; |
| 3485 } | 3495 } |
| 3486 | 3496 |
| 3487 checkWebpropertyPermissions(api.WebpropertyPermissions o) { | 3497 checkWebpropertyPermissions(api.WebpropertyPermissions o) { |
| 3488 buildCounterWebpropertyPermissions++; | 3498 buildCounterWebpropertyPermissions++; |
| 3489 if (buildCounterWebpropertyPermissions < 3) { | 3499 if (buildCounterWebpropertyPermissions < 3) { |
| 3490 checkUnnamed1288(o.effective); | 3500 checkUnnamed1545(o.effective); |
| 3491 } | 3501 } |
| 3492 buildCounterWebpropertyPermissions--; | 3502 buildCounterWebpropertyPermissions--; |
| 3493 } | 3503 } |
| 3494 | 3504 |
| 3495 core.int buildCounterWebproperty = 0; | 3505 core.int buildCounterWebproperty = 0; |
| 3496 buildWebproperty() { | 3506 buildWebproperty() { |
| 3497 var o = new api.Webproperty(); | 3507 var o = new api.Webproperty(); |
| 3498 buildCounterWebproperty++; | 3508 buildCounterWebproperty++; |
| 3499 if (buildCounterWebproperty < 3) { | 3509 if (buildCounterWebproperty < 3) { |
| 3500 o.accountId = "foo"; | 3510 o.accountId = "foo"; |
| 3501 o.childLink = buildWebpropertyChildLink(); | 3511 o.childLink = buildWebpropertyChildLink(); |
| 3502 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 3512 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
| 3503 o.defaultProfileId = "foo"; | 3513 o.defaultProfileId = "foo"; |
| 3504 o.id = "foo"; | 3514 o.id = "foo"; |
| 3505 o.industryVertical = "foo"; | 3515 o.industryVertical = "foo"; |
| 3506 o.internalWebPropertyId = "foo"; | 3516 o.internalWebPropertyId = "foo"; |
| 3507 o.kind = "foo"; | 3517 o.kind = "foo"; |
| 3508 o.level = "foo"; | 3518 o.level = "foo"; |
| 3509 o.name = "foo"; | 3519 o.name = "foo"; |
| 3510 o.parentLink = buildWebpropertyParentLink(); | 3520 o.parentLink = buildWebpropertyParentLink(); |
| 3511 o.permissions = buildWebpropertyPermissions(); | 3521 o.permissions = buildWebpropertyPermissions(); |
| 3512 o.profileCount = 42; | 3522 o.profileCount = 42; |
| 3513 o.selfLink = "foo"; | 3523 o.selfLink = "foo"; |
| 3524 o.starred = true; |
| 3514 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 3525 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
| 3515 o.websiteUrl = "foo"; | 3526 o.websiteUrl = "foo"; |
| 3516 } | 3527 } |
| 3517 buildCounterWebproperty--; | 3528 buildCounterWebproperty--; |
| 3518 return o; | 3529 return o; |
| 3519 } | 3530 } |
| 3520 | 3531 |
| 3521 checkWebproperty(api.Webproperty o) { | 3532 checkWebproperty(api.Webproperty o) { |
| 3522 buildCounterWebproperty++; | 3533 buildCounterWebproperty++; |
| 3523 if (buildCounterWebproperty < 3) { | 3534 if (buildCounterWebproperty < 3) { |
| 3524 unittest.expect(o.accountId, unittest.equals('foo')); | 3535 unittest.expect(o.accountId, unittest.equals('foo')); |
| 3525 checkWebpropertyChildLink(o.childLink); | 3536 checkWebpropertyChildLink(o.childLink); |
| 3526 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3537 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3527 unittest.expect(o.defaultProfileId, unittest.equals('foo')); | 3538 unittest.expect(o.defaultProfileId, unittest.equals('foo')); |
| 3528 unittest.expect(o.id, unittest.equals('foo')); | 3539 unittest.expect(o.id, unittest.equals('foo')); |
| 3529 unittest.expect(o.industryVertical, unittest.equals('foo')); | 3540 unittest.expect(o.industryVertical, unittest.equals('foo')); |
| 3530 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3541 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
| 3531 unittest.expect(o.kind, unittest.equals('foo')); | 3542 unittest.expect(o.kind, unittest.equals('foo')); |
| 3532 unittest.expect(o.level, unittest.equals('foo')); | 3543 unittest.expect(o.level, unittest.equals('foo')); |
| 3533 unittest.expect(o.name, unittest.equals('foo')); | 3544 unittest.expect(o.name, unittest.equals('foo')); |
| 3534 checkWebpropertyParentLink(o.parentLink); | 3545 checkWebpropertyParentLink(o.parentLink); |
| 3535 checkWebpropertyPermissions(o.permissions); | 3546 checkWebpropertyPermissions(o.permissions); |
| 3536 unittest.expect(o.profileCount, unittest.equals(42)); | 3547 unittest.expect(o.profileCount, unittest.equals(42)); |
| 3537 unittest.expect(o.selfLink, unittest.equals('foo')); | 3548 unittest.expect(o.selfLink, unittest.equals('foo')); |
| 3549 unittest.expect(o.starred, unittest.isTrue); |
| 3538 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 3550 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
| 3539 unittest.expect(o.websiteUrl, unittest.equals('foo')); | 3551 unittest.expect(o.websiteUrl, unittest.equals('foo')); |
| 3540 } | 3552 } |
| 3541 buildCounterWebproperty--; | 3553 buildCounterWebproperty--; |
| 3542 } | 3554 } |
| 3543 | 3555 |
| 3544 | 3556 |
| 3545 main() { | 3557 main() { |
| 3546 unittest.group("obj-schema-AccountChildLink", () { | 3558 unittest.group("obj-schema-AccountChildLink", () { |
| 3547 unittest.test("to-json--from-json", () { | 3559 unittest.test("to-json--from-json", () { |
| (...skipping 6169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9717 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou
ntTicket response) { | 9729 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou
ntTicket response) { |
| 9718 checkAccountTicket(response); | 9730 checkAccountTicket(response); |
| 9719 }))); | 9731 }))); |
| 9720 }); | 9732 }); |
| 9721 | 9733 |
| 9722 }); | 9734 }); |
| 9723 | 9735 |
| 9724 | 9736 |
| 9725 } | 9737 } |
| 9726 | 9738 |
| OLD | NEW |