blob: 30efb93745b287e11d901e1bbb7188075a63992a [file] [log] [blame]
class DoWhileLoopTest extends GroovyTestCase {
void testDoWhileWhile() {
/**
We currently do not support do ... while in the JSR syntax
def x = 0
def y = 5
do {
x = x + 1
y = y - 1
}
while ( y > 0 )
assert x == 5
*/
}
}