public static interface ShortSetFieldTest {
public void meth(FieldTestClass arg0,short arg1) ;
}
public void test2() throws Exception {
Statement st = new ExprStatement(new SetValueExpr(new FieldVarExpr(ARG0,"short_field",null),ARG1,null),null) ;
ShortSetFieldTest obj = makeObject(ShortSetFieldTest.class,st,new ReturnStatement(null)) ;
FieldTestClass o2 = new FieldTestClass() ;
obj.meth(o2, (short)45) ;
assertEquals(o2.short_field,(short)45) ;
}