Last active
November 21, 2019 01:30
-
-
Save mario-rezende-ifood/4eaba139ed28d600fb110d77e22483cb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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