Package org.kuali.rice.krad.messages

Examples of org.kuali.rice.krad.messages.MessageService


  @Test
  /**
   * tests that {@link MartinlawConstants.MessageKeys.ERROR_NOT_ASSIGNED} is found
   */
  public void testNotAssigneeMsg() {
    MessageService messageService = KRADServiceLocatorWeb.getMessageService();
        // find message by key
        String message = messageService.getMessageText(MartinlawConstants.MODULE_NAMESPACE_CODE, null,
            MartinlawConstants.MessageKeys.ERROR_NOT_ASSIGNED);
        assertFalse("message should not be null", StringUtils.isEmpty(message));
  }
View Full Code Here


  @Test
  /**
   * tests that {@link RiceKeyConstants.ERROR_EXISTENCE} is found
   */
  public void testNotExistingMsg() {
    MessageService messageService = KRADServiceLocatorWeb.getMessageService();
        // find message by key
        String message = messageService.getMessageText(MartinlawConstants.MODULE_NAMESPACE_CODE, null,
            RiceKeyConstants.ERROR_EXISTENCE);
        assertFalse("message should not be null", StringUtils.isEmpty(message));
  }
View Full Code Here

TOP

Related Classes of org.kuali.rice.krad.messages.MessageService

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.