public static TestOutcome parse8()

in agent/src/jetbrains/buildServer/xmlReportPlugin/parsers/mstest/TestOutcome.java [71:87]


  public static TestOutcome parse8(final String value) {
    if (value == null) {
      return UNKNOWN;
    }

    try {
      int val = Integer.parseInt(value);
      for (TestOutcome outcome : values()) {
        if (outcome.myValue8 != null && val == outcome.myValue8) {
          return outcome;
        }
      }
    } catch (NumberFormatException e) {
      return UNKNOWN;
    }
    return UNKNOWN;
  }