Trait sui_cluster_test::TestCaseImpl

source ·
pub trait TestCaseImpl {
    // Required methods
    fn name(&self) -> &'static str;
    fn description(&self) -> &'static str;
    fn run<'life0, 'life1, 'async_trait>(
        &'life0 self,
        ctx: &'life1 mut TestContext,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

source

fn name(&self) -> &'static str

source

fn description(&self) -> &'static str

source

fn run<'life0, 'life1, 'async_trait>( &'life0 self, ctx: &'life1 mut TestContext, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§