测试.Net MVC路由有哪些库?

时间:2011-08-23 14:55:49

标签: .net asp.net-mvc url-routing asp.net-mvc-routing

我在StackOverflow上发现了几个问题,想知道哪些库或什么是最佳实践。这些都非常适合新手,对我帮助很大。

测试.Net MVC路由有哪些库?

我在MvcContrib找到了Fluent路线测试仪,我在使用PostMethods测试时遇到了一些问题。

是否存在像MVCContrib这样的其他图书馆来测试路由?

更新

我说测试.Net MVC路线:

routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
    "Default", // Route name
    "{controller}/{action}/{id}", // URL with parameters
    new { controller = "Usuario", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);

如果我打电话:“〜/ controller / action”,图书馆将测试我的路线是否被触发正确。

2 个答案:

答案 0 :(得分:1)

就我个人而言,我喜欢并使用MvcContrib.TestHelper,其中许多内容也是unit test your routes。我从来没有遇到过使用它测试任何路由或控制器操作的问题。

答案 1 :(得分:0)

我们是在讨论单元测试还是在开发过程中?第二次检查Phil Hacks Route Debugger Link