render() public method

render the view
Since: 3.0.0
public render ( ) : string
return string
 /**
  * testRender
  *
  * @since 3.0.0
  *
  * @param array $registryArray
  * @param string $expect
  *
  * @dataProvider providerRender
  */
 public function testRender($registryArray = [], $expect = null)
 {
     /* setup */
     $this->_registry->init($registryArray);
     $systemStatus = new View\SystemStatus($this->_registry, $this->_language);
     /* actual */
     $actual = $systemStatus->render();
     /* compare */
     $this->assertEquals($expect, $actual);
 }