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

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


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

        Resource res = mock(Resource.class);

        ArrayOSGiModel model = factory.getAdapter(res, ArrayOSGiModel.class);
        assertNotNull(model);
        assertNotNull(model.getServices());
        assertEquals(2, model.getServices().length);
        assertEquals(service1, model.getServices()[0]);
        assertEquals(service2, model.getServices()[1]);

        verifyNoMoreInteractions(res);
    }
View Full Code Here

TOP

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

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.