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

发布于 2024-12-01 03:38:13 字数 662 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌梦深 2024-12-08 03:38:13

就我个人而言,我喜欢并使用 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.

奢欲 2024-12-08 03:38:13

我们是在谈论单元测试还是在开发过程中?对于第二次检查 Phil Hacks Route Debugger 链接

Are we talking about unit tests or during development? For the second check Phil Hacks Route Debugger Link

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文