Redaxscript\Tests\HookTest::testGetEventArray PHP Method

testGetEventArray() public method

testGetEventArray
Since: 2.4.0
public testGetEventArray ( )
    public function testGetEventArray()
    {
        /* setup */
        Hook::construct($this->_registry);
        Hook::init();
        Hook::trigger('render');
        /* actual */
        $actualArray = Hook::getEventArray();
        /* compare */
        $this->assertArrayHasKey('render', $actualArray);
    }