I am trying to write unit tests for RouteConfig.cs files to evaluate the routes. For example, "~/" should map to default action and default controllers, and like that.
I am using xUnit and FakeItEasy in my project. Earlier, I could achieve it using MvcContrib.TestHelpers nuget, but that depends on RhinoMocks whereas I am using FakeItEasy in my project and I don't think it will be a good idea to import RhinoMocks just for the purpose of RouteConfig unit tests.
Any idea of a better approach to achieve this?