class Roby::Test::ExecutionExpectations::Expectation
Null implementation of an expectation
Attributes
backtrace[R]
Public Class Methods
new(backtrace)
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 675 def initialize(backtrace) @backtrace = backtrace end
Public Instance Methods
explain_unachievable(propagation_info)
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 688 def explain_unachievable(propagation_info) nil end
relates_to_error?(error)
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 691 def relates_to_error?(error) false end
unachievable?(propagation_info)
click to toggle source
# File lib/roby/test/execution_expectations.rb, line 685 def unachievable?(propagation_info) false end
update_match(propagation_info)
click to toggle source
Verifies whether the expectation is met at this point
This method is meant to update
# File lib/roby/test/execution_expectations.rb, line 682 def update_match(propagation_info) true end