} */
public void testGetExpressionString() throws Exception
{
ApplicationImpl app = (ApplicationImpl) getFacesContext()
.getApplication();
String ref = null;
ValueExpression vb = null;
ref = "#{NewCustomerFormHandler.minimumAge}";
vb = app.getExpressionFactory().createValueExpression(getFacesContext().getELContext(),ref, Object.class);
assertEquals(ref, vb.getExpressionString());
ref = "minimum age is #{NewCustomerFormHandler.minimumAge}";
vb = app.getExpressionFactory().createValueExpression(getFacesContext().getELContext(),ref, Object.class);
assertEquals(ref, vb.getExpressionString());
}