JS backend: new tests for use break, continue and return in &&, ||, ?:

This commit is contained in:
Michael Nedzelsky
2014-08-16 14:25:48 +04:00
parent d969e58b88
commit 76757b14e2
4 changed files with 189 additions and 0 deletions
@@ -100,4 +100,16 @@ public class EvaluationOrderTest extends AbstractExpressionTest {
public void testWhenWithComplexConditions() throws Exception {
checkFooBoxIsOk();
}
public void testElvisWithBreakContinueReturn() throws Exception {
checkFooBoxIsOk();
}
public void testAndAndWithBreakContinueReturn() throws Exception {
checkFooBoxIsOk();
}
public void testOrOrWithBreakContinueReturn() throws Exception {
checkFooBoxIsOk();
}
}