我在gradle中使用TestNG + ReportNG每个wiki instructions(我修复了cookbook,因为默认示例不适用于我)。
我想以某种方式捕获TestNG中的控制台输出。这可能吗?
谢谢 米莎
答案 0 :(得分:3)
好的我仍然不知道如何正式执行此操作,但我只是重定向标准输出和错误:
/**
* Redirect standard output and error to appropriate files
*/
public void redirectStandardOutputAndErrorToFiles(className) {
def outFile=new File(System.getProperty("java.io.tmpdir")+File.separator+className+".out.log")
if (outFile.exists()) {
outFile.delete()
}
def errFile=new File(System.getProperty("java.io.tmpdir")+File.separator+className+".err.log")
if (errFile.exists()) {
errFile.delete()
}
def out=new PrintStream(new FileOutputStream(outFile))
def err=new PrintStream(new FileOutputStream(errFile))
System.setOut(out)
System.setErr(err)
}