class Cucumber::Formatter::TestStepSource::StepSource

Public Instance Methods

build_step_invocation(indent, matches, config, messages, embeddings) click to toggle source
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 202
def build_step_invocation(indent, matches, config, messages, embeddings)
  step_result.step_invocation(
    matches.fetch(step) { NoStepMatch.new(step, step.text) },
    step,
    indent,
    background,
    config,
    messages,
    embeddings
  )
end