Lines Matching refs:outcomeName
33 private final String outcomeName; field in Outcome
38 public Outcome(String outcomeName, Result result, List<String> outputLines) { in Outcome() argument
39 this.outcomeName = outcomeName; in Outcome()
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) { in Outcome() argument
46 this.outcomeName = outcomeName; in Outcome()
52 public Outcome(String outcomeName, Result result, String outputLine) { in Outcome() argument
53 this.outcomeName = outcomeName; in Outcome()
59 public Outcome(String outcomeName, Result result, Throwable throwable) { in Outcome() argument
60 this.outcomeName = outcomeName; in Outcome()
83 return outcomeName; in getName()
110 int split = split(outcomeName); in getSuiteName()
111 return split == -1 ? "defaultpackage" : outcomeName.substring(0, split); in getSuiteName()
118 int split = split(outcomeName); in getTestName()
119 return split == -1 ? outcomeName : outcomeName.substring(split + 1); in getTestName()
148 return outcomeName.replaceAll("[\\.#]", "/"); in getPath()
154 return outcomeName.equals(outcome.outcomeName) in equals()
163 hashCode = 37 * hashCode + outcomeName.hashCode(); in hashCode()
170 return "Outcome[name=" + outcomeName + " output=" + output + "]"; in toString()