pub struct Runner {
pub config: RunnerConfig,
}Expand description
The test runner.
Fields§
§config: RunnerConfigImplementations§
Source§impl Runner
impl Runner
pub fn new(config: RunnerConfig) -> Self
Sourcepub async fn run(
&self,
suite: TestSuite,
agent: Arc<dyn AgentUnderTest>,
) -> SuiteReport
pub async fn run( &self, suite: TestSuite, agent: Arc<dyn AgentUnderTest>, ) -> SuiteReport
Run a test suite against an agent, returning the suite report.
Auto Trait Implementations§
impl Freeze for Runner
impl RefUnwindSafe for Runner
impl Send for Runner
impl Sync for Runner
impl Unpin for Runner
impl UnsafeUnpin for Runner
impl UnwindSafe for Runner
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