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

Filler methods should be virtual

Open ghost opened this issue 8 years ago • 0 comments

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

ghost avatar Sep 12 '17 20:09 ghost