Class: ApiTester::BoundaryCase
- Inherits:
-
Object
- Object
- ApiTester::BoundaryCase
- Defined in:
- lib/api-tester/definition/boundary_case.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#headers ⇒ Object
Returns the value of attribute headers.
-
#payload ⇒ Object
Returns the value of attribute payload.
Instance Method Summary collapse
-
#initialize(description, payload, headers) ⇒ BoundaryCase
constructor
A new instance of BoundaryCase.
Constructor Details
#initialize(description, payload, headers) ⇒ BoundaryCase
Returns a new instance of BoundaryCase.
7 8 9 10 11 |
# File 'lib/api-tester/definition/boundary_case.rb', line 7 def initialize description, payload, headers self.description = description self.payload = payload self.headers = headers end |
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description.
5 6 7 |
# File 'lib/api-tester/definition/boundary_case.rb', line 5 def description @description end |
#headers ⇒ Object
Returns the value of attribute headers.
4 5 6 |
# File 'lib/api-tester/definition/boundary_case.rb', line 4 def headers @headers end |
#payload ⇒ Object
Returns the value of attribute payload.
3 4 5 |
# File 'lib/api-tester/definition/boundary_case.rb', line 3 def payload @payload end |