public void testValidateMinValue() throws Exception {
   checkValid();
   input.validateValue(facesContext, new Double(-23.45));
   checkInvalid();
 }
 public void testValidateNullValue() throws Exception {
   checkValid();
   input.validateValue(facesContext, null);
   checkValid();
 }
 public void testValidateIllegalValue() throws Exception {
   checkValid();
   input.validateValue(facesContext, "string");
   checkInvalid();
 }
 public void testValidateValueFacesContextObject() {
   checkValid();
   input.validateValue(facesContext, new Double(23.45));
   checkValid();
 }
 public void testValidateMaxNullMaxValue() throws Exception {
   input.setMaxValue(null);
   checkValid();
   input.validateValue(facesContext, new Double(223.45));
   checkInvalid();
 }