Home
last modified time | relevance | path

Searched refs:testMappingRelativePaths (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/util/testmapping/
DTestMappingTest.java352 List<String> testMappingRelativePaths = new ArrayList<>(); in testGetAllTestMappingPaths_FromChildDirectory() local
354 testMappingRelativePaths.add(relPath.toString()); in testGetAllTestMappingPaths_FromChildDirectory()
355 TestMapping testMapping = new TestMapping(testMappingRelativePaths, true); in testGetAllTestMappingPaths_FromChildDirectory()
382 List<String> testMappingRelativePaths = new ArrayList<>(); in testGetAllTestMappingPaths_FromParentDirectory() local
384 testMappingRelativePaths.add(relPath.toString()); in testGetAllTestMappingPaths_FromParentDirectory()
385 TestMapping testMapping = new TestMapping(testMappingRelativePaths, true); in testGetAllTestMappingPaths_FromParentDirectory()
405 List<String> testMappingRelativePaths = new ArrayList<>(); in testGetAllTestMappingPaths_NoFilesFound() local
407 testMappingRelativePaths.add(relPath.toString()); in testGetAllTestMappingPaths_NoFilesFound()
408 TestMapping testMapping = new TestMapping(testMappingRelativePaths, true); in testGetAllTestMappingPaths_NoFilesFound()
/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/
DTestMapping.java101 public TestMapping(List<String> testMappingRelativePaths, boolean ignoreTestMappingImports) { in TestMapping() argument
102 mTestMappingRelativePaths = testMappingRelativePaths; in TestMapping()