assertEquals("3" + getDecimalCharacter() + "14", text);
}
public void testFormatObject() {
try {
CompositeFormat cf = new ComplexFormat();
Object object = new Object();
cf.format(object);
fail();
} catch (IllegalArgumentException ex) {
// success
}
}