Package com.findwise.hydra.StageRunner

Examples of com.findwise.hydra.StageRunner.StageDestroyer


public class StageRunnerTest {

  @Test
  public void testDestroy() throws Exception {
    StageDestroyer sd = new StageDestroyer();
    Process p = Mockito.mock(Process.class);
    sd.add(p);
   
    StageGroup group = new StageGroup("group");
    Stage mockedStage = Mockito.mock(Stage.class);
    group.addStage(mockedStage);
    Mockito.when(mockedStage.getProperties()).thenReturn(new HashMap<String, Object>());
View Full Code Here

TOP

Related Classes of com.findwise.hydra.StageRunner.StageDestroyer

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.