Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function testWhenNoConnection_storeEntityFingerprintThrowsException() { |
||
29 | $writer = TestEnvironment::newInstanceWithoutTables()->getFactory()->newTermStoreWriter(); |
||
30 | |||
31 | $this->expectException( TermStoreException::class ); |
||
32 | $writer->storeEntityFingerprint( new ItemId( 'Q1' ), new Fingerprint() ); |
||
33 | } |
||
34 | |||
43 |