File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed
core-tests-android/src/androidTest/java/com/powersync Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,4 @@ class AndroidDatabaseTest {
4444
4545 @Test
4646 fun canUseTempStore () = helpers.canUseTempStore()
47-
48- @Test
49- fun testEncryptedDatabase () = helpers.testEncryptedDatabase()
5047}
Original file line number Diff line number Diff line change 1+ package com.powersync
2+
3+ import com.powersync.testutils.IntegrationTestHelpers
4+ import androidx.test.ext.junit.runners.AndroidJUnit4
5+ import androidx.test.platform.app.InstrumentationRegistry
6+ import org.junit.After
7+ import org.junit.Before
8+ import org.junit.Test
9+ import org.junit.runner.RunWith
10+
11+ @RunWith(AndroidJUnit4 ::class )
12+ class EncryptedDatabaseTest {
13+ private val helpers = IntegrationTestHelpers (
14+ InstrumentationRegistry .getInstrumentation().targetContext
15+ )
16+ @Test
17+ fun testEncryptedDatabase () = helpers.testEncryptedDatabase()
18+ }
You can’t perform that action at this time.
0 commit comments