public void CannotGetLocation(string location)
 {
     Assert.IsNull(ControlInput.GetLocation(location));
 }
 public void GetRightCoordinator(string location, int x, int y)
 {
     Assert.AreEqual(new Coordinate(x, y), ControlInput.GetLocation(location).Coordinate);
 }