_testImpl.addFacesListener(listener1);
_testImpl.addFacesListener(listener2);
expect(event.isAppropriateListener(same(listener1))).andReturn(false);
expect(event.isAppropriateListener(same(listener2))).andReturn(true);
event.processListener(same(listener2));
_mocksControl.replay();
_testImpl.broadcast(event);
_mocksControl.verify();
}