如何使用maven-surefire-plugin在同一个项目中执行JUnit和TestNG测试?

时间:2009-08-05 12:11:13

标签: unit-testing maven-2 testng junit4 maven-surefire-plugin

现在我有两种类型的测试但是当我说“mvn test”时它只执行TestNG测试而不是Junit。我想一个接一个地执行。有什么想法吗?

12 个答案:

答案 0 :(得分:40)

使用selecting providers的正式方式。

  

您还可以指定多个提供程序作为依赖项,它们都将运行并生成一个公共报告。这对于外部提供商来说尤其方便,因为用于组合所包含的提供商的用例很少。

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

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

maven-surefire-plugin examples中的当前链接。 搜索&#34; 运行TestNG和JUnit测试&#34;。

您需要将testng提供程序配置为忽略junit测试,如下所示:

<plugin>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.18.1</version>
    <configuration>        
    <properties>
        <property>
            <name>junit</name>
            <value>false</value>
         </property>
    </properties>        
    </configuration>
    [...providers as dependecies, see above...]
</plugin>

答案 1 :(得分:12)

我有better solution

这个想法是创建两个maven-surefire-plugin的执行,一个用于JUnit,一个用于TestNG。您可以通过指定不存在的junitArtifactNametestNGArtifactName来禁用每次执行一个TestNG或JUnit:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <executions>
        <execution>
            <phase>test</phase>
            <goals>
                <goal>test</goal>
            </goals>
            <configuration> 
                <testNGArtifactName>none:none</testNGArtifactName>
            </configuration>
        </execution>
        <execution>
            <id>test-testng</id>
            <phase>test</phase>
            <goals>
                <goal>test</goal>
            </goals>
            <configuration> 
                <junitArtifactName>none:none</junitArtifactName>
            </configuration>
        </execution>
    </executions>
</plugin>

答案 2 :(得分:11)

有一个open issue for thi,所以没有优雅的方法来做到这一点。

选择一个框架并坚持使用它会简单得多。

编辑:我之前的答案不起作用,因为您无法在执行中指定依赖项。 我尝试了一些方法,但我能管理的最好的方法是为TestNG依赖创建一个配置文件,这样你就可以在TestNG和JUnit测试之间切换,似乎没有办法同时运行TestNG和Junit 4测试

还有一点需要注意:您可以launch your JUnit tests from TestNG,但我认为这仅适用于JUnit 3测试。

答案 3 :(得分:6)

还有另一种出路。您也可以要求TestNG运行Junit测试用例。 下面是运行所有测试用例的示例testng.xml

<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
 
<suite name="TestAll">
 
	<test name="junitTestCases" junit="true">
		<packages>
			<package name="com.test.*" />
			
		</packages>
	</test>
 
 <test name="testNGTestCases" >
		<packages>
			<package name="com.test.*" />
			
		</packages>
	</test>
</suite>

答案 4 :(得分:5)

