Wrapper around a Test::Unit failure to be used by the test suite to interpret results.
[Source]
# File lib/ci/reporter/test_unit.rb, line 33 33: def initialize(fault) @fault = fault end
# File lib/ci/reporter/test_unit.rb, line 35 35: def error?() false end
# File lib/ci/reporter/test_unit.rb, line 34 34: def failure?() true end
# File lib/ci/reporter/test_unit.rb, line 38 38: def location() @fault.location.join("\n") end
# File lib/ci/reporter/test_unit.rb, line 37 37: def message() @fault.message end
# File lib/ci/reporter/test_unit.rb, line 36 36: def name() Test::Unit::AssertionFailedError.name end
[Validate]