Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | function let() |
||
15 | { |
||
16 | $activity = new Activity('http://tincanapi.com/conformancetest/activityid'); |
||
17 | $actor = new Agent(InverseFunctionalIdentifier::withMbox('mailto:[email protected]')); |
||
18 | $this->beConstructedWith(new State($activity, $actor, 'state-id'), new DocumentData(array( |
||
19 | 'x' => 'foo', |
||
20 | 'y' => 'bar', |
||
21 | ))); |
||
22 | } |
||
23 | |||
44 |