Struct google_testing1::api::IosTestSetup
source · pub struct IosTestSetup {
pub additional_ipas: Option<Vec<FileReference>>,
pub network_profile: Option<String>,
pub pull_directories: Option<Vec<IosDeviceFile>>,
pub push_files: Option<Vec<IosDeviceFile>>,
}Expand description
A description of how to set up an iOS device prior to running the test.
This type is not used in any activity, and only used as part of another schema.
Fields§
§additional_ipas: Option<Vec<FileReference>>iOS apps to install in addition to those being directly tested.
network_profile: Option<String>The network traffic profile used for running the test. Available network profiles can be queried by using the NETWORK_CONFIGURATION environment type when calling TestEnvironmentDiscoveryService.GetTestEnvironmentCatalog.
pull_directories: Option<Vec<IosDeviceFile>>List of directories on the device to upload to Cloud Storage at the end of the test. Directories should either be in a shared directory (such as /private/var/mobile/Media) or within an accessible directory inside the app’s filesystem (such as /Documents) by specifying the bundle ID.
push_files: Option<Vec<IosDeviceFile>>List of files to push to the device before starting the test.
Trait Implementations§
source§impl Clone for IosTestSetup
impl Clone for IosTestSetup
source§fn clone(&self) -> IosTestSetup
fn clone(&self) -> IosTestSetup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more