Trait wasmer_argus::argus::tester::Tester
source · pub(crate) trait Tester: Send + Sync {
// Required methods
fn is_to_test<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn run_test<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<TestReport>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}