use of res.I88.A in project dex2jar by pxb1988.
the class I88 method main.
public static void main(String... args) {
A a = I88.class.getAnnotation(A.class);
System.out.println(a.a());
}
use of res.I88.A in project podam by devopsfolks.
the class InheritanceTest method podamShouldManufactureAllPojosInATreeHierarchy.
@Test
@Title("Podam should manufacture all POJOs in a tree hierarchy")
public void podamShouldManufactureAllPojosInATreeHierarchy() throws Exception {
PodamFactory podamFactory = podamFactorySteps.givenAStandardPodamFactory();
A pojo = podamInvocationSteps.whenIInvokeTheFactoryForClass(A.class, podamFactory);
podamValidationSteps.theObjectShouldNotBeNull(pojo);
B b = pojo.getB();
podamValidationSteps.theObjectShouldNotBeNull(b);
podamValidationSteps.theObjectShouldNotBeNull(b.getCustomValue());
}