Home
last modified time | relevance | path

Searched refs:skipList (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDefaultTestsZipInstaller.java64 public DefaultTestsZipInstaller(Collection<String> skipList) { in DefaultTestsZipInstaller() argument
65 setDataWipeSkipList(skipList); in DefaultTestsZipInstaller()
75 public DefaultTestsZipInstaller(String... skipList) { in DefaultTestsZipInstaller() argument
76 setDataWipeSkipList(skipList); in DefaultTestsZipInstaller()
83 public void setDataWipeSkipList(Collection<String> skipList) { in setDataWipeSkipList() argument
84 mDataWipeSkipList = new HashSet<String>(skipList.size()); in setDataWipeSkipList()
85 mDataWipeSkipList.addAll(skipList); in setDataWipeSkipList()
92 public void setDataWipeSkipList(String... skipList) { in setDataWipeSkipList() argument
93 mDataWipeSkipList = new HashSet<String>(skipList.length); in setDataWipeSkipList()
94 mDataWipeSkipList.addAll(Arrays.asList(skipList)); in setDataWipeSkipList()
DITestsZipInstaller.java52 public void setDataWipeSkipList(Collection<String> skipList); in setDataWipeSkipList() argument
63 public void setDataWipeSkipList(String... skipList); in setDataWipeSkipList() argument
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DDefaultTestsZipInstallerTest.java86 Set<String> skipList = testZipInstaller.getDataWipeSkipList(); in testSkipWipeFileSetup() local
87 assertNull("Invalid wipe list set.", skipList); in testSkipWipeFileSetup()
89 skipList = testZipInstaller.getDataWipeSkipList(); in testSkipWipeFileSetup()
90 assertTrue("Invalid wipe list set. Missing value set.", skipList.contains("foo")); in testSkipWipeFileSetup()
95 skipList = testZipInstaller.getDataWipeSkipList(); in testSkipWipeFileSetup()
97 skipList.contains("foo")); in testSkipWipeFileSetup()
98 assertTrue("Invalid wipe list set. Missing value set.", skipList.contains("bar")); in testSkipWipeFileSetup()
99 assertTrue("Invalid wipe list set. Missing value set.", skipList.contains("foobar")); in testSkipWipeFileSetup()