pub struct Runner<'a> { /* private fields */ }Expand description
Runs test cases against a provider using a configuration.
Implementations§
Source§impl<'a> Runner<'a>
impl<'a> Runner<'a>
Sourcepub fn run_all(&self, cases: &[TestCase]) -> Result<Report>
pub fn run_all(&self, cases: &[TestCase]) -> Result<Report>
Run every supplied case across the full platform × model matrix and
collect a Report.
§Errors
Propagates the first crate::Error from loading a skill or a provider
failure. Eval failures are not errors — they are recorded in the report.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for Runner<'a>
impl<'a> !Send for Runner<'a>
impl<'a> !Sync for Runner<'a>
impl<'a> !UnwindSafe for Runner<'a>
impl<'a> Freeze for Runner<'a>
impl<'a> Unpin for Runner<'a>
impl<'a> UnsafeUnpin for Runner<'a>
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