Home
last modified time | relevance | path

Searched refs:assertCanRenameFile (Results 1 – 4 of 4) sorted by relevance

/cts/hostsidetests/scopedstorage/device/src/android/scopedstorage/cts/device/
DScopedStorageDeviceTest.java31 import static android.scopedstorage.cts.lib.TestUtils.assertCanRenameFile;
1519 assertCanRenameFile(otherAppVideoFile, videoFile); in testSystemGalleryCanRenameImagesAndVideos()
1522 assertCanRenameFile(videoFile, topLevelVideoFile); in testSystemGalleryCanRenameImagesAndVideos()
1525 assertCanRenameFile(topLevelVideoFile, imageFile); in testSystemGalleryCanRenameImagesAndVideos()
1568 assertCanRenameFile(pdfFile1, pdfFile2); in testRenameFile()
1572 assertCanRenameFile(videoFile1, videoFile2); in testRenameFile()
1574 assertCanRenameFile(videoFile2, videoFile3); in testRenameFile()
1599 assertCanRenameFile(pdfFile, videoFile); in testRenameFileType()
1625 assertCanRenameFile(videoFile1, videoFile2); in testRenameAndReplaceFile()
1661 assertCanRenameFile(mpegFile, nonMpegFile); in testScanUpdatesMimeTypeForRenameFileExtension()
[all …]
/cts/hostsidetests/scopedstorage/src/android/scopedstorage/cts/
DScopedStorageTest.java23 import static android.scopedstorage.cts.lib.TestUtils.assertCanRenameFile;
375 assertCanRenameFile(otherAppPdf, pdf, /* checkDatabase */ false); in testManageExternalStorageCanRenameOtherAppsContents()
378 assertCanRenameFile(pdf, topLevelPdf, /* checkDatabase */ false); in testManageExternalStorageCanRenameOtherAppsContents()
382 assertCanRenameFile(topLevelPdf, pdfInObviouslyWrongPlace, /* checkDatabase */ false); in testManageExternalStorageCanRenameOtherAppsContents()
386 assertCanRenameFile(pdfInObviouslyWrongPlace, musicFile, /* checkDatabase */ false); in testManageExternalStorageCanRenameOtherAppsContents()
/cts/hostsidetests/scopedstorage/legacy/src/android/scopedstorage/cts/legacy/
DLegacyStorageTest.java25 import static android.scopedstorage.cts.lib.TestUtils.assertCanRenameFile;
412 assertCanRenameFile(musicFile1, musicFile2); in testCanRename_hasRW()
415 assertCanRenameFile(musicFile2, musicFile3); in testCanRename_hasRW()
843 assertCanRenameFile(otherAppVideoFile, videoFile, false /* checkDatabase */); in testLegacySystemGalleryCanRenameImagesAndVideosWithoutDbUpdates()
892 assertCanRenameFile(otherAppVideoFile, videoFile); in testLegacyWESCanRenameImagesAndVideosWithDbUpdates_hasW()
/cts/hostsidetests/scopedstorage/libs/ScopedStorageTestLib/src/android/scopedstorage/cts/lib/
DTestUtils.java925 public static void assertCanRenameFile(File oldFile, File newFile) { in assertCanRenameFile() method in TestUtils
926 assertCanRenameFile(oldFile, newFile, /* checkDB */ true); in assertCanRenameFile()
932 public static void assertCanRenameFile(File oldFile, File newFile, boolean checkDatabase) { in assertCanRenameFile() method in TestUtils