我一直在使用 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");
它工作得很好......当它工作时。和MVC4配合不好,好久没更新了。
是否有可与最新 MVC 一起使用并受到积极支持的替代工具?