| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | function its_data_can_be_read() |
||
| 26 | { |
||
| 27 | $this->offsetExists('x')->shouldReturn(true); |
||
| 28 | $this->offsetGet('x')->shouldReturn('foo'); |
||
| 29 | $this->offsetExists('y')->shouldReturn(true); |
||
| 30 | $this->offsetGet('y')->shouldReturn('bar'); |
||
| 31 | $this->offsetExists('z')->shouldReturn(false); |
||
| 32 | } |
||
| 33 | |||
| 40 |