. , - , . , , , . , http://spockframework.imtqy.com/spock/docs/1.0/spock_primer.html. . :

, , . , , , . , , . :
[...] , .
. .
def "test"() {
when:
println("test")
expect:
1==1
}
, .
: /Users/wooki/IdeaProjects/mylibrary/src/test/ groovy/ExampleTest.groovy: 13: "" ; : [, ] @ 13, 9.
. , , .
def "do something else"() {
when:
then:
and:
where:
}
, , - , . , , - , , , Spock.
def "do something else"() {
when:
// stimulus
then: "1 is always 1"
1 == 1
and: "2 is always 2"
2 == 2
}
, , ( , ), .
, . . , , , . , .
- :
def "test"() {
given:
def value
when:
value = 1
then:
value == 1
when:
value = 2
then:
value == 2
}
, , " ". , , , , , -, , .
, .