*/
public void test(TestHarness harness)
{
JComboBox jcb = new JComboBox(new Object[] {"A", "B", "C"});
Icon icon1 = new MetalComboBoxIcon();
MetalComboBoxButton b = new MetalComboBoxButton(jcb, icon1,
new CellRendererPane(), new JList());
harness.check(!b.isIconOnly());
b.setIconOnly(true);
harness.check(b.isIconOnly());
}