Class: RokuTvRois

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

Overview

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

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ RokuTvRois

Public: Initializes RokuTvRois. NOT FOR USE IN TESTS.



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

def initialize(*args)
  super(*args)
  # Add Rois common to all RokuTvs here
  @black = RokuTvBlackRois.new(@dut)
  @text = RokuTvTextRois.new(@dut)
  @image = RokuTvImageRois.new(@dut)
  @color = RokuTvColorRois.new(@dut)
  @video = RokuTvVideoRois.new(@dut)
end