aboutsummaryrefslogtreecommitdiff
path: root/Aggregator/Tests/DownloadTests.cs
blob: 2e8528a1f02e967840e9f17213191f0955f92438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
        }
    }
}