class Roby::Test::ExecutionExpectations::NotBecomeUnreachable
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 941 def initialize(generator, backtrace) super(backtrace) @generator = generator end
Public Instance Methods
to_s()
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 954 def to_s "#{@generator} should not be unreachable" end
unachievable?(propagation_info)
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 950 def unachievable?(propagation_info) @generator.unreachable? end
update_match(propagation_info)
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 946 def update_match(propagation_info) !@generator.unreachable? end