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 buildUnnamed290() { | 75 buildUnnamed1053() { |
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 checkUnnamed290(core.List<core.String> o) { | 82 checkUnnamed1053(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 = buildUnnamed290(); | 93 o.effective = buildUnnamed1053(); |
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 checkUnnamed290(o.effective); | 102 checkUnnamed1053(o.effective); |
103 } | 103 } |
104 buildCounterAccountPermissions--; | 104 buildCounterAccountPermissions--; |
105 } | 105 } |
106 | 106 |
107 core.int buildCounterAccount = 0; | 107 core.int buildCounterAccount = 0; |
108 buildAccount() { | 108 buildAccount() { |
109 var o = new api.Account(); | 109 var o = new api.Account(); |
110 buildCounterAccount++; | 110 buildCounterAccount++; |
111 if (buildCounterAccount < 3) { | 111 if (buildCounterAccount < 3) { |
112 o.childLink = buildAccountChildLink(); | 112 o.childLink = buildAccountChildLink(); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 buildCounterAccountRef++; | 157 buildCounterAccountRef++; |
158 if (buildCounterAccountRef < 3) { | 158 if (buildCounterAccountRef < 3) { |
159 unittest.expect(o.href, unittest.equals('foo')); | 159 unittest.expect(o.href, unittest.equals('foo')); |
160 unittest.expect(o.id, unittest.equals('foo')); | 160 unittest.expect(o.id, unittest.equals('foo')); |
161 unittest.expect(o.kind, unittest.equals('foo')); | 161 unittest.expect(o.kind, unittest.equals('foo')); |
162 unittest.expect(o.name, unittest.equals('foo')); | 162 unittest.expect(o.name, unittest.equals('foo')); |
163 } | 163 } |
164 buildCounterAccountRef--; | 164 buildCounterAccountRef--; |
165 } | 165 } |
166 | 166 |
167 buildUnnamed291() { | 167 buildUnnamed1054() { |
168 var o = new core.List<api.AccountSummary>(); | 168 var o = new core.List<api.AccountSummary>(); |
169 o.add(buildAccountSummary()); | 169 o.add(buildAccountSummary()); |
170 o.add(buildAccountSummary()); | 170 o.add(buildAccountSummary()); |
171 return o; | 171 return o; |
172 } | 172 } |
173 | 173 |
174 checkUnnamed291(core.List<api.AccountSummary> o) { | 174 checkUnnamed1054(core.List<api.AccountSummary> o) { |
175 unittest.expect(o, unittest.hasLength(2)); | 175 unittest.expect(o, unittest.hasLength(2)); |
176 checkAccountSummary(o[0]); | 176 checkAccountSummary(o[0]); |
177 checkAccountSummary(o[1]); | 177 checkAccountSummary(o[1]); |
178 } | 178 } |
179 | 179 |
180 core.int buildCounterAccountSummaries = 0; | 180 core.int buildCounterAccountSummaries = 0; |
181 buildAccountSummaries() { | 181 buildAccountSummaries() { |
182 var o = new api.AccountSummaries(); | 182 var o = new api.AccountSummaries(); |
183 buildCounterAccountSummaries++; | 183 buildCounterAccountSummaries++; |
184 if (buildCounterAccountSummaries < 3) { | 184 if (buildCounterAccountSummaries < 3) { |
185 o.items = buildUnnamed291(); | 185 o.items = buildUnnamed1054(); |
186 o.itemsPerPage = 42; | 186 o.itemsPerPage = 42; |
187 o.kind = "foo"; | 187 o.kind = "foo"; |
188 o.nextLink = "foo"; | 188 o.nextLink = "foo"; |
189 o.previousLink = "foo"; | 189 o.previousLink = "foo"; |
190 o.startIndex = 42; | 190 o.startIndex = 42; |
191 o.totalResults = 42; | 191 o.totalResults = 42; |
192 o.username = "foo"; | 192 o.username = "foo"; |
193 } | 193 } |
194 buildCounterAccountSummaries--; | 194 buildCounterAccountSummaries--; |
195 return o; | 195 return o; |
196 } | 196 } |
197 | 197 |
198 checkAccountSummaries(api.AccountSummaries o) { | 198 checkAccountSummaries(api.AccountSummaries o) { |
199 buildCounterAccountSummaries++; | 199 buildCounterAccountSummaries++; |
200 if (buildCounterAccountSummaries < 3) { | 200 if (buildCounterAccountSummaries < 3) { |
201 checkUnnamed291(o.items); | 201 checkUnnamed1054(o.items); |
202 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 202 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
203 unittest.expect(o.kind, unittest.equals('foo')); | 203 unittest.expect(o.kind, unittest.equals('foo')); |
204 unittest.expect(o.nextLink, unittest.equals('foo')); | 204 unittest.expect(o.nextLink, unittest.equals('foo')); |
205 unittest.expect(o.previousLink, unittest.equals('foo')); | 205 unittest.expect(o.previousLink, unittest.equals('foo')); |
206 unittest.expect(o.startIndex, unittest.equals(42)); | 206 unittest.expect(o.startIndex, unittest.equals(42)); |
207 unittest.expect(o.totalResults, unittest.equals(42)); | 207 unittest.expect(o.totalResults, unittest.equals(42)); |
208 unittest.expect(o.username, unittest.equals('foo')); | 208 unittest.expect(o.username, unittest.equals('foo')); |
209 } | 209 } |
210 buildCounterAccountSummaries--; | 210 buildCounterAccountSummaries--; |
211 } | 211 } |
212 | 212 |
213 buildUnnamed292() { | 213 buildUnnamed1055() { |
214 var o = new core.List<api.WebPropertySummary>(); | 214 var o = new core.List<api.WebPropertySummary>(); |
215 o.add(buildWebPropertySummary()); | 215 o.add(buildWebPropertySummary()); |
216 o.add(buildWebPropertySummary()); | 216 o.add(buildWebPropertySummary()); |
217 return o; | 217 return o; |
218 } | 218 } |
219 | 219 |
220 checkUnnamed292(core.List<api.WebPropertySummary> o) { | 220 checkUnnamed1055(core.List<api.WebPropertySummary> o) { |
221 unittest.expect(o, unittest.hasLength(2)); | 221 unittest.expect(o, unittest.hasLength(2)); |
222 checkWebPropertySummary(o[0]); | 222 checkWebPropertySummary(o[0]); |
223 checkWebPropertySummary(o[1]); | 223 checkWebPropertySummary(o[1]); |
224 } | 224 } |
225 | 225 |
226 core.int buildCounterAccountSummary = 0; | 226 core.int buildCounterAccountSummary = 0; |
227 buildAccountSummary() { | 227 buildAccountSummary() { |
228 var o = new api.AccountSummary(); | 228 var o = new api.AccountSummary(); |
229 buildCounterAccountSummary++; | 229 buildCounterAccountSummary++; |
230 if (buildCounterAccountSummary < 3) { | 230 if (buildCounterAccountSummary < 3) { |
231 o.id = "foo"; | 231 o.id = "foo"; |
232 o.kind = "foo"; | 232 o.kind = "foo"; |
233 o.name = "foo"; | 233 o.name = "foo"; |
234 o.starred = true; | 234 o.starred = true; |
235 o.webProperties = buildUnnamed292(); | 235 o.webProperties = buildUnnamed1055(); |
236 } | 236 } |
237 buildCounterAccountSummary--; | 237 buildCounterAccountSummary--; |
238 return o; | 238 return o; |
239 } | 239 } |
240 | 240 |
241 checkAccountSummary(api.AccountSummary o) { | 241 checkAccountSummary(api.AccountSummary o) { |
242 buildCounterAccountSummary++; | 242 buildCounterAccountSummary++; |
243 if (buildCounterAccountSummary < 3) { | 243 if (buildCounterAccountSummary < 3) { |
244 unittest.expect(o.id, unittest.equals('foo')); | 244 unittest.expect(o.id, unittest.equals('foo')); |
245 unittest.expect(o.kind, unittest.equals('foo')); | 245 unittest.expect(o.kind, unittest.equals('foo')); |
246 unittest.expect(o.name, unittest.equals('foo')); | 246 unittest.expect(o.name, unittest.equals('foo')); |
247 unittest.expect(o.starred, unittest.isTrue); | 247 unittest.expect(o.starred, unittest.isTrue); |
248 checkUnnamed292(o.webProperties); | 248 checkUnnamed1055(o.webProperties); |
249 } | 249 } |
250 buildCounterAccountSummary--; | 250 buildCounterAccountSummary--; |
251 } | 251 } |
252 | 252 |
253 core.int buildCounterAccountTicket = 0; | 253 core.int buildCounterAccountTicket = 0; |
254 buildAccountTicket() { | 254 buildAccountTicket() { |
255 var o = new api.AccountTicket(); | 255 var o = new api.AccountTicket(); |
256 buildCounterAccountTicket++; | 256 buildCounterAccountTicket++; |
257 if (buildCounterAccountTicket < 3) { | 257 if (buildCounterAccountTicket < 3) { |
258 o.account = buildAccount(); | 258 o.account = buildAccount(); |
(...skipping 13 matching lines...) Expand all Loading... |
272 checkAccount(o.account); | 272 checkAccount(o.account); |
273 unittest.expect(o.id, unittest.equals('foo')); | 273 unittest.expect(o.id, unittest.equals('foo')); |
274 unittest.expect(o.kind, unittest.equals('foo')); | 274 unittest.expect(o.kind, unittest.equals('foo')); |
275 checkProfile(o.profile); | 275 checkProfile(o.profile); |
276 unittest.expect(o.redirectUri, unittest.equals('foo')); | 276 unittest.expect(o.redirectUri, unittest.equals('foo')); |
277 checkWebproperty(o.webproperty); | 277 checkWebproperty(o.webproperty); |
278 } | 278 } |
279 buildCounterAccountTicket--; | 279 buildCounterAccountTicket--; |
280 } | 280 } |
281 | 281 |
282 buildUnnamed293() { | 282 buildUnnamed1056() { |
283 var o = new core.List<api.Account>(); | 283 var o = new core.List<api.Account>(); |
284 o.add(buildAccount()); | 284 o.add(buildAccount()); |
285 o.add(buildAccount()); | 285 o.add(buildAccount()); |
286 return o; | 286 return o; |
287 } | 287 } |
288 | 288 |
289 checkUnnamed293(core.List<api.Account> o) { | 289 checkUnnamed1056(core.List<api.Account> o) { |
290 unittest.expect(o, unittest.hasLength(2)); | 290 unittest.expect(o, unittest.hasLength(2)); |
291 checkAccount(o[0]); | 291 checkAccount(o[0]); |
292 checkAccount(o[1]); | 292 checkAccount(o[1]); |
293 } | 293 } |
294 | 294 |
295 core.int buildCounterAccounts = 0; | 295 core.int buildCounterAccounts = 0; |
296 buildAccounts() { | 296 buildAccounts() { |
297 var o = new api.Accounts(); | 297 var o = new api.Accounts(); |
298 buildCounterAccounts++; | 298 buildCounterAccounts++; |
299 if (buildCounterAccounts < 3) { | 299 if (buildCounterAccounts < 3) { |
300 o.items = buildUnnamed293(); | 300 o.items = buildUnnamed1056(); |
301 o.itemsPerPage = 42; | 301 o.itemsPerPage = 42; |
302 o.kind = "foo"; | 302 o.kind = "foo"; |
303 o.nextLink = "foo"; | 303 o.nextLink = "foo"; |
304 o.previousLink = "foo"; | 304 o.previousLink = "foo"; |
305 o.startIndex = 42; | 305 o.startIndex = 42; |
306 o.totalResults = 42; | 306 o.totalResults = 42; |
307 o.username = "foo"; | 307 o.username = "foo"; |
308 } | 308 } |
309 buildCounterAccounts--; | 309 buildCounterAccounts--; |
310 return o; | 310 return o; |
311 } | 311 } |
312 | 312 |
313 checkAccounts(api.Accounts o) { | 313 checkAccounts(api.Accounts o) { |
314 buildCounterAccounts++; | 314 buildCounterAccounts++; |
315 if (buildCounterAccounts < 3) { | 315 if (buildCounterAccounts < 3) { |
316 checkUnnamed293(o.items); | 316 checkUnnamed1056(o.items); |
317 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 317 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
318 unittest.expect(o.kind, unittest.equals('foo')); | 318 unittest.expect(o.kind, unittest.equals('foo')); |
319 unittest.expect(o.nextLink, unittest.equals('foo')); | 319 unittest.expect(o.nextLink, unittest.equals('foo')); |
320 unittest.expect(o.previousLink, unittest.equals('foo')); | 320 unittest.expect(o.previousLink, unittest.equals('foo')); |
321 unittest.expect(o.startIndex, unittest.equals(42)); | 321 unittest.expect(o.startIndex, unittest.equals(42)); |
322 unittest.expect(o.totalResults, unittest.equals(42)); | 322 unittest.expect(o.totalResults, unittest.equals(42)); |
323 unittest.expect(o.username, unittest.equals('foo')); | 323 unittest.expect(o.username, unittest.equals('foo')); |
324 } | 324 } |
325 buildCounterAccounts--; | 325 buildCounterAccounts--; |
326 } | 326 } |
(...skipping 14 matching lines...) Expand all Loading... |
341 checkAdWordsAccount(api.AdWordsAccount o) { | 341 checkAdWordsAccount(api.AdWordsAccount o) { |
342 buildCounterAdWordsAccount++; | 342 buildCounterAdWordsAccount++; |
343 if (buildCounterAdWordsAccount < 3) { | 343 if (buildCounterAdWordsAccount < 3) { |
344 unittest.expect(o.autoTaggingEnabled, unittest.isTrue); | 344 unittest.expect(o.autoTaggingEnabled, unittest.isTrue); |
345 unittest.expect(o.customerId, unittest.equals('foo')); | 345 unittest.expect(o.customerId, unittest.equals('foo')); |
346 unittest.expect(o.kind, unittest.equals('foo')); | 346 unittest.expect(o.kind, unittest.equals('foo')); |
347 } | 347 } |
348 buildCounterAdWordsAccount--; | 348 buildCounterAdWordsAccount--; |
349 } | 349 } |
350 | 350 |
351 buildUnnamed294() { | 351 buildUnnamed1057() { |
352 var o = new core.List<core.String>(); | 352 var o = new core.List<core.String>(); |
353 o.add("foo"); | 353 o.add("foo"); |
354 o.add("foo"); | 354 o.add("foo"); |
355 return o; | 355 return o; |
356 } | 356 } |
357 | 357 |
358 checkUnnamed294(core.List<core.String> o) { | 358 checkUnnamed1057(core.List<core.String> o) { |
359 unittest.expect(o, unittest.hasLength(2)); | 359 unittest.expect(o, unittest.hasLength(2)); |
360 unittest.expect(o[0], unittest.equals('foo')); | 360 unittest.expect(o[0], unittest.equals('foo')); |
361 unittest.expect(o[1], unittest.equals('foo')); | 361 unittest.expect(o[1], unittest.equals('foo')); |
362 } | 362 } |
363 | 363 |
364 core.int buildCounterAnalyticsDataimportDeleteUploadDataRequest = 0; | 364 core.int buildCounterAnalyticsDataimportDeleteUploadDataRequest = 0; |
365 buildAnalyticsDataimportDeleteUploadDataRequest() { | 365 buildAnalyticsDataimportDeleteUploadDataRequest() { |
366 var o = new api.AnalyticsDataimportDeleteUploadDataRequest(); | 366 var o = new api.AnalyticsDataimportDeleteUploadDataRequest(); |
367 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; | 367 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; |
368 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { | 368 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { |
369 o.customDataImportUids = buildUnnamed294(); | 369 o.customDataImportUids = buildUnnamed1057(); |
370 } | 370 } |
371 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; | 371 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; |
372 return o; | 372 return o; |
373 } | 373 } |
374 | 374 |
375 checkAnalyticsDataimportDeleteUploadDataRequest(api.AnalyticsDataimportDeleteUpl
oadDataRequest o) { | 375 checkAnalyticsDataimportDeleteUploadDataRequest(api.AnalyticsDataimportDeleteUpl
oadDataRequest o) { |
376 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; | 376 buildCounterAnalyticsDataimportDeleteUploadDataRequest++; |
377 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { | 377 if (buildCounterAnalyticsDataimportDeleteUploadDataRequest < 3) { |
378 checkUnnamed294(o.customDataImportUids); | 378 checkUnnamed1057(o.customDataImportUids); |
379 } | 379 } |
380 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; | 380 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; |
381 } | 381 } |
382 | 382 |
383 buildUnnamed295() { | 383 buildUnnamed1058() { |
384 var o = new core.Map<core.String, core.String>(); | 384 var o = new core.Map<core.String, core.String>(); |
385 o["x"] = "foo"; | 385 o["x"] = "foo"; |
386 o["y"] = "foo"; | 386 o["y"] = "foo"; |
387 return o; | 387 return o; |
388 } | 388 } |
389 | 389 |
390 checkUnnamed295(core.Map<core.String, core.String> o) { | 390 checkUnnamed1058(core.Map<core.String, core.String> o) { |
391 unittest.expect(o, unittest.hasLength(2)); | 391 unittest.expect(o, unittest.hasLength(2)); |
392 unittest.expect(o["x"], unittest.equals('foo')); | 392 unittest.expect(o["x"], unittest.equals('foo')); |
393 unittest.expect(o["y"], unittest.equals('foo')); | 393 unittest.expect(o["y"], unittest.equals('foo')); |
394 } | 394 } |
395 | 395 |
396 core.int buildCounterColumn = 0; | 396 core.int buildCounterColumn = 0; |
397 buildColumn() { | 397 buildColumn() { |
398 var o = new api.Column(); | 398 var o = new api.Column(); |
399 buildCounterColumn++; | 399 buildCounterColumn++; |
400 if (buildCounterColumn < 3) { | 400 if (buildCounterColumn < 3) { |
401 o.attributes = buildUnnamed295(); | 401 o.attributes = buildUnnamed1058(); |
402 o.id = "foo"; | 402 o.id = "foo"; |
403 o.kind = "foo"; | 403 o.kind = "foo"; |
404 } | 404 } |
405 buildCounterColumn--; | 405 buildCounterColumn--; |
406 return o; | 406 return o; |
407 } | 407 } |
408 | 408 |
409 checkColumn(api.Column o) { | 409 checkColumn(api.Column o) { |
410 buildCounterColumn++; | 410 buildCounterColumn++; |
411 if (buildCounterColumn < 3) { | 411 if (buildCounterColumn < 3) { |
412 checkUnnamed295(o.attributes); | 412 checkUnnamed1058(o.attributes); |
413 unittest.expect(o.id, unittest.equals('foo')); | 413 unittest.expect(o.id, unittest.equals('foo')); |
414 unittest.expect(o.kind, unittest.equals('foo')); | 414 unittest.expect(o.kind, unittest.equals('foo')); |
415 } | 415 } |
416 buildCounterColumn--; | 416 buildCounterColumn--; |
417 } | 417 } |
418 | 418 |
419 buildUnnamed296() { | 419 buildUnnamed1059() { |
420 var o = new core.List<core.String>(); | 420 var o = new core.List<core.String>(); |
421 o.add("foo"); | 421 o.add("foo"); |
422 o.add("foo"); | 422 o.add("foo"); |
423 return o; | 423 return o; |
424 } | 424 } |
425 | 425 |
426 checkUnnamed296(core.List<core.String> o) { | 426 checkUnnamed1059(core.List<core.String> o) { |
427 unittest.expect(o, unittest.hasLength(2)); | 427 unittest.expect(o, unittest.hasLength(2)); |
428 unittest.expect(o[0], unittest.equals('foo')); | 428 unittest.expect(o[0], unittest.equals('foo')); |
429 unittest.expect(o[1], unittest.equals('foo')); | 429 unittest.expect(o[1], unittest.equals('foo')); |
430 } | 430 } |
431 | 431 |
432 buildUnnamed297() { | 432 buildUnnamed1060() { |
433 var o = new core.List<api.Column>(); | 433 var o = new core.List<api.Column>(); |
434 o.add(buildColumn()); | 434 o.add(buildColumn()); |
435 o.add(buildColumn()); | 435 o.add(buildColumn()); |
436 return o; | 436 return o; |
437 } | 437 } |
438 | 438 |
439 checkUnnamed297(core.List<api.Column> o) { | 439 checkUnnamed1060(core.List<api.Column> o) { |
440 unittest.expect(o, unittest.hasLength(2)); | 440 unittest.expect(o, unittest.hasLength(2)); |
441 checkColumn(o[0]); | 441 checkColumn(o[0]); |
442 checkColumn(o[1]); | 442 checkColumn(o[1]); |
443 } | 443 } |
444 | 444 |
445 core.int buildCounterColumns = 0; | 445 core.int buildCounterColumns = 0; |
446 buildColumns() { | 446 buildColumns() { |
447 var o = new api.Columns(); | 447 var o = new api.Columns(); |
448 buildCounterColumns++; | 448 buildCounterColumns++; |
449 if (buildCounterColumns < 3) { | 449 if (buildCounterColumns < 3) { |
450 o.attributeNames = buildUnnamed296(); | 450 o.attributeNames = buildUnnamed1059(); |
451 o.etag = "foo"; | 451 o.etag = "foo"; |
452 o.items = buildUnnamed297(); | 452 o.items = buildUnnamed1060(); |
453 o.kind = "foo"; | 453 o.kind = "foo"; |
454 o.totalResults = 42; | 454 o.totalResults = 42; |
455 } | 455 } |
456 buildCounterColumns--; | 456 buildCounterColumns--; |
457 return o; | 457 return o; |
458 } | 458 } |
459 | 459 |
460 checkColumns(api.Columns o) { | 460 checkColumns(api.Columns o) { |
461 buildCounterColumns++; | 461 buildCounterColumns++; |
462 if (buildCounterColumns < 3) { | 462 if (buildCounterColumns < 3) { |
463 checkUnnamed296(o.attributeNames); | 463 checkUnnamed1059(o.attributeNames); |
464 unittest.expect(o.etag, unittest.equals('foo')); | 464 unittest.expect(o.etag, unittest.equals('foo')); |
465 checkUnnamed297(o.items); | 465 checkUnnamed1060(o.items); |
466 unittest.expect(o.kind, unittest.equals('foo')); | 466 unittest.expect(o.kind, unittest.equals('foo')); |
467 unittest.expect(o.totalResults, unittest.equals(42)); | 467 unittest.expect(o.totalResults, unittest.equals(42)); |
468 } | 468 } |
469 buildCounterColumns--; | 469 buildCounterColumns--; |
470 } | 470 } |
471 | 471 |
472 core.int buildCounterCustomDataSourceChildLink = 0; | 472 core.int buildCounterCustomDataSourceChildLink = 0; |
473 buildCustomDataSourceChildLink() { | 473 buildCustomDataSourceChildLink() { |
474 var o = new api.CustomDataSourceChildLink(); | 474 var o = new api.CustomDataSourceChildLink(); |
475 buildCounterCustomDataSourceChildLink++; | 475 buildCounterCustomDataSourceChildLink++; |
(...skipping 28 matching lines...) Expand all Loading... |
504 | 504 |
505 checkCustomDataSourceParentLink(api.CustomDataSourceParentLink o) { | 505 checkCustomDataSourceParentLink(api.CustomDataSourceParentLink o) { |
506 buildCounterCustomDataSourceParentLink++; | 506 buildCounterCustomDataSourceParentLink++; |
507 if (buildCounterCustomDataSourceParentLink < 3) { | 507 if (buildCounterCustomDataSourceParentLink < 3) { |
508 unittest.expect(o.href, unittest.equals('foo')); | 508 unittest.expect(o.href, unittest.equals('foo')); |
509 unittest.expect(o.type, unittest.equals('foo')); | 509 unittest.expect(o.type, unittest.equals('foo')); |
510 } | 510 } |
511 buildCounterCustomDataSourceParentLink--; | 511 buildCounterCustomDataSourceParentLink--; |
512 } | 512 } |
513 | 513 |
514 buildUnnamed298() { | 514 buildUnnamed1061() { |
515 var o = new core.List<core.String>(); | 515 var o = new core.List<core.String>(); |
516 o.add("foo"); | 516 o.add("foo"); |
517 o.add("foo"); | 517 o.add("foo"); |
518 return o; | 518 return o; |
519 } | 519 } |
520 | 520 |
521 checkUnnamed298(core.List<core.String> o) { | 521 checkUnnamed1061(core.List<core.String> o) { |
522 unittest.expect(o, unittest.hasLength(2)); | 522 unittest.expect(o, unittest.hasLength(2)); |
523 unittest.expect(o[0], unittest.equals('foo')); | 523 unittest.expect(o[0], unittest.equals('foo')); |
524 unittest.expect(o[1], unittest.equals('foo')); | 524 unittest.expect(o[1], unittest.equals('foo')); |
525 } | 525 } |
526 | 526 |
527 core.int buildCounterCustomDataSource = 0; | 527 core.int buildCounterCustomDataSource = 0; |
528 buildCustomDataSource() { | 528 buildCustomDataSource() { |
529 var o = new api.CustomDataSource(); | 529 var o = new api.CustomDataSource(); |
530 buildCounterCustomDataSource++; | 530 buildCounterCustomDataSource++; |
531 if (buildCounterCustomDataSource < 3) { | 531 if (buildCounterCustomDataSource < 3) { |
532 o.accountId = "foo"; | 532 o.accountId = "foo"; |
533 o.childLink = buildCustomDataSourceChildLink(); | 533 o.childLink = buildCustomDataSourceChildLink(); |
534 o.created = core.DateTime.parse("2002-02-27T14:01:02"); | 534 o.created = core.DateTime.parse("2002-02-27T14:01:02"); |
535 o.description = "foo"; | 535 o.description = "foo"; |
536 o.id = "foo"; | 536 o.id = "foo"; |
537 o.importBehavior = "foo"; | 537 o.importBehavior = "foo"; |
538 o.kind = "foo"; | 538 o.kind = "foo"; |
539 o.name = "foo"; | 539 o.name = "foo"; |
540 o.parentLink = buildCustomDataSourceParentLink(); | 540 o.parentLink = buildCustomDataSourceParentLink(); |
541 o.profilesLinked = buildUnnamed298(); | 541 o.profilesLinked = buildUnnamed1061(); |
542 o.selfLink = "foo"; | 542 o.selfLink = "foo"; |
543 o.type = "foo"; | 543 o.type = "foo"; |
544 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 544 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
545 o.uploadType = "foo"; | 545 o.uploadType = "foo"; |
546 o.webPropertyId = "foo"; | 546 o.webPropertyId = "foo"; |
547 } | 547 } |
548 buildCounterCustomDataSource--; | 548 buildCounterCustomDataSource--; |
549 return o; | 549 return o; |
550 } | 550 } |
551 | 551 |
552 checkCustomDataSource(api.CustomDataSource o) { | 552 checkCustomDataSource(api.CustomDataSource o) { |
553 buildCounterCustomDataSource++; | 553 buildCounterCustomDataSource++; |
554 if (buildCounterCustomDataSource < 3) { | 554 if (buildCounterCustomDataSource < 3) { |
555 unittest.expect(o.accountId, unittest.equals('foo')); | 555 unittest.expect(o.accountId, unittest.equals('foo')); |
556 checkCustomDataSourceChildLink(o.childLink); | 556 checkCustomDataSourceChildLink(o.childLink); |
557 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 557 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
558 unittest.expect(o.description, unittest.equals('foo')); | 558 unittest.expect(o.description, unittest.equals('foo')); |
559 unittest.expect(o.id, unittest.equals('foo')); | 559 unittest.expect(o.id, unittest.equals('foo')); |
560 unittest.expect(o.importBehavior, unittest.equals('foo')); | 560 unittest.expect(o.importBehavior, unittest.equals('foo')); |
561 unittest.expect(o.kind, unittest.equals('foo')); | 561 unittest.expect(o.kind, unittest.equals('foo')); |
562 unittest.expect(o.name, unittest.equals('foo')); | 562 unittest.expect(o.name, unittest.equals('foo')); |
563 checkCustomDataSourceParentLink(o.parentLink); | 563 checkCustomDataSourceParentLink(o.parentLink); |
564 checkUnnamed298(o.profilesLinked); | 564 checkUnnamed1061(o.profilesLinked); |
565 unittest.expect(o.selfLink, unittest.equals('foo')); | 565 unittest.expect(o.selfLink, unittest.equals('foo')); |
566 unittest.expect(o.type, unittest.equals('foo')); | 566 unittest.expect(o.type, unittest.equals('foo')); |
567 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 567 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
568 unittest.expect(o.uploadType, unittest.equals('foo')); | 568 unittest.expect(o.uploadType, unittest.equals('foo')); |
569 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 569 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
570 } | 570 } |
571 buildCounterCustomDataSource--; | 571 buildCounterCustomDataSource--; |
572 } | 572 } |
573 | 573 |
574 buildUnnamed299() { | 574 buildUnnamed1062() { |
575 var o = new core.List<api.CustomDataSource>(); | 575 var o = new core.List<api.CustomDataSource>(); |
576 o.add(buildCustomDataSource()); | 576 o.add(buildCustomDataSource()); |
577 o.add(buildCustomDataSource()); | 577 o.add(buildCustomDataSource()); |
578 return o; | 578 return o; |
579 } | 579 } |
580 | 580 |
581 checkUnnamed299(core.List<api.CustomDataSource> o) { | 581 checkUnnamed1062(core.List<api.CustomDataSource> o) { |
582 unittest.expect(o, unittest.hasLength(2)); | 582 unittest.expect(o, unittest.hasLength(2)); |
583 checkCustomDataSource(o[0]); | 583 checkCustomDataSource(o[0]); |
584 checkCustomDataSource(o[1]); | 584 checkCustomDataSource(o[1]); |
585 } | 585 } |
586 | 586 |
587 core.int buildCounterCustomDataSources = 0; | 587 core.int buildCounterCustomDataSources = 0; |
588 buildCustomDataSources() { | 588 buildCustomDataSources() { |
589 var o = new api.CustomDataSources(); | 589 var o = new api.CustomDataSources(); |
590 buildCounterCustomDataSources++; | 590 buildCounterCustomDataSources++; |
591 if (buildCounterCustomDataSources < 3) { | 591 if (buildCounterCustomDataSources < 3) { |
592 o.items = buildUnnamed299(); | 592 o.items = buildUnnamed1062(); |
593 o.itemsPerPage = 42; | 593 o.itemsPerPage = 42; |
594 o.kind = "foo"; | 594 o.kind = "foo"; |
595 o.nextLink = "foo"; | 595 o.nextLink = "foo"; |
596 o.previousLink = "foo"; | 596 o.previousLink = "foo"; |
597 o.startIndex = 42; | 597 o.startIndex = 42; |
598 o.totalResults = 42; | 598 o.totalResults = 42; |
599 o.username = "foo"; | 599 o.username = "foo"; |
600 } | 600 } |
601 buildCounterCustomDataSources--; | 601 buildCounterCustomDataSources--; |
602 return o; | 602 return o; |
603 } | 603 } |
604 | 604 |
605 checkCustomDataSources(api.CustomDataSources o) { | 605 checkCustomDataSources(api.CustomDataSources o) { |
606 buildCounterCustomDataSources++; | 606 buildCounterCustomDataSources++; |
607 if (buildCounterCustomDataSources < 3) { | 607 if (buildCounterCustomDataSources < 3) { |
608 checkUnnamed299(o.items); | 608 checkUnnamed1062(o.items); |
609 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 609 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
610 unittest.expect(o.kind, unittest.equals('foo')); | 610 unittest.expect(o.kind, unittest.equals('foo')); |
611 unittest.expect(o.nextLink, unittest.equals('foo')); | 611 unittest.expect(o.nextLink, unittest.equals('foo')); |
612 unittest.expect(o.previousLink, unittest.equals('foo')); | 612 unittest.expect(o.previousLink, unittest.equals('foo')); |
613 unittest.expect(o.startIndex, unittest.equals(42)); | 613 unittest.expect(o.startIndex, unittest.equals(42)); |
614 unittest.expect(o.totalResults, unittest.equals(42)); | 614 unittest.expect(o.totalResults, unittest.equals(42)); |
615 unittest.expect(o.username, unittest.equals('foo')); | 615 unittest.expect(o.username, unittest.equals('foo')); |
616 } | 616 } |
617 buildCounterCustomDataSources--; | 617 buildCounterCustomDataSources--; |
618 } | 618 } |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 unittest.expect(o.name, unittest.equals('foo')); | 672 unittest.expect(o.name, unittest.equals('foo')); |
673 checkCustomDimensionParentLink(o.parentLink); | 673 checkCustomDimensionParentLink(o.parentLink); |
674 unittest.expect(o.scope, unittest.equals('foo')); | 674 unittest.expect(o.scope, unittest.equals('foo')); |
675 unittest.expect(o.selfLink, unittest.equals('foo')); | 675 unittest.expect(o.selfLink, unittest.equals('foo')); |
676 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 676 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
677 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 677 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
678 } | 678 } |
679 buildCounterCustomDimension--; | 679 buildCounterCustomDimension--; |
680 } | 680 } |
681 | 681 |
682 buildUnnamed300() { | 682 buildUnnamed1063() { |
683 var o = new core.List<api.CustomDimension>(); | 683 var o = new core.List<api.CustomDimension>(); |
684 o.add(buildCustomDimension()); | 684 o.add(buildCustomDimension()); |
685 o.add(buildCustomDimension()); | 685 o.add(buildCustomDimension()); |
686 return o; | 686 return o; |
687 } | 687 } |
688 | 688 |
689 checkUnnamed300(core.List<api.CustomDimension> o) { | 689 checkUnnamed1063(core.List<api.CustomDimension> o) { |
690 unittest.expect(o, unittest.hasLength(2)); | 690 unittest.expect(o, unittest.hasLength(2)); |
691 checkCustomDimension(o[0]); | 691 checkCustomDimension(o[0]); |
692 checkCustomDimension(o[1]); | 692 checkCustomDimension(o[1]); |
693 } | 693 } |
694 | 694 |
695 core.int buildCounterCustomDimensions = 0; | 695 core.int buildCounterCustomDimensions = 0; |
696 buildCustomDimensions() { | 696 buildCustomDimensions() { |
697 var o = new api.CustomDimensions(); | 697 var o = new api.CustomDimensions(); |
698 buildCounterCustomDimensions++; | 698 buildCounterCustomDimensions++; |
699 if (buildCounterCustomDimensions < 3) { | 699 if (buildCounterCustomDimensions < 3) { |
700 o.items = buildUnnamed300(); | 700 o.items = buildUnnamed1063(); |
701 o.itemsPerPage = 42; | 701 o.itemsPerPage = 42; |
702 o.kind = "foo"; | 702 o.kind = "foo"; |
703 o.nextLink = "foo"; | 703 o.nextLink = "foo"; |
704 o.previousLink = "foo"; | 704 o.previousLink = "foo"; |
705 o.startIndex = 42; | 705 o.startIndex = 42; |
706 o.totalResults = 42; | 706 o.totalResults = 42; |
707 o.username = "foo"; | 707 o.username = "foo"; |
708 } | 708 } |
709 buildCounterCustomDimensions--; | 709 buildCounterCustomDimensions--; |
710 return o; | 710 return o; |
711 } | 711 } |
712 | 712 |
713 checkCustomDimensions(api.CustomDimensions o) { | 713 checkCustomDimensions(api.CustomDimensions o) { |
714 buildCounterCustomDimensions++; | 714 buildCounterCustomDimensions++; |
715 if (buildCounterCustomDimensions < 3) { | 715 if (buildCounterCustomDimensions < 3) { |
716 checkUnnamed300(o.items); | 716 checkUnnamed1063(o.items); |
717 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 717 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
718 unittest.expect(o.kind, unittest.equals('foo')); | 718 unittest.expect(o.kind, unittest.equals('foo')); |
719 unittest.expect(o.nextLink, unittest.equals('foo')); | 719 unittest.expect(o.nextLink, unittest.equals('foo')); |
720 unittest.expect(o.previousLink, unittest.equals('foo')); | 720 unittest.expect(o.previousLink, unittest.equals('foo')); |
721 unittest.expect(o.startIndex, unittest.equals(42)); | 721 unittest.expect(o.startIndex, unittest.equals(42)); |
722 unittest.expect(o.totalResults, unittest.equals(42)); | 722 unittest.expect(o.totalResults, unittest.equals(42)); |
723 unittest.expect(o.username, unittest.equals('foo')); | 723 unittest.expect(o.username, unittest.equals('foo')); |
724 } | 724 } |
725 buildCounterCustomDimensions--; | 725 buildCounterCustomDimensions--; |
726 } | 726 } |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
786 checkCustomMetricParentLink(o.parentLink); | 786 checkCustomMetricParentLink(o.parentLink); |
787 unittest.expect(o.scope, unittest.equals('foo')); | 787 unittest.expect(o.scope, unittest.equals('foo')); |
788 unittest.expect(o.selfLink, unittest.equals('foo')); | 788 unittest.expect(o.selfLink, unittest.equals('foo')); |
789 unittest.expect(o.type, unittest.equals('foo')); | 789 unittest.expect(o.type, unittest.equals('foo')); |
790 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 790 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
791 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 791 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
792 } | 792 } |
793 buildCounterCustomMetric--; | 793 buildCounterCustomMetric--; |
794 } | 794 } |
795 | 795 |
796 buildUnnamed301() { | 796 buildUnnamed1064() { |
797 var o = new core.List<api.CustomMetric>(); | 797 var o = new core.List<api.CustomMetric>(); |
798 o.add(buildCustomMetric()); | 798 o.add(buildCustomMetric()); |
799 o.add(buildCustomMetric()); | 799 o.add(buildCustomMetric()); |
800 return o; | 800 return o; |
801 } | 801 } |
802 | 802 |
803 checkUnnamed301(core.List<api.CustomMetric> o) { | 803 checkUnnamed1064(core.List<api.CustomMetric> o) { |
804 unittest.expect(o, unittest.hasLength(2)); | 804 unittest.expect(o, unittest.hasLength(2)); |
805 checkCustomMetric(o[0]); | 805 checkCustomMetric(o[0]); |
806 checkCustomMetric(o[1]); | 806 checkCustomMetric(o[1]); |
807 } | 807 } |
808 | 808 |
809 core.int buildCounterCustomMetrics = 0; | 809 core.int buildCounterCustomMetrics = 0; |
810 buildCustomMetrics() { | 810 buildCustomMetrics() { |
811 var o = new api.CustomMetrics(); | 811 var o = new api.CustomMetrics(); |
812 buildCounterCustomMetrics++; | 812 buildCounterCustomMetrics++; |
813 if (buildCounterCustomMetrics < 3) { | 813 if (buildCounterCustomMetrics < 3) { |
814 o.items = buildUnnamed301(); | 814 o.items = buildUnnamed1064(); |
815 o.itemsPerPage = 42; | 815 o.itemsPerPage = 42; |
816 o.kind = "foo"; | 816 o.kind = "foo"; |
817 o.nextLink = "foo"; | 817 o.nextLink = "foo"; |
818 o.previousLink = "foo"; | 818 o.previousLink = "foo"; |
819 o.startIndex = 42; | 819 o.startIndex = 42; |
820 o.totalResults = 42; | 820 o.totalResults = 42; |
821 o.username = "foo"; | 821 o.username = "foo"; |
822 } | 822 } |
823 buildCounterCustomMetrics--; | 823 buildCounterCustomMetrics--; |
824 return o; | 824 return o; |
825 } | 825 } |
826 | 826 |
827 checkCustomMetrics(api.CustomMetrics o) { | 827 checkCustomMetrics(api.CustomMetrics o) { |
828 buildCounterCustomMetrics++; | 828 buildCounterCustomMetrics++; |
829 if (buildCounterCustomMetrics < 3) { | 829 if (buildCounterCustomMetrics < 3) { |
830 checkUnnamed301(o.items); | 830 checkUnnamed1064(o.items); |
831 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 831 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
832 unittest.expect(o.kind, unittest.equals('foo')); | 832 unittest.expect(o.kind, unittest.equals('foo')); |
833 unittest.expect(o.nextLink, unittest.equals('foo')); | 833 unittest.expect(o.nextLink, unittest.equals('foo')); |
834 unittest.expect(o.previousLink, unittest.equals('foo')); | 834 unittest.expect(o.previousLink, unittest.equals('foo')); |
835 unittest.expect(o.startIndex, unittest.equals(42)); | 835 unittest.expect(o.startIndex, unittest.equals(42)); |
836 unittest.expect(o.totalResults, unittest.equals(42)); | 836 unittest.expect(o.totalResults, unittest.equals(42)); |
837 unittest.expect(o.username, unittest.equals('foo')); | 837 unittest.expect(o.username, unittest.equals('foo')); |
838 } | 838 } |
839 buildCounterCustomMetrics--; | 839 buildCounterCustomMetrics--; |
840 } | 840 } |
841 | 841 |
842 buildUnnamed302() { | 842 buildUnnamed1065() { |
843 var o = new core.List<api.AdWordsAccount>(); | 843 var o = new core.List<api.AdWordsAccount>(); |
844 o.add(buildAdWordsAccount()); | 844 o.add(buildAdWordsAccount()); |
845 o.add(buildAdWordsAccount()); | 845 o.add(buildAdWordsAccount()); |
846 return o; | 846 return o; |
847 } | 847 } |
848 | 848 |
849 checkUnnamed302(core.List<api.AdWordsAccount> o) { | 849 checkUnnamed1065(core.List<api.AdWordsAccount> o) { |
850 unittest.expect(o, unittest.hasLength(2)); | 850 unittest.expect(o, unittest.hasLength(2)); |
851 checkAdWordsAccount(o[0]); | 851 checkAdWordsAccount(o[0]); |
852 checkAdWordsAccount(o[1]); | 852 checkAdWordsAccount(o[1]); |
853 } | 853 } |
854 | 854 |
855 core.int buildCounterEntityAdWordsLinkEntity = 0; | 855 core.int buildCounterEntityAdWordsLinkEntity = 0; |
856 buildEntityAdWordsLinkEntity() { | 856 buildEntityAdWordsLinkEntity() { |
857 var o = new api.EntityAdWordsLinkEntity(); | 857 var o = new api.EntityAdWordsLinkEntity(); |
858 buildCounterEntityAdWordsLinkEntity++; | 858 buildCounterEntityAdWordsLinkEntity++; |
859 if (buildCounterEntityAdWordsLinkEntity < 3) { | 859 if (buildCounterEntityAdWordsLinkEntity < 3) { |
860 o.webPropertyRef = buildWebPropertyRef(); | 860 o.webPropertyRef = buildWebPropertyRef(); |
861 } | 861 } |
862 buildCounterEntityAdWordsLinkEntity--; | 862 buildCounterEntityAdWordsLinkEntity--; |
863 return o; | 863 return o; |
864 } | 864 } |
865 | 865 |
866 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { | 866 checkEntityAdWordsLinkEntity(api.EntityAdWordsLinkEntity o) { |
867 buildCounterEntityAdWordsLinkEntity++; | 867 buildCounterEntityAdWordsLinkEntity++; |
868 if (buildCounterEntityAdWordsLinkEntity < 3) { | 868 if (buildCounterEntityAdWordsLinkEntity < 3) { |
869 checkWebPropertyRef(o.webPropertyRef); | 869 checkWebPropertyRef(o.webPropertyRef); |
870 } | 870 } |
871 buildCounterEntityAdWordsLinkEntity--; | 871 buildCounterEntityAdWordsLinkEntity--; |
872 } | 872 } |
873 | 873 |
874 buildUnnamed303() { | 874 buildUnnamed1066() { |
875 var o = new core.List<core.String>(); | 875 var o = new core.List<core.String>(); |
876 o.add("foo"); | 876 o.add("foo"); |
877 o.add("foo"); | 877 o.add("foo"); |
878 return o; | 878 return o; |
879 } | 879 } |
880 | 880 |
881 checkUnnamed303(core.List<core.String> o) { | 881 checkUnnamed1066(core.List<core.String> o) { |
882 unittest.expect(o, unittest.hasLength(2)); | 882 unittest.expect(o, unittest.hasLength(2)); |
883 unittest.expect(o[0], unittest.equals('foo')); | 883 unittest.expect(o[0], unittest.equals('foo')); |
884 unittest.expect(o[1], unittest.equals('foo')); | 884 unittest.expect(o[1], unittest.equals('foo')); |
885 } | 885 } |
886 | 886 |
887 core.int buildCounterEntityAdWordsLink = 0; | 887 core.int buildCounterEntityAdWordsLink = 0; |
888 buildEntityAdWordsLink() { | 888 buildEntityAdWordsLink() { |
889 var o = new api.EntityAdWordsLink(); | 889 var o = new api.EntityAdWordsLink(); |
890 buildCounterEntityAdWordsLink++; | 890 buildCounterEntityAdWordsLink++; |
891 if (buildCounterEntityAdWordsLink < 3) { | 891 if (buildCounterEntityAdWordsLink < 3) { |
892 o.adWordsAccounts = buildUnnamed302(); | 892 o.adWordsAccounts = buildUnnamed1065(); |
893 o.entity = buildEntityAdWordsLinkEntity(); | 893 o.entity = buildEntityAdWordsLinkEntity(); |
894 o.id = "foo"; | 894 o.id = "foo"; |
895 o.kind = "foo"; | 895 o.kind = "foo"; |
896 o.name = "foo"; | 896 o.name = "foo"; |
897 o.profileIds = buildUnnamed303(); | 897 o.profileIds = buildUnnamed1066(); |
898 o.selfLink = "foo"; | 898 o.selfLink = "foo"; |
899 } | 899 } |
900 buildCounterEntityAdWordsLink--; | 900 buildCounterEntityAdWordsLink--; |
901 return o; | 901 return o; |
902 } | 902 } |
903 | 903 |
904 checkEntityAdWordsLink(api.EntityAdWordsLink o) { | 904 checkEntityAdWordsLink(api.EntityAdWordsLink o) { |
905 buildCounterEntityAdWordsLink++; | 905 buildCounterEntityAdWordsLink++; |
906 if (buildCounterEntityAdWordsLink < 3) { | 906 if (buildCounterEntityAdWordsLink < 3) { |
907 checkUnnamed302(o.adWordsAccounts); | 907 checkUnnamed1065(o.adWordsAccounts); |
908 checkEntityAdWordsLinkEntity(o.entity); | 908 checkEntityAdWordsLinkEntity(o.entity); |
909 unittest.expect(o.id, unittest.equals('foo')); | 909 unittest.expect(o.id, unittest.equals('foo')); |
910 unittest.expect(o.kind, unittest.equals('foo')); | 910 unittest.expect(o.kind, unittest.equals('foo')); |
911 unittest.expect(o.name, unittest.equals('foo')); | 911 unittest.expect(o.name, unittest.equals('foo')); |
912 checkUnnamed303(o.profileIds); | 912 checkUnnamed1066(o.profileIds); |
913 unittest.expect(o.selfLink, unittest.equals('foo')); | 913 unittest.expect(o.selfLink, unittest.equals('foo')); |
914 } | 914 } |
915 buildCounterEntityAdWordsLink--; | 915 buildCounterEntityAdWordsLink--; |
916 } | 916 } |
917 | 917 |
918 buildUnnamed304() { | 918 buildUnnamed1067() { |
919 var o = new core.List<api.EntityAdWordsLink>(); | 919 var o = new core.List<api.EntityAdWordsLink>(); |
920 o.add(buildEntityAdWordsLink()); | 920 o.add(buildEntityAdWordsLink()); |
921 o.add(buildEntityAdWordsLink()); | 921 o.add(buildEntityAdWordsLink()); |
922 return o; | 922 return o; |
923 } | 923 } |
924 | 924 |
925 checkUnnamed304(core.List<api.EntityAdWordsLink> o) { | 925 checkUnnamed1067(core.List<api.EntityAdWordsLink> o) { |
926 unittest.expect(o, unittest.hasLength(2)); | 926 unittest.expect(o, unittest.hasLength(2)); |
927 checkEntityAdWordsLink(o[0]); | 927 checkEntityAdWordsLink(o[0]); |
928 checkEntityAdWordsLink(o[1]); | 928 checkEntityAdWordsLink(o[1]); |
929 } | 929 } |
930 | 930 |
931 core.int buildCounterEntityAdWordsLinks = 0; | 931 core.int buildCounterEntityAdWordsLinks = 0; |
932 buildEntityAdWordsLinks() { | 932 buildEntityAdWordsLinks() { |
933 var o = new api.EntityAdWordsLinks(); | 933 var o = new api.EntityAdWordsLinks(); |
934 buildCounterEntityAdWordsLinks++; | 934 buildCounterEntityAdWordsLinks++; |
935 if (buildCounterEntityAdWordsLinks < 3) { | 935 if (buildCounterEntityAdWordsLinks < 3) { |
936 o.items = buildUnnamed304(); | 936 o.items = buildUnnamed1067(); |
937 o.itemsPerPage = 42; | 937 o.itemsPerPage = 42; |
938 o.kind = "foo"; | 938 o.kind = "foo"; |
939 o.nextLink = "foo"; | 939 o.nextLink = "foo"; |
940 o.previousLink = "foo"; | 940 o.previousLink = "foo"; |
941 o.startIndex = 42; | 941 o.startIndex = 42; |
942 o.totalResults = 42; | 942 o.totalResults = 42; |
943 } | 943 } |
944 buildCounterEntityAdWordsLinks--; | 944 buildCounterEntityAdWordsLinks--; |
945 return o; | 945 return o; |
946 } | 946 } |
947 | 947 |
948 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { | 948 checkEntityAdWordsLinks(api.EntityAdWordsLinks o) { |
949 buildCounterEntityAdWordsLinks++; | 949 buildCounterEntityAdWordsLinks++; |
950 if (buildCounterEntityAdWordsLinks < 3) { | 950 if (buildCounterEntityAdWordsLinks < 3) { |
951 checkUnnamed304(o.items); | 951 checkUnnamed1067(o.items); |
952 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 952 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
953 unittest.expect(o.kind, unittest.equals('foo')); | 953 unittest.expect(o.kind, unittest.equals('foo')); |
954 unittest.expect(o.nextLink, unittest.equals('foo')); | 954 unittest.expect(o.nextLink, unittest.equals('foo')); |
955 unittest.expect(o.previousLink, unittest.equals('foo')); | 955 unittest.expect(o.previousLink, unittest.equals('foo')); |
956 unittest.expect(o.startIndex, unittest.equals(42)); | 956 unittest.expect(o.startIndex, unittest.equals(42)); |
957 unittest.expect(o.totalResults, unittest.equals(42)); | 957 unittest.expect(o.totalResults, unittest.equals(42)); |
958 } | 958 } |
959 buildCounterEntityAdWordsLinks--; | 959 buildCounterEntityAdWordsLinks--; |
960 } | 960 } |
961 | 961 |
(...skipping 13 matching lines...) Expand all Loading... |
975 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { | 975 checkEntityUserLinkEntity(api.EntityUserLinkEntity o) { |
976 buildCounterEntityUserLinkEntity++; | 976 buildCounterEntityUserLinkEntity++; |
977 if (buildCounterEntityUserLinkEntity < 3) { | 977 if (buildCounterEntityUserLinkEntity < 3) { |
978 checkAccountRef(o.accountRef); | 978 checkAccountRef(o.accountRef); |
979 checkProfileRef(o.profileRef); | 979 checkProfileRef(o.profileRef); |
980 checkWebPropertyRef(o.webPropertyRef); | 980 checkWebPropertyRef(o.webPropertyRef); |
981 } | 981 } |
982 buildCounterEntityUserLinkEntity--; | 982 buildCounterEntityUserLinkEntity--; |
983 } | 983 } |
984 | 984 |
985 buildUnnamed305() { | 985 buildUnnamed1068() { |
986 var o = new core.List<core.String>(); | 986 var o = new core.List<core.String>(); |
987 o.add("foo"); | 987 o.add("foo"); |
988 o.add("foo"); | 988 o.add("foo"); |
989 return o; | 989 return o; |
990 } | 990 } |
991 | 991 |
992 checkUnnamed305(core.List<core.String> o) { | 992 checkUnnamed1068(core.List<core.String> o) { |
993 unittest.expect(o, unittest.hasLength(2)); | 993 unittest.expect(o, unittest.hasLength(2)); |
994 unittest.expect(o[0], unittest.equals('foo')); | 994 unittest.expect(o[0], unittest.equals('foo')); |
995 unittest.expect(o[1], unittest.equals('foo')); | 995 unittest.expect(o[1], unittest.equals('foo')); |
996 } | 996 } |
997 | 997 |
998 buildUnnamed306() { | 998 buildUnnamed1069() { |
999 var o = new core.List<core.String>(); | 999 var o = new core.List<core.String>(); |
1000 o.add("foo"); | 1000 o.add("foo"); |
1001 o.add("foo"); | 1001 o.add("foo"); |
1002 return o; | 1002 return o; |
1003 } | 1003 } |
1004 | 1004 |
1005 checkUnnamed306(core.List<core.String> o) { | 1005 checkUnnamed1069(core.List<core.String> o) { |
1006 unittest.expect(o, unittest.hasLength(2)); | 1006 unittest.expect(o, unittest.hasLength(2)); |
1007 unittest.expect(o[0], unittest.equals('foo')); | 1007 unittest.expect(o[0], unittest.equals('foo')); |
1008 unittest.expect(o[1], unittest.equals('foo')); | 1008 unittest.expect(o[1], unittest.equals('foo')); |
1009 } | 1009 } |
1010 | 1010 |
1011 core.int buildCounterEntityUserLinkPermissions = 0; | 1011 core.int buildCounterEntityUserLinkPermissions = 0; |
1012 buildEntityUserLinkPermissions() { | 1012 buildEntityUserLinkPermissions() { |
1013 var o = new api.EntityUserLinkPermissions(); | 1013 var o = new api.EntityUserLinkPermissions(); |
1014 buildCounterEntityUserLinkPermissions++; | 1014 buildCounterEntityUserLinkPermissions++; |
1015 if (buildCounterEntityUserLinkPermissions < 3) { | 1015 if (buildCounterEntityUserLinkPermissions < 3) { |
1016 o.effective = buildUnnamed305(); | 1016 o.effective = buildUnnamed1068(); |
1017 o.local = buildUnnamed306(); | 1017 o.local = buildUnnamed1069(); |
1018 } | 1018 } |
1019 buildCounterEntityUserLinkPermissions--; | 1019 buildCounterEntityUserLinkPermissions--; |
1020 return o; | 1020 return o; |
1021 } | 1021 } |
1022 | 1022 |
1023 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { | 1023 checkEntityUserLinkPermissions(api.EntityUserLinkPermissions o) { |
1024 buildCounterEntityUserLinkPermissions++; | 1024 buildCounterEntityUserLinkPermissions++; |
1025 if (buildCounterEntityUserLinkPermissions < 3) { | 1025 if (buildCounterEntityUserLinkPermissions < 3) { |
1026 checkUnnamed305(o.effective); | 1026 checkUnnamed1068(o.effective); |
1027 checkUnnamed306(o.local); | 1027 checkUnnamed1069(o.local); |
1028 } | 1028 } |
1029 buildCounterEntityUserLinkPermissions--; | 1029 buildCounterEntityUserLinkPermissions--; |
1030 } | 1030 } |
1031 | 1031 |
1032 core.int buildCounterEntityUserLink = 0; | 1032 core.int buildCounterEntityUserLink = 0; |
1033 buildEntityUserLink() { | 1033 buildEntityUserLink() { |
1034 var o = new api.EntityUserLink(); | 1034 var o = new api.EntityUserLink(); |
1035 buildCounterEntityUserLink++; | 1035 buildCounterEntityUserLink++; |
1036 if (buildCounterEntityUserLink < 3) { | 1036 if (buildCounterEntityUserLink < 3) { |
1037 o.entity = buildEntityUserLinkEntity(); | 1037 o.entity = buildEntityUserLinkEntity(); |
(...skipping 13 matching lines...) Expand all Loading... |
1051 checkEntityUserLinkEntity(o.entity); | 1051 checkEntityUserLinkEntity(o.entity); |
1052 unittest.expect(o.id, unittest.equals('foo')); | 1052 unittest.expect(o.id, unittest.equals('foo')); |
1053 unittest.expect(o.kind, unittest.equals('foo')); | 1053 unittest.expect(o.kind, unittest.equals('foo')); |
1054 checkEntityUserLinkPermissions(o.permissions); | 1054 checkEntityUserLinkPermissions(o.permissions); |
1055 unittest.expect(o.selfLink, unittest.equals('foo')); | 1055 unittest.expect(o.selfLink, unittest.equals('foo')); |
1056 checkUserRef(o.userRef); | 1056 checkUserRef(o.userRef); |
1057 } | 1057 } |
1058 buildCounterEntityUserLink--; | 1058 buildCounterEntityUserLink--; |
1059 } | 1059 } |
1060 | 1060 |
1061 buildUnnamed307() { | 1061 buildUnnamed1070() { |
1062 var o = new core.List<api.EntityUserLink>(); | 1062 var o = new core.List<api.EntityUserLink>(); |
1063 o.add(buildEntityUserLink()); | 1063 o.add(buildEntityUserLink()); |
1064 o.add(buildEntityUserLink()); | 1064 o.add(buildEntityUserLink()); |
1065 return o; | 1065 return o; |
1066 } | 1066 } |
1067 | 1067 |
1068 checkUnnamed307(core.List<api.EntityUserLink> o) { | 1068 checkUnnamed1070(core.List<api.EntityUserLink> o) { |
1069 unittest.expect(o, unittest.hasLength(2)); | 1069 unittest.expect(o, unittest.hasLength(2)); |
1070 checkEntityUserLink(o[0]); | 1070 checkEntityUserLink(o[0]); |
1071 checkEntityUserLink(o[1]); | 1071 checkEntityUserLink(o[1]); |
1072 } | 1072 } |
1073 | 1073 |
1074 core.int buildCounterEntityUserLinks = 0; | 1074 core.int buildCounterEntityUserLinks = 0; |
1075 buildEntityUserLinks() { | 1075 buildEntityUserLinks() { |
1076 var o = new api.EntityUserLinks(); | 1076 var o = new api.EntityUserLinks(); |
1077 buildCounterEntityUserLinks++; | 1077 buildCounterEntityUserLinks++; |
1078 if (buildCounterEntityUserLinks < 3) { | 1078 if (buildCounterEntityUserLinks < 3) { |
1079 o.items = buildUnnamed307(); | 1079 o.items = buildUnnamed1070(); |
1080 o.itemsPerPage = 42; | 1080 o.itemsPerPage = 42; |
1081 o.kind = "foo"; | 1081 o.kind = "foo"; |
1082 o.nextLink = "foo"; | 1082 o.nextLink = "foo"; |
1083 o.previousLink = "foo"; | 1083 o.previousLink = "foo"; |
1084 o.startIndex = 42; | 1084 o.startIndex = 42; |
1085 o.totalResults = 42; | 1085 o.totalResults = 42; |
1086 } | 1086 } |
1087 buildCounterEntityUserLinks--; | 1087 buildCounterEntityUserLinks--; |
1088 return o; | 1088 return o; |
1089 } | 1089 } |
1090 | 1090 |
1091 checkEntityUserLinks(api.EntityUserLinks o) { | 1091 checkEntityUserLinks(api.EntityUserLinks o) { |
1092 buildCounterEntityUserLinks++; | 1092 buildCounterEntityUserLinks++; |
1093 if (buildCounterEntityUserLinks < 3) { | 1093 if (buildCounterEntityUserLinks < 3) { |
1094 checkUnnamed307(o.items); | 1094 checkUnnamed1070(o.items); |
1095 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1095 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
1096 unittest.expect(o.kind, unittest.equals('foo')); | 1096 unittest.expect(o.kind, unittest.equals('foo')); |
1097 unittest.expect(o.nextLink, unittest.equals('foo')); | 1097 unittest.expect(o.nextLink, unittest.equals('foo')); |
1098 unittest.expect(o.previousLink, unittest.equals('foo')); | 1098 unittest.expect(o.previousLink, unittest.equals('foo')); |
1099 unittest.expect(o.startIndex, unittest.equals(42)); | 1099 unittest.expect(o.startIndex, unittest.equals(42)); |
1100 unittest.expect(o.totalResults, unittest.equals(42)); | 1100 unittest.expect(o.totalResults, unittest.equals(42)); |
1101 } | 1101 } |
1102 buildCounterEntityUserLinks--; | 1102 buildCounterEntityUserLinks--; |
1103 } | 1103 } |
1104 | 1104 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1143 if (buildCounterExperimentVariations < 3) { | 1143 if (buildCounterExperimentVariations < 3) { |
1144 unittest.expect(o.name, unittest.equals('foo')); | 1144 unittest.expect(o.name, unittest.equals('foo')); |
1145 unittest.expect(o.status, unittest.equals('foo')); | 1145 unittest.expect(o.status, unittest.equals('foo')); |
1146 unittest.expect(o.url, unittest.equals('foo')); | 1146 unittest.expect(o.url, unittest.equals('foo')); |
1147 unittest.expect(o.weight, unittest.equals(42.0)); | 1147 unittest.expect(o.weight, unittest.equals(42.0)); |
1148 unittest.expect(o.won, unittest.isTrue); | 1148 unittest.expect(o.won, unittest.isTrue); |
1149 } | 1149 } |
1150 buildCounterExperimentVariations--; | 1150 buildCounterExperimentVariations--; |
1151 } | 1151 } |
1152 | 1152 |
1153 buildUnnamed308() { | 1153 buildUnnamed1071() { |
1154 var o = new core.List<api.ExperimentVariations>(); | 1154 var o = new core.List<api.ExperimentVariations>(); |
1155 o.add(buildExperimentVariations()); | 1155 o.add(buildExperimentVariations()); |
1156 o.add(buildExperimentVariations()); | 1156 o.add(buildExperimentVariations()); |
1157 return o; | 1157 return o; |
1158 } | 1158 } |
1159 | 1159 |
1160 checkUnnamed308(core.List<api.ExperimentVariations> o) { | 1160 checkUnnamed1071(core.List<api.ExperimentVariations> o) { |
1161 unittest.expect(o, unittest.hasLength(2)); | 1161 unittest.expect(o, unittest.hasLength(2)); |
1162 checkExperimentVariations(o[0]); | 1162 checkExperimentVariations(o[0]); |
1163 checkExperimentVariations(o[1]); | 1163 checkExperimentVariations(o[1]); |
1164 } | 1164 } |
1165 | 1165 |
1166 core.int buildCounterExperiment = 0; | 1166 core.int buildCounterExperiment = 0; |
1167 buildExperiment() { | 1167 buildExperiment() { |
1168 var o = new api.Experiment(); | 1168 var o = new api.Experiment(); |
1169 buildCounterExperiment++; | 1169 buildCounterExperiment++; |
1170 if (buildCounterExperiment < 3) { | 1170 if (buildCounterExperiment < 3) { |
(...skipping 14 matching lines...) Expand all Loading... |
1185 o.profileId = "foo"; | 1185 o.profileId = "foo"; |
1186 o.reasonExperimentEnded = "foo"; | 1186 o.reasonExperimentEnded = "foo"; |
1187 o.rewriteVariationUrlsAsOriginal = true; | 1187 o.rewriteVariationUrlsAsOriginal = true; |
1188 o.selfLink = "foo"; | 1188 o.selfLink = "foo"; |
1189 o.servingFramework = "foo"; | 1189 o.servingFramework = "foo"; |
1190 o.snippet = "foo"; | 1190 o.snippet = "foo"; |
1191 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); | 1191 o.startTime = core.DateTime.parse("2002-02-27T14:01:02"); |
1192 o.status = "foo"; | 1192 o.status = "foo"; |
1193 o.trafficCoverage = 42.0; | 1193 o.trafficCoverage = 42.0; |
1194 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); | 1194 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); |
1195 o.variations = buildUnnamed308(); | 1195 o.variations = buildUnnamed1071(); |
1196 o.webPropertyId = "foo"; | 1196 o.webPropertyId = "foo"; |
1197 o.winnerConfidenceLevel = 42.0; | 1197 o.winnerConfidenceLevel = 42.0; |
1198 o.winnerFound = true; | 1198 o.winnerFound = true; |
1199 } | 1199 } |
1200 buildCounterExperiment--; | 1200 buildCounterExperiment--; |
1201 return o; | 1201 return o; |
1202 } | 1202 } |
1203 | 1203 |
1204 checkExperiment(api.Experiment o) { | 1204 checkExperiment(api.Experiment o) { |
1205 buildCounterExperiment++; | 1205 buildCounterExperiment++; |
(...skipping 15 matching lines...) Expand all Loading... |
1221 unittest.expect(o.profileId, unittest.equals('foo')); | 1221 unittest.expect(o.profileId, unittest.equals('foo')); |
1222 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); | 1222 unittest.expect(o.reasonExperimentEnded, unittest.equals('foo')); |
1223 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); | 1223 unittest.expect(o.rewriteVariationUrlsAsOriginal, unittest.isTrue); |
1224 unittest.expect(o.selfLink, unittest.equals('foo')); | 1224 unittest.expect(o.selfLink, unittest.equals('foo')); |
1225 unittest.expect(o.servingFramework, unittest.equals('foo')); | 1225 unittest.expect(o.servingFramework, unittest.equals('foo')); |
1226 unittest.expect(o.snippet, unittest.equals('foo')); | 1226 unittest.expect(o.snippet, unittest.equals('foo')); |
1227 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); | 1227 unittest.expect(o.startTime, unittest.equals(core.DateTime.parse("2002-02-27
T14:01:02"))); |
1228 unittest.expect(o.status, unittest.equals('foo')); | 1228 unittest.expect(o.status, unittest.equals('foo')); |
1229 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); | 1229 unittest.expect(o.trafficCoverage, unittest.equals(42.0)); |
1230 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 1230 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
1231 checkUnnamed308(o.variations); | 1231 checkUnnamed1071(o.variations); |
1232 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1232 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
1233 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); | 1233 unittest.expect(o.winnerConfidenceLevel, unittest.equals(42.0)); |
1234 unittest.expect(o.winnerFound, unittest.isTrue); | 1234 unittest.expect(o.winnerFound, unittest.isTrue); |
1235 } | 1235 } |
1236 buildCounterExperiment--; | 1236 buildCounterExperiment--; |
1237 } | 1237 } |
1238 | 1238 |
1239 buildUnnamed309() { | 1239 buildUnnamed1072() { |
1240 var o = new core.List<api.Experiment>(); | 1240 var o = new core.List<api.Experiment>(); |
1241 o.add(buildExperiment()); | 1241 o.add(buildExperiment()); |
1242 o.add(buildExperiment()); | 1242 o.add(buildExperiment()); |
1243 return o; | 1243 return o; |
1244 } | 1244 } |
1245 | 1245 |
1246 checkUnnamed309(core.List<api.Experiment> o) { | 1246 checkUnnamed1072(core.List<api.Experiment> o) { |
1247 unittest.expect(o, unittest.hasLength(2)); | 1247 unittest.expect(o, unittest.hasLength(2)); |
1248 checkExperiment(o[0]); | 1248 checkExperiment(o[0]); |
1249 checkExperiment(o[1]); | 1249 checkExperiment(o[1]); |
1250 } | 1250 } |
1251 | 1251 |
1252 core.int buildCounterExperiments = 0; | 1252 core.int buildCounterExperiments = 0; |
1253 buildExperiments() { | 1253 buildExperiments() { |
1254 var o = new api.Experiments(); | 1254 var o = new api.Experiments(); |
1255 buildCounterExperiments++; | 1255 buildCounterExperiments++; |
1256 if (buildCounterExperiments < 3) { | 1256 if (buildCounterExperiments < 3) { |
1257 o.items = buildUnnamed309(); | 1257 o.items = buildUnnamed1072(); |
1258 o.itemsPerPage = 42; | 1258 o.itemsPerPage = 42; |
1259 o.kind = "foo"; | 1259 o.kind = "foo"; |
1260 o.nextLink = "foo"; | 1260 o.nextLink = "foo"; |
1261 o.previousLink = "foo"; | 1261 o.previousLink = "foo"; |
1262 o.startIndex = 42; | 1262 o.startIndex = 42; |
1263 o.totalResults = 42; | 1263 o.totalResults = 42; |
1264 o.username = "foo"; | 1264 o.username = "foo"; |
1265 } | 1265 } |
1266 buildCounterExperiments--; | 1266 buildCounterExperiments--; |
1267 return o; | 1267 return o; |
1268 } | 1268 } |
1269 | 1269 |
1270 checkExperiments(api.Experiments o) { | 1270 checkExperiments(api.Experiments o) { |
1271 buildCounterExperiments++; | 1271 buildCounterExperiments++; |
1272 if (buildCounterExperiments < 3) { | 1272 if (buildCounterExperiments < 3) { |
1273 checkUnnamed309(o.items); | 1273 checkUnnamed1072(o.items); |
1274 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1274 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
1275 unittest.expect(o.kind, unittest.equals('foo')); | 1275 unittest.expect(o.kind, unittest.equals('foo')); |
1276 unittest.expect(o.nextLink, unittest.equals('foo')); | 1276 unittest.expect(o.nextLink, unittest.equals('foo')); |
1277 unittest.expect(o.previousLink, unittest.equals('foo')); | 1277 unittest.expect(o.previousLink, unittest.equals('foo')); |
1278 unittest.expect(o.startIndex, unittest.equals(42)); | 1278 unittest.expect(o.startIndex, unittest.equals(42)); |
1279 unittest.expect(o.totalResults, unittest.equals(42)); | 1279 unittest.expect(o.totalResults, unittest.equals(42)); |
1280 unittest.expect(o.username, unittest.equals('foo')); | 1280 unittest.expect(o.username, unittest.equals('foo')); |
1281 } | 1281 } |
1282 buildCounterExperiments--; | 1282 buildCounterExperiments--; |
1283 } | 1283 } |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1511 if (buildCounterFilterRef < 3) { | 1511 if (buildCounterFilterRef < 3) { |
1512 unittest.expect(o.accountId, unittest.equals('foo')); | 1512 unittest.expect(o.accountId, unittest.equals('foo')); |
1513 unittest.expect(o.href, unittest.equals('foo')); | 1513 unittest.expect(o.href, unittest.equals('foo')); |
1514 unittest.expect(o.id, unittest.equals('foo')); | 1514 unittest.expect(o.id, unittest.equals('foo')); |
1515 unittest.expect(o.kind, unittest.equals('foo')); | 1515 unittest.expect(o.kind, unittest.equals('foo')); |
1516 unittest.expect(o.name, unittest.equals('foo')); | 1516 unittest.expect(o.name, unittest.equals('foo')); |
1517 } | 1517 } |
1518 buildCounterFilterRef--; | 1518 buildCounterFilterRef--; |
1519 } | 1519 } |
1520 | 1520 |
1521 buildUnnamed310() { | 1521 buildUnnamed1073() { |
1522 var o = new core.List<api.Filter>(); | 1522 var o = new core.List<api.Filter>(); |
1523 o.add(buildFilter()); | 1523 o.add(buildFilter()); |
1524 o.add(buildFilter()); | 1524 o.add(buildFilter()); |
1525 return o; | 1525 return o; |
1526 } | 1526 } |
1527 | 1527 |
1528 checkUnnamed310(core.List<api.Filter> o) { | 1528 checkUnnamed1073(core.List<api.Filter> o) { |
1529 unittest.expect(o, unittest.hasLength(2)); | 1529 unittest.expect(o, unittest.hasLength(2)); |
1530 checkFilter(o[0]); | 1530 checkFilter(o[0]); |
1531 checkFilter(o[1]); | 1531 checkFilter(o[1]); |
1532 } | 1532 } |
1533 | 1533 |
1534 core.int buildCounterFilters = 0; | 1534 core.int buildCounterFilters = 0; |
1535 buildFilters() { | 1535 buildFilters() { |
1536 var o = new api.Filters(); | 1536 var o = new api.Filters(); |
1537 buildCounterFilters++; | 1537 buildCounterFilters++; |
1538 if (buildCounterFilters < 3) { | 1538 if (buildCounterFilters < 3) { |
1539 o.items = buildUnnamed310(); | 1539 o.items = buildUnnamed1073(); |
1540 o.itemsPerPage = 42; | 1540 o.itemsPerPage = 42; |
1541 o.kind = "foo"; | 1541 o.kind = "foo"; |
1542 o.nextLink = "foo"; | 1542 o.nextLink = "foo"; |
1543 o.previousLink = "foo"; | 1543 o.previousLink = "foo"; |
1544 o.startIndex = 42; | 1544 o.startIndex = 42; |
1545 o.totalResults = 42; | 1545 o.totalResults = 42; |
1546 o.username = "foo"; | 1546 o.username = "foo"; |
1547 } | 1547 } |
1548 buildCounterFilters--; | 1548 buildCounterFilters--; |
1549 return o; | 1549 return o; |
1550 } | 1550 } |
1551 | 1551 |
1552 checkFilters(api.Filters o) { | 1552 checkFilters(api.Filters o) { |
1553 buildCounterFilters++; | 1553 buildCounterFilters++; |
1554 if (buildCounterFilters < 3) { | 1554 if (buildCounterFilters < 3) { |
1555 checkUnnamed310(o.items); | 1555 checkUnnamed1073(o.items); |
1556 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1556 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
1557 unittest.expect(o.kind, unittest.equals('foo')); | 1557 unittest.expect(o.kind, unittest.equals('foo')); |
1558 unittest.expect(o.nextLink, unittest.equals('foo')); | 1558 unittest.expect(o.nextLink, unittest.equals('foo')); |
1559 unittest.expect(o.previousLink, unittest.equals('foo')); | 1559 unittest.expect(o.previousLink, unittest.equals('foo')); |
1560 unittest.expect(o.startIndex, unittest.equals(42)); | 1560 unittest.expect(o.startIndex, unittest.equals(42)); |
1561 unittest.expect(o.totalResults, unittest.equals(42)); | 1561 unittest.expect(o.totalResults, unittest.equals(42)); |
1562 unittest.expect(o.username, unittest.equals('foo')); | 1562 unittest.expect(o.username, unittest.equals('foo')); |
1563 } | 1563 } |
1564 buildCounterFilters--; | 1564 buildCounterFilters--; |
1565 } | 1565 } |
(...skipping 14 matching lines...) Expand all Loading... |
1580 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { | 1580 checkGaDataColumnHeaders(api.GaDataColumnHeaders o) { |
1581 buildCounterGaDataColumnHeaders++; | 1581 buildCounterGaDataColumnHeaders++; |
1582 if (buildCounterGaDataColumnHeaders < 3) { | 1582 if (buildCounterGaDataColumnHeaders < 3) { |
1583 unittest.expect(o.columnType, unittest.equals('foo')); | 1583 unittest.expect(o.columnType, unittest.equals('foo')); |
1584 unittest.expect(o.dataType, unittest.equals('foo')); | 1584 unittest.expect(o.dataType, unittest.equals('foo')); |
1585 unittest.expect(o.name, unittest.equals('foo')); | 1585 unittest.expect(o.name, unittest.equals('foo')); |
1586 } | 1586 } |
1587 buildCounterGaDataColumnHeaders--; | 1587 buildCounterGaDataColumnHeaders--; |
1588 } | 1588 } |
1589 | 1589 |
1590 buildUnnamed311() { | 1590 buildUnnamed1074() { |
1591 var o = new core.List<api.GaDataColumnHeaders>(); | 1591 var o = new core.List<api.GaDataColumnHeaders>(); |
1592 o.add(buildGaDataColumnHeaders()); | 1592 o.add(buildGaDataColumnHeaders()); |
1593 o.add(buildGaDataColumnHeaders()); | 1593 o.add(buildGaDataColumnHeaders()); |
1594 return o; | 1594 return o; |
1595 } | 1595 } |
1596 | 1596 |
1597 checkUnnamed311(core.List<api.GaDataColumnHeaders> o) { | 1597 checkUnnamed1074(core.List<api.GaDataColumnHeaders> o) { |
1598 unittest.expect(o, unittest.hasLength(2)); | 1598 unittest.expect(o, unittest.hasLength(2)); |
1599 checkGaDataColumnHeaders(o[0]); | 1599 checkGaDataColumnHeaders(o[0]); |
1600 checkGaDataColumnHeaders(o[1]); | 1600 checkGaDataColumnHeaders(o[1]); |
1601 } | 1601 } |
1602 | 1602 |
1603 core.int buildCounterGaDataDataTableCols = 0; | 1603 core.int buildCounterGaDataDataTableCols = 0; |
1604 buildGaDataDataTableCols() { | 1604 buildGaDataDataTableCols() { |
1605 var o = new api.GaDataDataTableCols(); | 1605 var o = new api.GaDataDataTableCols(); |
1606 buildCounterGaDataDataTableCols++; | 1606 buildCounterGaDataDataTableCols++; |
1607 if (buildCounterGaDataDataTableCols < 3) { | 1607 if (buildCounterGaDataDataTableCols < 3) { |
1608 o.id = "foo"; | 1608 o.id = "foo"; |
1609 o.label = "foo"; | 1609 o.label = "foo"; |
1610 o.type = "foo"; | 1610 o.type = "foo"; |
1611 } | 1611 } |
1612 buildCounterGaDataDataTableCols--; | 1612 buildCounterGaDataDataTableCols--; |
1613 return o; | 1613 return o; |
1614 } | 1614 } |
1615 | 1615 |
1616 checkGaDataDataTableCols(api.GaDataDataTableCols o) { | 1616 checkGaDataDataTableCols(api.GaDataDataTableCols o) { |
1617 buildCounterGaDataDataTableCols++; | 1617 buildCounterGaDataDataTableCols++; |
1618 if (buildCounterGaDataDataTableCols < 3) { | 1618 if (buildCounterGaDataDataTableCols < 3) { |
1619 unittest.expect(o.id, unittest.equals('foo')); | 1619 unittest.expect(o.id, unittest.equals('foo')); |
1620 unittest.expect(o.label, unittest.equals('foo')); | 1620 unittest.expect(o.label, unittest.equals('foo')); |
1621 unittest.expect(o.type, unittest.equals('foo')); | 1621 unittest.expect(o.type, unittest.equals('foo')); |
1622 } | 1622 } |
1623 buildCounterGaDataDataTableCols--; | 1623 buildCounterGaDataDataTableCols--; |
1624 } | 1624 } |
1625 | 1625 |
1626 buildUnnamed312() { | 1626 buildUnnamed1075() { |
1627 var o = new core.List<api.GaDataDataTableCols>(); | 1627 var o = new core.List<api.GaDataDataTableCols>(); |
1628 o.add(buildGaDataDataTableCols()); | 1628 o.add(buildGaDataDataTableCols()); |
1629 o.add(buildGaDataDataTableCols()); | 1629 o.add(buildGaDataDataTableCols()); |
1630 return o; | 1630 return o; |
1631 } | 1631 } |
1632 | 1632 |
1633 checkUnnamed312(core.List<api.GaDataDataTableCols> o) { | 1633 checkUnnamed1075(core.List<api.GaDataDataTableCols> o) { |
1634 unittest.expect(o, unittest.hasLength(2)); | 1634 unittest.expect(o, unittest.hasLength(2)); |
1635 checkGaDataDataTableCols(o[0]); | 1635 checkGaDataDataTableCols(o[0]); |
1636 checkGaDataDataTableCols(o[1]); | 1636 checkGaDataDataTableCols(o[1]); |
1637 } | 1637 } |
1638 | 1638 |
1639 core.int buildCounterGaDataDataTableRowsC = 0; | 1639 core.int buildCounterGaDataDataTableRowsC = 0; |
1640 buildGaDataDataTableRowsC() { | 1640 buildGaDataDataTableRowsC() { |
1641 var o = new api.GaDataDataTableRowsC(); | 1641 var o = new api.GaDataDataTableRowsC(); |
1642 buildCounterGaDataDataTableRowsC++; | 1642 buildCounterGaDataDataTableRowsC++; |
1643 if (buildCounterGaDataDataTableRowsC < 3) { | 1643 if (buildCounterGaDataDataTableRowsC < 3) { |
1644 o.v = "foo"; | 1644 o.v = "foo"; |
1645 } | 1645 } |
1646 buildCounterGaDataDataTableRowsC--; | 1646 buildCounterGaDataDataTableRowsC--; |
1647 return o; | 1647 return o; |
1648 } | 1648 } |
1649 | 1649 |
1650 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { | 1650 checkGaDataDataTableRowsC(api.GaDataDataTableRowsC o) { |
1651 buildCounterGaDataDataTableRowsC++; | 1651 buildCounterGaDataDataTableRowsC++; |
1652 if (buildCounterGaDataDataTableRowsC < 3) { | 1652 if (buildCounterGaDataDataTableRowsC < 3) { |
1653 unittest.expect(o.v, unittest.equals('foo')); | 1653 unittest.expect(o.v, unittest.equals('foo')); |
1654 } | 1654 } |
1655 buildCounterGaDataDataTableRowsC--; | 1655 buildCounterGaDataDataTableRowsC--; |
1656 } | 1656 } |
1657 | 1657 |
1658 buildUnnamed313() { | 1658 buildUnnamed1076() { |
1659 var o = new core.List<api.GaDataDataTableRowsC>(); | 1659 var o = new core.List<api.GaDataDataTableRowsC>(); |
1660 o.add(buildGaDataDataTableRowsC()); | 1660 o.add(buildGaDataDataTableRowsC()); |
1661 o.add(buildGaDataDataTableRowsC()); | 1661 o.add(buildGaDataDataTableRowsC()); |
1662 return o; | 1662 return o; |
1663 } | 1663 } |
1664 | 1664 |
1665 checkUnnamed313(core.List<api.GaDataDataTableRowsC> o) { | 1665 checkUnnamed1076(core.List<api.GaDataDataTableRowsC> o) { |
1666 unittest.expect(o, unittest.hasLength(2)); | 1666 unittest.expect(o, unittest.hasLength(2)); |
1667 checkGaDataDataTableRowsC(o[0]); | 1667 checkGaDataDataTableRowsC(o[0]); |
1668 checkGaDataDataTableRowsC(o[1]); | 1668 checkGaDataDataTableRowsC(o[1]); |
1669 } | 1669 } |
1670 | 1670 |
1671 core.int buildCounterGaDataDataTableRows = 0; | 1671 core.int buildCounterGaDataDataTableRows = 0; |
1672 buildGaDataDataTableRows() { | 1672 buildGaDataDataTableRows() { |
1673 var o = new api.GaDataDataTableRows(); | 1673 var o = new api.GaDataDataTableRows(); |
1674 buildCounterGaDataDataTableRows++; | 1674 buildCounterGaDataDataTableRows++; |
1675 if (buildCounterGaDataDataTableRows < 3) { | 1675 if (buildCounterGaDataDataTableRows < 3) { |
1676 o.c = buildUnnamed313(); | 1676 o.c = buildUnnamed1076(); |
1677 } | 1677 } |
1678 buildCounterGaDataDataTableRows--; | 1678 buildCounterGaDataDataTableRows--; |
1679 return o; | 1679 return o; |
1680 } | 1680 } |
1681 | 1681 |
1682 checkGaDataDataTableRows(api.GaDataDataTableRows o) { | 1682 checkGaDataDataTableRows(api.GaDataDataTableRows o) { |
1683 buildCounterGaDataDataTableRows++; | 1683 buildCounterGaDataDataTableRows++; |
1684 if (buildCounterGaDataDataTableRows < 3) { | 1684 if (buildCounterGaDataDataTableRows < 3) { |
1685 checkUnnamed313(o.c); | 1685 checkUnnamed1076(o.c); |
1686 } | 1686 } |
1687 buildCounterGaDataDataTableRows--; | 1687 buildCounterGaDataDataTableRows--; |
1688 } | 1688 } |
1689 | 1689 |
1690 buildUnnamed314() { | 1690 buildUnnamed1077() { |
1691 var o = new core.List<api.GaDataDataTableRows>(); | 1691 var o = new core.List<api.GaDataDataTableRows>(); |
1692 o.add(buildGaDataDataTableRows()); | 1692 o.add(buildGaDataDataTableRows()); |
1693 o.add(buildGaDataDataTableRows()); | 1693 o.add(buildGaDataDataTableRows()); |
1694 return o; | 1694 return o; |
1695 } | 1695 } |
1696 | 1696 |
1697 checkUnnamed314(core.List<api.GaDataDataTableRows> o) { | 1697 checkUnnamed1077(core.List<api.GaDataDataTableRows> o) { |
1698 unittest.expect(o, unittest.hasLength(2)); | 1698 unittest.expect(o, unittest.hasLength(2)); |
1699 checkGaDataDataTableRows(o[0]); | 1699 checkGaDataDataTableRows(o[0]); |
1700 checkGaDataDataTableRows(o[1]); | 1700 checkGaDataDataTableRows(o[1]); |
1701 } | 1701 } |
1702 | 1702 |
1703 core.int buildCounterGaDataDataTable = 0; | 1703 core.int buildCounterGaDataDataTable = 0; |
1704 buildGaDataDataTable() { | 1704 buildGaDataDataTable() { |
1705 var o = new api.GaDataDataTable(); | 1705 var o = new api.GaDataDataTable(); |
1706 buildCounterGaDataDataTable++; | 1706 buildCounterGaDataDataTable++; |
1707 if (buildCounterGaDataDataTable < 3) { | 1707 if (buildCounterGaDataDataTable < 3) { |
1708 o.cols = buildUnnamed312(); | 1708 o.cols = buildUnnamed1075(); |
1709 o.rows = buildUnnamed314(); | 1709 o.rows = buildUnnamed1077(); |
1710 } | 1710 } |
1711 buildCounterGaDataDataTable--; | 1711 buildCounterGaDataDataTable--; |
1712 return o; | 1712 return o; |
1713 } | 1713 } |
1714 | 1714 |
1715 checkGaDataDataTable(api.GaDataDataTable o) { | 1715 checkGaDataDataTable(api.GaDataDataTable o) { |
1716 buildCounterGaDataDataTable++; | 1716 buildCounterGaDataDataTable++; |
1717 if (buildCounterGaDataDataTable < 3) { | 1717 if (buildCounterGaDataDataTable < 3) { |
1718 checkUnnamed312(o.cols); | 1718 checkUnnamed1075(o.cols); |
1719 checkUnnamed314(o.rows); | 1719 checkUnnamed1077(o.rows); |
1720 } | 1720 } |
1721 buildCounterGaDataDataTable--; | 1721 buildCounterGaDataDataTable--; |
1722 } | 1722 } |
1723 | 1723 |
1724 core.int buildCounterGaDataProfileInfo = 0; | 1724 core.int buildCounterGaDataProfileInfo = 0; |
1725 buildGaDataProfileInfo() { | 1725 buildGaDataProfileInfo() { |
1726 var o = new api.GaDataProfileInfo(); | 1726 var o = new api.GaDataProfileInfo(); |
1727 buildCounterGaDataProfileInfo++; | 1727 buildCounterGaDataProfileInfo++; |
1728 if (buildCounterGaDataProfileInfo < 3) { | 1728 if (buildCounterGaDataProfileInfo < 3) { |
1729 o.accountId = "foo"; | 1729 o.accountId = "foo"; |
(...skipping 13 matching lines...) Expand all Loading... |
1743 unittest.expect(o.accountId, unittest.equals('foo')); | 1743 unittest.expect(o.accountId, unittest.equals('foo')); |
1744 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 1744 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
1745 unittest.expect(o.profileId, unittest.equals('foo')); | 1745 unittest.expect(o.profileId, unittest.equals('foo')); |
1746 unittest.expect(o.profileName, unittest.equals('foo')); | 1746 unittest.expect(o.profileName, unittest.equals('foo')); |
1747 unittest.expect(o.tableId, unittest.equals('foo')); | 1747 unittest.expect(o.tableId, unittest.equals('foo')); |
1748 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 1748 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
1749 } | 1749 } |
1750 buildCounterGaDataProfileInfo--; | 1750 buildCounterGaDataProfileInfo--; |
1751 } | 1751 } |
1752 | 1752 |
1753 buildUnnamed315() { | 1753 buildUnnamed1078() { |
1754 var o = new core.List<core.String>(); | 1754 var o = new core.List<core.String>(); |
1755 o.add("foo"); | 1755 o.add("foo"); |
1756 o.add("foo"); | 1756 o.add("foo"); |
1757 return o; | 1757 return o; |
1758 } | 1758 } |
1759 | 1759 |
1760 checkUnnamed315(core.List<core.String> o) { | 1760 checkUnnamed1078(core.List<core.String> o) { |
1761 unittest.expect(o, unittest.hasLength(2)); | 1761 unittest.expect(o, unittest.hasLength(2)); |
1762 unittest.expect(o[0], unittest.equals('foo')); | 1762 unittest.expect(o[0], unittest.equals('foo')); |
1763 unittest.expect(o[1], unittest.equals('foo')); | 1763 unittest.expect(o[1], unittest.equals('foo')); |
1764 } | 1764 } |
1765 | 1765 |
1766 buildUnnamed316() { | 1766 buildUnnamed1079() { |
1767 var o = new core.List<core.String>(); | 1767 var o = new core.List<core.String>(); |
1768 o.add("foo"); | 1768 o.add("foo"); |
1769 o.add("foo"); | 1769 o.add("foo"); |
1770 return o; | 1770 return o; |
1771 } | 1771 } |
1772 | 1772 |
1773 checkUnnamed316(core.List<core.String> o) { | 1773 checkUnnamed1079(core.List<core.String> o) { |
1774 unittest.expect(o, unittest.hasLength(2)); | 1774 unittest.expect(o, unittest.hasLength(2)); |
1775 unittest.expect(o[0], unittest.equals('foo')); | 1775 unittest.expect(o[0], unittest.equals('foo')); |
1776 unittest.expect(o[1], unittest.equals('foo')); | 1776 unittest.expect(o[1], unittest.equals('foo')); |
1777 } | 1777 } |
1778 | 1778 |
1779 core.int buildCounterGaDataQuery = 0; | 1779 core.int buildCounterGaDataQuery = 0; |
1780 buildGaDataQuery() { | 1780 buildGaDataQuery() { |
1781 var o = new api.GaDataQuery(); | 1781 var o = new api.GaDataQuery(); |
1782 buildCounterGaDataQuery++; | 1782 buildCounterGaDataQuery++; |
1783 if (buildCounterGaDataQuery < 3) { | 1783 if (buildCounterGaDataQuery < 3) { |
1784 o.dimensions = "foo"; | 1784 o.dimensions = "foo"; |
1785 o.end_date = "foo"; | 1785 o.end_date = "foo"; |
1786 o.filters = "foo"; | 1786 o.filters = "foo"; |
1787 o.ids = "foo"; | 1787 o.ids = "foo"; |
1788 o.max_results = 42; | 1788 o.max_results = 42; |
1789 o.metrics = buildUnnamed315(); | 1789 o.metrics = buildUnnamed1078(); |
1790 o.samplingLevel = "foo"; | 1790 o.samplingLevel = "foo"; |
1791 o.segment = "foo"; | 1791 o.segment = "foo"; |
1792 o.sort = buildUnnamed316(); | 1792 o.sort = buildUnnamed1079(); |
1793 o.start_date = "foo"; | 1793 o.start_date = "foo"; |
1794 o.start_index = 42; | 1794 o.start_index = 42; |
1795 } | 1795 } |
1796 buildCounterGaDataQuery--; | 1796 buildCounterGaDataQuery--; |
1797 return o; | 1797 return o; |
1798 } | 1798 } |
1799 | 1799 |
1800 checkGaDataQuery(api.GaDataQuery o) { | 1800 checkGaDataQuery(api.GaDataQuery o) { |
1801 buildCounterGaDataQuery++; | 1801 buildCounterGaDataQuery++; |
1802 if (buildCounterGaDataQuery < 3) { | 1802 if (buildCounterGaDataQuery < 3) { |
1803 unittest.expect(o.dimensions, unittest.equals('foo')); | 1803 unittest.expect(o.dimensions, unittest.equals('foo')); |
1804 unittest.expect(o.end_date, unittest.equals('foo')); | 1804 unittest.expect(o.end_date, unittest.equals('foo')); |
1805 unittest.expect(o.filters, unittest.equals('foo')); | 1805 unittest.expect(o.filters, unittest.equals('foo')); |
1806 unittest.expect(o.ids, unittest.equals('foo')); | 1806 unittest.expect(o.ids, unittest.equals('foo')); |
1807 unittest.expect(o.max_results, unittest.equals(42)); | 1807 unittest.expect(o.max_results, unittest.equals(42)); |
1808 checkUnnamed315(o.metrics); | 1808 checkUnnamed1078(o.metrics); |
1809 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 1809 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
1810 unittest.expect(o.segment, unittest.equals('foo')); | 1810 unittest.expect(o.segment, unittest.equals('foo')); |
1811 checkUnnamed316(o.sort); | 1811 checkUnnamed1079(o.sort); |
1812 unittest.expect(o.start_date, unittest.equals('foo')); | 1812 unittest.expect(o.start_date, unittest.equals('foo')); |
1813 unittest.expect(o.start_index, unittest.equals(42)); | 1813 unittest.expect(o.start_index, unittest.equals(42)); |
1814 } | 1814 } |
1815 buildCounterGaDataQuery--; | 1815 buildCounterGaDataQuery--; |
1816 } | 1816 } |
1817 | 1817 |
1818 buildUnnamed317() { | 1818 buildUnnamed1080() { |
1819 var o = new core.List<core.String>(); | 1819 var o = new core.List<core.String>(); |
1820 o.add("foo"); | 1820 o.add("foo"); |
1821 o.add("foo"); | 1821 o.add("foo"); |
1822 return o; | 1822 return o; |
1823 } | 1823 } |
1824 | 1824 |
1825 checkUnnamed317(core.List<core.String> o) { | 1825 checkUnnamed1080(core.List<core.String> o) { |
1826 unittest.expect(o, unittest.hasLength(2)); | 1826 unittest.expect(o, unittest.hasLength(2)); |
1827 unittest.expect(o[0], unittest.equals('foo')); | 1827 unittest.expect(o[0], unittest.equals('foo')); |
1828 unittest.expect(o[1], unittest.equals('foo')); | 1828 unittest.expect(o[1], unittest.equals('foo')); |
1829 } | 1829 } |
1830 | 1830 |
1831 buildUnnamed318() { | 1831 buildUnnamed1081() { |
1832 var o = new core.List<core.List<core.String>>(); | 1832 var o = new core.List<core.List<core.String>>(); |
1833 o.add(buildUnnamed317()); | 1833 o.add(buildUnnamed1080()); |
1834 o.add(buildUnnamed317()); | 1834 o.add(buildUnnamed1080()); |
1835 return o; | 1835 return o; |
1836 } | 1836 } |
1837 | 1837 |
1838 checkUnnamed318(core.List<core.List<core.String>> o) { | 1838 checkUnnamed1081(core.List<core.List<core.String>> o) { |
1839 unittest.expect(o, unittest.hasLength(2)); | 1839 unittest.expect(o, unittest.hasLength(2)); |
1840 checkUnnamed317(o[0]); | 1840 checkUnnamed1080(o[0]); |
1841 checkUnnamed317(o[1]); | 1841 checkUnnamed1080(o[1]); |
1842 } | 1842 } |
1843 | 1843 |
1844 buildUnnamed319() { | 1844 buildUnnamed1082() { |
1845 var o = new core.Map<core.String, core.String>(); | 1845 var o = new core.Map<core.String, core.String>(); |
1846 o["x"] = "foo"; | 1846 o["x"] = "foo"; |
1847 o["y"] = "foo"; | 1847 o["y"] = "foo"; |
1848 return o; | 1848 return o; |
1849 } | 1849 } |
1850 | 1850 |
1851 checkUnnamed319(core.Map<core.String, core.String> o) { | 1851 checkUnnamed1082(core.Map<core.String, core.String> o) { |
1852 unittest.expect(o, unittest.hasLength(2)); | 1852 unittest.expect(o, unittest.hasLength(2)); |
1853 unittest.expect(o["x"], unittest.equals('foo')); | 1853 unittest.expect(o["x"], unittest.equals('foo')); |
1854 unittest.expect(o["y"], unittest.equals('foo')); | 1854 unittest.expect(o["y"], unittest.equals('foo')); |
1855 } | 1855 } |
1856 | 1856 |
1857 core.int buildCounterGaData = 0; | 1857 core.int buildCounterGaData = 0; |
1858 buildGaData() { | 1858 buildGaData() { |
1859 var o = new api.GaData(); | 1859 var o = new api.GaData(); |
1860 buildCounterGaData++; | 1860 buildCounterGaData++; |
1861 if (buildCounterGaData < 3) { | 1861 if (buildCounterGaData < 3) { |
1862 o.columnHeaders = buildUnnamed311(); | 1862 o.columnHeaders = buildUnnamed1074(); |
1863 o.containsSampledData = true; | 1863 o.containsSampledData = true; |
1864 o.dataTable = buildGaDataDataTable(); | 1864 o.dataTable = buildGaDataDataTable(); |
1865 o.id = "foo"; | 1865 o.id = "foo"; |
1866 o.itemsPerPage = 42; | 1866 o.itemsPerPage = 42; |
1867 o.kind = "foo"; | 1867 o.kind = "foo"; |
1868 o.nextLink = "foo"; | 1868 o.nextLink = "foo"; |
1869 o.previousLink = "foo"; | 1869 o.previousLink = "foo"; |
1870 o.profileInfo = buildGaDataProfileInfo(); | 1870 o.profileInfo = buildGaDataProfileInfo(); |
1871 o.query = buildGaDataQuery(); | 1871 o.query = buildGaDataQuery(); |
1872 o.rows = buildUnnamed318(); | 1872 o.rows = buildUnnamed1081(); |
1873 o.sampleSize = "foo"; | 1873 o.sampleSize = "foo"; |
1874 o.sampleSpace = "foo"; | 1874 o.sampleSpace = "foo"; |
1875 o.selfLink = "foo"; | 1875 o.selfLink = "foo"; |
1876 o.totalResults = 42; | 1876 o.totalResults = 42; |
1877 o.totalsForAllResults = buildUnnamed319(); | 1877 o.totalsForAllResults = buildUnnamed1082(); |
1878 } | 1878 } |
1879 buildCounterGaData--; | 1879 buildCounterGaData--; |
1880 return o; | 1880 return o; |
1881 } | 1881 } |
1882 | 1882 |
1883 checkGaData(api.GaData o) { | 1883 checkGaData(api.GaData o) { |
1884 buildCounterGaData++; | 1884 buildCounterGaData++; |
1885 if (buildCounterGaData < 3) { | 1885 if (buildCounterGaData < 3) { |
1886 checkUnnamed311(o.columnHeaders); | 1886 checkUnnamed1074(o.columnHeaders); |
1887 unittest.expect(o.containsSampledData, unittest.isTrue); | 1887 unittest.expect(o.containsSampledData, unittest.isTrue); |
1888 checkGaDataDataTable(o.dataTable); | 1888 checkGaDataDataTable(o.dataTable); |
1889 unittest.expect(o.id, unittest.equals('foo')); | 1889 unittest.expect(o.id, unittest.equals('foo')); |
1890 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 1890 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
1891 unittest.expect(o.kind, unittest.equals('foo')); | 1891 unittest.expect(o.kind, unittest.equals('foo')); |
1892 unittest.expect(o.nextLink, unittest.equals('foo')); | 1892 unittest.expect(o.nextLink, unittest.equals('foo')); |
1893 unittest.expect(o.previousLink, unittest.equals('foo')); | 1893 unittest.expect(o.previousLink, unittest.equals('foo')); |
1894 checkGaDataProfileInfo(o.profileInfo); | 1894 checkGaDataProfileInfo(o.profileInfo); |
1895 checkGaDataQuery(o.query); | 1895 checkGaDataQuery(o.query); |
1896 checkUnnamed318(o.rows); | 1896 checkUnnamed1081(o.rows); |
1897 unittest.expect(o.sampleSize, unittest.equals('foo')); | 1897 unittest.expect(o.sampleSize, unittest.equals('foo')); |
1898 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 1898 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
1899 unittest.expect(o.selfLink, unittest.equals('foo')); | 1899 unittest.expect(o.selfLink, unittest.equals('foo')); |
1900 unittest.expect(o.totalResults, unittest.equals(42)); | 1900 unittest.expect(o.totalResults, unittest.equals(42)); |
1901 checkUnnamed319(o.totalsForAllResults); | 1901 checkUnnamed1082(o.totalsForAllResults); |
1902 } | 1902 } |
1903 buildCounterGaData--; | 1903 buildCounterGaData--; |
1904 } | 1904 } |
1905 | 1905 |
1906 core.int buildCounterGoalEventDetailsEventConditions = 0; | 1906 core.int buildCounterGoalEventDetailsEventConditions = 0; |
1907 buildGoalEventDetailsEventConditions() { | 1907 buildGoalEventDetailsEventConditions() { |
1908 var o = new api.GoalEventDetailsEventConditions(); | 1908 var o = new api.GoalEventDetailsEventConditions(); |
1909 buildCounterGoalEventDetailsEventConditions++; | 1909 buildCounterGoalEventDetailsEventConditions++; |
1910 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1910 if (buildCounterGoalEventDetailsEventConditions < 3) { |
1911 o.comparisonType = "foo"; | 1911 o.comparisonType = "foo"; |
(...skipping 11 matching lines...) Expand all Loading... |
1923 if (buildCounterGoalEventDetailsEventConditions < 3) { | 1923 if (buildCounterGoalEventDetailsEventConditions < 3) { |
1924 unittest.expect(o.comparisonType, unittest.equals('foo')); | 1924 unittest.expect(o.comparisonType, unittest.equals('foo')); |
1925 unittest.expect(o.comparisonValue, unittest.equals('foo')); | 1925 unittest.expect(o.comparisonValue, unittest.equals('foo')); |
1926 unittest.expect(o.expression, unittest.equals('foo')); | 1926 unittest.expect(o.expression, unittest.equals('foo')); |
1927 unittest.expect(o.matchType, unittest.equals('foo')); | 1927 unittest.expect(o.matchType, unittest.equals('foo')); |
1928 unittest.expect(o.type, unittest.equals('foo')); | 1928 unittest.expect(o.type, unittest.equals('foo')); |
1929 } | 1929 } |
1930 buildCounterGoalEventDetailsEventConditions--; | 1930 buildCounterGoalEventDetailsEventConditions--; |
1931 } | 1931 } |
1932 | 1932 |
1933 buildUnnamed320() { | 1933 buildUnnamed1083() { |
1934 var o = new core.List<api.GoalEventDetailsEventConditions>(); | 1934 var o = new core.List<api.GoalEventDetailsEventConditions>(); |
1935 o.add(buildGoalEventDetailsEventConditions()); | 1935 o.add(buildGoalEventDetailsEventConditions()); |
1936 o.add(buildGoalEventDetailsEventConditions()); | 1936 o.add(buildGoalEventDetailsEventConditions()); |
1937 return o; | 1937 return o; |
1938 } | 1938 } |
1939 | 1939 |
1940 checkUnnamed320(core.List<api.GoalEventDetailsEventConditions> o) { | 1940 checkUnnamed1083(core.List<api.GoalEventDetailsEventConditions> o) { |
1941 unittest.expect(o, unittest.hasLength(2)); | 1941 unittest.expect(o, unittest.hasLength(2)); |
1942 checkGoalEventDetailsEventConditions(o[0]); | 1942 checkGoalEventDetailsEventConditions(o[0]); |
1943 checkGoalEventDetailsEventConditions(o[1]); | 1943 checkGoalEventDetailsEventConditions(o[1]); |
1944 } | 1944 } |
1945 | 1945 |
1946 core.int buildCounterGoalEventDetails = 0; | 1946 core.int buildCounterGoalEventDetails = 0; |
1947 buildGoalEventDetails() { | 1947 buildGoalEventDetails() { |
1948 var o = new api.GoalEventDetails(); | 1948 var o = new api.GoalEventDetails(); |
1949 buildCounterGoalEventDetails++; | 1949 buildCounterGoalEventDetails++; |
1950 if (buildCounterGoalEventDetails < 3) { | 1950 if (buildCounterGoalEventDetails < 3) { |
1951 o.eventConditions = buildUnnamed320(); | 1951 o.eventConditions = buildUnnamed1083(); |
1952 o.useEventValue = true; | 1952 o.useEventValue = true; |
1953 } | 1953 } |
1954 buildCounterGoalEventDetails--; | 1954 buildCounterGoalEventDetails--; |
1955 return o; | 1955 return o; |
1956 } | 1956 } |
1957 | 1957 |
1958 checkGoalEventDetails(api.GoalEventDetails o) { | 1958 checkGoalEventDetails(api.GoalEventDetails o) { |
1959 buildCounterGoalEventDetails++; | 1959 buildCounterGoalEventDetails++; |
1960 if (buildCounterGoalEventDetails < 3) { | 1960 if (buildCounterGoalEventDetails < 3) { |
1961 checkUnnamed320(o.eventConditions); | 1961 checkUnnamed1083(o.eventConditions); |
1962 unittest.expect(o.useEventValue, unittest.isTrue); | 1962 unittest.expect(o.useEventValue, unittest.isTrue); |
1963 } | 1963 } |
1964 buildCounterGoalEventDetails--; | 1964 buildCounterGoalEventDetails--; |
1965 } | 1965 } |
1966 | 1966 |
1967 core.int buildCounterGoalParentLink = 0; | 1967 core.int buildCounterGoalParentLink = 0; |
1968 buildGoalParentLink() { | 1968 buildGoalParentLink() { |
1969 var o = new api.GoalParentLink(); | 1969 var o = new api.GoalParentLink(); |
1970 buildCounterGoalParentLink++; | 1970 buildCounterGoalParentLink++; |
1971 if (buildCounterGoalParentLink < 3) { | 1971 if (buildCounterGoalParentLink < 3) { |
(...skipping 29 matching lines...) Expand all Loading... |
2001 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { | 2001 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { |
2002 buildCounterGoalUrlDestinationDetailsSteps++; | 2002 buildCounterGoalUrlDestinationDetailsSteps++; |
2003 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { | 2003 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { |
2004 unittest.expect(o.name, unittest.equals('foo')); | 2004 unittest.expect(o.name, unittest.equals('foo')); |
2005 unittest.expect(o.number, unittest.equals(42)); | 2005 unittest.expect(o.number, unittest.equals(42)); |
2006 unittest.expect(o.url, unittest.equals('foo')); | 2006 unittest.expect(o.url, unittest.equals('foo')); |
2007 } | 2007 } |
2008 buildCounterGoalUrlDestinationDetailsSteps--; | 2008 buildCounterGoalUrlDestinationDetailsSteps--; |
2009 } | 2009 } |
2010 | 2010 |
2011 buildUnnamed321() { | 2011 buildUnnamed1084() { |
2012 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); | 2012 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); |
2013 o.add(buildGoalUrlDestinationDetailsSteps()); | 2013 o.add(buildGoalUrlDestinationDetailsSteps()); |
2014 o.add(buildGoalUrlDestinationDetailsSteps()); | 2014 o.add(buildGoalUrlDestinationDetailsSteps()); |
2015 return o; | 2015 return o; |
2016 } | 2016 } |
2017 | 2017 |
2018 checkUnnamed321(core.List<api.GoalUrlDestinationDetailsSteps> o) { | 2018 checkUnnamed1084(core.List<api.GoalUrlDestinationDetailsSteps> o) { |
2019 unittest.expect(o, unittest.hasLength(2)); | 2019 unittest.expect(o, unittest.hasLength(2)); |
2020 checkGoalUrlDestinationDetailsSteps(o[0]); | 2020 checkGoalUrlDestinationDetailsSteps(o[0]); |
2021 checkGoalUrlDestinationDetailsSteps(o[1]); | 2021 checkGoalUrlDestinationDetailsSteps(o[1]); |
2022 } | 2022 } |
2023 | 2023 |
2024 core.int buildCounterGoalUrlDestinationDetails = 0; | 2024 core.int buildCounterGoalUrlDestinationDetails = 0; |
2025 buildGoalUrlDestinationDetails() { | 2025 buildGoalUrlDestinationDetails() { |
2026 var o = new api.GoalUrlDestinationDetails(); | 2026 var o = new api.GoalUrlDestinationDetails(); |
2027 buildCounterGoalUrlDestinationDetails++; | 2027 buildCounterGoalUrlDestinationDetails++; |
2028 if (buildCounterGoalUrlDestinationDetails < 3) { | 2028 if (buildCounterGoalUrlDestinationDetails < 3) { |
2029 o.caseSensitive = true; | 2029 o.caseSensitive = true; |
2030 o.firstStepRequired = true; | 2030 o.firstStepRequired = true; |
2031 o.matchType = "foo"; | 2031 o.matchType = "foo"; |
2032 o.steps = buildUnnamed321(); | 2032 o.steps = buildUnnamed1084(); |
2033 o.url = "foo"; | 2033 o.url = "foo"; |
2034 } | 2034 } |
2035 buildCounterGoalUrlDestinationDetails--; | 2035 buildCounterGoalUrlDestinationDetails--; |
2036 return o; | 2036 return o; |
2037 } | 2037 } |
2038 | 2038 |
2039 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { | 2039 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { |
2040 buildCounterGoalUrlDestinationDetails++; | 2040 buildCounterGoalUrlDestinationDetails++; |
2041 if (buildCounterGoalUrlDestinationDetails < 3) { | 2041 if (buildCounterGoalUrlDestinationDetails < 3) { |
2042 unittest.expect(o.caseSensitive, unittest.isTrue); | 2042 unittest.expect(o.caseSensitive, unittest.isTrue); |
2043 unittest.expect(o.firstStepRequired, unittest.isTrue); | 2043 unittest.expect(o.firstStepRequired, unittest.isTrue); |
2044 unittest.expect(o.matchType, unittest.equals('foo')); | 2044 unittest.expect(o.matchType, unittest.equals('foo')); |
2045 checkUnnamed321(o.steps); | 2045 checkUnnamed1084(o.steps); |
2046 unittest.expect(o.url, unittest.equals('foo')); | 2046 unittest.expect(o.url, unittest.equals('foo')); |
2047 } | 2047 } |
2048 buildCounterGoalUrlDestinationDetails--; | 2048 buildCounterGoalUrlDestinationDetails--; |
2049 } | 2049 } |
2050 | 2050 |
2051 core.int buildCounterGoalVisitNumPagesDetails = 0; | 2051 core.int buildCounterGoalVisitNumPagesDetails = 0; |
2052 buildGoalVisitNumPagesDetails() { | 2052 buildGoalVisitNumPagesDetails() { |
2053 var o = new api.GoalVisitNumPagesDetails(); | 2053 var o = new api.GoalVisitNumPagesDetails(); |
2054 buildCounterGoalVisitNumPagesDetails++; | 2054 buildCounterGoalVisitNumPagesDetails++; |
2055 if (buildCounterGoalVisitNumPagesDetails < 3) { | 2055 if (buildCounterGoalVisitNumPagesDetails < 3) { |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2136 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); | 2136 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1
4:01:02"))); |
2137 checkGoalUrlDestinationDetails(o.urlDestinationDetails); | 2137 checkGoalUrlDestinationDetails(o.urlDestinationDetails); |
2138 unittest.expect(o.value, unittest.equals(42.0)); | 2138 unittest.expect(o.value, unittest.equals(42.0)); |
2139 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); | 2139 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); |
2140 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); | 2140 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); |
2141 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2141 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
2142 } | 2142 } |
2143 buildCounterGoal--; | 2143 buildCounterGoal--; |
2144 } | 2144 } |
2145 | 2145 |
2146 buildUnnamed322() { | 2146 buildUnnamed1085() { |
2147 var o = new core.List<api.Goal>(); | 2147 var o = new core.List<api.Goal>(); |
2148 o.add(buildGoal()); | 2148 o.add(buildGoal()); |
2149 o.add(buildGoal()); | 2149 o.add(buildGoal()); |
2150 return o; | 2150 return o; |
2151 } | 2151 } |
2152 | 2152 |
2153 checkUnnamed322(core.List<api.Goal> o) { | 2153 checkUnnamed1085(core.List<api.Goal> o) { |
2154 unittest.expect(o, unittest.hasLength(2)); | 2154 unittest.expect(o, unittest.hasLength(2)); |
2155 checkGoal(o[0]); | 2155 checkGoal(o[0]); |
2156 checkGoal(o[1]); | 2156 checkGoal(o[1]); |
2157 } | 2157 } |
2158 | 2158 |
2159 core.int buildCounterGoals = 0; | 2159 core.int buildCounterGoals = 0; |
2160 buildGoals() { | 2160 buildGoals() { |
2161 var o = new api.Goals(); | 2161 var o = new api.Goals(); |
2162 buildCounterGoals++; | 2162 buildCounterGoals++; |
2163 if (buildCounterGoals < 3) { | 2163 if (buildCounterGoals < 3) { |
2164 o.items = buildUnnamed322(); | 2164 o.items = buildUnnamed1085(); |
2165 o.itemsPerPage = 42; | 2165 o.itemsPerPage = 42; |
2166 o.kind = "foo"; | 2166 o.kind = "foo"; |
2167 o.nextLink = "foo"; | 2167 o.nextLink = "foo"; |
2168 o.previousLink = "foo"; | 2168 o.previousLink = "foo"; |
2169 o.startIndex = 42; | 2169 o.startIndex = 42; |
2170 o.totalResults = 42; | 2170 o.totalResults = 42; |
2171 o.username = "foo"; | 2171 o.username = "foo"; |
2172 } | 2172 } |
2173 buildCounterGoals--; | 2173 buildCounterGoals--; |
2174 return o; | 2174 return o; |
2175 } | 2175 } |
2176 | 2176 |
2177 checkGoals(api.Goals o) { | 2177 checkGoals(api.Goals o) { |
2178 buildCounterGoals++; | 2178 buildCounterGoals++; |
2179 if (buildCounterGoals < 3) { | 2179 if (buildCounterGoals < 3) { |
2180 checkUnnamed322(o.items); | 2180 checkUnnamed1085(o.items); |
2181 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2181 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
2182 unittest.expect(o.kind, unittest.equals('foo')); | 2182 unittest.expect(o.kind, unittest.equals('foo')); |
2183 unittest.expect(o.nextLink, unittest.equals('foo')); | 2183 unittest.expect(o.nextLink, unittest.equals('foo')); |
2184 unittest.expect(o.previousLink, unittest.equals('foo')); | 2184 unittest.expect(o.previousLink, unittest.equals('foo')); |
2185 unittest.expect(o.startIndex, unittest.equals(42)); | 2185 unittest.expect(o.startIndex, unittest.equals(42)); |
2186 unittest.expect(o.totalResults, unittest.equals(42)); | 2186 unittest.expect(o.totalResults, unittest.equals(42)); |
2187 unittest.expect(o.username, unittest.equals('foo')); | 2187 unittest.expect(o.username, unittest.equals('foo')); |
2188 } | 2188 } |
2189 buildCounterGoals--; | 2189 buildCounterGoals--; |
2190 } | 2190 } |
(...skipping 14 matching lines...) Expand all Loading... |
2205 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { | 2205 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { |
2206 buildCounterMcfDataColumnHeaders++; | 2206 buildCounterMcfDataColumnHeaders++; |
2207 if (buildCounterMcfDataColumnHeaders < 3) { | 2207 if (buildCounterMcfDataColumnHeaders < 3) { |
2208 unittest.expect(o.columnType, unittest.equals('foo')); | 2208 unittest.expect(o.columnType, unittest.equals('foo')); |
2209 unittest.expect(o.dataType, unittest.equals('foo')); | 2209 unittest.expect(o.dataType, unittest.equals('foo')); |
2210 unittest.expect(o.name, unittest.equals('foo')); | 2210 unittest.expect(o.name, unittest.equals('foo')); |
2211 } | 2211 } |
2212 buildCounterMcfDataColumnHeaders--; | 2212 buildCounterMcfDataColumnHeaders--; |
2213 } | 2213 } |
2214 | 2214 |
2215 buildUnnamed323() { | 2215 buildUnnamed1086() { |
2216 var o = new core.List<api.McfDataColumnHeaders>(); | 2216 var o = new core.List<api.McfDataColumnHeaders>(); |
2217 o.add(buildMcfDataColumnHeaders()); | 2217 o.add(buildMcfDataColumnHeaders()); |
2218 o.add(buildMcfDataColumnHeaders()); | 2218 o.add(buildMcfDataColumnHeaders()); |
2219 return o; | 2219 return o; |
2220 } | 2220 } |
2221 | 2221 |
2222 checkUnnamed323(core.List<api.McfDataColumnHeaders> o) { | 2222 checkUnnamed1086(core.List<api.McfDataColumnHeaders> o) { |
2223 unittest.expect(o, unittest.hasLength(2)); | 2223 unittest.expect(o, unittest.hasLength(2)); |
2224 checkMcfDataColumnHeaders(o[0]); | 2224 checkMcfDataColumnHeaders(o[0]); |
2225 checkMcfDataColumnHeaders(o[1]); | 2225 checkMcfDataColumnHeaders(o[1]); |
2226 } | 2226 } |
2227 | 2227 |
2228 core.int buildCounterMcfDataProfileInfo = 0; | 2228 core.int buildCounterMcfDataProfileInfo = 0; |
2229 buildMcfDataProfileInfo() { | 2229 buildMcfDataProfileInfo() { |
2230 var o = new api.McfDataProfileInfo(); | 2230 var o = new api.McfDataProfileInfo(); |
2231 buildCounterMcfDataProfileInfo++; | 2231 buildCounterMcfDataProfileInfo++; |
2232 if (buildCounterMcfDataProfileInfo < 3) { | 2232 if (buildCounterMcfDataProfileInfo < 3) { |
(...skipping 14 matching lines...) Expand all Loading... |
2247 unittest.expect(o.accountId, unittest.equals('foo')); | 2247 unittest.expect(o.accountId, unittest.equals('foo')); |
2248 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2248 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
2249 unittest.expect(o.profileId, unittest.equals('foo')); | 2249 unittest.expect(o.profileId, unittest.equals('foo')); |
2250 unittest.expect(o.profileName, unittest.equals('foo')); | 2250 unittest.expect(o.profileName, unittest.equals('foo')); |
2251 unittest.expect(o.tableId, unittest.equals('foo')); | 2251 unittest.expect(o.tableId, unittest.equals('foo')); |
2252 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2252 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
2253 } | 2253 } |
2254 buildCounterMcfDataProfileInfo--; | 2254 buildCounterMcfDataProfileInfo--; |
2255 } | 2255 } |
2256 | 2256 |
2257 buildUnnamed324() { | 2257 buildUnnamed1087() { |
2258 var o = new core.List<core.String>(); | 2258 var o = new core.List<core.String>(); |
2259 o.add("foo"); | 2259 o.add("foo"); |
2260 o.add("foo"); | 2260 o.add("foo"); |
2261 return o; | 2261 return o; |
2262 } | 2262 } |
2263 | 2263 |
2264 checkUnnamed324(core.List<core.String> o) { | 2264 checkUnnamed1087(core.List<core.String> o) { |
2265 unittest.expect(o, unittest.hasLength(2)); | 2265 unittest.expect(o, unittest.hasLength(2)); |
2266 unittest.expect(o[0], unittest.equals('foo')); | 2266 unittest.expect(o[0], unittest.equals('foo')); |
2267 unittest.expect(o[1], unittest.equals('foo')); | 2267 unittest.expect(o[1], unittest.equals('foo')); |
2268 } | 2268 } |
2269 | 2269 |
2270 buildUnnamed325() { | 2270 buildUnnamed1088() { |
2271 var o = new core.List<core.String>(); | 2271 var o = new core.List<core.String>(); |
2272 o.add("foo"); | 2272 o.add("foo"); |
2273 o.add("foo"); | 2273 o.add("foo"); |
2274 return o; | 2274 return o; |
2275 } | 2275 } |
2276 | 2276 |
2277 checkUnnamed325(core.List<core.String> o) { | 2277 checkUnnamed1088(core.List<core.String> o) { |
2278 unittest.expect(o, unittest.hasLength(2)); | 2278 unittest.expect(o, unittest.hasLength(2)); |
2279 unittest.expect(o[0], unittest.equals('foo')); | 2279 unittest.expect(o[0], unittest.equals('foo')); |
2280 unittest.expect(o[1], unittest.equals('foo')); | 2280 unittest.expect(o[1], unittest.equals('foo')); |
2281 } | 2281 } |
2282 | 2282 |
2283 core.int buildCounterMcfDataQuery = 0; | 2283 core.int buildCounterMcfDataQuery = 0; |
2284 buildMcfDataQuery() { | 2284 buildMcfDataQuery() { |
2285 var o = new api.McfDataQuery(); | 2285 var o = new api.McfDataQuery(); |
2286 buildCounterMcfDataQuery++; | 2286 buildCounterMcfDataQuery++; |
2287 if (buildCounterMcfDataQuery < 3) { | 2287 if (buildCounterMcfDataQuery < 3) { |
2288 o.dimensions = "foo"; | 2288 o.dimensions = "foo"; |
2289 o.end_date = "foo"; | 2289 o.end_date = "foo"; |
2290 o.filters = "foo"; | 2290 o.filters = "foo"; |
2291 o.ids = "foo"; | 2291 o.ids = "foo"; |
2292 o.max_results = 42; | 2292 o.max_results = 42; |
2293 o.metrics = buildUnnamed324(); | 2293 o.metrics = buildUnnamed1087(); |
2294 o.samplingLevel = "foo"; | 2294 o.samplingLevel = "foo"; |
2295 o.segment = "foo"; | 2295 o.segment = "foo"; |
2296 o.sort = buildUnnamed325(); | 2296 o.sort = buildUnnamed1088(); |
2297 o.start_date = "foo"; | 2297 o.start_date = "foo"; |
2298 o.start_index = 42; | 2298 o.start_index = 42; |
2299 } | 2299 } |
2300 buildCounterMcfDataQuery--; | 2300 buildCounterMcfDataQuery--; |
2301 return o; | 2301 return o; |
2302 } | 2302 } |
2303 | 2303 |
2304 checkMcfDataQuery(api.McfDataQuery o) { | 2304 checkMcfDataQuery(api.McfDataQuery o) { |
2305 buildCounterMcfDataQuery++; | 2305 buildCounterMcfDataQuery++; |
2306 if (buildCounterMcfDataQuery < 3) { | 2306 if (buildCounterMcfDataQuery < 3) { |
2307 unittest.expect(o.dimensions, unittest.equals('foo')); | 2307 unittest.expect(o.dimensions, unittest.equals('foo')); |
2308 unittest.expect(o.end_date, unittest.equals('foo')); | 2308 unittest.expect(o.end_date, unittest.equals('foo')); |
2309 unittest.expect(o.filters, unittest.equals('foo')); | 2309 unittest.expect(o.filters, unittest.equals('foo')); |
2310 unittest.expect(o.ids, unittest.equals('foo')); | 2310 unittest.expect(o.ids, unittest.equals('foo')); |
2311 unittest.expect(o.max_results, unittest.equals(42)); | 2311 unittest.expect(o.max_results, unittest.equals(42)); |
2312 checkUnnamed324(o.metrics); | 2312 checkUnnamed1087(o.metrics); |
2313 unittest.expect(o.samplingLevel, unittest.equals('foo')); | 2313 unittest.expect(o.samplingLevel, unittest.equals('foo')); |
2314 unittest.expect(o.segment, unittest.equals('foo')); | 2314 unittest.expect(o.segment, unittest.equals('foo')); |
2315 checkUnnamed325(o.sort); | 2315 checkUnnamed1088(o.sort); |
2316 unittest.expect(o.start_date, unittest.equals('foo')); | 2316 unittest.expect(o.start_date, unittest.equals('foo')); |
2317 unittest.expect(o.start_index, unittest.equals(42)); | 2317 unittest.expect(o.start_index, unittest.equals(42)); |
2318 } | 2318 } |
2319 buildCounterMcfDataQuery--; | 2319 buildCounterMcfDataQuery--; |
2320 } | 2320 } |
2321 | 2321 |
2322 core.int buildCounterMcfDataRowsConversionPathValue = 0; | 2322 core.int buildCounterMcfDataRowsConversionPathValue = 0; |
2323 buildMcfDataRowsConversionPathValue() { | 2323 buildMcfDataRowsConversionPathValue() { |
2324 var o = new api.McfDataRowsConversionPathValue(); | 2324 var o = new api.McfDataRowsConversionPathValue(); |
2325 buildCounterMcfDataRowsConversionPathValue++; | 2325 buildCounterMcfDataRowsConversionPathValue++; |
2326 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2326 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
2327 o.interactionType = "foo"; | 2327 o.interactionType = "foo"; |
2328 o.nodeValue = "foo"; | 2328 o.nodeValue = "foo"; |
2329 } | 2329 } |
2330 buildCounterMcfDataRowsConversionPathValue--; | 2330 buildCounterMcfDataRowsConversionPathValue--; |
2331 return o; | 2331 return o; |
2332 } | 2332 } |
2333 | 2333 |
2334 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { | 2334 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { |
2335 buildCounterMcfDataRowsConversionPathValue++; | 2335 buildCounterMcfDataRowsConversionPathValue++; |
2336 if (buildCounterMcfDataRowsConversionPathValue < 3) { | 2336 if (buildCounterMcfDataRowsConversionPathValue < 3) { |
2337 unittest.expect(o.interactionType, unittest.equals('foo')); | 2337 unittest.expect(o.interactionType, unittest.equals('foo')); |
2338 unittest.expect(o.nodeValue, unittest.equals('foo')); | 2338 unittest.expect(o.nodeValue, unittest.equals('foo')); |
2339 } | 2339 } |
2340 buildCounterMcfDataRowsConversionPathValue--; | 2340 buildCounterMcfDataRowsConversionPathValue--; |
2341 } | 2341 } |
2342 | 2342 |
2343 buildUnnamed326() { | 2343 buildUnnamed1089() { |
2344 var o = new core.List<api.McfDataRowsConversionPathValue>(); | 2344 var o = new core.List<api.McfDataRowsConversionPathValue>(); |
2345 o.add(buildMcfDataRowsConversionPathValue()); | 2345 o.add(buildMcfDataRowsConversionPathValue()); |
2346 o.add(buildMcfDataRowsConversionPathValue()); | 2346 o.add(buildMcfDataRowsConversionPathValue()); |
2347 return o; | 2347 return o; |
2348 } | 2348 } |
2349 | 2349 |
2350 checkUnnamed326(core.List<api.McfDataRowsConversionPathValue> o) { | 2350 checkUnnamed1089(core.List<api.McfDataRowsConversionPathValue> o) { |
2351 unittest.expect(o, unittest.hasLength(2)); | 2351 unittest.expect(o, unittest.hasLength(2)); |
2352 checkMcfDataRowsConversionPathValue(o[0]); | 2352 checkMcfDataRowsConversionPathValue(o[0]); |
2353 checkMcfDataRowsConversionPathValue(o[1]); | 2353 checkMcfDataRowsConversionPathValue(o[1]); |
2354 } | 2354 } |
2355 | 2355 |
2356 core.int buildCounterMcfDataRows = 0; | 2356 core.int buildCounterMcfDataRows = 0; |
2357 buildMcfDataRows() { | 2357 buildMcfDataRows() { |
2358 var o = new api.McfDataRows(); | 2358 var o = new api.McfDataRows(); |
2359 buildCounterMcfDataRows++; | 2359 buildCounterMcfDataRows++; |
2360 if (buildCounterMcfDataRows < 3) { | 2360 if (buildCounterMcfDataRows < 3) { |
2361 o.conversionPathValue = buildUnnamed326(); | 2361 o.conversionPathValue = buildUnnamed1089(); |
2362 o.primitiveValue = "foo"; | 2362 o.primitiveValue = "foo"; |
2363 } | 2363 } |
2364 buildCounterMcfDataRows--; | 2364 buildCounterMcfDataRows--; |
2365 return o; | 2365 return o; |
2366 } | 2366 } |
2367 | 2367 |
2368 checkMcfDataRows(api.McfDataRows o) { | 2368 checkMcfDataRows(api.McfDataRows o) { |
2369 buildCounterMcfDataRows++; | 2369 buildCounterMcfDataRows++; |
2370 if (buildCounterMcfDataRows < 3) { | 2370 if (buildCounterMcfDataRows < 3) { |
2371 checkUnnamed326(o.conversionPathValue); | 2371 checkUnnamed1089(o.conversionPathValue); |
2372 unittest.expect(o.primitiveValue, unittest.equals('foo')); | 2372 unittest.expect(o.primitiveValue, unittest.equals('foo')); |
2373 } | 2373 } |
2374 buildCounterMcfDataRows--; | 2374 buildCounterMcfDataRows--; |
2375 } | 2375 } |
2376 | 2376 |
2377 buildUnnamed327() { | 2377 buildUnnamed1090() { |
2378 var o = new core.List<api.McfDataRows>(); | 2378 var o = new core.List<api.McfDataRows>(); |
2379 o.add(buildMcfDataRows()); | 2379 o.add(buildMcfDataRows()); |
2380 o.add(buildMcfDataRows()); | 2380 o.add(buildMcfDataRows()); |
2381 return o; | 2381 return o; |
2382 } | 2382 } |
2383 | 2383 |
2384 checkUnnamed327(core.List<api.McfDataRows> o) { | 2384 checkUnnamed1090(core.List<api.McfDataRows> o) { |
2385 unittest.expect(o, unittest.hasLength(2)); | 2385 unittest.expect(o, unittest.hasLength(2)); |
2386 checkMcfDataRows(o[0]); | 2386 checkMcfDataRows(o[0]); |
2387 checkMcfDataRows(o[1]); | 2387 checkMcfDataRows(o[1]); |
2388 } | 2388 } |
2389 | 2389 |
2390 buildUnnamed328() { | 2390 buildUnnamed1091() { |
2391 var o = new core.List<core.List<api.McfDataRows>>(); | 2391 var o = new core.List<core.List<api.McfDataRows>>(); |
2392 o.add(buildUnnamed327()); | 2392 o.add(buildUnnamed1090()); |
2393 o.add(buildUnnamed327()); | 2393 o.add(buildUnnamed1090()); |
2394 return o; | 2394 return o; |
2395 } | 2395 } |
2396 | 2396 |
2397 checkUnnamed328(core.List<core.List<api.McfDataRows>> o) { | 2397 checkUnnamed1091(core.List<core.List<api.McfDataRows>> o) { |
2398 unittest.expect(o, unittest.hasLength(2)); | 2398 unittest.expect(o, unittest.hasLength(2)); |
2399 checkUnnamed327(o[0]); | 2399 checkUnnamed1090(o[0]); |
2400 checkUnnamed327(o[1]); | 2400 checkUnnamed1090(o[1]); |
2401 } | 2401 } |
2402 | 2402 |
2403 buildUnnamed329() { | 2403 buildUnnamed1092() { |
2404 var o = new core.Map<core.String, core.String>(); | 2404 var o = new core.Map<core.String, core.String>(); |
2405 o["x"] = "foo"; | 2405 o["x"] = "foo"; |
2406 o["y"] = "foo"; | 2406 o["y"] = "foo"; |
2407 return o; | 2407 return o; |
2408 } | 2408 } |
2409 | 2409 |
2410 checkUnnamed329(core.Map<core.String, core.String> o) { | 2410 checkUnnamed1092(core.Map<core.String, core.String> o) { |
2411 unittest.expect(o, unittest.hasLength(2)); | 2411 unittest.expect(o, unittest.hasLength(2)); |
2412 unittest.expect(o["x"], unittest.equals('foo')); | 2412 unittest.expect(o["x"], unittest.equals('foo')); |
2413 unittest.expect(o["y"], unittest.equals('foo')); | 2413 unittest.expect(o["y"], unittest.equals('foo')); |
2414 } | 2414 } |
2415 | 2415 |
2416 core.int buildCounterMcfData = 0; | 2416 core.int buildCounterMcfData = 0; |
2417 buildMcfData() { | 2417 buildMcfData() { |
2418 var o = new api.McfData(); | 2418 var o = new api.McfData(); |
2419 buildCounterMcfData++; | 2419 buildCounterMcfData++; |
2420 if (buildCounterMcfData < 3) { | 2420 if (buildCounterMcfData < 3) { |
2421 o.columnHeaders = buildUnnamed323(); | 2421 o.columnHeaders = buildUnnamed1086(); |
2422 o.containsSampledData = true; | 2422 o.containsSampledData = true; |
2423 o.id = "foo"; | 2423 o.id = "foo"; |
2424 o.itemsPerPage = 42; | 2424 o.itemsPerPage = 42; |
2425 o.kind = "foo"; | 2425 o.kind = "foo"; |
2426 o.nextLink = "foo"; | 2426 o.nextLink = "foo"; |
2427 o.previousLink = "foo"; | 2427 o.previousLink = "foo"; |
2428 o.profileInfo = buildMcfDataProfileInfo(); | 2428 o.profileInfo = buildMcfDataProfileInfo(); |
2429 o.query = buildMcfDataQuery(); | 2429 o.query = buildMcfDataQuery(); |
2430 o.rows = buildUnnamed328(); | 2430 o.rows = buildUnnamed1091(); |
2431 o.sampleSize = "foo"; | 2431 o.sampleSize = "foo"; |
2432 o.sampleSpace = "foo"; | 2432 o.sampleSpace = "foo"; |
2433 o.selfLink = "foo"; | 2433 o.selfLink = "foo"; |
2434 o.totalResults = 42; | 2434 o.totalResults = 42; |
2435 o.totalsForAllResults = buildUnnamed329(); | 2435 o.totalsForAllResults = buildUnnamed1092(); |
2436 } | 2436 } |
2437 buildCounterMcfData--; | 2437 buildCounterMcfData--; |
2438 return o; | 2438 return o; |
2439 } | 2439 } |
2440 | 2440 |
2441 checkMcfData(api.McfData o) { | 2441 checkMcfData(api.McfData o) { |
2442 buildCounterMcfData++; | 2442 buildCounterMcfData++; |
2443 if (buildCounterMcfData < 3) { | 2443 if (buildCounterMcfData < 3) { |
2444 checkUnnamed323(o.columnHeaders); | 2444 checkUnnamed1086(o.columnHeaders); |
2445 unittest.expect(o.containsSampledData, unittest.isTrue); | 2445 unittest.expect(o.containsSampledData, unittest.isTrue); |
2446 unittest.expect(o.id, unittest.equals('foo')); | 2446 unittest.expect(o.id, unittest.equals('foo')); |
2447 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2447 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
2448 unittest.expect(o.kind, unittest.equals('foo')); | 2448 unittest.expect(o.kind, unittest.equals('foo')); |
2449 unittest.expect(o.nextLink, unittest.equals('foo')); | 2449 unittest.expect(o.nextLink, unittest.equals('foo')); |
2450 unittest.expect(o.previousLink, unittest.equals('foo')); | 2450 unittest.expect(o.previousLink, unittest.equals('foo')); |
2451 checkMcfDataProfileInfo(o.profileInfo); | 2451 checkMcfDataProfileInfo(o.profileInfo); |
2452 checkMcfDataQuery(o.query); | 2452 checkMcfDataQuery(o.query); |
2453 checkUnnamed328(o.rows); | 2453 checkUnnamed1091(o.rows); |
2454 unittest.expect(o.sampleSize, unittest.equals('foo')); | 2454 unittest.expect(o.sampleSize, unittest.equals('foo')); |
2455 unittest.expect(o.sampleSpace, unittest.equals('foo')); | 2455 unittest.expect(o.sampleSpace, unittest.equals('foo')); |
2456 unittest.expect(o.selfLink, unittest.equals('foo')); | 2456 unittest.expect(o.selfLink, unittest.equals('foo')); |
2457 unittest.expect(o.totalResults, unittest.equals(42)); | 2457 unittest.expect(o.totalResults, unittest.equals(42)); |
2458 checkUnnamed329(o.totalsForAllResults); | 2458 checkUnnamed1092(o.totalsForAllResults); |
2459 } | 2459 } |
2460 buildCounterMcfData--; | 2460 buildCounterMcfData--; |
2461 } | 2461 } |
2462 | 2462 |
2463 core.int buildCounterProfileChildLink = 0; | 2463 core.int buildCounterProfileChildLink = 0; |
2464 buildProfileChildLink() { | 2464 buildProfileChildLink() { |
2465 var o = new api.ProfileChildLink(); | 2465 var o = new api.ProfileChildLink(); |
2466 buildCounterProfileChildLink++; | 2466 buildCounterProfileChildLink++; |
2467 if (buildCounterProfileChildLink < 3) { | 2467 if (buildCounterProfileChildLink < 3) { |
2468 o.href = "foo"; | 2468 o.href = "foo"; |
(...skipping 26 matching lines...) Expand all Loading... |
2495 | 2495 |
2496 checkProfileParentLink(api.ProfileParentLink o) { | 2496 checkProfileParentLink(api.ProfileParentLink o) { |
2497 buildCounterProfileParentLink++; | 2497 buildCounterProfileParentLink++; |
2498 if (buildCounterProfileParentLink < 3) { | 2498 if (buildCounterProfileParentLink < 3) { |
2499 unittest.expect(o.href, unittest.equals('foo')); | 2499 unittest.expect(o.href, unittest.equals('foo')); |
2500 unittest.expect(o.type, unittest.equals('foo')); | 2500 unittest.expect(o.type, unittest.equals('foo')); |
2501 } | 2501 } |
2502 buildCounterProfileParentLink--; | 2502 buildCounterProfileParentLink--; |
2503 } | 2503 } |
2504 | 2504 |
2505 buildUnnamed330() { | 2505 buildUnnamed1093() { |
2506 var o = new core.List<core.String>(); | 2506 var o = new core.List<core.String>(); |
2507 o.add("foo"); | 2507 o.add("foo"); |
2508 o.add("foo"); | 2508 o.add("foo"); |
2509 return o; | 2509 return o; |
2510 } | 2510 } |
2511 | 2511 |
2512 checkUnnamed330(core.List<core.String> o) { | 2512 checkUnnamed1093(core.List<core.String> o) { |
2513 unittest.expect(o, unittest.hasLength(2)); | 2513 unittest.expect(o, unittest.hasLength(2)); |
2514 unittest.expect(o[0], unittest.equals('foo')); | 2514 unittest.expect(o[0], unittest.equals('foo')); |
2515 unittest.expect(o[1], unittest.equals('foo')); | 2515 unittest.expect(o[1], unittest.equals('foo')); |
2516 } | 2516 } |
2517 | 2517 |
2518 core.int buildCounterProfilePermissions = 0; | 2518 core.int buildCounterProfilePermissions = 0; |
2519 buildProfilePermissions() { | 2519 buildProfilePermissions() { |
2520 var o = new api.ProfilePermissions(); | 2520 var o = new api.ProfilePermissions(); |
2521 buildCounterProfilePermissions++; | 2521 buildCounterProfilePermissions++; |
2522 if (buildCounterProfilePermissions < 3) { | 2522 if (buildCounterProfilePermissions < 3) { |
2523 o.effective = buildUnnamed330(); | 2523 o.effective = buildUnnamed1093(); |
2524 } | 2524 } |
2525 buildCounterProfilePermissions--; | 2525 buildCounterProfilePermissions--; |
2526 return o; | 2526 return o; |
2527 } | 2527 } |
2528 | 2528 |
2529 checkProfilePermissions(api.ProfilePermissions o) { | 2529 checkProfilePermissions(api.ProfilePermissions o) { |
2530 buildCounterProfilePermissions++; | 2530 buildCounterProfilePermissions++; |
2531 if (buildCounterProfilePermissions < 3) { | 2531 if (buildCounterProfilePermissions < 3) { |
2532 checkUnnamed330(o.effective); | 2532 checkUnnamed1093(o.effective); |
2533 } | 2533 } |
2534 buildCounterProfilePermissions--; | 2534 buildCounterProfilePermissions--; |
2535 } | 2535 } |
2536 | 2536 |
2537 core.int buildCounterProfile = 0; | 2537 core.int buildCounterProfile = 0; |
2538 buildProfile() { | 2538 buildProfile() { |
2539 var o = new api.Profile(); | 2539 var o = new api.Profile(); |
2540 buildCounterProfile++; | 2540 buildCounterProfile++; |
2541 if (buildCounterProfile < 3) { | 2541 if (buildCounterProfile < 3) { |
2542 o.accountId = "foo"; | 2542 o.accountId = "foo"; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2625 checkFilterRef(o.filterRef); | 2625 checkFilterRef(o.filterRef); |
2626 unittest.expect(o.id, unittest.equals('foo')); | 2626 unittest.expect(o.id, unittest.equals('foo')); |
2627 unittest.expect(o.kind, unittest.equals('foo')); | 2627 unittest.expect(o.kind, unittest.equals('foo')); |
2628 checkProfileRef(o.profileRef); | 2628 checkProfileRef(o.profileRef); |
2629 unittest.expect(o.rank, unittest.equals(42)); | 2629 unittest.expect(o.rank, unittest.equals(42)); |
2630 unittest.expect(o.selfLink, unittest.equals('foo')); | 2630 unittest.expect(o.selfLink, unittest.equals('foo')); |
2631 } | 2631 } |
2632 buildCounterProfileFilterLink--; | 2632 buildCounterProfileFilterLink--; |
2633 } | 2633 } |
2634 | 2634 |
2635 buildUnnamed331() { | 2635 buildUnnamed1094() { |
2636 var o = new core.List<api.ProfileFilterLink>(); | 2636 var o = new core.List<api.ProfileFilterLink>(); |
2637 o.add(buildProfileFilterLink()); | 2637 o.add(buildProfileFilterLink()); |
2638 o.add(buildProfileFilterLink()); | 2638 o.add(buildProfileFilterLink()); |
2639 return o; | 2639 return o; |
2640 } | 2640 } |
2641 | 2641 |
2642 checkUnnamed331(core.List<api.ProfileFilterLink> o) { | 2642 checkUnnamed1094(core.List<api.ProfileFilterLink> o) { |
2643 unittest.expect(o, unittest.hasLength(2)); | 2643 unittest.expect(o, unittest.hasLength(2)); |
2644 checkProfileFilterLink(o[0]); | 2644 checkProfileFilterLink(o[0]); |
2645 checkProfileFilterLink(o[1]); | 2645 checkProfileFilterLink(o[1]); |
2646 } | 2646 } |
2647 | 2647 |
2648 core.int buildCounterProfileFilterLinks = 0; | 2648 core.int buildCounterProfileFilterLinks = 0; |
2649 buildProfileFilterLinks() { | 2649 buildProfileFilterLinks() { |
2650 var o = new api.ProfileFilterLinks(); | 2650 var o = new api.ProfileFilterLinks(); |
2651 buildCounterProfileFilterLinks++; | 2651 buildCounterProfileFilterLinks++; |
2652 if (buildCounterProfileFilterLinks < 3) { | 2652 if (buildCounterProfileFilterLinks < 3) { |
2653 o.items = buildUnnamed331(); | 2653 o.items = buildUnnamed1094(); |
2654 o.itemsPerPage = 42; | 2654 o.itemsPerPage = 42; |
2655 o.kind = "foo"; | 2655 o.kind = "foo"; |
2656 o.nextLink = "foo"; | 2656 o.nextLink = "foo"; |
2657 o.previousLink = "foo"; | 2657 o.previousLink = "foo"; |
2658 o.startIndex = 42; | 2658 o.startIndex = 42; |
2659 o.totalResults = 42; | 2659 o.totalResults = 42; |
2660 o.username = "foo"; | 2660 o.username = "foo"; |
2661 } | 2661 } |
2662 buildCounterProfileFilterLinks--; | 2662 buildCounterProfileFilterLinks--; |
2663 return o; | 2663 return o; |
2664 } | 2664 } |
2665 | 2665 |
2666 checkProfileFilterLinks(api.ProfileFilterLinks o) { | 2666 checkProfileFilterLinks(api.ProfileFilterLinks o) { |
2667 buildCounterProfileFilterLinks++; | 2667 buildCounterProfileFilterLinks++; |
2668 if (buildCounterProfileFilterLinks < 3) { | 2668 if (buildCounterProfileFilterLinks < 3) { |
2669 checkUnnamed331(o.items); | 2669 checkUnnamed1094(o.items); |
2670 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2670 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
2671 unittest.expect(o.kind, unittest.equals('foo')); | 2671 unittest.expect(o.kind, unittest.equals('foo')); |
2672 unittest.expect(o.nextLink, unittest.equals('foo')); | 2672 unittest.expect(o.nextLink, unittest.equals('foo')); |
2673 unittest.expect(o.previousLink, unittest.equals('foo')); | 2673 unittest.expect(o.previousLink, unittest.equals('foo')); |
2674 unittest.expect(o.startIndex, unittest.equals(42)); | 2674 unittest.expect(o.startIndex, unittest.equals(42)); |
2675 unittest.expect(o.totalResults, unittest.equals(42)); | 2675 unittest.expect(o.totalResults, unittest.equals(42)); |
2676 unittest.expect(o.username, unittest.equals('foo')); | 2676 unittest.expect(o.username, unittest.equals('foo')); |
2677 } | 2677 } |
2678 buildCounterProfileFilterLinks--; | 2678 buildCounterProfileFilterLinks--; |
2679 } | 2679 } |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2729 if (buildCounterProfileSummary < 3) { | 2729 if (buildCounterProfileSummary < 3) { |
2730 unittest.expect(o.id, unittest.equals('foo')); | 2730 unittest.expect(o.id, unittest.equals('foo')); |
2731 unittest.expect(o.kind, unittest.equals('foo')); | 2731 unittest.expect(o.kind, unittest.equals('foo')); |
2732 unittest.expect(o.name, unittest.equals('foo')); | 2732 unittest.expect(o.name, unittest.equals('foo')); |
2733 unittest.expect(o.starred, unittest.isTrue); | 2733 unittest.expect(o.starred, unittest.isTrue); |
2734 unittest.expect(o.type, unittest.equals('foo')); | 2734 unittest.expect(o.type, unittest.equals('foo')); |
2735 } | 2735 } |
2736 buildCounterProfileSummary--; | 2736 buildCounterProfileSummary--; |
2737 } | 2737 } |
2738 | 2738 |
2739 buildUnnamed332() { | 2739 buildUnnamed1095() { |
2740 var o = new core.List<api.Profile>(); | 2740 var o = new core.List<api.Profile>(); |
2741 o.add(buildProfile()); | 2741 o.add(buildProfile()); |
2742 o.add(buildProfile()); | 2742 o.add(buildProfile()); |
2743 return o; | 2743 return o; |
2744 } | 2744 } |
2745 | 2745 |
2746 checkUnnamed332(core.List<api.Profile> o) { | 2746 checkUnnamed1095(core.List<api.Profile> o) { |
2747 unittest.expect(o, unittest.hasLength(2)); | 2747 unittest.expect(o, unittest.hasLength(2)); |
2748 checkProfile(o[0]); | 2748 checkProfile(o[0]); |
2749 checkProfile(o[1]); | 2749 checkProfile(o[1]); |
2750 } | 2750 } |
2751 | 2751 |
2752 core.int buildCounterProfiles = 0; | 2752 core.int buildCounterProfiles = 0; |
2753 buildProfiles() { | 2753 buildProfiles() { |
2754 var o = new api.Profiles(); | 2754 var o = new api.Profiles(); |
2755 buildCounterProfiles++; | 2755 buildCounterProfiles++; |
2756 if (buildCounterProfiles < 3) { | 2756 if (buildCounterProfiles < 3) { |
2757 o.items = buildUnnamed332(); | 2757 o.items = buildUnnamed1095(); |
2758 o.itemsPerPage = 42; | 2758 o.itemsPerPage = 42; |
2759 o.kind = "foo"; | 2759 o.kind = "foo"; |
2760 o.nextLink = "foo"; | 2760 o.nextLink = "foo"; |
2761 o.previousLink = "foo"; | 2761 o.previousLink = "foo"; |
2762 o.startIndex = 42; | 2762 o.startIndex = 42; |
2763 o.totalResults = 42; | 2763 o.totalResults = 42; |
2764 o.username = "foo"; | 2764 o.username = "foo"; |
2765 } | 2765 } |
2766 buildCounterProfiles--; | 2766 buildCounterProfiles--; |
2767 return o; | 2767 return o; |
2768 } | 2768 } |
2769 | 2769 |
2770 checkProfiles(api.Profiles o) { | 2770 checkProfiles(api.Profiles o) { |
2771 buildCounterProfiles++; | 2771 buildCounterProfiles++; |
2772 if (buildCounterProfiles < 3) { | 2772 if (buildCounterProfiles < 3) { |
2773 checkUnnamed332(o.items); | 2773 checkUnnamed1095(o.items); |
2774 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 2774 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
2775 unittest.expect(o.kind, unittest.equals('foo')); | 2775 unittest.expect(o.kind, unittest.equals('foo')); |
2776 unittest.expect(o.nextLink, unittest.equals('foo')); | 2776 unittest.expect(o.nextLink, unittest.equals('foo')); |
2777 unittest.expect(o.previousLink, unittest.equals('foo')); | 2777 unittest.expect(o.previousLink, unittest.equals('foo')); |
2778 unittest.expect(o.startIndex, unittest.equals(42)); | 2778 unittest.expect(o.startIndex, unittest.equals(42)); |
2779 unittest.expect(o.totalResults, unittest.equals(42)); | 2779 unittest.expect(o.totalResults, unittest.equals(42)); |
2780 unittest.expect(o.username, unittest.equals('foo')); | 2780 unittest.expect(o.username, unittest.equals('foo')); |
2781 } | 2781 } |
2782 buildCounterProfiles--; | 2782 buildCounterProfiles--; |
2783 } | 2783 } |
(...skipping 14 matching lines...) Expand all Loading... |
2798 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { | 2798 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { |
2799 buildCounterRealtimeDataColumnHeaders++; | 2799 buildCounterRealtimeDataColumnHeaders++; |
2800 if (buildCounterRealtimeDataColumnHeaders < 3) { | 2800 if (buildCounterRealtimeDataColumnHeaders < 3) { |
2801 unittest.expect(o.columnType, unittest.equals('foo')); | 2801 unittest.expect(o.columnType, unittest.equals('foo')); |
2802 unittest.expect(o.dataType, unittest.equals('foo')); | 2802 unittest.expect(o.dataType, unittest.equals('foo')); |
2803 unittest.expect(o.name, unittest.equals('foo')); | 2803 unittest.expect(o.name, unittest.equals('foo')); |
2804 } | 2804 } |
2805 buildCounterRealtimeDataColumnHeaders--; | 2805 buildCounterRealtimeDataColumnHeaders--; |
2806 } | 2806 } |
2807 | 2807 |
2808 buildUnnamed333() { | 2808 buildUnnamed1096() { |
2809 var o = new core.List<api.RealtimeDataColumnHeaders>(); | 2809 var o = new core.List<api.RealtimeDataColumnHeaders>(); |
2810 o.add(buildRealtimeDataColumnHeaders()); | 2810 o.add(buildRealtimeDataColumnHeaders()); |
2811 o.add(buildRealtimeDataColumnHeaders()); | 2811 o.add(buildRealtimeDataColumnHeaders()); |
2812 return o; | 2812 return o; |
2813 } | 2813 } |
2814 | 2814 |
2815 checkUnnamed333(core.List<api.RealtimeDataColumnHeaders> o) { | 2815 checkUnnamed1096(core.List<api.RealtimeDataColumnHeaders> o) { |
2816 unittest.expect(o, unittest.hasLength(2)); | 2816 unittest.expect(o, unittest.hasLength(2)); |
2817 checkRealtimeDataColumnHeaders(o[0]); | 2817 checkRealtimeDataColumnHeaders(o[0]); |
2818 checkRealtimeDataColumnHeaders(o[1]); | 2818 checkRealtimeDataColumnHeaders(o[1]); |
2819 } | 2819 } |
2820 | 2820 |
2821 core.int buildCounterRealtimeDataProfileInfo = 0; | 2821 core.int buildCounterRealtimeDataProfileInfo = 0; |
2822 buildRealtimeDataProfileInfo() { | 2822 buildRealtimeDataProfileInfo() { |
2823 var o = new api.RealtimeDataProfileInfo(); | 2823 var o = new api.RealtimeDataProfileInfo(); |
2824 buildCounterRealtimeDataProfileInfo++; | 2824 buildCounterRealtimeDataProfileInfo++; |
2825 if (buildCounterRealtimeDataProfileInfo < 3) { | 2825 if (buildCounterRealtimeDataProfileInfo < 3) { |
(...skipping 14 matching lines...) Expand all Loading... |
2840 unittest.expect(o.accountId, unittest.equals('foo')); | 2840 unittest.expect(o.accountId, unittest.equals('foo')); |
2841 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 2841 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
2842 unittest.expect(o.profileId, unittest.equals('foo')); | 2842 unittest.expect(o.profileId, unittest.equals('foo')); |
2843 unittest.expect(o.profileName, unittest.equals('foo')); | 2843 unittest.expect(o.profileName, unittest.equals('foo')); |
2844 unittest.expect(o.tableId, unittest.equals('foo')); | 2844 unittest.expect(o.tableId, unittest.equals('foo')); |
2845 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 2845 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
2846 } | 2846 } |
2847 buildCounterRealtimeDataProfileInfo--; | 2847 buildCounterRealtimeDataProfileInfo--; |
2848 } | 2848 } |
2849 | 2849 |
2850 buildUnnamed334() { | 2850 buildUnnamed1097() { |
2851 var o = new core.List<core.String>(); | 2851 var o = new core.List<core.String>(); |
2852 o.add("foo"); | 2852 o.add("foo"); |
2853 o.add("foo"); | 2853 o.add("foo"); |
2854 return o; | 2854 return o; |
2855 } | 2855 } |
2856 | 2856 |
2857 checkUnnamed334(core.List<core.String> o) { | 2857 checkUnnamed1097(core.List<core.String> o) { |
2858 unittest.expect(o, unittest.hasLength(2)); | 2858 unittest.expect(o, unittest.hasLength(2)); |
2859 unittest.expect(o[0], unittest.equals('foo')); | 2859 unittest.expect(o[0], unittest.equals('foo')); |
2860 unittest.expect(o[1], unittest.equals('foo')); | 2860 unittest.expect(o[1], unittest.equals('foo')); |
2861 } | 2861 } |
2862 | 2862 |
2863 buildUnnamed335() { | 2863 buildUnnamed1098() { |
2864 var o = new core.List<core.String>(); | 2864 var o = new core.List<core.String>(); |
2865 o.add("foo"); | 2865 o.add("foo"); |
2866 o.add("foo"); | 2866 o.add("foo"); |
2867 return o; | 2867 return o; |
2868 } | 2868 } |
2869 | 2869 |
2870 checkUnnamed335(core.List<core.String> o) { | 2870 checkUnnamed1098(core.List<core.String> o) { |
2871 unittest.expect(o, unittest.hasLength(2)); | 2871 unittest.expect(o, unittest.hasLength(2)); |
2872 unittest.expect(o[0], unittest.equals('foo')); | 2872 unittest.expect(o[0], unittest.equals('foo')); |
2873 unittest.expect(o[1], unittest.equals('foo')); | 2873 unittest.expect(o[1], unittest.equals('foo')); |
2874 } | 2874 } |
2875 | 2875 |
2876 core.int buildCounterRealtimeDataQuery = 0; | 2876 core.int buildCounterRealtimeDataQuery = 0; |
2877 buildRealtimeDataQuery() { | 2877 buildRealtimeDataQuery() { |
2878 var o = new api.RealtimeDataQuery(); | 2878 var o = new api.RealtimeDataQuery(); |
2879 buildCounterRealtimeDataQuery++; | 2879 buildCounterRealtimeDataQuery++; |
2880 if (buildCounterRealtimeDataQuery < 3) { | 2880 if (buildCounterRealtimeDataQuery < 3) { |
2881 o.dimensions = "foo"; | 2881 o.dimensions = "foo"; |
2882 o.filters = "foo"; | 2882 o.filters = "foo"; |
2883 o.ids = "foo"; | 2883 o.ids = "foo"; |
2884 o.max_results = 42; | 2884 o.max_results = 42; |
2885 o.metrics = buildUnnamed334(); | 2885 o.metrics = buildUnnamed1097(); |
2886 o.sort = buildUnnamed335(); | 2886 o.sort = buildUnnamed1098(); |
2887 } | 2887 } |
2888 buildCounterRealtimeDataQuery--; | 2888 buildCounterRealtimeDataQuery--; |
2889 return o; | 2889 return o; |
2890 } | 2890 } |
2891 | 2891 |
2892 checkRealtimeDataQuery(api.RealtimeDataQuery o) { | 2892 checkRealtimeDataQuery(api.RealtimeDataQuery o) { |
2893 buildCounterRealtimeDataQuery++; | 2893 buildCounterRealtimeDataQuery++; |
2894 if (buildCounterRealtimeDataQuery < 3) { | 2894 if (buildCounterRealtimeDataQuery < 3) { |
2895 unittest.expect(o.dimensions, unittest.equals('foo')); | 2895 unittest.expect(o.dimensions, unittest.equals('foo')); |
2896 unittest.expect(o.filters, unittest.equals('foo')); | 2896 unittest.expect(o.filters, unittest.equals('foo')); |
2897 unittest.expect(o.ids, unittest.equals('foo')); | 2897 unittest.expect(o.ids, unittest.equals('foo')); |
2898 unittest.expect(o.max_results, unittest.equals(42)); | 2898 unittest.expect(o.max_results, unittest.equals(42)); |
2899 checkUnnamed334(o.metrics); | 2899 checkUnnamed1097(o.metrics); |
2900 checkUnnamed335(o.sort); | 2900 checkUnnamed1098(o.sort); |
2901 } | 2901 } |
2902 buildCounterRealtimeDataQuery--; | 2902 buildCounterRealtimeDataQuery--; |
2903 } | 2903 } |
2904 | 2904 |
2905 buildUnnamed336() { | 2905 buildUnnamed1099() { |
2906 var o = new core.List<core.String>(); | 2906 var o = new core.List<core.String>(); |
2907 o.add("foo"); | 2907 o.add("foo"); |
2908 o.add("foo"); | 2908 o.add("foo"); |
2909 return o; | 2909 return o; |
2910 } | 2910 } |
2911 | 2911 |
2912 checkUnnamed336(core.List<core.String> o) { | 2912 checkUnnamed1099(core.List<core.String> o) { |
2913 unittest.expect(o, unittest.hasLength(2)); | 2913 unittest.expect(o, unittest.hasLength(2)); |
2914 unittest.expect(o[0], unittest.equals('foo')); | 2914 unittest.expect(o[0], unittest.equals('foo')); |
2915 unittest.expect(o[1], unittest.equals('foo')); | 2915 unittest.expect(o[1], unittest.equals('foo')); |
2916 } | 2916 } |
2917 | 2917 |
2918 buildUnnamed337() { | 2918 buildUnnamed1100() { |
2919 var o = new core.List<core.List<core.String>>(); | 2919 var o = new core.List<core.List<core.String>>(); |
2920 o.add(buildUnnamed336()); | 2920 o.add(buildUnnamed1099()); |
2921 o.add(buildUnnamed336()); | 2921 o.add(buildUnnamed1099()); |
2922 return o; | 2922 return o; |
2923 } | 2923 } |
2924 | 2924 |
2925 checkUnnamed337(core.List<core.List<core.String>> o) { | 2925 checkUnnamed1100(core.List<core.List<core.String>> o) { |
2926 unittest.expect(o, unittest.hasLength(2)); | 2926 unittest.expect(o, unittest.hasLength(2)); |
2927 checkUnnamed336(o[0]); | 2927 checkUnnamed1099(o[0]); |
2928 checkUnnamed336(o[1]); | 2928 checkUnnamed1099(o[1]); |
2929 } | 2929 } |
2930 | 2930 |
2931 buildUnnamed338() { | 2931 buildUnnamed1101() { |
2932 var o = new core.Map<core.String, core.String>(); | 2932 var o = new core.Map<core.String, core.String>(); |
2933 o["x"] = "foo"; | 2933 o["x"] = "foo"; |
2934 o["y"] = "foo"; | 2934 o["y"] = "foo"; |
2935 return o; | 2935 return o; |
2936 } | 2936 } |
2937 | 2937 |
2938 checkUnnamed338(core.Map<core.String, core.String> o) { | 2938 checkUnnamed1101(core.Map<core.String, core.String> o) { |
2939 unittest.expect(o, unittest.hasLength(2)); | 2939 unittest.expect(o, unittest.hasLength(2)); |
2940 unittest.expect(o["x"], unittest.equals('foo')); | 2940 unittest.expect(o["x"], unittest.equals('foo')); |
2941 unittest.expect(o["y"], unittest.equals('foo')); | 2941 unittest.expect(o["y"], unittest.equals('foo')); |
2942 } | 2942 } |
2943 | 2943 |
2944 core.int buildCounterRealtimeData = 0; | 2944 core.int buildCounterRealtimeData = 0; |
2945 buildRealtimeData() { | 2945 buildRealtimeData() { |
2946 var o = new api.RealtimeData(); | 2946 var o = new api.RealtimeData(); |
2947 buildCounterRealtimeData++; | 2947 buildCounterRealtimeData++; |
2948 if (buildCounterRealtimeData < 3) { | 2948 if (buildCounterRealtimeData < 3) { |
2949 o.columnHeaders = buildUnnamed333(); | 2949 o.columnHeaders = buildUnnamed1096(); |
2950 o.id = "foo"; | 2950 o.id = "foo"; |
2951 o.kind = "foo"; | 2951 o.kind = "foo"; |
2952 o.profileInfo = buildRealtimeDataProfileInfo(); | 2952 o.profileInfo = buildRealtimeDataProfileInfo(); |
2953 o.query = buildRealtimeDataQuery(); | 2953 o.query = buildRealtimeDataQuery(); |
2954 o.rows = buildUnnamed337(); | 2954 o.rows = buildUnnamed1100(); |
2955 o.selfLink = "foo"; | 2955 o.selfLink = "foo"; |
2956 o.totalResults = 42; | 2956 o.totalResults = 42; |
2957 o.totalsForAllResults = buildUnnamed338(); | 2957 o.totalsForAllResults = buildUnnamed1101(); |
2958 } | 2958 } |
2959 buildCounterRealtimeData--; | 2959 buildCounterRealtimeData--; |
2960 return o; | 2960 return o; |
2961 } | 2961 } |
2962 | 2962 |
2963 checkRealtimeData(api.RealtimeData o) { | 2963 checkRealtimeData(api.RealtimeData o) { |
2964 buildCounterRealtimeData++; | 2964 buildCounterRealtimeData++; |
2965 if (buildCounterRealtimeData < 3) { | 2965 if (buildCounterRealtimeData < 3) { |
2966 checkUnnamed333(o.columnHeaders); | 2966 checkUnnamed1096(o.columnHeaders); |
2967 unittest.expect(o.id, unittest.equals('foo')); | 2967 unittest.expect(o.id, unittest.equals('foo')); |
2968 unittest.expect(o.kind, unittest.equals('foo')); | 2968 unittest.expect(o.kind, unittest.equals('foo')); |
2969 checkRealtimeDataProfileInfo(o.profileInfo); | 2969 checkRealtimeDataProfileInfo(o.profileInfo); |
2970 checkRealtimeDataQuery(o.query); | 2970 checkRealtimeDataQuery(o.query); |
2971 checkUnnamed337(o.rows); | 2971 checkUnnamed1100(o.rows); |
2972 unittest.expect(o.selfLink, unittest.equals('foo')); | 2972 unittest.expect(o.selfLink, unittest.equals('foo')); |
2973 unittest.expect(o.totalResults, unittest.equals(42)); | 2973 unittest.expect(o.totalResults, unittest.equals(42)); |
2974 checkUnnamed338(o.totalsForAllResults); | 2974 checkUnnamed1101(o.totalsForAllResults); |
2975 } | 2975 } |
2976 buildCounterRealtimeData--; | 2976 buildCounterRealtimeData--; |
2977 } | 2977 } |
2978 | 2978 |
2979 core.int buildCounterSegment = 0; | 2979 core.int buildCounterSegment = 0; |
2980 buildSegment() { | 2980 buildSegment() { |
2981 var o = new api.Segment(); | 2981 var o = new api.Segment(); |
2982 buildCounterSegment++; | 2982 buildCounterSegment++; |
2983 if (buildCounterSegment < 3) { | 2983 if (buildCounterSegment < 3) { |
2984 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... |
3004 unittest.expect(o.kind, unittest.equals('foo')); | 3004 unittest.expect(o.kind, unittest.equals('foo')); |
3005 unittest.expect(o.name, unittest.equals('foo')); | 3005 unittest.expect(o.name, unittest.equals('foo')); |
3006 unittest.expect(o.segmentId, unittest.equals('foo')); | 3006 unittest.expect(o.segmentId, unittest.equals('foo')); |
3007 unittest.expect(o.selfLink, unittest.equals('foo')); | 3007 unittest.expect(o.selfLink, unittest.equals('foo')); |
3008 unittest.expect(o.type, unittest.equals('foo')); | 3008 unittest.expect(o.type, unittest.equals('foo')); |
3009 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"))); |
3010 } | 3010 } |
3011 buildCounterSegment--; | 3011 buildCounterSegment--; |
3012 } | 3012 } |
3013 | 3013 |
3014 buildUnnamed339() { | 3014 buildUnnamed1102() { |
3015 var o = new core.List<api.Segment>(); | 3015 var o = new core.List<api.Segment>(); |
3016 o.add(buildSegment()); | 3016 o.add(buildSegment()); |
3017 o.add(buildSegment()); | 3017 o.add(buildSegment()); |
3018 return o; | 3018 return o; |
3019 } | 3019 } |
3020 | 3020 |
3021 checkUnnamed339(core.List<api.Segment> o) { | 3021 checkUnnamed1102(core.List<api.Segment> o) { |
3022 unittest.expect(o, unittest.hasLength(2)); | 3022 unittest.expect(o, unittest.hasLength(2)); |
3023 checkSegment(o[0]); | 3023 checkSegment(o[0]); |
3024 checkSegment(o[1]); | 3024 checkSegment(o[1]); |
3025 } | 3025 } |
3026 | 3026 |
3027 core.int buildCounterSegments = 0; | 3027 core.int buildCounterSegments = 0; |
3028 buildSegments() { | 3028 buildSegments() { |
3029 var o = new api.Segments(); | 3029 var o = new api.Segments(); |
3030 buildCounterSegments++; | 3030 buildCounterSegments++; |
3031 if (buildCounterSegments < 3) { | 3031 if (buildCounterSegments < 3) { |
3032 o.items = buildUnnamed339(); | 3032 o.items = buildUnnamed1102(); |
3033 o.itemsPerPage = 42; | 3033 o.itemsPerPage = 42; |
3034 o.kind = "foo"; | 3034 o.kind = "foo"; |
3035 o.nextLink = "foo"; | 3035 o.nextLink = "foo"; |
3036 o.previousLink = "foo"; | 3036 o.previousLink = "foo"; |
3037 o.startIndex = 42; | 3037 o.startIndex = 42; |
3038 o.totalResults = 42; | 3038 o.totalResults = 42; |
3039 o.username = "foo"; | 3039 o.username = "foo"; |
3040 } | 3040 } |
3041 buildCounterSegments--; | 3041 buildCounterSegments--; |
3042 return o; | 3042 return o; |
3043 } | 3043 } |
3044 | 3044 |
3045 checkSegments(api.Segments o) { | 3045 checkSegments(api.Segments o) { |
3046 buildCounterSegments++; | 3046 buildCounterSegments++; |
3047 if (buildCounterSegments < 3) { | 3047 if (buildCounterSegments < 3) { |
3048 checkUnnamed339(o.items); | 3048 checkUnnamed1102(o.items); |
3049 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3049 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
3050 unittest.expect(o.kind, unittest.equals('foo')); | 3050 unittest.expect(o.kind, unittest.equals('foo')); |
3051 unittest.expect(o.nextLink, unittest.equals('foo')); | 3051 unittest.expect(o.nextLink, unittest.equals('foo')); |
3052 unittest.expect(o.previousLink, unittest.equals('foo')); | 3052 unittest.expect(o.previousLink, unittest.equals('foo')); |
3053 unittest.expect(o.startIndex, unittest.equals(42)); | 3053 unittest.expect(o.startIndex, unittest.equals(42)); |
3054 unittest.expect(o.totalResults, unittest.equals(42)); | 3054 unittest.expect(o.totalResults, unittest.equals(42)); |
3055 unittest.expect(o.username, unittest.equals('foo')); | 3055 unittest.expect(o.username, unittest.equals('foo')); |
3056 } | 3056 } |
3057 buildCounterSegments--; | 3057 buildCounterSegments--; |
3058 } | 3058 } |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3145 unittest.expect(o.selfLink, unittest.equals('foo')); | 3145 unittest.expect(o.selfLink, unittest.equals('foo')); |
3146 unittest.expect(o.start_date, unittest.equals('foo')); | 3146 unittest.expect(o.start_date, unittest.equals('foo')); |
3147 unittest.expect(o.status, unittest.equals('foo')); | 3147 unittest.expect(o.status, unittest.equals('foo')); |
3148 unittest.expect(o.title, unittest.equals('foo')); | 3148 unittest.expect(o.title, unittest.equals('foo')); |
3149 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"))); |
3150 unittest.expect(o.webPropertyId, unittest.equals('foo')); | 3150 unittest.expect(o.webPropertyId, unittest.equals('foo')); |
3151 } | 3151 } |
3152 buildCounterUnsampledReport--; | 3152 buildCounterUnsampledReport--; |
3153 } | 3153 } |
3154 | 3154 |
3155 buildUnnamed340() { | 3155 buildUnnamed1103() { |
3156 var o = new core.List<api.UnsampledReport>(); | 3156 var o = new core.List<api.UnsampledReport>(); |
3157 o.add(buildUnsampledReport()); | 3157 o.add(buildUnsampledReport()); |
3158 o.add(buildUnsampledReport()); | 3158 o.add(buildUnsampledReport()); |
3159 return o; | 3159 return o; |
3160 } | 3160 } |
3161 | 3161 |
3162 checkUnnamed340(core.List<api.UnsampledReport> o) { | 3162 checkUnnamed1103(core.List<api.UnsampledReport> o) { |
3163 unittest.expect(o, unittest.hasLength(2)); | 3163 unittest.expect(o, unittest.hasLength(2)); |
3164 checkUnsampledReport(o[0]); | 3164 checkUnsampledReport(o[0]); |
3165 checkUnsampledReport(o[1]); | 3165 checkUnsampledReport(o[1]); |
3166 } | 3166 } |
3167 | 3167 |
3168 core.int buildCounterUnsampledReports = 0; | 3168 core.int buildCounterUnsampledReports = 0; |
3169 buildUnsampledReports() { | 3169 buildUnsampledReports() { |
3170 var o = new api.UnsampledReports(); | 3170 var o = new api.UnsampledReports(); |
3171 buildCounterUnsampledReports++; | 3171 buildCounterUnsampledReports++; |
3172 if (buildCounterUnsampledReports < 3) { | 3172 if (buildCounterUnsampledReports < 3) { |
3173 o.items = buildUnnamed340(); | 3173 o.items = buildUnnamed1103(); |
3174 o.itemsPerPage = 42; | 3174 o.itemsPerPage = 42; |
3175 o.kind = "foo"; | 3175 o.kind = "foo"; |
3176 o.nextLink = "foo"; | 3176 o.nextLink = "foo"; |
3177 o.previousLink = "foo"; | 3177 o.previousLink = "foo"; |
3178 o.startIndex = 42; | 3178 o.startIndex = 42; |
3179 o.totalResults = 42; | 3179 o.totalResults = 42; |
3180 o.username = "foo"; | 3180 o.username = "foo"; |
3181 } | 3181 } |
3182 buildCounterUnsampledReports--; | 3182 buildCounterUnsampledReports--; |
3183 return o; | 3183 return o; |
3184 } | 3184 } |
3185 | 3185 |
3186 checkUnsampledReports(api.UnsampledReports o) { | 3186 checkUnsampledReports(api.UnsampledReports o) { |
3187 buildCounterUnsampledReports++; | 3187 buildCounterUnsampledReports++; |
3188 if (buildCounterUnsampledReports < 3) { | 3188 if (buildCounterUnsampledReports < 3) { |
3189 checkUnnamed340(o.items); | 3189 checkUnnamed1103(o.items); |
3190 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3190 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
3191 unittest.expect(o.kind, unittest.equals('foo')); | 3191 unittest.expect(o.kind, unittest.equals('foo')); |
3192 unittest.expect(o.nextLink, unittest.equals('foo')); | 3192 unittest.expect(o.nextLink, unittest.equals('foo')); |
3193 unittest.expect(o.previousLink, unittest.equals('foo')); | 3193 unittest.expect(o.previousLink, unittest.equals('foo')); |
3194 unittest.expect(o.startIndex, unittest.equals(42)); | 3194 unittest.expect(o.startIndex, unittest.equals(42)); |
3195 unittest.expect(o.totalResults, unittest.equals(42)); | 3195 unittest.expect(o.totalResults, unittest.equals(42)); |
3196 unittest.expect(o.username, unittest.equals('foo')); | 3196 unittest.expect(o.username, unittest.equals('foo')); |
3197 } | 3197 } |
3198 buildCounterUnsampledReports--; | 3198 buildCounterUnsampledReports--; |
3199 } | 3199 } |
3200 | 3200 |
3201 buildUnnamed341() { | 3201 buildUnnamed1104() { |
3202 var o = new core.List<core.String>(); | 3202 var o = new core.List<core.String>(); |
3203 o.add("foo"); | 3203 o.add("foo"); |
3204 o.add("foo"); | 3204 o.add("foo"); |
3205 return o; | 3205 return o; |
3206 } | 3206 } |
3207 | 3207 |
3208 checkUnnamed341(core.List<core.String> o) { | 3208 checkUnnamed1104(core.List<core.String> o) { |
3209 unittest.expect(o, unittest.hasLength(2)); | 3209 unittest.expect(o, unittest.hasLength(2)); |
3210 unittest.expect(o[0], unittest.equals('foo')); | 3210 unittest.expect(o[0], unittest.equals('foo')); |
3211 unittest.expect(o[1], unittest.equals('foo')); | 3211 unittest.expect(o[1], unittest.equals('foo')); |
3212 } | 3212 } |
3213 | 3213 |
3214 core.int buildCounterUpload = 0; | 3214 core.int buildCounterUpload = 0; |
3215 buildUpload() { | 3215 buildUpload() { |
3216 var o = new api.Upload(); | 3216 var o = new api.Upload(); |
3217 buildCounterUpload++; | 3217 buildCounterUpload++; |
3218 if (buildCounterUpload < 3) { | 3218 if (buildCounterUpload < 3) { |
3219 o.accountId = "foo"; | 3219 o.accountId = "foo"; |
3220 o.customDataSourceId = "foo"; | 3220 o.customDataSourceId = "foo"; |
3221 o.errors = buildUnnamed341(); | 3221 o.errors = buildUnnamed1104(); |
3222 o.id = "foo"; | 3222 o.id = "foo"; |
3223 o.kind = "foo"; | 3223 o.kind = "foo"; |
3224 o.status = "foo"; | 3224 o.status = "foo"; |
3225 } | 3225 } |
3226 buildCounterUpload--; | 3226 buildCounterUpload--; |
3227 return o; | 3227 return o; |
3228 } | 3228 } |
3229 | 3229 |
3230 checkUpload(api.Upload o) { | 3230 checkUpload(api.Upload o) { |
3231 buildCounterUpload++; | 3231 buildCounterUpload++; |
3232 if (buildCounterUpload < 3) { | 3232 if (buildCounterUpload < 3) { |
3233 unittest.expect(o.accountId, unittest.equals('foo')); | 3233 unittest.expect(o.accountId, unittest.equals('foo')); |
3234 unittest.expect(o.customDataSourceId, unittest.equals('foo')); | 3234 unittest.expect(o.customDataSourceId, unittest.equals('foo')); |
3235 checkUnnamed341(o.errors); | 3235 checkUnnamed1104(o.errors); |
3236 unittest.expect(o.id, unittest.equals('foo')); | 3236 unittest.expect(o.id, unittest.equals('foo')); |
3237 unittest.expect(o.kind, unittest.equals('foo')); | 3237 unittest.expect(o.kind, unittest.equals('foo')); |
3238 unittest.expect(o.status, unittest.equals('foo')); | 3238 unittest.expect(o.status, unittest.equals('foo')); |
3239 } | 3239 } |
3240 buildCounterUpload--; | 3240 buildCounterUpload--; |
3241 } | 3241 } |
3242 | 3242 |
3243 buildUnnamed342() { | 3243 buildUnnamed1105() { |
3244 var o = new core.List<api.Upload>(); | 3244 var o = new core.List<api.Upload>(); |
3245 o.add(buildUpload()); | 3245 o.add(buildUpload()); |
3246 o.add(buildUpload()); | 3246 o.add(buildUpload()); |
3247 return o; | 3247 return o; |
3248 } | 3248 } |
3249 | 3249 |
3250 checkUnnamed342(core.List<api.Upload> o) { | 3250 checkUnnamed1105(core.List<api.Upload> o) { |
3251 unittest.expect(o, unittest.hasLength(2)); | 3251 unittest.expect(o, unittest.hasLength(2)); |
3252 checkUpload(o[0]); | 3252 checkUpload(o[0]); |
3253 checkUpload(o[1]); | 3253 checkUpload(o[1]); |
3254 } | 3254 } |
3255 | 3255 |
3256 core.int buildCounterUploads = 0; | 3256 core.int buildCounterUploads = 0; |
3257 buildUploads() { | 3257 buildUploads() { |
3258 var o = new api.Uploads(); | 3258 var o = new api.Uploads(); |
3259 buildCounterUploads++; | 3259 buildCounterUploads++; |
3260 if (buildCounterUploads < 3) { | 3260 if (buildCounterUploads < 3) { |
3261 o.items = buildUnnamed342(); | 3261 o.items = buildUnnamed1105(); |
3262 o.itemsPerPage = 42; | 3262 o.itemsPerPage = 42; |
3263 o.kind = "foo"; | 3263 o.kind = "foo"; |
3264 o.nextLink = "foo"; | 3264 o.nextLink = "foo"; |
3265 o.previousLink = "foo"; | 3265 o.previousLink = "foo"; |
3266 o.startIndex = 42; | 3266 o.startIndex = 42; |
3267 o.totalResults = 42; | 3267 o.totalResults = 42; |
3268 } | 3268 } |
3269 buildCounterUploads--; | 3269 buildCounterUploads--; |
3270 return o; | 3270 return o; |
3271 } | 3271 } |
3272 | 3272 |
3273 checkUploads(api.Uploads o) { | 3273 checkUploads(api.Uploads o) { |
3274 buildCounterUploads++; | 3274 buildCounterUploads++; |
3275 if (buildCounterUploads < 3) { | 3275 if (buildCounterUploads < 3) { |
3276 checkUnnamed342(o.items); | 3276 checkUnnamed1105(o.items); |
3277 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3277 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
3278 unittest.expect(o.kind, unittest.equals('foo')); | 3278 unittest.expect(o.kind, unittest.equals('foo')); |
3279 unittest.expect(o.nextLink, unittest.equals('foo')); | 3279 unittest.expect(o.nextLink, unittest.equals('foo')); |
3280 unittest.expect(o.previousLink, unittest.equals('foo')); | 3280 unittest.expect(o.previousLink, unittest.equals('foo')); |
3281 unittest.expect(o.startIndex, unittest.equals(42)); | 3281 unittest.expect(o.startIndex, unittest.equals(42)); |
3282 unittest.expect(o.totalResults, unittest.equals(42)); | 3282 unittest.expect(o.totalResults, unittest.equals(42)); |
3283 } | 3283 } |
3284 buildCounterUploads--; | 3284 buildCounterUploads--; |
3285 } | 3285 } |
3286 | 3286 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3329 unittest.expect(o.accountId, unittest.equals('foo')); | 3329 unittest.expect(o.accountId, unittest.equals('foo')); |
3330 unittest.expect(o.href, unittest.equals('foo')); | 3330 unittest.expect(o.href, unittest.equals('foo')); |
3331 unittest.expect(o.id, unittest.equals('foo')); | 3331 unittest.expect(o.id, unittest.equals('foo')); |
3332 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3332 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
3333 unittest.expect(o.kind, unittest.equals('foo')); | 3333 unittest.expect(o.kind, unittest.equals('foo')); |
3334 unittest.expect(o.name, unittest.equals('foo')); | 3334 unittest.expect(o.name, unittest.equals('foo')); |
3335 } | 3335 } |
3336 buildCounterWebPropertyRef--; | 3336 buildCounterWebPropertyRef--; |
3337 } | 3337 } |
3338 | 3338 |
3339 buildUnnamed343() { | 3339 buildUnnamed1106() { |
3340 var o = new core.List<api.ProfileSummary>(); | 3340 var o = new core.List<api.ProfileSummary>(); |
3341 o.add(buildProfileSummary()); | 3341 o.add(buildProfileSummary()); |
3342 o.add(buildProfileSummary()); | 3342 o.add(buildProfileSummary()); |
3343 return o; | 3343 return o; |
3344 } | 3344 } |
3345 | 3345 |
3346 checkUnnamed343(core.List<api.ProfileSummary> o) { | 3346 checkUnnamed1106(core.List<api.ProfileSummary> o) { |
3347 unittest.expect(o, unittest.hasLength(2)); | 3347 unittest.expect(o, unittest.hasLength(2)); |
3348 checkProfileSummary(o[0]); | 3348 checkProfileSummary(o[0]); |
3349 checkProfileSummary(o[1]); | 3349 checkProfileSummary(o[1]); |
3350 } | 3350 } |
3351 | 3351 |
3352 core.int buildCounterWebPropertySummary = 0; | 3352 core.int buildCounterWebPropertySummary = 0; |
3353 buildWebPropertySummary() { | 3353 buildWebPropertySummary() { |
3354 var o = new api.WebPropertySummary(); | 3354 var o = new api.WebPropertySummary(); |
3355 buildCounterWebPropertySummary++; | 3355 buildCounterWebPropertySummary++; |
3356 if (buildCounterWebPropertySummary < 3) { | 3356 if (buildCounterWebPropertySummary < 3) { |
3357 o.id = "foo"; | 3357 o.id = "foo"; |
3358 o.internalWebPropertyId = "foo"; | 3358 o.internalWebPropertyId = "foo"; |
3359 o.kind = "foo"; | 3359 o.kind = "foo"; |
3360 o.level = "foo"; | 3360 o.level = "foo"; |
3361 o.name = "foo"; | 3361 o.name = "foo"; |
3362 o.profiles = buildUnnamed343(); | 3362 o.profiles = buildUnnamed1106(); |
3363 o.starred = true; | 3363 o.starred = true; |
3364 o.websiteUrl = "foo"; | 3364 o.websiteUrl = "foo"; |
3365 } | 3365 } |
3366 buildCounterWebPropertySummary--; | 3366 buildCounterWebPropertySummary--; |
3367 return o; | 3367 return o; |
3368 } | 3368 } |
3369 | 3369 |
3370 checkWebPropertySummary(api.WebPropertySummary o) { | 3370 checkWebPropertySummary(api.WebPropertySummary o) { |
3371 buildCounterWebPropertySummary++; | 3371 buildCounterWebPropertySummary++; |
3372 if (buildCounterWebPropertySummary < 3) { | 3372 if (buildCounterWebPropertySummary < 3) { |
3373 unittest.expect(o.id, unittest.equals('foo')); | 3373 unittest.expect(o.id, unittest.equals('foo')); |
3374 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); | 3374 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); |
3375 unittest.expect(o.kind, unittest.equals('foo')); | 3375 unittest.expect(o.kind, unittest.equals('foo')); |
3376 unittest.expect(o.level, unittest.equals('foo')); | 3376 unittest.expect(o.level, unittest.equals('foo')); |
3377 unittest.expect(o.name, unittest.equals('foo')); | 3377 unittest.expect(o.name, unittest.equals('foo')); |
3378 checkUnnamed343(o.profiles); | 3378 checkUnnamed1106(o.profiles); |
3379 unittest.expect(o.starred, unittest.isTrue); | 3379 unittest.expect(o.starred, unittest.isTrue); |
3380 unittest.expect(o.websiteUrl, unittest.equals('foo')); | 3380 unittest.expect(o.websiteUrl, unittest.equals('foo')); |
3381 } | 3381 } |
3382 buildCounterWebPropertySummary--; | 3382 buildCounterWebPropertySummary--; |
3383 } | 3383 } |
3384 | 3384 |
3385 buildUnnamed344() { | 3385 buildUnnamed1107() { |
3386 var o = new core.List<api.Webproperty>(); | 3386 var o = new core.List<api.Webproperty>(); |
3387 o.add(buildWebproperty()); | 3387 o.add(buildWebproperty()); |
3388 o.add(buildWebproperty()); | 3388 o.add(buildWebproperty()); |
3389 return o; | 3389 return o; |
3390 } | 3390 } |
3391 | 3391 |
3392 checkUnnamed344(core.List<api.Webproperty> o) { | 3392 checkUnnamed1107(core.List<api.Webproperty> o) { |
3393 unittest.expect(o, unittest.hasLength(2)); | 3393 unittest.expect(o, unittest.hasLength(2)); |
3394 checkWebproperty(o[0]); | 3394 checkWebproperty(o[0]); |
3395 checkWebproperty(o[1]); | 3395 checkWebproperty(o[1]); |
3396 } | 3396 } |
3397 | 3397 |
3398 core.int buildCounterWebproperties = 0; | 3398 core.int buildCounterWebproperties = 0; |
3399 buildWebproperties() { | 3399 buildWebproperties() { |
3400 var o = new api.Webproperties(); | 3400 var o = new api.Webproperties(); |
3401 buildCounterWebproperties++; | 3401 buildCounterWebproperties++; |
3402 if (buildCounterWebproperties < 3) { | 3402 if (buildCounterWebproperties < 3) { |
3403 o.items = buildUnnamed344(); | 3403 o.items = buildUnnamed1107(); |
3404 o.itemsPerPage = 42; | 3404 o.itemsPerPage = 42; |
3405 o.kind = "foo"; | 3405 o.kind = "foo"; |
3406 o.nextLink = "foo"; | 3406 o.nextLink = "foo"; |
3407 o.previousLink = "foo"; | 3407 o.previousLink = "foo"; |
3408 o.startIndex = 42; | 3408 o.startIndex = 42; |
3409 o.totalResults = 42; | 3409 o.totalResults = 42; |
3410 o.username = "foo"; | 3410 o.username = "foo"; |
3411 } | 3411 } |
3412 buildCounterWebproperties--; | 3412 buildCounterWebproperties--; |
3413 return o; | 3413 return o; |
3414 } | 3414 } |
3415 | 3415 |
3416 checkWebproperties(api.Webproperties o) { | 3416 checkWebproperties(api.Webproperties o) { |
3417 buildCounterWebproperties++; | 3417 buildCounterWebproperties++; |
3418 if (buildCounterWebproperties < 3) { | 3418 if (buildCounterWebproperties < 3) { |
3419 checkUnnamed344(o.items); | 3419 checkUnnamed1107(o.items); |
3420 unittest.expect(o.itemsPerPage, unittest.equals(42)); | 3420 unittest.expect(o.itemsPerPage, unittest.equals(42)); |
3421 unittest.expect(o.kind, unittest.equals('foo')); | 3421 unittest.expect(o.kind, unittest.equals('foo')); |
3422 unittest.expect(o.nextLink, unittest.equals('foo')); | 3422 unittest.expect(o.nextLink, unittest.equals('foo')); |
3423 unittest.expect(o.previousLink, unittest.equals('foo')); | 3423 unittest.expect(o.previousLink, unittest.equals('foo')); |
3424 unittest.expect(o.startIndex, unittest.equals(42)); | 3424 unittest.expect(o.startIndex, unittest.equals(42)); |
3425 unittest.expect(o.totalResults, unittest.equals(42)); | 3425 unittest.expect(o.totalResults, unittest.equals(42)); |
3426 unittest.expect(o.username, unittest.equals('foo')); | 3426 unittest.expect(o.username, unittest.equals('foo')); |
3427 } | 3427 } |
3428 buildCounterWebproperties--; | 3428 buildCounterWebproperties--; |
3429 } | 3429 } |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3463 | 3463 |
3464 checkWebpropertyParentLink(api.WebpropertyParentLink o) { | 3464 checkWebpropertyParentLink(api.WebpropertyParentLink o) { |
3465 buildCounterWebpropertyParentLink++; | 3465 buildCounterWebpropertyParentLink++; |
3466 if (buildCounterWebpropertyParentLink < 3) { | 3466 if (buildCounterWebpropertyParentLink < 3) { |
3467 unittest.expect(o.href, unittest.equals('foo')); | 3467 unittest.expect(o.href, unittest.equals('foo')); |
3468 unittest.expect(o.type, unittest.equals('foo')); | 3468 unittest.expect(o.type, unittest.equals('foo')); |
3469 } | 3469 } |
3470 buildCounterWebpropertyParentLink--; | 3470 buildCounterWebpropertyParentLink--; |
3471 } | 3471 } |
3472 | 3472 |
3473 buildUnnamed345() { | 3473 buildUnnamed1108() { |
3474 var o = new core.List<core.String>(); | 3474 var o = new core.List<core.String>(); |
3475 o.add("foo"); | 3475 o.add("foo"); |
3476 o.add("foo"); | 3476 o.add("foo"); |
3477 return o; | 3477 return o; |
3478 } | 3478 } |
3479 | 3479 |
3480 checkUnnamed345(core.List<core.String> o) { | 3480 checkUnnamed1108(core.List<core.String> o) { |
3481 unittest.expect(o, unittest.hasLength(2)); | 3481 unittest.expect(o, unittest.hasLength(2)); |
3482 unittest.expect(o[0], unittest.equals('foo')); | 3482 unittest.expect(o[0], unittest.equals('foo')); |
3483 unittest.expect(o[1], unittest.equals('foo')); | 3483 unittest.expect(o[1], unittest.equals('foo')); |
3484 } | 3484 } |
3485 | 3485 |
3486 core.int buildCounterWebpropertyPermissions = 0; | 3486 core.int buildCounterWebpropertyPermissions = 0; |
3487 buildWebpropertyPermissions() { | 3487 buildWebpropertyPermissions() { |
3488 var o = new api.WebpropertyPermissions(); | 3488 var o = new api.WebpropertyPermissions(); |
3489 buildCounterWebpropertyPermissions++; | 3489 buildCounterWebpropertyPermissions++; |
3490 if (buildCounterWebpropertyPermissions < 3) { | 3490 if (buildCounterWebpropertyPermissions < 3) { |
3491 o.effective = buildUnnamed345(); | 3491 o.effective = buildUnnamed1108(); |
3492 } | 3492 } |
3493 buildCounterWebpropertyPermissions--; | 3493 buildCounterWebpropertyPermissions--; |
3494 return o; | 3494 return o; |
3495 } | 3495 } |
3496 | 3496 |
3497 checkWebpropertyPermissions(api.WebpropertyPermissions o) { | 3497 checkWebpropertyPermissions(api.WebpropertyPermissions o) { |
3498 buildCounterWebpropertyPermissions++; | 3498 buildCounterWebpropertyPermissions++; |
3499 if (buildCounterWebpropertyPermissions < 3) { | 3499 if (buildCounterWebpropertyPermissions < 3) { |
3500 checkUnnamed345(o.effective); | 3500 checkUnnamed1108(o.effective); |
3501 } | 3501 } |
3502 buildCounterWebpropertyPermissions--; | 3502 buildCounterWebpropertyPermissions--; |
3503 } | 3503 } |
3504 | 3504 |
3505 core.int buildCounterWebproperty = 0; | 3505 core.int buildCounterWebproperty = 0; |
3506 buildWebproperty() { | 3506 buildWebproperty() { |
3507 var o = new api.Webproperty(); | 3507 var o = new api.Webproperty(); |
3508 buildCounterWebproperty++; | 3508 buildCounterWebproperty++; |
3509 if (buildCounterWebproperty < 3) { | 3509 if (buildCounterWebproperty < 3) { |
3510 o.accountId = "foo"; | 3510 o.accountId = "foo"; |
(...skipping 6218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
9729 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou
ntTicket response) { | 9729 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou
ntTicket response) { |
9730 checkAccountTicket(response); | 9730 checkAccountTicket(response); |
9731 }))); | 9731 }))); |
9732 }); | 9732 }); |
9733 | 9733 |
9734 }); | 9734 }); |
9735 | 9735 |
9736 | 9736 |
9737 } | 9737 } |
9738 | 9738 |
OLD | NEW |