You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
207 B
Groovy
13 lines
207 B
Groovy
11 years ago
|
class HelloSpock extends Specification {
|
||
11 years ago
|
def "length of Spock's and his friends' names"() {
|
||
|
expect:
|
||
|
name.size() == length
|
||
11 years ago
|
|
||
11 years ago
|
where:
|
||
|
name | length
|
||
|
"Spock" | 5
|
||
|
"Kirk" | 4
|
||
|
"Scotty" | 6
|
||
|
}
|
||
|
}
|