public function EventManagerTest::testDispatchEvent in Plug 7
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ EventManagerTest.php, line 45
Class
Namespace
Doctrine\Tests\CommonCode
public function testDispatchEvent() {
$this->_eventManager
->addEventListener(array(
'preFoo',
'postFoo',
), $this);
$this->_eventManager
->dispatchEvent(self::preFoo);
$this
->assertTrue($this->_preFooInvoked);
$this
->assertFalse($this->_postFooInvoked);
}