/**
  * Test that new instance does not inherit events
  * (when not reading from ini settings)
  */
 public function testNewInstance()
 {
     $event = new ezpEvent(false);
     // test filter
     $this->assertEquals(null, $event->filter('test/filter', null));
     // test notify
     $this->assertFalse($event->notify('test/notify'));
 }