Home
last modified time | relevance | path

Searched refs:Expectation (Results 1 – 8 of 8) sorted by relevance

/cts/libs/vogar-expect/src/vogar/
DExpectationStore.java61 private static final Expectation SUCCESS = new Expectation(Result.SUCCESS, MATCH_ALL_PATTERN,
66 private final Map<String, Expectation> outcomes = new LinkedHashMap<String, Expectation>();
67 private final Map<String, Expectation> failures = new LinkedHashMap<String, Expectation>();
75 public Expectation get(String name) { in get()
76 Expectation byName = getByNameOrPackage(name); in get()
89 public Expectation get(Outcome outcome) { in get()
90 Expectation exactNameMatch = outcomes.get(outcome.getName()); in get()
95 for (Map.Entry<String, Expectation> entry : failures.entrySet()) { in get()
101 Expectation byName = getByNameOrPackage(outcome.getName()); in get()
105 private Expectation getByNameOrPackage(String name) { in getByNameOrPackage()
[all …]
DExpectation.java37 public final class Expectation { class
57 …public Expectation(Result result, Pattern pattern, Set<String> tags, String description, long bug)… in Expectation() method in Expectation
DAnnotatedOutcome.java38 private final Expectation expectation;
47 AnnotatedOutcome(Outcome outcome, Expectation expectation, in AnnotatedOutcome()
DOutcome.java136 public ResultValue getResultValue(Expectation expectation) { in getResultValue()
/cts/tools/utils/
DVogarUtils.java17 import vogar.Expectation;
55 Expectation expectation = expectationStore.get(fullTestName); in isVogarKnownFailure()
99 public static Set<String> extractSupportedAbis(String architecture, Expectation expectation) { in extractSupportedAbis()
126 Expectation expectation = expectationStore.get(fullTestName); in extractSupportedAbis()
169 public static int timeoutInMinutes(Expectation expectation) { in timeoutInMinutes()
DDescriptionGenerator.java42 import vogar.Expectation;
577 Expectation expectation = expectationStore.get( in getTestMethods()
DCollectAllTests.java25 import vogar.Expectation;
/cts/tests/core/runner/src/com/android/cts/core/runner/
DExpectationBasedFilter.java30 import vogar.Expectation;
106 Expectation expectation = expectationStore.get(testName); in shouldRun()