Class: Roku720Rois

Inherits:
RokuRois show all
Defined in:
lib/rois/roku/roku_720/roku_720_rois.rb

Overview

The Roku720Rois class adds Roku 720p-specific functionality to Roku Rois

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Roku720Rois

Public: Initializes Roku720Rois. NOT FOR USE IN TESTS.



13
14
15
16
17
18
19
20
21
# File 'lib/rois/roku/roku_720/roku_720_rois.rb', line 13

def initialize(*args)
  super(*args)
  # Add Rois common to all Roku 720p devices here
  @black = Roku720BlackRois.new(@dut)
  @text = Roku720TextRois.new(@dut)
  @image = Roku720ImageRois.new(@dut)
  @color = Roku720ColorRois.new(@dut)
  @video = Roku720VideoRois.new(@dut)
end