Searched refs:listApks (Results 1 – 4 of 4) sorted by relevance
72 List<Path> res = TestUtils.listApks(root); in listApks_withSplitApksInSubDirectory_returnsApks()88 List<Path> res = TestUtils.listApks(root); in listApks_withSingleSplitApkDirectory_returnsApks()108 List<Path> res = TestUtils.listApks(root); in listApks_withSplitApkDirectory_returnsListWithBaseApkAsTheFirstElement()119 List<Path> res = TestUtils.listApks(root); in listApks_withSingleApkDirectory_returnsApks()134 List<Path> res = TestUtils.listApks(root); in listApks_withSingleApkFile_returnsApks()152 List<Path> res = TestUtils.listApks(root); in listApks_withApkDirectoryContainingObbFiles_returnsApksWithObb()170 List<Path> res = TestUtils.listApks(root); in listApks_withApkDirectoryContainingOtherFileTypes_returnsApksOnly()186 assertThrows(TestUtils.TestUtilsException.class, () -> TestUtils.listApks(root)); in listApks_withApkDirectoryContainingNoApks_throwException()195 assertThrows(TestUtils.TestUtilsException.class, () -> TestUtils.listApks(root)); in listApks_withApkDirectoryContainingOnlyObbFiles_throwException()203 assertThrows(TestUtils.TestUtilsException.class, () -> TestUtils.listApks(root)); in listApks_withNonApkFile_throwException()[all …]
491 TestUtils.listApks(mApkRoot) in createUtpCrawlerRunCommand()579 TestUtils.listApks(mApkRoot).stream() in createCrawlerRunCommand()
74 apkFilePaths = TestUtils.listApks(apkPath); in install()
375 public static List<Path> listApks(Path root) throws TestUtilsException { in listApks() method in TestUtils