如何让 NUnit 与 Visual Studio 2008 一起使用

发布于 2024-09-24 14:54:00 字数 676 浏览 3 评论 0原文

也许我只是忘记了一些事情,但我似乎无法让 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 技术交流群。

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

发布评论

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

评论(1

殤城〤 2024-10-01 14:54:00

您可以在对象浏览器中查看 NUnit.Framework 吗?

Can you veiw the NUnit.Framework in the object browser?

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