1use cosmwasm_std::{Binary, QuerierResult}; 2pub trait MockableQuerier { 3 fn register_custom_query( 4 &mut self, 5 path: String, 6 response_fn: Box<dyn Fn(&Binary) -> QuerierResult>, 7 ); 8}