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); Assert.True(xml != " "); } [Fact] public async void Test_DownloadXML() { string xml = await Download.DownloadXML("http://feeds.bbci.co.uk/news/rss.xml"); Assert.True(xml != null); Assert.True(xml != " "); } } }