Package org.onebusaway.federations

Examples of org.onebusaway.federations.FederatedServiceCollection


  @Test
  public void testSimple() throws Exception {

    SimpleFederatedService mockService = Mockito.mock(SimpleFederatedService.class);
    FederatedServiceCollection mockCollection = Mockito.mock(FederatedServiceCollectionImpl.class);
    Mockito.when(mockCollection.getServiceForBounds(0.0,1.0,2.0,3.0)).thenReturn(mockService);
   
    Method method = SimpleFederatedService.class.getDeclaredMethod("getValueForBounds", Double.TYPE,Double.TYPE,Double.TYPE,Double.TYPE);
    Object[] args = {0.0,1.0,2.0,3.0};

    FederatedServiceMethodInvocationHandler handler = new FederatedByBoundsMethodInvocationHandlerImpl(0,1,2,3);
View Full Code Here

TOP

Related Classes of org.onebusaway.federations.FederatedServiceCollection

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.