Trait concordium_std::ExpectErrReport
source · pub trait ExpectErrReport {
type Unwrap;
fn expect_err_report(self, msg: &str) -> Self::Unwrap;
}Expand description
Analogue of the expect_err methods on Result,
but useful in a Wasm setting.
Required Associated Types§
Required Methods§
sourcefn expect_err_report(self, msg: &str) -> Self::Unwrap
fn expect_err_report(self, msg: &str) -> Self::Unwrap
Like the default expect_err on, e.g., Result, but calling
fail with the given message, instead of panic.