public void Test4094906()
{
ChoiceFormat fmt = new ChoiceFormat(
"-\u221E<are negative|0<are no or fraction|1#is one|1.0<is 1+|\u221E<are many.");
if (!fmt.toPattern().startsWith("-\u221E<are negative|0.0<are no or fraction|1.0#is one|1.0<is 1+|\u221E<are many."))
errln("Formatter Pattern : " + fmt.toPattern());
logln("Format with -INF : " + fmt.format(Double.NEGATIVE_INFINITY));
logln("Format with -1.0 : " + fmt.format(-1.0));
logln("Format with 0 : " + fmt.format(0));
logln("Format with 0.9 : " + fmt.format(0.9));
logln("Format with 1.0 : " + fmt.format(1));