in src/dotnet/Rider.Plugins.TrxPlugin/TrxParser.cs [16:21]
private static String ErrorCodeToStatus(int code)
{
if (code > 5 && code != 10) return "NotSupported";
return new List<string> { "Passed", "Failed", "Inconclusive", "Timeout", "Aborted", "NotExecuted" }[
code % 10];
}