| 1 | <?php |
||
| 22 | class EventStreamSpec extends ObjectBehavior |
||
| 23 | { |
||
| 24 | function let(Id $aggregateRootId, DomainEventCollection $events) |
||
| 28 | |||
| 29 | function it_is_initializable() |
||
| 33 | |||
| 34 | function it_gets_aggregate_root_id(Id $aggregateRootId) |
||
| 35 | { |
||
| 36 | $this->aggregateRootId()->shouldReturn($aggregateRootId); |
||
| 37 | } |
||
| 38 | |||
| 39 | function it_gets_events(DomainEventCollection $events) |
||
| 43 | } |
||
| 44 |