Slide 174
Slide 174 text
$this->scenario
->given([
new PostWasCreated($id),
new PostWasCategorized($id, 'news'),
new PostWasPublished($id, 'title', 'content', 'news'),
new PostWasTagged($id, 'event-sourcing'),
new PostWasTagged($id, 'broadway'),
])
->when(new TagPost($id, 'cqrs'))
->then([
new PostWasTagged($id, 'cqrs'),
])
;