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

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

Issue 2987103002: Api-Roll 52: 2017-07-31 (Closed)
Patch Set: Created 3 years, 4 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.identitytoolkit.v3.test; 1 library googleapis.identitytoolkit.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:test/test.dart' as unittest; 10 import 'package:test/test.dart' as unittest;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 } 44 }
45 } 45 }
46 } 46 }
47 47
48 http.StreamedResponse stringResponse( 48 http.StreamedResponse stringResponse(
49 core.int status, core.Map<core.String, core.String> headers, core.String bod y) { 49 core.int status, core.Map<core.String, core.String> headers, core.String bod y) {
50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]);
51 return new http.StreamedResponse(stream, status, headers: headers); 51 return new http.StreamedResponse(stream, status, headers: headers);
52 } 52 }
53 53
54 buildUnnamed2396() { 54 buildUnnamed2432() {
55 var o = new core.List<core.String>(); 55 var o = new core.List<core.String>();
56 o.add("foo"); 56 o.add("foo");
57 o.add("foo"); 57 o.add("foo");
58 return o; 58 return o;
59 } 59 }
60 60
61 checkUnnamed2396(core.List<core.String> o) { 61 checkUnnamed2432(core.List<core.String> o) {
62 unittest.expect(o, unittest.hasLength(2)); 62 unittest.expect(o, unittest.hasLength(2));
63 unittest.expect(o[0], unittest.equals('foo')); 63 unittest.expect(o[0], unittest.equals('foo'));
64 unittest.expect(o[1], unittest.equals('foo')); 64 unittest.expect(o[1], unittest.equals('foo'));
65 } 65 }
66 66
67 core.int buildCounterCreateAuthUriResponse = 0; 67 core.int buildCounterCreateAuthUriResponse = 0;
68 buildCreateAuthUriResponse() { 68 buildCreateAuthUriResponse() {
69 var o = new api.CreateAuthUriResponse(); 69 var o = new api.CreateAuthUriResponse();
70 buildCounterCreateAuthUriResponse++; 70 buildCounterCreateAuthUriResponse++;
71 if (buildCounterCreateAuthUriResponse < 3) { 71 if (buildCounterCreateAuthUriResponse < 3) {
72 o.allProviders = buildUnnamed2396(); 72 o.allProviders = buildUnnamed2432();
73 o.authUri = "foo"; 73 o.authUri = "foo";
74 o.captchaRequired = true; 74 o.captchaRequired = true;
75 o.forExistingProvider = true; 75 o.forExistingProvider = true;
76 o.kind = "foo"; 76 o.kind = "foo";
77 o.providerId = "foo"; 77 o.providerId = "foo";
78 o.registered = true; 78 o.registered = true;
79 o.sessionId = "foo"; 79 o.sessionId = "foo";
80 } 80 }
81 buildCounterCreateAuthUriResponse--; 81 buildCounterCreateAuthUriResponse--;
82 return o; 82 return o;
83 } 83 }
84 84
85 checkCreateAuthUriResponse(api.CreateAuthUriResponse o) { 85 checkCreateAuthUriResponse(api.CreateAuthUriResponse o) {
86 buildCounterCreateAuthUriResponse++; 86 buildCounterCreateAuthUriResponse++;
87 if (buildCounterCreateAuthUriResponse < 3) { 87 if (buildCounterCreateAuthUriResponse < 3) {
88 checkUnnamed2396(o.allProviders); 88 checkUnnamed2432(o.allProviders);
89 unittest.expect(o.authUri, unittest.equals('foo')); 89 unittest.expect(o.authUri, unittest.equals('foo'));
90 unittest.expect(o.captchaRequired, unittest.isTrue); 90 unittest.expect(o.captchaRequired, unittest.isTrue);
91 unittest.expect(o.forExistingProvider, unittest.isTrue); 91 unittest.expect(o.forExistingProvider, unittest.isTrue);
92 unittest.expect(o.kind, unittest.equals('foo')); 92 unittest.expect(o.kind, unittest.equals('foo'));
93 unittest.expect(o.providerId, unittest.equals('foo')); 93 unittest.expect(o.providerId, unittest.equals('foo'));
94 unittest.expect(o.registered, unittest.isTrue); 94 unittest.expect(o.registered, unittest.isTrue);
95 unittest.expect(o.sessionId, unittest.equals('foo')); 95 unittest.expect(o.sessionId, unittest.equals('foo'));
96 } 96 }
97 buildCounterCreateAuthUriResponse--; 97 buildCounterCreateAuthUriResponse--;
98 } 98 }
(...skipping 10 matching lines...) Expand all
109 } 109 }
110 110
111 checkDeleteAccountResponse(api.DeleteAccountResponse o) { 111 checkDeleteAccountResponse(api.DeleteAccountResponse o) {
112 buildCounterDeleteAccountResponse++; 112 buildCounterDeleteAccountResponse++;
113 if (buildCounterDeleteAccountResponse < 3) { 113 if (buildCounterDeleteAccountResponse < 3) {
114 unittest.expect(o.kind, unittest.equals('foo')); 114 unittest.expect(o.kind, unittest.equals('foo'));
115 } 115 }
116 buildCounterDeleteAccountResponse--; 116 buildCounterDeleteAccountResponse--;
117 } 117 }
118 118
119 buildUnnamed2397() { 119 buildUnnamed2433() {
120 var o = new core.List<api.UserInfo>(); 120 var o = new core.List<api.UserInfo>();
121 o.add(buildUserInfo()); 121 o.add(buildUserInfo());
122 o.add(buildUserInfo()); 122 o.add(buildUserInfo());
123 return o; 123 return o;
124 } 124 }
125 125
126 checkUnnamed2397(core.List<api.UserInfo> o) { 126 checkUnnamed2433(core.List<api.UserInfo> o) {
127 unittest.expect(o, unittest.hasLength(2)); 127 unittest.expect(o, unittest.hasLength(2));
128 checkUserInfo(o[0]); 128 checkUserInfo(o[0]);
129 checkUserInfo(o[1]); 129 checkUserInfo(o[1]);
130 } 130 }
131 131
132 core.int buildCounterDownloadAccountResponse = 0; 132 core.int buildCounterDownloadAccountResponse = 0;
133 buildDownloadAccountResponse() { 133 buildDownloadAccountResponse() {
134 var o = new api.DownloadAccountResponse(); 134 var o = new api.DownloadAccountResponse();
135 buildCounterDownloadAccountResponse++; 135 buildCounterDownloadAccountResponse++;
136 if (buildCounterDownloadAccountResponse < 3) { 136 if (buildCounterDownloadAccountResponse < 3) {
137 o.kind = "foo"; 137 o.kind = "foo";
138 o.nextPageToken = "foo"; 138 o.nextPageToken = "foo";
139 o.users = buildUnnamed2397(); 139 o.users = buildUnnamed2433();
140 } 140 }
141 buildCounterDownloadAccountResponse--; 141 buildCounterDownloadAccountResponse--;
142 return o; 142 return o;
143 } 143 }
144 144
145 checkDownloadAccountResponse(api.DownloadAccountResponse o) { 145 checkDownloadAccountResponse(api.DownloadAccountResponse o) {
146 buildCounterDownloadAccountResponse++; 146 buildCounterDownloadAccountResponse++;
147 if (buildCounterDownloadAccountResponse < 3) { 147 if (buildCounterDownloadAccountResponse < 3) {
148 unittest.expect(o.kind, unittest.equals('foo')); 148 unittest.expect(o.kind, unittest.equals('foo'));
149 unittest.expect(o.nextPageToken, unittest.equals('foo')); 149 unittest.expect(o.nextPageToken, unittest.equals('foo'));
150 checkUnnamed2397(o.users); 150 checkUnnamed2433(o.users);
151 } 151 }
152 buildCounterDownloadAccountResponse--; 152 buildCounterDownloadAccountResponse--;
153 } 153 }
154 154
155 core.int buildCounterEmailTemplate = 0; 155 core.int buildCounterEmailTemplate = 0;
156 buildEmailTemplate() { 156 buildEmailTemplate() {
157 var o = new api.EmailTemplate(); 157 var o = new api.EmailTemplate();
158 buildCounterEmailTemplate++; 158 buildCounterEmailTemplate++;
159 if (buildCounterEmailTemplate < 3) { 159 if (buildCounterEmailTemplate < 3) {
160 o.body = "foo"; 160 o.body = "foo";
(...skipping 13 matching lines...) Expand all
174 unittest.expect(o.body, unittest.equals('foo')); 174 unittest.expect(o.body, unittest.equals('foo'));
175 unittest.expect(o.format, unittest.equals('foo')); 175 unittest.expect(o.format, unittest.equals('foo'));
176 unittest.expect(o.from, unittest.equals('foo')); 176 unittest.expect(o.from, unittest.equals('foo'));
177 unittest.expect(o.fromDisplayName, unittest.equals('foo')); 177 unittest.expect(o.fromDisplayName, unittest.equals('foo'));
178 unittest.expect(o.replyTo, unittest.equals('foo')); 178 unittest.expect(o.replyTo, unittest.equals('foo'));
179 unittest.expect(o.subject, unittest.equals('foo')); 179 unittest.expect(o.subject, unittest.equals('foo'));
180 } 180 }
181 buildCounterEmailTemplate--; 181 buildCounterEmailTemplate--;
182 } 182 }
183 183
184 buildUnnamed2398() { 184 buildUnnamed2434() {
185 var o = new core.List<api.UserInfo>(); 185 var o = new core.List<api.UserInfo>();
186 o.add(buildUserInfo()); 186 o.add(buildUserInfo());
187 o.add(buildUserInfo()); 187 o.add(buildUserInfo());
188 return o; 188 return o;
189 } 189 }
190 190
191 checkUnnamed2398(core.List<api.UserInfo> o) { 191 checkUnnamed2434(core.List<api.UserInfo> o) {
192 unittest.expect(o, unittest.hasLength(2)); 192 unittest.expect(o, unittest.hasLength(2));
193 checkUserInfo(o[0]); 193 checkUserInfo(o[0]);
194 checkUserInfo(o[1]); 194 checkUserInfo(o[1]);
195 } 195 }
196 196
197 core.int buildCounterGetAccountInfoResponse = 0; 197 core.int buildCounterGetAccountInfoResponse = 0;
198 buildGetAccountInfoResponse() { 198 buildGetAccountInfoResponse() {
199 var o = new api.GetAccountInfoResponse(); 199 var o = new api.GetAccountInfoResponse();
200 buildCounterGetAccountInfoResponse++; 200 buildCounterGetAccountInfoResponse++;
201 if (buildCounterGetAccountInfoResponse < 3) { 201 if (buildCounterGetAccountInfoResponse < 3) {
202 o.kind = "foo"; 202 o.kind = "foo";
203 o.users = buildUnnamed2398(); 203 o.users = buildUnnamed2434();
204 } 204 }
205 buildCounterGetAccountInfoResponse--; 205 buildCounterGetAccountInfoResponse--;
206 return o; 206 return o;
207 } 207 }
208 208
209 checkGetAccountInfoResponse(api.GetAccountInfoResponse o) { 209 checkGetAccountInfoResponse(api.GetAccountInfoResponse o) {
210 buildCounterGetAccountInfoResponse++; 210 buildCounterGetAccountInfoResponse++;
211 if (buildCounterGetAccountInfoResponse < 3) { 211 if (buildCounterGetAccountInfoResponse < 3) {
212 unittest.expect(o.kind, unittest.equals('foo')); 212 unittest.expect(o.kind, unittest.equals('foo'));
213 checkUnnamed2398(o.users); 213 checkUnnamed2434(o.users);
214 } 214 }
215 buildCounterGetAccountInfoResponse--; 215 buildCounterGetAccountInfoResponse--;
216 } 216 }
217 217
218 core.int buildCounterGetOobConfirmationCodeResponse = 0; 218 core.int buildCounterGetOobConfirmationCodeResponse = 0;
219 buildGetOobConfirmationCodeResponse() { 219 buildGetOobConfirmationCodeResponse() {
220 var o = new api.GetOobConfirmationCodeResponse(); 220 var o = new api.GetOobConfirmationCodeResponse();
221 buildCounterGetOobConfirmationCodeResponse++; 221 buildCounterGetOobConfirmationCodeResponse++;
222 if (buildCounterGetOobConfirmationCodeResponse < 3) { 222 if (buildCounterGetOobConfirmationCodeResponse < 3) {
223 o.email = "foo"; 223 o.email = "foo";
(...skipping 30 matching lines...) Expand all
254 checkGetRecaptchaParamResponse(api.GetRecaptchaParamResponse o) { 254 checkGetRecaptchaParamResponse(api.GetRecaptchaParamResponse o) {
255 buildCounterGetRecaptchaParamResponse++; 255 buildCounterGetRecaptchaParamResponse++;
256 if (buildCounterGetRecaptchaParamResponse < 3) { 256 if (buildCounterGetRecaptchaParamResponse < 3) {
257 unittest.expect(o.kind, unittest.equals('foo')); 257 unittest.expect(o.kind, unittest.equals('foo'));
258 unittest.expect(o.recaptchaSiteKey, unittest.equals('foo')); 258 unittest.expect(o.recaptchaSiteKey, unittest.equals('foo'));
259 unittest.expect(o.recaptchaStoken, unittest.equals('foo')); 259 unittest.expect(o.recaptchaStoken, unittest.equals('foo'));
260 } 260 }
261 buildCounterGetRecaptchaParamResponse--; 261 buildCounterGetRecaptchaParamResponse--;
262 } 262 }
263 263
264 buildUnnamed2399() { 264 buildUnnamed2435() {
265 var o = new core.Map<core.String, core.String>(); 265 var o = new core.Map<core.String, core.String>();
266 o["x"] = "foo"; 266 o["x"] = "foo";
267 o["y"] = "foo"; 267 o["y"] = "foo";
268 return o; 268 return o;
269 } 269 }
270 270
271 checkUnnamed2399(core.Map<core.String, core.String> o) { 271 checkUnnamed2435(core.Map<core.String, core.String> o) {
272 unittest.expect(o, unittest.hasLength(2)); 272 unittest.expect(o, unittest.hasLength(2));
273 unittest.expect(o["x"], unittest.equals('foo')); 273 unittest.expect(o["x"], unittest.equals('foo'));
274 unittest.expect(o["y"], unittest.equals('foo')); 274 unittest.expect(o["y"], unittest.equals('foo'));
275 } 275 }
276 276
277 core.int buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest = 0; 277 core.int buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest = 0;
278 buildIdentitytoolkitRelyingpartyCreateAuthUriRequest() { 278 buildIdentitytoolkitRelyingpartyCreateAuthUriRequest() {
279 var o = new api.IdentitytoolkitRelyingpartyCreateAuthUriRequest(); 279 var o = new api.IdentitytoolkitRelyingpartyCreateAuthUriRequest();
280 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++; 280 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++;
281 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) { 281 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) {
282 o.appId = "foo"; 282 o.appId = "foo";
283 o.authFlowType = "foo"; 283 o.authFlowType = "foo";
284 o.clientId = "foo"; 284 o.clientId = "foo";
285 o.context = "foo"; 285 o.context = "foo";
286 o.continueUri = "foo"; 286 o.continueUri = "foo";
287 o.customParameter = buildUnnamed2399(); 287 o.customParameter = buildUnnamed2435();
288 o.hostedDomain = "foo"; 288 o.hostedDomain = "foo";
289 o.identifier = "foo"; 289 o.identifier = "foo";
290 o.oauthConsumerKey = "foo"; 290 o.oauthConsumerKey = "foo";
291 o.oauthScope = "foo"; 291 o.oauthScope = "foo";
292 o.openidRealm = "foo"; 292 o.openidRealm = "foo";
293 o.otaApp = "foo"; 293 o.otaApp = "foo";
294 o.providerId = "foo"; 294 o.providerId = "foo";
295 o.sessionId = "foo"; 295 o.sessionId = "foo";
296 } 296 }
297 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; 297 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--;
298 return o; 298 return o;
299 } 299 }
300 300
301 checkIdentitytoolkitRelyingpartyCreateAuthUriRequest(api.IdentitytoolkitRelyingp artyCreateAuthUriRequest o) { 301 checkIdentitytoolkitRelyingpartyCreateAuthUriRequest(api.IdentitytoolkitRelyingp artyCreateAuthUriRequest o) {
302 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++; 302 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest++;
303 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) { 303 if (buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest < 3) {
304 unittest.expect(o.appId, unittest.equals('foo')); 304 unittest.expect(o.appId, unittest.equals('foo'));
305 unittest.expect(o.authFlowType, unittest.equals('foo')); 305 unittest.expect(o.authFlowType, unittest.equals('foo'));
306 unittest.expect(o.clientId, unittest.equals('foo')); 306 unittest.expect(o.clientId, unittest.equals('foo'));
307 unittest.expect(o.context, unittest.equals('foo')); 307 unittest.expect(o.context, unittest.equals('foo'));
308 unittest.expect(o.continueUri, unittest.equals('foo')); 308 unittest.expect(o.continueUri, unittest.equals('foo'));
309 checkUnnamed2399(o.customParameter); 309 checkUnnamed2435(o.customParameter);
310 unittest.expect(o.hostedDomain, unittest.equals('foo')); 310 unittest.expect(o.hostedDomain, unittest.equals('foo'));
311 unittest.expect(o.identifier, unittest.equals('foo')); 311 unittest.expect(o.identifier, unittest.equals('foo'));
312 unittest.expect(o.oauthConsumerKey, unittest.equals('foo')); 312 unittest.expect(o.oauthConsumerKey, unittest.equals('foo'));
313 unittest.expect(o.oauthScope, unittest.equals('foo')); 313 unittest.expect(o.oauthScope, unittest.equals('foo'));
314 unittest.expect(o.openidRealm, unittest.equals('foo')); 314 unittest.expect(o.openidRealm, unittest.equals('foo'));
315 unittest.expect(o.otaApp, unittest.equals('foo')); 315 unittest.expect(o.otaApp, unittest.equals('foo'));
316 unittest.expect(o.providerId, unittest.equals('foo')); 316 unittest.expect(o.providerId, unittest.equals('foo'));
317 unittest.expect(o.sessionId, unittest.equals('foo')); 317 unittest.expect(o.sessionId, unittest.equals('foo'));
318 } 318 }
319 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--; 319 buildCounterIdentitytoolkitRelyingpartyCreateAuthUriRequest--;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest++; 360 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest++;
361 if (buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest < 3) { 361 if (buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest < 3) {
362 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); 362 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo'));
363 unittest.expect(o.maxResults, unittest.equals(42)); 363 unittest.expect(o.maxResults, unittest.equals(42));
364 unittest.expect(o.nextPageToken, unittest.equals('foo')); 364 unittest.expect(o.nextPageToken, unittest.equals('foo'));
365 unittest.expect(o.targetProjectId, unittest.equals('foo')); 365 unittest.expect(o.targetProjectId, unittest.equals('foo'));
366 } 366 }
367 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest--; 367 buildCounterIdentitytoolkitRelyingpartyDownloadAccountRequest--;
368 } 368 }
369 369
370 buildUnnamed2400() { 370 buildUnnamed2436() {
371 var o = new core.List<core.String>(); 371 var o = new core.List<core.String>();
372 o.add("foo"); 372 o.add("foo");
373 o.add("foo"); 373 o.add("foo");
374 return o; 374 return o;
375 } 375 }
376 376
377 checkUnnamed2400(core.List<core.String> o) { 377 checkUnnamed2436(core.List<core.String> o) {
378 unittest.expect(o, unittest.hasLength(2)); 378 unittest.expect(o, unittest.hasLength(2));
379 unittest.expect(o[0], unittest.equals('foo')); 379 unittest.expect(o[0], unittest.equals('foo'));
380 unittest.expect(o[1], unittest.equals('foo')); 380 unittest.expect(o[1], unittest.equals('foo'));
381 } 381 }
382 382
383 buildUnnamed2401() { 383 buildUnnamed2437() {
384 var o = new core.List<core.String>(); 384 var o = new core.List<core.String>();
385 o.add("foo"); 385 o.add("foo");
386 o.add("foo"); 386 o.add("foo");
387 return o; 387 return o;
388 } 388 }
389 389
390 checkUnnamed2401(core.List<core.String> o) { 390 checkUnnamed2437(core.List<core.String> o) {
391 unittest.expect(o, unittest.hasLength(2)); 391 unittest.expect(o, unittest.hasLength(2));
392 unittest.expect(o[0], unittest.equals('foo')); 392 unittest.expect(o[0], unittest.equals('foo'));
393 unittest.expect(o[1], unittest.equals('foo')); 393 unittest.expect(o[1], unittest.equals('foo'));
394 }
395
396 buildUnnamed2438() {
397 var o = new core.List<core.String>();
398 o.add("foo");
399 o.add("foo");
400 return o;
401 }
402
403 checkUnnamed2438(core.List<core.String> o) {
404 unittest.expect(o, unittest.hasLength(2));
405 unittest.expect(o[0], unittest.equals('foo'));
406 unittest.expect(o[1], unittest.equals('foo'));
394 } 407 }
395 408
396 core.int buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest = 0; 409 core.int buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest = 0;
397 buildIdentitytoolkitRelyingpartyGetAccountInfoRequest() { 410 buildIdentitytoolkitRelyingpartyGetAccountInfoRequest() {
398 var o = new api.IdentitytoolkitRelyingpartyGetAccountInfoRequest(); 411 var o = new api.IdentitytoolkitRelyingpartyGetAccountInfoRequest();
399 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; 412 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++;
400 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { 413 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) {
401 o.delegatedProjectNumber = "foo"; 414 o.delegatedProjectNumber = "foo";
402 o.email = buildUnnamed2400(); 415 o.email = buildUnnamed2436();
403 o.idToken = "foo"; 416 o.idToken = "foo";
404 o.localId = buildUnnamed2401(); 417 o.localId = buildUnnamed2437();
418 o.phoneNumber = buildUnnamed2438();
405 } 419 }
406 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; 420 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--;
407 return o; 421 return o;
408 } 422 }
409 423
410 checkIdentitytoolkitRelyingpartyGetAccountInfoRequest(api.IdentitytoolkitRelying partyGetAccountInfoRequest o) { 424 checkIdentitytoolkitRelyingpartyGetAccountInfoRequest(api.IdentitytoolkitRelying partyGetAccountInfoRequest o) {
411 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++; 425 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest++;
412 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) { 426 if (buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest < 3) {
413 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); 427 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo'));
414 checkUnnamed2400(o.email); 428 checkUnnamed2436(o.email);
415 unittest.expect(o.idToken, unittest.equals('foo')); 429 unittest.expect(o.idToken, unittest.equals('foo'));
416 checkUnnamed2401(o.localId); 430 checkUnnamed2437(o.localId);
431 checkUnnamed2438(o.phoneNumber);
417 } 432 }
418 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--; 433 buildCounterIdentitytoolkitRelyingpartyGetAccountInfoRequest--;
419 } 434 }
420 435
421 buildUnnamed2402() { 436 buildUnnamed2439() {
422 var o = new core.List<core.String>(); 437 var o = new core.List<core.String>();
423 o.add("foo"); 438 o.add("foo");
424 o.add("foo"); 439 o.add("foo");
425 return o; 440 return o;
426 } 441 }
427 442
428 checkUnnamed2402(core.List<core.String> o) { 443 checkUnnamed2439(core.List<core.String> o) {
429 unittest.expect(o, unittest.hasLength(2)); 444 unittest.expect(o, unittest.hasLength(2));
430 unittest.expect(o[0], unittest.equals('foo')); 445 unittest.expect(o[0], unittest.equals('foo'));
431 unittest.expect(o[1], unittest.equals('foo')); 446 unittest.expect(o[1], unittest.equals('foo'));
432 } 447 }
433 448
434 buildUnnamed2403() { 449 buildUnnamed2440() {
435 var o = new core.List<api.IdpConfig>(); 450 var o = new core.List<api.IdpConfig>();
436 o.add(buildIdpConfig()); 451 o.add(buildIdpConfig());
437 o.add(buildIdpConfig()); 452 o.add(buildIdpConfig());
438 return o; 453 return o;
439 } 454 }
440 455
441 checkUnnamed2403(core.List<api.IdpConfig> o) { 456 checkUnnamed2440(core.List<api.IdpConfig> o) {
442 unittest.expect(o, unittest.hasLength(2)); 457 unittest.expect(o, unittest.hasLength(2));
443 checkIdpConfig(o[0]); 458 checkIdpConfig(o[0]);
444 checkIdpConfig(o[1]); 459 checkIdpConfig(o[1]);
445 } 460 }
446 461
447 core.int buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse = 0; 462 core.int buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse = 0;
448 buildIdentitytoolkitRelyingpartyGetProjectConfigResponse() { 463 buildIdentitytoolkitRelyingpartyGetProjectConfigResponse() {
449 var o = new api.IdentitytoolkitRelyingpartyGetProjectConfigResponse(); 464 var o = new api.IdentitytoolkitRelyingpartyGetProjectConfigResponse();
450 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; 465 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++;
451 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { 466 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) {
452 o.allowPasswordUser = true; 467 o.allowPasswordUser = true;
453 o.apiKey = "foo"; 468 o.apiKey = "foo";
454 o.authorizedDomains = buildUnnamed2402(); 469 o.authorizedDomains = buildUnnamed2439();
455 o.changeEmailTemplate = buildEmailTemplate(); 470 o.changeEmailTemplate = buildEmailTemplate();
456 o.dynamicLinksDomain = "foo"; 471 o.dynamicLinksDomain = "foo";
457 o.enableAnonymousUser = true; 472 o.enableAnonymousUser = true;
458 o.idpConfig = buildUnnamed2403(); 473 o.idpConfig = buildUnnamed2440();
459 o.legacyResetPasswordTemplate = buildEmailTemplate(); 474 o.legacyResetPasswordTemplate = buildEmailTemplate();
460 o.projectId = "foo"; 475 o.projectId = "foo";
461 o.resetPasswordTemplate = buildEmailTemplate(); 476 o.resetPasswordTemplate = buildEmailTemplate();
462 o.useEmailSending = true; 477 o.useEmailSending = true;
463 o.verifyEmailTemplate = buildEmailTemplate(); 478 o.verifyEmailTemplate = buildEmailTemplate();
464 } 479 }
465 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; 480 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--;
466 return o; 481 return o;
467 } 482 }
468 483
469 checkIdentitytoolkitRelyingpartyGetProjectConfigResponse(api.IdentitytoolkitRely ingpartyGetProjectConfigResponse o) { 484 checkIdentitytoolkitRelyingpartyGetProjectConfigResponse(api.IdentitytoolkitRely ingpartyGetProjectConfigResponse o) {
470 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++; 485 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse++;
471 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) { 486 if (buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse < 3) {
472 unittest.expect(o.allowPasswordUser, unittest.isTrue); 487 unittest.expect(o.allowPasswordUser, unittest.isTrue);
473 unittest.expect(o.apiKey, unittest.equals('foo')); 488 unittest.expect(o.apiKey, unittest.equals('foo'));
474 checkUnnamed2402(o.authorizedDomains); 489 checkUnnamed2439(o.authorizedDomains);
475 checkEmailTemplate(o.changeEmailTemplate); 490 checkEmailTemplate(o.changeEmailTemplate);
476 unittest.expect(o.dynamicLinksDomain, unittest.equals('foo')); 491 unittest.expect(o.dynamicLinksDomain, unittest.equals('foo'));
477 unittest.expect(o.enableAnonymousUser, unittest.isTrue); 492 unittest.expect(o.enableAnonymousUser, unittest.isTrue);
478 checkUnnamed2403(o.idpConfig); 493 checkUnnamed2440(o.idpConfig);
479 checkEmailTemplate(o.legacyResetPasswordTemplate); 494 checkEmailTemplate(o.legacyResetPasswordTemplate);
480 unittest.expect(o.projectId, unittest.equals('foo')); 495 unittest.expect(o.projectId, unittest.equals('foo'));
481 checkEmailTemplate(o.resetPasswordTemplate); 496 checkEmailTemplate(o.resetPasswordTemplate);
482 unittest.expect(o.useEmailSending, unittest.isTrue); 497 unittest.expect(o.useEmailSending, unittest.isTrue);
483 checkEmailTemplate(o.verifyEmailTemplate); 498 checkEmailTemplate(o.verifyEmailTemplate);
484 } 499 }
485 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--; 500 buildCounterIdentitytoolkitRelyingpartyGetProjectConfigResponse--;
486 } 501 }
487 502
488 buildIdentitytoolkitRelyingpartyGetPublicKeysResponse() { 503 buildIdentitytoolkitRelyingpartyGetPublicKeysResponse() {
(...skipping 27 matching lines...) Expand all
516 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest++; 531 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest++;
517 if (buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest < 3) { 532 if (buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest < 3) {
518 unittest.expect(o.email, unittest.equals('foo')); 533 unittest.expect(o.email, unittest.equals('foo'));
519 unittest.expect(o.newPassword, unittest.equals('foo')); 534 unittest.expect(o.newPassword, unittest.equals('foo'));
520 unittest.expect(o.oldPassword, unittest.equals('foo')); 535 unittest.expect(o.oldPassword, unittest.equals('foo'));
521 unittest.expect(o.oobCode, unittest.equals('foo')); 536 unittest.expect(o.oobCode, unittest.equals('foo'));
522 } 537 }
523 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest--; 538 buildCounterIdentitytoolkitRelyingpartyResetPasswordRequest--;
524 } 539 }
525 540
526 buildUnnamed2404() { 541 buildUnnamed2441() {
527 var o = new core.List<core.String>(); 542 var o = new core.List<core.String>();
528 o.add("foo"); 543 o.add("foo");
529 o.add("foo"); 544 o.add("foo");
530 return o; 545 return o;
531 } 546 }
532 547
533 checkUnnamed2404(core.List<core.String> o) { 548 checkUnnamed2441(core.List<core.String> o) {
534 unittest.expect(o, unittest.hasLength(2)); 549 unittest.expect(o, unittest.hasLength(2));
535 unittest.expect(o[0], unittest.equals('foo')); 550 unittest.expect(o[0], unittest.equals('foo'));
536 unittest.expect(o[1], unittest.equals('foo')); 551 unittest.expect(o[1], unittest.equals('foo'));
537 } 552 }
538 553
539 buildUnnamed2405() { 554 buildUnnamed2442() {
540 var o = new core.List<core.String>(); 555 var o = new core.List<core.String>();
541 o.add("foo"); 556 o.add("foo");
542 o.add("foo"); 557 o.add("foo");
543 return o; 558 return o;
544 } 559 }
545 560
546 checkUnnamed2405(core.List<core.String> o) { 561 checkUnnamed2442(core.List<core.String> o) {
547 unittest.expect(o, unittest.hasLength(2)); 562 unittest.expect(o, unittest.hasLength(2));
548 unittest.expect(o[0], unittest.equals('foo')); 563 unittest.expect(o[0], unittest.equals('foo'));
549 unittest.expect(o[1], unittest.equals('foo')); 564 unittest.expect(o[1], unittest.equals('foo'));
550 } 565 }
551 566
552 buildUnnamed2406() { 567 buildUnnamed2443() {
553 var o = new core.List<core.String>(); 568 var o = new core.List<core.String>();
554 o.add("foo"); 569 o.add("foo");
555 o.add("foo"); 570 o.add("foo");
556 return o; 571 return o;
557 } 572 }
558 573
559 checkUnnamed2406(core.List<core.String> o) { 574 checkUnnamed2443(core.List<core.String> o) {
560 unittest.expect(o, unittest.hasLength(2)); 575 unittest.expect(o, unittest.hasLength(2));
561 unittest.expect(o[0], unittest.equals('foo')); 576 unittest.expect(o[0], unittest.equals('foo'));
562 unittest.expect(o[1], unittest.equals('foo')); 577 unittest.expect(o[1], unittest.equals('foo'));
563 } 578 }
564 579
565 core.int buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest = 0; 580 core.int buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest = 0;
566 buildIdentitytoolkitRelyingpartySetAccountInfoRequest() { 581 buildIdentitytoolkitRelyingpartySetAccountInfoRequest() {
567 var o = new api.IdentitytoolkitRelyingpartySetAccountInfoRequest(); 582 var o = new api.IdentitytoolkitRelyingpartySetAccountInfoRequest();
568 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; 583 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++;
569 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { 584 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) {
570 o.captchaChallenge = "foo"; 585 o.captchaChallenge = "foo";
571 o.captchaResponse = "foo"; 586 o.captchaResponse = "foo";
572 o.createdAt = "foo"; 587 o.createdAt = "foo";
573 o.delegatedProjectNumber = "foo"; 588 o.delegatedProjectNumber = "foo";
574 o.deleteAttribute = buildUnnamed2404(); 589 o.deleteAttribute = buildUnnamed2441();
575 o.deleteProvider = buildUnnamed2405(); 590 o.deleteProvider = buildUnnamed2442();
576 o.disableUser = true; 591 o.disableUser = true;
577 o.displayName = "foo"; 592 o.displayName = "foo";
578 o.email = "foo"; 593 o.email = "foo";
579 o.emailVerified = true; 594 o.emailVerified = true;
580 o.idToken = "foo"; 595 o.idToken = "foo";
581 o.instanceId = "foo"; 596 o.instanceId = "foo";
582 o.lastLoginAt = "foo"; 597 o.lastLoginAt = "foo";
583 o.localId = "foo"; 598 o.localId = "foo";
584 o.oobCode = "foo"; 599 o.oobCode = "foo";
585 o.password = "foo"; 600 o.password = "foo";
601 o.phoneNumber = "foo";
586 o.photoUrl = "foo"; 602 o.photoUrl = "foo";
587 o.provider = buildUnnamed2406(); 603 o.provider = buildUnnamed2443();
588 o.returnSecureToken = true; 604 o.returnSecureToken = true;
589 o.upgradeToFederatedLogin = true; 605 o.upgradeToFederatedLogin = true;
590 o.validSince = "foo"; 606 o.validSince = "foo";
591 } 607 }
592 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; 608 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--;
593 return o; 609 return o;
594 } 610 }
595 611
596 checkIdentitytoolkitRelyingpartySetAccountInfoRequest(api.IdentitytoolkitRelying partySetAccountInfoRequest o) { 612 checkIdentitytoolkitRelyingpartySetAccountInfoRequest(api.IdentitytoolkitRelying partySetAccountInfoRequest o) {
597 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++; 613 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest++;
598 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) { 614 if (buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest < 3) {
599 unittest.expect(o.captchaChallenge, unittest.equals('foo')); 615 unittest.expect(o.captchaChallenge, unittest.equals('foo'));
600 unittest.expect(o.captchaResponse, unittest.equals('foo')); 616 unittest.expect(o.captchaResponse, unittest.equals('foo'));
601 unittest.expect(o.createdAt, unittest.equals('foo')); 617 unittest.expect(o.createdAt, unittest.equals('foo'));
602 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); 618 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo'));
603 checkUnnamed2404(o.deleteAttribute); 619 checkUnnamed2441(o.deleteAttribute);
604 checkUnnamed2405(o.deleteProvider); 620 checkUnnamed2442(o.deleteProvider);
605 unittest.expect(o.disableUser, unittest.isTrue); 621 unittest.expect(o.disableUser, unittest.isTrue);
606 unittest.expect(o.displayName, unittest.equals('foo')); 622 unittest.expect(o.displayName, unittest.equals('foo'));
607 unittest.expect(o.email, unittest.equals('foo')); 623 unittest.expect(o.email, unittest.equals('foo'));
608 unittest.expect(o.emailVerified, unittest.isTrue); 624 unittest.expect(o.emailVerified, unittest.isTrue);
609 unittest.expect(o.idToken, unittest.equals('foo')); 625 unittest.expect(o.idToken, unittest.equals('foo'));
610 unittest.expect(o.instanceId, unittest.equals('foo')); 626 unittest.expect(o.instanceId, unittest.equals('foo'));
611 unittest.expect(o.lastLoginAt, unittest.equals('foo')); 627 unittest.expect(o.lastLoginAt, unittest.equals('foo'));
612 unittest.expect(o.localId, unittest.equals('foo')); 628 unittest.expect(o.localId, unittest.equals('foo'));
613 unittest.expect(o.oobCode, unittest.equals('foo')); 629 unittest.expect(o.oobCode, unittest.equals('foo'));
614 unittest.expect(o.password, unittest.equals('foo')); 630 unittest.expect(o.password, unittest.equals('foo'));
631 unittest.expect(o.phoneNumber, unittest.equals('foo'));
615 unittest.expect(o.photoUrl, unittest.equals('foo')); 632 unittest.expect(o.photoUrl, unittest.equals('foo'));
616 checkUnnamed2406(o.provider); 633 checkUnnamed2443(o.provider);
617 unittest.expect(o.returnSecureToken, unittest.isTrue); 634 unittest.expect(o.returnSecureToken, unittest.isTrue);
618 unittest.expect(o.upgradeToFederatedLogin, unittest.isTrue); 635 unittest.expect(o.upgradeToFederatedLogin, unittest.isTrue);
619 unittest.expect(o.validSince, unittest.equals('foo')); 636 unittest.expect(o.validSince, unittest.equals('foo'));
620 } 637 }
621 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--; 638 buildCounterIdentitytoolkitRelyingpartySetAccountInfoRequest--;
622 } 639 }
623 640
624 buildUnnamed2407() { 641 buildUnnamed2444() {
625 var o = new core.List<core.String>(); 642 var o = new core.List<core.String>();
626 o.add("foo"); 643 o.add("foo");
627 o.add("foo"); 644 o.add("foo");
628 return o; 645 return o;
629 } 646 }
630 647
631 checkUnnamed2407(core.List<core.String> o) { 648 checkUnnamed2444(core.List<core.String> o) {
632 unittest.expect(o, unittest.hasLength(2)); 649 unittest.expect(o, unittest.hasLength(2));
633 unittest.expect(o[0], unittest.equals('foo')); 650 unittest.expect(o[0], unittest.equals('foo'));
634 unittest.expect(o[1], unittest.equals('foo')); 651 unittest.expect(o[1], unittest.equals('foo'));
635 } 652 }
636 653
637 buildUnnamed2408() { 654 buildUnnamed2445() {
638 var o = new core.List<api.IdpConfig>(); 655 var o = new core.List<api.IdpConfig>();
639 o.add(buildIdpConfig()); 656 o.add(buildIdpConfig());
640 o.add(buildIdpConfig()); 657 o.add(buildIdpConfig());
641 return o; 658 return o;
642 } 659 }
643 660
644 checkUnnamed2408(core.List<api.IdpConfig> o) { 661 checkUnnamed2445(core.List<api.IdpConfig> o) {
645 unittest.expect(o, unittest.hasLength(2)); 662 unittest.expect(o, unittest.hasLength(2));
646 checkIdpConfig(o[0]); 663 checkIdpConfig(o[0]);
647 checkIdpConfig(o[1]); 664 checkIdpConfig(o[1]);
648 } 665 }
649 666
650 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest = 0; 667 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest = 0;
651 buildIdentitytoolkitRelyingpartySetProjectConfigRequest() { 668 buildIdentitytoolkitRelyingpartySetProjectConfigRequest() {
652 var o = new api.IdentitytoolkitRelyingpartySetProjectConfigRequest(); 669 var o = new api.IdentitytoolkitRelyingpartySetProjectConfigRequest();
653 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; 670 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++;
654 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { 671 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) {
655 o.allowPasswordUser = true; 672 o.allowPasswordUser = true;
656 o.apiKey = "foo"; 673 o.apiKey = "foo";
657 o.authorizedDomains = buildUnnamed2407(); 674 o.authorizedDomains = buildUnnamed2444();
658 o.changeEmailTemplate = buildEmailTemplate(); 675 o.changeEmailTemplate = buildEmailTemplate();
659 o.delegatedProjectNumber = "foo"; 676 o.delegatedProjectNumber = "foo";
660 o.enableAnonymousUser = true; 677 o.enableAnonymousUser = true;
661 o.idpConfig = buildUnnamed2408(); 678 o.idpConfig = buildUnnamed2445();
662 o.legacyResetPasswordTemplate = buildEmailTemplate(); 679 o.legacyResetPasswordTemplate = buildEmailTemplate();
663 o.resetPasswordTemplate = buildEmailTemplate(); 680 o.resetPasswordTemplate = buildEmailTemplate();
664 o.useEmailSending = true; 681 o.useEmailSending = true;
665 o.verifyEmailTemplate = buildEmailTemplate(); 682 o.verifyEmailTemplate = buildEmailTemplate();
666 } 683 }
667 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; 684 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--;
668 return o; 685 return o;
669 } 686 }
670 687
671 checkIdentitytoolkitRelyingpartySetProjectConfigRequest(api.IdentitytoolkitRelyi ngpartySetProjectConfigRequest o) { 688 checkIdentitytoolkitRelyingpartySetProjectConfigRequest(api.IdentitytoolkitRelyi ngpartySetProjectConfigRequest o) {
672 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++; 689 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest++;
673 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) { 690 if (buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest < 3) {
674 unittest.expect(o.allowPasswordUser, unittest.isTrue); 691 unittest.expect(o.allowPasswordUser, unittest.isTrue);
675 unittest.expect(o.apiKey, unittest.equals('foo')); 692 unittest.expect(o.apiKey, unittest.equals('foo'));
676 checkUnnamed2407(o.authorizedDomains); 693 checkUnnamed2444(o.authorizedDomains);
677 checkEmailTemplate(o.changeEmailTemplate); 694 checkEmailTemplate(o.changeEmailTemplate);
678 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); 695 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo'));
679 unittest.expect(o.enableAnonymousUser, unittest.isTrue); 696 unittest.expect(o.enableAnonymousUser, unittest.isTrue);
680 checkUnnamed2408(o.idpConfig); 697 checkUnnamed2445(o.idpConfig);
681 checkEmailTemplate(o.legacyResetPasswordTemplate); 698 checkEmailTemplate(o.legacyResetPasswordTemplate);
682 checkEmailTemplate(o.resetPasswordTemplate); 699 checkEmailTemplate(o.resetPasswordTemplate);
683 unittest.expect(o.useEmailSending, unittest.isTrue); 700 unittest.expect(o.useEmailSending, unittest.isTrue);
684 checkEmailTemplate(o.verifyEmailTemplate); 701 checkEmailTemplate(o.verifyEmailTemplate);
685 } 702 }
686 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--; 703 buildCounterIdentitytoolkitRelyingpartySetProjectConfigRequest--;
687 } 704 }
688 705
689 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigResponse = 0; 706 core.int buildCounterIdentitytoolkitRelyingpartySetProjectConfigResponse = 0;
690 buildIdentitytoolkitRelyingpartySetProjectConfigResponse() { 707 buildIdentitytoolkitRelyingpartySetProjectConfigResponse() {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 o.captchaChallenge = "foo"; 770 o.captchaChallenge = "foo";
754 o.captchaResponse = "foo"; 771 o.captchaResponse = "foo";
755 o.disabled = true; 772 o.disabled = true;
756 o.displayName = "foo"; 773 o.displayName = "foo";
757 o.email = "foo"; 774 o.email = "foo";
758 o.emailVerified = true; 775 o.emailVerified = true;
759 o.idToken = "foo"; 776 o.idToken = "foo";
760 o.instanceId = "foo"; 777 o.instanceId = "foo";
761 o.localId = "foo"; 778 o.localId = "foo";
762 o.password = "foo"; 779 o.password = "foo";
780 o.phoneNumber = "foo";
763 o.photoUrl = "foo"; 781 o.photoUrl = "foo";
764 } 782 }
765 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest--; 783 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest--;
766 return o; 784 return o;
767 } 785 }
768 786
769 checkIdentitytoolkitRelyingpartySignupNewUserRequest(api.IdentitytoolkitRelyingp artySignupNewUserRequest o) { 787 checkIdentitytoolkitRelyingpartySignupNewUserRequest(api.IdentitytoolkitRelyingp artySignupNewUserRequest o) {
770 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest++; 788 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest++;
771 if (buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest < 3) { 789 if (buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest < 3) {
772 unittest.expect(o.captchaChallenge, unittest.equals('foo')); 790 unittest.expect(o.captchaChallenge, unittest.equals('foo'));
773 unittest.expect(o.captchaResponse, unittest.equals('foo')); 791 unittest.expect(o.captchaResponse, unittest.equals('foo'));
774 unittest.expect(o.disabled, unittest.isTrue); 792 unittest.expect(o.disabled, unittest.isTrue);
775 unittest.expect(o.displayName, unittest.equals('foo')); 793 unittest.expect(o.displayName, unittest.equals('foo'));
776 unittest.expect(o.email, unittest.equals('foo')); 794 unittest.expect(o.email, unittest.equals('foo'));
777 unittest.expect(o.emailVerified, unittest.isTrue); 795 unittest.expect(o.emailVerified, unittest.isTrue);
778 unittest.expect(o.idToken, unittest.equals('foo')); 796 unittest.expect(o.idToken, unittest.equals('foo'));
779 unittest.expect(o.instanceId, unittest.equals('foo')); 797 unittest.expect(o.instanceId, unittest.equals('foo'));
780 unittest.expect(o.localId, unittest.equals('foo')); 798 unittest.expect(o.localId, unittest.equals('foo'));
781 unittest.expect(o.password, unittest.equals('foo')); 799 unittest.expect(o.password, unittest.equals('foo'));
800 unittest.expect(o.phoneNumber, unittest.equals('foo'));
782 unittest.expect(o.photoUrl, unittest.equals('foo')); 801 unittest.expect(o.photoUrl, unittest.equals('foo'));
783 } 802 }
784 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest--; 803 buildCounterIdentitytoolkitRelyingpartySignupNewUserRequest--;
785 } 804 }
786 805
787 buildUnnamed2409() { 806 buildUnnamed2446() {
788 var o = new core.List<api.UserInfo>(); 807 var o = new core.List<api.UserInfo>();
789 o.add(buildUserInfo()); 808 o.add(buildUserInfo());
790 o.add(buildUserInfo()); 809 o.add(buildUserInfo());
791 return o; 810 return o;
792 } 811 }
793 812
794 checkUnnamed2409(core.List<api.UserInfo> o) { 813 checkUnnamed2446(core.List<api.UserInfo> o) {
795 unittest.expect(o, unittest.hasLength(2)); 814 unittest.expect(o, unittest.hasLength(2));
796 checkUserInfo(o[0]); 815 checkUserInfo(o[0]);
797 checkUserInfo(o[1]); 816 checkUserInfo(o[1]);
798 } 817 }
799 818
800 core.int buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest = 0; 819 core.int buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest = 0;
801 buildIdentitytoolkitRelyingpartyUploadAccountRequest() { 820 buildIdentitytoolkitRelyingpartyUploadAccountRequest() {
802 var o = new api.IdentitytoolkitRelyingpartyUploadAccountRequest(); 821 var o = new api.IdentitytoolkitRelyingpartyUploadAccountRequest();
803 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; 822 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++;
804 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { 823 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) {
805 o.allowOverwrite = true; 824 o.allowOverwrite = true;
806 o.delegatedProjectNumber = "foo"; 825 o.delegatedProjectNumber = "foo";
807 o.hashAlgorithm = "foo"; 826 o.hashAlgorithm = "foo";
808 o.memoryCost = 42; 827 o.memoryCost = 42;
809 o.rounds = 42; 828 o.rounds = 42;
810 o.saltSeparator = "foo"; 829 o.saltSeparator = "foo";
811 o.sanityCheck = true; 830 o.sanityCheck = true;
812 o.signerKey = "foo"; 831 o.signerKey = "foo";
813 o.targetProjectId = "foo"; 832 o.targetProjectId = "foo";
814 o.users = buildUnnamed2409(); 833 o.users = buildUnnamed2446();
815 } 834 }
816 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; 835 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--;
817 return o; 836 return o;
818 } 837 }
819 838
820 checkIdentitytoolkitRelyingpartyUploadAccountRequest(api.IdentitytoolkitRelyingp artyUploadAccountRequest o) { 839 checkIdentitytoolkitRelyingpartyUploadAccountRequest(api.IdentitytoolkitRelyingp artyUploadAccountRequest o) {
821 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++; 840 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest++;
822 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) { 841 if (buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest < 3) {
823 unittest.expect(o.allowOverwrite, unittest.isTrue); 842 unittest.expect(o.allowOverwrite, unittest.isTrue);
824 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo')); 843 unittest.expect(o.delegatedProjectNumber, unittest.equals('foo'));
825 unittest.expect(o.hashAlgorithm, unittest.equals('foo')); 844 unittest.expect(o.hashAlgorithm, unittest.equals('foo'));
826 unittest.expect(o.memoryCost, unittest.equals(42)); 845 unittest.expect(o.memoryCost, unittest.equals(42));
827 unittest.expect(o.rounds, unittest.equals(42)); 846 unittest.expect(o.rounds, unittest.equals(42));
828 unittest.expect(o.saltSeparator, unittest.equals('foo')); 847 unittest.expect(o.saltSeparator, unittest.equals('foo'));
829 unittest.expect(o.sanityCheck, unittest.isTrue); 848 unittest.expect(o.sanityCheck, unittest.isTrue);
830 unittest.expect(o.signerKey, unittest.equals('foo')); 849 unittest.expect(o.signerKey, unittest.equals('foo'));
831 unittest.expect(o.targetProjectId, unittest.equals('foo')); 850 unittest.expect(o.targetProjectId, unittest.equals('foo'));
832 checkUnnamed2409(o.users); 851 checkUnnamed2446(o.users);
833 } 852 }
834 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--; 853 buildCounterIdentitytoolkitRelyingpartyUploadAccountRequest--;
835 } 854 }
836 855
837 core.int buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest = 0; 856 core.int buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest = 0;
838 buildIdentitytoolkitRelyingpartyVerifyAssertionRequest() { 857 buildIdentitytoolkitRelyingpartyVerifyAssertionRequest() {
839 var o = new api.IdentitytoolkitRelyingpartyVerifyAssertionRequest(); 858 var o = new api.IdentitytoolkitRelyingpartyVerifyAssertionRequest();
840 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest++; 859 buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest++;
841 if (buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest < 3) { 860 if (buildCounterIdentitytoolkitRelyingpartyVerifyAssertionRequest < 3) {
842 o.autoCreate = true; 861 o.autoCreate = true;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 unittest.expect(o.email, unittest.equals('foo')); 945 unittest.expect(o.email, unittest.equals('foo'));
927 unittest.expect(o.idToken, unittest.equals('foo')); 946 unittest.expect(o.idToken, unittest.equals('foo'));
928 unittest.expect(o.instanceId, unittest.equals('foo')); 947 unittest.expect(o.instanceId, unittest.equals('foo'));
929 unittest.expect(o.password, unittest.equals('foo')); 948 unittest.expect(o.password, unittest.equals('foo'));
930 unittest.expect(o.pendingIdToken, unittest.equals('foo')); 949 unittest.expect(o.pendingIdToken, unittest.equals('foo'));
931 unittest.expect(o.returnSecureToken, unittest.isTrue); 950 unittest.expect(o.returnSecureToken, unittest.isTrue);
932 } 951 }
933 buildCounterIdentitytoolkitRelyingpartyVerifyPasswordRequest--; 952 buildCounterIdentitytoolkitRelyingpartyVerifyPasswordRequest--;
934 } 953 }
935 954
936 buildUnnamed2410() { 955 buildUnnamed2447() {
937 var o = new core.List<core.String>(); 956 var o = new core.List<core.String>();
938 o.add("foo"); 957 o.add("foo");
939 o.add("foo"); 958 o.add("foo");
940 return o; 959 return o;
941 } 960 }
942 961
943 checkUnnamed2410(core.List<core.String> o) { 962 checkUnnamed2447(core.List<core.String> o) {
944 unittest.expect(o, unittest.hasLength(2)); 963 unittest.expect(o, unittest.hasLength(2));
945 unittest.expect(o[0], unittest.equals('foo')); 964 unittest.expect(o[0], unittest.equals('foo'));
946 unittest.expect(o[1], unittest.equals('foo')); 965 unittest.expect(o[1], unittest.equals('foo'));
947 } 966 }
948 967
949 core.int buildCounterIdpConfig = 0; 968 core.int buildCounterIdpConfig = 0;
950 buildIdpConfig() { 969 buildIdpConfig() {
951 var o = new api.IdpConfig(); 970 var o = new api.IdpConfig();
952 buildCounterIdpConfig++; 971 buildCounterIdpConfig++;
953 if (buildCounterIdpConfig < 3) { 972 if (buildCounterIdpConfig < 3) {
954 o.clientId = "foo"; 973 o.clientId = "foo";
955 o.enabled = true; 974 o.enabled = true;
956 o.experimentPercent = 42; 975 o.experimentPercent = 42;
957 o.provider = "foo"; 976 o.provider = "foo";
958 o.secret = "foo"; 977 o.secret = "foo";
959 o.whitelistedAudiences = buildUnnamed2410(); 978 o.whitelistedAudiences = buildUnnamed2447();
960 } 979 }
961 buildCounterIdpConfig--; 980 buildCounterIdpConfig--;
962 return o; 981 return o;
963 } 982 }
964 983
965 checkIdpConfig(api.IdpConfig o) { 984 checkIdpConfig(api.IdpConfig o) {
966 buildCounterIdpConfig++; 985 buildCounterIdpConfig++;
967 if (buildCounterIdpConfig < 3) { 986 if (buildCounterIdpConfig < 3) {
968 unittest.expect(o.clientId, unittest.equals('foo')); 987 unittest.expect(o.clientId, unittest.equals('foo'));
969 unittest.expect(o.enabled, unittest.isTrue); 988 unittest.expect(o.enabled, unittest.isTrue);
970 unittest.expect(o.experimentPercent, unittest.equals(42)); 989 unittest.expect(o.experimentPercent, unittest.equals(42));
971 unittest.expect(o.provider, unittest.equals('foo')); 990 unittest.expect(o.provider, unittest.equals('foo'));
972 unittest.expect(o.secret, unittest.equals('foo')); 991 unittest.expect(o.secret, unittest.equals('foo'));
973 checkUnnamed2410(o.whitelistedAudiences); 992 checkUnnamed2447(o.whitelistedAudiences);
974 } 993 }
975 buildCounterIdpConfig--; 994 buildCounterIdpConfig--;
976 } 995 }
977 996
978 core.int buildCounterRelyingparty = 0; 997 core.int buildCounterRelyingparty = 0;
979 buildRelyingparty() { 998 buildRelyingparty() {
980 var o = new api.Relyingparty(); 999 var o = new api.Relyingparty();
981 buildCounterRelyingparty++; 1000 buildCounterRelyingparty++;
982 if (buildCounterRelyingparty < 3) { 1001 if (buildCounterRelyingparty < 3) {
983 o.androidInstallApp = true; 1002 o.androidInstallApp = true;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 buildCounterSetAccountInfoResponseProviderUserInfo++; 1084 buildCounterSetAccountInfoResponseProviderUserInfo++;
1066 if (buildCounterSetAccountInfoResponseProviderUserInfo < 3) { 1085 if (buildCounterSetAccountInfoResponseProviderUserInfo < 3) {
1067 unittest.expect(o.displayName, unittest.equals('foo')); 1086 unittest.expect(o.displayName, unittest.equals('foo'));
1068 unittest.expect(o.federatedId, unittest.equals('foo')); 1087 unittest.expect(o.federatedId, unittest.equals('foo'));
1069 unittest.expect(o.photoUrl, unittest.equals('foo')); 1088 unittest.expect(o.photoUrl, unittest.equals('foo'));
1070 unittest.expect(o.providerId, unittest.equals('foo')); 1089 unittest.expect(o.providerId, unittest.equals('foo'));
1071 } 1090 }
1072 buildCounterSetAccountInfoResponseProviderUserInfo--; 1091 buildCounterSetAccountInfoResponseProviderUserInfo--;
1073 } 1092 }
1074 1093
1075 buildUnnamed2411() { 1094 buildUnnamed2448() {
1076 var o = new core.List<api.SetAccountInfoResponseProviderUserInfo>(); 1095 var o = new core.List<api.SetAccountInfoResponseProviderUserInfo>();
1077 o.add(buildSetAccountInfoResponseProviderUserInfo()); 1096 o.add(buildSetAccountInfoResponseProviderUserInfo());
1078 o.add(buildSetAccountInfoResponseProviderUserInfo()); 1097 o.add(buildSetAccountInfoResponseProviderUserInfo());
1079 return o; 1098 return o;
1080 } 1099 }
1081 1100
1082 checkUnnamed2411(core.List<api.SetAccountInfoResponseProviderUserInfo> o) { 1101 checkUnnamed2448(core.List<api.SetAccountInfoResponseProviderUserInfo> o) {
1083 unittest.expect(o, unittest.hasLength(2)); 1102 unittest.expect(o, unittest.hasLength(2));
1084 checkSetAccountInfoResponseProviderUserInfo(o[0]); 1103 checkSetAccountInfoResponseProviderUserInfo(o[0]);
1085 checkSetAccountInfoResponseProviderUserInfo(o[1]); 1104 checkSetAccountInfoResponseProviderUserInfo(o[1]);
1086 } 1105 }
1087 1106
1088 core.int buildCounterSetAccountInfoResponse = 0; 1107 core.int buildCounterSetAccountInfoResponse = 0;
1089 buildSetAccountInfoResponse() { 1108 buildSetAccountInfoResponse() {
1090 var o = new api.SetAccountInfoResponse(); 1109 var o = new api.SetAccountInfoResponse();
1091 buildCounterSetAccountInfoResponse++; 1110 buildCounterSetAccountInfoResponse++;
1092 if (buildCounterSetAccountInfoResponse < 3) { 1111 if (buildCounterSetAccountInfoResponse < 3) {
1093 o.displayName = "foo"; 1112 o.displayName = "foo";
1094 o.email = "foo"; 1113 o.email = "foo";
1095 o.emailVerified = true; 1114 o.emailVerified = true;
1096 o.expiresIn = "foo"; 1115 o.expiresIn = "foo";
1097 o.idToken = "foo"; 1116 o.idToken = "foo";
1098 o.kind = "foo"; 1117 o.kind = "foo";
1099 o.localId = "foo"; 1118 o.localId = "foo";
1100 o.newEmail = "foo"; 1119 o.newEmail = "foo";
1101 o.passwordHash = "foo"; 1120 o.passwordHash = "foo";
1102 o.photoUrl = "foo"; 1121 o.photoUrl = "foo";
1103 o.providerUserInfo = buildUnnamed2411(); 1122 o.providerUserInfo = buildUnnamed2448();
1104 o.refreshToken = "foo"; 1123 o.refreshToken = "foo";
1105 } 1124 }
1106 buildCounterSetAccountInfoResponse--; 1125 buildCounterSetAccountInfoResponse--;
1107 return o; 1126 return o;
1108 } 1127 }
1109 1128
1110 checkSetAccountInfoResponse(api.SetAccountInfoResponse o) { 1129 checkSetAccountInfoResponse(api.SetAccountInfoResponse o) {
1111 buildCounterSetAccountInfoResponse++; 1130 buildCounterSetAccountInfoResponse++;
1112 if (buildCounterSetAccountInfoResponse < 3) { 1131 if (buildCounterSetAccountInfoResponse < 3) {
1113 unittest.expect(o.displayName, unittest.equals('foo')); 1132 unittest.expect(o.displayName, unittest.equals('foo'));
1114 unittest.expect(o.email, unittest.equals('foo')); 1133 unittest.expect(o.email, unittest.equals('foo'));
1115 unittest.expect(o.emailVerified, unittest.isTrue); 1134 unittest.expect(o.emailVerified, unittest.isTrue);
1116 unittest.expect(o.expiresIn, unittest.equals('foo')); 1135 unittest.expect(o.expiresIn, unittest.equals('foo'));
1117 unittest.expect(o.idToken, unittest.equals('foo')); 1136 unittest.expect(o.idToken, unittest.equals('foo'));
1118 unittest.expect(o.kind, unittest.equals('foo')); 1137 unittest.expect(o.kind, unittest.equals('foo'));
1119 unittest.expect(o.localId, unittest.equals('foo')); 1138 unittest.expect(o.localId, unittest.equals('foo'));
1120 unittest.expect(o.newEmail, unittest.equals('foo')); 1139 unittest.expect(o.newEmail, unittest.equals('foo'));
1121 unittest.expect(o.passwordHash, unittest.equals('foo')); 1140 unittest.expect(o.passwordHash, unittest.equals('foo'));
1122 unittest.expect(o.photoUrl, unittest.equals('foo')); 1141 unittest.expect(o.photoUrl, unittest.equals('foo'));
1123 checkUnnamed2411(o.providerUserInfo); 1142 checkUnnamed2448(o.providerUserInfo);
1124 unittest.expect(o.refreshToken, unittest.equals('foo')); 1143 unittest.expect(o.refreshToken, unittest.equals('foo'));
1125 } 1144 }
1126 buildCounterSetAccountInfoResponse--; 1145 buildCounterSetAccountInfoResponse--;
1127 } 1146 }
1128 1147
1129 core.int buildCounterSignupNewUserResponse = 0; 1148 core.int buildCounterSignupNewUserResponse = 0;
1130 buildSignupNewUserResponse() { 1149 buildSignupNewUserResponse() {
1131 var o = new api.SignupNewUserResponse(); 1150 var o = new api.SignupNewUserResponse();
1132 buildCounterSignupNewUserResponse++; 1151 buildCounterSignupNewUserResponse++;
1133 if (buildCounterSignupNewUserResponse < 3) { 1152 if (buildCounterSignupNewUserResponse < 3) {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 1190
1172 checkUploadAccountResponseError(api.UploadAccountResponseError o) { 1191 checkUploadAccountResponseError(api.UploadAccountResponseError o) {
1173 buildCounterUploadAccountResponseError++; 1192 buildCounterUploadAccountResponseError++;
1174 if (buildCounterUploadAccountResponseError < 3) { 1193 if (buildCounterUploadAccountResponseError < 3) {
1175 unittest.expect(o.index, unittest.equals(42)); 1194 unittest.expect(o.index, unittest.equals(42));
1176 unittest.expect(o.message, unittest.equals('foo')); 1195 unittest.expect(o.message, unittest.equals('foo'));
1177 } 1196 }
1178 buildCounterUploadAccountResponseError--; 1197 buildCounterUploadAccountResponseError--;
1179 } 1198 }
1180 1199
1181 buildUnnamed2412() { 1200 buildUnnamed2449() {
1182 var o = new core.List<api.UploadAccountResponseError>(); 1201 var o = new core.List<api.UploadAccountResponseError>();
1183 o.add(buildUploadAccountResponseError()); 1202 o.add(buildUploadAccountResponseError());
1184 o.add(buildUploadAccountResponseError()); 1203 o.add(buildUploadAccountResponseError());
1185 return o; 1204 return o;
1186 } 1205 }
1187 1206
1188 checkUnnamed2412(core.List<api.UploadAccountResponseError> o) { 1207 checkUnnamed2449(core.List<api.UploadAccountResponseError> o) {
1189 unittest.expect(o, unittest.hasLength(2)); 1208 unittest.expect(o, unittest.hasLength(2));
1190 checkUploadAccountResponseError(o[0]); 1209 checkUploadAccountResponseError(o[0]);
1191 checkUploadAccountResponseError(o[1]); 1210 checkUploadAccountResponseError(o[1]);
1192 } 1211 }
1193 1212
1194 core.int buildCounterUploadAccountResponse = 0; 1213 core.int buildCounterUploadAccountResponse = 0;
1195 buildUploadAccountResponse() { 1214 buildUploadAccountResponse() {
1196 var o = new api.UploadAccountResponse(); 1215 var o = new api.UploadAccountResponse();
1197 buildCounterUploadAccountResponse++; 1216 buildCounterUploadAccountResponse++;
1198 if (buildCounterUploadAccountResponse < 3) { 1217 if (buildCounterUploadAccountResponse < 3) {
1199 o.error = buildUnnamed2412(); 1218 o.error = buildUnnamed2449();
1200 o.kind = "foo"; 1219 o.kind = "foo";
1201 } 1220 }
1202 buildCounterUploadAccountResponse--; 1221 buildCounterUploadAccountResponse--;
1203 return o; 1222 return o;
1204 } 1223 }
1205 1224
1206 checkUploadAccountResponse(api.UploadAccountResponse o) { 1225 checkUploadAccountResponse(api.UploadAccountResponse o) {
1207 buildCounterUploadAccountResponse++; 1226 buildCounterUploadAccountResponse++;
1208 if (buildCounterUploadAccountResponse < 3) { 1227 if (buildCounterUploadAccountResponse < 3) {
1209 checkUnnamed2412(o.error); 1228 checkUnnamed2449(o.error);
1210 unittest.expect(o.kind, unittest.equals('foo')); 1229 unittest.expect(o.kind, unittest.equals('foo'));
1211 } 1230 }
1212 buildCounterUploadAccountResponse--; 1231 buildCounterUploadAccountResponse--;
1213 } 1232 }
1214 1233
1215 core.int buildCounterUserInfoProviderUserInfo = 0; 1234 core.int buildCounterUserInfoProviderUserInfo = 0;
1216 buildUserInfoProviderUserInfo() { 1235 buildUserInfoProviderUserInfo() {
1217 var o = new api.UserInfoProviderUserInfo(); 1236 var o = new api.UserInfoProviderUserInfo();
1218 buildCounterUserInfoProviderUserInfo++; 1237 buildCounterUserInfoProviderUserInfo++;
1219 if (buildCounterUserInfoProviderUserInfo < 3) { 1238 if (buildCounterUserInfoProviderUserInfo < 3) {
(...skipping 18 matching lines...) Expand all
1238 unittest.expect(o.federatedId, unittest.equals('foo')); 1257 unittest.expect(o.federatedId, unittest.equals('foo'));
1239 unittest.expect(o.phoneNumber, unittest.equals('foo')); 1258 unittest.expect(o.phoneNumber, unittest.equals('foo'));
1240 unittest.expect(o.photoUrl, unittest.equals('foo')); 1259 unittest.expect(o.photoUrl, unittest.equals('foo'));
1241 unittest.expect(o.providerId, unittest.equals('foo')); 1260 unittest.expect(o.providerId, unittest.equals('foo'));
1242 unittest.expect(o.rawId, unittest.equals('foo')); 1261 unittest.expect(o.rawId, unittest.equals('foo'));
1243 unittest.expect(o.screenName, unittest.equals('foo')); 1262 unittest.expect(o.screenName, unittest.equals('foo'));
1244 } 1263 }
1245 buildCounterUserInfoProviderUserInfo--; 1264 buildCounterUserInfoProviderUserInfo--;
1246 } 1265 }
1247 1266
1248 buildUnnamed2413() { 1267 buildUnnamed2450() {
1249 var o = new core.List<api.UserInfoProviderUserInfo>(); 1268 var o = new core.List<api.UserInfoProviderUserInfo>();
1250 o.add(buildUserInfoProviderUserInfo()); 1269 o.add(buildUserInfoProviderUserInfo());
1251 o.add(buildUserInfoProviderUserInfo()); 1270 o.add(buildUserInfoProviderUserInfo());
1252 return o; 1271 return o;
1253 } 1272 }
1254 1273
1255 checkUnnamed2413(core.List<api.UserInfoProviderUserInfo> o) { 1274 checkUnnamed2450(core.List<api.UserInfoProviderUserInfo> o) {
1256 unittest.expect(o, unittest.hasLength(2)); 1275 unittest.expect(o, unittest.hasLength(2));
1257 checkUserInfoProviderUserInfo(o[0]); 1276 checkUserInfoProviderUserInfo(o[0]);
1258 checkUserInfoProviderUserInfo(o[1]); 1277 checkUserInfoProviderUserInfo(o[1]);
1259 } 1278 }
1260 1279
1261 core.int buildCounterUserInfo = 0; 1280 core.int buildCounterUserInfo = 0;
1262 buildUserInfo() { 1281 buildUserInfo() {
1263 var o = new api.UserInfo(); 1282 var o = new api.UserInfo();
1264 buildCounterUserInfo++; 1283 buildCounterUserInfo++;
1265 if (buildCounterUserInfo < 3) { 1284 if (buildCounterUserInfo < 3) {
1266 o.createdAt = "foo"; 1285 o.createdAt = "foo";
1267 o.customAuth = true; 1286 o.customAuth = true;
1268 o.disabled = true; 1287 o.disabled = true;
1269 o.displayName = "foo"; 1288 o.displayName = "foo";
1270 o.email = "foo"; 1289 o.email = "foo";
1271 o.emailVerified = true; 1290 o.emailVerified = true;
1272 o.lastLoginAt = "foo"; 1291 o.lastLoginAt = "foo";
1273 o.localId = "foo"; 1292 o.localId = "foo";
1274 o.passwordHash = "foo"; 1293 o.passwordHash = "foo";
1275 o.passwordUpdatedAt = 42.0; 1294 o.passwordUpdatedAt = 42.0;
1276 o.phoneNumber = "foo"; 1295 o.phoneNumber = "foo";
1277 o.photoUrl = "foo"; 1296 o.photoUrl = "foo";
1278 o.providerUserInfo = buildUnnamed2413(); 1297 o.providerUserInfo = buildUnnamed2450();
1279 o.rawPassword = "foo"; 1298 o.rawPassword = "foo";
1280 o.salt = "foo"; 1299 o.salt = "foo";
1281 o.screenName = "foo"; 1300 o.screenName = "foo";
1282 o.validSince = "foo"; 1301 o.validSince = "foo";
1283 o.version = 42; 1302 o.version = 42;
1284 } 1303 }
1285 buildCounterUserInfo--; 1304 buildCounterUserInfo--;
1286 return o; 1305 return o;
1287 } 1306 }
1288 1307
1289 checkUserInfo(api.UserInfo o) { 1308 checkUserInfo(api.UserInfo o) {
1290 buildCounterUserInfo++; 1309 buildCounterUserInfo++;
1291 if (buildCounterUserInfo < 3) { 1310 if (buildCounterUserInfo < 3) {
1292 unittest.expect(o.createdAt, unittest.equals('foo')); 1311 unittest.expect(o.createdAt, unittest.equals('foo'));
1293 unittest.expect(o.customAuth, unittest.isTrue); 1312 unittest.expect(o.customAuth, unittest.isTrue);
1294 unittest.expect(o.disabled, unittest.isTrue); 1313 unittest.expect(o.disabled, unittest.isTrue);
1295 unittest.expect(o.displayName, unittest.equals('foo')); 1314 unittest.expect(o.displayName, unittest.equals('foo'));
1296 unittest.expect(o.email, unittest.equals('foo')); 1315 unittest.expect(o.email, unittest.equals('foo'));
1297 unittest.expect(o.emailVerified, unittest.isTrue); 1316 unittest.expect(o.emailVerified, unittest.isTrue);
1298 unittest.expect(o.lastLoginAt, unittest.equals('foo')); 1317 unittest.expect(o.lastLoginAt, unittest.equals('foo'));
1299 unittest.expect(o.localId, unittest.equals('foo')); 1318 unittest.expect(o.localId, unittest.equals('foo'));
1300 unittest.expect(o.passwordHash, unittest.equals('foo')); 1319 unittest.expect(o.passwordHash, unittest.equals('foo'));
1301 unittest.expect(o.passwordUpdatedAt, unittest.equals(42.0)); 1320 unittest.expect(o.passwordUpdatedAt, unittest.equals(42.0));
1302 unittest.expect(o.phoneNumber, unittest.equals('foo')); 1321 unittest.expect(o.phoneNumber, unittest.equals('foo'));
1303 unittest.expect(o.photoUrl, unittest.equals('foo')); 1322 unittest.expect(o.photoUrl, unittest.equals('foo'));
1304 checkUnnamed2413(o.providerUserInfo); 1323 checkUnnamed2450(o.providerUserInfo);
1305 unittest.expect(o.rawPassword, unittest.equals('foo')); 1324 unittest.expect(o.rawPassword, unittest.equals('foo'));
1306 unittest.expect(o.salt, unittest.equals('foo')); 1325 unittest.expect(o.salt, unittest.equals('foo'));
1307 unittest.expect(o.screenName, unittest.equals('foo')); 1326 unittest.expect(o.screenName, unittest.equals('foo'));
1308 unittest.expect(o.validSince, unittest.equals('foo')); 1327 unittest.expect(o.validSince, unittest.equals('foo'));
1309 unittest.expect(o.version, unittest.equals(42)); 1328 unittest.expect(o.version, unittest.equals(42));
1310 } 1329 }
1311 buildCounterUserInfo--; 1330 buildCounterUserInfo--;
1312 } 1331 }
1313 1332
1314 buildUnnamed2414() { 1333 buildUnnamed2451() {
1315 var o = new core.List<core.String>(); 1334 var o = new core.List<core.String>();
1316 o.add("foo"); 1335 o.add("foo");
1317 o.add("foo"); 1336 o.add("foo");
1318 return o; 1337 return o;
1319 } 1338 }
1320 1339
1321 checkUnnamed2414(core.List<core.String> o) { 1340 checkUnnamed2451(core.List<core.String> o) {
1322 unittest.expect(o, unittest.hasLength(2)); 1341 unittest.expect(o, unittest.hasLength(2));
1323 unittest.expect(o[0], unittest.equals('foo')); 1342 unittest.expect(o[0], unittest.equals('foo'));
1324 unittest.expect(o[1], unittest.equals('foo')); 1343 unittest.expect(o[1], unittest.equals('foo'));
1325 } 1344 }
1326 1345
1327 core.int buildCounterVerifyAssertionResponse = 0; 1346 core.int buildCounterVerifyAssertionResponse = 0;
1328 buildVerifyAssertionResponse() { 1347 buildVerifyAssertionResponse() {
1329 var o = new api.VerifyAssertionResponse(); 1348 var o = new api.VerifyAssertionResponse();
1330 buildCounterVerifyAssertionResponse++; 1349 buildCounterVerifyAssertionResponse++;
1331 if (buildCounterVerifyAssertionResponse < 3) { 1350 if (buildCounterVerifyAssertionResponse < 3) {
(...skipping 28 matching lines...) Expand all
1360 o.oauthRequestToken = "foo"; 1379 o.oauthRequestToken = "foo";
1361 o.oauthScope = "foo"; 1380 o.oauthScope = "foo";
1362 o.oauthTokenSecret = "foo"; 1381 o.oauthTokenSecret = "foo";
1363 o.originalEmail = "foo"; 1382 o.originalEmail = "foo";
1364 o.photoUrl = "foo"; 1383 o.photoUrl = "foo";
1365 o.providerId = "foo"; 1384 o.providerId = "foo";
1366 o.rawUserInfo = "foo"; 1385 o.rawUserInfo = "foo";
1367 o.refreshToken = "foo"; 1386 o.refreshToken = "foo";
1368 o.screenName = "foo"; 1387 o.screenName = "foo";
1369 o.timeZone = "foo"; 1388 o.timeZone = "foo";
1370 o.verifiedProvider = buildUnnamed2414(); 1389 o.verifiedProvider = buildUnnamed2451();
1371 } 1390 }
1372 buildCounterVerifyAssertionResponse--; 1391 buildCounterVerifyAssertionResponse--;
1373 return o; 1392 return o;
1374 } 1393 }
1375 1394
1376 checkVerifyAssertionResponse(api.VerifyAssertionResponse o) { 1395 checkVerifyAssertionResponse(api.VerifyAssertionResponse o) {
1377 buildCounterVerifyAssertionResponse++; 1396 buildCounterVerifyAssertionResponse++;
1378 if (buildCounterVerifyAssertionResponse < 3) { 1397 if (buildCounterVerifyAssertionResponse < 3) {
1379 unittest.expect(o.action, unittest.equals('foo')); 1398 unittest.expect(o.action, unittest.equals('foo'));
1380 unittest.expect(o.appInstallationUrl, unittest.equals('foo')); 1399 unittest.expect(o.appInstallationUrl, unittest.equals('foo'));
(...skipping 26 matching lines...) Expand all
1407 unittest.expect(o.oauthRequestToken, unittest.equals('foo')); 1426 unittest.expect(o.oauthRequestToken, unittest.equals('foo'));
1408 unittest.expect(o.oauthScope, unittest.equals('foo')); 1427 unittest.expect(o.oauthScope, unittest.equals('foo'));
1409 unittest.expect(o.oauthTokenSecret, unittest.equals('foo')); 1428 unittest.expect(o.oauthTokenSecret, unittest.equals('foo'));
1410 unittest.expect(o.originalEmail, unittest.equals('foo')); 1429 unittest.expect(o.originalEmail, unittest.equals('foo'));
1411 unittest.expect(o.photoUrl, unittest.equals('foo')); 1430 unittest.expect(o.photoUrl, unittest.equals('foo'));
1412 unittest.expect(o.providerId, unittest.equals('foo')); 1431 unittest.expect(o.providerId, unittest.equals('foo'));
1413 unittest.expect(o.rawUserInfo, unittest.equals('foo')); 1432 unittest.expect(o.rawUserInfo, unittest.equals('foo'));
1414 unittest.expect(o.refreshToken, unittest.equals('foo')); 1433 unittest.expect(o.refreshToken, unittest.equals('foo'));
1415 unittest.expect(o.screenName, unittest.equals('foo')); 1434 unittest.expect(o.screenName, unittest.equals('foo'));
1416 unittest.expect(o.timeZone, unittest.equals('foo')); 1435 unittest.expect(o.timeZone, unittest.equals('foo'));
1417 checkUnnamed2414(o.verifiedProvider); 1436 checkUnnamed2451(o.verifiedProvider);
1418 } 1437 }
1419 buildCounterVerifyAssertionResponse--; 1438 buildCounterVerifyAssertionResponse--;
1420 } 1439 }
1421 1440
1422 core.int buildCounterVerifyCustomTokenResponse = 0; 1441 core.int buildCounterVerifyCustomTokenResponse = 0;
1423 buildVerifyCustomTokenResponse() { 1442 buildVerifyCustomTokenResponse() {
1424 var o = new api.VerifyCustomTokenResponse(); 1443 var o = new api.VerifyCustomTokenResponse();
1425 buildCounterVerifyCustomTokenResponse++; 1444 buildCounterVerifyCustomTokenResponse++;
1426 if (buildCounterVerifyCustomTokenResponse < 3) { 1445 if (buildCounterVerifyCustomTokenResponse < 3) {
1427 o.expiresIn = "foo"; 1446 o.expiresIn = "foo";
(...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
2644 res.verifyPassword(arg_request).then(unittest.expectAsync1(((api.VerifyPas swordResponse response) { 2663 res.verifyPassword(arg_request).then(unittest.expectAsync1(((api.VerifyPas swordResponse response) {
2645 checkVerifyPasswordResponse(response); 2664 checkVerifyPasswordResponse(response);
2646 }))); 2665 })));
2647 }); 2666 });
2648 2667
2649 }); 2668 });
2650 2669
2651 2670
2652 } 2671 }
2653 2672
OLDNEW
« no previous file with comments | « generated/googleapis/test/genomics/v1_test.dart ('k') | generated/googleapis/test/language/v1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698