Package org.apache.cxf.dosgi.discovery.local.internal

Examples of org.apache.cxf.dosgi.discovery.local.internal.Activator


                return FrameworkUtil.createFilter((String) EasyMock.getCurrentArguments()[0]);
            }
        }).anyTimes();
        EasyMock.replay(bc);
       
        Activator a = new Activator();
        a.start(bc);
        assertNotNull(a.localDiscovery);
       
        a.localDiscovery = EasyMock.createMock(LocalDiscovery.class);
        a.localDiscovery.shutDown();
        EasyMock.expectLastCall();
        EasyMock.replay(a.localDiscovery);
        a.stop(bc);
       
        EasyMock.verify(a.localDiscovery);
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.dosgi.discovery.local.internal.Activator

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.