public class BooleanConverterTest extends AbstractConverterTest {
public static final String[] STANDARD_TRUES = new String[] { "yes", "y", "true", "on", "1" };
public static final String[] STANDARD_FALSES = new String[] { "no", "n", "false", "off", "0" };
public BooleanConverterTest() {
super(new BooleanConverter(), Boolean.class);
}