Skip to content

Commit 16b5857

Browse files
committed
Add test for drain stack underflow.
1 parent a8e8098 commit 16b5857

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

byte-buddy-dep/src/test/java/net/bytebuddy/utility/visitor/StackAwareMethodVisitorTest.java

+7
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ public void testDrainOrder() throws Exception {
6363
verifyNoMoreInteractions(this.methodVisitor);
6464
}
6565

66+
@Test
67+
public void testDrainStackWithUnderflow() {
68+
StackAwareMethodVisitor methodVisitor = new StackAwareMethodVisitor(this.methodVisitor, methodDescription);
69+
assertThat(methodVisitor.drainStack(Opcodes.ISTORE, Opcodes.ILOAD, StackSize.SINGLE), is(0));
70+
verifyZeroInteractions(this.methodVisitor);
71+
}
72+
6673
@Test
6774
public void testDrainRetainTopSingle() throws Exception {
6875
when(methodDescription.getStackSize()).thenReturn(42);

0 commit comments

Comments
 (0)