Skip to content

0.18

Compare
Choose a tag to compare
@rabelenda rabelenda released this 10 Aug 23:12
· 592 commits to master since this release

Now is possible to define complex thread group configurations and even chart them for review!

Eg:

threadGroup()
    .rampToAndHold(10, Duration.ofSeconds(5), Duration.ofSeconds(20))
    .rampToAndHold(100, Duration.ofSeconds(10), Duration.ofSeconds(30))
    .rampTo(200, Duration.ofSeconds(10))
    .rampToAndHold(100, Duration.ofSeconds(10), Duration.ofSeconds(30))
    .rampTo(0, Duration.ofSeconds(5))
    .showThreadsTimeline()

Check the new section in user guide for more details.

Additionally, you can now visualize any test element in it's GUI component using new .showInGui() method, which will open a popup window. Here is an example:

Ultimate Thread Group GUI

Warning: This version deprecates DslThreadGroup.rampUpPeriod(Duration) method.

Finally, all DSL methods and classes have been annotated with proper dsl version for easy tracking of features versions.