public void testInterface() throws Exception {
}
public void testEnumTypeFieldsClass() throws Exception {
testEnumTypeFieldsClass(null);
testEnumTypeFieldsClass(new EnumTypeFieldsClass());
EnumTypeFieldsClass v = new EnumTypeFieldsClass();
v.f0 = 0;
v.f1 = EnumTypeFieldsClass.SampleEnum.ONE;
testEnumTypeFieldsClass(v);
}