1
A
回答
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)
}
0
您可以將以下指令添加到測試任務它告訴輸出標準流:
build.gradle:
test {
testLogging.showStandardStreams = true
}
相關問題
- 1. Gradle TestNG結果輸出
- 2. 查看gradle的junit測試結果?
- 3. TestNG的重試失敗的測試不輸出正確的測試結果
- 4. 使TestNG Reporter輸出出現在Gradle HTML測試報告中
- 5. 如何查看VS2010中測試結果窗口中單元測試的輸出結果?
- 6. PLSQL查看sys_refcursor的輸出結果
- 7. 查看測試結果失敗竹4.4.4
- 8. WebDriver + TestNG - 如何處理測試結果
- 9. x單元測試死鎖
- 10. 使用nUnit測試死鎖
- 11. 忽略測試結果的stderr輸出
- 12. TestNg記者信息在肯定的測試結果輸出中重複
- 13. 關閉測試輸出TestNG中
- 14. 比較結果,shell中測試的輸入和輸出
- 15. 噶輸出複製測試結果
- 16. 測試結果輸出重複
- 17. TestNG測試結果在Eclipse結果窗口中未顯示
- 18. MS測試管理器 - 在測試通過時輸出結果
- 19. 存儲/導出Selenium Webdriver測試結果
- 20. 如何更改關於測試結果的Jenkins輸出?
- 21. Selenium:導出測試結果
- 22. gradle這個看輸出model.components.binaries.all
- 23. 從測試中排除一個文件夾與TestNG和Gradle
- 24. 使用Gradle和TestNG跨多個節點進行分區測試
- 25. Django +硒測試掛起 - 死鎖?
- 26. 回看API:測試用例結果?
- 27. Rspec - 查看測試和html_safe
- 28. Jenkins和TestNG結果編碼
- 29. Python中的每個實例的輸入,測試和輸出結果
- 30. 調試PyThread_acquire_lock死鎖