Exemple #1
0
        public void SyndicationGetFeeds()
        {
            SyndicationFeedRssReader reader = new SyndicationFeedRssReader();

            IEnumerable <RssItem> items = reader.Read("http://contenidos.lanacion.com.ar/herramientas/rss/origen=2");

            Assert.IsNotNull(items);
        }
Exemple #2
0
        public void SyndicationGetFeedsInvalidUrl()
        {
            SyndicationFeedRssReader reader = new SyndicationFeedRssReader();

            IEnumerable <RssItem> items = reader.Read("http://wwww.google.com.ar");
        }