Searched refs:Outcome (Results 1 – 4 of 4) sorted by relevance
/cts/libs/vogar-expect/src/vogar/ |
D | AnnotatedOutcome.java | 39 private final Outcome outcome; 41 private final SortedMap<Long, Outcome> previousOutcomes; 44 private final Outcome tagOutcome; 47 AnnotatedOutcome(Outcome outcome, Expectation expectation, in AnnotatedOutcome() 48 SortedMap<Long, Outcome> previousOutcomes, String tagName, Outcome tagOutcome, in AnnotatedOutcome() 61 public Outcome getOutcome() { in getOutcome() 75 for (Outcome previousOutcome : previousOutcomes.values()) { in getPreviousResultValues() 111 List<Outcome> previousOutcomesList = getOutcomeList(); in outcomeChanged() 116 private ArrayList<Outcome> getOutcomeList() { in getOutcomeList() 117 return new ArrayList<Outcome>(previousOutcomes.values()); in getOutcomeList()
|
D | Outcome.java | 31 public final class Outcome { class 38 public Outcome(String outcomeName, Result result, List<String> outputLines) { in Outcome() method in Outcome 45 public Outcome(String outcomeName, Result result, String outputLine, Date date) { in Outcome() method in Outcome 52 public Outcome(String outcomeName, Result result, String outputLine) { in Outcome() method in Outcome 59 public Outcome(String outcomeName, Result result, Throwable throwable) { in Outcome() method in Outcome 152 if (o instanceof Outcome) { in equals() 153 Outcome outcome = (Outcome) o; in equals()
|
D | Expectation.java | 97 public boolean matches(Outcome outcome) { in matches() 101 private boolean patternMatches(Outcome outcome) { in patternMatches()
|
D | ExpectationStore.java | 89 public Expectation get(Outcome outcome) { in get()
|