Class: Odn720MotoRois
- Inherits:
-
Odn720Rois
- Object
- Rois
- StbRois
- OdnRois
- Odn720Rois
- Odn720MotoRois
- Defined in:
- lib/rois/stb/odn/odn_720/odn_720_moto/odn_720_moto_rois.rb
Overview
Adds to or modifies the Odn ROIs with Odn720 Moto specific ROIs.
Instance Attribute Summary
Attributes inherited from Rois
#black, #color, #image, #text, #video
Instance Method Summary collapse
-
#initialize(*args) ⇒ Odn720MotoRois
constructor
Public: Initializes Odn720MotoRois.
Constructor Details
#initialize(*args) ⇒ Odn720MotoRois
Public: Initializes Odn720MotoRois. NOT FOR USE IN TESTS.
13 14 15 16 17 18 19 20 21 |
# File 'lib/rois/stb/odn/odn_720/odn_720_moto/odn_720_moto_rois.rb', line 13 def initialize(*args) super(*args) # Add Rois common to all Odn720 here @black = Odn720MotoBlackRois.new(@dut) @text = Odn720MotoTextRois.new(@dut) @image = Odn720MotoImageRois.new(@dut) @color = Odn720MotoColorRois.new(@dut) @video = Odn720MotoVideoRois.new(@dut) end |