コード例 #1
0
        public void TestRemoveHtml()
        {
            //Arrange
            string text     = @"<h1>Title</h1><div><p>Hello world.</p></div>";
            string expected = "TitleHello world.";

            //Act
            string result = StringFilter.RemoveHtml(text);

            //Assert
            Assert.AreEqual(expected, result);
        }