You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run the test
Then Spock-reports ; HelloSpockSpec.HelloSpockSpec.html, is generated
And how to generate the feature file: HelloSpockSpec.feature such as
Feature: HelloSpockSpec
Scenario: length of Spock's and his friends' names
Given I have these data
| Spock | 5 |
| Kirk | 4 |
| Scotty | 6 |
Then name.side() == length
Thanks
The text was updated successfully, but these errors were encountered:
Spock reports can only generate a summary file containing all specifications in the project, and a separate file for each Specification.
The easiest way to generate files for each feature would be to implement that via report templates, as templates are Groovy code which allows you to implement anything in a real programming language.
Given I have this tests
`import spock.lang.Specification
class HelloSpockSpec extends Specification {
def "length of Spock's and his friends' names"() {
expect:
name.size() == length
}
} `
When I run the test
Then Spock-reports ; HelloSpockSpec.HelloSpockSpec.html, is generated
And how to generate the feature file: HelloSpockSpec.feature such as
Feature: HelloSpockSpec
Scenario: length of Spock's and his friends' names
Given I have these data
| Spock | 5 |
| Kirk | 4 |
| Scotty | 6 |
Then name.side() == length
Thanks
The text was updated successfully, but these errors were encountered: