Can anybody realize what I am missing here? I just want to create a controller to test. TController is a type argument of my TestFixture class. This code returns a NotImplementedException. Why?
var fixture = new Fixture().Customize(new AutoMoqCustomization());
SutController = fixture.Create<TController>();