{
panel.setLocation(23, 56);
assertEquals(100, event.getLocation().x);
assertEquals(400, event.getLocation().y);
MockPanel recipient = new MockPanel();
recipient.setLocation(100, 400);
event.setRecipient(recipient);
assertEquals(23, event.getLocation().x);
assertEquals(56, event.getLocation().y);