@Test
public void validateDtoInstantiation() {
PodamFactory podamFactory = new PodamFactoryImpl();
ConcreteBusinessObject pojo = podamFactory
.manufacturePojo(ConcreteBusinessObject.class);
Assert.assertNotNull("The created POJO cannot be null!", pojo);
}