HomeSort by relevance Sort by last modified time
    Searched refs:Outcome (Results 1 - 9 of 9) sorted by null

  /cts/libs/vogar-expect/src/vogar/
AnnotatedOutcome.java 26 * Contains an outcome for a test, along with some metadata pertaining to the history of this test,
27 * including a list of previous outcomes, an outcome corresponding to the tag Vogar is being run
39 private final Outcome outcome; field in class:AnnotatedOutcome
41 private final SortedMap<Long, Outcome> previousOutcomes;
44 private final Outcome tagOutcome;
47 AnnotatedOutcome(Outcome outcome, Expectation expectation,
48 SortedMap<Long, Outcome> previousOutcomes, String tagName, Outcome tagOutcome
    [all...]
Outcome.java 28 * An outcome of an action. Some actions may have multiple outcomes. For
29 * example, JUnit tests have one outcome for each test method.
31 public final class Outcome {
38 public Outcome(String outcomeName, Result result, List<String> outputLines) {
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
52 public Outcome(String outcomeName, Result result, String outputLine) {
59 public Outcome(String outcomeName, Result result, Throwable throwable) {
128 * Returns whether the result indicates that the contents of the Outcome are important.
144 * Returns a filesystem db path for this outcome. For example, a path for an outcome with nam
153 Outcome outcome = (Outcome) o; local
    [all...]
Expectation.java 104 * Returns true if {@code outcome} matches this expectation.
106 public boolean matches(Outcome outcome) {
107 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult());
110 private boolean patternMatches(Outcome outcome) {
111 return pattern.matcher(outcome.getOutput()).matches();
ExpectationStore.java 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)
    [all...]
  /external/chromium_org/chrome/installer/util/
html_dialog.h 77 enum Outcome {
84 // the |Outcome| values and any form of failure maps to REJECTED.
85 Outcome ShowModal();
html_dialog_impl.cc 180 EulaHTMLDialog::Outcome EulaHTMLDialog::ShowModal() {
  /external/chromium_org/v8/tools/testrunner/local/
old_statusfile.py 88 class Outcome(Expression):
260 return Outcome(name)
349 """A single rule that specifies the expected outcome for a single
  /external/v8/tools/
test.py 193 outcome = 'CRASH'
195 outcome = 'FAIL'
197 outcome = 'pass'
198 print 'Done running %s: %s' % (output.test.GetLabel(), outcome)
414 outcome = CRASH
416 outcome = TIMEOUT
418 outcome = FAIL
420 outcome = PASS
421 return not outcome in self.test.outcomes
788 class Outcome(Expression)
    [all...]
  /external/chromium_org/chrome/installer/setup/
setup_main.cc 862 installer::EulaHTMLDialog::Outcome outcome = dlg.ShowModal(); local
    [all...]

Completed in 607 milliseconds