码迷,mamicode.com
首页 > 其他好文 > 详细

TestNG+Maven+IDEA环境搭建

时间:2017-09-25 16:10:01      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:ignore   rmi   size   lint   print   编写   lib   fill   epo   

TestNG+Maven+IDEA环境搭建

TestNG+Maven+IDEA环境搭建

前言:

主要进行TestNG测试环境的搭建 
所需环境: 
1、IDEA UItimate 
2、JDK 
3、Maven

一、创建工程 
File –>new –>Project–>next–>finish

技术分享

技术分享

上面两项名称自己定义

最后工程目录 
技术分享

二、导入相关依赖包和插件

1)添加testng依赖包 
在pom.xml文件添加

 <dependencies>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8</version>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>RELEASE</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <compilerArgs>
                        <arg>-Xlint:unchecked</arg>
                        <arg>-Xlint:deprecation </arg>
                        <!--<arg>endorseddirs=${endorsed.dir}</arg>-->
                    </compilerArgs>
                </configuration>
            </plugin>
<!--
            添加插件 关联testNg.xml
-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore>
                    <suiteXmlFiles>
                        <file>res/testNG.xml</file>
                    </suiteXmlFiles>
                    <!--<workingDirectory>target/</workingDirectory>-->
                </configuration>
            </plugin>
        </plugins>
    </build>

三、创建测试类 
在新建测试类,代码如下

public class TestDemo  
  @Test
    public void testcase1(){
        Assert.assertTrue(false);
        System.out.println("testcase1");
    }
    @Test
    public void testcase2(){
        Assert.assertTrue(true);
        System.out.println("testcase1");
    }
}

 

IDEA执行编译

技术分享

编译情况

技术分享

四、编写testNG.xml

创建一个新的文件夹 res,里面创建testNG.xml (该文件名自己可以定义,相应需要在pom.xml的文件修改对应文件名) 
编写testNG.xml

<?xml version="1.0" encoding="utf-8" ?>
<suite name="testproj" parallel="false">
    <test name="testDemo1">
        <!--<packages>-->
            <!--<package name="com.testproj.Demo"/>-->
        <!--</packages>-->
        <classes>
            <class name="com.testproj.Demo.TestDemo1"></class>
        </classes>
    </test>
</suite>

 

 


 

差不多搞定了,我们来看下使用maven执行测试

在IDEA控制台Terminal输入

mvn -f pom.xml clean test  -DxmlFileName=testNG.xml

编译结果

技术分享

测试报告

target/surefire-reports/com.testproj.Demo.TestDemo1文件夹下打开报告 
技术分享

到此创建TestNG+Maven+IDEA环境完成。

TestNG+Maven+IDEA环境搭建

标签:ignore   rmi   size   lint   print   编写   lib   fill   epo   

原文地址:http://www.cnblogs.com/zfzf1/p/7592046.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!