public void testMap3() {
List<String> userNames = newInstance(ArrayList.class);
userNames.add("username1");
userNames.add("username2");
Individual nestedIndividual = newInstance(Individual.class);
nestedIndividual.setUsername("nestedusername");
String[] secondNames = new String[3];
secondNames[0] = "secondName1";
secondNames[1] = "secondName2";
secondNames[2] = "secondName3";