Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | function its_properties_can_be_read() |
||
20 | { |
||
21 | $score = new Score(1); |
||
22 | $this->beConstructedWith($score, true, true, 'test', 'PT2H'); |
||
23 | |||
24 | $this->getScore()->shouldReturn($score); |
||
25 | $this->getSuccess()->shouldReturn(true); |
||
26 | $this->getCompletion()->shouldReturn(true); |
||
27 | $this->getResponse()->shouldReturn('test'); |
||
28 | $this->getDuration()->shouldReturn('PT2H'); |
||
29 | } |
||
30 | |||
40 |