* Attempts to illegally add a <code>Label</code> to a
* <code>Window</code>, tests for failure.
*/
public void testInvalidChild() {
Window window = new Window();
window.removeAll();
boolean exceptionThrown = false;
try {
window.add(new Label());
} catch (IllegalChildException ex) {
exceptionThrown = true;