class Cucumber::Filters::ActivateSteps::CaseFilter::FindMatch

def result

def result
  begin
    return NoStepMatch.new(test_step, test_step.text) unless matches.any?
  rescue Cucumber::Ambiguous => e
    return AmbiguousStepMatch.new(e)
  end
  configuration.notify :step_activated, test_step, match
  return SkippingStepMatch.new if configuration.dry_run?
  match
end