@Test
public void testArrayCreation() throws Exception {
PodamFactory podam = new PodamFactoryImpl();
ArrayPojo pojo = podam.manufacturePojo(ArrayPojo.class);
Assert.assertNotNull(pojo);
String[] array = pojo.getMyStringArray();
Assert.assertTrue("The array should not be empty", array.length > 0);
for (String string : array) {
Assert.assertTrue(
"The length of each string in the array should be > 0",
string.length() > 0);