Package org.kuali.rice.krad.service

Examples of org.kuali.rice.krad.service.DataDictionaryService


   */
  @Before
  public void setUp() throws Exception {
    rulesBase = new MatterMaintenanceHelperBusinessRulesBase();
    // mock the data dictionary svc since fetching it from KRADServiceLocatorWeb results in null pointer exception
    DataDictionaryService ddSvc = mock(DataDictionaryService.class);
    when(ddSvc.getAttributeLabel(CourtCase.class, MartinlawConstants.PropertyNames.MATTER_ID)).thenReturn("Court Case");
    rulesBase.getRulesHelper().setDataDictionaryService(ddSvc);
   
    document = mock(MaintenanceDocument.class);
    maintainable = mock(Maintainable.class);
    when(document.getNewMaintainableObject()).thenReturn(maintainable);
View Full Code Here

TOP

Related Classes of org.kuali.rice.krad.service.DataDictionaryService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.