| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function testCanConstructProperties() { |
||
| 16 | $this->assertInstanceOf( 'Wikibase\DataModel\Entity\Property', ( new CountryProperty() )->newProperty() ); |
||
| 17 | $this->assertInstanceOf( 'Wikibase\DataModel\Entity\Property', ( new InstanceOfProperty() )->newProperty() ); |
||
| 18 | $this->assertInstanceOf( 'Wikibase\DataModel\Entity\Property', ( new PostalCodeProperty() )->newProperty() ); |
||
| 19 | } |
||
| 20 | |||
| 22 |