Gc\Event\StaticEventManagerTest::testGetEvent PHP Method

testGetEvent() public method

Test
public testGetEvent ( ) : void
return void
    public function testGetEvent()
    {
        $this->object->attach('Event', 'do', function ($e) {
            //Fake declare to create Event
        });
        $this->assertInstanceOf('Zend\\EventManager\\EventManager', $this->object->getEvent('Event'));
    }