}
public void testInheritanceClassNotNullable() throws Exception {
testInheritanceClassNotNullable(null);
try {
testInheritanceClassNotNullable(new InheritanceClassNotNullable());
Assert.fail();
} catch (Throwable t) {
Assert.assertTrue(t instanceof MessageTypeException);
}
InheritanceClassNotNullable v = new InheritanceClassNotNullable();
v.f0 = "muga";
v.f1 = "furuhashi";
v.f2 = 10;
testInheritanceClassNotNullable(v);
}