Skip to content

0.56

Compare
Choose a tag to compare
@rabelenda rabelenda released this 11 May 13:05
· 397 commits to master since this release

This release allows adding listeners like dashboardVisualizer, htmlReporter, etc, to existing test plans, like the ones loaded from a JMX, though the new children method!

Here is an example:

import static us.abstracta.jmeter.javadsl.JmeterDsl.*;

import org.junit.jupiter.api.Test;
import us.abstracta.jmeter.javadsl.core.DslTestPlan;

public class TestPerformance {

  @Test
  public void test() throws Exception {
    DslTestPlan.fromJmx("test.jmx")
            .children(htmlReporter("report"))
                .run();
  }

}

Thanks to @BharadwajSamavedam for asking about this.