Пример #1
0
 /**
  * @return SearchRegistry|\PHPUnit_Framework_MockObject_MockObject
  */
 public function getMockSearchRegistry()
 {
     if (!$this->searchRegistry) {
         $this->searchRegistry = $this->getMock('Oro\\Bundle\\FormBundle\\Autocomplete\\SearchRegistry');
         $this->searchRegistry->method('getSearchHandler')->willReturn($this->getMockSearchHandler());
     }
     return $this->searchRegistry;
 }