class DeepCover::Node::When

Public Instance Methods

execution_count() click to toggle source
# File lib/deep_cover/node/case.rb, line 65
def execution_count
  matches.first.flow_completion_count
end
flow_completion_count() click to toggle source
# File lib/deep_cover/node/case.rb, line 69
def flow_completion_count
  body.flow_completion_count + next_sibling.flow_entry_count
end
flow_entry_count() click to toggle source
# File lib/deep_cover/node/case.rb, line 61
def flow_entry_count
  matches.first.flow_entry_count
end