Skip to content

Instantly share code, notes, and snippets.

@mariorez
Created December 11, 2019 16:02
Show Gist options
  • Save mariorez/8432da3b3d66b7a7a699112bc2ece857 to your computer and use it in GitHub Desktop.
Save mariorez/8432da3b3d66b7a7a699112bc2ece857 to your computer and use it in GitHub Desktop.
@Unroll
def 'Maximum of #a and #b is #c'() {
expect:
Math.max(a, b) == c
where:
a | b | c
1 | 3 | 3
7 | 4 | 4
0 | 0 | 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment