Post-Implementation refactoring of application #9
2 changed files with 8 additions and 4 deletions
|
@ -24,10 +24,7 @@ dependencies {
|
||||||
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
|
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
|
||||||
|
|
||||||
// Use the Kotlin JDK 8 standard library.
|
// Use the Kotlin JDK 8 standard library.
|
||||||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
implementation("org.jetbrains.kotlin:kotlin-stdlib")
|
||||||
|
|
||||||
// This dependency is used by the application.
|
|
||||||
implementation("com.google.guava:guava:30.1.1-jre")
|
|
||||||
|
|
||||||
// Use the Kotlin test library.
|
// Use the Kotlin test library.
|
||||||
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||||||
|
@ -47,6 +44,11 @@ tasks {
|
||||||
jvmTarget = "16"
|
jvmTarget = "16"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
compileTestKotlin {
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "16"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
application {
|
application {
|
||||||
|
|
|
@ -7,8 +7,10 @@ import kotlin.test.Test
|
||||||
import kotlin.test.assertNotNull
|
import kotlin.test.assertNotNull
|
||||||
|
|
||||||
class AppTest {
|
class AppTest {
|
||||||
|
/*
|
||||||
@Test fun appHasAGreeting() {
|
@Test fun appHasAGreeting() {
|
||||||
val classUnderTest = App()
|
val classUnderTest = App()
|
||||||
assertNotNull(classUnderTest.greeting, "app should have a greeting")
|
assertNotNull(classUnderTest.greeting, "app should have a greeting")
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue