File tree 1 file changed +0
-22
lines changed
src/test/java/com/rabbitmq/stream/perf 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change 17
17
import static org .assertj .core .api .Assertions .assertThat ;
18
18
import static org .assertj .core .api .Assertions .assertThatThrownBy ;
19
19
20
- import java .util .concurrent .Callable ;
21
20
import org .junit .jupiter .api .Test ;
22
21
import picocli .CommandLine ;
23
22
@@ -204,25 +203,4 @@ StreamPerfTest exec(String line) {
204
203
private static String [] args (String line ) {
205
204
return line .split (" " );
206
205
}
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
- }
228
206
}
You can’t perform that action at this time.
0 commit comments