Esempio n. 1
0
 public void TestToString()
 {
     const  string html = "a<img src=\"picture.gif\" alt=\"A Picture\">b";
     var enc = new ASCIIEncoding();
     var bis = new MemoryStream(enc.GetBytes(html));
     var parse = new ReadHTML(bis);
     parse.ReadToTag();
     Assert.IsTrue(parse.ToString().IndexOf("A Picture") != -1);
 }