Package org.camunda.bpm.engine.rest.history.jersey

Source Code of org.camunda.bpm.engine.rest.history.jersey.HistoricCaseActivityInstanceRestServiceInteractionTest

package org.camunda.bpm.engine.rest.history.jersey;

import org.camunda.bpm.engine.rest.history.AbstractHistoricCaseActivityInstanceRestServiceInteractionTest;
import org.camunda.bpm.engine.rest.util.EmbeddedServerBootstrap;
import org.camunda.bpm.engine.rest.util.JerseyServerBootstrap;
import org.junit.AfterClass;
import org.junit.BeforeClass;

public class HistoricCaseActivityInstanceRestServiceInteractionTest extends AbstractHistoricCaseActivityInstanceRestServiceInteractionTest {

  protected static EmbeddedServerBootstrap serverBootstrap;

  @BeforeClass
  public static void setUpEmbeddedRuntime() {
    serverBootstrap = new JerseyServerBootstrap();
    serverBootstrap.start();
  }

  @AfterClass
  public static void tearDownEmbeddedRuntime() {
    serverBootstrap.stop();
  }
}
TOP

Related Classes of org.camunda.bpm.engine.rest.history.jersey.HistoricCaseActivityInstanceRestServiceInteractionTest

TOP
Copyright © 2018 www.massapi.com. 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.