}
public void testDate() throws Exception {
b.setSvalue("20020102-121121") ;
assertEquals(true, new DateFormatString(b, SVALUE).isValid()) ;
b.setSvalue("20020102-181121") ;
assertEquals(true, new DateFormatString(b, SVALUE).isValid()) ;
b.setSvalue("20020102-097521") ;
assertEquals(true, new DateFormatString(b, SVALUE).isValid()) ;
b.setSvalue("20020102") ;
assertEquals(false, new DateFormatString(b, SVALUE).isValid()) ;
assertEquals(true, new DateFormatString(b, SVALUE, "yyyyMMdd").isValid()) ;
}