4

要一起运行它们,可用的选项很少,但我选择为 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>

有人知道为什么不包括它们并再次编译吗?

4

3 回答 3

4

编译器插件的配置不包括 TestNG 类型。配置文件中的配置与默认配置合并,因此您的有效编译器配置为:

<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>
    <testExcludes>
      <testExclude>**/tests/**.*</testExclude>
      <testExclude>**/tests/utils/**.*</testExclude>
    </testExcludes>
  </configuration>
</plugin>

这意味着您的 TestNG 类型永远不会被编译,因此不会运行。

如果您在 testNG 配置文件中指定 <excludes> 部分,它将覆盖默认排除项,并且您的 TestNG 类型将被编译并运行。我不记得它是否适用于空的排除标记(即 <excludes/>),您可能必须指定类似的内容以确保覆盖默认配置。

    <testExcludes>
      <testExclude>dummy</testExclude>
    </testExcludes>
于 2009-08-06T12:44:21.843 回答
0

最简单的解决方案是这样的

<plugin>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>${surefire.version}</version>
    <dependencies>
        <dependency>
            <groupId>org.apache.maven.surefire</groupId>
            <artifactId>surefire-junit47</artifactId>
            <version>${surefire.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.maven.surefire</groupId>
            <artifactId>surefire-testng</artifactId>
            <version>${surefire.version}</version>
        </dependency>
    </dependencies>
</plugin>

有关此的更多信息:在一个 Maven 模块中混合 TestNG 和 JUnit 测试 – 2013 版

于 2013-11-12T12:02:05.433 回答
0

我没有在网上找到任何适用于 Surefire 和 Failsafe 的组合解决方案。下面的 POM 文件更改对我有用。

  • Surefire 技巧是通过为 JUnit 和 TestNG 显式指定子插件来完成的。
  • Failsafe 技巧是通过定义两个执行来完成的,每个执行都有一个空配置,一个用于 JUnit,另一个用于 TestNG。

这两种解决方案都是我在网上找到的 hack。我认为 Surefire 技巧的链接在这个问题的另一个答案中。

<plugins>
<plugin>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>${surefire.version}</version>
    <dependencies>
        <dependency>
            <groupId>org.apache.maven.surefire</groupId>
            <artifactId>surefire-junit47</artifactId>
            <version>${surefire.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.maven.surefire</groupId>
            <artifactId>surefire-testng</artifactId>
            <version>${surefire.version}</version>
        </dependency>
    </dependencies>
</plugin>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-failsafe-plugin</artifactId>
    <version>${failsafe.version}</version>
    <executions>
        <execution>
            <id>test-testng</id>
            <goals>
                <goal>integration-test</goal>
                <goal>verify</goal>
            </goals>
            <configuration>
                <testNGArtifactName>none:none</testNGArtifactName>
            </configuration>
        </execution>
        <execution>
            <id>test-junit</id>
            <goals>
                <goal>integration-test</goal>
                <goal>verify</goal>
            </goals>
            <configuration>
                <junitArtifactName>none:none</junitArtifactName>
            </configuration>
        </execution>
    </executions>
</plugin>           
<!-- ... -->
</plugins>
于 2015-08-06T17:29:18.540 回答