pub struct FlakyTest {
pub name: String,
pub pass_rate: f64,
pub total_runs: usize,
pub failures: usize,
pub recent_pattern: String,
}Expand description
A test that has been detected as flaky.
Fields§
§name: StringTest name
pass_rate: f64Pass rate (0.0 - 1.0)
total_runs: usizeNumber of runs analyzed
failures: usizeNumber of failures
recent_pattern: StringNumber of recent consecutive results (P/F)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlakyTest
impl RefUnwindSafe for FlakyTest
impl Send for FlakyTest
impl Sync for FlakyTest
impl Unpin for FlakyTest
impl UnsafeUnpin for FlakyTest
impl UnwindSafe for FlakyTest
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