| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | protected function setUp() { |
||
| 22 | parent::setUp(); |
||
| 23 | |||
| 24 | $this->store = $this->getMockBuilder( '\SMW\Store' ) |
||
| 25 | ->disableOriginalConstructor() |
||
| 26 | ->getMockForAbstractClass(); |
||
| 27 | |||
| 28 | $this->query = $this->getMockBuilder( '\SMWQuery' ) |
||
| 29 | ->disableOriginalConstructor() |
||
| 30 | ->getMock(); |
||
| 31 | } |
||
| 32 | |||
| 42 |