Question: given an aggregate has scheduled an event to be published in the future using some flavor of EventScheduler, how do I test that it actually gets published when expected?
I was hoping for some sort of deadline equivalent in AggregateTestFixture, e.g. expectScheduledDeadline(…) and whenThenTimeElapses(…).expectDeadlinesMet(…), but those seem to only support deadlines.
I could probably achieve the same with deadlines, but I would prefer to use AxonServerEventScheduler instead of one based on Quartz.
Thank you!
Vlad