Gatling version 3.14.3 JAVA / Maven Windows
The only reference I could find to setting the description and the output folder was this SO article:
Gatling report description customization - Stack Overflow
The article says to use these environment definitions when running the test via Maven:
-Dgatling.core.runDescription=My-custom-description-here
-Dgatling.core.outputDirectoryBaseName=MyReportDirectory
Neither of these had any effect on my maven:test. How can I change the description of the test, and also how can I set the output folder to be used for the run results?
Is there someplace in the documentation that you can point me towards?
FYI This works (on Windows with IntelliJ) to set which simulation to run:
mvn gatling:test "-Dgatling.simulationClass=myproject.mypackage.MySpecificSimulationClass"