2019-10-31 20:43:47 -05:00
|
|
|
import io.gatling.app.Gatling
|
|
|
|
|
import io.gatling.core.config.GatlingPropertiesBuilder
|
|
|
|
|
|
|
|
|
|
object Engine extends App {
|
|
|
|
|
|
2019-11-17 17:39:40 +01:00
|
|
|
val props = new GatlingPropertiesBuilder()
|
|
|
|
|
.resourcesDirectory(IDEPathHelper.resourcesDirectory.toString)
|
|
|
|
|
.resultsDirectory(IDEPathHelper.resultsDirectory.toString)
|
|
|
|
|
.binariesDirectory(IDEPathHelper.mavenBinariesDirectory.toString)
|
2019-10-31 20:43:47 -05:00
|
|
|
|
2019-11-17 17:39:40 +01:00
|
|
|
Gatling.fromMap(props.build)
|
2019-10-31 20:43:47 -05:00
|
|
|
}
|