import spock.lang.* // Hit 'Run Script' below class MyFirstSpec extends Specification { def "let's try this!"() { expect: Math.max(1, a + b) == c where: a | b || c 4 | 5 || 4 6 | 9 || 8 } }