blob: 8abfe8d454925b3ad5e76d4d7bbb03b6d3489c03 [file] [log] [blame]
package org.junit.vintage.engine.samples.spock
import spock.lang.Specification
import spock.lang.Unroll
class SpockTestCaseWithUnrolledAndRegularFeatureMethods extends Specification {
@Unroll
def "unrolled feature for #input"() {
expect:
input == 42
where:
input << [23, 42]
}
def "regular"() {
expect:
true
}
}