@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
@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 | |
} |