* If a channel has a set a receiver and remove is called with a different receiver
* need to ensure the receiver is not removed (since it doesn't match)
*/
public void testRemoveDifferentReceiver() throws Exception
{
Receiver receiver1 = new SimpleReceiver();
Receiver receiver2 = new SimpleReceiver();
assertFalse(queue.getLocalDistributor().iterator().hasNext());
queue.getLocalDistributor().add(receiver1);