}
protected Component createTestComponent(
Class<? extends AbstractComponentTest> cls) {
try {
AbstractComponentTest t = cls.newInstance();
t.init();
Component c = t.getMainWindow().getContent();
t.getMainWindow().setContent(null);
return c;
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {