}
@Test //TODO add description of what the test should do
public final void testCompareTo() throws Exception{
Coordinate coordinate2 = new CoordinateImpl(boardMap, latitude, longtitude);
Assert.assertEquals(coordinate2.compareTo(coordinate),0);
}
@Test(expected=Exception.class)//TODO add description of what the test should do
public final void testCoordinateImpl() throws Exception{
Coordinate c = new CoordinateImpl(null,0,0);