Home | History | Annotate | Download | only in vogar

Lines Matching refs:Outcome

41  *   <li>Outcome expectations name an outcome (or its prefix, such as
45 * outcome. These expectations are useful for hiding failures caused by
49 * <p>If an outcome matches both an outcome expectation and a failure
50 * expectation, the outcome expectation will be returned.
60 * Finds the expected result for the specified action or outcome name. This
69 * Finds the expected result for the specified outcome after it has
71 * outcome's output.
77 public Expectation get(Outcome outcome) {
78 Expectation exactNameMatch = outcomes.get(outcome.getName());
84 if (entry.getValue().matches(outcome)) {
89 Expectation byName = getByNameOrPackage(outcome.getName());