有哪些库可以测试 .Net MVC 路由?
我在 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”,我的路由是否正确触发。
I found several questions on StackOverflow wondering what libraries or what best practices. Are all very usable for noobs, help me a lot.
What libs exist to test .Net MVC Routes?
I found Fluent route tester in MvcContrib where i got some problems to test with PostMethods.
Exist another librarys like MVCContrib to test Routes?
Update:
I say Test a .Net MVC Routes:
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
);
Librarys to test if my routes are triggered correct if I call: "~/controller/action".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就我个人而言,我喜欢并使用 MvcContrib.TestHelper,其中您还可以对您的路线进行单元测试。我用它测试任何路由或控制器操作从来没有遇到过问题。
Personally I like and use MvcContrib.TestHelper which among many things also you to unit test your routes. I never had problems testing any routes or controller actions with it.
我们是在谈论单元测试还是在开发过程中?对于第二次检查 Phil Hacks Route Debugger 链接
Are we talking about unit tests or during development? For the second check Phil Hacks Route Debugger Link