* @throws Exception
*/
public void testReturnsStyleInteger() throws Exception {
CounterFormatter formatter = new DecimalFormatter();
StyleValue result = formatter.formatAsStyleValue(
ListStyleTypeKeywords.DECIMAL, 4);
assertTrue("Must be StyleInteger", result instanceof StyleInteger);
}
}