我的代码类似
class HelloWorldSpec extends Specification {
"This is a specification for the 'Hello world' string".txt
"The 'Hello world' string should" >> {
"contain 11 characters" >> {
"Hello world" must haveSize(11)
}
当我运行此测试时,我在控制台中输出结果,我想将结果放在单独的文件(其他文件)中而不是在控制台中我做什么?