Since: 3.0.0
Author: Balázs Szilágyi
Inheritance: extends ViewAbstract
 /**
  * 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);
 }