@After
  public void tearDown() throws Exception {

    System.out.println(
        "--------------------- TEARDOWN "
            + name.getMethodName()
            + " -------------------------------------");

    if (esSetup != null) {
      esSetup.terminate();
    }
  }
예제 #2
0
 @After
 public void tearDown() {
   searchIndex.stop();
   esSetup.terminate();
 }