class Test::Reporters::Test
Public Class Methods
new(runner)
click to toggle source
Calls superclass method
Test::Reporters::Abstract::new
# File lib/rubytest/format/test.rb, line 10 def initialize(runner) super(runner) end
Public Instance Methods
begin_case(test_case)
click to toggle source
Calls superclass method
Test::Reporters::AbstractHash#begin_case
# File lib/rubytest/format/test.rb, line 20 def begin_case(test_case) super(test_case) end
begin_suite(suite)
click to toggle source
Calls superclass method
Test::Reporters::AbstractHash#begin_suite
# File lib/rubytest/format/test.rb, line 15 def begin_suite(suite) super(suite) end
end_suite(suite)
click to toggle source
Calls superclass method
Test::Reporters::AbstractHash#end_suite
# File lib/rubytest/format/test.rb, line 45 def end_suite(suite) super(suite) end
error(test, exception)
click to toggle source
Calls superclass method
Test::Reporters::AbstractHash#error
# File lib/rubytest/format/test.rb, line 35 def error(test, exception) super(test, exception) end
fail(test, exception)
click to toggle source
Calls superclass method
Test::Reporters::AbstractHash#fail
# File lib/rubytest/format/test.rb, line 30 def fail(test, exception) super(test, exception) end
pass(test)
click to toggle source
Calls superclass method
Test::Reporters::AbstractHash#pass
# File lib/rubytest/format/test.rb, line 25 def pass(test) #, backtrace=nil) super(test) end
todo(test, exception)
click to toggle source
Calls superclass method
Test::Reporters::AbstractHash#todo
# File lib/rubytest/format/test.rb, line 40 def todo(test, exception) super(test, exception) end