Home
last modified time | relevance | path

Searched refs:outcome (Results 1 – 3 of 3) sorted by relevance

/cts/libs/vogar-expect/src/vogar/expect/
DExpectation.java97 public boolean matches(Outcome outcome) { in matches() argument
98 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult()); in matches()
101 private boolean patternMatches(Outcome outcome) { in patternMatches() argument
102 return pattern.matcher(outcome.getOutput()).matches(); in patternMatches()
DOutcome.java153 Outcome outcome = (Outcome) o; in equals() local
154 return outcomeName.equals(outcome.outcomeName) in equals()
155 && result == outcome.result in equals()
156 && output.equals(outcome.output); in equals()
DExpectationStore.java86 public Expectation get(Outcome outcome) { in get() argument
87 Expectation exactNameMatch = outcomes.get(outcome.getName()); in get()
93 if (entry.getValue().matches(outcome)) { in get()
98 Expectation byName = getByNameOrPackage(outcome.getName()); in get()