Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | function its_properties_can_be_read() |
||
29 | { |
||
30 | $iri = InverseFunctionalIdentifier::withMbox('mailto:[email protected]'); |
||
31 | $this->beConstructedWith($iri, 'test'); |
||
32 | |||
33 | $this->getInverseFunctionalIdentifier()->shouldReturn($iri); |
||
34 | $this->getName()->shouldReturn('test'); |
||
35 | } |
||
36 | |||
51 |