I have code something like this
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)
}
While I run this test I prints result in console, I want results in separate file(other file) not in console what I do?