}).inspect(new AbstractComponentAssertion() {
private static final long serialVersionUID = 1L;
@AfterPhase(Phase.RENDER_RESPONSE)
public void verify_default_attributes() {
AbstractFocus component = bean.getComponent();
assertTrue("Component is ajaxRenderer='true' by default", component.isAjaxRendered());
assertTrue("Component is validationAware='true' by default", component.isValidationAware());
assertFalse("Component is preserve='false' by default", component.isPreserve());
assertFalse("Component is delayed='false' by default", component.isDelayed());
}
});
}