Home | History | Annotate | Download | only in utils

Lines Matching refs:ExpectationStore

20 import vogar.ExpectationStore;
32 public static boolean isVogarKnownFailure(ExpectationStore[] expectationStores,
35 for (ExpectationStore expectationStore : expectationStores) {
36 if (isVogarKnownFailure(expectationStore, testClassName, testMethodName)) {
47 public static boolean isVogarKnownFailure(ExpectationStore expectationStore,
50 if (expectationStore == null) {
54 Expectation expectation = expectationStore.get(fullTestName);
65 public static ExpectationStore provideExpectationStore(String dir) throws IOException {
69 ExpectationStore result = ExpectationStore.parse(getExpectationFiles(dir), ModeId.DEVICE);
118 ExpectationStore[] expectationStores,
124 for (ExpectationStore expectationStore : expectationStores) {
125 Expectation expectation = expectationStore.get(fullTestName);