Are there any integration test examples for axon

Hi, I’m playing with axon and using the fixtures, I’ve been able to bang out a nice set of unit tests for my aggregates. Now, I’d like to create some tests that actually write to the configured event store, etc etc.

Hi Erich,

integration testing with Axon isn’t any different from integration testing any other application. Simply launch you app and start sending commands at it. You can create a event listener to verify that the expected events are published. The test fixtures aren’t meant for integration testing.

Cheers,

Allard