gmarokov/dotnet-trx2sonar

View on GitHub
TrxToSonar/Model/Trx/Outcome.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace TrxToSonar.Model.Trx
{
    public enum Outcome
    {
        Error,

        Failed,

        Timeout,

        Aborted,

        Inconclusive,

        PassedButRunAborted,

        NotRunnable,

        NotExecuted,

        Disconnected,

        Warning,

        Passed,

        Completed,

        InProgress,

        Pending
    }
}