Class: Sapphire::Testing::Reporter
- Defined in:
- lib/sapphire/Testing/Reporter.rb
Direct Known Subclasses
ConsoleReporter, HtmlReporter, TeamCity::RubyMineReporter, TeamCity::TeamCityReporter
Instance Attribute Summary collapse
-
#broken_count ⇒ Object
readonly
Returns the value of attribute broken_count.
-
#failing_count ⇒ Object
readonly
Returns the value of attribute failing_count.
-
#passing_count ⇒ Object
readonly
Returns the value of attribute passing_count.
-
#pending_count ⇒ Object
readonly
Returns the value of attribute pending_count.
-
#test_count ⇒ Object
readonly
Returns the value of attribute test_count.
-
#time ⇒ Object
readonly
Returns the value of attribute time.
Instance Attribute Details
#broken_count ⇒ Object (readonly)
Returns the value of attribute broken_count.
9 10 11 |
# File 'lib/sapphire/Testing/Reporter.rb', line 9 def broken_count @broken_count end |
#failing_count ⇒ Object (readonly)
Returns the value of attribute failing_count.
7 8 9 |
# File 'lib/sapphire/Testing/Reporter.rb', line 7 def failing_count @failing_count end |
#passing_count ⇒ Object (readonly)
Returns the value of attribute passing_count.
6 7 8 |
# File 'lib/sapphire/Testing/Reporter.rb', line 6 def passing_count @passing_count end |
#pending_count ⇒ Object (readonly)
Returns the value of attribute pending_count.
8 9 10 |
# File 'lib/sapphire/Testing/Reporter.rb', line 8 def pending_count @pending_count end |
#test_count ⇒ Object (readonly)
Returns the value of attribute test_count.
5 6 7 |
# File 'lib/sapphire/Testing/Reporter.rb', line 5 def test_count @test_count end |
#time ⇒ Object (readonly)
Returns the value of attribute time.
10 11 12 |
# File 'lib/sapphire/Testing/Reporter.rb', line 10 def time @time end |