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;
127 assertFileDoesNotExist(mCePath, CE_DATA_FILE_NAME); in testCreateCeDeAppData()
128 assertFileDoesNotExist(mCePath, DE_DATA_FILE_NAME); in testCreateCeDeAppData()
129 assertFileDoesNotExist(mDePath, CE_DATA_FILE_NAME); in testCreateCeDeAppData()
130 assertFileDoesNotExist(mDePath, DE_DATA_FILE_NAME); in testCreateCeDeAppData()
136 assertFileDoesNotExist(mCePath, DE_DATA_FILE_NAME); in testCreateCeDeAppData()
137 assertFileDoesNotExist(mDePath, CE_DATA_FILE_NAME); in testCreateCeDeAppData()
143 assertFileDoesNotExist(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testCreateExternalDirs()
144 assertFileDoesNotExist(mObbPath, OBB_FILE_NAME); in testCreateExternalDirs()
158 assertFileDoesNotExist(mExternalDataPath, EXTERNAL_DATA_FILE_NAME); in testDeleteExternalDirs()
[all …]
/cts/hostsidetests/testharness/src/android/testharness/cts/
DTestHarnessModeDeviceTest.java69 assertFileDoesNotExist("/sdcard/test.txt"); in testHarnessModeDeletesFiles()
70 assertFileDoesNotExist("/data/local/tmp/test.txt"); in testHarnessModeDeletesFiles()
147 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