Exemplo n.º 1
0
        public void TestWithCancellation()
        {
            var cts = new CancellationTokenSource();

            cts.CancelAfter(TimeSpan.FromMilliseconds(25));

            Assert.ThrowsAny <OperationCanceledException>(
                () =>
            {
                try
                {
                    var provider           = new HaaretzProvider();
                    List <INewsItem> items = provider
                                             .GetNews(cts.Token)
                                             .Result
                                             .ToList();
                }
                catch (AggregateException e)
                {
                    List <OperationCanceledException> canceledExceptions = e.InnerExceptions
                                                                           .Cast <OperationCanceledException>()
                                                                           .ToList();
                    if (canceledExceptions.Any())
                    {
                        throw canceledExceptions.First();
                    }
                }
            });
        }
Exemplo n.º 2
0
        public void TestItemsParsing()
        {
            IEnumerable <INewsItem> items = HaaretzProvider.DeserializeItems(ReadXml("news1.xml"));

            foreach (INewsItem item in items)
            {
                AssertNewsItem(item);
            }
        }