A small utility mod for saving gametest results in the JUnit5 XML format.
Just add the following to your build.gradle
repositories {
maven {
url "https://maven.galacticraft.dev/"
}
}
dependencies {
modRuntime "dev.galacticraft:GameUnit:$gameunitVersion"
}
Gradle Kotlin DSL
If you're using a Kotlin DSL just add the following to your build.gradle.kts
.
repositories {
maven("https://maven.galacticraft.dev/")
}
dependencies {
modRuntime("dev.galacticraft:GameUnit:$gameunitVersion")
}
And that's it.
When you run your gametest server task the results will be available at run/TEST-gameunit.xml
.