Added test

This commit is contained in:
nathan 2019-01-09 19:51:57 +01:00
parent 82e4478d45
commit c18839aa86

View File

@ -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")
}