Searched refs:outcome (Results 1 – 3 of 3) sorted by relevance
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()
86 public Expectation get(Outcome outcome) { in get() argument87 Expectation exactNameMatch = outcomes.get(outcome.getName()); in get()93 if (entry.getValue().matches(outcome)) { in get()98 Expectation byName = getByNameOrPackage(outcome.getName()); in get()