github abstracta/jmeter-java-dsl v0.5
0.5

latest releases: v1.29, v1.28.1, v1.28...
3 years ago

Now you can specify a duration instead of iterations in a thread group!

E.g.:

import static org.assertj.core.api.Assertions.assertThat;
import static us.abstracta.jmeter.javadsl.JmeterDsl.*;

import java.io.IOException;
import java.time.Duration;
import org.junit.jupiter.api.Test;
import us.abstracta.jmeter.javadsl.core.TestPlanStats;

public class PerformanceTest {

  @Test
  public void testPerformance() throws IOException {
    TestPlanStats stats = testPlan(
      threadGroup(2, Duration.ofSeconds(10),
        httpSampler("http://my.service")
      )
    ).run();
    assertThat(stats.overall().elapsedTimePercentile99()).isLessThan(Duration.ofSeconds(5));
  }
  
}

Don't miss a new jmeter-java-dsl release

NewReleases is sending notifications on new releases.