aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Aggregator/Tests/DownloadTests.cs15
-rw-r--r--Aggregator/Tests/UnitTest1.cs11
2 files changed, 15 insertions, 11 deletions
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);
+ }
+ }
+}
diff --git a/Aggregator/Tests/UnitTest1.cs b/Aggregator/Tests/UnitTest1.cs
deleted file mode 100644
index 29d2d62..0000000
--- a/Aggregator/Tests/UnitTest1.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-using Xunit;
-
-namespace Tests {
- public class UnitTest1 {
- [Fact]
- public void Test1() {
-
- }
- }
-}