cosmwasm_std/testing/
mod.rs1#![cfg(not(target_arch = "wasm32"))]
2
3mod assertions;
7mod message_info;
8mod mock;
9
10pub use assertions::assert_approx_eq_impl;
11#[cfg(test)]
12pub use assertions::assert_hash_works_impl;
13
14pub use message_info::message_info;
15#[allow(deprecated)]
16pub use mock::mock_info;
17#[cfg(feature = "cosmwasm_1_3")]
18pub use mock::DistributionQuerier;
19#[cfg(feature = "staking")]
20pub use mock::StakingQuerier;
21pub use mock::{
22 mock_dependencies, mock_dependencies_with_balance, mock_dependencies_with_balances, mock_env,
23 mock_wasmd_attr, BankQuerier, MockApi, MockQuerier, MockQuerierCustomHandlerResult,
24 MockStorage, MOCK_CONTRACT_ADDR,
25};
26#[cfg(feature = "stargate")]
27pub use mock::{
28 mock_ibc_channel, mock_ibc_channel_close_confirm, mock_ibc_channel_close_init,
29 mock_ibc_channel_connect_ack, mock_ibc_channel_connect_confirm, mock_ibc_channel_open_init,
30 mock_ibc_channel_open_try, mock_ibc_packet_ack, mock_ibc_packet_recv, mock_ibc_packet_timeout,
31};