/cts/libs/vogar-expect/src/vogar/ |
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...] |
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...] |
/external/chromium/testing/gtest/src/ |
gtest-death-test.cc | 345 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. [all...] |
/external/gtest/src/ |
gtest-death-test.cc | 348 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl 349 void set_outcome(DeathTestOutcome outcome) { outcome_ = outcome; } 390 // 5. The parent reads child's output through the pipe (outcome code and 432 // outcome data member. 433 // TODO(vladl@google.com): Outcome classification logic is common with 733 // outcome data member. 787 // outcome: An enumeration describing how the death test 819 switch (outcome()) { [all...] |
/external/llvm/utils/unittest/googletest/ |
gtest-death-test.cc | 332 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. [all...] |
/external/protobuf/gtest/src/ |
gtest-death-test.cc | 332 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl 333 void set_outcome(DeathTestOutcome outcome) { outcome_ = outcome; } 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. [all...] |