Struct cqrs_es2::HandlerTester[][src]

pub struct HandlerTester<C: ICommand, E: IEvent, A: Default + ICommandHandler<C, E> + IEventHandler<E>> { /* fields omitted */ }
Expand description

HandlerTester provides a consistent way to test aggregate implementations

Examples

use cqrs_es2::{
    example_impl::{
        AddCustomerName,
        Customer,
        CustomerCommand,
        CustomerEvent,
        NameAdded,
    },
    HandlerTester,
};

type CustomTester =
    HandlerTester<CustomerCommand, CustomerEvent, Customer>;

CustomTester::default()
    .given_no_previous_events()
    .when(CustomerCommand::AddCustomerName(
        AddCustomerName {
            changed_name: "John Doe".to_string(),
        },
    ))
    .then_expect(vec![CustomerEvent::NameAdded(
        NameAdded {
            changed_name: "John Doe".to_string(),
        },
    )]);

CustomTester::default()
    .given(vec![CustomerEvent::NameAdded(
        NameAdded {
            changed_name: "John Doe".to_string(),
        },
    )])
    .when(CustomerCommand::AddCustomerName(
        AddCustomerName {
            changed_name: "John Doe".to_string(),
        },
    ))
    .then_expect_error(
        "a name has already been added for this customer",
    )

Implementations

Initiates a handler test with no previous events

Initiates a handler test with a collection of previous events

Trait Implementations

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. 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.