I have a class with a constructor like this:
MyClass(MySetting, IMyService, IMyService, IMyService)
How can I use AutoFixture to create MyClass in this case? I know when it has only one IMyService param, we can use AutoMoq to Freeze a mock, but in this case I'm not sure we can Freeze three mocks because I think the last one will be used for all three parameters.