Class: UiChanged::AllScreenshot

Inherits:
Object
  • Object
show all
Defined in:
app/models/ui_changed/all_screenshot.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(control_ss, test_ss, diff_ss) ⇒ AllScreenshot

Returns a new instance of AllScreenshot.



5
6
7
8
9
# File 'app/models/ui_changed/all_screenshot.rb', line 5

def initialize(control_ss, test_ss, diff_ss)
  @control_ss = control_ss
  @test_ss = test_ss
  @diff_ss = diff_ss
end

Instance Attribute Details

#control_ssObject

Returns the value of attribute control_ss.



3
4
5
# File 'app/models/ui_changed/all_screenshot.rb', line 3

def control_ss
  @control_ss
end

#diff_ssObject

Returns the value of attribute diff_ss.



3
4
5
# File 'app/models/ui_changed/all_screenshot.rb', line 3

def diff_ss
  @diff_ss
end

#test_ssObject

Returns the value of attribute test_ss.



3
4
5
# File 'app/models/ui_changed/all_screenshot.rb', line 3

def test_ss
  @test_ss
end