您的位置:软件测试 > 开源软件测试 > 开源单元测试工具 > TestNG
使用ReportNG替换TestNG的默认报告
作者:网络转载 发布时间:[ 2016/1/7 14:10:00 ] 推荐标签:单元测试工具 软件测试

  关于reportng的官网介绍:http://reportng.uncommons.org/
  1.下载reportNG的jar包:http://pan.baidu.com/s/1hq5znLU
  2.reprotNG的源码:https://github.com/dwdyer/reportng
  3.在项目中导入reportNG的jar包
  4.更改eclipse设置
  5.设置完成后,运行项目,在项目test-output/html/index.html即可查看report
  6.设置reportng的编码

  更改源文件的AbstractReporter.java,并替换相应jar包的class
protected void generateFile(File file,
String templateName,
VelocityContext context) throws Exception
{
//Writer writer = new BufferedWriter(new FileWriter(file));
//encoding to utf-8
OutputStream out=new FileOutputStream(file);
Writer writer=new BufferedWriter(new OutputStreamWriter(out,"utf-8"));
try
{
Velocity.mergeTemplate(classpathPrefix + templateName,
ENCODING,
context,
writer);
writer.flush();
}
finally
{
writer.close();
}
}
  7.更改报告的方法排列顺序,按照方法的执行先后顺序来进行排序的
  更改TestResultComparator.java,并替换相应jar包的class
public int compare(ITestResult result1, ITestResult result2)
{
//return result1.getName().compareTo(result2.getName());
int longresult2 = 0;
if(result1.getStartMillis()<result2.getStartMillis()) {
longresult2 = -1;
}else {
longresult2 = 1;
}
return longresult2;
}

上一页12下一页
软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd