2022-11-24 17:16:15 +00:00
|
|
|
plugins {
|
|
|
|
id "application"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-11-25 14:51:12 +00:00
|
|
|
|
|
|
|
def junitVersion = "5.9.1"
|
|
|
|
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:${junitVersion}")
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-params:${junitVersion}")
|
|
|
|
|
2022-11-24 17:16:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|