class Test::Unit::Color

def initialize(name, options={})

def initialize(name, options={})
  @name = name
  if options.has_key?(:foreground)
    if options[:foreground].nil?
      @background = false
    else
      @background = !options[:foreground]
    end
  else
    @background = options[:background]
  end
  @intensity = options[:intensity]
  @bold = options[:bold]
  @italic = options[:italic]
  @underline = options[:underline]
end