Class: TestRescueAgent::TestRescueClient::FileRunException
- Inherits:
-
Object
- Object
- TestRescueAgent::TestRescueClient::FileRunException
- Defined in:
- lib/test_rescue_agent/test_rescue_client/file_run_exception.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#failure_details ⇒ Object
readonly
Returns the value of attribute failure_details.
-
#file_run_id ⇒ Object
readonly
Returns the value of attribute file_run_id.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#suite_run_id ⇒ Object
readonly
Returns the value of attribute suite_run_id.
Instance Method Summary collapse
-
#initialize(client, attributes = {}) ⇒ FileRunException
constructor
A new instance of FileRunException.
Constructor Details
#initialize(client, attributes = {}) ⇒ FileRunException
Returns a new instance of FileRunException.
6 7 8 9 10 11 12 13 14 |
# File 'lib/test_rescue_agent/test_rescue_client/file_run_exception.rb', line 6 def initialize(client, attributes={}) @client = client @id = attributes["id"] @suite_run_id = attributes["suite_run_id"] @file_run_id = attributes["file_run_id"] @description = attributes["description"] @location = attributes["location"] @failure_details = attributes["failure_details"] end |
Instance Attribute Details
#description ⇒ Object (readonly)
Returns the value of attribute description.
4 5 6 |
# File 'lib/test_rescue_agent/test_rescue_client/file_run_exception.rb', line 4 def description @description end |
#failure_details ⇒ Object (readonly)
Returns the value of attribute failure_details.
4 5 6 |
# File 'lib/test_rescue_agent/test_rescue_client/file_run_exception.rb', line 4 def failure_details @failure_details end |
#file_run_id ⇒ Object (readonly)
Returns the value of attribute file_run_id.
4 5 6 |
# File 'lib/test_rescue_agent/test_rescue_client/file_run_exception.rb', line 4 def file_run_id @file_run_id end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
4 5 6 |
# File 'lib/test_rescue_agent/test_rescue_client/file_run_exception.rb', line 4 def id @id end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
4 5 6 |
# File 'lib/test_rescue_agent/test_rescue_client/file_run_exception.rb', line 4 def location @location end |
#suite_run_id ⇒ Object (readonly)
Returns the value of attribute suite_run_id.
4 5 6 |
# File 'lib/test_rescue_agent/test_rescue_client/file_run_exception.rb', line 4 def suite_run_id @suite_run_id end |