Lines Matching refs:Result
34 private final Result result;
38 public Outcome(String outcomeName, Result result, List<String> outputLines) {
40 this.result = result;
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
47 this.result = result;
52 public Outcome(String outcomeName, Result result, String outputLine) {
54 this.result = result;
59 public Outcome(String outcomeName, Result result, Throwable throwable) {
61 this.result = result;
86 public Result getResult() {
87 return result;
128 * Returns whether the result indicates that the contents of the Outcome are important.
130 * For example, for a test skipped because it is unsupported, we don't care about the result.
133 return result != Result.UNSUPPORTED;
155 && result == outcome.result
164 hashCode = 37 * hashCode + result.hashCode();