enum TestResult {
Same,
Different,
}
Expand description
Result of each test case.
Variants§
Same
Execution of the test case succeeded, and results are same.
Different
Execution of the test case succeeded, but outputs are different from expected result.
Trait Implementations§
Source§impl PartialEq for TestResult
impl PartialEq for TestResult
impl StructuralPartialEq for TestResult
Auto Trait Implementations§
impl Freeze for TestResult
impl RefUnwindSafe for TestResult
impl Send for TestResult
impl Sync for TestResult
impl Unpin for TestResult
impl UnwindSafe for TestResult
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