| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function testCanConstruct() { |
||
| 19 | |||
| 20 | $store = $this->getMockBuilder( '\SMW\Store' ) |
||
| 21 | ->disableOriginalConstructor() |
||
| 22 | ->getMockForAbstractClass(); |
||
| 23 | |||
| 24 | $semanticData = $this->getMockBuilder( '\SMW\SemanticData' ) |
||
| 25 | ->disableOriginalConstructor() |
||
| 26 | ->getMock(); |
||
| 27 | |||
| 28 | $instance = new SemanticDataComparator( |
||
| 29 | $store, |
||
| 30 | $semanticData |
||
| 31 | ); |
||
| 32 | |||
| 33 | $this->assertInstanceOf( |
||
| 34 | '\SG\SemanticDataComparator', |
||
| 35 | $instance |
||
| 36 | ); |
||
| 37 | } |
||
| 38 | |||
| 80 |