Searched defs:outcome (Results 1 - 15 of 15) sorted by relevance

/external/vogar/src/vogar/
H A DJarSuggestions.java40 public void addSuggestionsFromOutcome(Outcome outcome, ClassFileIndex classFileIndex, argument
42 Result result = outcome.getResult();
46 Set<File> suggestedJars = classFileIndex.suggestClasspaths(outcome.getOutput());
H A DAnnotatedOutcome.java27 * Contains an outcome for a test, along with some metadata pertaining to the history of this test,
28 * including a list of previous outcomes, an outcome corresponding to the tag Vogar is being run
40 private final Outcome outcome; field in class:AnnotatedOutcome
44 AnnotatedOutcome(Outcome outcome, Expectation expectation) { argument
46 this.outcome = outcome;
49 public void add(long date, Outcome outcome) { argument
50 previousOutcomes.put(date, outcome);
54 return outcome;
58 return outcome
[all...]
H A DDriver.java89 Outcome outcome = outcomes.get(action.getName());
90 if (outcome != null) {
91 addEarlyResult(outcome);
219 public synchronized void recordOutcome(Outcome outcome) { argument
220 outcomes.put(outcome.getName(), outcome);
221 Expectation expectation = run.expectationStore.get(outcome);
222 ResultValue resultValue = outcome.getResultValue(expectation);
234 Result result = outcome.getResult();
235 run.console.outcome(outcom
[all...]
H A DExpectation.java117 * Returns true if {@code outcome} matches this expectation.
119 public boolean matches(Outcome outcome) { argument
120 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult());
123 private boolean patternMatches(Outcome outcome) { argument
124 return pattern.matcher(outcome.getOutput()).matches();
H A DExpectationStore.java37 * <li>Outcome expectations name an outcome (or its prefix, such as
41 * outcome. These expectations are useful for hiding failures caused by
45 * <p>If an outcome matches both an outcome expectation and a failure
46 * 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) { argument
78 Expectation exactNameMatch = outcomes.get(outcome
[all...]
H A DXmlReportPrinter.java90 for (Outcome outcome : outcomes) {
91 if (outcome.getResult() == Result.UNSUPPORTED) {
95 String suiteName = outcome.getSuiteName();
102 suite.outcomes.add(outcome);
104 Expectation expectation = expectationStore.get(outcome);
105 if (!expectation.matches(outcome)) {
106 if (outcome.getResult() == Result.EXEC_FAILED) {
138 for (Outcome outcome : outcomes) {
139 print(serializer, outcome);
145 private void print(KXmlSerializer serializer, Outcome outcome) throw argument
[all...]
H A DConsole.java137 * Begins streaming output for the named outcome.
139 public void outcome(String name) {} method in class:Console
144 * printed only if the outcome is unsuccessful.
154 * Writes the action's outcome.
197 // figure out whether each outcome is noteworthy, and add a message to the appropriate list
400 * The line contains the name of an action or outcome. The outcome's
453 * Prints the beginning of the named outcome.
455 @Override public synchronized void outcome(String name) { method in class:Console.StreamingConsole
456 // if the outcome an
[all...]
/external/vogar/src/vogar/monitor/
H A DHostMonitor.java102 * {"outcome"="java.util.FormatterMain"}
104 * {"outcome"="java.util.FormatterTest#testBar" runner="vogar.target.junit.JUnitRunner"}
125 if (jsonObject.get("outcome") != null) {
126 currentOutcome = jsonObject.get("outcome").getAsString();
160 * Receive a completed outcome.
162 void finish(Outcome outcome); argument
/external/vogar/src/vogar/tasks/
H A DRunActionTask.java74 * outcome that wasn't completed.
136 * @param skipPast the last outcome to skip, or null to run all outcomes.
200 run.console.outcome(outcomeName);
204 @Override public void finish(Outcome outcome) { argument
209 lastFinishedOutcome = toQualifiedOutcomeName(outcome.getName());
211 run.driver.recordOutcome(new Outcome(lastFinishedOutcome, outcome.getResult(),
212 outcome.getOutputLines()));
217 * outcome names like "Clear" rather than "com.foo.Bar.Clear". In that
218 * case, just replace the outcome name with the action name.
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc332 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
429 // outcome: An enumeration describing how the death test
457 switch (outcome()) {
513 // 5. The parent reads child's output through the pipe (outcome code and
550 // outcome data member.
714 // outcome data member.
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-death-test.cc383 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
510 // outcome: An enumeration describing how the death test
538 switch (outcome()) {
599 // 5. The parent reads child's output through the pipe (outcome code and
636 // outcome data member.
800 // outcome data member.
/external/gtest/src/
H A Dgtest-death-test.cc385 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
512 // outcome: An enumeration describing how the death test
540 switch (outcome()) {
601 // 5. The parent reads child's output through the pipe (outcome code and
638 // outcome data member.
798 // outcome data member.
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc348 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
475 // outcome: An enumeration describing how the death test
503 switch (outcome()) {
563 // 5. The parent reads child's output through the pipe (outcome code and
600 // outcome data member.
764 // outcome data member.
/external/mesa3d/src/gtest/src/
H A Dgtest-death-test.cc345 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
472 // outcome: An enumeration describing how the death test
500 switch (outcome()) {
561 // 5. The parent reads child's output through the pipe (outcome code and
598 // outcome data member.
762 // outcome data member.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 126 milliseconds