Skip to content

Instantly share code, notes, and snippets.

@mariorez
Created December 11, 2019 15:59
Show Gist options
  • Save mariorez/f2a713801438739a54eaf611f3717dce to your computer and use it in GitHub Desktop.
Save mariorez/f2a713801438739a54eaf611f3717dce to your computer and use it in GitHub Desktop.
def 'Maximum of two numbers'() {
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