Package org.scotlandyard.impl.engine.boardmap

Examples of org.scotlandyard.impl.engine.boardmap.CoordinateImpl.compareTo()


  }

  @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);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.