I write this helloworld unit test and build it. It always have this build error: "The command://...../Nunit.ConsoleRunner3.6/nunit3-console.exe exited with code 1
".I search all the stackoverflow but there is no a single thread about Nunit test exist code 1, do you know where can I find the information for this code?
using NUnit.Framework;
namespace SomeName
{
[TestFixture]
class IdentifierTest
{
[SetUp]
public void SetUp()
{
}
[TearDown]
public void TearDown()
{
}
[Test]
public void DetectIDTest()
{
Assert.AreEqual("hi","ho");
}
}
}