}
@Test
public void method_invocation_with_integer_arguments()
{
PropertyConduit conduit = source.create(EchoBean.class, "echoInt(storedInt, 3)");
EchoBean bean = new EchoBean();
for (int i = 0; i < 10; i++)
{
bean.setStoredInt(i);
assertEquals(conduit.get(bean), new Integer(i * 3));
}
}