From be6a1f89d2156478de91fb5dc8de612db7a06763 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sat, 2 Feb 2019 13:58:00 +0000 Subject: Added tests for DownloadXMLSync --- Aggregator/Tests/DownloadTests.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Aggregator/Tests/DownloadTests.cs (limited to 'Aggregator/Tests/DownloadTests.cs') diff --git a/Aggregator/Tests/DownloadTests.cs b/Aggregator/Tests/DownloadTests.cs new file mode 100644 index 0000000..2e8528a --- /dev/null +++ b/Aggregator/Tests/DownloadTests.cs @@ -0,0 +1,15 @@ +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); + } + } +} -- cgit v1.2.3-13-gbd6f