Home
last modified time | relevance | path

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

/cts/hostsidetests/scopedstorage/device/src/android/scopedstorage/cts/device/
DBypassDatabaseOperationsTest.java269 assertThat(TestUtils.checkDatabaseRowExistsAs(app, file)).isTrue(); in testAppDoesntBypassDatabaseOps()
273 assertThat(TestUtils.checkDatabaseRowExistsAs(app, file)).isFalse(); in testAppDoesntBypassDatabaseOps()
274 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isTrue(); in testAppDoesntBypassDatabaseOps()
278 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isFalse(); in testAppDoesntBypassDatabaseOps()
295 assertThat(TestUtils.checkDatabaseRowExistsAs(app, file)).isFalse(); in testAppBypassesDatabaseOps()
302 assertThat(TestUtils.checkDatabaseRowExistsAs(app, file)).isTrue(); in testAppBypassesDatabaseOps()
303 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isFalse(); in testAppBypassesDatabaseOps()
308 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isTrue(); in testAppBypassesDatabaseOps()
312 assertThat(TestUtils.checkDatabaseRowExistsAs(app, renamedFile)).isTrue(); in testAppBypassesDatabaseOps()
/cts/hostsidetests/scopedstorage/libs/ScopedStorageTestLib/src/android/scopedstorage/cts/lib/
DTestUtils.java342 public static boolean checkDatabaseRowExistsAs(TestApp testApp, File file) throws Exception { in checkDatabaseRowExistsAs() method in TestUtils