pub struct TestLaunchPlan {
pub runner: InstalledAppInfo,
pub target: Option<InstalledAppInfo>,
pub xctest_bundle_name: String,
pub is_xctest: bool,
pub args: Vec<String>,
pub env: HashMap<String, String>,
pub tests_to_run: Vec<String>,
pub tests_to_skip: Vec<String>,
}Fields§
§runner: InstalledAppInfo§target: Option<InstalledAppInfo>§xctest_bundle_name: String§is_xctest: bool§args: Vec<String>§env: HashMap<String, String>§tests_to_run: Vec<String>§tests_to_skip: Vec<String>Implementations§
Source§impl TestLaunchPlan
impl TestLaunchPlan
pub fn from_scheme( scheme: &SchemeData, runner: InstalledAppInfo, target: Option<InstalledAppInfo>, ) -> Self
pub fn test_bundle_path(&self) -> String
pub fn xctest_configuration( &self, product_major_version: u64, session_identifier: Uuid, ) -> XcTestConfiguration
pub fn launch_environment( &self, product_major_version: u64, session_identifier: Uuid, ) -> HashMap<String, String>
pub fn launch_arguments(&self) -> Vec<String>
pub fn launch_options(&self, product_major_version: u64) -> Vec<(String, Value)>
Trait Implementations§
Source§impl Clone for TestLaunchPlan
impl Clone for TestLaunchPlan
Source§fn clone(&self) -> TestLaunchPlan
fn clone(&self) -> TestLaunchPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TestLaunchPlan
impl Debug for TestLaunchPlan
Source§impl PartialEq for TestLaunchPlan
impl PartialEq for TestLaunchPlan
Source§fn eq(&self, other: &TestLaunchPlan) -> bool
fn eq(&self, other: &TestLaunchPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TestLaunchPlan
impl StructuralPartialEq for TestLaunchPlan
Auto Trait Implementations§
impl Freeze for TestLaunchPlan
impl RefUnwindSafe for TestLaunchPlan
impl Send for TestLaunchPlan
impl Sync for TestLaunchPlan
impl Unpin for TestLaunchPlan
impl UnsafeUnpin for TestLaunchPlan
impl UnwindSafe for TestLaunchPlan
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.