Lines Matching full:outcome
42 * <li>Outcome expectations name an outcome (or its prefix, such as
46 * outcome. These expectations are useful for hiding failures caused by
50 * <p>If an outcome matches both an outcome expectation and a failure
51 * expectation, the outcome expectation will be returned.
71 * Finds the expected result for the specified action or outcome name. This
80 * Finds the expected result for the specified outcome after it has
82 * outcome's output.
88 public Expectation get(Outcome outcome) {
89 Expectation exactNameMatch = outcomes.get(outcome.getName());
95 if (entry.getValue().matches(outcome)) {
100 Expectation byName = getByNameOrPackage(outcome.getName());