Skip to content

Commit ce62b89

Browse files
Changing versions to make next release the 1.0
1 parent 9868bff commit ce62b89

File tree

15 files changed

+25
-73
lines changed

15 files changed

+25
-73
lines changed

jmeter-java-dsl-blazemeter/src/main/java/us/abstracta/jmeter/javadsl/blazemeter/BlazeMeterEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ public BlazeMeterEngine useDebugRun() {
284284
* @param enable specifies to enable or disable the setting. By default, it is set to false.
285285
* @return the engine for further configuration or usage.
286286
* @see #useDebugRun()
287-
* @since 0.66
287+
* @since 1.0
288288
*/
289289
public BlazeMeterEngine useDebugRun(boolean enable) {
290290
this.useDebugRun = enable;

jmeter-java-dsl-parallel/src/main/java/us/abstracta/jmeter/javadsl/parallel/ParallelController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public static ParallelController parallelController(String name) {
100100
* in collected metrics.
101101
*
102102
* @return the controller for further configuration or usage.
103-
* @since 0.66
103+
* @since 1.0
104104
*/
105105
public ParallelController generateParentSample() {
106106
return generateParentSample(true);

jmeter-java-dsl/src/main/java/us/abstracta/jmeter/javadsl/JmeterDsl.java

Lines changed: 4 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ public static JtlWriter jtlWriter(String directory) {
12001200
* @param fileName the name to be used for the file. <b>File names should be unique, otherwise
12011201
* the new results will be appended to existing file.</b>
12021202
* @return the JtlWriter instance.
1203-
* @since 0.66
1203+
* @since 1.0
12041204
*/
12051205
public static JtlWriter jtlWriter(String directory, String fileName) {
12061206
return new JtlWriter(directory, fileName);
@@ -1269,7 +1269,7 @@ public static HtmlReporter htmlReporter(String reportsDirectory) throws IOExcept
12691269
* execution.</b>
12701270
* @return the HTML Reporter instance
12711271
* @see HtmlReporter
1272-
* @since 0.66
1272+
* @since 1.0
12731273
*/
12741274
public static HtmlReporter htmlReporter(String reportsDirectory, String name) throws IOException {
12751275
return new HtmlReporter(reportsDirectory, name);
@@ -1290,50 +1290,17 @@ public static DslViewResultsTree resultsTreeVisualizer() {
12901290
return new DslViewResultsTree();
12911291
}
12921292

1293-
/**
1294-
* Builds a Constant Timer which pauses the thread with for a given number of milliseconds.
1295-
*
1296-
* @param durationMillis specifies the number of milliseconds for the timer to wait.
1297-
* @return the timer for usage in test plan.
1298-
* @see #constantTimer(Duration)
1299-
* @since 0.62
1300-
* @deprecated as of 0.66, use {@link #constantTimer(Duration)}
1301-
*/
1302-
@Deprecated
1303-
public static DslConstantTimer constantTimer(long durationMillis) {
1304-
return constantTimer(Duration.ofMillis(durationMillis));
1305-
}
1306-
13071293
/**
13081294
* Builds a Constant Timer which pauses the thread with for a given duration.
13091295
*
13101296
* @param duration specifies the duration for the timer to wait.
13111297
* @return the timer for usage in test plan.
1312-
* @since 0.66
1298+
* @since 1.0
13131299
*/
13141300
public static DslConstantTimer constantTimer(Duration duration) {
13151301
return new DslConstantTimer(duration);
13161302
}
13171303

1318-
/**
1319-
* Builds a Uniform Random Timer which pauses the thread with a random time with uniform
1320-
* distribution.
1321-
*
1322-
* @param minimumMillis is used to set the constant delay of the Uniform Random Timer.
1323-
* @param maximumMillis is used to set the maximum time the timer will be paused and will be used
1324-
* to obtain the random delay from the result of (maximumMillis -
1325-
* minimumMillis).
1326-
* @return The Uniform Random Timer instance
1327-
* @see DslUniformRandomTimer
1328-
* @see #uniformRandomTimer(Duration, Duration)
1329-
* @since 0.16
1330-
* @deprecated as of 0.66, use {@link #uniformRandomTimer(Duration, Duration)}
1331-
*/
1332-
@Deprecated
1333-
public static DslUniformRandomTimer uniformRandomTimer(long minimumMillis, long maximumMillis) {
1334-
return uniformRandomTimer(Duration.ofMillis(minimumMillis), Duration.ofMillis(maximumMillis));
1335-
}
1336-
13371304
/**
13381305
* Builds a Uniform Random Timer which pauses the thread with a random time with uniform
13391306
* distribution.
@@ -1357,7 +1324,7 @@ public static DslUniformRandomTimer uniformRandomTimer(long minimumMillis, long
13571324
* minimum).
13581325
* @return The Uniform Random Timer instance
13591326
* @see DslUniformRandomTimer
1360-
* @since 0.66
1327+
* @since 1.0
13611328
*/
13621329
public static DslUniformRandomTimer uniformRandomTimer(Duration minimum, Duration maximum) {
13631330
return new DslUniformRandomTimer(minimum, maximum);

jmeter-java-dsl/src/main/java/us/abstracta/jmeter/javadsl/core/assertions/DslResponseAssertion.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public DslResponseAssertion ignoreStatus() {
8080
* @param enable specifies to enable or disable the setting. By default, it is set to false.
8181
* @return the response assertion for further configuration or usage.
8282
* @see #ignoreStatus()
83-
* @since 0.66
83+
* @since 1.0
8484
*/
8585
public DslResponseAssertion ignoreStatus(boolean enable) {
8686
ignoreStatus = enable;
@@ -213,7 +213,7 @@ public DslResponseAssertion invertCheck() {
213213
* @param enable specifies to enable or disable the setting. By default, it is set to false.
214214
* @return the response assertion for further configuration or usage.
215215
* @see #invertCheck()
216-
* @since 0.66
216+
* @since 1.0
217217
*/
218218
public DslResponseAssertion invertCheck(boolean enable) {
219219
this.invertCheck = enable;
@@ -257,7 +257,7 @@ public DslResponseAssertion anyMatch() {
257257
* @param enable specifies to enable or disable the setting. By default, it is set to false.
258258
* @return the response assertion for further configuration or usage.
259259
* @see #anyMatch()
260-
* @since 0.66
260+
* @since 1.0
261261
*/
262262
public DslResponseAssertion anyMatch(boolean enable) {
263263
anyMatch = enable;

jmeter-java-dsl/src/main/java/us/abstracta/jmeter/javadsl/core/configs/DslCsvDataSet.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public DslCsvDataSet ignoreFirstLine() {
137137
* @param enable specifies to enable or disable the setting. By default, it is set to false.
138138
* @return the dataset for further configuration or usage.
139139
* @see #ignoreFirstLine()
140-
* @since 0.66
140+
* @since 1.0
141141
*/
142142
public DslCsvDataSet ignoreFirstLine(boolean enable) {
143143
this.ignoreFirstLine = enable;
@@ -164,7 +164,7 @@ public DslCsvDataSet stopThreadOnEOF() {
164164
* @param enable specifies to enable or disable the setting. By default, it is set to false.
165165
* @return the dataset for further configuration or usage.
166166
* @see #stopThreadOnEOF()
167-
* @since 0.66
167+
* @since 1.0
168168
*/
169169
public DslCsvDataSet stopThreadOnEOF(boolean enable) {
170170
this.stopThread = enable;
@@ -213,7 +213,7 @@ public DslCsvDataSet randomOrder() {
213213
* @param enable specifies to enable or disable the setting. By default, it is set to false.
214214
* @return the dataset for further configuration or usage.
215215
* @see #randomOrder()
216-
* @since 0.66
216+
* @since 1.0
217217
*/
218218
public DslCsvDataSet randomOrder(boolean enable) {
219219
this.randomOrder = enable;

jmeter-java-dsl/src/main/java/us/abstracta/jmeter/javadsl/core/controllers/BaseController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protected BaseController(String name, Class<? extends JMeterGUIComponent> guiCla
2727
* @param children set of elements to be included in the controller. This list is appended to any
2828
* children defined in controller builder method.
2929
* @return a new controller instance for further configuration or usage.
30-
* @since 0.66
30+
* @since 1.0
3131
*/
3232
@Override
3333
public T children(ThreadGroupChild... children) {

jmeter-java-dsl/src/main/java/us/abstracta/jmeter/javadsl/core/controllers/DslTransactionController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public DslTransactionController(String name, List<ThreadGroupChild> children) {
3434
* Specifies to include time spent in timers and pre- and post-processors in sample results.
3535
*
3636
* @return the controller for further configuration or usage.
37-
* @since 0.66
37+
* @since 1.0
3838
*/
3939
public DslTransactionController includeTimersAndProcessorsTime() {
4040
return includeTimersAndProcessorsTime(true);
@@ -64,7 +64,7 @@ public DslTransactionController includeTimersAndProcessorsTime(boolean enable) {
6464
* not the transaction children results.
6565
*
6666
* @return the controller for further configuration or usage.
67-
* @since 0.66
67+
* @since 1.0
6868
*/
6969
public DslTransactionController generateParentSample() {
7070
return generateParentSample(true);

jmeter-java-dsl/src/main/java/us/abstracta/jmeter/javadsl/core/controllers/PercentController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public PercentController(String percent, List<ThreadGroupChild> children) {
4444
* execution has to be controlled, instead of relying on in general threads execution percentage.
4545
*
4646
* @return the controller for further configuration or usage.
47-
* @since 0.66
47+
* @since 1.0
4848
*/
4949
public PercentController perThread() {
5050
return perThread(true);

jmeter-java-dsl/src/main/java/us/abstracta/jmeter/javadsl/core/engines/DistributedJmeterEngine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public DistributedJmeterEngine stopEnginesOnTestEnd() {
6969
* @param enable specifies to enable or disable the setting. By default, it is set to false.
7070
* @return the DistributedJMeterEngine instance for further configuration or usage.
7171
* @see #stopEnginesOnTestEnd()
72-
* @since 0.66
72+
* @since 1.0
7373
*/
7474
public DistributedJmeterEngine stopEnginesOnTestEnd(boolean enable) {
7575
stopEngines = enable;

jmeter-java-dsl/src/main/java/us/abstracta/jmeter/javadsl/core/listeners/JtlWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public TestElement buildTestElement() {
128128
*
129129
* @return the JtlWriter for further configuration or usage.
130130
* @see #withAllFields(boolean)
131-
* @since 0.66
131+
* @since 1.0
132132
*/
133133
public JtlWriter withAllFields() {
134134
return withAllFields(true);

0 commit comments

Comments
 (0)