单元测试 asp.net 路由
有没有办法通过 nunit 测试路由?
is there a way to test routes via nunit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法通过 nunit 测试路由?
is there a way to test routes via nunit?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
里波的例子很好。我正在使用 MVCContrib 的 TestHelper 库。
它使测试路线变得轻而易举,并且在 nunit 中设置/使用非常容易。
该测试非常容易构建和理解:
我有一篇使用 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:
I have a blog post using TestHelper and NUnit to test routes.
Happy coding!
请参阅此处,它是著名的史蒂夫桑德森的博客。它涵盖单元测试和集成测试,并使用 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