Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | function it_creates_event() |
||
25 | { |
||
26 | $id = new UserId('user-id'); |
||
27 | $email = new UserEmail('[email protected]'); |
||
28 | $this->beConstructedWith($id, $email); |
||
29 | $this->shouldHaveType(UserProfileEdited::class); |
||
30 | |||
31 | $this->id()->shouldReturn($id); |
||
32 | $this->email()->shouldReturn($email); |
||
33 | $this->occurredOn()->shouldReturnAnInstanceOf(\DateTimeImmutable::class); |
||
34 | } |
||
35 | } |
||
36 |