我正在尝试使用Gradle中的命令行启动FitNesse测试。
的build.gradle
exec {
ignoreExitValue = true
commandLine = [
'java',
'-cp',
fitnesseClasspath, // fitnesseClasspath set somewhere else
'fitnesseMain.FitNesseMain',
'-c',
"${suite}?suite&format=xml", // suite set somewhere else
]
}
现在我希望将结果写入xml文件(让它称之为output.xml)而不是命令窗口。 我怎样才能做到这一点?
答案 0 :(得分:1)
在这里,你只需要替换参数。
exec {
commandLine = ['ls']
args = [
"./",
]
standardOutput = new FileOutputStream("./hello.txt")
}