我已将必要的程序集包含在VS2008中的Windows类项目中。当我开始尝试编写测试时,我得到一个红色的波浪线,并且消息[Test]不是有效的属性。我之前使用过NUnit ......也许是早期版本。我究竟做错了什么?我的版本是2.5.2。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit;
using NUnit.Core;
using NUnit.Framework;
namespace MyNamespace
{
public class LoginTests
{
[Test]
public void CanLogin()
{
}
}
}
答案 0 :(得分:7)
我使用2.5.3版本遇到了类似的问题。 问题是我在我的nunit安装的“lib”目录中查找dll文件时应该查看“framework”目录。 所以当我引用“framework \ nunit.framework.dll”时,一切都运行了。 希望这有帮助
答案 1 :(得分:5)
额外的using
行会让您遇到麻烦。仅使用using NUnit.Framework;
NUnit.Core内部也有一个名为Test
的类型,你正在与之相撞。
您可以使用[TestAttribute]
完全拼写出属性部分来解决冲突。
答案 2 :(得分:0)
你缺少类的[TestFixture]属性,你只需要为NUnit包含以下用法:使用NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
namespace MyNamespace
{
[TestFixture]
public class LoginTests
{
[Test]
public void CanLogin()
{
}
}
}