要一起运行它们,可用的选项很少,但我选择为 Junit 和 TestNG 使用不同的配置文件。但是现在的问题是排除和包含测试用例。
因为如果我们将 testNG 依赖添加到 maven 中的主项目,它将跳过所有 Junit,我决定将它放在单独的配置文件中。因此,我使用 pom.xml 中的以下条目将默认(主)配置文件中的 TestNG 测试排除在编译之外:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<testExcludes>
<testExclude>**/tests/**.*</testExclude>
<testExclude>**/tests/utils/**.*</testExclude>
</testExcludes>
</configuration>
</plugin>
和surefire插件一样。所以它适用于主配置文件并且只执行 Junit4 测试。但是当我使用 testNG 配置文件时,即使它不会编译它们,它也不会执行 testNG 测试。我正在使用以下配置文件来执行它们。
<profile>
<id>testNG</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<testIncludes>
<testInclude>**/tests/**.java</testInclude>
<testInclude>**/tests/utils/**.*</testInclude>
</testIncludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>false</skip>
<includes>
<include>**/**.class</include>
<include>**/tests/utils/**.class</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.8</version>
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>
</dependencies>
</profile>
有人知道为什么不包括它们并再次编译吗?