* @throws IOException If the tag throws an IOException
*/
public void testOutTagNoEscapeXml()
throws JspException, IOException
{
OutTag tag = new OutTag();
tag.setEscapeXml("false");
JspTagLifecycle lifecycle = new JspTagLifecycle(pageContext, tag);
tag.setValue("<value/>");
lifecycle.expectBodySkipped();
lifecycle.invoke();
}