Exemplo n.º 1
0
        public void should_download_office()
        {
            string uri       = @"http://192.168.1.29:2002/test.doc";
            string localfile = Guid.NewGuid() + ".doc";
            string localPath = Path.Combine(Environment.CurrentDirectory, localfile);

            HttpDownloader.SaveAsFile(uri, localPath);
            Assert.IsTrue(File.Exists(localPath));
        }