PopTest\Event\EventTest::testAttachEvent PHP Méthode

testAttachEvent() public méthode

public testAttachEvent ( )
    public function testAttachEvent()
    {
        $e = new Manager();
        $e->attach('pre', function () {
            return 'Hello World';
        }, 2);
        $this->assertEquals(1, count($e->get('pre')));
    }