This commit is contained in:
@@ -17,10 +17,10 @@ namespace VisaApi.Fakers.Auth
|
||||
{
|
||||
RuleFor(x => x.ApplicantName, () => nameModelFaker.Generate());
|
||||
RuleFor(x => x.BirthDate, faker => dateTimeProvider.Now().AddYears(-faker.Random.Int(20, 100)));
|
||||
RuleFor(x => x.Citizenship, faker => faker.Address.Country());
|
||||
RuleFor(x => x.CitizenshipByBirth, faker => faker.Address.Country());
|
||||
RuleFor(x => x.Citizenship, faker => "aaaa");
|
||||
RuleFor(x => x.CitizenshipByBirth, faker => "aaaa");
|
||||
RuleFor(x => x.CityOfBirth, faker => faker.Address.City());
|
||||
RuleFor(x => x.CountryOfBirth, faker => faker.Address.Country());
|
||||
RuleFor(x => x.CountryOfBirth, _ => "aaaa");
|
||||
RuleFor(x => x.FatherName, () => nameModelFaker.Generate());
|
||||
RuleFor(x => x.Gender, faker => faker.PickRandom<Gender>());
|
||||
RuleFor(x => x.IsNonResident, faker => faker.Random.Bool());
|
||||
|
||||
Reference in New Issue
Block a user