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

Like the default expect_err on, e.g., Result, but calling fail with the given message, instead of panic.

Implementations on Foreign Types

Implementors