assertEquals(UIManager.get("Tree.selectionBackground"), label.getBackground());
assertEquals(UIManager.get("TextPane.background"), label.getForeground());
}
public void testInstallErrorColors() {
lf = new MetalLookAndFeel();
JLabel label = new JLabel();
LookAndFeel.installColors(label, "bbb", "fff");
assertNull(label.getForeground());
assertNull(label.getBackground());
}