Skip to content

Commit 99f880e

Browse files
committed
Clean up test class
1 parent 3e29966 commit 99f880e

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

src/test/java/com/rabbitmq/stream/perf/PicoCliTest.java

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import static org.assertj.core.api.Assertions.assertThat;
1818
import static org.assertj.core.api.Assertions.assertThatThrownBy;
1919

20-
import java.util.concurrent.Callable;
2120
import org.junit.jupiter.api.Test;
2221
import picocli.CommandLine;
2322

@@ -204,25 +203,4 @@ StreamPerfTest exec(String line) {
204203
private static String[] args(String line) {
205204
return line.split(" ");
206205
}
207-
208-
@CommandLine.Command(
209-
name = "stream-perf-test",
210-
mixinStandardHelpOptions = false,
211-
showDefaultValues = true,
212-
description = "Tests the performance of stream queues in RabbitMQ.")
213-
private static class AppWithBooleanOption implements Callable<Integer> {
214-
215-
@CommandLine.Option(
216-
names = {"--confirm-latency", "-cl"},
217-
description = "evaluate confirm latency",
218-
arity = "0..1",
219-
fallbackValue = "true",
220-
defaultValue = "false")
221-
private boolean confirmLatency;
222-
223-
@Override
224-
public Integer call() {
225-
return 0;
226-
}
227-
}
228206
}

0 commit comments

Comments
 (0)