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 { 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 {