我无法在最新的 .NET 中运行 Nunit。以下是我执行的所有步骤:
- 新建项目 > 类库(包)
- 添加 NUnit 3.0.1
- 添加类:
内容:
using NUnit.Framework;
namespace MyNunitTest
{
[TestFixture]
public class TestClass
{
[Test]
public void TestMethod()
{
Assert.That(true, Is.True);
}
}
}
- 全部运行
错误:
System.IO.FileNotFoundException:无法加载文件或程序集 MyNunitTest.dll 或其依赖项之一。该系统找不到指定的文件。