Struct mockall::Sequence[][src]

pub struct Sequence { /* fields omitted */ }
Expand description

Used to enforce that mock calls must happen in the sequence specified.

Each expectation must expect to be called a fixed number of times. Once satisfied, the next expectation in the sequence will expect to be called.

Examples

#[automock]
trait Foo {
    fn foo(&self);
    fn bar(&self) -> u32;
}
let mut seq = Sequence::new();

let mut mock0 = MockFoo::new();
let mut mock1 = MockFoo::new();

mock0.expect_foo()
    .times(1)
    .returning(|| ())
    .in_sequence(&mut seq);

mock1.expect_bar()
    .times(1)
    .returning(|| 42)
    .in_sequence(&mut seq);

mock0.foo();
mock1.bar();

It is an error to add an expectation to a Sequence if its call count is unspecified.

# use mockall::*;
#[automock]
trait Foo {
    fn foo(&self);
}
let mut seq = Sequence::new();

let mut mock = MockFoo::new();
mock.expect_foo()
    .returning(|| ())
    .in_sequence(&mut seq);  // panics!

Implementations

Trait Implementations

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

TODO: once 1.33.0 is the minimum supported compiler version, remove Any::type_id_compat and use StdAny::type_id instead. https://github.com/rust-lang/rust/issues/27745 Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.