Searched refs:Expectation (Results 1 – 9 of 9) sorted by relevance
/cts/libs/vogar-expect/src/vogar/ |
D | ExpectationStore.java | 61 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 …]
|
D | Expectation.java | 37 public final class Expectation { class 57 …public Expectation(Result result, Pattern pattern, Set<String> tags, String description, long bug)… in Expectation() method in Expectation
|
D | AnnotatedOutcome.java | 38 private final Expectation expectation; 47 AnnotatedOutcome(Outcome outcome, Expectation expectation, in AnnotatedOutcome()
|
D | Outcome.java | 136 public ResultValue getResultValue(Expectation expectation) { in getResultValue()
|
/cts/tools/utils/ |
D | VogarUtils.java | 17 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()
|
D | DescriptionGenerator.java | 42 import vogar.Expectation; 577 Expectation expectation = expectationStore.get( in getTestMethods()
|
D | CollectAllTests.java | 25 import vogar.Expectation;
|
/cts/tests/core/runner/src/com/android/cts/core/runner/ |
D | TestFilter.java | 25 import vogar.Expectation; 92 Expectation expectation = expectationStore.get(testName); in shouldRun()
|
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
D | XmlGenerator.java | 19 import vogar.Expectation; 255 public static void removeUnsupportedAbis(Expectation expectation, Set<String> supportedAbis) { in removeUnsupportedAbis()
|