Home | History | Annotate | Download | only in vogar

Lines Matching defs:outcome

28  * An outcome of an action. Some actions may have multiple outcomes. For
29 * example, JUnit tests have one outcome for each test method.
31 public final class Outcome {
38 public Outcome(String outcomeName, Result result, List<String> outputLines) {
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
52 public Outcome(String outcomeName, Result result, String outputLine) {
59 public Outcome(String outcomeName, Result result, Throwable throwable) {
128 * Returns whether the result indicates that the contents of the Outcome are important.
144 * Returns a filesystem db path for this outcome. For example, a path for an outcome with name
152 if (o instanceof Outcome) {
153 Outcome outcome = (Outcome) o;
154 return outcomeName.equals(outcome.outcomeName)
155 && result == outcome.result
156 && output.equals(outcome.output);
170 return "Outcome[name=" + outcomeName + " output=" + output + "]";