From c18839aa861511b1c6d0cf962c90ca5a81065373 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 9 Jan 2019 19:51:57 +0100 Subject: [PATCH] Added test --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build.gradle b/build.gradle index cc729fb4..62332103 100644 --- a/build.gradle +++ b/build.gradle @@ -206,6 +206,11 @@ sourceSets { setSrcDirs Collections.singletonList('src') } } + test { + java { + setSrcDirs Collections.singletonList('test') + } + } } @@ -243,6 +248,9 @@ dependencies { api "com.dorkbox:ObjectPool:2.11" api 'org.slf4j:slf4j-api:1.7.25' + + testCompile 'junit:junit:4.12' + testCompile ("ch.qos.logback:logback-classic:1.1.6") }