ObjectFiller.NET icon indicating copy to clipboard operation
ObjectFiller.NET copied to clipboard

The .NET ObjectFiller fills the properties of your .NET objects with random data

Results 15 ObjectFiller.NET issues
Sort by recently updated
recently updated
newest added

Hi Thanks for your awesome library. I want to use you library but I need some overload. You method is pure generic but I think it is better to have...

enhancement

Hi, Would be very useful to have a phone number generator. Alternatively allow more customization to the `PatternGenerator`, so that we can say that we only want a number from...

new feature

Hi, is it possible so fill an immutable class (with no setter on the properties)? ```c# public class MyClass { public string Name { get; } public MyClass(string name) {...

new feature

I have following classes without any inheritance: ```c# public class Position { public int Company; public int LeaseNumber; public decimal Costs; } ``` ```c# public class SubPostion { public int...

new feature

I found it necessary to override Create() (e.g.): ``` public override AnObject Create() { GenerateSomeRandomData(); return base.Create(); } ``` Made other Filler methods virtual for the same reason

When a hierarchy has multiple levels, FillInternal() does not find public properties from higher up the hierarchy. Fixed the way that GetProperties() is called to ensure these properties are found.

I wanted to use your library in my Unittests but it doesn't start. ObjectFiller was added with nuget to my Project, which is a project with a strong name. System.IO.FileLoadException...

enhancement

Would it be possible for to create a filler and merge the setup with another filler allowing the class to configure a filler aginst one interface and merge it where...

new feature

I wanted to create a list of objects. They must be of type object. I was not able to create them with Randomizer.Create(110) because there was no type Object registered....

bug

I have following classes: ``` public class A { public string Test { get; set; } } public class B { public A MyA {get; set; } } public class...

bug