package net.bytebuddy.implementation.bytecode.constant; import net.bytebuddy.implementation.Implementation; import net.bytebuddy.implementation.bytecode.StackManipulation; import net.bytebuddy.test.utility.MockitoRule; import org.junit.After; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TestRule; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.mockito.Mock; import org.objectweb.asm.MethodVisitor; import org.objectweb.asm.Opcodes; import java.util.Arrays; import java.util.Collection; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; import static org.mockito.Mockito.*; @RunWith(Parameterized.class) public class LongConstantOpcodeTest { private final long value; private final int opcode; @Rule public TestRule mockitoRule = new MockitoRule(this); @Mock private MethodVisitor methodVisitor; @Mock private Implementation.Context implementationContext; public LongConstantOpcodeTest(long value, int opcode) { this.value = value; this.opcode = opcode; } @Parameterized.Parameters public static Collection<Object[]> data() { return Arrays.asList(new Object[][]{ {0L, Opcodes.LCONST_0}, {1L, Opcodes.LCONST_1} }); } @After public void tearDown() throws Exception { verifyZeroInteractions(implementationContext); } @Test public void testConstant() throws Exception { StackManipulation.Size size = LongConstant.forValue(value).apply(methodVisitor, implementationContext); assertThat(size.getSizeImpact(), is(2)); assertThat(size.getMaximalSize(), is(2)); verify(methodVisitor).visitInsn(opcode); verifyNoMoreInteractions(methodVisitor); } }