在不重建整个项目的情况下进行负载测试
Load tests without rebuilding the whole project
我想 运行 我的 gatling 测试而不必重建整个项目。
在我的 maven-gatling-plugin 配置中,我有以下内容
<executions>
<execution>
<id>load-testing</id>
<phase>integration-test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<simulationClass>maven.integration.MySimu</simulationClass>
</configuration>
</execution>
</executions>
有没有我可以使用的不构建项目的阶段?
我的解决方案是将我所有的模拟放在一个独立的项目中(而不是将它们放在我想测试的项目中)
然后我可以用mvn gatling:execute
执行模拟
我想 运行 我的 gatling 测试而不必重建整个项目。
在我的 maven-gatling-plugin 配置中,我有以下内容
<executions>
<execution>
<id>load-testing</id>
<phase>integration-test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<simulationClass>maven.integration.MySimu</simulationClass>
</configuration>
</execution>
</executions>
有没有我可以使用的不构建项目的阶段?
我的解决方案是将我所有的模拟放在一个独立的项目中(而不是将它们放在我想测试的项目中)
然后我可以用mvn gatling:execute