using System; using Classes; using Parser; using Xunit; namespace Tests { public class DownloadTests { [Fact] public void Test_DownloadXMLSync() { string xml = Download.DownloadXMLSync("http://feeds.bbci.co.uk/news/rss.xml"); Assert.True(xml != null); Console.WriteLine(xml); } } }