class Test::Unit::Omission

def critical?

def critical?
  true
end

def initialize(test_name, location, message, options={})

message.
Creates a new Omission with the given location and
def initialize(test_name, location, message, options={})
  @test_name = test_name
  @location = location
  @message = message
  @method_name = options[:method_name]
end

def label

def label
  LABEL
end

def long_display

Returns a verbose version of the error description.
def long_display
  backtrace = filter_backtrace(location).join("\n")
  "#{label}: #{@message}\n#{@test_name}\n#{backtrace}"
end

def short_display

Returns a brief version of the error description.
def short_display
  "#{@test_name}: #{@message.split("\n")[0]}"
end

def single_character_display

Returns a single character representation of a omission.
def single_character_display
  SINGLE_CHARACTER
end

def to_s

Overridden to return long_display.
def to_s
  long_display
end