class Cucumber::Messages::UndefinedParameterType
#
#
Represents the UndefinedParameterType message in Cucumber’s message protocol.
#
def self.from_h(hash)
Cucumber::Messages::UndefinedParameterType.from_h(some_hash) # => #
corresponding snake_cased attributes.
If the hash keys are camelCased, they are properly assigned to the
Returns a new UndefinedParameterType from the given hash.
#
def self.from_h(hash) return nil if hash.nil? new( expression: hash[:expression], name: hash[:name] ) end
def initialize(
def initialize( expression: '', name: '' ) @expression = expression @name = name super() end