Add validation on route GetWorkgroups

This commit is contained in:
2021-04-15 21:20:15 +02:00
parent 596b7ff0c9
commit 518b59e9aa
6 changed files with 73 additions and 16 deletions

View File

@@ -368,6 +368,12 @@ tasks.register("testVotes", Test::class) {
includeTags("vote")
}
}
tasks.register("testWorkgroup", Test::class) {
group = "tests"
useJUnitPlatform {
includeTags("workgroup")
}
}
dependencyCheck {
formats = listOf(ReportGenerator.Format.HTML, ReportGenerator.Format.XML)