PHP 8.2.31
Preview: error.rb Size: 1.40 KB
//proc/thread-self/root/opt/alt/ruby18/lib64/ruby/1.8/test/unit/error.rb

#--
#
# Author:: Nathaniel Talbott.
# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved.
# License:: Ruby license.

require 'test/unit/util/backtracefilter'

module Test
  module Unit

    # Encapsulates an error in a test. Created by
    # Test::Unit::TestCase when it rescues an exception thrown
    # during the processing of a test.
    class Error
      include Util::BacktraceFilter

      attr_reader(:test_name, :exception)

      SINGLE_CHARACTER = 'E'

      # Creates a new Error with the given test_name and
      # exception.
      def initialize(test_name, exception)
        @test_name = test_name
        @exception = exception
      end

      # Returns a single character representation of an error.
      def single_character_display
        SINGLE_CHARACTER
      end

      # Returns the message associated with the error.
      def message
        "#{@exception.class.name}: #{@exception.message}"
      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
        backtrace = filter_backtrace(@exception.backtrace).join("\n    ")
        "Error:\n#@test_name:\n#{message}\n    #{backtrace}"
      end

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

Directory Contents

Dirs: 3 × Files: 9

Name Size Perms Modified Actions
collector DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
ui DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
util DIR
- drwxr-xr-x 2024-03-03 22:48:14
Edit Download
297 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
17.80 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
6.58 KB lrw-r--r-- 2007-02-25 14:08:40
Edit Download
873 B lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.40 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.29 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
4.44 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
2.03 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download
1.91 KB lrw-r--r-- 2007-02-12 23:01:19
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).