class Roby::Test::ExecutionExpectations::BecomeUnreachable
Public Class Methods
new(generator, backtrace)
click to toggle source
Calls superclass method
Roby::Test::ExecutionExpectations::Expectation::new
# File lib/roby/test/execution_expectations.rb, line 922 def initialize(generator, backtrace) super(backtrace) @generator = generator end
Public Instance Methods
return_object()
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 931 def return_object @generator.unreachability_reason end
to_s()
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 935 def to_s "#{@generator} should be unreachable" end
update_match(propagation_info)
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 927 def update_match(propagation_info) @generator.unreachable? end