我知道我可以在从 Eclipse 执行时为单个 junit 测试类配置堆大小。
任何想法如何配置堆大小以适用于所有具有单次配置的 JUNIT 测试类。
mvn clean test
使用可增加内存的已配置插件运行所有测试:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>pertest</forkMode>
<argLine>-Xms512m -Xmx512m</argLine>
<testFailureIgnore>false</testFailureIgnore>
<skip>false</skip>
</configuration>
</plugin>
这个目标可以在 Eclipse 中运行。