Searched refs:outcome (Results 1 – 4 of 4) sorted by relevance
39 private final Outcome outcome; field in AnnotatedOutcome47 AnnotatedOutcome(Outcome outcome, Expectation expectation, in AnnotatedOutcome() argument54 this.outcome = outcome; in AnnotatedOutcome()62 return outcome; in getOutcome()66 return outcome.getName(); in getName()70 return outcome.getResultValue(expectation); in getResultValue()113 || !outcome.equals(previousOutcomesList.get(previousOutcomesList.size() - 1)); in outcomeChanged()
97 public boolean matches(Outcome outcome) { in matches() argument98 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult()); in matches()101 private boolean patternMatches(Outcome outcome) { in patternMatches() argument102 return pattern.matcher(outcome.getOutput()).matches(); in patternMatches()
153 Outcome outcome = (Outcome) o; in equals() local154 return outcomeName.equals(outcome.outcomeName) in equals()155 && result == outcome.result in equals()156 && output.equals(outcome.output); in equals()
89 public Expectation get(Outcome outcome) { in get() argument90 Expectation exactNameMatch = outcomes.get(outcome.getName()); in get()96 if (entry.getValue().matches(outcome)) { in get()101 Expectation byName = getByNameOrPackage(outcome.getName()); in get()