}
public void testMapTypeFieldsClassNotNullable() throws Exception {
testMapTypeFieldsClass(null);
try {
testMapTypeFieldsClassNotNullable(new MapTypeFieldsClassNotNullable());
Assert.fail();
} catch (Throwable t) {
Assert.assertTrue(t instanceof MessageTypeException);
}
MapTypeFieldsClassNotNullable v = new MapTypeFieldsClassNotNullable();
v.f0 = new HashMap<Integer, Integer>();
v.f1 = new HashMap<Integer, Integer>();
v.f1.put(1, 1);
v.f1.put(2, 2);
v.f1.put(3, 3);