public List<String> getImports() {
return Arrays.asList("org.allspice.structuredtobc.test.*") ;
}
public void test0() throws Exception {
BooleanGetFieldTest obj = makeObject(BooleanGetFieldTest.class,
new FieldVarExpr("StaticFieldTestClass","boolean_field",null)) ;
StaticFieldTestClass.boolean_field = true ;
assertEquals(obj.meth(),true) ;
StaticFieldTestClass.boolean_field = false ;
assertEquals(obj.meth(),false) ;
}