OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testCasesDirs
(Results
1 - 3
of
3
) sorted by null
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
SystemUtilTest.java
52
Set<File>
testCasesDirs
= new HashSet<File>(SystemUtil.getTestCasesDirs());
53
assertTrue(
testCasesDirs
.contains(targetOutDir));
54
assertTrue(!
testCasesDirs
.contains(hostOutDir));
73
Set<File>
testCasesDirs
= new HashSet<File>(SystemUtil.getTestCasesDirs());
74
assertEquals(
testCasesDirs
.size(), 0);
/tools/tradefederation/core/src/com/android/tradefed/util/
SystemUtil.java
65
List<File>
testCasesDirs
= new ArrayList<File>();
74
testCasesDirs
.add(dir);
83
return
testCasesDirs
;
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
PushFilePreparer.java
121
List<File>
testCasesDirs
= getTestCasesDirs();
129
testCasesDirs
.addAll(
136
for (File dir :
testCasesDirs
) {
Completed in 245 milliseconds