benchmark_methods()
Returns the benchmark methods (methods that start with bench_) for that class.
# File lib/minitest/benchmark.rb, line 51 def self.benchmark_methods # :nodoc: public_instance_methods(true).grep(/^bench_/).map { |m| m.to_s }.sort end