コード例 #1
0
ファイル: IndexerTest.php プロジェクト: ripaclub/sphinxsearch
 /**
  * @covers SphinxSearch\Indexer::commit
  */
 public function testCommit()
 {
     $this->mockAdapter->getDriver()->getConnection()->expects($this->once())->method('commit');
     $indexer = $this->indexer->commit();
     $this->assertInstanceOf('\\SphinxSearch\\Indexer', $indexer);
 }