We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ex:
class User { public string FirstName { get; set; } public string LastName { get; set; } public IsActive { get; set; } = true; }
GenFu.Configure<User>() .Fill(g => g.FirstName , () => $"FirstName-{Guid.NewGuid()}") .Fill(g => g.LastName , () => $"LastName -{Guid.NewGuid()}") .Fill(g => g.IsActive).WithRandom(new [] {true, false});
var users = A.ListOf<User>(20);
All users have the IsActive property set to default value (IsActive == true); In debug, the setter property are never called.
The text was updated successfully, but these errors were encountered:
hey, can you assign this to me?
Sorry, something went wrong.
No branches or pull requests
Ex:
var users = A.ListOf<User>(20);
All users have the IsActive property set to default value (IsActive == true);
In debug, the setter property are never called.
The text was updated successfully, but these errors were encountered: