pub trait Testing {
    fn start<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        ctx: &'life1 Context,
        arg: &'life2 TestOptions
    ) -> Pin<Box<dyn Future<Output = RpcResult<TestResults>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; fn contract_id() -> &'static str { ... } }
Expand description

Test api for testable actors and providers wasmbus.contractId: wasmcloud:testing wasmbus.providerReceive wasmbus.actorReceive

Required methods

Begin tests

Provided methods

returns the capability contract id for this interface

Implementors