Package org.kuali.rice.krad.uif.widget

Examples of org.kuali.rice.krad.uif.widget.Inquiry


  /**
   * tests {@link Inquirable#buildInquirableLink(java.lang.Object, java.lang.String, org.kuali.rice.krad.uif.widget.Inquiry)}
   */
  public void testBuildInquirableLinkObjectStringInquiry() {
    // concrete class is the same as the presented class
    Inquiry inq = mock(Inquiry.class);
    String propertyName = "localReference";
    inquirable.buildInquirableLink(dataObject, propertyName, inq);
    verify(inq).buildInquiryLink(same(dataObject), same(propertyName), same(CourtCase.class), anyMapOf(String.class, String.class));
   
    // null concrete class
View Full Code Here

TOP

Related Classes of org.kuali.rice.krad.uif.widget.Inquiry

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.