Home | History | Annotate | Download | only in vogar

Lines Matching refs:Pattern

21 import java.util.regex.Pattern;
29 * pattern .*should get token \[, but get -1.*
34 * pattern .*cannot find symbol.*
45 /** The pattern the expected output will match. */
46 private final Pattern pattern;
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);
65 this.pattern = pattern;
102 return pattern.matcher(outcome.getOutput()).matches();
106 return "Expectation[description=" + description + " pattern=" + pattern.pattern() + "]";