commit aa3fcd6fd1bb0497a4ab281370914ff55443be1d
parent 3086f70bd358af283f862f7a429a3cfcb9df0cc1
Author: MS <ms@taler.net>
Date: Wed, 21 Jun 2023 11:54:29 +0200
Testing.
Providing 'make pofi' target to interact
with the PostFinance test platform.
Diffstat:
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -67,3 +67,7 @@ check:
check-cli:
@cd ./cli/tests && ./circuit_test.sh
@cd ./cli/tests && ./debit_test.sh
+
+.PHONY: pofi
+pofi:
+ @./gradlew -q :nexus:pofi
diff --git a/nexus/build.gradle b/nexus/build.gradle
@@ -128,3 +128,8 @@ jar {
run {
standardInput = System.in
}
+
+task pofi(type: JavaExec) {
+ classpath = sourceSets.test.runtimeClasspath
+ mainClass = "PostFinanceKt"
+}
+\ No newline at end of file