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

Add support for KotlinTest.

This commit is contained in:
Cedric Beust 2017-01-14 08:46:26 -08:00
parent 70e1a179f4
commit 24174b40f1
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,10 @@
package com.beust.kobalt.internal
/**
* KotlinTestRunner triggers if it finds a dependency on io.kotlintest but other than that, it just
* uses the regular JUnitRunner.
*/
class KotlinTestRunner : JUnitRunner() {
override val dependencyName = "io.kotlintest"
}