Package org.kuali.rice.krad.web.form

Examples of org.kuali.rice.krad.web.form.LookupForm


    final String comment = "*good";
    searchCriteria.put(propComment, comment);
    searchCriteria.put(propFile, "spring");
    searchCriteria.put(WildcardLookupableImpl.WILDCARD_PROPERTYNAMES, wildCardPropertyNames.toString());
   
    Map<String, String> result = lookupable.processSearchCriteria(new LookupForm(), searchCriteria);
    final String message = "search value differs";
    assertEquals(message, name, result.get(propName));
    assertEquals(message, location, result.get(propLocation));
    assertEquals(message, comment, result.get(propComment));
    assertEquals(message, "*spring*", result.get(propFile));
    assertNull("the wildcards entry should have been deleted", result.get(WildcardLookupableImpl.WILDCARD_PROPERTYNAMES));
   
    searchCriteria.put(WildcardLookupableImpl.WILDCARD_PROPERTYNAMES, propFile);
    result = lookupable.processSearchCriteria(new LookupForm(), searchCriteria);
    assertEquals(message, "*spring*", result.get(propFile));
  }
View Full Code Here

TOP

Related Classes of org.kuali.rice.krad.web.form.LookupForm

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.