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

Fix test.

This commit is contained in:
Cedric Beust 2016-07-25 03:17:56 -08:00
parent d749f2ae8a
commit 2ea5a6100b

View file

@ -8,16 +8,15 @@ import com.beust.kobalt.internal.KobaltPluginXml
import com.beust.kobalt.internal.PluginInfo
import com.beust.kobalt.internal.build.BuildFile
import com.beust.kobalt.maven.aether.KobaltAether
import org.testng.annotations.BeforeSuite
import org.testng.annotations.BeforeClass
import java.io.File
import java.nio.file.Paths
open class BaseTest(open val aether: KobaltAether) {
val context = KobaltContext(Args())
@BeforeSuite
fun bs() {
println("INITIALIZING AETHER TO $aether")
@BeforeClass
fun bc() {
context.aether = aether
}