Class: UiChanged::AllScreenshot
- Inherits:
-
Object
- Object
- UiChanged::AllScreenshot
- Defined in:
- app/models/ui_changed/all_screenshot.rb
Instance Attribute Summary collapse
-
#control_ss ⇒ Object
Returns the value of attribute control_ss.
-
#diff_ss ⇒ Object
Returns the value of attribute diff_ss.
-
#test_ss ⇒ Object
Returns the value of attribute test_ss.
Instance Method Summary collapse
-
#initialize(control_ss, test_ss, diff_ss) ⇒ AllScreenshot
constructor
A new instance of AllScreenshot.
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_ss ⇒ Object
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_ss ⇒ Object
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_ss ⇒ Object
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 |