Lines Matching refs:Result
24 * The expected result of an action execution. This is typically encoded in the
28 * result UNSUPPORTED
33 * result COMPILE_FAILED
42 /** The action's expected result, such as {@code EXEC_FAILED}. */
43 private final Result result;
57 public Expectation(Result result, Pattern pattern, Set<String> tags, String description, long bug) {
58 if (result == null || description == null || pattern == null) {
60 "result=" + result + " description=" + description + " pattern=" + pattern);
64 this.result = result;
78 public Result getResult() {
79 return result;
88 * any result (success or failure) is permitted.
98 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult());