コード例 #1
0
 public function testGetEntityDocumentWithoutDocument()
 {
     $lookup = new InMemoryEntityLookup([]);
     $this->assertNull($lookup->getEntityDocumentForId(new ItemId('Q42')));
 }
コード例 #2
0
 public function testGetEntityDocumentWithException()
 {
     $lookup = new InMemoryEntityLookup(array());
     $this->setExpectedException('Wikibase\\EntityStore\\EntityNotFoundException');
     $lookup->getEntityDocumentForId(new ItemId('Q42'));
 }