Type Alias cw_multi_test::BasicApp

source ·
pub type BasicApp<ExecC = Empty, QueryC = Empty> = App<BankKeeper, MockApi, MockStorage, FailingModule<ExecC, QueryC, Empty>, WasmKeeper<ExecC, QueryC>, StakeKeeper, DistributionKeeper, IbcFailingModule, GovFailingModule, StargateFailing>;
Expand description

A type alias for the default-built App. It simplifies storage and handling in typical scenarios, streamlining the use of the App structure in standard test setups.

Aliased Type§

struct BasicApp<ExecC = Empty, QueryC = Empty> { /* private fields */ }

Implementations§

source§

impl BasicApp

source

pub fn new<F>(init_fn: F) -> Self

Creates new default App implementation working with Empty custom messages.

Trait Implementations§

source§

impl Default for BasicApp

source§

fn default() -> Self

Returns the “default value” for a type. Read more