assertEquals(InformationProviderBean.class.getName(), bean.getClass().getName());
}
public void testCustomInformationProviderBeanClassNameWebXml()
{
InformationProviderBean bean = ExtValContext.getContext().getInformationProviderBean();
assertEquals(CustomInformationProviderBean.class.getName(), bean.getClass().getName());
// An additional test to make sure we have the custom
// informationProviderBean.
assertEquals(ExtValInformation.EXTENSIONS_VALIDATOR_BASE_PACKAGE_NAME + ".custom.X", bean
.get(CustomInformation.MESSAGE_BUNDLE_NAME));
}