Home
last modified time | relevance | path

Searched refs:assertFileDoesNotExist (Results 1 – 3 of 3) sorted by relevance

/cts/hostsidetests/appsecurity/test-apps/AppDataIsolationTestApp/AppA/src/com/android/cts/appdataisolation/appa/
DAppATests.java29 import static com.android.cts.appdataisolation.common.FileUtils.assertFileDoesNotExist;
116 assertFileDoesNotExist(mCePath, CE_DATA_FILE_NAME); in testCreateCeDeAppData()
117 assertFileDoesNotExist(mCePath, DE_DATA_FILE_NAME); in testCreateCeDeAppData()
118 assertFileDoesNotExist(mDePath, CE_DATA_FILE_NAME); in testCreateCeDeAppData()
119 assertFileDoesNotExist(mDePath, DE_DATA_FILE_NAME); in testCreateCeDeAppData()
125 assertFileDoesNotExist(mCePath, DE_DATA_FILE_NAME); in testCreateCeDeAppData()
126 assertFileDoesNotExist(mDePath, CE_DATA_FILE_NAME); in testCreateCeDeAppData()
132 assertFileDoesNotExist(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testCreateExternalDirs()
133 assertFileDoesNotExist(mObbPath, OBB_FILE_NAME); in testCreateExternalDirs()
149 assertFileDoesNotExist(mCePath, CE_DATA_FILE_NAME); in testAppACeDataDoesNotExist()
[all …]
/cts/hostsidetests/testharness/src/android/testharness/cts/
DTestHarnessModeDeviceTest.java68 assertFileDoesNotExist("/sdcard/test.txt"); in testHarnessModeDeletesFiles()
69 assertFileDoesNotExist("/data/local/tmp/test.txt"); in testHarnessModeDeletesFiles()
146 private void assertFileDoesNotExist(String path) throws DeviceNotAvailableException { in assertFileDoesNotExist() method in TestHarnessModeDeviceTest
/cts/hostsidetests/appsecurity/test-apps/AppDataIsolationTestApp/common/src/com/android/cts/appdataisolation/common/
DFileUtils.java98 assertFileDoesNotExist(path, "FILE_DOES_NOT_EXIST"); in assertDirIsAccessible()
111 public static void assertFileDoesNotExist(String path, String name) { in assertFileDoesNotExist() method in FileUtils