mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-04 21:37:37 +03:00
fix: Create unit tests in right package
This commit is contained in:
parent
a235b21fbf
commit
4d6dbc9e30
12 changed files with 11 additions and 2 deletions
|
@ -29,6 +29,11 @@ android {
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = '1.8'
|
jvmTarget = '1.8'
|
||||||
}
|
}
|
||||||
|
testOptions {
|
||||||
|
unitTests {
|
||||||
|
includeAndroidResources = true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -39,4 +44,8 @@ dependencies {
|
||||||
implementation 'commons-codec:commons-codec:1.15'
|
implementation 'commons-codec:commons-codec:1.15'
|
||||||
|
|
||||||
implementation project(path: ':database:crypto')
|
implementation project(path: ':database:crypto')
|
||||||
|
|
||||||
|
// Tests
|
||||||
|
androidTestImplementation "androidx.test:runner:$android_test_version"
|
||||||
|
testImplementation "androidx.test:runner:$android_test_version"
|
||||||
}
|
}
|
||||||
|
|
Before Width: | Height: | Size: 2.7 MiB After Width: | Height: | Size: 2.7 MiB |
|
@ -4,7 +4,6 @@ import android.content.Context
|
||||||
import androidx.test.platform.app.InstrumentationRegistry
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
import com.kunzisoft.keepass.database.element.binary.BinaryCache
|
import com.kunzisoft.keepass.database.element.binary.BinaryCache
|
||||||
import com.kunzisoft.keepass.database.element.binary.BinaryFile
|
import com.kunzisoft.keepass.database.element.binary.BinaryFile
|
||||||
import com.kunzisoft.keepass.utils.UriUtil.getBinaryDir
|
|
||||||
import com.kunzisoft.keepass.utils.readAllBytes
|
import com.kunzisoft.keepass.utils.readAllBytes
|
||||||
import junit.framework.TestCase.assertEquals
|
import junit.framework.TestCase.assertEquals
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
|
@ -19,7 +18,7 @@ class BinaryDataTest {
|
||||||
InstrumentationRegistry.getInstrumentation().context
|
InstrumentationRegistry.getInstrumentation().context
|
||||||
}
|
}
|
||||||
|
|
||||||
private val cacheDirectory = InstrumentationRegistry.getInstrumentation().targetContext.getBinaryDir()
|
private val cacheDirectory = context.filesDir
|
||||||
private val fileA = File(cacheDirectory, TEST_FILE_CACHE_A)
|
private val fileA = File(cacheDirectory, TEST_FILE_CACHE_A)
|
||||||
private val fileB = File(cacheDirectory, TEST_FILE_CACHE_B)
|
private val fileB = File(cacheDirectory, TEST_FILE_CACHE_B)
|
||||||
private val fileC = File(cacheDirectory, TEST_FILE_CACHE_C)
|
private val fileC = File(cacheDirectory, TEST_FILE_CACHE_C)
|
1
database/src/test/java/com/kunzisoft/keepass/tests/.gitignore
vendored
Normal file
1
database/src/test/java/com/kunzisoft/keepass/tests/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
R.java
|
Loading…
Add table
Add a link
Reference in a new issue