如何使用maven-万无一失,插件执行在同一个项目的JUnit和TestNG测试?(How to e

2019-06-28 00:33发布

现在我有两个类型的测试,但是,当我说“MVN测试”,只执行TestNG的测试,而不是Junit的。 我想同时执行一个接一个。 任何的想法 ?

Answer 1:

有一个用于THI悬而未决的问题 S,所以没有优雅的方式来做到这一点。

这将是简单得多为您挑选了一个框架,并坚持下去。

编辑:我以前的答案没有工作,因为你不能指定在执行依赖性。 我已经尝试了一些办法,但我可以管理最好的是创造TestNG的依赖,所以你可以TestNG的和JUnit测试之间切换配置文件,似乎没有要同时运行TestNG的和JUnit 4个测试手段。

另一点要注意:您可以从启动TestNG的JUnit测试 ,但我认为这仅适用于JUnit 3测试。



Answer 2:

与官方的方式选择供应商 。

您也可以指定多个提供商的依赖,它们都将运行并产生一个共同的报告 。 这可能是与外部供应商特别方便,因为有几个用例,用于组合包括供应商。

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

关于这方面更多信息: 混合TestNG的和JUnit测试于一体的Maven模块- 2013年版

当前的链接,这Maven的万无一失,插件的例子 。 搜索“ 运行TestNG的和JUnit测试 ”。

您将要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>


Answer 3:

我有一个更好的解决方案 。

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

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


Answer 4:

还有另外一个出路这一点。 你可以问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> 



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


Answer 6:

针对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的依赖需要时



Answer 7:

我发现,解决办法是迫使神火插件使用JUnit。 我通过在具体项目覆盖保命插件如下这样做。 依赖力量万无一失使用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>


Answer 8:

根据以往的解决方案。 我发现这个工作对我们最好的。 我们正面临着一个更为问题是TestNG的努力来运行老的JUnit测试。 我们通过命名所有TestNG进行不同(如* TestNG.java)避免这一点。 下面是一个万无一失的,插件的两次执行的配置。

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


Answer 9:

我发现了一个解决方案,而无需改变你的构建工具配置下运行这两种类型的测试使用TestNG。

我用摇篮测试,但应与Maven的工作了。

请注意,这将运行JUnit测试里面TestNG的,但不回的其他方式。

诀窍是在测试类使用两个框架注释和使用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);
    }
}

利用这种黑客,你可以很容易地使用TestNG运行现有的JUnit测试,帮助您迁移他们的时候时间允许。

希望能帮助到你!



Answer 10:

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


Answer 11:

如果你只是指定TestNG的供应商,它会同时运行JUnit测试和TestNG测试都只有一次。
所以在命名测试没有限制。

插件版本:
神火-插件2.16(junit47和TestNG提供商都版本设置为2.16)
TestNG的依赖6.8.7
JUnit的依赖性4.7



Answer 12:

<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测试-Pjunit检验(基于JUnit的运行试验)(基于对TestNG的测试)或MVN测试-PtestNG测试。



文章来源: How to execute JUnit and TestNG tests in same project using maven-surefire-plugin?