public function testStaticCallable() {
$container = $this
->getMock('Symfony\\Component\\DependencyInjection\\ContainerInterface');
$dispatcher = new ContainerAwareTraceableEventDispatcher($container, new StopWatch());
$dispatcher
->addListener('onFooEvent', array(
__NAMESPACE__ . '\\StaticClassFixture',
'staticListener',
));
$dispatcher
->dispatch('onFooEvent');
$this
->assertTrue(StaticClassFixture::$called);
}