public void testCustomRandomDataProviderStrategy() {
strategy = new CustomRandomDataProviderStrategy();
PodamFactory factory = new PodamFactoryImpl(strategy);
PojoWithMapsAndCollections pojo =
factory.manufacturePojo(PojoWithMapsAndCollections.class);
Assert.assertNotNull("POJO manufacturing failed", pojo);
Assert.assertNotNull("Array is null", pojo.getArray());
Assert.assertEquals(2, pojo.getArray().length);
Assert.assertNotNull("List is null", pojo.getList());