Package org.apache.whirr.service

Examples of org.apache.whirr.service.ServiceFactory


  }
 
  @Test
  public void testMaxPercentFailure() throws Exception {
   
    ServiceFactory factory = mock(ServiceFactory.class);
    Service service = mock(Service.class);
    Cluster cluster = mock(Cluster.class);
    when(factory.create((String) any())).thenReturn(service);
    when(service.launchCluster((ClusterSpec) any())).thenReturn(cluster);
   
    LaunchClusterCommand command = new LaunchClusterCommand(factory);
    Map<String, File> keys = KeyPair.generateTemporaryFiles();
   
View Full Code Here


      .accepts("instance-id", "Cluster instance ID")
      .withRequiredArg()
      .ofType(String.class);

  public DestroyInstanceCommand() throws IOException {
    this(new ServiceFactory());
  }
View Full Code Here

TOP

Related Classes of org.apache.whirr.service.ServiceFactory

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.