process() публичный Метод

process the class
С версии: 3.0.0
public process ( ) : string
Результат string
Пример #1
0
 /**
  * testProcess
  *
  * @since 3.0.0
  *
  * @param array $registryArray
  * @param string $expect
  *
  * @dataProvider providerProcess
  */
 public function testProcess($registryArray = [], $expect = null)
 {
     /* setup */
     $this->_registry->init($registryArray);
     $searchController = new Controller\Search($this->_registry, $this->_language, $this->_request);
     /* actual */
     $actual = $searchController->process();
     /* compare */
     $this->assertEquals($expect, $actual);
 }