module Minitest

def self.run_one_method klass, method_name # :nodoc:

Experimental RBS support (using type sampling data from the type_fusion project).

def self.run_one_method: (Class klass, String method_name) -> Minitest::Result?

This signature was generated using 10 samples from 1 application.

:nodoc:
def self.run_one_method klass, method_name # :nodoc:
  result = klass.new(method_name).run
  raise "#{klass}#run _must_ return a Result" unless Result === result
  result
end