JspTag tag = (JspTag)node[0];
assertStringEquals("Contents of the tag","%@ taglib uri=\"/WEB-INF/struts.tld\" prefix=\"struts\" %",tag.getText());
// The second node should be a normal tag
assertTrue("Node 3 should be a normal Tag",node[2] instanceof Tag);
Tag htag = (Tag)node[2];
assertStringEquals("Contents of the tag",contents,htag.getText());
assertStringEquals("html",jsp,htag.toHtml());
// The third node should be an JspTag
assertTrue("Node 5 should be an JspTag",node[4] instanceof JspTag);
JspTag tag2 = (JspTag)node[4];
assertStringEquals("Contents of the tag",contents2,tag2.getText());
}