Issue#67 Extract MigrationTestHelper into separate module
This commit is contained in:
parent
f35fe810e0
commit
4932b4b2e0
26 changed files with 249 additions and 225 deletions
|
|
@ -37,12 +37,12 @@ project.ext {
|
|||
|
||||
// ------------------VERSIONS------------------
|
||||
def testing_junit5_version = propertyOrNull('junit5_version') ?: "5.7.0"
|
||||
def testing_junit4_version = propertyOrNull('juni4_version') ?: "4.13.2"
|
||||
def testing_junit4_version = propertyOrNull('juni4_version') ?: "4.12"
|
||||
def testing_robolectric_version = propertyOrNull('robolectric_version') ?: "4.7"
|
||||
def testing_androidx_code_version = propertyOrNull('androidx_test_version') ?: "1.4.0"
|
||||
def testing_androidx_junit_version = propertyOrNull('androidx_junit_version') ?: "1.1.3"
|
||||
def testing_espresso_version = propertyOrNull('espresso_version') ?: "3.4.0"
|
||||
def testing_androidx_arch_core_version = propertyOrNull('androidx_arch_version') ?: "2.1.0"
|
||||
def testing_androidx_arch_core_version = propertyOrNull('arch_core_version') ?: "2.1.0"
|
||||
def test_coroutines_version = propertyOrNull('coroutines_versionx') ?: "1.6.0"
|
||||
def testing_kotlin_mockito_version = propertyOrNull('mockito_version') ?: "3.1.0"
|
||||
def testing_koin_version = propertyOrNull('koin_version') ?: "3.1.2"
|
||||
|
|
@ -52,6 +52,7 @@ project.ext {
|
|||
def testing_androidx_room_version = propertyOrNull('room_version') ?: "2.4.1"
|
||||
def testing_livedata_version = propertyOrNull('testing_livedata_version') ?: "1.2.0"
|
||||
def testing_compose_version = propertyOrNull('compose_version') ?: "1.1.0"
|
||||
def testing_hamcrest_version = propertyOrNull('hamcrest_version')?: "2.2"
|
||||
|
||||
// ------------------PRIVATE------------------
|
||||
// JUni4 + Espresso + Room
|
||||
|
|
@ -70,6 +71,7 @@ project.ext {
|
|||
"androidx.test.espresso:espresso-core:$testing_espresso_version",
|
||||
"androidx.test.espresso:espresso-intents:$testing_espresso_version",
|
||||
"androidx.test.espresso:espresso-contrib:$testing_espresso_version",
|
||||
"org.hamcrest:hamcrest:$testing_hamcrest_version",
|
||||
|
||||
"androidx.arch.core:core-testing:$testing_androidx_arch_core_version",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue