Class: Cucumber::Distrib::Events::UndefinedParameterType
- Defined in:
- lib/cucumber/distrib/events.rb
Overview
Object that mimic Cucumber::Event::UndefinedParameterType on Leader for reporters.
Instance Attribute Summary collapse
-
#expression ⇒ Object
readonly
Returns the value of attribute expression.
-
#type_name ⇒ Object
readonly
Returns the value of attribute type_name.
Instance Method Summary collapse
-
#initialize(event) ⇒ UndefinedParameterType
constructor
A new instance of UndefinedParameterType.
Methods inherited from Event
Constructor Details
#initialize(event) ⇒ UndefinedParameterType
Returns a new instance of UndefinedParameterType.
447 448 449 450 451 |
# File 'lib/cucumber/distrib/events.rb', line 447 def initialize(event) super() @type_name = event.type_name @expression = Expression.new end |
Instance Attribute Details
#expression ⇒ Object (readonly)
Returns the value of attribute expression.
444 445 446 |
# File 'lib/cucumber/distrib/events.rb', line 444 def expression @expression end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
444 445 446 |
# File 'lib/cucumber/distrib/events.rb', line 444 def type_name @type_name end |