我一直在使用MvcRouteUnitTester(
codeplex和
nuget)对我的路线运行自动单元测试.品味它能做什么:
// assert incoming route tester.WithIncomingRequest("/Foo").ShouldMatchRoute("Foo","Index"); tester.WithIncomingRequest("/Foo/Index").ShouldMatchRoute("Foo","Index"); // assert outgoing route tester.WithRouteInfo("Foo","Index").ShouldGenerateUrl("/Foo");
它工作得很好……当它工作时.它doesn’t work well with MVC4并且很长时间没有更新.
是否有与最新MVC一起使用的替代工具,并得到积极支持?
解决方法
你有没有看过MVC 4的分叉版本?