1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Better default test directive.

This commit is contained in:
Cedric Beust 2016-07-18 23:42:10 -08:00
parent da8728f5f6
commit c7d1dc4a8d

View file

@ -6,7 +6,7 @@ import com.beust.kobalt.api.annotation.Directive
class TestConfig(val project: Project, val isDefault : Boolean = false) {
val testArgs = arrayListOf<String>()
val jvmArgs = arrayListOf<String>()
val testIncludes = arrayListOf("**/*.class")
val testIncludes = arrayListOf("**/*Test.class")
val testExcludes = arrayListOf<String>()
var name: String = ""