class Test::Unit::UI::Emacs::TestRunner

def format_fault(fault)

def format_fault(fault)
  return super unless fault.respond_to?(:label)
  format_method_name = "format_fault_#{fault.label.downcase}"
  if respond_to?(format_method_name, true)
    __send__(format_method_name, fault)
  else
    super
  end
end