感谢这个链接(http://jira.codehaus.org/browse/SUREFIRE-377),这里是我之前问题的解决方案(有3次执行而不是2次)

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.10</version>
    <configuration>
       <testNGArtifactName>none:none</testNGArtifactName>
    </configuration>
    <executions>
       <execution>
          <phase>test</phase>
          <goals>
             <goal>test</goal>
          </goals>
          <configuration>
             <junitArtifactName>none:none</junitArtifactName>
             <testNGArtifactName>org.testng:testng</testNGArtifactName>
          </configuration>
       </execution>
    </executions>
</plugin>

答案 5 :(得分:2)

对于JUnit ---

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-surefire-plugin</artifactId>
   <version>2.19.1</version>
   <dependencies>
  <dependency>
    <groupId>org.apache.maven.surefire</groupId>
    <artifactId>surefire-junit47</artifactId>
    <version>2.19.1</version>
  </dependency>
</dependencies>

同样在需要时使用TestNG的依赖

答案 6 :(得分:1)

我发现解决方案是强制使用sure-fire插件来使用JUnit。我通过覆盖特定项目中的surefire插件来完成此操作,如下所示。依赖强制使用JUnit。

<build>
    <plugins>
        <!-- force sure fire to use junit instead of testng -->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.10</version>
            <dependencies>
                <dependency>
                    <groupId>org.apache.maven.surefire</groupId>
                    <artifactId>surefire-junit47</artifactId>
                    <version>2.10</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

答案 7 :(得分:1)

基于以前的解决方案。我发现这对我们来说效果最好。我们面临的另一个问题是TestNG尝试运行旧的JUnit测试。我们通过不同地命名所有TestNG测试来避免这种情况(例如* TestNG.java)。下面是两次执行surefire-plugin的配置。

    <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.12.4</version>
            <configuration>           
                <testNGArtifactName>none:none</testNGArtifactName>   
                <excludes>
                    <exclude>**/*TestNG.java</exclude>
                </excludes> 
            </configuration>
            <executions>
                <execution>
                    <id>test-testng</id>
                    <phase>test</phase>
                    <goals>
                        <goal>test</goal>
                    </goals>
                    <configuration> 
                        <junitArtifactName>none:none</junitArtifactName>          
                        <testNGArtifactName>org.testng:testng</testNGArtifactName>   
                        <includes>
                            <include>**/*TestNG.java</include>
                        </includes>
                        <excludes>
                            <exclude>**/*Test.java</exclude>
                        </excludes> 
                    </configuration>
                </execution>
            </executions>
        </plugin>

答案 8 :(得分:1)

我找到了一个解决方案,可以在不更改构建工具配置的情况下使用TestNG运行这两种测试类型。

我使用Gradle进行了测试,但也应该与Maven一起使用。

请注意,这将在TestNG中运行JUnit测试,但不会反过来。

诀窍是使用两个框架&#39;测试类中的注释,并使用TestNG断言以实现JUnit兼容性。

import static org.testng.AssertJUnit.*;

import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

@org.testng.annotations.Test
public final class ApplicationTest {

    @org.testng.annotations.BeforeClass
    @BeforeClass
    public static void setup () {}

    @org.testng.annotations.AfterClass
    @AfterClass
    public static void cleanup () {}

    @Test public void json () throws IOException {
        assertTrue (true);
    }
}

使用此hack,您可以轻松地使用TestNG运行现有的JUnit测试,帮助您在时间允许的情况下迁移它们。

希望它有所帮助!

答案 9 :(得分:1)

对于Junit这解决了我的问题

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-surefire-plugin</artifactId>
   <version>2.19.1</version>
   <dependencies>
  <dependency>
    <groupId>org.apache.maven.surefire</groupId>
    <artifactId>surefire-junit47</artifactId>
    <version>2.19.1</version>
  </dependency>
</dependencies>

答案 10 :(得分:0)

如果您只是指定testng提供程序,它将只运行一次junit测试和testng测试。
所以对命名测试没有限制。

插件版本:
surefire-plugin 2.16(junit47和testng提供商的版本都设置为2.16)
testng依赖6.8.7
junit依赖4.7

答案 11 :(得分:0)

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.0</version>
            <configuration>
                <source>${java.version}</source>
                <target>${java.version}</target>
            </configuration>
        </plugin>
        <!-- ********* Skip Test for Success BUILD ******** -->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.10</version>
            <configuration>
                <skip>true</skip>
            </configuration>
        </plugin>
        <!-- *********************************************** -->
    </plugins>
</build>

<profiles>
    <!-- ********** Profiles for run test cases ************ -->
    <!-- Profile for run JUnit test dependent tests -->
    <profile>
        <id>junit-tests</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.10</version>
                    <configuration>
                        <skip>false</skip>
                    </configuration>
                    <dependencies>
                        <dependency>
                            <groupId>org.apache.maven.surefire</groupId>
                            <artifactId>surefire-junit47</artifactId>
                            <version>2.10</version>
                        </dependency>
                    </dependencies>
                </plugin>
            </plugins>
        </build>
    </profile>

    <!-- Profile for run TestNG dependent tests -->
    <profile>
        <id>testNG-tests</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.10</version>
                    <configuration>
                        <skip>false</skip>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>

    <!-- ***************************************************** -->
</profiles>
  

比运行:mvn test -Pjunit-tests(基于junit的运行测试)或mvn test -PtestNG-tests(基于TestNG测试)。