pub enum TestCaseStatus {
Passed,
Failed,
ExpectedFailure,
Stalled,
Skipped,
Other(String),
}Expand description
Normalized XCTest case status.
Variants§
Passed
Test passed.
Failed
Test failed.
ExpectedFailure
XCTest reported an expected failure.
Stalled
XCTest reported a stalled case.
Skipped
Test was skipped.
Other(String)
Status string not modeled by ios-core yet.
Trait Implementations§
Source§impl Clone for TestCaseStatus
impl Clone for TestCaseStatus
Source§fn clone(&self) -> TestCaseStatus
fn clone(&self) -> TestCaseStatus
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 TestCaseStatus
impl Debug for TestCaseStatus
Source§impl PartialEq for TestCaseStatus
impl PartialEq for TestCaseStatus
Source§fn eq(&self, other: &TestCaseStatus) -> bool
fn eq(&self, other: &TestCaseStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TestCaseStatus
impl Serialize for TestCaseStatus
impl Eq for TestCaseStatus
impl StructuralPartialEq for TestCaseStatus
Auto Trait Implementations§
impl Freeze for TestCaseStatus
impl RefUnwindSafe for TestCaseStatus
impl Send for TestCaseStatus
impl Sync for TestCaseStatus
impl Unpin for TestCaseStatus
impl UnsafeUnpin for TestCaseStatus
impl UnwindSafe for TestCaseStatus
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.