public void Parse23()
 {
     ILocationParser parser = new StandardLocationParser();
     Assert.AreEqual(new Point(2, 3), parser.GetLocation("2 3 N"));
 }
 public void Parse11()
 {
     ILocationParser parser = new StandardLocationParser();
     Assert.AreEqual(new Point(1,1), parser.GetLocation("1 1 N"));
 }