Class: RokuTv720Rois

Inherits:
Rois show all
Defined in:
lib/rois/roku_tv/roku_tv_720/roku_tv_720_rois.rb

Overview

Adds to or modifies the base ROIs with RokuTv 720p-specific ROIs.

Instance Attribute Summary

Attributes inherited from Rois

#black, #color, #image, #text, #video

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ RokuTv720Rois

Public: Initializes RokuTv720Rois. NOT FOR USE IN TESTS.



13
14
15
16
17
18
19
20
21
# File 'lib/rois/roku_tv/roku_tv_720/roku_tv_720_rois.rb', line 13

def initialize(*args)
  super(*args)
  # Add Rois common to all RokuTv720 here

  @black = RokuTv720BlackRois.new(@dut)
  @text = RokuTv720TextRois.new(@dut)
  @image = RokuTv720ImageRois.new(@dut)
  @color = RokuTv720ColorRois.new(@dut)
  @video = RokuTv720VideoRois.new(@dut)
end