如何在 Visual Web Developer 2010 Express 中设置带有 NUnit 单元测试的 ASP .NET MVC 应用程序?

发布于 2024-08-29 20:14:32 字数 99 浏览 12 评论 0 原文

我知道 Express 版本不模板单元测试项目...但作为 Microsoft 开发工具的完全新手,我也不知道如何手动设置必要的东西。那么有人可以指导我如何让 NUnit 运行起来吗?

I understand that the Express edition doesn't template unit test projects... but being a complete newbie to Microsoft dev tools, I can't figure out how to set up the necessary things manually either. So could someone please walk me through how to get NUnit going?

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

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

发布评论

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

评论(1

烟─花易冷 2024-09-05 20:14:32

实际上很简单:

  1. 下载 NUnit。
  2. 在 Visual Studio 中设置新的控制台应用程序或类库。
  3. 添加对 nunit.framework 的引用。
  4. 添加对要测试的类库的引用(将要测试的代码放到单独的类库中)
  5. 按照教程了解如何创建自己的测试。

请参阅 此链接示例 MVC 1.0 项目和示例模板,或 此链接

It's actually quite simple:

  1. Download NUnit.
  2. Set up a new console application or class library in Visual Studio.
  3. Add a reference to the nunit.framework.
  4. Add a reference to the class library you want to test (put the code you want to test into a separate class library)
  5. Follow a tutorial on how to create your own tests.

See this link for a sample MVC 1.0 project and sample templates, or this link for MVC 2.0 templates.

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