Exemplo n.º 1
0
 public function testClearChangelog()
 {
     $this->viewProcessorMock->expects($this->once())->method('clearChangelog')->with('indexer')->willReturnSelf();
     $this->model->clearChangelog();
 }
Exemplo n.º 2
0
 /**
  * Clean indexer view changelogs
  *
  * @return void
  */
 public function clearChangelog()
 {
     $this->mviewProcessor->clearChangelog('indexer');
 }