use of uk.co.jemos.podam.test.dto.pdm43.ConcreteBusinessObject in project podam by devopsfolks.
the class Pdm43UnitTest method validateDtoInstantiation.
@Test
public void validateDtoInstantiation() {
PodamFactory podamFactory = new PodamFactoryImpl();
ConcreteBusinessObject pojo = podamFactory.manufacturePojo(ConcreteBusinessObject.class);
Assert.assertNotNull("The created POJO cannot be null!", pojo);
}
Aggregations