Surefire生成单元测试通过率报告

首先,pom文件引入surefire插件

 
    org.apache.maven.plugins
	maven-surefire-plugin
	
		true
		
		    **/*Test.java
		
	
	2.10

然后,引入report插件

	
		
			
				org.apache.maven.plugins
				maven-surefire-report-plugin
				2.7
				
					true
				
			
		
	

执行命令mvn surefire-report:report。然后可以在单元测试所在的模块的target里site文件夹里查看单元测试报告html文件

你可能感兴趣的:(Surefire生成单元测试通过率报告)