class Cucumber::Runtime::ForProgrammingLanguages

This is what a programming language will consider to be a runtime.

It's a thin class that directs the handul of methods needed by the programming languages to the right place.

Attributes

support_code[R]

Public Class Methods

new(support_code, user_interface) click to toggle source
# File lib/cucumber/runtime/for_programming_languages.rb, line 16
def initialize(support_code, user_interface)
  @support_code = support_code
  @user_interface = user_interface
end