test: support integration test summary

This commit is contained in:
ReaJason
2024-12-02 01:10:51 +08:00
parent 7b9beeb8bb
commit e2340ff2d1
16 changed files with 444 additions and 379 deletions
+8
View File
@@ -1,6 +1,7 @@
plugins {
id "java"
id "jacoco"
id 'idea'
id "io.freefair.lombok" version "8.11"
}
@@ -21,6 +22,7 @@ dependencies {
testImplementation 'org.testcontainers:junit-jupiter:1.20.4'
testImplementation platform('org.junit:junit-bom:5.11.3')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.junit.platform:junit-platform-reporting:1.11.3'
}
tasks.withType(Test).tap {
@@ -31,6 +33,12 @@ tasks.withType(Test).tap {
}
}
idea {
module {
excludeDirs -= file('build')
}
}
test {
dependsOn ":vul-webapp:war", ":vul-webapp-jakarta:war"
useJUnitPlatform()