Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | function it_is_initializable() |
||
19 | { |
||
20 | $id = new Identity(); |
||
21 | $this->beConstructedWith('[email protected]', $id); |
||
22 | $this->getEmail()->shouldBe('[email protected]'); |
||
23 | $this->getUserId()->shouldBe($id); |
||
24 | $this::messageName()->shouldBe('hmlb_user_change_email'); |
||
25 | } |
||
26 | |||
28 |