asp.net-mvc – 路由测试ASP.NET MVC4

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 路由测试ASP.NET MVC4前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在使用MvcRouteUnitTester( codeplexnuget)对我的路线运行自动单元测试.品味它能做什么:
// 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的分叉版本?

MVC Route/URL Generation Unit Tester

原文链接:https://www.f2er.com/aspnet/247544.html

猜你在找的asp.Net相关文章