class SimpleCov::SourceFile::Line

def missed?

Returns true if this is a line that should have been covered, but was not
def missed?
  not never? and not skipped? and coverage == 0
end