如何让 NUnit 与 Visual Studio 2008 一起使用
也许我只是忘记了一些事情,但我似乎无法让 NUnit 在 Visual Studio 2008 标准版中工作。我正在尝试在 C# 类库项目中使用 NUnit 2.5.7。我遵循 NUnit 下载中给出的示例结构。
这是我正在执行的步骤
1)下载并安装NUnit 2.5.7
2)创建C#类库项目
3) 将 NUnit.Framework 的引用添加到我的项目
4)创建一个类
5)添加“使用NUnit.Framework”
6) 在步骤 3 中的类顶部添加 [TestFixture]
问题出现在步骤 6 中,Visual Studio 根本无法识别 TestFixtureAttribute 或 TestAttribute。 NUnit 下载中包含的示例仅包含步骤 5 中的 using 语句和 [TestFixture]。我缺少什么?
using System;
using NUnit.Framework;
namespace UnitTests
{
[TestFixture]
public class MyUnitTests
{
[Test]
public void TestMethod1()
{
//my unit test
}
}
}
谢谢
Maybe I am just forgetting something, but I cannot seem to get NUnit to work in Visual Studio 2008 Standard Edition. I am trying to use NUnit 2.5.7 in a C# class library project. I am following the structure of the samples given in the download of NUnit.
Here are the steps I am doing
1) Download and install NUnit 2.5.7
2) Create C# class library project
3) Add reference of NUnit.Framework to my project
4) Create a class
5) Add "using NUnit.Framework"
6) Add [TestFixture] at top of my class from step 3
The issue comes at step 6, Visual Studio does not recognize the TestFixtureAttribute or the TestAttribute at all.
The samples included with the NUnit download simply have the using statement in step 5, and the [TestFixture]. What am I missing?
using System;
using NUnit.Framework;
namespace UnitTests
{
[TestFixture]
public class MyUnitTests
{
[Test]
public void TestMethod1()
{
//my unit test
}
}
}
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在对象浏览器中查看 NUnit.Framework 吗?
Can you veiw the NUnit.Framework in the object browser?