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

Comments.

This commit is contained in:
Cedric Beust 2016-05-04 23:25:33 -08:00
parent 9a0ed576bc
commit dd65e3bbc7

View file

@ -4,5 +4,9 @@ package com.beust.kobalt.api
* Plug-ins that add flags to the JVM used to run tests should implement this interface.
*/
interface ITestJvmFlagContributor : IContributor {
/**
* The list of JVM flags that will be added to the JVM when the tests get run. @param[currentFlags] is only here
* for convenience, in case you need to look at the current JVM flags before adding your own flags.
*/
fun testJvmFlagsFor(project: Project, context: KobaltContext, currentFlags: List<String>) : List<String>
}