# File lib/cucumber/wire_support/wire_protocol.rb, line 32 def begin_scenario(scenario) handler = Requests::BeginScenario.new(self) handler.execute(scenario) end
# File lib/cucumber/wire_support/wire_protocol.rb, line 22 def diff_failed handler = Requests::DiffFailed.new(self) handler.execute end
# File lib/cucumber/wire_support/wire_protocol.rb, line 27 def diff_ok handler = Requests::DiffOk.new(self) handler.execute end
# File lib/cucumber/wire_support/wire_protocol.rb, line 37 def end_scenario(scenario) handler = Requests::EndScenario.new(self) handler.execute(scenario) end
# File lib/cucumber/wire_support/wire_protocol.rb, line 17 def invoke(step_definition_id, args) handler = Requests::Invoke.new(self) handler.execute(step_definition_id, args) end
# File lib/cucumber/wire_support/wire_protocol.rb, line 12 def snippet_text(step_keyword, step_name, multiline_arg_class_name) handler = Requests::SnippetText.new(self) handler.execute(step_keyword, step_name, multiline_arg_class_name) end
Generated with the Darkfish Rdoc Generator 2.