| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | function it_is_an_xapi_object() |
||
| 14 | { |
||
| 15 | $actor = new Agent(InverseFunctionalIdentifier::withMbox('mailto:[email protected]')); |
||
| 16 | $verb = new Verb('http://tincanapi.com/conformancetest/verbid', array('en-US' => 'test')); |
||
| 17 | $object = new Activity('http://tincanapi.com/conformancetest/activityid'); |
||
| 18 | $this->beConstructedWith('16fd2706-8baf-433b-82eb-8c7fada847da', $actor, $verb, $object); |
||
| 19 | |||
| 20 | $this->shouldHaveType('Xabbuh\XApi\Model\Object'); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |