The code:
IFixture fixture = new Fixture().Customize(new AutoMoqCustomization());
fixture.Customize<ViewDataDictionary>(c => c.Without(x => x.ModelMetadata));
var target = fixture.CreateAnonymous<MyController>();
the Exception:
System.Reflection.TargetInvocationException: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NotImplementedException: The method or operation is not implemented.
MyController()
takes 3 parameters.
I've tried the fix described in the answer here but it wouldn't work.
MyController
constructor look? DoesMyController
have any writable properties? Does the exception provide more details (e.g. a stack trace)? – Begrime