单元测试 asp.net 路由

发布于 2024-08-15 19:00:33 字数 26 浏览 3 评论 0原文

有没有办法通过 nunit 测试路由?

is there a way to test routes via nunit?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

(り薆情海 2024-08-22 19:00:33

里波的例子很好。我正在使用 MVCContrib 的 TestHelper 库。

它使测试路线变得轻而易举,并且在 nunit 中设置/使用非常容易。

该测试非常容易构建和理解:

"~/".ShouldMapTo<HomeController>(x => x.Index());  

"~/recipe".ShouldMapTo<RecipeController>(x => x.List());  

我有一篇使用 TestHelper 的 博客文章 和NUnit 来测试路由。

快乐编码!

Rippo's examples are good. I am using MVCContrib's TestHelper library.

It makes testing the route a breeze and is very easy to setup/use in nunit.

The test is extremely easy to construct and understand:

"~/".ShouldMapTo<HomeController>(x => x.Index());  

"~/recipe".ShouldMapTo<RecipeController>(x => x.List());  

I have a blog post using TestHelper and NUnit to test routes.

Happy coding!

月隐月明月朦胧 2024-08-22 19:00:33

请参阅此处,它是著名的史蒂夫桑德森的博客。它涵盖单元测试和集成测试,并使用 MvcIntegrationTestFramework

另一种方法是查看此 来自 Haacked 的帖子

See here, its a blog by the renowned Steve Sanderson. It covers unit tests and intregration tests, and uses the MvcIntegrationTestFramework

Another way is to see this post from Haacked

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