1

我的 Java 项目中有多个配置文件。它们中的每一个都处理独占的请求集。当我为选定的配置文件构建项目时,我想运行仅与该配置文件相关的测试。有可能与某种 Junit 或 Maven 配置有关吗?

4

1 回答 1

2

您可以使用 maven 配置多个配置文件,并且每个配置文件都有自己的 http://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#includes

您也可以更改http://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#testSourceDirectory或使用http://maven.apache.org/surefire/maven-surefire-plugin/test -mojo.html#groups

于 2013-08-17T09:31:53.703 回答