@Test
public void testUnsendOnUnregister2() {
final boolean[] res = new boolean[1];
// the distance is greater than min radius
TestCommunicationUser sender = new TestCommunicationUser(new Point(0, 0), 10, 1, null);
TestCommunicationUser recipient = new TestCommunicationUser(new Point(0, 5), 15, 1, new Callback() {
@Override
void callBack(Message m) {
res[0] = true;
}