Searched refs:rootEntry (Results 1 – 5 of 5) sorted by relevance
45 IFileEntry rootEntry = mock(IFileEntry.class); in setMockDirContents() local46 when(mockDevice.getFileEntry(rootPath)).thenReturn(rootEntry); in setMockDirContents()48 when(rootEntry.isDirectory()).thenReturn(isDir); in setMockDirContents()49 when(rootEntry.getFullEscapedPath()).thenReturn(rootPath); in setMockDirContents()50 when(rootEntry.getName()).thenReturn(rootPath); in setMockDirContents()60 when(rootEntry.getChildren(Mockito.anyBoolean())).thenReturn(mockChildren); in setMockDirContents()75 IFileEntry rootEntry = mock(IFileEntry.class); in setMockDirPath() local76 when(mockDevice.getFileEntry(rootPath)).thenReturn(rootEntry); in setMockDirPath()77 when(rootEntry.getFullEscapedPath()).thenReturn(rootPath); in setMockDirPath()78 when(rootEntry.getName()).thenReturn(rootPath); in setMockDirPath()[all …]
147 IFileEntry rootEntry, ITestDevice testDevice, ITestInvocationListener listener) in doRunAllTestsInSubdirectory() argument150 if (rootEntry.isDirectory()) { in doRunAllTestsInSubdirectory()152 for (IFileEntry childEntry : rootEntry.getChildren(true)) { in doRunAllTestsInSubdirectory()158 NativeStressTestParser resultParser = createResultParser(rootEntry.getName()); in doRunAllTestsInSubdirectory()159 String fullPath = rootEntry.getFullEscapedPath(); in doRunAllTestsInSubdirectory()169 CLog.i("Running %s for %d iterations", rootEntry.getName(), mNumIterations); in doRunAllTestsInSubdirectory()
172 IFileEntry rootEntry, ITestDevice testDevice, ITestInvocationListener listener) in doRunAllTestsInSubdirectory() argument175 if (rootEntry.isDirectory()) { in doRunAllTestsInSubdirectory()177 for (IFileEntry childEntry : rootEntry.getChildren(true)) { in doRunAllTestsInSubdirectory()183 String runName = (mReportRunName == null ? rootEntry.getName() : mReportRunName); in doRunAllTestsInSubdirectory()184 String fullPath = rootEntry.getFullEscapedPath(); in doRunAllTestsInSubdirectory()204 rootEntry.getName(), mNumIterations, delayFloat); in doRunAllTestsInSubdirectory()
194 String rootEntry = root.substring(root.lastIndexOf("/") + 1); in doRunAllTestsInSubdirectory() local195 String runName = (mReportRunName == null ? rootEntry : mReportRunName); in doRunAllTestsInSubdirectory()
113 IFileEntry rootEntry, in testRun_setMaxFrequency()