Package org.apache.webbeans.test.component.specializes

Examples of org.apache.webbeans.test.component.specializes.MockSpecializesService


        Bean<AsynhrounousSpecalizesService> bean2 = defineSimpleWebBean(AsynhrounousSpecalizesService.class);
        Bean<SpecializesServiceInjectorComponent> bean3 = defineSimpleWebBean(SpecializesServiceInjectorComponent.class);
       
        WebBeansUtil.configureSpecializations(MockSpecializesService.class);
       
        MockSpecializesService instanceMock =getManager().getInstance(bean1);
        AsynhrounousSpecalizesService instanceOther = getManager().getInstance(bean2);
       
        Assert.assertNotNull(instanceMock);
        Assert.assertNotNull(instanceOther);
       
View Full Code Here


        Bean<AsynhrounousSpecalizesService> bean2 = defineSimpleWebBean(AsynhrounousSpecalizesService.class);
        Bean<SpecializesServiceInjectorComponent> bean3 = defineSimpleWebBean(SpecializesServiceInjectorComponent.class);
       
        WebBeansUtil.configureSpecializations(MockSpecializesService.class);
       
        MockSpecializesService instanceMock =getManager().getInstance(bean1);
        AsynhrounousSpecalizesService instanceOther = getManager().getInstance(bean2);
       
        Assert.assertNotNull(instanceMock);
        Assert.assertNotNull(instanceOther);
       
View Full Code Here

TOP

Related Classes of org.apache.webbeans.test.component.specializes.MockSpecializesService

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.