Class: Cucumber::Core::Report::Summary
- Inherits:
-
Object
- Object
- Cucumber::Core::Report::Summary
- Defined in:
- lib/cucumber/core/report/summary.rb
Instance Attribute Summary collapse
-
#test_cases ⇒ Object
readonly
Returns the value of attribute test_cases.
-
#test_steps ⇒ Object
readonly
Returns the value of attribute test_steps.
Instance Method Summary collapse
-
#initialize(event_bus) ⇒ Summary
constructor
A new instance of Summary.
- #ok?(strict: Test::Result::StrictConfiguration.new) ⇒ Boolean
Constructor Details
Instance Attribute Details
#test_cases ⇒ Object (readonly)
Returns the value of attribute test_cases.
7 8 9 |
# File 'lib/cucumber/core/report/summary.rb', line 7 def test_cases @test_cases end |
#test_steps ⇒ Object (readonly)
Returns the value of attribute test_steps.
7 8 9 |
# File 'lib/cucumber/core/report/summary.rb', line 7 def test_steps @test_steps end |
Instance Method Details
#ok?(strict: Test::Result::StrictConfiguration.new) ⇒ Boolean
16 17 18 |
# File 'lib/cucumber/core/report/summary.rb', line 16 def ok?(strict: Test::Result::StrictConfiguration.new) test_cases.ok?(strict: strict) end |