Assert.assertNotNull(button1);
Assert.assertNotNull(button1.getActionListeners());
Assert.assertEquals(1, button1.getActionListeners().length);
compositeComponent1.pushComponentToEL(facesContext, compositeComponent1);
button1.pushComponentToEL(facesContext, button1);
bean.setActionListener1Called(false);
button1.getActionListeners()[0].processAction(new ActionEvent(button1));
Assert.assertTrue(bean.isActionListener1Called());
button1.popComponentFromEL(facesContext);
compositeComponent1.popComponentFromEL(facesContext);