15

I have a very simple test as blow:

def "setContent_activity_finished"(Status editStatus) {
    // Variables.........................

    given:
    activity.getStatus() >> editStatus.toString()

    when:
    handler.setContent(activityId,jsonString)

    then:
    0*view.appendPossible(_)

    where:
    editStatus       |_
    FINISHED         |_
    CANCELED         |_
}

According to the document http://spock-framework.readthedocs.org/en/latest/data_driven_testing.html Data tables must have at least two columns. A single-column table can be written as:

where:
a | _
1 | _
7 | _
0 | _

And I follow this rule,but got an error look like picture shown:

Groovy:Date variable '_' needs to be declared as method parameter

enter image description here

so,please tell me What the problem is here?

Alex Luya
  • 9,412
  • 15
  • 59
  • 91

2 Answers2

18

Another way to achieve single column is to use data pipes http://spockframework.org/spock/docs/1.0/data_driven_testing.html

where:
editStatus << [FINISHED, CANCELED]
Yan Khonski
  • 12,225
  • 15
  • 76
  • 114
5

The parameter list has to be either () or (Status editStatus, _). (You can't declare just one data variable but not the other.) There is an open pull request to allow (Status editStatus) in this particular case.

Peter Niederwieser
  • 121,412
  • 21
  • 324
  • 259