Class: ItegrationTestUnit
- Inherits:
-
Object
- Object
- ItegrationTestUnit
- Defined in:
- lib/tdl/exlib/itegration_test_unit.rb
Instance Attribute Summary collapse
-
#block ⇒ Object
Returns the value of attribute block.
-
#itgt ⇒ Object
Returns the value of attribute itgt.
-
#name ⇒ Object
Returns the value of attribute name.
-
#path ⇒ Object
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(name: 'tmp', path: '', block: Proc.new, itgt: nil) ⇒ ItegrationTestUnit
constructor
A new instance of ItegrationTestUnit.
Constructor Details
#initialize(name: 'tmp', path: '', block: Proc.new, itgt: nil) ⇒ ItegrationTestUnit
Returns a new instance of ItegrationTestUnit.
7 8 9 10 11 12 |
# File 'lib/tdl/exlib/itegration_test_unit.rb', line 7 def initialize(name: 'tmp',path: '',block: Proc.new , itgt: nil ) @path = path @block = block @itgt = itgt @name = name end |
Instance Attribute Details
#block ⇒ Object
Returns the value of attribute block.
6 7 8 |
# File 'lib/tdl/exlib/itegration_test_unit.rb', line 6 def block @block end |
#itgt ⇒ Object
Returns the value of attribute itgt.
6 7 8 |
# File 'lib/tdl/exlib/itegration_test_unit.rb', line 6 def itgt @itgt end |
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/tdl/exlib/itegration_test_unit.rb', line 6 def name @name end |
#path ⇒ Object
Returns the value of attribute path.
6 7 8 |
# File 'lib/tdl/exlib/itegration_test_unit.rb', line 6 def path @path end |