class Google::Apis::TestingV1::RegularFile
A file or directory to install on the device before the test starts.
Attributes
A reference to a file, used for user inputs. Corresponds to the JSON property `content` @return [Google::Apis::TestingV1::FileReference]
Required. Where to put the content on the device. Must be an absolute, allowlisted path. If the file exists, it will be replaced. The following device-side directories and any of their subdirectories are allowlisted: $` EXTERNAL_STORAGE`, /sdcard, or /storage $`ANDROID_DATA`/local/tmp, or /data/ local/tmp Specifying a path outside of these directory trees is invalid. The paths /sdcard and /data will be made available and treated as implicit path substitutions. E.g. if /sdcard on a particular device does not map to external storage, the system will replace it with the external storage path prefix for that device and copy the file there. It is strongly advised to use the Environment
API in app and test code to access files on the device in a portable way. Corresponds to the JSON property `devicePath` @return [String]
Public Class Methods
# File lib/google/apis/testing_v1/classes.rb, line 1788 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/testing_v1/classes.rb, line 1793 def update!(**args) @content = args[:content] if args.key?(:content) @device_path = args[:device_path] if args.key?(:device_path) end