Пример #1
0
 public function testClearChangelog()
 {
     $this->viewProcessorMock->expects($this->once())->method('clearChangelog')->with('indexer')->willReturnSelf();
     $this->model->clearChangelog();
 }
Пример #2
0
 /**
  * Clean indexer view changelogs
  *
  * @return void
  */
 public function clearChangelog()
 {
     $this->mviewProcessor->clearChangelog('indexer');
 }