示例#1
0
 /**
  * @group Slow
  * @slowExecutionTime 0.09325 ms
  * @covers \Wikia\Search\IndexService\AbstractService::getCurrentDocumentId
  */
 public function testGetCurrentDocumentId()
 {
     $service = $this->service->getMockForAbstractClass();
     $mwservice = new MediaWikiService();
     $service->setPageId(123);
     $this->assertEquals(sprintf('%s_%s', $mwservice->getWikiId(), $mwservice->getCanonicalPageIdFromPageId(123)), $service->getCurrentDocumentId());
 }