Fixed test setup
This commit is contained in:
parent
5a49c6c465
commit
c8a7731ccc
|
@ -76,8 +76,7 @@ kotlin {
|
||||||
|
|
||||||
commonTest {
|
commonTest {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation kotlin("test-common")
|
implementation kotlin("test")
|
||||||
implementation kotlin("test-annotations-common")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,16 +89,10 @@ kotlin {
|
||||||
|
|
||||||
jvmTest {
|
jvmTest {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
implementation "org.assertj:assertj-core:$assertJVersion"
|
implementation "org.assertj:assertj-core:$assertJVersion"
|
||||||
implementation "org.mockito:mockito-core:$mockitoVersion"
|
implementation "org.mockito:mockito-core:$mockitoVersion"
|
||||||
|
|
||||||
|
|
||||||
// implementation project(":BankingUiCommon")
|
|
||||||
// implementation project(":BankFinder")
|
|
||||||
// implementation project(":fints4kBankingClient")
|
|
||||||
|
|
||||||
|
|
||||||
implementation "org.apache.commons:commons-csv:1.8"
|
implementation "org.apache.commons:commons-csv:1.8"
|
||||||
|
|
||||||
implementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
implementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
||||||
|
@ -107,15 +100,6 @@ kotlin {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
jvmTest.dependencies {
|
|
||||||
implementation kotlin("test-junit")
|
|
||||||
|
|
||||||
implementation "org.junit.jupiter:junit-jupiter:$junit5Version"
|
|
||||||
runtimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
|
|
||||||
|
|
||||||
implementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
jsMain {
|
jsMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -123,10 +107,6 @@ kotlin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
jsTest.dependencies {
|
|
||||||
implementation kotlin("test-js")
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
nativeMain {
|
nativeMain {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
@ -69,8 +69,7 @@ kotlin {
|
||||||
|
|
||||||
commonTest {
|
commonTest {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation kotlin("test-common")
|
implementation kotlin("test")
|
||||||
implementation kotlin("test-annotations-common")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -88,11 +87,6 @@ kotlin {
|
||||||
|
|
||||||
jvmTest {
|
jvmTest {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation kotlin("test-junit")
|
|
||||||
|
|
||||||
implementation "org.junit.jupiter:junit-jupiter:$junit5Version"
|
|
||||||
runtimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
|
|
||||||
|
|
||||||
implementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
implementation "org.slf4j:slf4j-simple:$slf4jVersion"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,18 +101,6 @@ kotlin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
jsTest {
|
|
||||||
dependencies {
|
|
||||||
implementation kotlin("test-js") // don't know why this dependency is needed here, it's not needed e.g. in fints4k project
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
iosMain {
|
|
||||||
dependencies {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
linuxX64Main {
|
linuxX64Main {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
@ -134,5 +116,11 @@ kotlin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
appleMain {
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue