use of java.util.Observable in project podam by devopsfolks.
the class ConstructorsUnitTest method podamShouldBeAbleToManufactureInstancesOfTheObservableClass.
@Test
@Title("Podam should be able to manufacture instances of the Observable class")
public void podamShouldBeAbleToManufactureInstancesOfTheObservableClass() throws Exception {
PodamFactory podamFactory = podamFactorySteps.givenAStandardPodamFactory();
Observable observable = podamInvocationSteps.whenIInvokeTheFactoryForClass(Observable.class, podamFactory);
podamValidationSteps.thePojoMustBeOfTheType(observable, Observable.class);
}
Aggregations