public void testReferenceTypeFieldsClassNotNullable(ReferenceTypeFieldsClassNotNullable v) throws Exception {
}
public void testListTypeFieldsClass() throws Exception {
testListTypeFieldsClass(null);
testListTypeFieldsClass(new ListTypeFieldsClass());
ListTypeFieldsClass v = new ListTypeFieldsClass();
v.f0 = new ArrayList<Integer>();
v.f1 = new ArrayList<Integer>();
v.f1.add(1);
v.f1.add(2);
v.f1.add(3);