Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(345)

Side by Side Diff: generated/googleapis/test/analytics/v3_test.dart

Issue 2695743002: Api-roll 45: 2017-02-13 (Closed)
Patch Set: reverted local changes to pubspec file Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 buildUnnamed865() { 75 buildUnnamed872() {
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 checkUnnamed865(core.List<core.String> o) { 82 checkUnnamed872(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 = buildUnnamed865(); 93 o.effective = buildUnnamed872();
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 checkUnnamed865(o.effective); 102 checkUnnamed872(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
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 buildUnnamed866() { 167 buildUnnamed873() {
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 checkUnnamed866(core.List<api.AccountSummary> o) { 174 checkUnnamed873(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 = buildUnnamed866(); 185 o.items = buildUnnamed873();
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 checkUnnamed866(o.items); 201 checkUnnamed873(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 buildUnnamed867() { 213 buildUnnamed874() {
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 checkUnnamed867(core.List<api.WebPropertySummary> o) { 220 checkUnnamed874(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 = buildUnnamed867(); 235 o.webProperties = buildUnnamed874();
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 checkUnnamed867(o.webProperties); 248 checkUnnamed874(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
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 buildUnnamed868() { 282 buildUnnamed875() {
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 checkUnnamed868(core.List<api.Account> o) { 289 checkUnnamed875(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 = buildUnnamed868(); 300 o.items = buildUnnamed875();
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 checkUnnamed868(o.items); 316 checkUnnamed875(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
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 buildUnnamed869() { 351 buildUnnamed876() {
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 checkUnnamed869(core.List<core.String> o) { 358 checkUnnamed876(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 = buildUnnamed869(); 369 o.customDataImportUids = buildUnnamed876();
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 checkUnnamed869(o.customDataImportUids); 378 checkUnnamed876(o.customDataImportUids);
379 } 379 }
380 buildCounterAnalyticsDataimportDeleteUploadDataRequest--; 380 buildCounterAnalyticsDataimportDeleteUploadDataRequest--;
381 } 381 }
382 382
383 buildUnnamed870() { 383 buildUnnamed877() {
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 checkUnnamed870(core.Map<core.String, core.String> o) { 390 checkUnnamed877(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 = buildUnnamed870(); 401 o.attributes = buildUnnamed877();
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 checkUnnamed870(o.attributes); 412 checkUnnamed877(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 buildUnnamed871() { 419 buildUnnamed878() {
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 checkUnnamed871(core.List<core.String> o) { 426 checkUnnamed878(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 buildUnnamed872() { 432 buildUnnamed879() {
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 checkUnnamed872(core.List<api.Column> o) { 439 checkUnnamed879(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 = buildUnnamed871(); 450 o.attributeNames = buildUnnamed878();
451 o.etag = "foo"; 451 o.etag = "foo";
452 o.items = buildUnnamed872(); 452 o.items = buildUnnamed879();
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 checkUnnamed871(o.attributeNames); 463 checkUnnamed878(o.attributeNames);
464 unittest.expect(o.etag, unittest.equals('foo')); 464 unittest.expect(o.etag, unittest.equals('foo'));
465 checkUnnamed872(o.items); 465 checkUnnamed879(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
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 buildUnnamed873() { 514 buildUnnamed880() {
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 checkUnnamed873(core.List<core.String> o) { 521 checkUnnamed880(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 = buildUnnamed873(); 541 o.profilesLinked = buildUnnamed880();
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 checkUnnamed873(o.profilesLinked); 564 checkUnnamed880(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 buildUnnamed874() { 574 buildUnnamed881() {
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 checkUnnamed874(core.List<api.CustomDataSource> o) { 581 checkUnnamed881(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 = buildUnnamed874(); 592 o.items = buildUnnamed881();
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 checkUnnamed874(o.items); 608 checkUnnamed881(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
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 buildUnnamed875() { 682 buildUnnamed882() {
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 checkUnnamed875(core.List<api.CustomDimension> o) { 689 checkUnnamed882(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 = buildUnnamed875(); 700 o.items = buildUnnamed882();
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 checkUnnamed875(o.items); 716 checkUnnamed882(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
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 buildUnnamed876() { 796 buildUnnamed883() {
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 checkUnnamed876(core.List<api.CustomMetric> o) { 803 checkUnnamed883(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 = buildUnnamed876(); 814 o.items = buildUnnamed883();
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 checkUnnamed876(o.items); 830 checkUnnamed883(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 buildUnnamed877() { 842 buildUnnamed884() {
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 checkUnnamed877(core.List<api.AdWordsAccount> o) { 849 checkUnnamed884(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 buildUnnamed878() { 874 buildUnnamed885() {
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 checkUnnamed878(core.List<core.String> o) { 881 checkUnnamed885(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 = buildUnnamed877(); 892 o.adWordsAccounts = buildUnnamed884();
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 = buildUnnamed878(); 897 o.profileIds = buildUnnamed885();
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 checkUnnamed877(o.adWordsAccounts); 907 checkUnnamed884(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 checkUnnamed878(o.profileIds); 912 checkUnnamed885(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 buildUnnamed879() { 918 buildUnnamed886() {
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 checkUnnamed879(core.List<api.EntityAdWordsLink> o) { 925 checkUnnamed886(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 = buildUnnamed879(); 936 o.items = buildUnnamed886();
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 checkUnnamed879(o.items); 951 checkUnnamed886(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
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 buildUnnamed880() { 985 buildUnnamed887() {
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 checkUnnamed880(core.List<core.String> o) { 992 checkUnnamed887(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 buildUnnamed881() { 998 buildUnnamed888() {
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 checkUnnamed881(core.List<core.String> o) { 1005 checkUnnamed888(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 = buildUnnamed880(); 1016 o.effective = buildUnnamed887();
1017 o.local = buildUnnamed881(); 1017 o.local = buildUnnamed888();
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 checkUnnamed880(o.effective); 1026 checkUnnamed887(o.effective);
1027 checkUnnamed881(o.local); 1027 checkUnnamed888(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
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 buildUnnamed882() { 1061 buildUnnamed889() {
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 checkUnnamed882(core.List<api.EntityUserLink> o) { 1068 checkUnnamed889(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 = buildUnnamed882(); 1079 o.items = buildUnnamed889();
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 checkUnnamed882(o.items); 1094 checkUnnamed889(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
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 buildUnnamed883() { 1153 buildUnnamed890() {
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 checkUnnamed883(core.List<api.ExperimentVariations> o) { 1160 checkUnnamed890(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
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 = buildUnnamed883(); 1195 o.variations = buildUnnamed890();
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
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 checkUnnamed883(o.variations); 1231 checkUnnamed890(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 buildUnnamed884() { 1239 buildUnnamed891() {
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 checkUnnamed884(core.List<api.Experiment> o) { 1246 checkUnnamed891(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 = buildUnnamed884(); 1257 o.items = buildUnnamed891();
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 checkUnnamed884(o.items); 1273 checkUnnamed891(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
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 buildUnnamed885() { 1521 buildUnnamed892() {
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 checkUnnamed885(core.List<api.Filter> o) { 1528 checkUnnamed892(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 = buildUnnamed885(); 1539 o.items = buildUnnamed892();
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 checkUnnamed885(o.items); 1555 checkUnnamed892(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
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 buildUnnamed886() { 1590 buildUnnamed893() {
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 checkUnnamed886(core.List<api.GaDataColumnHeaders> o) { 1597 checkUnnamed893(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 buildUnnamed887() { 1626 buildUnnamed894() {
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 checkUnnamed887(core.List<api.GaDataDataTableCols> o) { 1633 checkUnnamed894(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 buildUnnamed888() { 1658 buildUnnamed895() {
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 checkUnnamed888(core.List<api.GaDataDataTableRowsC> o) { 1665 checkUnnamed895(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 = buildUnnamed888(); 1676 o.c = buildUnnamed895();
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 checkUnnamed888(o.c); 1685 checkUnnamed895(o.c);
1686 } 1686 }
1687 buildCounterGaDataDataTableRows--; 1687 buildCounterGaDataDataTableRows--;
1688 } 1688 }
1689 1689
1690 buildUnnamed889() { 1690 buildUnnamed896() {
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 checkUnnamed889(core.List<api.GaDataDataTableRows> o) { 1697 checkUnnamed896(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 = buildUnnamed887(); 1708 o.cols = buildUnnamed894();
1709 o.rows = buildUnnamed889(); 1709 o.rows = buildUnnamed896();
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 checkUnnamed887(o.cols); 1718 checkUnnamed894(o.cols);
1719 checkUnnamed889(o.rows); 1719 checkUnnamed896(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
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 buildUnnamed890() { 1753 buildUnnamed897() {
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 checkUnnamed890(core.List<core.String> o) { 1760 checkUnnamed897(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 buildUnnamed891() { 1766 buildUnnamed898() {
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 checkUnnamed891(core.List<core.String> o) { 1773 checkUnnamed898(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 = buildUnnamed890(); 1789 o.metrics = buildUnnamed897();
1790 o.samplingLevel = "foo"; 1790 o.samplingLevel = "foo";
1791 o.segment = "foo"; 1791 o.segment = "foo";
1792 o.sort = buildUnnamed891(); 1792 o.sort = buildUnnamed898();
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 checkUnnamed890(o.metrics); 1808 checkUnnamed897(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 checkUnnamed891(o.sort); 1811 checkUnnamed898(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 buildUnnamed892() { 1818 buildUnnamed899() {
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 checkUnnamed892(core.List<core.String> o) { 1825 checkUnnamed899(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 buildUnnamed893() { 1831 buildUnnamed900() {
1832 var o = new core.List<core.List<core.String>>(); 1832 var o = new core.List<core.List<core.String>>();
1833 o.add(buildUnnamed892()); 1833 o.add(buildUnnamed899());
1834 o.add(buildUnnamed892()); 1834 o.add(buildUnnamed899());
1835 return o; 1835 return o;
1836 } 1836 }
1837 1837
1838 checkUnnamed893(core.List<core.List<core.String>> o) { 1838 checkUnnamed900(core.List<core.List<core.String>> o) {
1839 unittest.expect(o, unittest.hasLength(2)); 1839 unittest.expect(o, unittest.hasLength(2));
1840 checkUnnamed892(o[0]); 1840 checkUnnamed899(o[0]);
1841 checkUnnamed892(o[1]); 1841 checkUnnamed899(o[1]);
1842 } 1842 }
1843 1843
1844 buildUnnamed894() { 1844 buildUnnamed901() {
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 checkUnnamed894(core.Map<core.String, core.String> o) { 1851 checkUnnamed901(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 = buildUnnamed886(); 1862 o.columnHeaders = buildUnnamed893();
1863 o.containsSampledData = true; 1863 o.containsSampledData = true;
1864 o.dataLastRefreshed = "foo"; 1864 o.dataLastRefreshed = "foo";
1865 o.dataTable = buildGaDataDataTable(); 1865 o.dataTable = buildGaDataDataTable();
1866 o.id = "foo"; 1866 o.id = "foo";
1867 o.itemsPerPage = 42; 1867 o.itemsPerPage = 42;
1868 o.kind = "foo"; 1868 o.kind = "foo";
1869 o.nextLink = "foo"; 1869 o.nextLink = "foo";
1870 o.previousLink = "foo"; 1870 o.previousLink = "foo";
1871 o.profileInfo = buildGaDataProfileInfo(); 1871 o.profileInfo = buildGaDataProfileInfo();
1872 o.query = buildGaDataQuery(); 1872 o.query = buildGaDataQuery();
1873 o.rows = buildUnnamed893(); 1873 o.rows = buildUnnamed900();
1874 o.sampleSize = "foo"; 1874 o.sampleSize = "foo";
1875 o.sampleSpace = "foo"; 1875 o.sampleSpace = "foo";
1876 o.selfLink = "foo"; 1876 o.selfLink = "foo";
1877 o.totalResults = 42; 1877 o.totalResults = 42;
1878 o.totalsForAllResults = buildUnnamed894(); 1878 o.totalsForAllResults = buildUnnamed901();
1879 } 1879 }
1880 buildCounterGaData--; 1880 buildCounterGaData--;
1881 return o; 1881 return o;
1882 } 1882 }
1883 1883
1884 checkGaData(api.GaData o) { 1884 checkGaData(api.GaData o) {
1885 buildCounterGaData++; 1885 buildCounterGaData++;
1886 if (buildCounterGaData < 3) { 1886 if (buildCounterGaData < 3) {
1887 checkUnnamed886(o.columnHeaders); 1887 checkUnnamed893(o.columnHeaders);
1888 unittest.expect(o.containsSampledData, unittest.isTrue); 1888 unittest.expect(o.containsSampledData, unittest.isTrue);
1889 unittest.expect(o.dataLastRefreshed, unittest.equals('foo')); 1889 unittest.expect(o.dataLastRefreshed, unittest.equals('foo'));
1890 checkGaDataDataTable(o.dataTable); 1890 checkGaDataDataTable(o.dataTable);
1891 unittest.expect(o.id, unittest.equals('foo')); 1891 unittest.expect(o.id, unittest.equals('foo'));
1892 unittest.expect(o.itemsPerPage, unittest.equals(42)); 1892 unittest.expect(o.itemsPerPage, unittest.equals(42));
1893 unittest.expect(o.kind, unittest.equals('foo')); 1893 unittest.expect(o.kind, unittest.equals('foo'));
1894 unittest.expect(o.nextLink, unittest.equals('foo')); 1894 unittest.expect(o.nextLink, unittest.equals('foo'));
1895 unittest.expect(o.previousLink, unittest.equals('foo')); 1895 unittest.expect(o.previousLink, unittest.equals('foo'));
1896 checkGaDataProfileInfo(o.profileInfo); 1896 checkGaDataProfileInfo(o.profileInfo);
1897 checkGaDataQuery(o.query); 1897 checkGaDataQuery(o.query);
1898 checkUnnamed893(o.rows); 1898 checkUnnamed900(o.rows);
1899 unittest.expect(o.sampleSize, unittest.equals('foo')); 1899 unittest.expect(o.sampleSize, unittest.equals('foo'));
1900 unittest.expect(o.sampleSpace, unittest.equals('foo')); 1900 unittest.expect(o.sampleSpace, unittest.equals('foo'));
1901 unittest.expect(o.selfLink, unittest.equals('foo')); 1901 unittest.expect(o.selfLink, unittest.equals('foo'));
1902 unittest.expect(o.totalResults, unittest.equals(42)); 1902 unittest.expect(o.totalResults, unittest.equals(42));
1903 checkUnnamed894(o.totalsForAllResults); 1903 checkUnnamed901(o.totalsForAllResults);
1904 } 1904 }
1905 buildCounterGaData--; 1905 buildCounterGaData--;
1906 } 1906 }
1907 1907
1908 core.int buildCounterGoalEventDetailsEventConditions = 0; 1908 core.int buildCounterGoalEventDetailsEventConditions = 0;
1909 buildGoalEventDetailsEventConditions() { 1909 buildGoalEventDetailsEventConditions() {
1910 var o = new api.GoalEventDetailsEventConditions(); 1910 var o = new api.GoalEventDetailsEventConditions();
1911 buildCounterGoalEventDetailsEventConditions++; 1911 buildCounterGoalEventDetailsEventConditions++;
1912 if (buildCounterGoalEventDetailsEventConditions < 3) { 1912 if (buildCounterGoalEventDetailsEventConditions < 3) {
1913 o.comparisonType = "foo"; 1913 o.comparisonType = "foo";
(...skipping 11 matching lines...) Expand all
1925 if (buildCounterGoalEventDetailsEventConditions < 3) { 1925 if (buildCounterGoalEventDetailsEventConditions < 3) {
1926 unittest.expect(o.comparisonType, unittest.equals('foo')); 1926 unittest.expect(o.comparisonType, unittest.equals('foo'));
1927 unittest.expect(o.comparisonValue, unittest.equals('foo')); 1927 unittest.expect(o.comparisonValue, unittest.equals('foo'));
1928 unittest.expect(o.expression, unittest.equals('foo')); 1928 unittest.expect(o.expression, unittest.equals('foo'));
1929 unittest.expect(o.matchType, unittest.equals('foo')); 1929 unittest.expect(o.matchType, unittest.equals('foo'));
1930 unittest.expect(o.type, unittest.equals('foo')); 1930 unittest.expect(o.type, unittest.equals('foo'));
1931 } 1931 }
1932 buildCounterGoalEventDetailsEventConditions--; 1932 buildCounterGoalEventDetailsEventConditions--;
1933 } 1933 }
1934 1934
1935 buildUnnamed895() { 1935 buildUnnamed902() {
1936 var o = new core.List<api.GoalEventDetailsEventConditions>(); 1936 var o = new core.List<api.GoalEventDetailsEventConditions>();
1937 o.add(buildGoalEventDetailsEventConditions()); 1937 o.add(buildGoalEventDetailsEventConditions());
1938 o.add(buildGoalEventDetailsEventConditions()); 1938 o.add(buildGoalEventDetailsEventConditions());
1939 return o; 1939 return o;
1940 } 1940 }
1941 1941
1942 checkUnnamed895(core.List<api.GoalEventDetailsEventConditions> o) { 1942 checkUnnamed902(core.List<api.GoalEventDetailsEventConditions> o) {
1943 unittest.expect(o, unittest.hasLength(2)); 1943 unittest.expect(o, unittest.hasLength(2));
1944 checkGoalEventDetailsEventConditions(o[0]); 1944 checkGoalEventDetailsEventConditions(o[0]);
1945 checkGoalEventDetailsEventConditions(o[1]); 1945 checkGoalEventDetailsEventConditions(o[1]);
1946 } 1946 }
1947 1947
1948 core.int buildCounterGoalEventDetails = 0; 1948 core.int buildCounterGoalEventDetails = 0;
1949 buildGoalEventDetails() { 1949 buildGoalEventDetails() {
1950 var o = new api.GoalEventDetails(); 1950 var o = new api.GoalEventDetails();
1951 buildCounterGoalEventDetails++; 1951 buildCounterGoalEventDetails++;
1952 if (buildCounterGoalEventDetails < 3) { 1952 if (buildCounterGoalEventDetails < 3) {
1953 o.eventConditions = buildUnnamed895(); 1953 o.eventConditions = buildUnnamed902();
1954 o.useEventValue = true; 1954 o.useEventValue = true;
1955 } 1955 }
1956 buildCounterGoalEventDetails--; 1956 buildCounterGoalEventDetails--;
1957 return o; 1957 return o;
1958 } 1958 }
1959 1959
1960 checkGoalEventDetails(api.GoalEventDetails o) { 1960 checkGoalEventDetails(api.GoalEventDetails o) {
1961 buildCounterGoalEventDetails++; 1961 buildCounterGoalEventDetails++;
1962 if (buildCounterGoalEventDetails < 3) { 1962 if (buildCounterGoalEventDetails < 3) {
1963 checkUnnamed895(o.eventConditions); 1963 checkUnnamed902(o.eventConditions);
1964 unittest.expect(o.useEventValue, unittest.isTrue); 1964 unittest.expect(o.useEventValue, unittest.isTrue);
1965 } 1965 }
1966 buildCounterGoalEventDetails--; 1966 buildCounterGoalEventDetails--;
1967 } 1967 }
1968 1968
1969 core.int buildCounterGoalParentLink = 0; 1969 core.int buildCounterGoalParentLink = 0;
1970 buildGoalParentLink() { 1970 buildGoalParentLink() {
1971 var o = new api.GoalParentLink(); 1971 var o = new api.GoalParentLink();
1972 buildCounterGoalParentLink++; 1972 buildCounterGoalParentLink++;
1973 if (buildCounterGoalParentLink < 3) { 1973 if (buildCounterGoalParentLink < 3) {
(...skipping 29 matching lines...) Expand all
2003 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) { 2003 checkGoalUrlDestinationDetailsSteps(api.GoalUrlDestinationDetailsSteps o) {
2004 buildCounterGoalUrlDestinationDetailsSteps++; 2004 buildCounterGoalUrlDestinationDetailsSteps++;
2005 if (buildCounterGoalUrlDestinationDetailsSteps < 3) { 2005 if (buildCounterGoalUrlDestinationDetailsSteps < 3) {
2006 unittest.expect(o.name, unittest.equals('foo')); 2006 unittest.expect(o.name, unittest.equals('foo'));
2007 unittest.expect(o.number, unittest.equals(42)); 2007 unittest.expect(o.number, unittest.equals(42));
2008 unittest.expect(o.url, unittest.equals('foo')); 2008 unittest.expect(o.url, unittest.equals('foo'));
2009 } 2009 }
2010 buildCounterGoalUrlDestinationDetailsSteps--; 2010 buildCounterGoalUrlDestinationDetailsSteps--;
2011 } 2011 }
2012 2012
2013 buildUnnamed896() { 2013 buildUnnamed903() {
2014 var o = new core.List<api.GoalUrlDestinationDetailsSteps>(); 2014 var o = new core.List<api.GoalUrlDestinationDetailsSteps>();
2015 o.add(buildGoalUrlDestinationDetailsSteps()); 2015 o.add(buildGoalUrlDestinationDetailsSteps());
2016 o.add(buildGoalUrlDestinationDetailsSteps()); 2016 o.add(buildGoalUrlDestinationDetailsSteps());
2017 return o; 2017 return o;
2018 } 2018 }
2019 2019
2020 checkUnnamed896(core.List<api.GoalUrlDestinationDetailsSteps> o) { 2020 checkUnnamed903(core.List<api.GoalUrlDestinationDetailsSteps> o) {
2021 unittest.expect(o, unittest.hasLength(2)); 2021 unittest.expect(o, unittest.hasLength(2));
2022 checkGoalUrlDestinationDetailsSteps(o[0]); 2022 checkGoalUrlDestinationDetailsSteps(o[0]);
2023 checkGoalUrlDestinationDetailsSteps(o[1]); 2023 checkGoalUrlDestinationDetailsSteps(o[1]);
2024 } 2024 }
2025 2025
2026 core.int buildCounterGoalUrlDestinationDetails = 0; 2026 core.int buildCounterGoalUrlDestinationDetails = 0;
2027 buildGoalUrlDestinationDetails() { 2027 buildGoalUrlDestinationDetails() {
2028 var o = new api.GoalUrlDestinationDetails(); 2028 var o = new api.GoalUrlDestinationDetails();
2029 buildCounterGoalUrlDestinationDetails++; 2029 buildCounterGoalUrlDestinationDetails++;
2030 if (buildCounterGoalUrlDestinationDetails < 3) { 2030 if (buildCounterGoalUrlDestinationDetails < 3) {
2031 o.caseSensitive = true; 2031 o.caseSensitive = true;
2032 o.firstStepRequired = true; 2032 o.firstStepRequired = true;
2033 o.matchType = "foo"; 2033 o.matchType = "foo";
2034 o.steps = buildUnnamed896(); 2034 o.steps = buildUnnamed903();
2035 o.url = "foo"; 2035 o.url = "foo";
2036 } 2036 }
2037 buildCounterGoalUrlDestinationDetails--; 2037 buildCounterGoalUrlDestinationDetails--;
2038 return o; 2038 return o;
2039 } 2039 }
2040 2040
2041 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) { 2041 checkGoalUrlDestinationDetails(api.GoalUrlDestinationDetails o) {
2042 buildCounterGoalUrlDestinationDetails++; 2042 buildCounterGoalUrlDestinationDetails++;
2043 if (buildCounterGoalUrlDestinationDetails < 3) { 2043 if (buildCounterGoalUrlDestinationDetails < 3) {
2044 unittest.expect(o.caseSensitive, unittest.isTrue); 2044 unittest.expect(o.caseSensitive, unittest.isTrue);
2045 unittest.expect(o.firstStepRequired, unittest.isTrue); 2045 unittest.expect(o.firstStepRequired, unittest.isTrue);
2046 unittest.expect(o.matchType, unittest.equals('foo')); 2046 unittest.expect(o.matchType, unittest.equals('foo'));
2047 checkUnnamed896(o.steps); 2047 checkUnnamed903(o.steps);
2048 unittest.expect(o.url, unittest.equals('foo')); 2048 unittest.expect(o.url, unittest.equals('foo'));
2049 } 2049 }
2050 buildCounterGoalUrlDestinationDetails--; 2050 buildCounterGoalUrlDestinationDetails--;
2051 } 2051 }
2052 2052
2053 core.int buildCounterGoalVisitNumPagesDetails = 0; 2053 core.int buildCounterGoalVisitNumPagesDetails = 0;
2054 buildGoalVisitNumPagesDetails() { 2054 buildGoalVisitNumPagesDetails() {
2055 var o = new api.GoalVisitNumPagesDetails(); 2055 var o = new api.GoalVisitNumPagesDetails();
2056 buildCounterGoalVisitNumPagesDetails++; 2056 buildCounterGoalVisitNumPagesDetails++;
2057 if (buildCounterGoalVisitNumPagesDetails < 3) { 2057 if (buildCounterGoalVisitNumPagesDetails < 3) {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
2138 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02"))); 2138 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02")));
2139 checkGoalUrlDestinationDetails(o.urlDestinationDetails); 2139 checkGoalUrlDestinationDetails(o.urlDestinationDetails);
2140 unittest.expect(o.value, unittest.equals(42.0)); 2140 unittest.expect(o.value, unittest.equals(42.0));
2141 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails); 2141 checkGoalVisitNumPagesDetails(o.visitNumPagesDetails);
2142 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails); 2142 checkGoalVisitTimeOnSiteDetails(o.visitTimeOnSiteDetails);
2143 unittest.expect(o.webPropertyId, unittest.equals('foo')); 2143 unittest.expect(o.webPropertyId, unittest.equals('foo'));
2144 } 2144 }
2145 buildCounterGoal--; 2145 buildCounterGoal--;
2146 } 2146 }
2147 2147
2148 buildUnnamed897() { 2148 buildUnnamed904() {
2149 var o = new core.List<api.Goal>(); 2149 var o = new core.List<api.Goal>();
2150 o.add(buildGoal()); 2150 o.add(buildGoal());
2151 o.add(buildGoal()); 2151 o.add(buildGoal());
2152 return o; 2152 return o;
2153 } 2153 }
2154 2154
2155 checkUnnamed897(core.List<api.Goal> o) { 2155 checkUnnamed904(core.List<api.Goal> o) {
2156 unittest.expect(o, unittest.hasLength(2)); 2156 unittest.expect(o, unittest.hasLength(2));
2157 checkGoal(o[0]); 2157 checkGoal(o[0]);
2158 checkGoal(o[1]); 2158 checkGoal(o[1]);
2159 } 2159 }
2160 2160
2161 core.int buildCounterGoals = 0; 2161 core.int buildCounterGoals = 0;
2162 buildGoals() { 2162 buildGoals() {
2163 var o = new api.Goals(); 2163 var o = new api.Goals();
2164 buildCounterGoals++; 2164 buildCounterGoals++;
2165 if (buildCounterGoals < 3) { 2165 if (buildCounterGoals < 3) {
2166 o.items = buildUnnamed897(); 2166 o.items = buildUnnamed904();
2167 o.itemsPerPage = 42; 2167 o.itemsPerPage = 42;
2168 o.kind = "foo"; 2168 o.kind = "foo";
2169 o.nextLink = "foo"; 2169 o.nextLink = "foo";
2170 o.previousLink = "foo"; 2170 o.previousLink = "foo";
2171 o.startIndex = 42; 2171 o.startIndex = 42;
2172 o.totalResults = 42; 2172 o.totalResults = 42;
2173 o.username = "foo"; 2173 o.username = "foo";
2174 } 2174 }
2175 buildCounterGoals--; 2175 buildCounterGoals--;
2176 return o; 2176 return o;
2177 } 2177 }
2178 2178
2179 checkGoals(api.Goals o) { 2179 checkGoals(api.Goals o) {
2180 buildCounterGoals++; 2180 buildCounterGoals++;
2181 if (buildCounterGoals < 3) { 2181 if (buildCounterGoals < 3) {
2182 checkUnnamed897(o.items); 2182 checkUnnamed904(o.items);
2183 unittest.expect(o.itemsPerPage, unittest.equals(42)); 2183 unittest.expect(o.itemsPerPage, unittest.equals(42));
2184 unittest.expect(o.kind, unittest.equals('foo')); 2184 unittest.expect(o.kind, unittest.equals('foo'));
2185 unittest.expect(o.nextLink, unittest.equals('foo')); 2185 unittest.expect(o.nextLink, unittest.equals('foo'));
2186 unittest.expect(o.previousLink, unittest.equals('foo')); 2186 unittest.expect(o.previousLink, unittest.equals('foo'));
2187 unittest.expect(o.startIndex, unittest.equals(42)); 2187 unittest.expect(o.startIndex, unittest.equals(42));
2188 unittest.expect(o.totalResults, unittest.equals(42)); 2188 unittest.expect(o.totalResults, unittest.equals(42));
2189 unittest.expect(o.username, unittest.equals('foo')); 2189 unittest.expect(o.username, unittest.equals('foo'));
2190 } 2190 }
2191 buildCounterGoals--; 2191 buildCounterGoals--;
2192 } 2192 }
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
2271 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) { 2271 checkMcfDataColumnHeaders(api.McfDataColumnHeaders o) {
2272 buildCounterMcfDataColumnHeaders++; 2272 buildCounterMcfDataColumnHeaders++;
2273 if (buildCounterMcfDataColumnHeaders < 3) { 2273 if (buildCounterMcfDataColumnHeaders < 3) {
2274 unittest.expect(o.columnType, unittest.equals('foo')); 2274 unittest.expect(o.columnType, unittest.equals('foo'));
2275 unittest.expect(o.dataType, unittest.equals('foo')); 2275 unittest.expect(o.dataType, unittest.equals('foo'));
2276 unittest.expect(o.name, unittest.equals('foo')); 2276 unittest.expect(o.name, unittest.equals('foo'));
2277 } 2277 }
2278 buildCounterMcfDataColumnHeaders--; 2278 buildCounterMcfDataColumnHeaders--;
2279 } 2279 }
2280 2280
2281 buildUnnamed898() { 2281 buildUnnamed905() {
2282 var o = new core.List<api.McfDataColumnHeaders>(); 2282 var o = new core.List<api.McfDataColumnHeaders>();
2283 o.add(buildMcfDataColumnHeaders()); 2283 o.add(buildMcfDataColumnHeaders());
2284 o.add(buildMcfDataColumnHeaders()); 2284 o.add(buildMcfDataColumnHeaders());
2285 return o; 2285 return o;
2286 } 2286 }
2287 2287
2288 checkUnnamed898(core.List<api.McfDataColumnHeaders> o) { 2288 checkUnnamed905(core.List<api.McfDataColumnHeaders> o) {
2289 unittest.expect(o, unittest.hasLength(2)); 2289 unittest.expect(o, unittest.hasLength(2));
2290 checkMcfDataColumnHeaders(o[0]); 2290 checkMcfDataColumnHeaders(o[0]);
2291 checkMcfDataColumnHeaders(o[1]); 2291 checkMcfDataColumnHeaders(o[1]);
2292 } 2292 }
2293 2293
2294 core.int buildCounterMcfDataProfileInfo = 0; 2294 core.int buildCounterMcfDataProfileInfo = 0;
2295 buildMcfDataProfileInfo() { 2295 buildMcfDataProfileInfo() {
2296 var o = new api.McfDataProfileInfo(); 2296 var o = new api.McfDataProfileInfo();
2297 buildCounterMcfDataProfileInfo++; 2297 buildCounterMcfDataProfileInfo++;
2298 if (buildCounterMcfDataProfileInfo < 3) { 2298 if (buildCounterMcfDataProfileInfo < 3) {
(...skipping 14 matching lines...) Expand all
2313 unittest.expect(o.accountId, unittest.equals('foo')); 2313 unittest.expect(o.accountId, unittest.equals('foo'));
2314 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); 2314 unittest.expect(o.internalWebPropertyId, unittest.equals('foo'));
2315 unittest.expect(o.profileId, unittest.equals('foo')); 2315 unittest.expect(o.profileId, unittest.equals('foo'));
2316 unittest.expect(o.profileName, unittest.equals('foo')); 2316 unittest.expect(o.profileName, unittest.equals('foo'));
2317 unittest.expect(o.tableId, unittest.equals('foo')); 2317 unittest.expect(o.tableId, unittest.equals('foo'));
2318 unittest.expect(o.webPropertyId, unittest.equals('foo')); 2318 unittest.expect(o.webPropertyId, unittest.equals('foo'));
2319 } 2319 }
2320 buildCounterMcfDataProfileInfo--; 2320 buildCounterMcfDataProfileInfo--;
2321 } 2321 }
2322 2322
2323 buildUnnamed899() { 2323 buildUnnamed906() {
2324 var o = new core.List<core.String>(); 2324 var o = new core.List<core.String>();
2325 o.add("foo"); 2325 o.add("foo");
2326 o.add("foo"); 2326 o.add("foo");
2327 return o; 2327 return o;
2328 } 2328 }
2329 2329
2330 checkUnnamed899(core.List<core.String> o) { 2330 checkUnnamed906(core.List<core.String> o) {
2331 unittest.expect(o, unittest.hasLength(2)); 2331 unittest.expect(o, unittest.hasLength(2));
2332 unittest.expect(o[0], unittest.equals('foo')); 2332 unittest.expect(o[0], unittest.equals('foo'));
2333 unittest.expect(o[1], unittest.equals('foo')); 2333 unittest.expect(o[1], unittest.equals('foo'));
2334 } 2334 }
2335 2335
2336 buildUnnamed900() { 2336 buildUnnamed907() {
2337 var o = new core.List<core.String>(); 2337 var o = new core.List<core.String>();
2338 o.add("foo"); 2338 o.add("foo");
2339 o.add("foo"); 2339 o.add("foo");
2340 return o; 2340 return o;
2341 } 2341 }
2342 2342
2343 checkUnnamed900(core.List<core.String> o) { 2343 checkUnnamed907(core.List<core.String> o) {
2344 unittest.expect(o, unittest.hasLength(2)); 2344 unittest.expect(o, unittest.hasLength(2));
2345 unittest.expect(o[0], unittest.equals('foo')); 2345 unittest.expect(o[0], unittest.equals('foo'));
2346 unittest.expect(o[1], unittest.equals('foo')); 2346 unittest.expect(o[1], unittest.equals('foo'));
2347 } 2347 }
2348 2348
2349 core.int buildCounterMcfDataQuery = 0; 2349 core.int buildCounterMcfDataQuery = 0;
2350 buildMcfDataQuery() { 2350 buildMcfDataQuery() {
2351 var o = new api.McfDataQuery(); 2351 var o = new api.McfDataQuery();
2352 buildCounterMcfDataQuery++; 2352 buildCounterMcfDataQuery++;
2353 if (buildCounterMcfDataQuery < 3) { 2353 if (buildCounterMcfDataQuery < 3) {
2354 o.dimensions = "foo"; 2354 o.dimensions = "foo";
2355 o.end_date = "foo"; 2355 o.end_date = "foo";
2356 o.filters = "foo"; 2356 o.filters = "foo";
2357 o.ids = "foo"; 2357 o.ids = "foo";
2358 o.max_results = 42; 2358 o.max_results = 42;
2359 o.metrics = buildUnnamed899(); 2359 o.metrics = buildUnnamed906();
2360 o.samplingLevel = "foo"; 2360 o.samplingLevel = "foo";
2361 o.segment = "foo"; 2361 o.segment = "foo";
2362 o.sort = buildUnnamed900(); 2362 o.sort = buildUnnamed907();
2363 o.start_date = "foo"; 2363 o.start_date = "foo";
2364 o.start_index = 42; 2364 o.start_index = 42;
2365 } 2365 }
2366 buildCounterMcfDataQuery--; 2366 buildCounterMcfDataQuery--;
2367 return o; 2367 return o;
2368 } 2368 }
2369 2369
2370 checkMcfDataQuery(api.McfDataQuery o) { 2370 checkMcfDataQuery(api.McfDataQuery o) {
2371 buildCounterMcfDataQuery++; 2371 buildCounterMcfDataQuery++;
2372 if (buildCounterMcfDataQuery < 3) { 2372 if (buildCounterMcfDataQuery < 3) {
2373 unittest.expect(o.dimensions, unittest.equals('foo')); 2373 unittest.expect(o.dimensions, unittest.equals('foo'));
2374 unittest.expect(o.end_date, unittest.equals('foo')); 2374 unittest.expect(o.end_date, unittest.equals('foo'));
2375 unittest.expect(o.filters, unittest.equals('foo')); 2375 unittest.expect(o.filters, unittest.equals('foo'));
2376 unittest.expect(o.ids, unittest.equals('foo')); 2376 unittest.expect(o.ids, unittest.equals('foo'));
2377 unittest.expect(o.max_results, unittest.equals(42)); 2377 unittest.expect(o.max_results, unittest.equals(42));
2378 checkUnnamed899(o.metrics); 2378 checkUnnamed906(o.metrics);
2379 unittest.expect(o.samplingLevel, unittest.equals('foo')); 2379 unittest.expect(o.samplingLevel, unittest.equals('foo'));
2380 unittest.expect(o.segment, unittest.equals('foo')); 2380 unittest.expect(o.segment, unittest.equals('foo'));
2381 checkUnnamed900(o.sort); 2381 checkUnnamed907(o.sort);
2382 unittest.expect(o.start_date, unittest.equals('foo')); 2382 unittest.expect(o.start_date, unittest.equals('foo'));
2383 unittest.expect(o.start_index, unittest.equals(42)); 2383 unittest.expect(o.start_index, unittest.equals(42));
2384 } 2384 }
2385 buildCounterMcfDataQuery--; 2385 buildCounterMcfDataQuery--;
2386 } 2386 }
2387 2387
2388 core.int buildCounterMcfDataRowsConversionPathValue = 0; 2388 core.int buildCounterMcfDataRowsConversionPathValue = 0;
2389 buildMcfDataRowsConversionPathValue() { 2389 buildMcfDataRowsConversionPathValue() {
2390 var o = new api.McfDataRowsConversionPathValue(); 2390 var o = new api.McfDataRowsConversionPathValue();
2391 buildCounterMcfDataRowsConversionPathValue++; 2391 buildCounterMcfDataRowsConversionPathValue++;
2392 if (buildCounterMcfDataRowsConversionPathValue < 3) { 2392 if (buildCounterMcfDataRowsConversionPathValue < 3) {
2393 o.interactionType = "foo"; 2393 o.interactionType = "foo";
2394 o.nodeValue = "foo"; 2394 o.nodeValue = "foo";
2395 } 2395 }
2396 buildCounterMcfDataRowsConversionPathValue--; 2396 buildCounterMcfDataRowsConversionPathValue--;
2397 return o; 2397 return o;
2398 } 2398 }
2399 2399
2400 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) { 2400 checkMcfDataRowsConversionPathValue(api.McfDataRowsConversionPathValue o) {
2401 buildCounterMcfDataRowsConversionPathValue++; 2401 buildCounterMcfDataRowsConversionPathValue++;
2402 if (buildCounterMcfDataRowsConversionPathValue < 3) { 2402 if (buildCounterMcfDataRowsConversionPathValue < 3) {
2403 unittest.expect(o.interactionType, unittest.equals('foo')); 2403 unittest.expect(o.interactionType, unittest.equals('foo'));
2404 unittest.expect(o.nodeValue, unittest.equals('foo')); 2404 unittest.expect(o.nodeValue, unittest.equals('foo'));
2405 } 2405 }
2406 buildCounterMcfDataRowsConversionPathValue--; 2406 buildCounterMcfDataRowsConversionPathValue--;
2407 } 2407 }
2408 2408
2409 buildUnnamed901() { 2409 buildUnnamed908() {
2410 var o = new core.List<api.McfDataRowsConversionPathValue>(); 2410 var o = new core.List<api.McfDataRowsConversionPathValue>();
2411 o.add(buildMcfDataRowsConversionPathValue()); 2411 o.add(buildMcfDataRowsConversionPathValue());
2412 o.add(buildMcfDataRowsConversionPathValue()); 2412 o.add(buildMcfDataRowsConversionPathValue());
2413 return o; 2413 return o;
2414 } 2414 }
2415 2415
2416 checkUnnamed901(core.List<api.McfDataRowsConversionPathValue> o) { 2416 checkUnnamed908(core.List<api.McfDataRowsConversionPathValue> o) {
2417 unittest.expect(o, unittest.hasLength(2)); 2417 unittest.expect(o, unittest.hasLength(2));
2418 checkMcfDataRowsConversionPathValue(o[0]); 2418 checkMcfDataRowsConversionPathValue(o[0]);
2419 checkMcfDataRowsConversionPathValue(o[1]); 2419 checkMcfDataRowsConversionPathValue(o[1]);
2420 } 2420 }
2421 2421
2422 core.int buildCounterMcfDataRows = 0; 2422 core.int buildCounterMcfDataRows = 0;
2423 buildMcfDataRows() { 2423 buildMcfDataRows() {
2424 var o = new api.McfDataRows(); 2424 var o = new api.McfDataRows();
2425 buildCounterMcfDataRows++; 2425 buildCounterMcfDataRows++;
2426 if (buildCounterMcfDataRows < 3) { 2426 if (buildCounterMcfDataRows < 3) {
2427 o.conversionPathValue = buildUnnamed901(); 2427 o.conversionPathValue = buildUnnamed908();
2428 o.primitiveValue = "foo"; 2428 o.primitiveValue = "foo";
2429 } 2429 }
2430 buildCounterMcfDataRows--; 2430 buildCounterMcfDataRows--;
2431 return o; 2431 return o;
2432 } 2432 }
2433 2433
2434 checkMcfDataRows(api.McfDataRows o) { 2434 checkMcfDataRows(api.McfDataRows o) {
2435 buildCounterMcfDataRows++; 2435 buildCounterMcfDataRows++;
2436 if (buildCounterMcfDataRows < 3) { 2436 if (buildCounterMcfDataRows < 3) {
2437 checkUnnamed901(o.conversionPathValue); 2437 checkUnnamed908(o.conversionPathValue);
2438 unittest.expect(o.primitiveValue, unittest.equals('foo')); 2438 unittest.expect(o.primitiveValue, unittest.equals('foo'));
2439 } 2439 }
2440 buildCounterMcfDataRows--; 2440 buildCounterMcfDataRows--;
2441 } 2441 }
2442 2442
2443 buildUnnamed902() { 2443 buildUnnamed909() {
2444 var o = new core.List<api.McfDataRows>(); 2444 var o = new core.List<api.McfDataRows>();
2445 o.add(buildMcfDataRows()); 2445 o.add(buildMcfDataRows());
2446 o.add(buildMcfDataRows()); 2446 o.add(buildMcfDataRows());
2447 return o; 2447 return o;
2448 } 2448 }
2449 2449
2450 checkUnnamed902(core.List<api.McfDataRows> o) { 2450 checkUnnamed909(core.List<api.McfDataRows> o) {
2451 unittest.expect(o, unittest.hasLength(2)); 2451 unittest.expect(o, unittest.hasLength(2));
2452 checkMcfDataRows(o[0]); 2452 checkMcfDataRows(o[0]);
2453 checkMcfDataRows(o[1]); 2453 checkMcfDataRows(o[1]);
2454 } 2454 }
2455 2455
2456 buildUnnamed903() { 2456 buildUnnamed910() {
2457 var o = new core.List<core.List<api.McfDataRows>>(); 2457 var o = new core.List<core.List<api.McfDataRows>>();
2458 o.add(buildUnnamed902()); 2458 o.add(buildUnnamed909());
2459 o.add(buildUnnamed902()); 2459 o.add(buildUnnamed909());
2460 return o; 2460 return o;
2461 } 2461 }
2462 2462
2463 checkUnnamed903(core.List<core.List<api.McfDataRows>> o) { 2463 checkUnnamed910(core.List<core.List<api.McfDataRows>> o) {
2464 unittest.expect(o, unittest.hasLength(2)); 2464 unittest.expect(o, unittest.hasLength(2));
2465 checkUnnamed902(o[0]); 2465 checkUnnamed909(o[0]);
2466 checkUnnamed902(o[1]); 2466 checkUnnamed909(o[1]);
2467 } 2467 }
2468 2468
2469 buildUnnamed904() { 2469 buildUnnamed911() {
2470 var o = new core.Map<core.String, core.String>(); 2470 var o = new core.Map<core.String, core.String>();
2471 o["x"] = "foo"; 2471 o["x"] = "foo";
2472 o["y"] = "foo"; 2472 o["y"] = "foo";
2473 return o; 2473 return o;
2474 } 2474 }
2475 2475
2476 checkUnnamed904(core.Map<core.String, core.String> o) { 2476 checkUnnamed911(core.Map<core.String, core.String> o) {
2477 unittest.expect(o, unittest.hasLength(2)); 2477 unittest.expect(o, unittest.hasLength(2));
2478 unittest.expect(o["x"], unittest.equals('foo')); 2478 unittest.expect(o["x"], unittest.equals('foo'));
2479 unittest.expect(o["y"], unittest.equals('foo')); 2479 unittest.expect(o["y"], unittest.equals('foo'));
2480 } 2480 }
2481 2481
2482 core.int buildCounterMcfData = 0; 2482 core.int buildCounterMcfData = 0;
2483 buildMcfData() { 2483 buildMcfData() {
2484 var o = new api.McfData(); 2484 var o = new api.McfData();
2485 buildCounterMcfData++; 2485 buildCounterMcfData++;
2486 if (buildCounterMcfData < 3) { 2486 if (buildCounterMcfData < 3) {
2487 o.columnHeaders = buildUnnamed898(); 2487 o.columnHeaders = buildUnnamed905();
2488 o.containsSampledData = true; 2488 o.containsSampledData = true;
2489 o.id = "foo"; 2489 o.id = "foo";
2490 o.itemsPerPage = 42; 2490 o.itemsPerPage = 42;
2491 o.kind = "foo"; 2491 o.kind = "foo";
2492 o.nextLink = "foo"; 2492 o.nextLink = "foo";
2493 o.previousLink = "foo"; 2493 o.previousLink = "foo";
2494 o.profileInfo = buildMcfDataProfileInfo(); 2494 o.profileInfo = buildMcfDataProfileInfo();
2495 o.query = buildMcfDataQuery(); 2495 o.query = buildMcfDataQuery();
2496 o.rows = buildUnnamed903(); 2496 o.rows = buildUnnamed910();
2497 o.sampleSize = "foo"; 2497 o.sampleSize = "foo";
2498 o.sampleSpace = "foo"; 2498 o.sampleSpace = "foo";
2499 o.selfLink = "foo"; 2499 o.selfLink = "foo";
2500 o.totalResults = 42; 2500 o.totalResults = 42;
2501 o.totalsForAllResults = buildUnnamed904(); 2501 o.totalsForAllResults = buildUnnamed911();
2502 } 2502 }
2503 buildCounterMcfData--; 2503 buildCounterMcfData--;
2504 return o; 2504 return o;
2505 } 2505 }
2506 2506
2507 checkMcfData(api.McfData o) { 2507 checkMcfData(api.McfData o) {
2508 buildCounterMcfData++; 2508 buildCounterMcfData++;
2509 if (buildCounterMcfData < 3) { 2509 if (buildCounterMcfData < 3) {
2510 checkUnnamed898(o.columnHeaders); 2510 checkUnnamed905(o.columnHeaders);
2511 unittest.expect(o.containsSampledData, unittest.isTrue); 2511 unittest.expect(o.containsSampledData, unittest.isTrue);
2512 unittest.expect(o.id, unittest.equals('foo')); 2512 unittest.expect(o.id, unittest.equals('foo'));
2513 unittest.expect(o.itemsPerPage, unittest.equals(42)); 2513 unittest.expect(o.itemsPerPage, unittest.equals(42));
2514 unittest.expect(o.kind, unittest.equals('foo')); 2514 unittest.expect(o.kind, unittest.equals('foo'));
2515 unittest.expect(o.nextLink, unittest.equals('foo')); 2515 unittest.expect(o.nextLink, unittest.equals('foo'));
2516 unittest.expect(o.previousLink, unittest.equals('foo')); 2516 unittest.expect(o.previousLink, unittest.equals('foo'));
2517 checkMcfDataProfileInfo(o.profileInfo); 2517 checkMcfDataProfileInfo(o.profileInfo);
2518 checkMcfDataQuery(o.query); 2518 checkMcfDataQuery(o.query);
2519 checkUnnamed903(o.rows); 2519 checkUnnamed910(o.rows);
2520 unittest.expect(o.sampleSize, unittest.equals('foo')); 2520 unittest.expect(o.sampleSize, unittest.equals('foo'));
2521 unittest.expect(o.sampleSpace, unittest.equals('foo')); 2521 unittest.expect(o.sampleSpace, unittest.equals('foo'));
2522 unittest.expect(o.selfLink, unittest.equals('foo')); 2522 unittest.expect(o.selfLink, unittest.equals('foo'));
2523 unittest.expect(o.totalResults, unittest.equals(42)); 2523 unittest.expect(o.totalResults, unittest.equals(42));
2524 checkUnnamed904(o.totalsForAllResults); 2524 checkUnnamed911(o.totalsForAllResults);
2525 } 2525 }
2526 buildCounterMcfData--; 2526 buildCounterMcfData--;
2527 } 2527 }
2528 2528
2529 core.int buildCounterProfileChildLink = 0; 2529 core.int buildCounterProfileChildLink = 0;
2530 buildProfileChildLink() { 2530 buildProfileChildLink() {
2531 var o = new api.ProfileChildLink(); 2531 var o = new api.ProfileChildLink();
2532 buildCounterProfileChildLink++; 2532 buildCounterProfileChildLink++;
2533 if (buildCounterProfileChildLink < 3) { 2533 if (buildCounterProfileChildLink < 3) {
2534 o.href = "foo"; 2534 o.href = "foo";
(...skipping 26 matching lines...) Expand all
2561 2561
2562 checkProfileParentLink(api.ProfileParentLink o) { 2562 checkProfileParentLink(api.ProfileParentLink o) {
2563 buildCounterProfileParentLink++; 2563 buildCounterProfileParentLink++;
2564 if (buildCounterProfileParentLink < 3) { 2564 if (buildCounterProfileParentLink < 3) {
2565 unittest.expect(o.href, unittest.equals('foo')); 2565 unittest.expect(o.href, unittest.equals('foo'));
2566 unittest.expect(o.type, unittest.equals('foo')); 2566 unittest.expect(o.type, unittest.equals('foo'));
2567 } 2567 }
2568 buildCounterProfileParentLink--; 2568 buildCounterProfileParentLink--;
2569 } 2569 }
2570 2570
2571 buildUnnamed905() { 2571 buildUnnamed912() {
2572 var o = new core.List<core.String>(); 2572 var o = new core.List<core.String>();
2573 o.add("foo"); 2573 o.add("foo");
2574 o.add("foo"); 2574 o.add("foo");
2575 return o; 2575 return o;
2576 } 2576 }
2577 2577
2578 checkUnnamed905(core.List<core.String> o) { 2578 checkUnnamed912(core.List<core.String> o) {
2579 unittest.expect(o, unittest.hasLength(2)); 2579 unittest.expect(o, unittest.hasLength(2));
2580 unittest.expect(o[0], unittest.equals('foo')); 2580 unittest.expect(o[0], unittest.equals('foo'));
2581 unittest.expect(o[1], unittest.equals('foo')); 2581 unittest.expect(o[1], unittest.equals('foo'));
2582 } 2582 }
2583 2583
2584 core.int buildCounterProfilePermissions = 0; 2584 core.int buildCounterProfilePermissions = 0;
2585 buildProfilePermissions() { 2585 buildProfilePermissions() {
2586 var o = new api.ProfilePermissions(); 2586 var o = new api.ProfilePermissions();
2587 buildCounterProfilePermissions++; 2587 buildCounterProfilePermissions++;
2588 if (buildCounterProfilePermissions < 3) { 2588 if (buildCounterProfilePermissions < 3) {
2589 o.effective = buildUnnamed905(); 2589 o.effective = buildUnnamed912();
2590 } 2590 }
2591 buildCounterProfilePermissions--; 2591 buildCounterProfilePermissions--;
2592 return o; 2592 return o;
2593 } 2593 }
2594 2594
2595 checkProfilePermissions(api.ProfilePermissions o) { 2595 checkProfilePermissions(api.ProfilePermissions o) {
2596 buildCounterProfilePermissions++; 2596 buildCounterProfilePermissions++;
2597 if (buildCounterProfilePermissions < 3) { 2597 if (buildCounterProfilePermissions < 3) {
2598 checkUnnamed905(o.effective); 2598 checkUnnamed912(o.effective);
2599 } 2599 }
2600 buildCounterProfilePermissions--; 2600 buildCounterProfilePermissions--;
2601 } 2601 }
2602 2602
2603 core.int buildCounterProfile = 0; 2603 core.int buildCounterProfile = 0;
2604 buildProfile() { 2604 buildProfile() {
2605 var o = new api.Profile(); 2605 var o = new api.Profile();
2606 buildCounterProfile++; 2606 buildCounterProfile++;
2607 if (buildCounterProfile < 3) { 2607 if (buildCounterProfile < 3) {
2608 o.accountId = "foo"; 2608 o.accountId = "foo";
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
2691 checkFilterRef(o.filterRef); 2691 checkFilterRef(o.filterRef);
2692 unittest.expect(o.id, unittest.equals('foo')); 2692 unittest.expect(o.id, unittest.equals('foo'));
2693 unittest.expect(o.kind, unittest.equals('foo')); 2693 unittest.expect(o.kind, unittest.equals('foo'));
2694 checkProfileRef(o.profileRef); 2694 checkProfileRef(o.profileRef);
2695 unittest.expect(o.rank, unittest.equals(42)); 2695 unittest.expect(o.rank, unittest.equals(42));
2696 unittest.expect(o.selfLink, unittest.equals('foo')); 2696 unittest.expect(o.selfLink, unittest.equals('foo'));
2697 } 2697 }
2698 buildCounterProfileFilterLink--; 2698 buildCounterProfileFilterLink--;
2699 } 2699 }
2700 2700
2701 buildUnnamed906() { 2701 buildUnnamed913() {
2702 var o = new core.List<api.ProfileFilterLink>(); 2702 var o = new core.List<api.ProfileFilterLink>();
2703 o.add(buildProfileFilterLink()); 2703 o.add(buildProfileFilterLink());
2704 o.add(buildProfileFilterLink()); 2704 o.add(buildProfileFilterLink());
2705 return o; 2705 return o;
2706 } 2706 }
2707 2707
2708 checkUnnamed906(core.List<api.ProfileFilterLink> o) { 2708 checkUnnamed913(core.List<api.ProfileFilterLink> o) {
2709 unittest.expect(o, unittest.hasLength(2)); 2709 unittest.expect(o, unittest.hasLength(2));
2710 checkProfileFilterLink(o[0]); 2710 checkProfileFilterLink(o[0]);
2711 checkProfileFilterLink(o[1]); 2711 checkProfileFilterLink(o[1]);
2712 } 2712 }
2713 2713
2714 core.int buildCounterProfileFilterLinks = 0; 2714 core.int buildCounterProfileFilterLinks = 0;
2715 buildProfileFilterLinks() { 2715 buildProfileFilterLinks() {
2716 var o = new api.ProfileFilterLinks(); 2716 var o = new api.ProfileFilterLinks();
2717 buildCounterProfileFilterLinks++; 2717 buildCounterProfileFilterLinks++;
2718 if (buildCounterProfileFilterLinks < 3) { 2718 if (buildCounterProfileFilterLinks < 3) {
2719 o.items = buildUnnamed906(); 2719 o.items = buildUnnamed913();
2720 o.itemsPerPage = 42; 2720 o.itemsPerPage = 42;
2721 o.kind = "foo"; 2721 o.kind = "foo";
2722 o.nextLink = "foo"; 2722 o.nextLink = "foo";
2723 o.previousLink = "foo"; 2723 o.previousLink = "foo";
2724 o.startIndex = 42; 2724 o.startIndex = 42;
2725 o.totalResults = 42; 2725 o.totalResults = 42;
2726 o.username = "foo"; 2726 o.username = "foo";
2727 } 2727 }
2728 buildCounterProfileFilterLinks--; 2728 buildCounterProfileFilterLinks--;
2729 return o; 2729 return o;
2730 } 2730 }
2731 2731
2732 checkProfileFilterLinks(api.ProfileFilterLinks o) { 2732 checkProfileFilterLinks(api.ProfileFilterLinks o) {
2733 buildCounterProfileFilterLinks++; 2733 buildCounterProfileFilterLinks++;
2734 if (buildCounterProfileFilterLinks < 3) { 2734 if (buildCounterProfileFilterLinks < 3) {
2735 checkUnnamed906(o.items); 2735 checkUnnamed913(o.items);
2736 unittest.expect(o.itemsPerPage, unittest.equals(42)); 2736 unittest.expect(o.itemsPerPage, unittest.equals(42));
2737 unittest.expect(o.kind, unittest.equals('foo')); 2737 unittest.expect(o.kind, unittest.equals('foo'));
2738 unittest.expect(o.nextLink, unittest.equals('foo')); 2738 unittest.expect(o.nextLink, unittest.equals('foo'));
2739 unittest.expect(o.previousLink, unittest.equals('foo')); 2739 unittest.expect(o.previousLink, unittest.equals('foo'));
2740 unittest.expect(o.startIndex, unittest.equals(42)); 2740 unittest.expect(o.startIndex, unittest.equals(42));
2741 unittest.expect(o.totalResults, unittest.equals(42)); 2741 unittest.expect(o.totalResults, unittest.equals(42));
2742 unittest.expect(o.username, unittest.equals('foo')); 2742 unittest.expect(o.username, unittest.equals('foo'));
2743 } 2743 }
2744 buildCounterProfileFilterLinks--; 2744 buildCounterProfileFilterLinks--;
2745 } 2745 }
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
2795 if (buildCounterProfileSummary < 3) { 2795 if (buildCounterProfileSummary < 3) {
2796 unittest.expect(o.id, unittest.equals('foo')); 2796 unittest.expect(o.id, unittest.equals('foo'));
2797 unittest.expect(o.kind, unittest.equals('foo')); 2797 unittest.expect(o.kind, unittest.equals('foo'));
2798 unittest.expect(o.name, unittest.equals('foo')); 2798 unittest.expect(o.name, unittest.equals('foo'));
2799 unittest.expect(o.starred, unittest.isTrue); 2799 unittest.expect(o.starred, unittest.isTrue);
2800 unittest.expect(o.type, unittest.equals('foo')); 2800 unittest.expect(o.type, unittest.equals('foo'));
2801 } 2801 }
2802 buildCounterProfileSummary--; 2802 buildCounterProfileSummary--;
2803 } 2803 }
2804 2804
2805 buildUnnamed907() { 2805 buildUnnamed914() {
2806 var o = new core.List<api.Profile>(); 2806 var o = new core.List<api.Profile>();
2807 o.add(buildProfile()); 2807 o.add(buildProfile());
2808 o.add(buildProfile()); 2808 o.add(buildProfile());
2809 return o; 2809 return o;
2810 } 2810 }
2811 2811
2812 checkUnnamed907(core.List<api.Profile> o) { 2812 checkUnnamed914(core.List<api.Profile> o) {
2813 unittest.expect(o, unittest.hasLength(2)); 2813 unittest.expect(o, unittest.hasLength(2));
2814 checkProfile(o[0]); 2814 checkProfile(o[0]);
2815 checkProfile(o[1]); 2815 checkProfile(o[1]);
2816 } 2816 }
2817 2817
2818 core.int buildCounterProfiles = 0; 2818 core.int buildCounterProfiles = 0;
2819 buildProfiles() { 2819 buildProfiles() {
2820 var o = new api.Profiles(); 2820 var o = new api.Profiles();
2821 buildCounterProfiles++; 2821 buildCounterProfiles++;
2822 if (buildCounterProfiles < 3) { 2822 if (buildCounterProfiles < 3) {
2823 o.items = buildUnnamed907(); 2823 o.items = buildUnnamed914();
2824 o.itemsPerPage = 42; 2824 o.itemsPerPage = 42;
2825 o.kind = "foo"; 2825 o.kind = "foo";
2826 o.nextLink = "foo"; 2826 o.nextLink = "foo";
2827 o.previousLink = "foo"; 2827 o.previousLink = "foo";
2828 o.startIndex = 42; 2828 o.startIndex = 42;
2829 o.totalResults = 42; 2829 o.totalResults = 42;
2830 o.username = "foo"; 2830 o.username = "foo";
2831 } 2831 }
2832 buildCounterProfiles--; 2832 buildCounterProfiles--;
2833 return o; 2833 return o;
2834 } 2834 }
2835 2835
2836 checkProfiles(api.Profiles o) { 2836 checkProfiles(api.Profiles o) {
2837 buildCounterProfiles++; 2837 buildCounterProfiles++;
2838 if (buildCounterProfiles < 3) { 2838 if (buildCounterProfiles < 3) {
2839 checkUnnamed907(o.items); 2839 checkUnnamed914(o.items);
2840 unittest.expect(o.itemsPerPage, unittest.equals(42)); 2840 unittest.expect(o.itemsPerPage, unittest.equals(42));
2841 unittest.expect(o.kind, unittest.equals('foo')); 2841 unittest.expect(o.kind, unittest.equals('foo'));
2842 unittest.expect(o.nextLink, unittest.equals('foo')); 2842 unittest.expect(o.nextLink, unittest.equals('foo'));
2843 unittest.expect(o.previousLink, unittest.equals('foo')); 2843 unittest.expect(o.previousLink, unittest.equals('foo'));
2844 unittest.expect(o.startIndex, unittest.equals(42)); 2844 unittest.expect(o.startIndex, unittest.equals(42));
2845 unittest.expect(o.totalResults, unittest.equals(42)); 2845 unittest.expect(o.totalResults, unittest.equals(42));
2846 unittest.expect(o.username, unittest.equals('foo')); 2846 unittest.expect(o.username, unittest.equals('foo'));
2847 } 2847 }
2848 buildCounterProfiles--; 2848 buildCounterProfiles--;
2849 } 2849 }
(...skipping 14 matching lines...) Expand all
2864 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) { 2864 checkRealtimeDataColumnHeaders(api.RealtimeDataColumnHeaders o) {
2865 buildCounterRealtimeDataColumnHeaders++; 2865 buildCounterRealtimeDataColumnHeaders++;
2866 if (buildCounterRealtimeDataColumnHeaders < 3) { 2866 if (buildCounterRealtimeDataColumnHeaders < 3) {
2867 unittest.expect(o.columnType, unittest.equals('foo')); 2867 unittest.expect(o.columnType, unittest.equals('foo'));
2868 unittest.expect(o.dataType, unittest.equals('foo')); 2868 unittest.expect(o.dataType, unittest.equals('foo'));
2869 unittest.expect(o.name, unittest.equals('foo')); 2869 unittest.expect(o.name, unittest.equals('foo'));
2870 } 2870 }
2871 buildCounterRealtimeDataColumnHeaders--; 2871 buildCounterRealtimeDataColumnHeaders--;
2872 } 2872 }
2873 2873
2874 buildUnnamed908() { 2874 buildUnnamed915() {
2875 var o = new core.List<api.RealtimeDataColumnHeaders>(); 2875 var o = new core.List<api.RealtimeDataColumnHeaders>();
2876 o.add(buildRealtimeDataColumnHeaders()); 2876 o.add(buildRealtimeDataColumnHeaders());
2877 o.add(buildRealtimeDataColumnHeaders()); 2877 o.add(buildRealtimeDataColumnHeaders());
2878 return o; 2878 return o;
2879 } 2879 }
2880 2880
2881 checkUnnamed908(core.List<api.RealtimeDataColumnHeaders> o) { 2881 checkUnnamed915(core.List<api.RealtimeDataColumnHeaders> o) {
2882 unittest.expect(o, unittest.hasLength(2)); 2882 unittest.expect(o, unittest.hasLength(2));
2883 checkRealtimeDataColumnHeaders(o[0]); 2883 checkRealtimeDataColumnHeaders(o[0]);
2884 checkRealtimeDataColumnHeaders(o[1]); 2884 checkRealtimeDataColumnHeaders(o[1]);
2885 } 2885 }
2886 2886
2887 core.int buildCounterRealtimeDataProfileInfo = 0; 2887 core.int buildCounterRealtimeDataProfileInfo = 0;
2888 buildRealtimeDataProfileInfo() { 2888 buildRealtimeDataProfileInfo() {
2889 var o = new api.RealtimeDataProfileInfo(); 2889 var o = new api.RealtimeDataProfileInfo();
2890 buildCounterRealtimeDataProfileInfo++; 2890 buildCounterRealtimeDataProfileInfo++;
2891 if (buildCounterRealtimeDataProfileInfo < 3) { 2891 if (buildCounterRealtimeDataProfileInfo < 3) {
(...skipping 14 matching lines...) Expand all
2906 unittest.expect(o.accountId, unittest.equals('foo')); 2906 unittest.expect(o.accountId, unittest.equals('foo'));
2907 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); 2907 unittest.expect(o.internalWebPropertyId, unittest.equals('foo'));
2908 unittest.expect(o.profileId, unittest.equals('foo')); 2908 unittest.expect(o.profileId, unittest.equals('foo'));
2909 unittest.expect(o.profileName, unittest.equals('foo')); 2909 unittest.expect(o.profileName, unittest.equals('foo'));
2910 unittest.expect(o.tableId, unittest.equals('foo')); 2910 unittest.expect(o.tableId, unittest.equals('foo'));
2911 unittest.expect(o.webPropertyId, unittest.equals('foo')); 2911 unittest.expect(o.webPropertyId, unittest.equals('foo'));
2912 } 2912 }
2913 buildCounterRealtimeDataProfileInfo--; 2913 buildCounterRealtimeDataProfileInfo--;
2914 } 2914 }
2915 2915
2916 buildUnnamed909() { 2916 buildUnnamed916() {
2917 var o = new core.List<core.String>(); 2917 var o = new core.List<core.String>();
2918 o.add("foo"); 2918 o.add("foo");
2919 o.add("foo"); 2919 o.add("foo");
2920 return o; 2920 return o;
2921 } 2921 }
2922 2922
2923 checkUnnamed909(core.List<core.String> o) { 2923 checkUnnamed916(core.List<core.String> o) {
2924 unittest.expect(o, unittest.hasLength(2)); 2924 unittest.expect(o, unittest.hasLength(2));
2925 unittest.expect(o[0], unittest.equals('foo')); 2925 unittest.expect(o[0], unittest.equals('foo'));
2926 unittest.expect(o[1], unittest.equals('foo')); 2926 unittest.expect(o[1], unittest.equals('foo'));
2927 } 2927 }
2928 2928
2929 buildUnnamed910() { 2929 buildUnnamed917() {
2930 var o = new core.List<core.String>(); 2930 var o = new core.List<core.String>();
2931 o.add("foo"); 2931 o.add("foo");
2932 o.add("foo"); 2932 o.add("foo");
2933 return o; 2933 return o;
2934 } 2934 }
2935 2935
2936 checkUnnamed910(core.List<core.String> o) { 2936 checkUnnamed917(core.List<core.String> o) {
2937 unittest.expect(o, unittest.hasLength(2)); 2937 unittest.expect(o, unittest.hasLength(2));
2938 unittest.expect(o[0], unittest.equals('foo')); 2938 unittest.expect(o[0], unittest.equals('foo'));
2939 unittest.expect(o[1], unittest.equals('foo')); 2939 unittest.expect(o[1], unittest.equals('foo'));
2940 } 2940 }
2941 2941
2942 core.int buildCounterRealtimeDataQuery = 0; 2942 core.int buildCounterRealtimeDataQuery = 0;
2943 buildRealtimeDataQuery() { 2943 buildRealtimeDataQuery() {
2944 var o = new api.RealtimeDataQuery(); 2944 var o = new api.RealtimeDataQuery();
2945 buildCounterRealtimeDataQuery++; 2945 buildCounterRealtimeDataQuery++;
2946 if (buildCounterRealtimeDataQuery < 3) { 2946 if (buildCounterRealtimeDataQuery < 3) {
2947 o.dimensions = "foo"; 2947 o.dimensions = "foo";
2948 o.filters = "foo"; 2948 o.filters = "foo";
2949 o.ids = "foo"; 2949 o.ids = "foo";
2950 o.max_results = 42; 2950 o.max_results = 42;
2951 o.metrics = buildUnnamed909(); 2951 o.metrics = buildUnnamed916();
2952 o.sort = buildUnnamed910(); 2952 o.sort = buildUnnamed917();
2953 } 2953 }
2954 buildCounterRealtimeDataQuery--; 2954 buildCounterRealtimeDataQuery--;
2955 return o; 2955 return o;
2956 } 2956 }
2957 2957
2958 checkRealtimeDataQuery(api.RealtimeDataQuery o) { 2958 checkRealtimeDataQuery(api.RealtimeDataQuery o) {
2959 buildCounterRealtimeDataQuery++; 2959 buildCounterRealtimeDataQuery++;
2960 if (buildCounterRealtimeDataQuery < 3) { 2960 if (buildCounterRealtimeDataQuery < 3) {
2961 unittest.expect(o.dimensions, unittest.equals('foo')); 2961 unittest.expect(o.dimensions, unittest.equals('foo'));
2962 unittest.expect(o.filters, unittest.equals('foo')); 2962 unittest.expect(o.filters, unittest.equals('foo'));
2963 unittest.expect(o.ids, unittest.equals('foo')); 2963 unittest.expect(o.ids, unittest.equals('foo'));
2964 unittest.expect(o.max_results, unittest.equals(42)); 2964 unittest.expect(o.max_results, unittest.equals(42));
2965 checkUnnamed909(o.metrics); 2965 checkUnnamed916(o.metrics);
2966 checkUnnamed910(o.sort); 2966 checkUnnamed917(o.sort);
2967 } 2967 }
2968 buildCounterRealtimeDataQuery--; 2968 buildCounterRealtimeDataQuery--;
2969 } 2969 }
2970 2970
2971 buildUnnamed911() { 2971 buildUnnamed918() {
2972 var o = new core.List<core.String>(); 2972 var o = new core.List<core.String>();
2973 o.add("foo"); 2973 o.add("foo");
2974 o.add("foo"); 2974 o.add("foo");
2975 return o; 2975 return o;
2976 } 2976 }
2977 2977
2978 checkUnnamed911(core.List<core.String> o) { 2978 checkUnnamed918(core.List<core.String> o) {
2979 unittest.expect(o, unittest.hasLength(2)); 2979 unittest.expect(o, unittest.hasLength(2));
2980 unittest.expect(o[0], unittest.equals('foo')); 2980 unittest.expect(o[0], unittest.equals('foo'));
2981 unittest.expect(o[1], unittest.equals('foo')); 2981 unittest.expect(o[1], unittest.equals('foo'));
2982 } 2982 }
2983 2983
2984 buildUnnamed912() { 2984 buildUnnamed919() {
2985 var o = new core.List<core.List<core.String>>(); 2985 var o = new core.List<core.List<core.String>>();
2986 o.add(buildUnnamed911()); 2986 o.add(buildUnnamed918());
2987 o.add(buildUnnamed911()); 2987 o.add(buildUnnamed918());
2988 return o; 2988 return o;
2989 } 2989 }
2990 2990
2991 checkUnnamed912(core.List<core.List<core.String>> o) { 2991 checkUnnamed919(core.List<core.List<core.String>> o) {
2992 unittest.expect(o, unittest.hasLength(2)); 2992 unittest.expect(o, unittest.hasLength(2));
2993 checkUnnamed911(o[0]); 2993 checkUnnamed918(o[0]);
2994 checkUnnamed911(o[1]); 2994 checkUnnamed918(o[1]);
2995 } 2995 }
2996 2996
2997 buildUnnamed913() { 2997 buildUnnamed920() {
2998 var o = new core.Map<core.String, core.String>(); 2998 var o = new core.Map<core.String, core.String>();
2999 o["x"] = "foo"; 2999 o["x"] = "foo";
3000 o["y"] = "foo"; 3000 o["y"] = "foo";
3001 return o; 3001 return o;
3002 } 3002 }
3003 3003
3004 checkUnnamed913(core.Map<core.String, core.String> o) { 3004 checkUnnamed920(core.Map<core.String, core.String> o) {
3005 unittest.expect(o, unittest.hasLength(2)); 3005 unittest.expect(o, unittest.hasLength(2));
3006 unittest.expect(o["x"], unittest.equals('foo')); 3006 unittest.expect(o["x"], unittest.equals('foo'));
3007 unittest.expect(o["y"], unittest.equals('foo')); 3007 unittest.expect(o["y"], unittest.equals('foo'));
3008 } 3008 }
3009 3009
3010 core.int buildCounterRealtimeData = 0; 3010 core.int buildCounterRealtimeData = 0;
3011 buildRealtimeData() { 3011 buildRealtimeData() {
3012 var o = new api.RealtimeData(); 3012 var o = new api.RealtimeData();
3013 buildCounterRealtimeData++; 3013 buildCounterRealtimeData++;
3014 if (buildCounterRealtimeData < 3) { 3014 if (buildCounterRealtimeData < 3) {
3015 o.columnHeaders = buildUnnamed908(); 3015 o.columnHeaders = buildUnnamed915();
3016 o.id = "foo"; 3016 o.id = "foo";
3017 o.kind = "foo"; 3017 o.kind = "foo";
3018 o.profileInfo = buildRealtimeDataProfileInfo(); 3018 o.profileInfo = buildRealtimeDataProfileInfo();
3019 o.query = buildRealtimeDataQuery(); 3019 o.query = buildRealtimeDataQuery();
3020 o.rows = buildUnnamed912(); 3020 o.rows = buildUnnamed919();
3021 o.selfLink = "foo"; 3021 o.selfLink = "foo";
3022 o.totalResults = 42; 3022 o.totalResults = 42;
3023 o.totalsForAllResults = buildUnnamed913(); 3023 o.totalsForAllResults = buildUnnamed920();
3024 } 3024 }
3025 buildCounterRealtimeData--; 3025 buildCounterRealtimeData--;
3026 return o; 3026 return o;
3027 } 3027 }
3028 3028
3029 checkRealtimeData(api.RealtimeData o) { 3029 checkRealtimeData(api.RealtimeData o) {
3030 buildCounterRealtimeData++; 3030 buildCounterRealtimeData++;
3031 if (buildCounterRealtimeData < 3) { 3031 if (buildCounterRealtimeData < 3) {
3032 checkUnnamed908(o.columnHeaders); 3032 checkUnnamed915(o.columnHeaders);
3033 unittest.expect(o.id, unittest.equals('foo')); 3033 unittest.expect(o.id, unittest.equals('foo'));
3034 unittest.expect(o.kind, unittest.equals('foo')); 3034 unittest.expect(o.kind, unittest.equals('foo'));
3035 checkRealtimeDataProfileInfo(o.profileInfo); 3035 checkRealtimeDataProfileInfo(o.profileInfo);
3036 checkRealtimeDataQuery(o.query); 3036 checkRealtimeDataQuery(o.query);
3037 checkUnnamed912(o.rows); 3037 checkUnnamed919(o.rows);
3038 unittest.expect(o.selfLink, unittest.equals('foo')); 3038 unittest.expect(o.selfLink, unittest.equals('foo'));
3039 unittest.expect(o.totalResults, unittest.equals(42)); 3039 unittest.expect(o.totalResults, unittest.equals(42));
3040 checkUnnamed913(o.totalsForAllResults); 3040 checkUnnamed920(o.totalsForAllResults);
3041 } 3041 }
3042 buildCounterRealtimeData--; 3042 buildCounterRealtimeData--;
3043 } 3043 }
3044 3044
3045 core.int buildCounterRemarketingAudienceAudienceDefinition = 0; 3045 core.int buildCounterRemarketingAudienceAudienceDefinition = 0;
3046 buildRemarketingAudienceAudienceDefinition() { 3046 buildRemarketingAudienceAudienceDefinition() {
3047 var o = new api.RemarketingAudienceAudienceDefinition(); 3047 var o = new api.RemarketingAudienceAudienceDefinition();
3048 buildCounterRemarketingAudienceAudienceDefinition++; 3048 buildCounterRemarketingAudienceAudienceDefinition++;
3049 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { 3049 if (buildCounterRemarketingAudienceAudienceDefinition < 3) {
3050 o.includeConditions = buildIncludeConditions(); 3050 o.includeConditions = buildIncludeConditions();
3051 } 3051 }
3052 buildCounterRemarketingAudienceAudienceDefinition--; 3052 buildCounterRemarketingAudienceAudienceDefinition--;
3053 return o; 3053 return o;
3054 } 3054 }
3055 3055
3056 checkRemarketingAudienceAudienceDefinition(api.RemarketingAudienceAudienceDefini tion o) { 3056 checkRemarketingAudienceAudienceDefinition(api.RemarketingAudienceAudienceDefini tion o) {
3057 buildCounterRemarketingAudienceAudienceDefinition++; 3057 buildCounterRemarketingAudienceAudienceDefinition++;
3058 if (buildCounterRemarketingAudienceAudienceDefinition < 3) { 3058 if (buildCounterRemarketingAudienceAudienceDefinition < 3) {
3059 checkIncludeConditions(o.includeConditions); 3059 checkIncludeConditions(o.includeConditions);
3060 } 3060 }
3061 buildCounterRemarketingAudienceAudienceDefinition--; 3061 buildCounterRemarketingAudienceAudienceDefinition--;
3062 } 3062 }
3063 3063
3064 buildUnnamed914() { 3064 buildUnnamed921() {
3065 var o = new core.List<api.LinkedForeignAccount>(); 3065 var o = new core.List<api.LinkedForeignAccount>();
3066 o.add(buildLinkedForeignAccount()); 3066 o.add(buildLinkedForeignAccount());
3067 o.add(buildLinkedForeignAccount()); 3067 o.add(buildLinkedForeignAccount());
3068 return o; 3068 return o;
3069 } 3069 }
3070 3070
3071 checkUnnamed914(core.List<api.LinkedForeignAccount> o) { 3071 checkUnnamed921(core.List<api.LinkedForeignAccount> o) {
3072 unittest.expect(o, unittest.hasLength(2)); 3072 unittest.expect(o, unittest.hasLength(2));
3073 checkLinkedForeignAccount(o[0]); 3073 checkLinkedForeignAccount(o[0]);
3074 checkLinkedForeignAccount(o[1]); 3074 checkLinkedForeignAccount(o[1]);
3075 } 3075 }
3076 3076
3077 buildUnnamed915() { 3077 buildUnnamed922() {
3078 var o = new core.List<core.String>(); 3078 var o = new core.List<core.String>();
3079 o.add("foo"); 3079 o.add("foo");
3080 o.add("foo"); 3080 o.add("foo");
3081 return o; 3081 return o;
3082 } 3082 }
3083 3083
3084 checkUnnamed915(core.List<core.String> o) { 3084 checkUnnamed922(core.List<core.String> o) {
3085 unittest.expect(o, unittest.hasLength(2)); 3085 unittest.expect(o, unittest.hasLength(2));
3086 unittest.expect(o[0], unittest.equals('foo')); 3086 unittest.expect(o[0], unittest.equals('foo'));
3087 unittest.expect(o[1], unittest.equals('foo')); 3087 unittest.expect(o[1], unittest.equals('foo'));
3088 } 3088 }
3089 3089
3090 core.int buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeCondi tions = 0; 3090 core.int buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeCondi tions = 0;
3091 buildRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions() { 3091 buildRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions() {
3092 var o = new api.RemarketingAudienceStateBasedAudienceDefinitionExcludeConditio ns(); 3092 var o = new api.RemarketingAudienceStateBasedAudienceDefinitionExcludeConditio ns();
3093 buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions++ ; 3093 buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditions++ ;
3094 if (buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditio ns < 3) { 3094 if (buildCounterRemarketingAudienceStateBasedAudienceDefinitionExcludeConditio ns < 3) {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
3135 buildCounterRemarketingAudience++; 3135 buildCounterRemarketingAudience++;
3136 if (buildCounterRemarketingAudience < 3) { 3136 if (buildCounterRemarketingAudience < 3) {
3137 o.accountId = "foo"; 3137 o.accountId = "foo";
3138 o.audienceDefinition = buildRemarketingAudienceAudienceDefinition(); 3138 o.audienceDefinition = buildRemarketingAudienceAudienceDefinition();
3139 o.audienceType = "foo"; 3139 o.audienceType = "foo";
3140 o.created = core.DateTime.parse("2002-02-27T14:01:02"); 3140 o.created = core.DateTime.parse("2002-02-27T14:01:02");
3141 o.description = "foo"; 3141 o.description = "foo";
3142 o.id = "foo"; 3142 o.id = "foo";
3143 o.internalWebPropertyId = "foo"; 3143 o.internalWebPropertyId = "foo";
3144 o.kind = "foo"; 3144 o.kind = "foo";
3145 o.linkedAdAccounts = buildUnnamed914(); 3145 o.linkedAdAccounts = buildUnnamed921();
3146 o.linkedViews = buildUnnamed915(); 3146 o.linkedViews = buildUnnamed922();
3147 o.name = "foo"; 3147 o.name = "foo";
3148 o.stateBasedAudienceDefinition = buildRemarketingAudienceStateBasedAudienceD efinition(); 3148 o.stateBasedAudienceDefinition = buildRemarketingAudienceStateBasedAudienceD efinition();
3149 o.updated = core.DateTime.parse("2002-02-27T14:01:02"); 3149 o.updated = core.DateTime.parse("2002-02-27T14:01:02");
3150 o.webPropertyId = "foo"; 3150 o.webPropertyId = "foo";
3151 } 3151 }
3152 buildCounterRemarketingAudience--; 3152 buildCounterRemarketingAudience--;
3153 return o; 3153 return o;
3154 } 3154 }
3155 3155
3156 checkRemarketingAudience(api.RemarketingAudience o) { 3156 checkRemarketingAudience(api.RemarketingAudience o) {
3157 buildCounterRemarketingAudience++; 3157 buildCounterRemarketingAudience++;
3158 if (buildCounterRemarketingAudience < 3) { 3158 if (buildCounterRemarketingAudience < 3) {
3159 unittest.expect(o.accountId, unittest.equals('foo')); 3159 unittest.expect(o.accountId, unittest.equals('foo'));
3160 checkRemarketingAudienceAudienceDefinition(o.audienceDefinition); 3160 checkRemarketingAudienceAudienceDefinition(o.audienceDefinition);
3161 unittest.expect(o.audienceType, unittest.equals('foo')); 3161 unittest.expect(o.audienceType, unittest.equals('foo'));
3162 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02"))); 3162 unittest.expect(o.created, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02")));
3163 unittest.expect(o.description, unittest.equals('foo')); 3163 unittest.expect(o.description, unittest.equals('foo'));
3164 unittest.expect(o.id, unittest.equals('foo')); 3164 unittest.expect(o.id, unittest.equals('foo'));
3165 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); 3165 unittest.expect(o.internalWebPropertyId, unittest.equals('foo'));
3166 unittest.expect(o.kind, unittest.equals('foo')); 3166 unittest.expect(o.kind, unittest.equals('foo'));
3167 checkUnnamed914(o.linkedAdAccounts); 3167 checkUnnamed921(o.linkedAdAccounts);
3168 checkUnnamed915(o.linkedViews); 3168 checkUnnamed922(o.linkedViews);
3169 unittest.expect(o.name, unittest.equals('foo')); 3169 unittest.expect(o.name, unittest.equals('foo'));
3170 checkRemarketingAudienceStateBasedAudienceDefinition(o.stateBasedAudienceDef inition); 3170 checkRemarketingAudienceStateBasedAudienceDefinition(o.stateBasedAudienceDef inition);
3171 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02"))); 3171 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02")));
3172 unittest.expect(o.webPropertyId, unittest.equals('foo')); 3172 unittest.expect(o.webPropertyId, unittest.equals('foo'));
3173 } 3173 }
3174 buildCounterRemarketingAudience--; 3174 buildCounterRemarketingAudience--;
3175 } 3175 }
3176 3176
3177 buildUnnamed916() { 3177 buildUnnamed923() {
3178 var o = new core.List<api.RemarketingAudience>(); 3178 var o = new core.List<api.RemarketingAudience>();
3179 o.add(buildRemarketingAudience()); 3179 o.add(buildRemarketingAudience());
3180 o.add(buildRemarketingAudience()); 3180 o.add(buildRemarketingAudience());
3181 return o; 3181 return o;
3182 } 3182 }
3183 3183
3184 checkUnnamed916(core.List<api.RemarketingAudience> o) { 3184 checkUnnamed923(core.List<api.RemarketingAudience> o) {
3185 unittest.expect(o, unittest.hasLength(2)); 3185 unittest.expect(o, unittest.hasLength(2));
3186 checkRemarketingAudience(o[0]); 3186 checkRemarketingAudience(o[0]);
3187 checkRemarketingAudience(o[1]); 3187 checkRemarketingAudience(o[1]);
3188 } 3188 }
3189 3189
3190 core.int buildCounterRemarketingAudiences = 0; 3190 core.int buildCounterRemarketingAudiences = 0;
3191 buildRemarketingAudiences() { 3191 buildRemarketingAudiences() {
3192 var o = new api.RemarketingAudiences(); 3192 var o = new api.RemarketingAudiences();
3193 buildCounterRemarketingAudiences++; 3193 buildCounterRemarketingAudiences++;
3194 if (buildCounterRemarketingAudiences < 3) { 3194 if (buildCounterRemarketingAudiences < 3) {
3195 o.items = buildUnnamed916(); 3195 o.items = buildUnnamed923();
3196 o.itemsPerPage = 42; 3196 o.itemsPerPage = 42;
3197 o.kind = "foo"; 3197 o.kind = "foo";
3198 o.nextLink = "foo"; 3198 o.nextLink = "foo";
3199 o.previousLink = "foo"; 3199 o.previousLink = "foo";
3200 o.startIndex = 42; 3200 o.startIndex = 42;
3201 o.totalResults = 42; 3201 o.totalResults = 42;
3202 o.username = "foo"; 3202 o.username = "foo";
3203 } 3203 }
3204 buildCounterRemarketingAudiences--; 3204 buildCounterRemarketingAudiences--;
3205 return o; 3205 return o;
3206 } 3206 }
3207 3207
3208 checkRemarketingAudiences(api.RemarketingAudiences o) { 3208 checkRemarketingAudiences(api.RemarketingAudiences o) {
3209 buildCounterRemarketingAudiences++; 3209 buildCounterRemarketingAudiences++;
3210 if (buildCounterRemarketingAudiences < 3) { 3210 if (buildCounterRemarketingAudiences < 3) {
3211 checkUnnamed916(o.items); 3211 checkUnnamed923(o.items);
3212 unittest.expect(o.itemsPerPage, unittest.equals(42)); 3212 unittest.expect(o.itemsPerPage, unittest.equals(42));
3213 unittest.expect(o.kind, unittest.equals('foo')); 3213 unittest.expect(o.kind, unittest.equals('foo'));
3214 unittest.expect(o.nextLink, unittest.equals('foo')); 3214 unittest.expect(o.nextLink, unittest.equals('foo'));
3215 unittest.expect(o.previousLink, unittest.equals('foo')); 3215 unittest.expect(o.previousLink, unittest.equals('foo'));
3216 unittest.expect(o.startIndex, unittest.equals(42)); 3216 unittest.expect(o.startIndex, unittest.equals(42));
3217 unittest.expect(o.totalResults, unittest.equals(42)); 3217 unittest.expect(o.totalResults, unittest.equals(42));
3218 unittest.expect(o.username, unittest.equals('foo')); 3218 unittest.expect(o.username, unittest.equals('foo'));
3219 } 3219 }
3220 buildCounterRemarketingAudiences--; 3220 buildCounterRemarketingAudiences--;
3221 } 3221 }
(...skipping 26 matching lines...) Expand all
3248 unittest.expect(o.kind, unittest.equals('foo')); 3248 unittest.expect(o.kind, unittest.equals('foo'));
3249 unittest.expect(o.name, unittest.equals('foo')); 3249 unittest.expect(o.name, unittest.equals('foo'));
3250 unittest.expect(o.segmentId, unittest.equals('foo')); 3250 unittest.expect(o.segmentId, unittest.equals('foo'));
3251 unittest.expect(o.selfLink, unittest.equals('foo')); 3251 unittest.expect(o.selfLink, unittest.equals('foo'));
3252 unittest.expect(o.type, unittest.equals('foo')); 3252 unittest.expect(o.type, unittest.equals('foo'));
3253 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02"))); 3253 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02")));
3254 } 3254 }
3255 buildCounterSegment--; 3255 buildCounterSegment--;
3256 } 3256 }
3257 3257
3258 buildUnnamed917() { 3258 buildUnnamed924() {
3259 var o = new core.List<api.Segment>(); 3259 var o = new core.List<api.Segment>();
3260 o.add(buildSegment()); 3260 o.add(buildSegment());
3261 o.add(buildSegment()); 3261 o.add(buildSegment());
3262 return o; 3262 return o;
3263 } 3263 }
3264 3264
3265 checkUnnamed917(core.List<api.Segment> o) { 3265 checkUnnamed924(core.List<api.Segment> o) {
3266 unittest.expect(o, unittest.hasLength(2)); 3266 unittest.expect(o, unittest.hasLength(2));
3267 checkSegment(o[0]); 3267 checkSegment(o[0]);
3268 checkSegment(o[1]); 3268 checkSegment(o[1]);
3269 } 3269 }
3270 3270
3271 core.int buildCounterSegments = 0; 3271 core.int buildCounterSegments = 0;
3272 buildSegments() { 3272 buildSegments() {
3273 var o = new api.Segments(); 3273 var o = new api.Segments();
3274 buildCounterSegments++; 3274 buildCounterSegments++;
3275 if (buildCounterSegments < 3) { 3275 if (buildCounterSegments < 3) {
3276 o.items = buildUnnamed917(); 3276 o.items = buildUnnamed924();
3277 o.itemsPerPage = 42; 3277 o.itemsPerPage = 42;
3278 o.kind = "foo"; 3278 o.kind = "foo";
3279 o.nextLink = "foo"; 3279 o.nextLink = "foo";
3280 o.previousLink = "foo"; 3280 o.previousLink = "foo";
3281 o.startIndex = 42; 3281 o.startIndex = 42;
3282 o.totalResults = 42; 3282 o.totalResults = 42;
3283 o.username = "foo"; 3283 o.username = "foo";
3284 } 3284 }
3285 buildCounterSegments--; 3285 buildCounterSegments--;
3286 return o; 3286 return o;
3287 } 3287 }
3288 3288
3289 checkSegments(api.Segments o) { 3289 checkSegments(api.Segments o) {
3290 buildCounterSegments++; 3290 buildCounterSegments++;
3291 if (buildCounterSegments < 3) { 3291 if (buildCounterSegments < 3) {
3292 checkUnnamed917(o.items); 3292 checkUnnamed924(o.items);
3293 unittest.expect(o.itemsPerPage, unittest.equals(42)); 3293 unittest.expect(o.itemsPerPage, unittest.equals(42));
3294 unittest.expect(o.kind, unittest.equals('foo')); 3294 unittest.expect(o.kind, unittest.equals('foo'));
3295 unittest.expect(o.nextLink, unittest.equals('foo')); 3295 unittest.expect(o.nextLink, unittest.equals('foo'));
3296 unittest.expect(o.previousLink, unittest.equals('foo')); 3296 unittest.expect(o.previousLink, unittest.equals('foo'));
3297 unittest.expect(o.startIndex, unittest.equals(42)); 3297 unittest.expect(o.startIndex, unittest.equals(42));
3298 unittest.expect(o.totalResults, unittest.equals(42)); 3298 unittest.expect(o.totalResults, unittest.equals(42));
3299 unittest.expect(o.username, unittest.equals('foo')); 3299 unittest.expect(o.username, unittest.equals('foo'));
3300 } 3300 }
3301 buildCounterSegments--; 3301 buildCounterSegments--;
3302 } 3302 }
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
3389 unittest.expect(o.selfLink, unittest.equals('foo')); 3389 unittest.expect(o.selfLink, unittest.equals('foo'));
3390 unittest.expect(o.start_date, unittest.equals('foo')); 3390 unittest.expect(o.start_date, unittest.equals('foo'));
3391 unittest.expect(o.status, unittest.equals('foo')); 3391 unittest.expect(o.status, unittest.equals('foo'));
3392 unittest.expect(o.title, unittest.equals('foo')); 3392 unittest.expect(o.title, unittest.equals('foo'));
3393 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02"))); 3393 unittest.expect(o.updated, unittest.equals(core.DateTime.parse("2002-02-27T1 4:01:02")));
3394 unittest.expect(o.webPropertyId, unittest.equals('foo')); 3394 unittest.expect(o.webPropertyId, unittest.equals('foo'));
3395 } 3395 }
3396 buildCounterUnsampledReport--; 3396 buildCounterUnsampledReport--;
3397 } 3397 }
3398 3398
3399 buildUnnamed918() { 3399 buildUnnamed925() {
3400 var o = new core.List<api.UnsampledReport>(); 3400 var o = new core.List<api.UnsampledReport>();
3401 o.add(buildUnsampledReport()); 3401 o.add(buildUnsampledReport());
3402 o.add(buildUnsampledReport()); 3402 o.add(buildUnsampledReport());
3403 return o; 3403 return o;
3404 } 3404 }
3405 3405
3406 checkUnnamed918(core.List<api.UnsampledReport> o) { 3406 checkUnnamed925(core.List<api.UnsampledReport> o) {
3407 unittest.expect(o, unittest.hasLength(2)); 3407 unittest.expect(o, unittest.hasLength(2));
3408 checkUnsampledReport(o[0]); 3408 checkUnsampledReport(o[0]);
3409 checkUnsampledReport(o[1]); 3409 checkUnsampledReport(o[1]);
3410 } 3410 }
3411 3411
3412 core.int buildCounterUnsampledReports = 0; 3412 core.int buildCounterUnsampledReports = 0;
3413 buildUnsampledReports() { 3413 buildUnsampledReports() {
3414 var o = new api.UnsampledReports(); 3414 var o = new api.UnsampledReports();
3415 buildCounterUnsampledReports++; 3415 buildCounterUnsampledReports++;
3416 if (buildCounterUnsampledReports < 3) { 3416 if (buildCounterUnsampledReports < 3) {
3417 o.items = buildUnnamed918(); 3417 o.items = buildUnnamed925();
3418 o.itemsPerPage = 42; 3418 o.itemsPerPage = 42;
3419 o.kind = "foo"; 3419 o.kind = "foo";
3420 o.nextLink = "foo"; 3420 o.nextLink = "foo";
3421 o.previousLink = "foo"; 3421 o.previousLink = "foo";
3422 o.startIndex = 42; 3422 o.startIndex = 42;
3423 o.totalResults = 42; 3423 o.totalResults = 42;
3424 o.username = "foo"; 3424 o.username = "foo";
3425 } 3425 }
3426 buildCounterUnsampledReports--; 3426 buildCounterUnsampledReports--;
3427 return o; 3427 return o;
3428 } 3428 }
3429 3429
3430 checkUnsampledReports(api.UnsampledReports o) { 3430 checkUnsampledReports(api.UnsampledReports o) {
3431 buildCounterUnsampledReports++; 3431 buildCounterUnsampledReports++;
3432 if (buildCounterUnsampledReports < 3) { 3432 if (buildCounterUnsampledReports < 3) {
3433 checkUnnamed918(o.items); 3433 checkUnnamed925(o.items);
3434 unittest.expect(o.itemsPerPage, unittest.equals(42)); 3434 unittest.expect(o.itemsPerPage, unittest.equals(42));
3435 unittest.expect(o.kind, unittest.equals('foo')); 3435 unittest.expect(o.kind, unittest.equals('foo'));
3436 unittest.expect(o.nextLink, unittest.equals('foo')); 3436 unittest.expect(o.nextLink, unittest.equals('foo'));
3437 unittest.expect(o.previousLink, unittest.equals('foo')); 3437 unittest.expect(o.previousLink, unittest.equals('foo'));
3438 unittest.expect(o.startIndex, unittest.equals(42)); 3438 unittest.expect(o.startIndex, unittest.equals(42));
3439 unittest.expect(o.totalResults, unittest.equals(42)); 3439 unittest.expect(o.totalResults, unittest.equals(42));
3440 unittest.expect(o.username, unittest.equals('foo')); 3440 unittest.expect(o.username, unittest.equals('foo'));
3441 } 3441 }
3442 buildCounterUnsampledReports--; 3442 buildCounterUnsampledReports--;
3443 } 3443 }
3444 3444
3445 buildUnnamed919() { 3445 buildUnnamed926() {
3446 var o = new core.List<core.String>(); 3446 var o = new core.List<core.String>();
3447 o.add("foo"); 3447 o.add("foo");
3448 o.add("foo"); 3448 o.add("foo");
3449 return o; 3449 return o;
3450 } 3450 }
3451 3451
3452 checkUnnamed919(core.List<core.String> o) { 3452 checkUnnamed926(core.List<core.String> o) {
3453 unittest.expect(o, unittest.hasLength(2)); 3453 unittest.expect(o, unittest.hasLength(2));
3454 unittest.expect(o[0], unittest.equals('foo')); 3454 unittest.expect(o[0], unittest.equals('foo'));
3455 unittest.expect(o[1], unittest.equals('foo')); 3455 unittest.expect(o[1], unittest.equals('foo'));
3456 } 3456 }
3457 3457
3458 core.int buildCounterUpload = 0; 3458 core.int buildCounterUpload = 0;
3459 buildUpload() { 3459 buildUpload() {
3460 var o = new api.Upload(); 3460 var o = new api.Upload();
3461 buildCounterUpload++; 3461 buildCounterUpload++;
3462 if (buildCounterUpload < 3) { 3462 if (buildCounterUpload < 3) {
3463 o.accountId = "foo"; 3463 o.accountId = "foo";
3464 o.customDataSourceId = "foo"; 3464 o.customDataSourceId = "foo";
3465 o.errors = buildUnnamed919(); 3465 o.errors = buildUnnamed926();
3466 o.id = "foo"; 3466 o.id = "foo";
3467 o.kind = "foo"; 3467 o.kind = "foo";
3468 o.status = "foo"; 3468 o.status = "foo";
3469 } 3469 }
3470 buildCounterUpload--; 3470 buildCounterUpload--;
3471 return o; 3471 return o;
3472 } 3472 }
3473 3473
3474 checkUpload(api.Upload o) { 3474 checkUpload(api.Upload o) {
3475 buildCounterUpload++; 3475 buildCounterUpload++;
3476 if (buildCounterUpload < 3) { 3476 if (buildCounterUpload < 3) {
3477 unittest.expect(o.accountId, unittest.equals('foo')); 3477 unittest.expect(o.accountId, unittest.equals('foo'));
3478 unittest.expect(o.customDataSourceId, unittest.equals('foo')); 3478 unittest.expect(o.customDataSourceId, unittest.equals('foo'));
3479 checkUnnamed919(o.errors); 3479 checkUnnamed926(o.errors);
3480 unittest.expect(o.id, unittest.equals('foo')); 3480 unittest.expect(o.id, unittest.equals('foo'));
3481 unittest.expect(o.kind, unittest.equals('foo')); 3481 unittest.expect(o.kind, unittest.equals('foo'));
3482 unittest.expect(o.status, unittest.equals('foo')); 3482 unittest.expect(o.status, unittest.equals('foo'));
3483 } 3483 }
3484 buildCounterUpload--; 3484 buildCounterUpload--;
3485 } 3485 }
3486 3486
3487 buildUnnamed920() { 3487 buildUnnamed927() {
3488 var o = new core.List<api.Upload>(); 3488 var o = new core.List<api.Upload>();
3489 o.add(buildUpload()); 3489 o.add(buildUpload());
3490 o.add(buildUpload()); 3490 o.add(buildUpload());
3491 return o; 3491 return o;
3492 } 3492 }
3493 3493
3494 checkUnnamed920(core.List<api.Upload> o) { 3494 checkUnnamed927(core.List<api.Upload> o) {
3495 unittest.expect(o, unittest.hasLength(2)); 3495 unittest.expect(o, unittest.hasLength(2));
3496 checkUpload(o[0]); 3496 checkUpload(o[0]);
3497 checkUpload(o[1]); 3497 checkUpload(o[1]);
3498 } 3498 }
3499 3499
3500 core.int buildCounterUploads = 0; 3500 core.int buildCounterUploads = 0;
3501 buildUploads() { 3501 buildUploads() {
3502 var o = new api.Uploads(); 3502 var o = new api.Uploads();
3503 buildCounterUploads++; 3503 buildCounterUploads++;
3504 if (buildCounterUploads < 3) { 3504 if (buildCounterUploads < 3) {
3505 o.items = buildUnnamed920(); 3505 o.items = buildUnnamed927();
3506 o.itemsPerPage = 42; 3506 o.itemsPerPage = 42;
3507 o.kind = "foo"; 3507 o.kind = "foo";
3508 o.nextLink = "foo"; 3508 o.nextLink = "foo";
3509 o.previousLink = "foo"; 3509 o.previousLink = "foo";
3510 o.startIndex = 42; 3510 o.startIndex = 42;
3511 o.totalResults = 42; 3511 o.totalResults = 42;
3512 } 3512 }
3513 buildCounterUploads--; 3513 buildCounterUploads--;
3514 return o; 3514 return o;
3515 } 3515 }
3516 3516
3517 checkUploads(api.Uploads o) { 3517 checkUploads(api.Uploads o) {
3518 buildCounterUploads++; 3518 buildCounterUploads++;
3519 if (buildCounterUploads < 3) { 3519 if (buildCounterUploads < 3) {
3520 checkUnnamed920(o.items); 3520 checkUnnamed927(o.items);
3521 unittest.expect(o.itemsPerPage, unittest.equals(42)); 3521 unittest.expect(o.itemsPerPage, unittest.equals(42));
3522 unittest.expect(o.kind, unittest.equals('foo')); 3522 unittest.expect(o.kind, unittest.equals('foo'));
3523 unittest.expect(o.nextLink, unittest.equals('foo')); 3523 unittest.expect(o.nextLink, unittest.equals('foo'));
3524 unittest.expect(o.previousLink, unittest.equals('foo')); 3524 unittest.expect(o.previousLink, unittest.equals('foo'));
3525 unittest.expect(o.startIndex, unittest.equals(42)); 3525 unittest.expect(o.startIndex, unittest.equals(42));
3526 unittest.expect(o.totalResults, unittest.equals(42)); 3526 unittest.expect(o.totalResults, unittest.equals(42));
3527 } 3527 }
3528 buildCounterUploads--; 3528 buildCounterUploads--;
3529 } 3529 }
3530 3530
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
3573 unittest.expect(o.accountId, unittest.equals('foo')); 3573 unittest.expect(o.accountId, unittest.equals('foo'));
3574 unittest.expect(o.href, unittest.equals('foo')); 3574 unittest.expect(o.href, unittest.equals('foo'));
3575 unittest.expect(o.id, unittest.equals('foo')); 3575 unittest.expect(o.id, unittest.equals('foo'));
3576 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); 3576 unittest.expect(o.internalWebPropertyId, unittest.equals('foo'));
3577 unittest.expect(o.kind, unittest.equals('foo')); 3577 unittest.expect(o.kind, unittest.equals('foo'));
3578 unittest.expect(o.name, unittest.equals('foo')); 3578 unittest.expect(o.name, unittest.equals('foo'));
3579 } 3579 }
3580 buildCounterWebPropertyRef--; 3580 buildCounterWebPropertyRef--;
3581 } 3581 }
3582 3582
3583 buildUnnamed921() { 3583 buildUnnamed928() {
3584 var o = new core.List<api.ProfileSummary>(); 3584 var o = new core.List<api.ProfileSummary>();
3585 o.add(buildProfileSummary()); 3585 o.add(buildProfileSummary());
3586 o.add(buildProfileSummary()); 3586 o.add(buildProfileSummary());
3587 return o; 3587 return o;
3588 } 3588 }
3589 3589
3590 checkUnnamed921(core.List<api.ProfileSummary> o) { 3590 checkUnnamed928(core.List<api.ProfileSummary> o) {
3591 unittest.expect(o, unittest.hasLength(2)); 3591 unittest.expect(o, unittest.hasLength(2));
3592 checkProfileSummary(o[0]); 3592 checkProfileSummary(o[0]);
3593 checkProfileSummary(o[1]); 3593 checkProfileSummary(o[1]);
3594 } 3594 }
3595 3595
3596 core.int buildCounterWebPropertySummary = 0; 3596 core.int buildCounterWebPropertySummary = 0;
3597 buildWebPropertySummary() { 3597 buildWebPropertySummary() {
3598 var o = new api.WebPropertySummary(); 3598 var o = new api.WebPropertySummary();
3599 buildCounterWebPropertySummary++; 3599 buildCounterWebPropertySummary++;
3600 if (buildCounterWebPropertySummary < 3) { 3600 if (buildCounterWebPropertySummary < 3) {
3601 o.id = "foo"; 3601 o.id = "foo";
3602 o.internalWebPropertyId = "foo"; 3602 o.internalWebPropertyId = "foo";
3603 o.kind = "foo"; 3603 o.kind = "foo";
3604 o.level = "foo"; 3604 o.level = "foo";
3605 o.name = "foo"; 3605 o.name = "foo";
3606 o.profiles = buildUnnamed921(); 3606 o.profiles = buildUnnamed928();
3607 o.starred = true; 3607 o.starred = true;
3608 o.websiteUrl = "foo"; 3608 o.websiteUrl = "foo";
3609 } 3609 }
3610 buildCounterWebPropertySummary--; 3610 buildCounterWebPropertySummary--;
3611 return o; 3611 return o;
3612 } 3612 }
3613 3613
3614 checkWebPropertySummary(api.WebPropertySummary o) { 3614 checkWebPropertySummary(api.WebPropertySummary o) {
3615 buildCounterWebPropertySummary++; 3615 buildCounterWebPropertySummary++;
3616 if (buildCounterWebPropertySummary < 3) { 3616 if (buildCounterWebPropertySummary < 3) {
3617 unittest.expect(o.id, unittest.equals('foo')); 3617 unittest.expect(o.id, unittest.equals('foo'));
3618 unittest.expect(o.internalWebPropertyId, unittest.equals('foo')); 3618 unittest.expect(o.internalWebPropertyId, unittest.equals('foo'));
3619 unittest.expect(o.kind, unittest.equals('foo')); 3619 unittest.expect(o.kind, unittest.equals('foo'));
3620 unittest.expect(o.level, unittest.equals('foo')); 3620 unittest.expect(o.level, unittest.equals('foo'));
3621 unittest.expect(o.name, unittest.equals('foo')); 3621 unittest.expect(o.name, unittest.equals('foo'));
3622 checkUnnamed921(o.profiles); 3622 checkUnnamed928(o.profiles);
3623 unittest.expect(o.starred, unittest.isTrue); 3623 unittest.expect(o.starred, unittest.isTrue);
3624 unittest.expect(o.websiteUrl, unittest.equals('foo')); 3624 unittest.expect(o.websiteUrl, unittest.equals('foo'));
3625 } 3625 }
3626 buildCounterWebPropertySummary--; 3626 buildCounterWebPropertySummary--;
3627 } 3627 }
3628 3628
3629 buildUnnamed922() { 3629 buildUnnamed929() {
3630 var o = new core.List<api.Webproperty>(); 3630 var o = new core.List<api.Webproperty>();
3631 o.add(buildWebproperty()); 3631 o.add(buildWebproperty());
3632 o.add(buildWebproperty()); 3632 o.add(buildWebproperty());
3633 return o; 3633 return o;
3634 } 3634 }
3635 3635
3636 checkUnnamed922(core.List<api.Webproperty> o) { 3636 checkUnnamed929(core.List<api.Webproperty> o) {
3637 unittest.expect(o, unittest.hasLength(2)); 3637 unittest.expect(o, unittest.hasLength(2));
3638 checkWebproperty(o[0]); 3638 checkWebproperty(o[0]);
3639 checkWebproperty(o[1]); 3639 checkWebproperty(o[1]);
3640 } 3640 }
3641 3641
3642 core.int buildCounterWebproperties = 0; 3642 core.int buildCounterWebproperties = 0;
3643 buildWebproperties() { 3643 buildWebproperties() {
3644 var o = new api.Webproperties(); 3644 var o = new api.Webproperties();
3645 buildCounterWebproperties++; 3645 buildCounterWebproperties++;
3646 if (buildCounterWebproperties < 3) { 3646 if (buildCounterWebproperties < 3) {
3647 o.items = buildUnnamed922(); 3647 o.items = buildUnnamed929();
3648 o.itemsPerPage = 42; 3648 o.itemsPerPage = 42;
3649 o.kind = "foo"; 3649 o.kind = "foo";
3650 o.nextLink = "foo"; 3650 o.nextLink = "foo";
3651 o.previousLink = "foo"; 3651 o.previousLink = "foo";
3652 o.startIndex = 42; 3652 o.startIndex = 42;
3653 o.totalResults = 42; 3653 o.totalResults = 42;
3654 o.username = "foo"; 3654 o.username = "foo";
3655 } 3655 }
3656 buildCounterWebproperties--; 3656 buildCounterWebproperties--;
3657 return o; 3657 return o;
3658 } 3658 }
3659 3659
3660 checkWebproperties(api.Webproperties o) { 3660 checkWebproperties(api.Webproperties o) {
3661 buildCounterWebproperties++; 3661 buildCounterWebproperties++;
3662 if (buildCounterWebproperties < 3) { 3662 if (buildCounterWebproperties < 3) {
3663 checkUnnamed922(o.items); 3663 checkUnnamed929(o.items);
3664 unittest.expect(o.itemsPerPage, unittest.equals(42)); 3664 unittest.expect(o.itemsPerPage, unittest.equals(42));
3665 unittest.expect(o.kind, unittest.equals('foo')); 3665 unittest.expect(o.kind, unittest.equals('foo'));
3666 unittest.expect(o.nextLink, unittest.equals('foo')); 3666 unittest.expect(o.nextLink, unittest.equals('foo'));
3667 unittest.expect(o.previousLink, unittest.equals('foo')); 3667 unittest.expect(o.previousLink, unittest.equals('foo'));
3668 unittest.expect(o.startIndex, unittest.equals(42)); 3668 unittest.expect(o.startIndex, unittest.equals(42));
3669 unittest.expect(o.totalResults, unittest.equals(42)); 3669 unittest.expect(o.totalResults, unittest.equals(42));
3670 unittest.expect(o.username, unittest.equals('foo')); 3670 unittest.expect(o.username, unittest.equals('foo'));
3671 } 3671 }
3672 buildCounterWebproperties--; 3672 buildCounterWebproperties--;
3673 } 3673 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
3707 3707
3708 checkWebpropertyParentLink(api.WebpropertyParentLink o) { 3708 checkWebpropertyParentLink(api.WebpropertyParentLink o) {
3709 buildCounterWebpropertyParentLink++; 3709 buildCounterWebpropertyParentLink++;
3710 if (buildCounterWebpropertyParentLink < 3) { 3710 if (buildCounterWebpropertyParentLink < 3) {
3711 unittest.expect(o.href, unittest.equals('foo')); 3711 unittest.expect(o.href, unittest.equals('foo'));
3712 unittest.expect(o.type, unittest.equals('foo')); 3712 unittest.expect(o.type, unittest.equals('foo'));
3713 } 3713 }
3714 buildCounterWebpropertyParentLink--; 3714 buildCounterWebpropertyParentLink--;
3715 } 3715 }
3716 3716
3717 buildUnnamed923() { 3717 buildUnnamed930() {
3718 var o = new core.List<core.String>(); 3718 var o = new core.List<core.String>();
3719 o.add("foo"); 3719 o.add("foo");
3720 o.add("foo"); 3720 o.add("foo");
3721 return o; 3721 return o;
3722 } 3722 }
3723 3723
3724 checkUnnamed923(core.List<core.String> o) { 3724 checkUnnamed930(core.List<core.String> o) {
3725 unittest.expect(o, unittest.hasLength(2)); 3725 unittest.expect(o, unittest.hasLength(2));
3726 unittest.expect(o[0], unittest.equals('foo')); 3726 unittest.expect(o[0], unittest.equals('foo'));
3727 unittest.expect(o[1], unittest.equals('foo')); 3727 unittest.expect(o[1], unittest.equals('foo'));
3728 } 3728 }
3729 3729
3730 core.int buildCounterWebpropertyPermissions = 0; 3730 core.int buildCounterWebpropertyPermissions = 0;
3731 buildWebpropertyPermissions() { 3731 buildWebpropertyPermissions() {
3732 var o = new api.WebpropertyPermissions(); 3732 var o = new api.WebpropertyPermissions();
3733 buildCounterWebpropertyPermissions++; 3733 buildCounterWebpropertyPermissions++;
3734 if (buildCounterWebpropertyPermissions < 3) { 3734 if (buildCounterWebpropertyPermissions < 3) {
3735 o.effective = buildUnnamed923(); 3735 o.effective = buildUnnamed930();
3736 } 3736 }
3737 buildCounterWebpropertyPermissions--; 3737 buildCounterWebpropertyPermissions--;
3738 return o; 3738 return o;
3739 } 3739 }
3740 3740
3741 checkWebpropertyPermissions(api.WebpropertyPermissions o) { 3741 checkWebpropertyPermissions(api.WebpropertyPermissions o) {
3742 buildCounterWebpropertyPermissions++; 3742 buildCounterWebpropertyPermissions++;
3743 if (buildCounterWebpropertyPermissions < 3) { 3743 if (buildCounterWebpropertyPermissions < 3) {
3744 checkUnnamed923(o.effective); 3744 checkUnnamed930(o.effective);
3745 } 3745 }
3746 buildCounterWebpropertyPermissions--; 3746 buildCounterWebpropertyPermissions--;
3747 } 3747 }
3748 3748
3749 core.int buildCounterWebproperty = 0; 3749 core.int buildCounterWebproperty = 0;
3750 buildWebproperty() { 3750 buildWebproperty() {
3751 var o = new api.Webproperty(); 3751 var o = new api.Webproperty();
3752 buildCounterWebproperty++; 3752 buildCounterWebproperty++;
3753 if (buildCounterWebproperty < 3) { 3753 if (buildCounterWebproperty < 3) {
3754 o.accountId = "foo"; 3754 o.accountId = "foo";
(...skipping 6620 matching lines...) Expand 10 before | Expand all | Expand 10 after
10375 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou ntTicket response) { 10375 res.createAccountTicket(arg_request).then(unittest.expectAsync(((api.Accou ntTicket response) {
10376 checkAccountTicket(response); 10376 checkAccountTicket(response);
10377 }))); 10377 })));
10378 }); 10378 });
10379 10379
10380 }); 10380 });
10381 10381
10382 10382
10383 } 10383 }
10384 10384
OLDNEW
« no previous file with comments | « generated/googleapis/test/adsensehost/v4_1_test.dart ('k') | generated/googleapis/test/analyticsreporting/v4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698