pub struct TestSuiteResult {
pub passed: usize,
pub failed: usize,
pub results: Vec<TestCaseResult>,
}Expand description
Result of running a full test suite.
Fields§
§passed: usizeNumber of passing test cases.
failed: usizeNumber of failing test cases.
results: Vec<TestCaseResult>Individual test case results.
Trait Implementations§
Source§impl Debug for TestSuiteResult
impl Debug for TestSuiteResult
Auto Trait Implementations§
impl Freeze for TestSuiteResult
impl RefUnwindSafe for TestSuiteResult
impl Send for TestSuiteResult
impl Sync for TestSuiteResult
impl Unpin for TestSuiteResult
impl UnsafeUnpin for TestSuiteResult
impl UnwindSafe for TestSuiteResult
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