commit a7f51ef785d155b1416e9b99088b163ee14c857c parent d623757cd0ea33d399966e6472fd185d758f668f Author: Marcello Stanisci <stanisci.m@gmail.com> Date: Mon, 7 Oct 2019 16:54:09 +0200 test skeleton Diffstat:
| M | build.gradle | | | 4 | ++++ |
| A | src/test/kotlin/XmlTest.kt | | | 13 | +++++++++++++ |
2 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/build.gradle b/build.gradle @@ -53,3 +53,7 @@ jar { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } } } + +test { + useJUnit() +} diff --git a/src/test/kotlin/XmlTest.kt b/src/test/kotlin/XmlTest.kt @@ -0,0 +1,12 @@ +package tech.libeufin + +import org.junit.Assert +import org.junit.Test +import org.junit.Assert.* + +class XmlTest { + @Test + fun iniValidation(){ + assert(false) + } +} +\ No newline at end of file