| Package | Description |
|---|---|
| us.abstracta.jmeter.javadsl | |
| us.abstracta.jmeter.javadsl.core.threadgroups |
| Modifier and Type | Method and Description |
|---|---|
static DslDefaultThreadGroup |
JmeterDsl.threadGroup()
Builds a new thread group without any thread configuration.
|
static DslDefaultThreadGroup |
JmeterDsl.threadGroup(int threads,
Duration duration,
BaseThreadGroup.ThreadGroupChild... children)
Builds a new thread group with a given number of threads & their duration.
|
static DslDefaultThreadGroup |
JmeterDsl.threadGroup(int threads,
int iterations,
BaseThreadGroup.ThreadGroupChild... children)
Builds a new thread group with a given number of threads & iterations.
|
static DslDefaultThreadGroup |
JmeterDsl.threadGroup(String name)
Same as
JmeterDsl.threadGroup() but allowing to set a name on the thread group. |
static DslDefaultThreadGroup |
JmeterDsl.threadGroup(String name,
int threads,
Duration duration,
BaseThreadGroup.ThreadGroupChild... children)
Same as
#threadGroup(int, Duration, ThreadGroupChild...) but allowing to set a name on
the thread group. |
static DslDefaultThreadGroup |
JmeterDsl.threadGroup(String name,
int threads,
int iterations,
BaseThreadGroup.ThreadGroupChild... children)
Same as
#threadGroup(int, int, ThreadGroupChild...) but allowing to set a name on the
thread group. |
| Modifier and Type | Method and Description |
|---|---|
DslDefaultThreadGroup |
DslDefaultThreadGroup.children(BaseThreadGroup.ThreadGroupChild... children)
Allows specifying thread group children elements (samplers, listeners, post processors, etc.).
|
DslDefaultThreadGroup |
DslDefaultThreadGroup.holdFor(Duration duration)
Specifies to keep current number of threads for a given duration.
|
DslDefaultThreadGroup |
DslDefaultThreadGroup.holdFor(String duration)
Same as
holdFor(Duration) but allowing to use JMeter expressions (variables or
functions) to solve the duration. |
DslDefaultThreadGroup |
DslDefaultThreadGroup.holdIterating(int iterations)
Specifies to keep current number of threads until they execute the given number of iterations
each.
|
DslDefaultThreadGroup |
DslDefaultThreadGroup.holdIterating(String iterations)
Same as
holdIterating(int) but allowing to use JMeter expressions (variables or
functions) to solve the iterations. |
DslDefaultThreadGroup |
DslDefaultThreadGroup.rampTo(int threadCount,
Duration duration)
Allows ramping up or down threads with a given duration.
|
DslDefaultThreadGroup |
DslDefaultThreadGroup.rampTo(String threadCount,
String duration)
Same as
rampTo(int, Duration) but allowing to use JMeter expressions (variables or
functions) to solve the actual parameter values. |
DslDefaultThreadGroup |
DslDefaultThreadGroup.rampToAndHold(int threads,
Duration rampDuration,
Duration holdDuration)
simply combines
rampTo(int, Duration) and holdFor(Duration) which are usually
used in combination. |
DslDefaultThreadGroup |
DslDefaultThreadGroup.rampToAndHold(String threads,
String rampDuration,
String holdDuration)
Same as
rampToAndHold(int, Duration, Duration) but allowing to use JMeter expressions
(variables or functions) to solve the actual parameter values. |
DslDefaultThreadGroup |
DslDefaultThreadGroup.upTo(Duration duration)
Specifies to stop thread group if iterations take more than specified duration.
|
Copyright © 2024. All rights reserved.