Package org.apache.sling.models.testmodels.classes

Examples of org.apache.sling.models.testmodels.classes.CollectionOSGiModel


        when(bundleContext.getServiceReferences(ServiceInterface.class.getName(), null)).thenReturn(
                new ServiceReference[] { ref1, ref2 });

        Resource res = mock(Resource.class);

        CollectionOSGiModel model = factory.getAdapter(res, CollectionOSGiModel.class);
        assertNotNull(model);
        assertNotNull(model.getServices());
        assertEquals(2, model.getServices().size());

        assertTrue(model.getServices().contains(service1));
        assertTrue(model.getServices().contains(service2));

        verifyNoMoreInteractions(res);
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.models.testmodels.classes.CollectionOSGiModel

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.