AssertAllInliner: push method result value (Fixes EA-129810 - ESE: Stack.pop)

This commit is contained in:
Tagir Valeev
2018-11-13 14:48:44 +07:00
parent 56001e9d52
commit e21a5beb65
2 changed files with 6 additions and 1 deletions
@@ -54,7 +54,8 @@ public class AssertAllInliner implements CallInliner {
builder.push(result)
.ifConditionIs(true)
.doThrow(throwable)
.end();
.end()
.pushUnknown(); // void method result
return true;
}
}
@@ -58,4 +58,8 @@ public class AssertAll {
}
);
}
void testEmpty() {
Assertions.assertAll();
}
}