Lines Matching refs:expectationStore
36 for (ExpectationStore expectationStore : expectationStores) { in isVogarKnownFailure()
37 if (isVogarKnownFailure(expectationStore, testClassName, testMethodName)) { in isVogarKnownFailure()
48 public static boolean isVogarKnownFailure(ExpectationStore expectationStore, in isVogarKnownFailure() argument
51 if (expectationStore == null) { in isVogarKnownFailure()
55 Expectation expectation = expectationStore.get(fullTestName); in isVogarKnownFailure()
125 for (ExpectationStore expectationStore : expectationStores) { in extractSupportedAbis()
126 Expectation expectation = expectationStore.get(fullTestName); in extractSupportedAbis()
141 for (ExpectationStore expectationStore : expectationStores) { in timeoutInMinutes()
143 timeoutInMinutes(expectationStore, in timeoutInMinutes()
154 public static int timeoutInMinutes(ExpectationStore expectationStore, in timeoutInMinutes() argument
157 if (expectationStore == null) { in timeoutInMinutes()
161 return timeoutInMinutes(expectationStore.get(fullTestName)); in timeoutInMinutes()