Fuel\Event\EventTest::testEventClosure PHP Method

testEventClosure() public method

public testEventClosure ( )
    public function testEventClosure()
    {
        $something = 1;
        $this->container->on('my_event', function ($e) use(&$something) {
            $something++;
        });
        $this->container->trigger('my_event');
        $this->assertEquals($something, 2);
    }