}
public void tryUISelectNoEscapeValue(UIComponent component, String contentType, String encoding) throws Exception
{
StringWriter swriter = new StringWriter();
HtmlResponseWriterImpl writer = new HtmlResponseWriterImpl(swriter, contentType , encoding);
facesContext.setResponseWriter(writer);
UISelectItem uiSelectItem = new UISelectItem();
SelectItem item = new SelectItem("Output",TEST_STRING,"",false,false);
uiSelectItem.setValue(item);
component.getChildren().add(uiSelectItem);