1

如果我有一个挂起的测试,我似乎没有得到任何结果。

有什么办法可以实时查看输出吗?

谢谢米莎

4

2 回答 2

1

好的,我仍然不知道如何正式执行此操作,但我只是重定向了标准输出和错误:

/**
 * 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)
}
于 2010-06-13T00:02:39.983 回答
0

您可以将以下指令添加到测试任务中,以告诉它输出标准流:

build.gradle:

test {
    testLogging.showStandardStreams = true
}
于 2015-01-18T12:41:06.683 回答