我有一個簡單的解決方案,我把C#類庫項目,並引用NUnit的DLL等創建在我的解決方案一個類庫項目,下跌的NUnit,測試無法識別
我創建了一個cs文件,添加[的TestFixture]和一個簡單的[測試]
如果我去測試 - >運行 - >測試在目前情況下(甚至全部在溶液中)
我得到的錯誤:
No tests were run b/c no tests are loaded or the selected tests are disabled.
我編譯過這個項目。
SomeTest.cs
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
[TestFixture]
public class SomeTest
{
[Test]
public void Test1()
{
Assert.AreEqual(1, 1);
}
}
我使用vs.net 2010 – Blankman