Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowContextTest.java142 String testDbName; in getDatabasePath_shouldAllowAbsolutePaths() local
145 testDbName = "C:\\absolute\\full\\path\\to\\db\\abc.db"; in getDatabasePath_shouldAllowAbsolutePaths()
147 testDbName = "/absolute/full/path/to/db/abc.db"; in getDatabasePath_shouldAllowAbsolutePaths()
149 File dbFile = context.getDatabasePath(testDbName); in getDatabasePath_shouldAllowAbsolutePaths()
150 assertThat(dbFile).isEqualTo(new File(testDbName)); in getDatabasePath_shouldAllowAbsolutePaths()