Class: ItegrationTestUnit

Inherits:
Object
  • Object
show all
Defined in:
lib/tdl/exlib/itegration_test_unit.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#blockObject

Returns the value of attribute block.



6
7
8
# File 'lib/tdl/exlib/itegration_test_unit.rb', line 6

def block
  @block
end

#itgtObject

Returns the value of attribute itgt.



6
7
8
# File 'lib/tdl/exlib/itegration_test_unit.rb', line 6

def itgt
  @itgt
end

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/tdl/exlib/itegration_test_unit.rb', line 6

def name
  @name
end

#pathObject

Returns the value of attribute path.



6
7
8
# File 'lib/tdl/exlib/itegration_test_unit.rb', line 6

def path
  @path
end