OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:expectationstore
(Results
1 - 6
of
6
) sorted by null
/cts/tools/utils/
VogarUtils.java
18
import vogar.
ExpectationStore
;
30
public static boolean isVogarKnownFailure(
ExpectationStore
[] expectationStores,
33
for (
ExpectationStore
expectationStore
: expectationStores) {
34
if (isVogarKnownFailure(
expectationStore
, testClassName, testMethodName)) {
41
public static boolean isVogarKnownFailure(
ExpectationStore
expectationStore
,
45
return
expectationStore
!= null
46
&&
expectationStore
.get(fullTestName) != Expectation.SUCCESS;
49
public static
ExpectationStore
provideExpectationStore(String dir) throws IOException
[
all
...]
DescriptionGenerator.java
40
import vogar.
ExpectationStore
;
123
ExpectationStore
ctsExpectationStore = null;
514
TestClass(ClassDoc clazz,
ExpectationStore
expectationStore
) {
516
mCases = getTestMethods(
expectationStore
, clazz);
525
Collection<TestMethod> getTestMethods(
ExpectationStore
expectationStore
, ClassDoc clazz) {
555
if (VogarUtils.isVogarKnownFailure(
expectationStore
, clazz.toString(), name)) {
CollectAllTests.java
23
import vogar.
ExpectationStore
;
159
ExpectationStore
libcoreVogarExpectationStore;
160
ExpectationStore
ctsVogarExpectationStore;
173
ExpectationStore
[] expectations = new
ExpectationStore
[] {
374
private static void addToTests(
ExpectationStore
[] expectations,
405
private static void addToTests(
ExpectationStore
[] expectations,
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
XmlGenerator.java
20
import vogar.
ExpectationStore
;
72
/**
ExpectationStore
to filter out known failures. */
73
private final
ExpectationStore
mExpectations;
75
XmlGenerator(
ExpectationStore
expectations, String appNameSpace, String appPackageName,
207
public static boolean isKnownFailure(
ExpectationStore
expectationStore
, String testName) {
208
return
expectationStore
!= null &&
expectationStore
.get(testName) != Expectation.SUCCESS;
CtsXmlGenerator.java
22
import vogar.
ExpectationStore
;
104
ExpectationStore
store =
ExpectationStore
.parse(expectationFiles, ModeId.DEVICE);
/cts/libs/vogar-expect/src/vogar/
ExpectationStore.java
52
public final class
ExpectationStore
{
57
private
ExpectationStore
() {}
109
public static
ExpectationStore
parse(Set<File> expectationFiles, ModeId mode) throws IOException {
110
ExpectationStore
result = new
ExpectationStore
();
Completed in 87 milliseconds