public void GetDirectionsBetweenPostcodesAsXmlAndSaveToFileSuccess()
        {
            var googleDirectionServiceClient = new GoogleDirectionsServiceClient();
            googleDirectionServiceClient.GetDirectionsBetweenPostcodesAsXmlAndSaveToFile("AL6 0RU", "LU7 9GH");

            Assert.IsTrue(File.Exists(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "\\googleDirections.xml"));
        }
 public void GetDirectionsBetweenPostcodesTestAsXml()
 {
     var googleDirectionServiceClient = new GoogleDirectionsServiceClient();
     googleDirectionServiceClient.GetDirectionsBetweenPostcodesAsXml("AL6 0RU", "LU7 9GH");
 }