我写这个helloworld单元测试并构建它。它总是有这个构建错误:" The command://...../Nunit.ConsoleRunner3.6/nunit3-console.exe exited with code 1
"。我搜索所有的stackoverflow但是没有关于Nunit测试的单个线程存在代码1,你知道我在哪里可以找到它的信息吗?这段代码?
using NUnit.Framework;
namespace SomeName
{
[TestFixture]
class IdentifierTest
{
[SetUp]
public void SetUp()
{
}
[TearDown]
public void TearDown()
{
}
[Test]
public void DetectIDTest()
{
Assert.AreEqual("hi","ho");
}
}
}