Skip to content

Commit f14c924

Browse files
committed
insert @Private
1 parent 5eb125a commit f14c924

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

lib/appium_lib_core/android/touch.rb

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ module Android
44
module Touch
55
def self.extend_touch_actions
66
::Appium::Core::TouchAction.class_eval do
7+
# Visible for testing
8+
# @private
79
def swipe_coordinates(start_x: 0, start_y: 0, offset_x: 0, offset_y: 0)
810
Appium::Logger.info "extended Appium::Core::Android::Touch, start_x: #{start_x},"\
911
" start_y: #{start_y}, offset_x: #{offset_x}, offset_y: #{offset_y}"

lib/appium_lib_core/ios/touch.rb

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ module Ios
44
module Touch
55
def self.extend_touch_actions
66
::Appium::Core::TouchAction.class_eval do
7+
# Visible for testing
8+
# @private
79
def swipe_coordinates(start_x: 0, start_y: 0, offset_x: 0, offset_y: 0)
810
Appium::Logger.info "extended Appium::Core::Ios::Touch, start_x: #{start_x},"\
911
" start_y: #{start_y}, offset_x: #{offset_x}, offset_y: #{offset_y}"

0 commit comments

Comments
 (0)