I have a complex object from a library I need a mock of that takes multiple parameters in the constructor, one of them is an enum, unfortunately
_fixture.Create<MyObject>()
is failing because the default enum it chooses as a parameter isn't allowed
is there a way to specify which enum to use in the constructor when generating objects?