GameEngine.instance().getBoardMaps().remove("Auckland");
}
@Test//TODO add description here
public final void testEqualsObject() throws GameException{
Link other = new LinkImpl(boardMap, TransportationMethod.BUS, a, b);
Assert.assertTrue(link.equals(other));
Link other2 = new LinkImpl(boardMap, TransportationMethod.TAXI, a, b);
Assert.assertFalse(link.equals(other2));
Link other3 = new LinkImpl(boardMap, TransportationMethod.BUS, a, new CoordinateImpl(boardMap,11,22));
Assert.assertFalse(link.equals(other3));
Link other4 = new LinkImpl(boardMap, TransportationMethod.BUS, new CoordinateImpl(boardMap,11,20), b);
Assert.assertFalse(link.equals(other4));
}