344345346347348349350351352353354
public void testFormatObject() { try { CompositeFormat cf = new ComplexFormat(); Object object = new Object(); cf.format(object); fail(); } catch (IllegalArgumentException ex) { // success } }