ribesg
05/03/2019, 1:01 PMDennis L
05/03/2019, 1:03 PMribesg
05/03/2019, 1:13 PMkpgalligan
05/03/2019, 1:19 PMribesg
05/03/2019, 1:23 PM1 == 1
in a function and being able to run it@Test
in commonTest
but gradle test
does not see them. (gradle test
should run the Android unit tests)kpgalligan
05/03/2019, 1:24 PMribesg
05/03/2019, 1:26 PMgetByName("commonTest") {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
getByName("androidTest") {
dependencies {
implementation(kotlin("test"))
implementation(kotlin("test-testng"))
implementation("org.testng:testng:6.13.1")
}
}
testng
with junit
NoClassDefFoundError
on something that is internal
in the code module 😕kpgalligan
05/03/2019, 1:30 PMmben
05/03/2019, 1:45 PMribesg
05/03/2019, 1:50 PMjunit
to junit5
to testng
and trying to find something that worksmben
05/03/2019, 1:54 PMkpgalligan
05/03/2019, 2:02 PMrusshwolf
05/03/2019, 4:44 PMgradle check
instead of gradle test
. That's the command most of the default multiplatform gradle setups are built for.