maven+testng+eclipse
生活随笔
收集整理的這篇文章主要介紹了
maven+testng+eclipse
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1.安裝maven
2.安裝testng
3.配置maven的dependency,和build
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>testnggroup</groupId><artifactId>testngartifact</artifactId><version>0.0.1-SNAPSHOT</version><packaging>jar</packaging><name>testngartifact</name><url>http://maven.apache.org</url><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding></properties><dependencies><!-- https://mvnrepository.com/artifact/org.testng/testng --><dependency><groupId>org.testng</groupId><artifactId>testng</artifactId><version>6.14.3</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> </project>
4.創建res文件夾,創建testNG.xml
<?xml version="1.0" encoding="utf-8" ?> <suite name="testproj" parallel="false"><test name="testDemo1"><classes><class name="SimpleTest.java"></class></classes></test> </suite>
5.在eclipse中打開命令行,輸入:mvn -f pom.xml clean test -DxmlFileName=testNG.xml
?
轉載于:https://www.cnblogs.com/zhizhiyin/p/9002262.html
總結
以上是生活随笔為你收集整理的maven+testng+eclipse的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: F盘无法访问设备硬件出现致命错误,导致请
- 下一篇: 洛谷 P4551 最长异或路径