From cb2b4cd51b3c31da14351c7a71ef6695bccffa08 Mon Sep 17 00:00:00 2001 From: "navid.sassan" Date: Mon, 5 Oct 2020 01:02:30 +0200 Subject: [PATCH] improved logging during unit tests --- 02/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/02/build.gradle b/02/build.gradle index 92689d9..11aaf39 100644 --- a/02/build.gradle +++ b/02/build.gradle @@ -33,3 +33,9 @@ application { // Define the main class for the application. mainClassName = 'ch.zhaw.ads.ExBox' } + +test { + testLogging { + events "passed", "skipped", "failed", "standardOut", "standardError" + } +}