| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function testInsertWhenStoreNotInstalledCausesTermStoreException() { |
||
| 36 | $id = new ItemId( 'Q1337' ); |
||
| 37 | |||
| 38 | $fingerprint = new Fingerprint(); |
||
| 39 | $fingerprint->setLabel( 'en', 'EN label' ); |
||
| 40 | |||
| 41 | $this->expectException( TermStoreException::class ); |
||
| 42 | $this->store->storeEntityFingerprint( $id, $fingerprint ); |
||
| 43 | } |
||
| 44 | |||
| 46 |