}
public void testListTypeFieldsClassNotNullable() throws Exception {
testListTypeFieldsClassNotNullable(null);
try {
testListTypeFieldsClassNotNullable(new ListTypeFieldsClassNotNullable());
Assert.fail();
} catch (Throwable t) {
Assert.assertTrue(t instanceof MessageTypeException);
}
ListTypeFieldsClassNotNullable v = new ListTypeFieldsClassNotNullable();
v.f0 = new ArrayList<Integer>();
v.f1 = new ArrayList<Integer>();
v.f1.add(1);
v.f1.add(2);
v.f1.add(3);