Ejemplo n.º 1
0
        public void FindParseFeedItemValueLocationNameTest()
        {
            // arrange
            string uriPrefix = string.Empty;
            HtmlParser target = new HtmlParser(uriPrefix);

            HTMLParserFeedItemType expectedType = HTMLParserFeedItemType.LocationName;

            // act
            string actual = target.FindParseFeedItemValue(target.HtmlParserFeedItems.ToList(), expectedType);

            // assert
            Assert.AreEqual(expectedType.ToString(), actual);
        }