Hi I just started learning how to use an IOC Container. I picked Autofac and was registering services to inject into my MVC controllers.
Now I want to do Unit Test. I know that moq is to mock up dependencies that my controller needs. But then what is AutoFac's AutoMock for? What advantage would I have?
I noticed that the containerbuilder from AutoMock.GetLoose() has no knowledge of the registrations from the main project.