IfTag tag = new IfTag();
JspTagLifecycle lifecycle = new JspTagLifecycle(pageContext, tag);
tag.setTest("false");
lifecycle.addNestedText("Value");
lifecycle.expectBodySkipped();
lifecycle.invoke();
}
/**
* Verifies that the response has been correctly rendered by the
* <code><c:if></code>-tag.