39404142434445464748
* */ public class PublicFieldMappingTestCase { private Author createAuthor(Class<? extends Author> type) throws InstantiationException, IllegalAccessException { Author author = type.newInstance(); author.setName("Khalil Gebran"); return author; }