Exemplo n.º 1
0
        public void TestDownloadFile()
        {
            var test_storage = new TestStorage();
            var model = new GuiModel(test_storage);

            model.Connect();

            List<string> file_to_download = new List<string> { "/one/two/three" };
            model.DownloadFile( file_to_download, "" );
            Assert.AreEqual( file_to_download, test_storage.download_file );
        }