BaconBuilder.HtmlDegenTest.TestGetBody C# (CSharp) Method

TestGetBody() private method

private TestGetBody ( ) : void
return void
        public void TestGetBody()
        {
            _degen.ReadHtml(testdir + "helloworld.html");
            List<string> body = _degen.Body;

            Assert.IsNotNull(_degen.Body);

            Assert.AreEqual("<p>Around the World</p>", body[0]);
            Assert.AreEqual("<p>Harder, Better, Faster, Stronger</p>", body[1]);
        }