Class: Cucumber::Formatter::ResultBuilder
- Inherits:
-
Object
- Object
- Cucumber::Formatter::ResultBuilder
- Defined in:
- lib/cucumber/formatter/junit.rb
Instance Attribute Summary collapse
-
#test_case_duration ⇒ Object
readonly
Returns the value of attribute test_case_duration.
Instance Method Summary collapse
- #attach ⇒ Object
- #duration(duration) ⇒ Object
- #exception ⇒ Object
- #failed ⇒ Object
-
#initialize(result) ⇒ ResultBuilder
constructor
A new instance of ResultBuilder.
- #passed ⇒ Object
- #pending ⇒ Object
- #skipped ⇒ Object
- #undefined ⇒ Object
Constructor Details
#initialize(result) ⇒ ResultBuilder
Returns a new instance of ResultBuilder.
221 222 223 224 |
# File 'lib/cucumber/formatter/junit.rb', line 221 def initialize(result) @test_case_duration = 0 result.describe_to(self) end |
Instance Attribute Details
#test_case_duration ⇒ Object (readonly)
Returns the value of attribute test_case_duration.
220 221 222 |
# File 'lib/cucumber/formatter/junit.rb', line 220 def test_case_duration @test_case_duration end |
Instance Method Details
#attach ⇒ Object
242 |
# File 'lib/cucumber/formatter/junit.rb', line 242 def attach(*) end |
#duration(duration) ⇒ Object
238 239 240 |
# File 'lib/cucumber/formatter/junit.rb', line 238 def duration(duration, *) duration.tap { |dur| @test_case_duration = dur.nanoseconds / 10**9.0 } end |
#exception ⇒ Object
236 |
# File 'lib/cucumber/formatter/junit.rb', line 236 def exception(*) end |
#failed ⇒ Object
228 |
# File 'lib/cucumber/formatter/junit.rb', line 228 def failed(*) end |
#passed ⇒ Object
226 |
# File 'lib/cucumber/formatter/junit.rb', line 226 def passed(*) end |
#pending ⇒ Object
234 |
# File 'lib/cucumber/formatter/junit.rb', line 234 def pending(*) end |
#skipped ⇒ Object
232 |
# File 'lib/cucumber/formatter/junit.rb', line 232 def skipped(*) end |
#undefined ⇒ Object
230 |
# File 'lib/cucumber/formatter/junit.rb', line 230 def undefined(*) end |