Class: CI::Reporter::TestUnitNotification

Inherits:
Object
  • Object
show all
Defined in:
lib/ci/reporter/test_unit.rb

Overview

Wrapper around a Test::Unit 2.0 notification.

Instance Method Summary collapse

Constructor Details

#initialize(fault) ⇒ TestUnitNotification

Returns a new instance of TestUnitNotification.



61
# File 'lib/ci/reporter/test_unit.rb', line 61

def initialize(fault) @fault = fault end

Instance Method Details

#error?Boolean

Returns:

  • (Boolean)


63
# File 'lib/ci/reporter/test_unit.rb', line 63

def error?() false end

#failure?Boolean

Returns:

  • (Boolean)


62
# File 'lib/ci/reporter/test_unit.rb', line 62

def failure?() false end

#locationObject



66
# File 'lib/ci/reporter/test_unit.rb', line 66

def location() @fault.location.join("\n") end

#messageObject



65
# File 'lib/ci/reporter/test_unit.rb', line 65

def message() @fault.message end

#nameObject



64
# File 'lib/ci/reporter/test_unit.rb', line 64

def name() @fault.class.name end