Spock example ```class Math extends Specification ...
# kotest
i
Spock example
Copy code
class Math extends Specification {
    def "maximum of two numbers"() {
        given: "a and b"

        when:
        def result = Math.max(a, b) 

        then: "result is c"
        result == c

        where:
        a | b || c
        1 | 3 || 3
        7 | 4 || 4
        0 | 0 || 0
    }
}