fix: Create unit tests in right package

This commit is contained in:
J-Jamet 2023-05-14 19:40:43 +02:00
parent a235b21fbf
commit 4d6dbc9e30
12 changed files with 11 additions and 2 deletions

View file

@ -29,6 +29,11 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
testOptions {
unitTests {
includeAndroidResources = true
}
}
}
dependencies {
@ -39,4 +44,8 @@ dependencies {
implementation 'commons-codec:commons-codec:1.15'
implementation project(path: ':database:crypto')
// Tests
androidTestImplementation "androidx.test:runner:$android_test_version"
testImplementation "androidx.test:runner:$android_test_version"
}

View file

Before

Width:  |  Height:  |  Size: 2.7 MiB

After

Width:  |  Height:  |  Size: 2.7 MiB

Before After
Before After

View file

@ -4,7 +4,6 @@ import android.content.Context
import androidx.test.platform.app.InstrumentationRegistry
import com.kunzisoft.keepass.database.element.binary.BinaryCache
import com.kunzisoft.keepass.database.element.binary.BinaryFile
import com.kunzisoft.keepass.utils.UriUtil.getBinaryDir
import com.kunzisoft.keepass.utils.readAllBytes
import junit.framework.TestCase.assertEquals
import org.junit.Test
@ -19,7 +18,7 @@ class BinaryDataTest {
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 fileB = File(cacheDirectory, TEST_FILE_CACHE_B)
private val fileC = File(cacheDirectory, TEST_FILE_CACHE_C)

View file

@ -0,0 +1 @@
R.java