From add89937afc501d5d0045f26abf384a98414d72c Mon Sep 17 00:00:00 2001 From: "navid.sassan" Date: Mon, 5 Oct 2020 18:51:47 +0200 Subject: [PATCH] added better logging to gradle (template) --- template/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/template/build.gradle b/template/build.gradle index 92689d9..11aaf39 100644 --- a/template/build.gradle +++ b/template/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" + } +}