TestStatus
The TestStatus enum indicates the result of running a test
namespace NUnit.Framework.Interfaces
{
public enum TestStatus
{
Inconclusive,
Skipped,
Passed,
Failed
}
}