Add JUnit test suite

This commit is contained in:
Erik C. Thauvin 2025-04-25 22:02:07 -07:00
parent b7ff13894f
commit 15a96a909a
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -16,16 +16,19 @@ defaultTasks 'run'
dependencies {
testImplementation platform('org.junit:junit-bom:5.12.2')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
testing {
suites {
test {
useJUnitJupiter('5.12.2')
}
}
}
application {