You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by vo...@apache.org on 2020/06/14 15:21:20 UTC

[fineract] 01/02: add missing useJUnitPlatform() to make Gradle run JUnit 5 [FINERACT-1021]

This is an automated email from the ASF dual-hosted git repository.

vorburger pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit 508e915b4f85091aa97b02e2a1523420e88e432a
Author: Michael Vorburger <mi...@vorburger.ch>
AuthorDate: Sun Jun 14 15:50:09 2020 +0200

    add missing useJUnitPlatform() to make Gradle run JUnit 5 [FINERACT-1021]
---
 fineract-provider/build.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/fineract-provider/build.gradle b/fineract-provider/build.gradle
index d64051a..b84ada0 100644
--- a/fineract-provider/build.gradle
+++ b/fineract-provider/build.gradle
@@ -585,6 +585,7 @@ task integrationTest(type:Test) {
 }
 
 integrationTest {
+	useJUnitPlatform()
 	testLogging { // FINERACT-927
 		events "skipped", "failed"
 		showStandardStreams = false
@@ -592,6 +593,7 @@ integrationTest {
 	}
 }
 test {
+	useJUnitPlatform()
 	testLogging { // FINERACT-927
 		events "skipped", "failed"
 		showStandardStreams = false
@@ -599,6 +601,7 @@ test {
 	}
 }
 
+
 import groovy.sql.Sql
 
 repositories {