| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | function its_properties_can_be_read() |
||
| 24 | { |
||
| 25 | $iri = InverseFunctionalIdentifier::withMbox('mailto:[email protected]'); |
||
| 26 | $members = array(new Agent(InverseFunctionalIdentifier::withMbox('mailto:[email protected]'))); |
||
| 27 | $this->beConstructedWith($iri, 'test', $members); |
||
| 28 | |||
| 29 | $this->getInverseFunctionalIdentifier()->shouldReturn($iri); |
||
| 30 | $this->getName()->shouldReturn('test'); |
||
| 31 | $this->getMembers()->shouldReturn($members); |
||
| 32 | } |
||
| 33 | } |
||
| 34 |