improved logging during unit tests

This commit is contained in:
navid.sassan 2020-10-05 01:02:30 +02:00
parent 4f31b86af4
commit cb2b4cd51b

View File

@ -33,3 +33,9 @@ application {
// Define the main class for the application. // Define the main class for the application.
mainClassName = 'ch.zhaw.ads.ExBox' mainClassName = 'ch.zhaw.ads.ExBox'
} }
test {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}