* Attempts to illegally add more than one <code>ContentPane</code>s to a
* <code>Window</code>, tests for failure.
*/
public void testOverload() {
Window window = new Window();
window.removeAll();
window.add(new ContentPane());
boolean exceptionThrown = false;
try {
window.add(new ContentPane());
} catch (IllegalChildException ex) {