pub trait AptosTest: Test {
    fn run<'t, 'life0, 'life1, 'async_trait>(
        &'life0 self,
        ctx: &'life1 mut AptosContext<'t>
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        't: 'async_trait,
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Executes the test against the given context.

Implementors