// =====================================================================
// Test Expectations
// =====================================================================
CounterFormatterSelector selector =
new AlphabeticFormatterSelector(formatterMock);
CounterFormatter formatter;
// Test zero.
formatter = selector.selectFormatter(ListStyleTypeKeywords.LOWER_ALPHA,
0);
assertSame(DecimalFormatter.getDefaultInstance(), formatter);
// Test negative.
formatter = selector.selectFormatter(ListStyleTypeKeywords.LOWER_ALPHA,
-9);
assertSame(DecimalFormatter.getDefaultInstance(), formatter);
}