FitNesse / Gradle命令行输出到文件中

时间:2015-04-29 10:10:14

标签: command-line gradle output fitnesse

我正在尝试使用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)而不是命令窗口。 我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

在这里,你只需要替换参数。

exec {
    commandLine = ['ls']
    args = [
        "./",
    ]
    standardOutput = new FileOutputStream("./hello.txt")
}