public static interface BooleanSetFieldTest {
public void meth(FieldTestClass arg0,boolean arg1) ;
}
public void test0() throws Exception {
Statement st = new ExprStatement(new SetValueExpr(new FieldVarExpr(ARG0,"boolean_field",null),ARG1,null),null) ;
BooleanSetFieldTest obj = makeObject(BooleanSetFieldTest.class,st,new ReturnStatement(null)) ;
FieldTestClass o2 = new FieldTestClass() ;
obj.meth(o2, true) ;
assertEquals(o2.boolean_field,true) ;
obj.meth(o2, false) ;
assertEquals(o2.boolean_field,false) ;