{
JComboBox jcb = new JComboBox(new Object[] {"A", "B", "C"});
Icon icon1 = new MetalComboBoxIcon();
Icon icon2 = MetalIconFactory.getHorizontalSliderThumbIcon();
MetalComboBoxButton b = new MetalComboBoxButton(jcb, icon1,
new CellRendererPane(), new JList());
harness.check(b.getComboIcon() == icon1);
b.setComboIcon(icon2);
harness.check(b.getComboIcon() == icon2);