如果我有一个挂起的测试,我似乎没有得到任何结果。
有什么办法可以实时查看输出吗?
谢谢米莎
好的,我仍然不知道如何正式执行此操作,但我只是重定向了标准输出和错误:
/**
* 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)
}
您可以将以下指令添加到测试任务中,以告诉它输出标准流:
build.gradle:
test {
testLogging.showStandardStreams = true
}