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
- #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.
223 224 225 226 |
# File 'lib/cucumber/formatter/junit.rb', line 223 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.
222 223 224 |
# File 'lib/cucumber/formatter/junit.rb', line 222 def test_case_duration @test_case_duration end |
Instance Method Details
#duration(duration) ⇒ Object
240 241 242 |
# File 'lib/cucumber/formatter/junit.rb', line 240 def duration(duration, *) duration.tap { |duration| @test_case_duration = duration.nanoseconds / 10**9.0 } end |
#exception ⇒ Object
238 |
# File 'lib/cucumber/formatter/junit.rb', line 238 def exception(*) end |
#failed ⇒ Object
230 |
# File 'lib/cucumber/formatter/junit.rb', line 230 def failed(*) end |
#passed ⇒ Object
228 |
# File 'lib/cucumber/formatter/junit.rb', line 228 def passed(*) end |
#pending ⇒ Object
236 |
# File 'lib/cucumber/formatter/junit.rb', line 236 def pending(*) end |
#skipped ⇒ Object
234 |
# File 'lib/cucumber/formatter/junit.rb', line 234 def skipped(*) end |
#undefined ⇒ Object
232 |
# File 'lib/cucumber/formatter/junit.rb', line 232 def undefined(*) end |