public class ArrayUnitTest {
@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);