Method: MdnRois#initialize

Defined in:
lib/rois/mdn/mdn_rois.rb

#initialize(*args) ⇒ MdnRois

Public: Initializes MdnRois. NOT FOR USE IN TESTS.



15
16
17
18
19
20
21
22
23
24
# File 'lib/rois/mdn/mdn_rois.rb', line 15

def initialize(*args)
  super(*args)
  # Add Rois common to all Mdns here
  @black = MdnBlackRois.new(@dut)
  @color = MdnColorRois.new(@dut)
  @image = MdnImageRois.new(@dut)
  @text = MdnTextRois.new(@dut)
  @video = MdnVideoRois.new(@dut)

end