Class: Cucumber::Messages::TestCase
- Defined in:
- lib/cucumber/messages/test_case.rb
Overview
Represents the TestCase message in Cucumber’s message protocol.
//// TestCases
*
A `TestCase` contains a sequence of `TestStep`s.
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#pickle_id ⇒ Object
readonly
The ID of the ‘Pickle` this `TestCase` is derived from.
-
#test_run_started_id ⇒ Object
readonly
Identifier for the test run that this test case belongs to.
-
#test_steps ⇒ Object
readonly
Returns the value of attribute test_steps.
Class Method Summary collapse
-
.from_h(hash) ⇒ Object
Returns a new TestCase from the given hash.
Instance Method Summary collapse
-
#initialize(id: '', pickle_id: '', test_steps: [], test_run_started_id: nil) ⇒ TestCase
constructor
A new instance of TestCase.
Methods inherited from Message
camelize, from_json, #to_h, #to_json
Constructor Details
#initialize(id: '', pickle_id: '', test_steps: [], test_run_started_id: nil) ⇒ TestCase
Returns a new instance of TestCase.
30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/cucumber/messages/test_case.rb', line 30 def initialize( id: '', pickle_id: '', test_steps: [], test_run_started_id: nil ) @id = id @pickle_id = pickle_id @test_steps = test_steps @test_run_started_id = test_run_started_id super() end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
16 17 18 |
# File 'lib/cucumber/messages/test_case.rb', line 16 def id @id end |
#pickle_id ⇒ Object (readonly)
The ID of the ‘Pickle` this `TestCase` is derived from.
21 22 23 |
# File 'lib/cucumber/messages/test_case.rb', line 21 def pickle_id @pickle_id end |
#test_run_started_id ⇒ Object (readonly)
Identifier for the test run that this test case belongs to
28 29 30 |
# File 'lib/cucumber/messages/test_case.rb', line 28 def test_run_started_id @test_run_started_id end |
#test_steps ⇒ Object (readonly)
Returns the value of attribute test_steps.
23 24 25 |
# File 'lib/cucumber/messages/test_case.rb', line 23 def test_steps @test_steps end |
Class Method Details
.from_h(hash) ⇒ Object
50 51 52 53 54 55 56 57 58 59 |
# File 'lib/cucumber/messages/test_case.rb', line 50 def self.from_h(hash) return nil if hash.nil? new( id: hash[:id], pickle_id: hash[:pickleId], test_steps: hash[:testSteps]&.map { |item| TestStep.from_h(item) }, test_run_started_id: hash[:testRunStartedId] ) end |