我無法在最新的.NET中運行Nunit。這裏是所有步驟,我做的:無法加載文件或程序集MyNunitTest.dll或它的某個依賴關係
- 新建項目>類庫(包)
- 添加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: Could not load file or assembly MyNunitTest.dll or one of its dependencies. The system cannot find the file specified.
你試過更新到resharper 10.02嗎?我與nunit和resrper 10.01有大問題。自更新至10.02以後,它們不見了。 –
@TomB。是的,我現在有10.0.2,我很茫然:(對於這個3小時的戰鬥,即使對於這個最簡單的情況,它也不起作用 - 所有的時間都是'不確定:測試不運行'。 –
Helpfull for其他人,也許對你來說。作爲文檔參考:https://blog.jetbrains.com/dotnet/2015/11/09/resharper-10-critical-issues-and-fix-schedule/ –