ObjectFiller.NET
ObjectFiller.NET copied to clipboard
Filler methods should be virtual
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