@Test
public void canInstantiateAndPopulateAListOfWrappers1() throws Exception {
final Type type = ContainsParameterizedList.class.getField("listOfLong").getGenericType();
final Target<List<Long>> target = new Target<>(type, "eyeColorCode");
final List<Long> eyeColorCode = iogi.instantiate(target, new Parameter("eyeColorCode[0]", "3"), new Parameter("eyeColorCode[1]", "5"));
assertThat(eyeColorCode.get(0), is(equalTo(3L)));
assertThat(eyeColorCode.get(1), is(equalTo(5L)));
}