Package org.apache.webbeans.newtests.injection.injectionpoint.beans

Examples of org.apache.webbeans.newtests.injection.injectionpoint.beans.MethodInjectionPointOwner


                       MethodInjectionPointOwner.class, ProducerInjectionPointInstanceOwner.class);

        InjectionPointOwnerInstance producedInstanceOwner = getInstance(InjectionPointOwnerInstance.class);
        assertThat(producedInstanceOwner, notNullValue());

        MethodInjectionPointOwner ipOwner = producedInstanceOwner.getIpOwnerInstance().select(new DefaultLiteral()).get();
        assertThat(ipOwner, notNullValue());

        InjectionPoint ip = ipOwner.getInjectionPoint();
        assertNotNull(ip);
        assertNotNull(ip.getAnnotated());
        assertThat(ip.getAnnotated(), instanceOf(AnnotatedField.class));

View Full Code Here

TOP

Related Classes of org.apache.webbeans.newtests.injection.injectionpoint.beans.MethodInjectionPointOwner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.