Is there a Rhinomock version of AutoConfiguredMoqCustomization?

105 Views Asked by At

I am bound to use Rhinomocks in my current project. Is there a way of setting up using Autofixture with Rhinomocks to achieve the same behaviour as when combining AutoFixture with Moq using the AutoConfiguredMoqCustomization customization?

Currently I have to do a lot of dummy mock setups in my test code as seen below. In the code i dont really care about the locations that I create. I just want the GetAllLocations method to return a random list of locations instead of null:

var f = new Fixture();
        var masterDataProvider = MockRepository.GenerateStub<IMasterDataProvider>();
        masterDataProvider.Stub(x => x.GetAllLocations()).Return(f.CreateMany<Location>());
        f.Inject(masterDataProvider);
1

There are 1 best solutions below

3
On BEST ANSWER

The various Glue Libraries for AutoFixture don't have full feature parity. AutoConfiguredMoqCustomization is one of the features that are only partially ported to other Glue Libraries. IIRC, it's only available for Moq and one other dynamic mock library.

So the short answer is that no, this feature isn't available for Rhino Mocks.


Original answer:

Yes, you can use AutoFixture.AutoRhinoMocks instead of AutoFixture.AutoMoq. It works the same way, but some of the type names are different - for example, the ICustomization you should use is called AutoRhinoMockCustomization.