GenFu
GenFu copied to clipboard
GenFu is a library you can use to generate realistic test data. It is composed of several property fillers that can populate commonly named properties through reflection using an internal database of...
Ex: ``` class User { public string FirstName { get; set; } public string LastName { get; set; } public IsActive { get; set; } = true; } ``` ```...
 ``` var list = GenFu.GenFu.ListOf(100); ``` ``` public class Model { public OrderType? TestNullable { get; set; } public OrderType Test1 { get; set; } } ``` ``` public...
With the current requirement of the parameterless constructor, it is impossible to create positional records. I propose to rename `IPropertyFiller` into `IValueFiller` and add the ability to fill the largest...
WIP Feedback is appreciated
Distinct
It would nice to be able to tell GenFu to give me a list with a certain property being distinct for the whole collection. Something along the following: ``` c#...
Hello, how can I prevent GenFu from calling custom Setters methods as expected according to this documentation on @MisterJames website. http://jameschambers.com/about/genfu.html > Note: Unlike properties, GenFu will not automatically poke...
To fix issue [#149](https://github.com/MisterJames/GenFu/issues/149)
I have a class with a child object property. The default constructor sets an empty object to avoid NULL errors further in my production code. When trying to configure GenFu,...