GenFu icon indicating copy to clipboard operation
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...

Results 49 GenFu issues
Sort by recently updated
recently updated
newest added

Ex: ``` class User { public string FirstName { get; set; } public string LastName { get; set; } public IsActive { get; set; } = true; } ``` ```...

![image](https://user-images.githubusercontent.com/34702552/170874667-f0e3596f-2ebb-4714-9048-4104d95491e1.png) ``` 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...

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,...