Skip to content

Instantly share code, notes, and snippets.

@mario-rezende-ifood
Last active November 23, 2019 14:11
Show Gist options
  • Save mario-rezende-ifood/529678f97c06628599900911e2f84b42 to your computer and use it in GitHub Desktop.
Save mario-rezende-ifood/529678f97c06628599900911e2f84b42 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