Colton Idle
04/21/2021, 9:57 AMclass MyTest {
@Test
fun `test something`() {
Assert.assertEquals("asdf", "asdf")
}
}
When I run that in intellij I get this message. Ideas?christophsturm
04/21/2021, 10:00 AMColton Idle
04/21/2021, 10:00 AMplugins {
id("java-library")
id("kotlin")
}
java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
dependencies {
testImplementation("junit:junit:4.12")
}
Colton Idle
04/21/2021, 10:01 AMColton Idle
04/21/2021, 10:02 AMColton Idle
04/21/2021, 10:02 AMColton Idle
04/21/2021, 10:02 AM