* check whether the additional files override the intended beans for krad
* @see org/martinlaw/rice-overrides/kr.xml
*/
@Test
public void testAdditionalFiles_krad() {
InputField desc = (InputField) KRADServiceLocatorWeb.getDataDictionaryService().getDictionaryObject(
"Uif-DocumentDescription");
// see org.kuali.rice.krad.uif.control.TextControl#setWatermarkText for why the additional space is added
assertEquals("instructional msg differs", "A brief statement of the action you are taking",
desc.getInstructionalText());
AttributeDefinition expln = (AttributeDefinition) KRADServiceLocatorWeb.getDataDictionaryService().getDictionaryObject(
"DocumentHeader-explanation");
assertNotNull("watermark should not be null", ((TextAreaControl)expln.getControlField()).getWatermarkText());
}