Junit4和TestNG在Maven的一个项目中

时间:2009-08-06 10:06:26

标签: java maven-2 junit4 testng

要将它们一起运行,可用的选项很少,但我选择为Junit和TestNG使用不同的配置文件。但现在问题在于排除和包括测试用例。

因为如果我们在maven中将testNG依赖项添加到主项目,它将跳过所有Junit,我已经决定将它放在单独的配置文件中。所以我在默认(主要)配置文件中排除TestNG测试,使用pom.xml中的以下条目进行编译:

<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>

任何人都知道为什么不包括它们并再次编译?

3 个答案:

答案 0 :(得分: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类型不会被编译,因此不会运行。

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

    <testExcludes>
      <testExclude>dummy</testExclude>
    </testExcludes>

答案 1 :(得分: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>

有关此内容的更多信息:Mixing TestNG and JUnit tests in one Maven module – 2013 edition

答案 2 :(得分:0)

我在Surefire和Failsafe都没有在线找到任何组合解决方案。下面的POM文件更改为我工作。

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

这两种解决方案都是我在网上发现的黑客攻击。我认为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>