Home
last modified time | relevance | path

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

/cts/libs/vogar-expect/src/vogar/
DAnnotatedOutcome.java39 private final Outcome outcome; field in AnnotatedOutcome
47 AnnotatedOutcome(Outcome outcome, Expectation expectation, in AnnotatedOutcome() argument
54 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()
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.java89 public Expectation get(Outcome outcome) { in get() argument
90 Expectation exactNameMatch = outcomes.get(outcome.getName()); in get()
96 if (entry.getValue().matches(outcome)) { in get()
101 Expectation byName = getByNameOrPackage(outcome.getName()); in get()