···88 parser = OptionParser.new do |opts|
99 opts.banner = "Usage: #{$PROGRAM_NAME} [options]"
10101111+ opts.on('-d', '--duration SECONDS', Integer, 'Duration of the test in seconds') do |seconds|
1212+ options[:duration] = seconds
1313+ end
1414+1115 opts.on('-v', '--verbose', 'Report the statistics to stdout during the test') do
1216 options[:verbose] = true
1317 end