Package org.camunda.bpm.qa.performance.engine.steps

Examples of org.camunda.bpm.qa.performance.engine.steps.StartProcessInstanceStep


  public void noneStartEventByteVar() {
    HashMap<String, Object> variables = new HashMap<String, Object>();
    variables.put(VARIABLE1, "This string will be saved as a byte array.".getBytes());

    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process", variables))
    .run();
  }
View Full Code Here


    variables.put(VARIABLE8, "This string will be saved as a byte array.".getBytes());
    variables.put(VARIABLE9, "This string will be saved as a byte array.".getBytes());
    variables.put(VARIABLE10, "This string will be saved as a byte array.".getBytes());

    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process", variables))
    .run();
  }
View Full Code Here

    HashMap<String, Object> variables = new HashMap<String, Object>();
    byte[] bytes = new byte[5*1024];
    variables.put(VARIABLE1, bytes);

    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process", variables))
    .run();
  }
View Full Code Here

  @Test
  @Deployment
  public void sync1Subprocess() {
    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process"))
    .run();
  }
View Full Code Here

  @Test
  @Deployment
  public void sync2Subprocesses() {
    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process"))
    .run();
  }
View Full Code Here

  @Test
  @Deployment
  public void sync3Subprocesses() {
    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process"))
    .run();
  }
View Full Code Here

  @Test
  @Deployment
  public void async1Subprocess() {
    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process"))
      .step(new SignalExecutionStep(engine, EXECUTION_ID))
    .run();
  }
View Full Code Here

  @Test
  @Deployment
  public void async2Subprocesses() {
    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process"))
      .step(new SignalExecutionStep(engine, EXECUTION_ID))
    .run();
  }
View Full Code Here

  @Test
  @Deployment
  public void async3Subprocesses() {
    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process"))
      .step(new SignalExecutionStep(engine, EXECUTION_ID))
    .run();
  }
View Full Code Here

  @Test
  @Deployment
  public void singleTask() {
    performanceTest()
      .step(new StartProcessInstanceStep(engine, "process"))
      .step(new CompleteTaskStep(engine, TASK_ID))
    .run();
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.qa.performance.engine.steps.StartProcessInstanceStep

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.