Sha256: 425769f84714385d481a98d7325033894f64eae99abf9e9f43dcca4fa1347a14

Contents?: true

Size: 1.15 KB

Versions: 6

Compression:

Stored size: 1.15 KB

Contents

module Screw
  module Unit

    # Encapsulates a test failure. Created by Screw::Unit::TestCase
    # when an assertion fails.
    class Failure
      attr_reader :test_name, :location, :message
      
      SINGLE_CHARACTER = 'F'

      # Creates a new Failure with the given location and
      # message.
      def initialize(test_name, location, message)
        @test_name = test_name
        @location = location
        @message = message
      end
      
      # Returns a single character representation of a failure.
      def single_character_display
        SINGLE_CHARACTER
      end

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

      # Returns a verbose version of the error description.
      def long_display
        location_display = if(location.size == 1)
          location[0].sub(/\A(.+:\d+).*/, ' [\\1]')
        else
          "\n    [#{location.join("\n     ")}]"
        end
        "Failure:\n#@test_name#{location_display}:\n#@message"
      end

      # Overridden to return long_display.
      def to_s
        long_display
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
treetop-1.1.1 test/screw/unit/failure.rb
treetop-1.0.1 test/screw/unit/failure.rb
treetop-1.0.2 test/screw/unit/failure.rb
treetop-1.0.0 test/screw/unit/failure.rb
treetop-1.1.0 test/screw/unit/failure.rb
treetop-1.1.2 test/screw/unit/failure.rb