Add JUnit test suite
This commit is contained in:
parent
b7ff13894f
commit
15a96a909a
1 changed files with 7 additions and 4 deletions
|
@ -16,16 +16,19 @@ defaultTasks 'run'
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation platform('org.junit:junit-bom:5.12.2')
|
|
||||||
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
test {
|
testing {
|
||||||
useJUnitPlatform()
|
suites {
|
||||||
|
test {
|
||||||
|
useJUnitJupiter('5.12.2')
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
application {
|
application {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue