PopTest\Event\EventTest::testAttachEvent PHP Method

testAttachEvent() public method

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