Home
last modified time | relevance | path

Searched refs:checkDatabaseRowExistsAs (Results 1 – 2 of 2) sorted by relevance

/cts/hostsidetests/scopedstorage/bypassdatabase/src/android/scopedstorage/cts/bypassdatabase/
DBypassDatabaseOperationsTest.java237 assertThat(TestUtils.checkDatabaseRowExistsAs(app, file)).isTrue(); in testAppDoesntBypassDatabaseOps()
241 assertThat(TestUtils.checkDatabaseRowExistsAs(app, file)).isFalse(); in testAppDoesntBypassDatabaseOps()
242 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isTrue(); in testAppDoesntBypassDatabaseOps()
246 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isFalse(); in testAppDoesntBypassDatabaseOps()
263 assertThat(TestUtils.checkDatabaseRowExistsAs(app, file)).isFalse(); in testAppBypassesDatabaseOps()
270 assertThat(TestUtils.checkDatabaseRowExistsAs(app, file)).isTrue(); in testAppBypassesDatabaseOps()
271 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isFalse(); in testAppBypassesDatabaseOps()
276 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isTrue(); in testAppBypassesDatabaseOps()
280 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isTrue(); in testAppBypassesDatabaseOps()
/cts/hostsidetests/scopedstorage/libs/ScopedStorageTestLib/src/android/scopedstorage/cts/lib/
DTestUtils.java489 public static boolean checkDatabaseRowExistsAs(TestApp testApp, File file) throws Exception { in checkDatabaseRowExistsAs() method in TestUtils